We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2c049f commit 4e15d24Copy full SHA for 4e15d24
src/bindings/windows.zig
@@ -203,6 +203,23 @@ pub extern "user32" fn CreateWindowExA(
203
lpParam: ?LPVOID,
204
) callconv(WINAPI) ?HWND;
205
206
+pub extern "user32" fn ShowWindow(
207
+ hwnd: HWND,
208
+ nCmdShow: i32,
209
+) callconv(WINAPI) bool;
210
+
211
+pub extern "user32" fn IsWindow(hwnd: ?HWND) callconv(WINAPI) bool;
212
213
+pub extern "user32" fn SetWindowPos(
214
+ hWnd: HWND,
215
+ hWndInsertAfter: ?HWND,
216
+ X: i32,
217
+ Y: i32,
218
+ cx: i32,
219
+ cY: i32,
220
+ uFlags: UINT,
221
222
223
pub extern "user32" fn DestroyWindow(hWnd: HWND) BOOL;
224
225
pub extern "user32" fn PostQuitMessage(nExitCode: i32) callconv(WINAPI) void;
0 commit comments