aboutsummaryrefslogtreecommitdiff
path: root/include/cru/win/gui/WindowNativeMessageEventArgs.hpp
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2022-01-28 22:33:29 +0800
committercrupest <crupest@outlook.com>2022-01-28 22:33:29 +0800
commitfb992c554110ddd28c18b2cbed79eee8e10cd4a9 (patch)
treec6636b723326159d791cd610e1429cae0fe5f6e4 /include/cru/win/gui/WindowNativeMessageEventArgs.hpp
parent8d4d66d1bc4d5237c7dbac3013c7ecc6d5a36a35 (diff)
parent27ef6b29fe9ea6931dd9aef585e8b9467599b5f1 (diff)
downloadcru-fb992c554110ddd28c18b2cbed79eee8e10cd4a9.tar.gz
cru-fb992c554110ddd28c18b2cbed79eee8e10cd4a9.tar.bz2
cru-fb992c554110ddd28c18b2cbed79eee8e10cd4a9.zip
Merge branch 'main' of https://github.com/crupest/cru
Diffstat (limited to 'include/cru/win/gui/WindowNativeMessageEventArgs.hpp')
-rw-r--r--include/cru/win/gui/WindowNativeMessageEventArgs.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/cru/win/gui/WindowNativeMessageEventArgs.hpp b/include/cru/win/gui/WindowNativeMessageEventArgs.hpp
index 834ba3c2..7e62c19d 100644
--- a/include/cru/win/gui/WindowNativeMessageEventArgs.hpp
+++ b/include/cru/win/gui/WindowNativeMessageEventArgs.hpp
@@ -1,17 +1,17 @@
#pragma once
-#include "../WinPreConfig.hpp"
+#include "Base.hpp"
#include "cru/common/Base.hpp"
namespace cru::platform::gui::win {
-struct WindowNativeMessage {
+struct CRU_WIN_GUI_API WindowNativeMessage {
HWND hwnd;
UINT msg;
WPARAM w_param;
LPARAM l_param;
};
-class WindowNativeMessageEventArgs : public Object {
+class CRU_WIN_GUI_API WindowNativeMessageEventArgs : public Object {
public:
WindowNativeMessageEventArgs(const WindowNativeMessage& message)
: message_(message) {}