More compiling. All 'easy-to-compile' files now do.

Added the Rebellion license.
This commit is contained in:
Steven Fuller 2001-07-29 02:29:46 +00:00 committed by Patryk Obara
parent 71fa444424
commit 3b458d2583
39 changed files with 595 additions and 125 deletions

View file

@ -1,4 +1,3 @@
#include "advwin32.h"
#ifndef DB_LEVEL
#define DB_LEVEL 4
#endif

View file

@ -958,7 +958,3 @@ size_t Bitmap_MD5_Chunk::size_chunk()
+(shapename ? strlen(shapename) : 0)
+3 +3&~3;
}

View file

@ -907,43 +907,7 @@ void FlushZB(void)
}
// For extern "C"
};

View file

@ -1,6 +1,5 @@
#include <string.h>
#include <stdlib.h>
#include <windows.h>
#include "debuglog.hpp"
LogFile::LogFile(char const * const _fname) : fname(0) , ever_written(0)
@ -37,7 +36,7 @@ LogFile::~LogFile()
FILE * fp = fopen(fname,"a");
for (int attempt=0; !fp && attempt<10; ++attempt)
{
Sleep(100);
/* Sleep(100); */
fp = fopen(fname,"a");
}
if (fp)

View file

@ -17,7 +17,6 @@
#else
#include <stdio.h>
#include <conio.h>
#include <sys/stat.h>
#include "system.h"