Leaked source code of windows server 2003
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 Corporation
Module Name:
ckmach.h
Abstract:
This is the include file for supporting checking a machine to see if it can be converted to IntelliMirror.
Author:
Sean Selitrennikoff - 4/5/98
Revision History:
--*/
//
// Main processing functions
//
NTSTATUS AddCheckMachineToDoItems( VOID );
//
// Support functions to do individual tasks
//
NTSTATUS CheckIfNt5( VOID );
NTSTATUS CheckForPartitions( VOID ); //
// Utility functions
//
NTSTATUS NtPathToDosPath( IN PWCHAR NtPath, OUT PWCHAR DosPath, IN ULONG DosPathBufferSize, IN BOOLEAN GetDriveOnly, IN BOOLEAN NtPathIsBasic );
NTSTATUS NtNameToArcName( IN PWSTR NtName, OUT PWSTR ArcName, IN ULONG ArcNameBufferSize, IN BOOLEAN NtNameIsBasic );
NTSTATUS GetBaseDeviceName( IN PWSTR SymbolicName, OUT PWSTR Buffer, IN ULONG Size );
|