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.

31 lines
658 B

  1. //+-----------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. //
  5. // Copyright (c) Microsoft Corporation
  6. //
  7. // File: kpcore.h
  8. //
  9. // Contents: core routine for worker threads prototype
  10. //
  11. // History: 10-Jul-2001 t-ryanj Created
  12. //
  13. //------------------------------------------------------------------------
  14. #include "kpcommon.h"
  15. #ifndef __KPCORE_H__
  16. #define __KPCORE_H__
  17. DWORD WINAPI
  18. KpThreadCore(
  19. LPVOID ignore
  20. );
  21. VOID CALLBACK
  22. KpIoCompletionRoutine(
  23. DWORD dwErrorCode,
  24. DWORD dwBytes,
  25. LPOVERLAPPED lpOverlapped
  26. );
  27. #endif // __KPCORE_H__