Workaround ? For what ?

If you have e.g. a CE 5 device, set the values of these macros to a
value that reflects the version of CE. It should work then.

Check out files such as commctrl.h and you'll see that it is loaded with
stuff that depends on this, see the partial output of a grep command :

commctrl.h:#if (_WIN32_IE >= 0x0300) || (_WIN32_WCE >= 0x200)
commctrl.h:#if (_WIN32_IE >= 0x0300) || (_WIN32_WCE >= 0x200)
commctrl.h:#if !defined(_WIN32_WCE)
commctrl.h:#if !defined(_WIN32_WCE)
commctrl.h:#if (_WIN32_IE >= 0x0300) || (_WIN32_WCE >= 0x0200)
commctrl.h:#if (_WIN32_WINNT >= 0x0501) && !defined (_WIN32_WCE)
commctrl.h:#endif /* (_WIN32_IE >= 0x0300) || (_WIN32_WCE >= 0x0200) */
commctrl.h:#if (_WIN32_IE >= 0x0400) || (_WIN32_WCE >= 0x0200)
commctrl.h:#if (_WIN32_IE >= 0x0300) || (_WIN32_WCE >= 0x200)

        Danny

On Thu, 2007-06-07 at 22:17 +0400, Iris wrote:
> On Thu, 07 Jun 2007 19:56:50 +0200
> Danny Backx <[EMAIL PROTECTED]> wrote:
> 
> > DialogBoxParamW is a macro that calls DialogBoxIndirectParamW.
> > 
> > This is defined in <winuser.h> but only if the symbol _WIN32_WCE is
> > defined.
> > 
> > So you may have to add -D_WIN32_WCE to your compile command.
> > 
> > Personally I almost always use these flags in compile commands :
> >   -D_WIN32_WCE=0x0400 -D_WIN32_IE=0x0400
> > 
> > But if you have a device with an older version of Windows CE, this may
> > not be right for you.
> 
>       Obviously, CE3.0 is really too old.
>       Any workarounds possible?
> 
-- 
Danny Backx ; danny.backx - at - scarlet.be ; http://danny.backx.info

Attachment: signature.asc
Description: This is a digitally signed message part

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
Cegcc-devel mailing list
Cegcc-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/cegcc-devel

Reply via email to