mirror of
https://github.com/wiiu-env/WiiUPluginLoaderBackend.git
synced 2024-11-06 04:55:07 +01:00
11 lines
243 B
C
11 lines
243 B
C
|
#pragma once
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
void StartNotificationThread();
|
||
|
|
||
|
void StopNotificationThread();
|
||
|
|
||
|
bool DisplayInfoNotificationMessage(std::string &text, float duration);
|
||
|
|
||
|
bool DisplayErrorNotificationMessage(std::string &text, float duration);
|