projects
/
xonotic
/
xonotic.git
/ blob
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Revert "add d0_blind_id DLLs to our DLL dump"
[xonotic/xonotic.git]
/
misc
/
builddeps
/
dp.linux64
/
include
/
d0_blind_id
/
d0.h
1
#ifndef __D0_H__
2
#define __D0_H__
3
4
#include <unistd.h> // size_t
5
6
#define EXPORT __attribute__((__visibility__("default")))
7
#define WARN_UNUSED_RESULT __attribute__((warn_unused_result))
8
#define BOOL int
9
10
extern void *(*d0_malloc)(size_t len);
11
extern void (*d0_free)(void *p);
12
13
#endif