Index: third_party/lzma_sdk/Archive/7z/7zBuffer.h |
=================================================================== |
--- third_party/lzma_sdk/Archive/7z/7zBuffer.h (revision 79843) |
+++ third_party/lzma_sdk/Archive/7z/7zBuffer.h (working copy) |
@@ -1,19 +0,0 @@ |
-/* 7zBuffer.h */ |
- |
-#ifndef __7Z_BUFFER_H |
-#define __7Z_BUFFER_H |
- |
-#include <stddef.h> |
-#include "../../Types.h" |
- |
-typedef struct _CSzByteBuffer |
-{ |
- size_t Capacity; |
- Byte *Items; |
-}CSzByteBuffer; |
- |
-void SzByteBufferInit(CSzByteBuffer *buffer); |
-int SzByteBufferCreate(CSzByteBuffer *buffer, size_t newCapacity, void * (*allocFunc)(size_t size)); |
-void SzByteBufferFree(CSzByteBuffer *buffer, void (*freeFunc)(void *)); |
- |
-#endif |