OSDN Git Service

comment added
[heavyosecpu/HeavyOSECPU.git] / dependent.h
1 #ifndef _HDLOAD_DEPENDENT
2 #define _HDLOAD_DEPENDENT
3
4 /* OSに依存する関数群を定義する。 */
5
6 void *mallocRWE(int bytes); // 実行権付きメモリのmalloc.
7 void drv_openWin(int x, int y, unsigned char *buf, char *winClosed);
8 void drv_flshWin(int sx, int sy, int x0, int y0);
9 void drv_sleep(int msec);
10
11 #endif