20 lines
475 B
C++
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);
|
||
|
}
|