mirror of
https://github.com/ptitSeb/Serious-Engine
synced 2024-11-22 18:30:27 +01:00
13 lines
207 B
C++
13 lines
207 B
C++
/* Copyright (c) 2002-2012 Croteam Ltd. All rights reserved. */
|
|
|
|
#ifdef PLATFORM_WIN32
|
|
|
|
#include <windows.h>
|
|
|
|
ULONG DetermineDesktopWidth(void)
|
|
{
|
|
return((ULONG) ::GetSystemMetrics(SM_CXSCREEN));
|
|
}
|
|
|
|
#endif
|