diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-05-02 19:38:33 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-05-02 19:38:33 +0200 |
| commit | 87979899ce833ca477bb563b84e3698224119dab (patch) | |
| tree | df67a0724de4c76ce594222747220c233c3bc7f5 /dev/LibCompiler/ErrorID.h | |
| parent | 3afc481dc64a07fe7fcaff9ce7a12a492c3ec8e7 (diff) | |
| parent | fb12b9730d78052f5cafbd84fbc9a830a22cec17 (diff) | |
Merge pull request #4 from nekernel-org/dev
0.0.1
Diffstat (limited to 'dev/LibCompiler/ErrorID.h')
| -rw-r--r-- | dev/LibCompiler/ErrorID.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/dev/LibCompiler/ErrorID.h b/dev/LibCompiler/ErrorID.h new file mode 100644 index 0000000..380fa69 --- /dev/null +++ b/dev/LibCompiler/ErrorID.h @@ -0,0 +1,23 @@ +/* + * ======================================================== + * + * LibCompiler + * Copyright (C) 2024-2025 Amlal El Mahrouss, all rights reserved. + * + * ======================================================== + */ + +#pragma once + +#include <LibCompiler/Defines.h> +#include <LibCompiler/ErrorOr.h> + +#define LIBCOMPILER_SUCCESS 0 +#define LIBCOMPILER_EXEC_ERROR -30 +#define LIBCOMPILER_FILE_NOT_FOUND -31 +#define LIBCOMPILER_DIR_NOT_FOUND -32 +#define LIBCOMPILER_FILE_EXISTS -33 +#define LIBCOMPILER_TOO_LONG -34 +#define LIBCOMPILER_INVALID_DATA -35 +#define LIBCOMPILER_UNIMPLEMENTED -36 +#define LIBCOMPILER_FAT_ERROR -37 |
