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
564 B
39 lines
564 B
#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
|