Source code of Windows XP (NT5)
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
///////////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 1998, Microsoft Corp. All rights reserved.
//
// FILE
//
// dyninfo.h
//
// SYNOPSIS
//
// Declares global variables containing dynamic configuration info.
//
// MODIFICATION HISTORY
//
// 08/15/1998 Original version.
//
///////////////////////////////////////////////////////////////////////////////
#ifndef _DYNINFO_H_
#define _DYNINFO_H_
#if _MSC_VER >= 1000
#pragma once
#endif
#include <iaslsa.h>
#ifdef __cplusplus
extern "C" { #endif
//////////
// The primary domain.
//////////
extern WCHAR thePrimaryDomain[];
//////////
// The default domain.
//////////
extern PCWSTR theDefaultDomain;
//////////
// Role of the local machine.
//////////
extern IAS_ROLE ourRole;
//////////
// Name of the guest account for the default domain.
//////////
extern WCHAR theGuestAccount[];
DWORD WINAPI IASDynamicInfoInitialize( VOID );
VOID WINAPI IASDynamicInfoShutdown( VOID );
#ifdef __cplusplus
} #endif
#endif // _DYNINFO_H_
|