Package winappdbg :: Package win32 :: Module defines :: Class DefaultStringType
[hide private]
[frames] | no frames]

Class DefaultStringType

source code


Decorator that uses the default version (A or W) to call based on the configuration of the GuessStringType decorator.


See Also: GuessStringType.t_default

Instance Methods [hide private]
 
__init__(self, fn_ansi, fn_unicode)
x.__init__(...) initializes x; see help(type(x)) for signature
source code
 
__call__(self, *argv, **argd) source code

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

Instance Variables [hide private]
function fn_ansi
ANSI version of the API function to call.
function fn_unicode
Unicode (wide) version of the API function to call.
Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, fn_ansi, fn_unicode)
(Constructor)

source code 

x.__init__(...) initializes x; see help(type(x)) for signature

Parameters:
  • fn_ansi (function) - ANSI version of the API function to call.
  • fn_unicode (function) - Unicode (wide) version of the API function to call.
Overrides: object.__init__