org.jinterop.dcom.impls.automation
Interface CallConv


public interface CallConv

Implements the CALLCONV data type of COM Automation.

Definition from MSDN: Identifies the calling convention used by a member function.

Since:
2.0 (formerly CALLCONV)

Field Summary
static java.lang.Integer CC_CDECL
          Indicates that the Cdecl calling convention is used for a method.
static java.lang.Integer CC_FASTCALL
           
static java.lang.Integer CC_FPFASTCALL
           
static java.lang.Integer CC_MACPASCAL
          Indicates that the Macpascal calling convention is used for a method.
static java.lang.Integer CC_MAX
          Indicates the end of the CALLCONV enumeration.
static java.lang.Integer CC_MPWCDECL
          Indicates that the Mpwcdecl calling convention is used for a method.
static java.lang.Integer CC_MPWPASCAL
          Indicates that the Mpwpascal calling convention is used for a method.
static java.lang.Integer CC_MSCPASCAL
          Indicates that the Mscpascal calling convention is used for a method.
static java.lang.Integer CC_PASCAL
          Indicates that the Pascal calling convention is used for a method.
static java.lang.Integer CC_STDCALL
          Indicates that the Stdcall calling convention is used for a method.
static java.lang.Integer CC_SYSCALL
          Indicates that the Syscall calling convention is used for a method.
 

Field Detail

CC_FASTCALL

static final java.lang.Integer CC_FASTCALL

CC_CDECL

static final java.lang.Integer CC_CDECL
Indicates that the Cdecl calling convention is used for a method.


CC_MSCPASCAL

static final java.lang.Integer CC_MSCPASCAL
Indicates that the Mscpascal calling convention is used for a method.


CC_PASCAL

static final java.lang.Integer CC_PASCAL
Indicates that the Pascal calling convention is used for a method.


CC_MACPASCAL

static final java.lang.Integer CC_MACPASCAL
Indicates that the Macpascal calling convention is used for a method.


CC_STDCALL

static final java.lang.Integer CC_STDCALL
Indicates that the Stdcall calling convention is used for a method.


CC_FPFASTCALL

static final java.lang.Integer CC_FPFASTCALL

CC_SYSCALL

static final java.lang.Integer CC_SYSCALL
Indicates that the Syscall calling convention is used for a method.


CC_MPWCDECL

static final java.lang.Integer CC_MPWCDECL
Indicates that the Mpwcdecl calling convention is used for a method.


CC_MPWPASCAL

static final java.lang.Integer CC_MPWPASCAL
Indicates that the Mpwpascal calling convention is used for a method.


CC_MAX

static final java.lang.Integer CC_MAX
Indicates the end of the CALLCONV enumeration.