8973
|
1 #ifndef __COMMON_H
|
|
2 #define __COMMON_H
|
|
3
|
|
4 #include <stdlib.h>
|
|
5 #include <stdio.h>
|
|
6 #include <inttypes.h>
|
|
7 #include <sys/stat.h>
|
|
8 #include <unistd.h>
|
|
9
|
|
10 #include "../app.h"
|
|
11 #include "../bitmap.h"
|
|
12 #include "../wm/ws.h"
|
|
13
|
|
14 extern inline void TranslateFilename( int c,char * tmp );
|
|
15 extern char * Translate( char * str );
|
|
16 extern void PutImage( txSample * bf,int x,int y,int max,int ofs );
|
|
17 extern void Render( wsTWindow * window,wItem * Items,int nrItems,char * db,int size );
|
|
18
|
|
19 #endif
|