Unicode/WinCE corrections
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@30856 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
e0f6b731a8
commit
885b88a257
@ -47,6 +47,10 @@
|
||||
#include "wx/tooltip.h"
|
||||
#endif // wxUSE_TOOLTIPS
|
||||
|
||||
#if defined(__WXWINCE__) && !defined(WS_EX_TRANSPARENT)
|
||||
#define WS_EX_TRANSPARENT 0
|
||||
#endif
|
||||
|
||||
// TODO: wxCONSTRUCTOR
|
||||
#if 0 // wxUSE_EXTENDED_RTTI
|
||||
WX_DEFINE_FLAGS( wxRadioBoxStyle )
|
||||
|
@ -843,15 +843,32 @@ static void InitToolHelp32()
|
||||
lpfCreateToolhelp32Snapshot=
|
||||
(HANDLE(WINAPI *)(DWORD,DWORD))
|
||||
GetProcAddress( hInstLib,
|
||||
"CreateToolhelp32Snapshot" ) ;
|
||||
#ifdef __WXWINCE__
|
||||
wxT("CreateToolhelp32Snapshot")
|
||||
#else
|
||||
"CreateToolhelp32Snapshot"
|
||||
#endif
|
||||
) ;
|
||||
|
||||
lpfProcess32First=
|
||||
(BOOL(WINAPI *)(HANDLE,LPPROCESSENTRY32))
|
||||
GetProcAddress( hInstLib, "Process32First" ) ;
|
||||
GetProcAddress( hInstLib,
|
||||
#ifdef __WXWINCE__
|
||||
wxT("Process32First")
|
||||
#else
|
||||
"Process32First"
|
||||
#endif
|
||||
) ;
|
||||
|
||||
lpfProcess32Next=
|
||||
(BOOL(WINAPI *)(HANDLE,LPPROCESSENTRY32))
|
||||
GetProcAddress( hInstLib, "Process32Next" ) ;
|
||||
GetProcAddress( hInstLib,
|
||||
#ifdef __WXWINCE__
|
||||
wxT("Process32Next")
|
||||
#else
|
||||
"Process32Next"
|
||||
#endif
|
||||
) ;
|
||||
|
||||
FreeLibrary( hInstLib ) ;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user