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.
 
 
 
 
 
 

67 lines
1.1 KiB

//+-------------------------------------------------------------------------
//
// Microsoft Windows
// Copyright (C) Microsoft Corporation, 1996 - 1996.
//
// File: cmd.hxx
//
// Contents: Command-line operations
//
// History: 7-May-96 BruceFo Created
//
//--------------------------------------------------------------------------
#ifndef __CMD_HXX__
#define __CMD_HXX__
VOID
CmdMap(
IN PWSTR pszDfsPath,
IN PWSTR pszUncPath,
IN PWSTR pszComment,
IN BOOLEAN fRestore
);
VOID
CmdUnmap(
IN PWSTR pszDfsPath
);
VOID
CmdAdd(
IN PWSTR pszDfsPath,
IN PWSTR pszUncPath,
IN BOOLEAN fRestore
);
VOID
CmdRemove(
IN PWSTR pszDfsPath,
IN PWSTR pszUncPath
);
VOID
CmdView(
IN PWSTR pszDfsName,
IN DWORD level,
IN BOOLEAN fBatch,
IN BOOLEAN fRestore
);
#ifdef MOVERENAME
VOID
CmdMove(
IN PWSTR pszDfsPath1,
IN PWSTR pszDfsPath2
);
VOID
CmdRename(
IN PWSTR pszPath,
IN PWSTR pszNewPath
);
#endif
#endif // __CMD_HXX__