mirror of
https://github.com/dborth/vbagx.git
synced 2024-11-01 08:25:12 +01:00
20 lines
437 B
C
20 lines
437 B
C
/* 7zBuffer.h */
|
|
|
|
#ifndef __7Z_BUFFER_H
|
|
#define __7Z_BUFFER_H
|
|
|
|
#include <stddef.h>
|
|
#include "7zTypes.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
|