diff options
author | Adam <you@example.com> | 2020-05-17 05:51:50 +0200 |
---|---|---|
committer | Adam <you@example.com> | 2020-05-17 05:51:50 +0200 |
commit | e611b132f9b8abe35b362e5870b74bce94a1e58e (patch) | |
tree | a5781d2ec0e085eeca33cf350cf878f2efea6fe5 /private/nw/convert/nwconv/debug.h | |
download | NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.gz NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.bz2 NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.lz NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.xz NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.zst NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.zip |
Diffstat (limited to '')
-rw-r--r-- | private/nw/convert/nwconv/debug.h | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/private/nw/convert/nwconv/debug.h b/private/nw/convert/nwconv/debug.h new file mode 100644 index 000000000..19cfcdb95 --- /dev/null +++ b/private/nw/convert/nwconv/debug.h @@ -0,0 +1,34 @@ + +#ifndef _DEBUG_ +#define _DEBUG_ + +#ifdef __cplusplus +extern "C"{ +#endif + +void __cdecl dprintf(LPTSTR szFormat, ...); + +#ifdef DUMP + +#include "netutil.h" +#include "filesel.h" +#include "servlist.h" + +void DumpConvertList(CONVERT_LIST *pConvertList); +void DumpDestServerBuffer(DEST_SERVER_BUFFER *pDestServerBuffer); +void DumpSourceServerBuffer(SOURCE_SERVER_BUFFER *pSourceServerBuffer); +void DumpDomainBuffer(DOMAIN_BUFFER *pDomainBuffer); +void DumpVirtualShareBuffer(VIRTUAL_SHARE_BUFFER *pVirtualShareBuffer); +void DumpShareList(SHARE_LIST *pShareList); +void DumpShareBuffer(SHARE_BUFFER *pShareBuffer); +void DumpDriveList(DRIVE_LIST *pDriveList); +void DumpDriveBuffer(DRIVE_BUFFER *pDriveBuffer); +void DumpDirBuffer(DIR_BUFFER *pDirBuffer); + +#endif + +#ifdef __cplusplus +} +#endif + +#endif |