type from_address_t
source code
object --+
|
transformer.transformer_t --+
|
type_modifier_t --+
|
from_address_t
Handles a single input variable.
Replaces the actual argument type with some integral type, so you can
use ctypes package.
void do_smth(int** image) -> do_smth(unsigned int
addressof_image)
__init__(self,
function,
arg_ref)
(Constructor)
| source code
|
Constructor.
The specified argument must be a reference or a pointer.
- Parameters:
idx (int) - Index of the argument that is an output value (the first arg has
index 1).
- Overrides:
transformer.transformer_t.__init__
|