grafX2/src/haiku.h
Adrien Destugues 235f7d4d1c Just fix some warnings for Haiku as well.
One of them was a missing prototype, the other was likely some strangeness in the definition of size_t.


git-svn-id: svn://pulkomandy.tk/GrafX2/trunk@1953 416bcca6-2ee7-4201-b75f-2eb2f807beb1
2012-05-12 11:48:39 +00:00

16 lines
306 B
C

#include "struct.h"
/*
* Haiku specific code was moved here, because the API is C++.
* It can't be compiled in the usual C files.
* So we provide a C wrapper to the functons we need.
*/
#ifndef __HAIKU_H
#define __HAIKU_H
qword haiku_get_free_space(char* path);
char* haiku_get_clipboard();
#endif