1 | // Licensed to the .NET Foundation under one or more agreements. |
---|---|
2 | // The .NET Foundation licenses this file to you under the MIT license. |
3 | // See the LICENSE file in the project root for more information. |
4 | |
5 | #ifndef __smopenum_h__ |
6 | #define __smopenum_h__ |
7 | |
8 | typedef enum smopcode_t { |
9 | #define SMOPDEF(smname, string) smname, |
10 | #include "smopcode.def" |
11 | #undef SMOPDEF |
12 | |
13 | SM_COUNT, /* number of state machine opcodes */ |
14 | |
15 | } SM_OPCODE; |
16 | |
17 | #endif /* __smopenum_h__ */ |
18 |