diff options
Diffstat (limited to 'dep/CascLib/src/common/DumpContext.h')
| -rw-r--r-- | dep/CascLib/src/common/DumpContext.h | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/dep/CascLib/src/common/DumpContext.h b/dep/CascLib/src/common/DumpContext.h deleted file mode 100644 index 6f725f5b942..00000000000 --- a/dep/CascLib/src/common/DumpContext.h +++ /dev/null @@ -1,38 +0,0 @@ -/*****************************************************************************/ -/* DumpContext.h Copyright (c) Ladislav Zezula 2015 */ -/*---------------------------------------------------------------------------*/ -/* Interface for TDumpContext */ -/*---------------------------------------------------------------------------*/ -/* Date Ver Who Comment */ -/* -------- ---- --- ------- */ -/* 16.03.15 1.00 Lad Created */ -/*****************************************************************************/ - -#ifndef __DUMP_CONTEXT_H__ -#define __DUMP_CONTEXT_H__ - -//----------------------------------------------------------------------------- -// Defines - -// Size of the buffer for the dump context -#define CASC_DUMP_BUFFER_SIZE 0x10000 - -// Structure for dump context -struct TDumpContext -{ - TFileStream * pStream; // Pointer to the open stream - LPBYTE pbBufferBegin; // Begin of the dump buffer - LPBYTE pbBufferPtr; // Current dump buffer pointer - LPBYTE pbBufferEnd; // End of the dump buffer - - BYTE DumpBuffer[CASC_DUMP_BUFFER_SIZE]; // Dump buffer -}; - -//----------------------------------------------------------------------------- -// Dump context functions - -TDumpContext * CreateDumpContext(struct _TCascStorage * hs, const TCHAR * szNameFormat); -int dump_print(TDumpContext * dc, const char * szFormat, ...); -int dump_close(TDumpContext * dc); - -#endif // __DUMP_CONTEXT_H__ |
