mirror of
https://github.com/Fennix-Project/Kernel.git
synced 2025-05-29 07:47:59 +00:00
24 lines
448 B
C++
24 lines
448 B
C++
#ifndef __FENNIX_KERNEL_FILE_EXECUTE_H__
|
|
#define __FENNIX_KERNEL_FILE_EXECUTE_H__
|
|
|
|
#include <types.h>
|
|
|
|
namespace Execute
|
|
{
|
|
enum ExStatus
|
|
{
|
|
OK,
|
|
Unknown,
|
|
InvalidFile,
|
|
InvalidFileFormat,
|
|
InvalidFileHeader,
|
|
InvalidFileData,
|
|
InvalidFileEntryPoint,
|
|
InvalidFilePath
|
|
};
|
|
|
|
ExStatus Spawn(char *Path, uint64_t Arg0, uint64_t Arg1);
|
|
}
|
|
|
|
#endif // !__FENNIX_KERNEL_FILE_EXECUTE_H__
|