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.

35 lines
819 B

  1. UINT WINAPI
  2. NDdeSpecialCommandA(
  3. LPSTR lpszServer,
  4. UINT nCommand,
  5. LPBYTE lpDataIn,
  6. UINT nBytesDataIn,
  7. LPBYTE lpDataOut,
  8. UINT *lpBytesDataOut
  9. );
  10. UINT WINAPI
  11. NDdeSpecialCommandW(
  12. LPWSTR lpszServer,
  13. UINT nCommand,
  14. LPBYTE lpDataIn,
  15. UINT nBytesDataIn,
  16. LPBYTE lpDataOut,
  17. UINT *lpBytesDataOut
  18. );
  19. #ifdef UNICODE
  20. #define NDdeSpecialCommand NDdeSpecialCommandW
  21. #else
  22. #define NDdeSpecialCommand NDdeSpecialCommandA
  23. #endif
  24. /*
  25. * These constants were enlarged to fix a bug in NetDDE
  26. * but for some reason they are exported in the public
  27. * nddeapi.h file so internally we use these private
  28. * constants instead.
  29. */
  30. #define MAX_DOMAINNAMEP 31
  31. #define MAX_USERNAMEP (15 + MAX_DOMAINNAME + 3)