diff options
author | Sergeanur <s.anureev@yandex.ua> | 2020-07-29 14:34:57 +0200 |
---|---|---|
committer | Sergeanur <s.anureev@yandex.ua> | 2020-07-29 14:34:57 +0200 |
commit | acdc52116ea78b4ebf065b23b0cd48d7e41c711a (patch) | |
tree | d50d8667825d3d9e9f99d4948d349e1ffc4e3f97 /src/skel/win/win.cpp | |
parent | some fakerw additions for shadows; update librw (diff) | |
parent | Add forgotten file (diff) | |
download | re3-acdc52116ea78b4ebf065b23b0cd48d7e41c711a.tar re3-acdc52116ea78b4ebf065b23b0cd48d7e41c711a.tar.gz re3-acdc52116ea78b4ebf065b23b0cd48d7e41c711a.tar.bz2 re3-acdc52116ea78b4ebf065b23b0cd48d7e41c711a.tar.lz re3-acdc52116ea78b4ebf065b23b0cd48d7e41c711a.tar.xz re3-acdc52116ea78b4ebf065b23b0cd48d7e41c711a.tar.zst re3-acdc52116ea78b4ebf065b23b0cd48d7e41c711a.zip |
Diffstat (limited to 'src/skel/win/win.cpp')
-rw-r--r-- | src/skel/win/win.cpp | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/skel/win/win.cpp b/src/skel/win/win.cpp index 75a3a7c9..3e0a7934 100644 --- a/src/skel/win/win.cpp +++ b/src/skel/win/win.cpp @@ -1308,6 +1308,34 @@ InitApplication(HANDLE instance) /* ***************************************************************************** */ +static BOOL +InitApplication(HANDLE instance) +{ + /* + * Perform any necessary MS Windows application initialization. Basically, + * this means registering the window class for this application. + */ + + WNDCLASS windowClass; + + windowClass.style = CS_BYTEALIGNWINDOW; + windowClass.lpfnWndProc = (WNDPROC)MainWndProc; + windowClass.cbClsExtra = 0; + windowClass.cbWndExtra = 0; + windowClass.hInstance = (HINSTANCE)instance; + windowClass.hIcon = nil; + windowClass.hCursor = LoadCursor(nil, IDC_ARROW); + windowClass.hbrBackground = nil; + windowClass.lpszMenuName = NULL; + windowClass.lpszClassName = AppClassName; + + return RegisterClass(&windowClass); +} + + +/* + ***************************************************************************** + */ RwBool IsForegroundApp() { |