00001
00002
00003 #ifndef RCS_CE_H
00004 #define RCS_CE_H
00005
00006 #ifdef UNDER_CE
00007 #include <stdlib.h>
00008
00009 #ifdef __cplusplus
00010 extern "C" {
00011 #endif
00012
00013 double RCS_CE_ATOF(const char *);
00014 int RCS_CE_VSPRINTF(char *, const char *, va_list);
00015 void RCS_CE_UNICODE_TO_ASCII(char *str, wchar_t *wcs, int len);
00016 void RCS_CE_ASCII_TO_UNICODE(wchar_t *wcs, const char *str, int len);
00017
00018
00019 #ifdef __cplusplus
00020 }
00021 #endif
00022 #endif
00023
00024 #endif