|
Overview |
|
|
|
Group |
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| No
| Win32s
| No
| Import Library
| -
| Header File
| winnt.h
| Unicode
| No
| Platform Notes
| None
|
|
|
GENERIC_MAPPING
The GENERIC_MAPPING structure defines the mapping of generic access rights to specific and
standard access rights for an object. When a client application requests generic
access to an object, that request is mapped to the access rights defined in this
structure.
typedef struct _GENERIC_MAPPING { // gm
ACCESS_MASK GenericRead;
ACCESS_MASK GenericWrite;
ACCESS_MASK GenericExecute;
ACCESS_MASK GenericAll;
} GENERIC_MAPPING;
Members
GenericRead
Specifies an access mask defining read access to an object.
GenericWrite
Specifies an access mask defining write access to an object.
GenericExecute
Specifies an access mask defining execute access to an object.
GenericAll
Specifies an access mask defining all possible types of access to an object.
See Also
AccessCheck, AccessCheckAndAuditAlarm, CreatePrivateObjectSecurity, MapGenericMask, SetPrivateObjectSecurity, ACCESS_MASK
Related Links
Software for Delphi and C++ Builder developers
Software for Visual Studio .NET developers
Software for Visual Basic 6 developers
Delphi Tips&Tricks
MegaDetailed.NET
More Online Helps
Win32 Multimedia Programmer's Reference (mmedia.hlp)
OLE Programmer's Reference (ole.hlp)
Microsoft Windows Pen API Programmer's Reference (penapi.hlp)
Microsoft Windows Sockets 2 Reference (sock2.hlp)
Microsoft Windows Telephony API (TAPI) Programmer's Reference (tapi.hlp)
Unix Manual Pages
|