public enum CallingConvention extends Enum<CallingConvention>
This is only needed on windows platforms - all platforms assume
DEFAULT as the calling convention.
| Enum Constant and Description |
|---|
DEFAULT
The default C calling convention
|
STDCALL
Windows stdcall calling convention
|
| Modifier and Type | Method and Description |
|---|---|
static CallingConvention |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CallingConvention[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CallingConvention DEFAULT
public static final CallingConvention STDCALL
public static CallingConvention[] values()
for (CallingConvention c : CallingConvention.values()) System.out.println(c);
public static CallingConvention 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 © 2017. All rights reserved.