- indexing
- title: "Visual Eiffel Library.", "The WAPI_SECURITY_ATTRIBUTES class contains the security", "descriptor for an object."
- project: "Visual Eiffel Win32 Library"
- revision: "$Revision: 1.1 $"
- copyright: "Copyright (C) 1996-2005 Object Tools Group"
- license: "http://visual-eiffel.com/license"
- cluster: winlib
class WAPI_SECURITY_ATTRIBUTES
- inherit
-
WAPI_GET_POINTER
- end
- creation
- make
- feature -- Creation
-
make
- feature -- Class data
-
nLength: INTEGER
-
lpSecurityDescriptor: POINTER
-
bInheritHandle: INTEGER
- feature -- Access
-
ptr: POINTER
- feature -- Change
-
set_nLength (i: INTEGER)
-
- require
-
correct_i:
i /= 0
-
- ensure
-
correct_set:
nlength = i
-
set_lpSecurityDescriptor (p: POINTER)
-
- ensure
-
correct_set:
lpsecuritydescriptor = p
-
set_bInheritHandle (i: INTEGER)
-
- ensure
-
correct_set:
binherithandle = i
end -- class WAPI_SECURITY_ATTRIBUTES