ScreenshotWUPS/src/retain_vars.hpp

25 lines
684 B
C++
Raw Normal View History

2020-12-11 16:41:37 +01:00
#pragma once
#include "common.h"
#include <gx2/surface.h>
2023-01-22 16:38:23 +01:00
#include <notifications/notifications.h>
2020-12-11 16:41:37 +01:00
#include <string>
2018-07-01 19:12:35 +02:00
2020-12-11 16:41:37 +01:00
extern bool gEnabled;
extern ImageSourceEnum gImageSource;
extern GX2SurfaceFormat gTVSurfaceFormat;
extern GX2SurfaceFormat gDRCSurfaceFormat;
2018-07-01 19:12:35 +02:00
extern uint32_t gButtonCombo;
2020-12-11 16:41:37 +01:00
extern int32_t gQuality;
extern ImageOutputFormatEnum gOutputFormat;
2023-01-22 14:45:20 +01:00
extern std::string gShortNameEn;
extern ScreenshotState gTakeScreenshotTV;
extern ScreenshotState gTakeScreenshotDRC;
2023-01-22 16:38:23 +01:00
extern bool gReservedBitUsage;
extern bool gInProgressNotificationDisplayedDRC;
extern bool gInProgressNotificationDisplayedTV;
extern bool gNotAvailableNotificationDisplayed;
extern NMColor COLOR_RED;