Leaked source code of windows server 2003
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.

21 lines
608 B

  1. #ifndef __async_h__
  2. #define __async_h__
  3. #include "rpc.h"
  4. #include "rpcndr.h"
  5. #include "windows.h"
  6. #include "ole2.h"
  7. class IAsync : public IUnknown
  8. {
  9. public:
  10. virtual HRESULT STDMETHODCALLTYPE Async( IAsyncManager **pCall,
  11. BOOL late, BOOL sleep,
  12. BOOL fail ) = 0;
  13. virtual HRESULT STDMETHODCALLTYPE RecurseAsync( IAsyncManager **pCall,
  14. IAsync *callback,
  15. DWORD depth ) = 0;
  16. };
  17. #endif