AuroraRuntime/Include/Aurora/Process/Paths.hpp
2021-06-27 22:25:29 +01:00

20 lines
475 B
C++

/***
Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved.
File: Paths.hpp
Date: 2021-6-10
Author: Reece
***/
#pragma once
namespace Aurora::Process
{
/**
Retrieves the applications current working directory
*/
AUKN_SYM bool GetWorkingDirectory(AuString &path);
AUKN_SYM bool GetProcName(AuString &executable);
AUKN_SYM bool GetProcPath(AuString &path);
AUKN_SYM bool GetProcFullPath(AuString &path);
}