]> git.tdb.fi Git - gldbg.git/blob - source/glwrap.h
Send as much of a packet as possible before calling the original function
[gldbg.git] / source / glwrap.h
1 /* $Id$
2
3 This file is part of gldbg
4 Copyright © 2010  Mikko Rasa, Mikkosoft Productions
5 Distributed under the GPL
6 */
7
8 #ifndef GLWRAP_H_
9 #define GLWRAP_H_
10
11 void *glsym(const char *);
12 void write_char(char);
13 void write_short(short);
14 void write_int(int);
15 void write_long(long);
16 void write_long_long(long long);
17 void write_float(float);
18 void write_double(double);
19 void write_pointer(const void *);
20 void write_data(const void *, unsigned);
21 void write_string(const char *);
22 void write_string_array(const char **, unsigned);
23 void begin_packet(int);
24 void send_partial_packet(void);
25 void send_packet(void);
26
27 #endif