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.
|
|
/****************************** Module Header ******************************\
* Module Name: ddemlsvr.h * * Copyright (c) 1985 - 1999, Microsoft Corporation * * Typedefs, defines, and prototypes that are used exclusively by the DDEML * server-side. * * History: * 12-6-91 sanfords Created. * 21-Jan-1992 IanJa ANSI/Unicode neutralized (null op) \***************************************************************************/
#define MF_INTERNAL 0x80000000L
// globals
extern PSVR_INSTANCE_INFO psiiList; extern DWORD MonitorFlags;
// event.c
VOID xxxChangeMonitorFlags(PSVR_INSTANCE_INFO psii, DWORD afCmdNew); DWORD xxxCsEvent(PEVENT_PACKET pep, WORD cbEventData); LRESULT xxxEventWndProc(PWND pwnd, UINT message, WPARAM wParam, LPARAM lParam); VOID xxxProcessDDEMLEvent(PSVR_INSTANCE_INFO psii, PEVENT_PACKET pep); VOID xxxMessageEvent(PWND pwndTo, UINT message, WPARAM wParam, LPARAM lParam, DWORD flag, PDDEML_MSG_HOOK_DATA pdmhd);
// ddemlsvr.c
DWORD xxxCsDdeInitialize(PHANDLE phInst, HWND *phwndEvent, LPDWORD pMonitorFlags, DWORD afCmd, PVOID pcii); DWORD _CsUpdateInstance(HANDLE hInst, LPDWORD pMonitorFlags, DWORD afCmd); BOOL _CsDdeUninitialize(HANDLE hInst); VOID xxxDestroyThreadDDEObject(PTHREADINFO pti, PSVR_INSTANCE_INFO psii); PVOID _CsValidateInstance(HANDLE hInst);
// CSR callbacks
DWORD ClientEventCallback(PVOID pcii, PEVENT_PACKET pep); DWORD ClientGetDDEHookData(UINT message, LPARAM lParam, PDDEML_MSG_HOOK_DATA pdmhd);
|