19 lines
325 B
Standard ML
19 lines
325 B
Standard ML
type calling_convention =
|
|
| StdCall
|
|
| CDecl
|
|
| FastCall
|
|
[@@deriving show { with_path = false }]
|
|
|
|
type lifetime =
|
|
| Eternal
|
|
| Stack
|
|
[@@deriving show { with_path = false }]
|
|
|
|
type flag =
|
|
| Private
|
|
| NoExtract
|
|
| CInline
|
|
| Substitute
|
|
| GcType
|
|
| Comment of string
|
|
[@@deriving show { with_path = false }]
|