Package paramiko :: Module _winapi :: Class SECURITY_ATTRIBUTES
[frames] | no frames]

Class SECURITY_ATTRIBUTES

source code

ctypes.Structure --+
                   |
                  SECURITY_ATTRIBUTES


typedef struct _SECURITY_ATTRIBUTES {
    DWORD  nLength;
    LPVOID lpSecurityDescriptor;
    BOOL   bInheritHandle;
} SECURITY_ATTRIBUTES;

Instance Methods
 
__init__(self, *args, **kwargs) source code
Class Variables
  _fields_ = [('nLength', ctypes.wintypes.DWORD), ('lpSecurityDe...
  descriptor = property(_get_descriptor, _set_descriptor)
Class Variable Details

_fields_

Value:
[('nLength', ctypes.wintypes.DWORD), ('lpSecurityDescriptor', ctypes.c\
_void_p), ('bInheritHandle', ctypes.wintypes.BOOL),]