blob: d39bae0768f3321cba5077e559851504ee5c8a96 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
/** \file
* \brief Windows System Information
*
* See Copyright Notice in "iup.h"
*/
#ifndef __IUPWIN_INFO_H
#define __IUPWIN_INFO_H
#ifdef __cplusplus
extern "C" {
#endif
/* system */
int iupwinGetSystemMajorVersion(void);
int iupwinGetComCtl32Version(void);
char* iupwinGetSystemLanguage(void);
int iupwinIsAppThemed(void);
int iupwinIsVista(void);
/* color */
void iupwinGetSysColor(char* color, int wincolor);
char* iupwinGetSystemFgColor(void);
#ifdef __cplusplus
}
#endif
#endif
|