You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
337 B
21 lines
337 B
//
|
|
// cuisys.h
|
|
//
|
|
|
|
#ifndef CUISYS_H
|
|
#define CUISYS_H
|
|
|
|
//
|
|
// exported functions
|
|
//
|
|
|
|
extern void InitUIFSys( void );
|
|
extern void DoneUIFSys( void );
|
|
extern void UpdateUIFSys( void );
|
|
|
|
extern BOOL UIFIsWindowsNT( void );
|
|
extern BOOL UIFIsLowColor( void );
|
|
extern BOOL UIFIsHighContrast( void );
|
|
|
|
#endif /* CUISYS_H */
|
|
|