Home
last modified time | relevance | path

Searched refs:bigIcon (Results 1 – 2 of 2) sorted by relevance

/third_party/glfw/src/
Dwin32_window.c1042 if (window->win32.bigIcon) in _glfwPlatformDestroyWindow()
1043 DestroyIcon(window->win32.bigIcon); in _glfwPlatformDestroyWindow()
1066 HICON bigIcon = NULL, smallIcon = NULL; in _glfwPlatformSetWindowIcon() local
1077 bigIcon = createIcon(bigImage, 0, 0, GLFW_TRUE); in _glfwPlatformSetWindowIcon()
1082 bigIcon = (HICON) GetClassLongPtrW(window->win32.handle, GCLP_HICON); in _glfwPlatformSetWindowIcon()
1086 SendMessage(window->win32.handle, WM_SETICON, ICON_BIG, (LPARAM) bigIcon); in _glfwPlatformSetWindowIcon()
1089 if (window->win32.bigIcon) in _glfwPlatformSetWindowIcon()
1090 DestroyIcon(window->win32.bigIcon); in _glfwPlatformSetWindowIcon()
1097 window->win32.bigIcon = bigIcon; in _glfwPlatformSetWindowIcon()
Dwin32_platform.h233 HICON bigIcon; member