mirror of
https://github.com/reactos/reactos.git
synced 2024-11-03 05:18:55 +00:00
f9e50f5471
Remove all local definitions
36 lines
1,015 B
C
36 lines
1,015 B
C
/*
|
|
* PROJECT: ReactOS Applications
|
|
* LICENSE: LGPL - See COPYING in the top level directory
|
|
* FILE: base/applications/msconfig_new/comctl32ex/comctl32supp.h
|
|
* PURPOSE: Common Controls helper functions.
|
|
* COPYRIGHT: Copyright 2011-2012 Hermes BELUSCA - MAITO <hermes.belusca@sfr.fr>
|
|
*/
|
|
|
|
#ifndef __COMCTL32SUPP_H__
|
|
#define __COMCTL32SUPP_H__
|
|
|
|
#include <windowsx.h>
|
|
|
|
#define Button_IsEnabled(hwndCtl) IsWindowEnabled((hwndCtl))
|
|
|
|
#define UM_CHECKSTATECHANGE (WM_USER + 100)
|
|
|
|
#if 0
|
|
// this typedef, present in newer include files,
|
|
// supports the building tokenmon on older systems
|
|
typedef struct _DLLVERSIONINFO
|
|
{
|
|
DWORD cbSize;
|
|
DWORD dwMajorVersion;
|
|
DWORD dwMinorVersion;
|
|
DWORD dwBuildNumber;
|
|
DWORD dwPlatformID;
|
|
} DLLVERSIONINFO, *PDLLVERSIONINFO;
|
|
// Version information function
|
|
typedef HRESULT (WINAPI* DLLGETVERSIONPROC)(PDLLVERSIONINFO);
|
|
#endif
|
|
|
|
HRESULT GetComCtl32Version(OUT PDWORD pdwMajor, OUT PDWORD pdwMinor, OUT PDWORD pdwBuild);
|
|
|
|
#endif // __COMCTL32SUPP_H__
|