pub unsafe fn ImGuiPlatformIO_Set_Platform_SetWindowSize_PointerParam(
platform_io: *mut ImGuiPlatformIO,
user_callback: Option<unsafe extern "C" fn(vp: *mut ImGuiViewport, size: *const ImVec2)>,
)Expand description
Install a C-compatible pointer-parameter callback for
ImGuiPlatformIO::Platform_SetWindowSize.
§Safety
platform_io must be null or point to a live ImGuiPlatformIO. user_callback, when present,
must obey Dear ImGui’s platform callback contract and must not unwind.