fixed compile errors

This commit is contained in:
Magnus Auvinen 2008-03-10 11:06:37 +00:00
parent 5400809a9d
commit f685b413d2
2 changed files with 4 additions and 2 deletions

View file

@ -195,7 +195,7 @@ def emit_header_file(f, p):
def emit_source_file(f, p, protofilename):
print >>f, "#line 1 \"%s\"" % os.path.abspath(protofilename)
print >>f, "#line 1 \"%s\"" % os.path.abspath(protofilename).replace("\\", "\\\\")
for l in p.source_raw:
print >>f, l

View file

@ -1,7 +1,9 @@
raw_source
#include "g_protocol.h"
#include "g_protocol_ids.h"
extern "C" {
#include "g_protocol_ids.h"
}
#include <engine/e_common_interface.h>
#define max_int 2147483647
end