12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- // ResizableVersion.h: interface for the CResizableVersion class.
- //
- /////////////////////////////////////////////////////////////////////////////
- //
- // This file is part of ResizableLib
- // https://github.com/ppescher/resizablelib
- //
- // Copyright (C) 2000-2015 by Paolo Messina
- // mailto:ppescher@hotmail.com
- //
- // The contents of this file are subject to the Artistic License 2.0
- // http://opensource.org/licenses/Artistic-2.0
- //
- // If you find this code useful, credits would be nice!
- //
- /////////////////////////////////////////////////////////////////////////////
- #if !defined(AFX_RESIZABLEVERSION_H__INCLUDED_)
- #define AFX_RESIZABLEVERSION_H__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
- // global variables that hold actual version numbers
- // retrieved and adapted at run-time to be equivalent
- // to preprocessor macros that set the target platform
- extern DWORD realWINVER;
- #ifdef _WIN32_WINDOWS
- extern DWORD real_WIN32_WINDOWS;
- #endif
- #ifdef _WIN32_WINNT
- extern DWORD real_WIN32_WINNT;
- #endif
- #ifdef _WIN32_IE
- extern DWORD real_WIN32_IE;
- #endif
- extern DWORD real_ThemeSettings;
- // called automatically by a static initializer
- // (if not appropriate can be called later)
- // to setup global version numbers
- void InitRealVersions();
- // check for visual style settings
- void InitThemeSettings();
- #endif // !defined(AFX_RESIZABLEVERSION_H__INCLUDED_)
|