Initial commit.

This commit is contained in:
Jim Gray
2013-04-04 14:32:05 -07:00
parent ba5c81da32
commit d71d53e8ec
2180 changed files with 1393544 additions and 1 deletions

View File

@@ -0,0 +1,21 @@
// Filename:- stringed_interface.h
//
// These are the functions that get replaced by game-specific ones (or StringEd code) so SGE can access files etc
//
#ifndef STRINGED_INTERFACE_H
#define STRINGED_INTERFACE_H
#pragma warning ( disable : 4786 ) // disable the usual stupid and pointless STL warning
#include <string>
using namespace std;
unsigned char * SE_LoadFileData ( const char *psFileName, int *piLoadedLength = 0);
void SE_FreeFileDataAfterLoad( unsigned char *psLoadedFile );
int SE_BuildFileList ( const char *psStartDir, string &strResults );
#endif // #ifndef STRINGED_INTERFACE_H
////////////////// eof ///////////////////