blob: 08ca43411882f1640e542f3e688400d738c93655 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/*
* ========================================================
*
* HCore
* Copyright Mahrouss Logic, all rights reserved.
*
* ========================================================
*/
#pragma once
#include <NewKit/ErrorOr.hpp>
#include <NewKit/Defines.hpp>
#define H_EXEC_ERROR -30
#define H_FILE_NOT_FOUND -31
#define H_DIR_NOT_FOUND -32
#define H_FILE_EXISTS -33
#define H_TOO_LONG -34
#define H_INVALID_DATA -35
#define H_UNIMPLEMENTED -36
|