Module winKernel :: Class STARTUPINFOW
[hide private]
[frames] | no frames]

Class STARTUPINFOW

source code

   object --+        
            |        
    ??._CData --+    
                |    
_ctypes.Structure --+
                    |
                   STARTUPINFOW

Instance Methods [hide private]
 
__init__(self, **kwargs)
x.__init__(...) initializes x; see help(type(x)) for signature
source code

Inherited from _ctypes.Structure: __new__

Inherited from unreachable._CData: __ctypes_from_outparam__, __hash__, __reduce__, __setstate__

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

Class Variables [hide private]
  _fields_ = (('cb', <class 'ctypes.c_ulong'>), ('lpReserved', <...
  cb = <Field type=c_ulong, ofs=0, size=4>
  cbReserved2 = <Field type=c_ushort, ofs=50, size=2>
  dwFillAttribute = <Field type=c_ulong, ofs=40, size=4>
  dwFlags = <Field type=c_ulong, ofs=44, size=4>
  dwX = <Field type=c_ulong, ofs=16, size=4>
  dwXCountChars = <Field type=c_ulong, ofs=32, size=4>
  dwXSize = <Field type=c_ulong, ofs=24, size=4>
  dwY = <Field type=c_ulong, ofs=20, size=4>
  dwYCountChars = <Field type=c_ulong, ofs=36, size=4>
  dwYSize = <Field type=c_ulong, ofs=28, size=4>
  hSTDError = <Field type=c_void_p, ofs=64, size=4>
  hSTDInput = <Field type=c_void_p, ofs=56, size=4>
  hSTDOutput = <Field type=c_void_p, ofs=60, size=4>
  lpDesktop = <Field type=c_wchar_p, ofs=8, size=4>
  lpReserved = <Field type=c_wchar_p, ofs=4, size=4>
  lpReserved2 = <Field type=LP_c_byte, ofs=52, size=4>
  lpTitle = <Field type=c_wchar_p, ofs=12, size=4>
  wShowWindow = <Field type=c_ushort, ofs=48, size=2>
Properties [hide private]

Inherited from unreachable._CData: _b_base_, _b_needsfree_

Inherited from unreachable._CData (private): _objects

Inherited from object: __class__

Method Details [hide private]

__init__(self, **kwargs)
(Constructor)

source code 

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

Overrides: object.__init__
(inherited documentation)

Class Variable Details [hide private]

_fields_

Value:
(('cb', <class 'ctypes.c_ulong'>),
 ('lpReserved', <class 'ctypes.c_wchar_p'>),
 ('lpDesktop', <class 'ctypes.c_wchar_p'>),
 ('lpTitle', <class 'ctypes.c_wchar_p'>),
 ('dwX', <class 'ctypes.c_ulong'>),
 ('dwY', <class 'ctypes.c_ulong'>),
 ('dwXSize', <class 'ctypes.c_ulong'>),
 ('dwYSize', <class 'ctypes.c_ulong'>),
...