CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Mar 2011
    Posts
    29

    strange error compiling wince project

    Hi,

    while compiling a wince project it gives me this error:

    Can not build for OS versions earlier than 2.0

    i search on google but was not able to find an explanation...

    Anyone knows what it means?

    Thanks

  2. #2
    VictorN's Avatar
    VictorN is offline Super Moderator Power Poster
    Join Date
    Jan 2003
    Location
    Hanover Germany
    Posts
    20,396

    Re: strange error compiling wince project

    Have a look at http://groups.google.com/group/micro...4d097d3f92de9f
    or just search for
    Code:
    // Check OS version number 
    #if !defined(_WIN32_WCE) 
            #error _WIN32_WCE is not set to 200 or greater 
    #elif (_WIN32_WCE < 200) 
            #error Can not build for OS versions earlier than 2.0 
    #endif // _WIN32_WCE
    in the file ....\wce.h
    It means that you defined _WIN32_WCE being < 200.
    Victor Nijegorodov

  3. #3
    Join Date
    Mar 2011
    Posts
    29

    Re: strange error compiling wince project

    I found it!
    Now i have declared it as 0x400


    Thnaks so much

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured