asyncevent-listenereventtimeoutevent-loopevent-drivenasynchronous-programmingasynctaskintervaltimersasync-taskmultithreadinterval-timertimeout-control
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
283 B
19 lines
283 B
3 months ago
|
#ifndef _ASYNCO_DEFINE_
|
||
|
#define _ASYNCO_DEFINE_
|
||
|
|
||
|
namespace marcelb {
|
||
|
namespace asynco {
|
||
|
|
||
|
/**
|
||
|
* Alternative names of functions - mostly for the sake of more beautiful coloring of the code
|
||
|
*/
|
||
|
|
||
|
#define nonsync marcelb::asynco::nonsync
|
||
|
#define wait marcelb::asynco::wait
|
||
|
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
#endif
|