Uses of Class
au.com.swz.jatlom.FuncKind

Uses of FuncKind in au.com.swz.jatlom
 

Fields in au.com.swz.jatlom declared as FuncKind
static FuncKind FuncKind.FUNC_DISPATCH
          The function can be accessed only through IDispatch.
static FuncKind FuncKind.FUNC_NONVIRTUAL
          The function is accessed by static address and takes an implicit this pointer.
static FuncKind FuncKind.FUNC_PUREVIRTUAL
          The function is accessed through the virtual function table (VTBL), and takes an implicit this pointer.
static FuncKind FuncKind.FUNC_STATIC
          The function is accessed by static address and does not take an implicit this pointer.
static FuncKind FuncKind.FUNC_VIRTUAL
          The function is accessed the same as PUREVIRTUAL, except the function has an implementation.
static FuncKind FuncKind.UNKNOWN
          Unknown or Unsupported
 

Methods in au.com.swz.jatlom that return FuncKind
 FuncKind FuncDesc.getFuncKind()
          Provides the kinds of function.