mirror of
https://github.com/geode-sdk/geode.git
synced 2025-03-31 07:10:28 -04:00
config why
This commit is contained in:
parent
ce53fb3135
commit
f307263e5f
4 changed files with 22 additions and 6 deletions
loader/src/platform
|
@ -364,6 +364,14 @@ void geode::utils::permission::requestPermission(Permission permission, utils::M
|
|||
}
|
||||
}
|
||||
|
||||
#include "../../utils/thread.hpp"
|
||||
void geode::utils::thread::platformSetNameOrdinary(std::string const& name) { }
|
||||
void geode::utils::thread::platformSetNameWide(std::wstring const& wName) { }
|
||||
std::string geode::utils::thread::getName() {
|
||||
return "";
|
||||
}
|
||||
|
||||
void geode::utils::thread::setName(std::string const& name) {
|
||||
|
||||
}
|
||||
|
||||
void geode::utils::thread::setName(std::wstring const& wName) {
|
||||
|
||||
}
|
||||
|
|
|
@ -310,6 +310,14 @@ void geode::utils::permission::requestPermission(Permission permission, utils::M
|
|||
callback(true); // unimplemented
|
||||
}
|
||||
|
||||
#include "../../utils/thread.hpp"
|
||||
void geode::utils::thread::platformSetNameOrdinary(std::string const& name) { }
|
||||
void geode::utils::thread::platformSetNameWide(std::wstring const& wName) { }
|
||||
std::string geode::utils::thread::getName() {
|
||||
return "";
|
||||
}
|
||||
|
||||
void geode::utils::thread::setName(std::string const& name) {
|
||||
|
||||
}
|
||||
|
||||
void geode::utils::thread::setName(std::wstring const& wName) {
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue