summaryrefslogtreecommitdiffstats
path: root/winsup/w32api/include/secext.h
diff options
context:
space:
mode:
Diffstat (limited to 'winsup/w32api/include/secext.h')
-rw-r--r--winsup/w32api/include/secext.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/winsup/w32api/include/secext.h b/winsup/w32api/include/secext.h
new file mode 100644
index 000000000..1d5ee58cf
--- /dev/null
+++ b/winsup/w32api/include/secext.h
@@ -0,0 +1,24 @@
+#ifndef _SECEXT_H
+#define _SECEXT_H
+#if __GNUC__ >= 3
+#pragma GCC system_header
+#endif
+
+#ifndef RC_INVOKED
+#if (_WIN32_WINNT >= 0x0500)
+typedef enum
+{
+ NameUnknown = 0,
+ NameFullyQualifiedDN = 1,
+ NameSamCompatible = 2,
+ NameDisplay = 3,
+ NameUniqueId = 6,
+ NameCanonical = 7,
+ NameUserPrincipal = 8,
+ NameCanonicalEx = 9,
+ NameServicePrincipal = 10,
+ NameDnsDomain = 12
+} EXTENDED_NAME_FORMAT, *PEXTENDED_NAME_FORMAT;
+#endif /* ! RC_INVOKED */
+#endif /* _WIN32_WINNT >= 0x0500 */
+#endif /* ! _SECEXT_H */