I found the way to fix this problem. This problem also have place to be on VS2005. It’s information can help other people.
When you
convert your project from eVC 3.0 be sure, that in options of new compiler (eVC 4.0 or VS2005) has directive like
_WIN32_WCE_PSPC.
(harder way)
1. Insert to options of PocketFrog_lib project your own directive (for example -
_PPC_BUILD_) and modify PocketFrog\sources\defs.h like this :
- Code: Select all
1 2 3 4 5 6 7 8 9 10 11 12
| #ifndef POCKETFROG_DEFS_H #define POCKETFROG_DEFS_H
#include <windows.h> #include <tchar.h> #include <atlbase.h>
#if !defined(_WIN32_WCE) #define FROG_PC #elif defined(_PPC_BUILD_) //Here your directive #define FROG_PPC #endif
|
| 12 lines; 12 keywds; 0 nums; 14 ops; 0 strs; 1 coms Syntactic Coloring v0.4 - Dan East |
After it rebuild PocketFrog.lib and set also to YOUR project options your directive.
[/code]