mirror of
https://github.com/glfw/glfw.git
synced 2024-11-14 18:34:34 +00:00
ISO C90 - Mixed declaration and code
This commit is contained in:
parent
648bf7a5fb
commit
c87d0ea52b
@ -337,18 +337,21 @@ static char * GetAccurateMonitorName(const WCHAR *deviceName)
|
||||
return NULL;
|
||||
|
||||
DISPLAYCONFIG_PATH_INFO *paths;
|
||||
paths = NULL;
|
||||
DISPLAYCONFIG_MODE_INFO *modes;
|
||||
modes = NULL;
|
||||
char *retval;
|
||||
retval = NULL;
|
||||
UINT32 pathCount;
|
||||
pathCount = 0;
|
||||
UINT32 modeCount;
|
||||
modeCount = 0;
|
||||
UINT32 i;
|
||||
LONG rc;
|
||||
|
||||
paths = NULL;
|
||||
modes = NULL;
|
||||
retval = NULL;
|
||||
pathCount = 0;
|
||||
modeCount = 0;
|
||||
int i = 0;
|
||||
rc = 0;
|
||||
|
||||
do {
|
||||
rc = dllPointers.m_GetDisplayConfigBufferSizes(QDC_ONLY_ACTIVE_PATHS, &pathCount, &modeCount);
|
||||
if (rc != ERROR_SUCCESS) {
|
||||
|
Loading…
Reference in New Issue
Block a user