* include/secext.h: New file. Declare EXTENDED_NAME_FORMAT.

* include/security.h: Include secext.h.
	* include/winbase.h: Declare COMPUTER_NAME_FORMAT.
	Thanks to Dimitri Papadopoulos <dimitri_at@users.sf.net>
This commit is contained in:
Earnie Boyd 2003-02-09 14:02:30 +00:00
parent f3c5821cb7
commit 4fa551dbc4
5 changed files with 46 additions and 2 deletions

View File

@ -4,6 +4,10 @@
(Ke386QueryToAccessMap): Ditto.
(Ke386SetIoAccessMap): Ditto.
Thanks to Marcel Telka <telka@users.sf.net>
* include/secext.h: New file. Declare EXTENDED_NAME_FORMAT.
* include/security.h: Include secext.h.
* include/winbase.h: Declare COMPUTER_NAME_FORMAT.
Thanks to Dimitri Papadopoulos <dimitri_at@users.sf.net>
2003-02-05 Earnie Boyd <earnie@users.sf.net>

View File

@ -1450,8 +1450,11 @@ GLAPI void APIENTRY glSamplePass( GLenum pass );
/* Include external definitions of OpenGL extensions */
#include <GL/glext.h>
/* Removed, see this bug report for reference:
* http://sourceforge.net/tracker/index.php?func=detail&aid=610178&group_id=2435&atid=102435
*
* #include <GL/glext.h>
*/
/************************************************************************

View File

@ -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 */

View File

@ -37,5 +37,6 @@ typedef long SECURITY_STATUS;
#include <sspi.h>
#include <ntsecpkg.h>
#include <secext.h>
#endif /* _SECURITY_H */

View File

@ -1608,6 +1608,18 @@ BOOL WINAPI AllocateUserPhysicalPages(HANDLE,PULONG_PTR,PULONG_PTR);
BOOL WINAPI FreeUserPhysicalPages(HANDLE,PULONG_PTR,PULONG_PTR);
BOOL WINAPI MapUserPhysicalPages(PVOID,ULONG_PTR,PULONG_PTR);
BOOL WINAPI MapUserPhysicalPagesScatter(PVOID*,ULONG_PTR,PULONG_PTR);
typedef enum _COMPUTER_NAME_FORMAT
{
ComputerNameNetBIOS,
ComputerNameDnsHostname,
ComputerNameDnsDomain,
ComputerNameDnsFullyQualified,
ComputerNamePhysicalNetBIOS,
ComputerNamePhysicalDnsHostname,
ComputerNamePhysicalDnsDomain,
ComputerNamePhysicalDnsFullyQualified,
ComputerNameMax
} COMPUTER_NAME_FORMAT;
#endif
#ifdef UNICODE