Windows NT 4.0 source code leak
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.

39 lines
525 B

4 years ago
  1. #ifndef _CONNIFY_INCLUDED
  2. #define _CONNIFY_INCLUDED
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. DWORD
  7. MprConnectNotifyInit(
  8. VOID
  9. );
  10. DWORD
  11. MprAddConnectNotify(
  12. LPNOTIFYINFO lpNotifyInfo,
  13. LPNOTIFYADD lpAddInfo
  14. );
  15. DWORD
  16. MprCancelConnectNotify(
  17. LPNOTIFYINFO lpNotifyInfo,
  18. LPNOTIFYCANCEL lpCancelInfo
  19. );
  20. PVOID
  21. MprAllocConnectContext(
  22. VOID
  23. );
  24. VOID
  25. MprFreeConnectContext(
  26. PVOID ConnectContext
  27. );
  28. #ifdef __cplusplus
  29. }
  30. #endif
  31. #endif // _CONNIFY_INCLUDED