org.cinvoke
Class CInvoke.CC

java.lang.Object
  extended byorg.cinvoke.CInvoke.CC
Enclosing class:
CInvoke

public class CInvoke.CC
extends java.lang.Object

An enumeration of values representing different calling conventions.


Field Summary
static int CDECL
          The cdecl calling convention is the most common convention on x86.
static int DEFAULT
          The default calling convention on the current platform.
static int FASTCALL
          The fastcall convention is rarely used under Microsoft Windows.
static int STDCALL
          The stdcall convention is used by the Microsoft Windows API.
 
Constructor Summary
CInvoke.CC()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

DEFAULT

public static final int DEFAULT
The default calling convention on the current platform.

See Also:
Constant Field Values

CDECL

public static final int CDECL
The cdecl calling convention is the most common convention on x86.

See Also:
Constant Field Values

STDCALL

public static final int STDCALL
The stdcall convention is used by the Microsoft Windows API.

See Also:
Constant Field Values

FASTCALL

public static final int FASTCALL
The fastcall convention is rarely used under Microsoft Windows.

See Also:
Constant Field Values
Constructor Detail

CInvoke.CC

public CInvoke.CC()