21 lines
208 B
Plaintext
21 lines
208 B
Plaintext
const Os = enum{
|
|
linux,
|
|
macos,
|
|
windows,
|
|
freestanding,
|
|
};
|
|
|
|
const Cpu = enum{
|
|
x86_64,
|
|
};
|
|
|
|
const Abi = enum{
|
|
none,
|
|
gnu,
|
|
msvc,
|
|
};
|
|
|
|
const CallingConvention = enum{
|
|
system_v,
|
|
};
|