use the spoofed uname compiling git.
[AROS-Contrib.git] / rexx / inc / cefunc.h
blobc604256a7a2d34477a827405ce1f868eadece00d
1 /*
2 * $Header$
3 * $Log$
4 * Revision 1.1 2001/04/04 05:43:36 wang
5 * First commit: compiles on Linux, Amiga, Windows, Windows CE, generic gcc
7 * Revision 1.1 1999/11/29 14:58:00 bnv
8 * Initial revision
11 #ifndef __CEFUNC_H__
12 #define __CEFUNC_H__
14 enum ce_msgs {
15 f_windowtitle,
16 f_createdirectory,
17 f_removedirectory,
18 f_deletefile,
19 f_movefile,
20 f_copyfile,
21 f_clrscr,
22 f_clreol,
23 f_wherex,
24 f_wherey,
25 f_getch,
26 f_kbhit
29 /* ---- Function Prototypes ---- */
30 BOOL CE_GetRegData(HKEY key, TCHAR *keyPath, TCHAR *varName,
31 DWORD type, LPBYTE pvData, LPDWORD cbData );
34 /* ---- Macros Definitions ---- */
35 #define RXREGGETDATA(v,t,d,l) CE_GetRegData(HKEY_CURRENT_USER,\
36 _szRxAppKey, v, t, d, l)
38 #endif