26 lines
574 B
C
26 lines
574 B
C
#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*/
|