mirror of
https://github.com/switchbrew/libnx.git
synced 2025-06-21 12:32:40 +02:00
14 lines
257 B
C
14 lines
257 B
C
// Copyright 2018 plutoo
|
|
#include "result.h"
|
|
|
|
typedef enum {
|
|
ColorSetId_Light=0,
|
|
ColorSetId_Dark=1
|
|
} ColorSetId;
|
|
|
|
Result setsysInitialize(void);
|
|
void setsysExit(void);
|
|
|
|
/// Gets the current system theme.
|
|
Result setsysGetColorSetId(ColorSetId* out);
|