AuroraRuntime/Source/IO/FS/Resources.hpp
Jamie Reece Wilson ca2c0462ab [*] Continue to refactor allocations of synchronization primitive away
[*] NT: Fix missing CoTaskMemFree leak on startup
[*] Fix ConsoleStd restart bug
2023-06-28 10:33:12 +01:00

19 lines
424 B
C++

/***
Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved.
File: Resources.hpp
Date: 2021-6-16
Author: Reece
***/
#pragma once
namespace Aurora::IO::FS
{
AuOptional<AuString> GetUserLibPath();
AuOptional<AuString> GetSystemLibPath();
AuOptional<AuString> GetUserLibPath2();
AuOptional<AuString> GetSystemLibPath2();
void InitResources();
void DeinitResources();
}