mirror of
https://github.com/FunkyFr3sh/cnc-ddraw.git
synced 2025-03-15 06:04:49 +01:00
21 lines
681 B
C
21 lines
681 B
C
#ifndef UTILS_H
|
|
#define UTILS_H
|
|
|
|
#define WIN32_LEAN_AND_MEAN
|
|
#include <windows.h>
|
|
|
|
|
|
BOOL util_is_minimized(HWND hwnd);
|
|
BOOL util_is_avx_supported();
|
|
void util_limit_game_ticks();
|
|
void util_update_bnet_pos(int newX, int newY);
|
|
BOOL util_get_lowest_resolution(float ratio, SIZE* outRes, DWORD minWidth, DWORD minHeight, DWORD maxWidth, DWORD maxHeight);
|
|
void util_toggle_maximize();
|
|
void util_toggle_fullscreen();
|
|
BOOL util_unadjust_window_rect(LPRECT prc, DWORD dwStyle, BOOL fMenu, DWORD dwExStyle);
|
|
void util_set_window_rect(int x, int y, int width, int height, UINT flags);
|
|
BOOL CALLBACK util_enum_child_proc(HWND hwnd, LPARAM lParam);
|
|
BOOL util_detect_low_res_screen();
|
|
|
|
#endif
|