Source code of Windows XP (NT5)
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.

34 lines
786 B

  1. #ifndef _DEBUG_
  2. #define _DEBUG_
  3. #ifdef __cplusplus
  4. extern "C"{
  5. #endif
  6. void __cdecl dprintf(LPTSTR szFormat, ...);
  7. #ifdef DUMP
  8. #include "netutil.h"
  9. #include "filesel.h"
  10. #include "servlist.h"
  11. void DumpConvertList(CONVERT_LIST *pConvertList);
  12. void DumpDestServerBuffer(DEST_SERVER_BUFFER *pDestServerBuffer);
  13. void DumpSourceServerBuffer(SOURCE_SERVER_BUFFER *pSourceServerBuffer);
  14. void DumpDomainBuffer(DOMAIN_BUFFER *pDomainBuffer);
  15. void DumpVirtualShareBuffer(VIRTUAL_SHARE_BUFFER *pVirtualShareBuffer);
  16. void DumpShareList(SHARE_LIST *pShareList);
  17. void DumpShareBuffer(SHARE_BUFFER *pShareBuffer);
  18. void DumpDriveList(DRIVE_LIST *pDriveList);
  19. void DumpDriveBuffer(DRIVE_BUFFER *pDriveBuffer);
  20. void DumpDirBuffer(DIR_BUFFER *pDirBuffer);
  21. #endif
  22. #ifdef __cplusplus
  23. }
  24. #endif
  25. #endif