objwriter.h

changeset 34
0a9a5902beaa
parent 32
d11a034aabfd
child 36
a8838b5f1213
--- a/objwriter.h	Tue Jul 17 20:35:43 2012 +0300
+++ b/objwriter.h	Sat Jul 28 17:41:24 2012 +0300
@@ -68,7 +68,9 @@
 	void WriteString (char* s);
 	void WriteString (const char* s);
 	void WriteString (str s);
+	void WriteBuffer (DataBuffer* buf);
 	void WriteBuffers ();
+	void WriteStringTable ();
 	void WriteToFile ();
 	
 	template <class T> void Write (T stuff) {
@@ -80,7 +82,7 @@
 	}
 	
 	// Cannot use default arguments in function templates..
-	void Write (long stuff) {Write<long> (stuff);}
+	void Write (byte stuff) {Write<byte> (stuff);}
 };
 
 #endif // __OBJWRITER_H__
\ No newline at end of file

mercurial