mirror of
https://github.com/0TheSpy/Seaside.git
synced 2025-01-11 11:33:01 +08:00
15 lines
554 B
C
15 lines
554 B
C
#pragma once
|
|
#include "imgui.h"
|
|
|
|
IMGUI_IMPL_API bool ImGui_ImplWin32_Init(void* hwnd);
|
|
IMGUI_IMPL_API void ImGui_ImplWin32_Shutdown();
|
|
IMGUI_IMPL_API void ImGui_ImplWin32_NewFrame();
|
|
|
|
#if 0
|
|
extern IMGUI_IMPL_API LRESULT ImGui_ImplWin32_WndProcHandler(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam);
|
|
#endif
|
|
|
|
IMGUI_IMPL_API void ImGui_ImplWin32_EnableDpiAwareness();
|
|
IMGUI_IMPL_API float ImGui_ImplWin32_GetDpiScaleForHwnd(void* hwnd);
|
|
IMGUI_IMPL_API float ImGui_ImplWin32_GetDpiScaleForMonitor(void* monitor);
|