mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-09 12:07:13 +00:00
11 lines
134 B
C
11 lines
134 B
C
#pragma once
|
|
|
|
#define MAX_PATH_SIZE 256
|
|
|
|
enum ByteOrder {
|
|
BIGENDIAN,
|
|
LITTLEENDIAN,
|
|
|
|
LOCALSYSTEM_ENDIAN = LITTLEENDIAN,
|
|
};
|