]> git.tdb.fi Git - gldbg.git/blobdiff - source/glwrap.h
Rewrite the Makefile to have proper dependencies and stuff
[gldbg.git] / source / glwrap.h
diff --git a/source/glwrap.h b/source/glwrap.h
new file mode 100644 (file)
index 0000000..047f9c4
--- /dev/null
@@ -0,0 +1,26 @@
+/* $Id$
+
+This file is part of gldbg
+Copyright © 2010  Mikko Rasa, Mikkosoft Productions
+Distributed under the GPL
+*/
+
+#ifndef GLWRAP_H_
+#define GLWRAP_H_
+
+void *glsym(const char *);
+void write_char(char);
+void write_short(short);
+void write_int(int);
+void write_long(long);
+void write_long_long(long long);
+void write_float(float);
+void write_double(double);
+void write_pointer(const void *);
+void write_data(const void *, unsigned);
+void write_string(const char *);
+void write_string_array(const char **, unsigned);
+void begin_packet(int);
+void send_packet(void);
+
+#endif