Important update: (untested)

- Switch from FILE pointers to file descriptors (e.g. fopen() -> open())
- Replace internal buffer with CShiftBuffer
This commit is contained in:
Charl Wentzel
2017-03-23 13:21:21 +02:00
parent 5b4e6822c7
commit ad4d8e8b5f
2 changed files with 30 additions and 38 deletions

View File

@@ -9,7 +9,7 @@
#define REDACORE_CONFIGCORE_H_
// redA Libraries
/* none */
#include <BufferCore.h>
// Standard C/C++ Libraries
#include <stdlib.h>
@@ -46,10 +46,10 @@ private:
TConfigParam * RootObject;
// File operation
FILE * InputFile;
FILE * OutputFile;
char * Buffer;
int BufLen;
int InputHandle;
int OutputHandle;
CShiftBuffer * Buffer;
// Parsing operation
char * BufEnd;