Probably fixed some linux issues there. Fixed the filename search by typing in Save/load. git-svn-id: svn://pulkomandy.tk/GrafX2/trunk@196 416bcca6-2ee7-4201-b75f-2eb2f807beb1
19 lines
226 B
C
19 lines
226 B
C
#ifndef _LINUX_H_
|
|
#define _LINUX_H_
|
|
|
|
#ifdef __linux__
|
|
|
|
struct find_t {
|
|
unsigned char attrib;
|
|
char name[256];
|
|
};
|
|
|
|
int filelength(int);
|
|
|
|
void itoa(int source,char* dest, int longueur);
|
|
/* Integer TO Ascii */
|
|
|
|
#endif
|
|
|
|
#endif
|