public static enum Convention.Style extends Enum<Convention.Style>
Enum Constant and Description |
---|
CDecl
__cdecl convention (default for regular C functions)
|
CLRCall
__clrcall convention (not supported, specific to Windows .NET
mixed-mode assemblies)
|
FastCall
__fastcall convention
|
Pascal |
StdCall
__stdcall convention (specific to Windows x86, won't have any effect
on other platforms)
|
ThisCall
__thiscall convention (default for regular C++ methods)
|
Modifier and Type | Method and Description |
---|---|
static Convention.Style |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Convention.Style[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Convention.Style StdCall
public static final Convention.Style FastCall
public static final Convention.Style CDecl
public static final Convention.Style Pascal
public static final Convention.Style CLRCall
public static final Convention.Style ThisCall
public static Convention.Style[] values()
for (Convention.Style c : Convention.Style.values()) System.out.println(c);
public static Convention.Style valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2009-2020. All Rights Reserved.