mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-03 18:15:06 +01:00
26 lines
453 B
C
26 lines
453 B
C
|
#ifndef GETTHEME_H_
|
||
|
#define GETTHEME_H_
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
#include <ogc/gx.h>
|
||
|
#include <gctypes.h>
|
||
|
|
||
|
int getThemeInt(const char *msgid);
|
||
|
int getThemeAlignment(const char *msgid);
|
||
|
GXColor getThemeColor(const char *msgid);
|
||
|
bool LoadTheme(const char* themeFile);
|
||
|
void ThemeCleanUp(void);
|
||
|
|
||
|
#define thInt(s) getThemeInt(s)
|
||
|
#define thAlign(s) getThemeAlignment(s)
|
||
|
#define thColor(s) getThemeColor(s)
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|