This commit is contained in:
2025-11-06 01:00:40 +08:00
parent 24cbbcccc4
commit f945901c18
4 changed files with 300 additions and 2 deletions
+25
View File
@@ -0,0 +1,25 @@
#ifndef INCLUDED_C_WINGUIUTIL_H
#define INCLUDED_C_WINGUIUTIL_H
#ifndef INCLUDED_WINDOWS_H
#define INCLUDED_WINDOWS_H
#include <windows.h>
#endif /*INCLUDED_WINDOWS_H*/
/* -------------------------------------------------------------------------------------------------------------- */
/* */
typedef struct {
int x;
int y;
}c_WinGui_Point_t;
/* -------------------------------------------------------------------------------------------------------------- */
/* */
void c_WinGuiUtil_MoveWindowToScreenCenter(HWND hwnd);
#endif /*INCLUDED_C_WINGUIUTIL_H*/