Subversion Repositories Kolibri OS

Rev

Rev 324 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 324 Rev 374
Line 64... Line 64...
64
void  _stdcall InitHeap(int heap_size);
64
void  _stdcall InitHeap(int heap_size);
65
void* _stdcall UserAlloc(int size);
65
void* _stdcall UserAlloc(int size);
66
int   _stdcall UserFree(void* p);
66
int   _stdcall UserFree(void* p);
Line 67... Line 67...
67
 
67
 
-
 
68
void  _stdcall GetNotify(void *event);
-
 
69
 
Line 68... Line -...
68
void  _stdcall GetNotify(DWORD *event);
-
 
69
 
70
void _stdcall CreateThread(void *fn, char *p_stack);
70
//void _stdcall CreateThread(void *fn, char *p_stack);
-
 
71
DWORD _stdcall GetMousePos(DWORD rel_type);
-
 
72
int _stdcall   GetService(char *srv_name);
-
 
73
void _stdcall  GetDevInfo(DWORD hSrv,CTRL_INFO *pInfo);
-
 
74
int _stdcall   GetMasterVol(DWORD hSrv,int* vol);
-
 
75
int _stdcall   SetMasterVol(DWORD hSrv, int vol);
-
 
76
DWORD _stdcall CreateBuffer(DWORD hSrv, DWORD format);
-
 
77
int _stdcall   DestroyBuffer(DWORD hSrv, DWORD hBuff);
-
 
78
int _stdcall   SetBuffer(DWORD hSrv, DWORD hBuff,char* buff,
-
 
79
                               DWORD offs, int size);
-
 
Line 80... Line 71...
80
int _stdcall   PlayBuffer(DWORD hSrv, DWORD hBuff);
71
 
81
int _stdcall   StopBuffer(DWORD hSrv, DWORD hBuff);
72
DWORD _stdcall GetMousePos(DWORD rel_type);
Line 82... Line 73...
82
 
73
 
Line 97... Line 88...
97
int wait_for_event(int time);
88
int wait_for_event(int time);
98
int wait_for_event_infinite();
89
int wait_for_event_infinite();
99
void BeginDraw(void);
90
void BeginDraw(void);
100
void EndDraw(void);
91
void EndDraw(void);
101
void _stdcall DrawWindow(int x,int y, int sx, int sy,int workcolor,int style,
92
 
-
 
93
void _stdcall GetScreenSize(int *x, int*y);
-
 
94
void _stdcall DrawWindow(int x,int y, int sx, int sy,int workcolor,int style,
102
                               int captioncolor,int windowtype,int bordercolor);
95
                               int captioncolor,int windowtype,int bordercolor);
103
void _stdcall debug_out(int ch);
96
void _stdcall debug_out(int ch);
104
void _stdcall make_button(int x, int y, int xsize, int ysize, int id, int color);
97
void _stdcall make_button(int x, int y, int xsize, int ysize, int id, int color);
105
void _stdcall draw_bar(int x, int y, int xsize, int ysize, int color);
98
void _stdcall draw_bar(int x, int y, int xsize, int ysize, int color);
106
void _stdcall write_text(int x,int y,int color,char* text,int len);
99
void _stdcall write_text(int x,int y,int color,char* text,int len);