diff options
| author | Holger Lindner <mole.coding@googlemail.com> | 2022-03-22 16:23:38 +0100 |
|---|---|---|
| committer | Holger Lindner <mole.coding@googlemail.com> | 2022-03-22 16:23:38 +0100 |
| commit | 43640a8b5989909386cd0492d36ca2daa42abe50 (patch) | |
| tree | 88bea5ad8972e73ee790b8fa17c48de33c578496 /core/sys/windows/user32.odin | |
| parent | bae13b63871c3973b4274e94a3041be7665b1781 (diff) | |
Add SendMessageA/W to sys/windows/user32.odin
Diffstat (limited to 'core/sys/windows/user32.odin')
| -rw-r--r-- | core/sys/windows/user32.odin | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/core/sys/windows/user32.odin b/core/sys/windows/user32.odin index c9d4bdba1..5e374d1e5 100644 --- a/core/sys/windows/user32.odin +++ b/core/sys/windows/user32.odin @@ -270,6 +270,9 @@ foreign user32 { PostMessageA :: proc(hWnd: HWND, Msg: UINT, wParam: WPARAM, lParam: LPARAM) -> BOOL ---
PostMessageW :: proc(hWnd: HWND, Msg: UINT, wParam: WPARAM, lParam: LPARAM) -> BOOL ---
+ SendMessageA :: proc(hWnd: HWND, Msg: UINT, wParam: WPARAM, lParam: LPARAM) -> LRESULT ---
+ SendMessageW :: proc(hWnd: HWND, Msg: UINT, wParam: WPARAM, lParam: LPARAM) -> LRESULT ---
+
GetQueueStatus :: proc(flags: UINT) -> DWORD ---
DefWindowProcA :: proc(hWnd: HWND, Msg: UINT, wParam: WPARAM, lParma: LPARAM) -> LRESULT ---
|