Skip to content

Commit 12ab93e

Browse files
committed
Added SDK names.
1 parent 96bcb0b commit 12ab93e

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

NtApiDotNet/Win32/Security/Authorization/SeObjectType.cs

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15+
using NtApiDotNet.Utilities.Reflection;
16+
1517
namespace 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
}

0 commit comments

Comments
 (0)