define WS_XXX constants missing in (some) CE SDKs
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26745 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
b7deb0be17
commit
2fce94e20c
@ -92,6 +92,21 @@ extern "C"
|
||||
#define HGDI_ERROR ((HANDLE)(0xFFFFFFFFL))
|
||||
#endif
|
||||
|
||||
// some windows styles don't exist in CE SDK, replace them with closest
|
||||
// equivalents
|
||||
#ifndef WS_THICKFRAME
|
||||
#define WS_THICKFRAME WS_BORDER
|
||||
#endif
|
||||
|
||||
#ifndef WS_MINIMIZE
|
||||
#define WS_MINIMIZE 0
|
||||
#endif
|
||||
|
||||
#ifndef WS_MAXIMIZE
|
||||
#define WS_MAXIMIZE 0
|
||||
#endif
|
||||
|
||||
|
||||
// global memory functions don't exist under CE (good riddance, of course, but
|
||||
// the existing code still uses them in some places, so make it compile)
|
||||
//
|
||||
|
Loading…
Reference in New Issue
Block a user