]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/wince/time.cpp
Compilaton fixes.
[wxWidgets.git] / src / msw / wince / time.cpp
index afd4aa4b936fcd1ee8d69a19e615d5e0ebbe2e5c..9f1c570d10cd1fb29320d39ab54b5e0d4e2d7125 100644 (file)
@@ -29,8 +29,7 @@
 #endif
 
 #ifndef WX_PRECOMP
-    #include <windows.h>
-    #include "wx/msw/winundef.h"
+    #include "wx/msw/wrapwin.h"
 #endif
 
 #include "wx/msw/wince/time.h"
@@ -39,7 +38,7 @@ long timezone = 0;
 
 // Hint: use GetSystemTime()
 
-struct tm * localtime(const time_t *)
+struct tm * __cdecl localtime(const time_t *)
 {
     // TODO
     return NULL;
@@ -105,26 +104,26 @@ struct tm * localtime(const time_t *)
 #endif
 }
 
-time_t time(time_t *)
+time_t __cdecl time(time_t *)
 {
     // TODO
     return 0;
 }
 
-size_t wcsftime(wchar_t *, size_t, const wchar_t *,
+size_t __cdecl wcsftime(wchar_t *, size_t, const wchar_t *,
         const struct tm *)
 {
     // TODO
     return 0;
 }
 
-time_t mktime(struct tm *)
+time_t __cdecl mktime(struct tm *)
 {
     // TODO
     return 0;
 }
 
-struct tm * gmtime(const time_t *)
+struct tm * __cdecl gmtime(const time_t *)
 {
     // TODO
     return NULL;