|
|
__init__(self)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature |
|
|
|
|
Consts(self)
Use Appcall.Consts.CONST_NAME to access constants |
|
|
|
|
__getattr__(self,
name_or_ea)
Allows you to call functions as if they were member functions (by
returning a callable object) |
|
|
|
|
__getitem__(self,
idx)
Use self[func_name] syntax if the function name contains invalid
characters for an attribute name See __getattr___ |
|
|
|
Inherited from object:
__delattr__,
__getattribute__,
__hash__,
__new__,
__reduce__,
__reduce_ex__,
__repr__,
__setattr__,
__str__
|
|
|
proto(name_or_ea,
prototype,
flags=None)
Allows you to instantiate an appcall (callable object) with the
desired prototype |
|
|
|
|
valueof(name,
default=0)
Returns the numeric value of a given name string. |
|
|
|
|
int64(v)
Whenever a 64bit number is needed use this method to construct an
object |
|
|
|
|
byref(val)
Method to create references to immutable objects Currently we support
references to int/strings Objects need not be passed by reference
(this will be done automatically) |
|
|
|
|
buffer(str=None,
size=0,
fill="\x00")
Creates a string buffer. |
|
|
|
|
obj(**kwds)
Returns an empty object or objects with attributes as passed via its
keywords arguments |
|
|
|
|
|
|
|
|
|
|
array(type_name)
Defines an array type. |
|
|
|
|
typedobj(typestr,
ea=None)
Parses a type string and returns an appcall object. |
|
|
|
|
set_appcall_options(opt)
Method to change the Appcall options globally (not per Appcall) |
|
|
|
|
get_appcall_options()
Return the global Appcall options |
|
|
|
|
cleanup_appcall(tid=0)
Equivalent to IDC's CleanupAppcall() |
|
|