windows-nt/Source/XPSP1/NT/windows/netdde/incs/nddeapip.h

36 lines
784 B
C
Raw Normal View History

2020-09-26 03:20:57 -05:00
UINT WINAPI
NDdeSpecialCommandA(
LPSTR lpszServer,
UINT nCommand,
LPBYTE lpDataIn,
UINT nBytesDataIn,
LPBYTE lpDataOut,
UINT *lpBytesDataOut
);
UINT WINAPI
NDdeSpecialCommandW(
LPWSTR lpszServer,
UINT nCommand,
LPBYTE lpDataIn,
UINT nBytesDataIn,
LPBYTE lpDataOut,
UINT *lpBytesDataOut
);
#ifdef UNICODE
#define NDdeSpecialCommand NDdeSpecialCommandW
#else
#define NDdeSpecialCommand NDdeSpecialCommandA
#endif
/*
* These constants were enlarged to fix a bug in NetDDE
* but for some reason they are exported in the public
* nddeapi.h file so internally we use these private
* constants instead.
*/
#define MAX_DOMAINNAMEP 31
#define MAX_USERNAMEP (15 + MAX_DOMAINNAME + 3)