aboutsummaryrefslogtreecommitdiff
path: root/src/win/native
diff options
context:
space:
mode:
author杨宇千 <crupest@outlook.com>2019-09-08 19:09:38 +0800
committer杨宇千 <crupest@outlook.com>2019-09-08 19:09:38 +0800
commit8b9a306d6f24dbc08aeee16b115260406e79126d (patch)
treedb37b8c3441a28b7150b1f40ddf79c7fa9dcda79 /src/win/native
parent2c40085dd30d6e7370a0974ad1f642a61acc6e30 (diff)
downloadcru-8b9a306d6f24dbc08aeee16b115260406e79126d.tar.gz
cru-8b9a306d6f24dbc08aeee16b115260406e79126d.tar.bz2
cru-8b9a306d6f24dbc08aeee16b115260406e79126d.zip
...
Diffstat (limited to 'src/win/native')
-rw-r--r--src/win/native/cursor.cpp2
-rw-r--r--src/win/native/native_window.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/win/native/cursor.cpp b/src/win/native/cursor.cpp
index 987d2d54..8c0e393b 100644
--- a/src/win/native/cursor.cpp
+++ b/src/win/native/cursor.cpp
@@ -25,7 +25,7 @@ WinCursor::~WinCursor() {
namespace {
WinCursor* LoadWinCursor(const wchar_t* name) {
- const auto handle = ::LoadCursorW(NULL, name);
+ const auto handle = static_cast<HCURSOR>(::LoadImageW(NULL, name, IMAGE_CURSOR, SM_CYCURSOR, SM_CYCURSOR, LR_SHARED));
if (handle == NULL) {
throw Win32Error(::GetLastError(), "Failed to get system cursor.");
}
diff --git a/src/win/native/native_window.cpp b/src/win/native/native_window.cpp
index bda84ea9..6a02c2fc 100644
--- a/src/win/native/native_window.cpp
+++ b/src/win/native/native_window.cpp
@@ -173,7 +173,7 @@ void WinNativeWindow::SetCursor(std::shared_ptr<Cursor> cursor) {
L"Failed to set cursor. Last error code: {}.", ::GetLastError())));
};
- if (!::SetWindowLongPtrW(hwnd_, GCLP_HCURSOR,
+ if (!::SetClassLongPtrW(hwnd_, GCLP_HCURSOR,
reinterpret_cast<LONG_PTR>(c->GetHandle()))) {
outputError();
return;