dd_async_call.h 172 B

123456789101112
  1. #ifndef DD_ASYNC_CALL_H
  2. #define DD_ASYNC_CALL_H
  3. // handle async calls
  4. struct dd_async_call {
  5. void (*callback)(void *context);
  6. void *context;
  7. int isComplete;
  8. };
  9. #endif