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
		
			
				
	
	
		
			16 lines
		
	
	
		
			306 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			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
 |