File tree Expand file tree Collapse file tree
NtApiDotNet/Win32/Security/Authorization Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1212// See the License for the specific language governing permissions and
1313// limitations under the License.
1414
15+ using NtApiDotNet . Utilities . Reflection ;
16+
1517namespace NtApiDotNet . Win32 . Security . Authorization
1618{
1719#pragma warning disable 1591
@@ -20,19 +22,33 @@ namespace NtApiDotNet.Win32.Security.Authorization
2022 /// </summary>
2123 public enum SeObjectType
2224 {
25+ [ SDKName ( "SE_UNKNOWN_OBJECT_TYPE" ) ]
2326 Unknown = 0 ,
27+ [ SDKName ( "SE_FILE_OBJECT" ) ]
2428 File ,
29+ [ SDKName ( "SE_SERVICE" ) ]
2530 Service ,
31+ [ SDKName ( "SE_PRINTER" ) ]
2632 Printer ,
33+ [ SDKName ( "SE_REGISTRY_KEY" ) ]
2734 RegistryKey ,
35+ [ SDKName ( "SE_LMSHARE" ) ]
2836 LMShare ,
37+ [ SDKName ( "SE_KERNEL_OBJECT" ) ]
2938 Kernel ,
39+ [ SDKName ( "SE_WINDOW_OBJECT" ) ]
3040 Window ,
41+ [ SDKName ( "SE_DS_OBJECT" ) ]
3142 Ds ,
43+ [ SDKName ( "SE_DS_OBJECT_ALL" ) ]
3244 DsAll ,
45+ [ SDKName ( "SE_PROVIDER_DEFINED_OBJECT" ) ]
3346 ProviderDefined ,
47+ [ SDKName ( "SE_WMIGUID_OBJECT" ) ]
3448 WmiGuid ,
49+ [ SDKName ( "SE_REGISTRY_WOW64_32KEY" ) ]
3550 RegistryWow6432Key ,
51+ [ SDKName ( "SE_REGISTRY_WOW64_64KEY" ) ]
3652 RegistryWow6464Key
3753 }
3854}
You can’t perform that action at this time.
0 commit comments