diff options
| author | gingerBill <bill@gingerbill.org> | 2020-02-05 20:18:19 +0000 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2020-02-05 20:18:19 +0000 |
| commit | b555b0083a58856f661c63fb574722f1fc64fee9 (patch) | |
| tree | d75a315cd384bb939960bdbc7d7f3a7208c4610d /src/parser.hpp | |
| parent | 0103cedad7b18d2f8ac2337fd4221e874eb2e1ca (diff) | |
Slowly add more statements and expressions; Add header file
Diffstat (limited to 'src/parser.hpp')
| -rw-r--r-- | src/parser.hpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/parser.hpp b/src/parser.hpp index cdfd4eba1..28c5d880a 100644 --- a/src/parser.hpp +++ b/src/parser.hpp @@ -174,12 +174,10 @@ enum ProcCallingConvention { ProcCC_StdCall, ProcCC_FastCall, - // TODO(bill): Add extra calling conventions - // ProcCC_VectorCall, - // ProcCC_ClrCall, - ProcCC_None, + ProcCC_MAX, + ProcCC_ForeignBlockDefault = -1, }; |