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.

41 lines
893 B

  1. /*****************************************************************/
  2. /** Microsoft LAN Manager **/
  3. /** Copyright(c) Microsoft Corp., 1989-1990 **/
  4. /*****************************************************************/
  5. /*
  6. * Windows/Network Interface -- LAN Manager Version
  7. *
  8. * History:
  9. * Yi-HsinS 31-Dec-1991 Unicode work - char to TCHAR
  10. */
  11. /*
  12. * DEBUGGING TOYS
  13. */
  14. #ifdef TRACE /* Trace implies debug */
  15. #ifndef DEBUG
  16. #define DEBUG
  17. #endif
  18. #endif
  19. #ifdef DEBUG
  20. static TCHAR dbbuf[100];
  21. static TCHAR dbb1[10];
  22. static TCHAR dbb2[10];
  23. static TCHAR dbb3[10];
  24. static TCHAR dbb4[10];
  25. static TCHAR dbb5[10];
  26. #endif
  27. #ifdef DEBUG
  28. #ifdef NEVER
  29. #define MESSAGEBOX(s1,s2) printf(SZ("%s %s\n"),s2,s1)
  30. #else
  31. #define MESSAGEBOX(s1,s2) MessageBox ( NULL, s1, s2, MB_OK )
  32. #endif
  33. #else
  34. #define MESSAGEBOX(s1,s2) {}
  35. #endif