40 lines
525 B
C
40 lines
525 B
C
#ifndef _CONNIFY_INCLUDED
|
|
#define _CONNIFY_INCLUDED
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
DWORD
|
|
MprConnectNotifyInit(
|
|
VOID
|
|
);
|
|
|
|
DWORD
|
|
MprAddConnectNotify(
|
|
LPNOTIFYINFO lpNotifyInfo,
|
|
LPNOTIFYADD lpAddInfo
|
|
);
|
|
|
|
DWORD
|
|
MprCancelConnectNotify(
|
|
LPNOTIFYINFO lpNotifyInfo,
|
|
LPNOTIFYCANCEL lpCancelInfo
|
|
);
|
|
|
|
PVOID
|
|
MprAllocConnectContext(
|
|
VOID
|
|
);
|
|
|
|
VOID
|
|
MprFreeConnectContext(
|
|
PVOID ConnectContext
|
|
);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // _CONNIFY_INCLUDED
|