From c85a994a3775928fa6cc55afff89180a10f495f6 Mon Sep 17 00:00:00 2001 From: kgv Date: Sat, 30 Sep 2017 19:52:10 +0300 Subject: [PATCH] 0029169: Configuration - fix compilation with undefined UNICODE on Windows Eliminated usage of TEXT macros, usage of OSVERSIONINFO instead of OSVERSIONINFOW. LoadIcon/LoadCursor are now used instead of LoadIconW/LoadCursorW when passing macros to standard resources (which depend on UNICODE flag). --- src/Draw/init.cxx | 6 +++--- src/OSD/OSD_Host.cxx | 14 ++++++++------ src/ViewerTest/ViewerTest_ViewerCommands.cxx | 2 +- src/WNT/WNT_WClass.cxx | 4 ++-- 4 files changed, 14 insertions(+), 12 deletions(-) diff --git a/src/Draw/init.cxx b/src/Draw/init.cxx index 34d2176910..7cb6fc4dcd 100644 --- a/src/Draw/init.cxx +++ b/src/Draw/init.cxx @@ -42,15 +42,15 @@ BOOL RegisterAppClass(HINSTANCE hInstance) // Parametres communs aux classes //----- wndClass.style = CS_HREDRAW | CS_VREDRAW | CS_CLASSDC; - wndClass.cbClsExtra = 0; - wndClass.hCursor = LoadCursorW (NULL, IDC_ARROW); + wndClass.cbClsExtra = 0; + wndClass.hCursor = LoadCursor (NULL, IDC_ARROW); wndClass.hInstance = hInstance; // Enregistrement de la fenetre principale //----- wndClass.cbWndExtra = sizeof(void*); wndClass.lpfnWndProc = (WNDPROC)WndProc; - wndClass.hIcon = (HICON )LoadIconW (hInstance, MAKEINTRESOURCE(IDI_ICON1)); + wndClass.hIcon = LoadIconW (hInstance, MAKEINTRESOURCEW(IDI_ICON1)); wndClass.hbrBackground = (HBRUSH) GetStockObject(WHITE_BRUSH); wndClass.lpszMenuName = MAKEINTRESOURCEW(APPMENU); wndClass.lpszClassName = APPCLASS; diff --git a/src/OSD/OSD_Host.cxx b/src/OSD/OSD_Host.cxx index 91fd43d167..b4fd1df369 100644 --- a/src/OSD/OSD_Host.cxx +++ b/src/OSD/OSD_Host.cxx @@ -211,7 +211,8 @@ OSD_Host :: OSD_Host () { if ( !fInit ) { nSize = MAX_COMPUTERNAME_LENGTH + 1; - osVerInfo.dwOSVersionInfoSize = sizeof ( OSVERSIONINFO ); + ZeroMemory (&osVerInfo, sizeof(OSVERSIONINFOW)); + osVerInfo.dwOSVersionInfoSize = sizeof(OSVERSIONINFOW); ZeroMemory (&ms, sizeof(ms)); ZeroMemory (szHostName, sizeof(char) * (MAX_COMPUTERNAME_LENGTH + 1)); @@ -262,11 +263,12 @@ OSD_Host :: OSD_Host () { hostName = szHostName; interAddr = Standard_CString ( hostAddr ); - wsprintf ( - osVerInfo.szCSDVersion, TEXT( "Windows NT Version %d.%d" ), - osVerInfo.dwMajorVersion, osVerInfo.dwMinorVersion - ); - version = osVerInfo.szCSDVersion; + TCollection_AsciiString aVersion = TCollection_AsciiString("Windows NT Version ") + (int )osVerInfo.dwMajorVersion + "." + (int )osVerInfo.dwMinorVersion; + if (*osVerInfo.szCSDVersion != L'\0') + { + aVersion += TCollection_AsciiString(" ") + TCollection_AsciiString (osVerInfo.szCSDVersion); + } + version = aVersion; fInit = TRUE; diff --git a/src/ViewerTest/ViewerTest_ViewerCommands.cxx b/src/ViewerTest/ViewerTest_ViewerCommands.cxx index e603fea739..1f12147693 100644 --- a/src/ViewerTest/ViewerTest_ViewerCommands.cxx +++ b/src/ViewerTest/ViewerTest_ViewerCommands.cxx @@ -262,7 +262,7 @@ const Handle(Standard_Transient)& ViewerTest::WClass() { theWClass = new WNT_WClass ("GW3D_Class", (Standard_Address )AdvViewerWindowProc, CS_VREDRAW | CS_HREDRAW, 0, 0, - ::LoadCursorW (NULL, IDC_ARROW)); + ::LoadCursor (NULL, IDC_ARROW)); } #endif return theWClass; diff --git a/src/WNT/WNT_WClass.cxx b/src/WNT/WNT_WClass.cxx index 7898f9c6ef..d35d7c6175 100644 --- a/src/WNT/WNT_WClass.cxx +++ b/src/WNT/WNT_WClass.cxx @@ -48,8 +48,8 @@ WNT_WClass::WNT_WClass (const TCollection_AsciiString& theClassName, aWinClass.cbClsExtra = theClassExtra; aWinClass.cbWndExtra = theWindowExtra; aWinClass.hInstance = (HINSTANCE )myAppInstance; - aWinClass.hIcon = theIcon != NULL ? (HICON )theIcon : LoadIconW (NULL, IDI_APPLICATION); - aWinClass.hCursor = theCursor != NULL ? (HCURSOR )theCursor : LoadCursorW (NULL, IDC_NO); + aWinClass.hIcon = theIcon != NULL ? (HICON )theIcon : LoadIcon (NULL, IDI_APPLICATION); + aWinClass.hCursor = theCursor != NULL ? (HCURSOR )theCursor : LoadCursor (NULL, IDC_NO); aWinClass.hbrBackground = 0; aWinClass.lpszMenuName = !aMenuNameW.IsEmpty() ? aMenuNameW.ToWideString() : NULL; aWinClass.lpszClassName = aClassNameW.ToWideString();