mirror of https://github.com/lianthony/NT4.0
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.
33 lines
692 B
33 lines
692 B
//+---------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1992 - 1994.
|
|
//
|
|
// File: network.hxx
|
|
//
|
|
// Contents: The set of routines that support updating network
|
|
// drive shares when adding and deleting drive letters.
|
|
//
|
|
// History: 12-26-94 Bob Rinne Created
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#ifndef __NETWORK_HXX__
|
|
#define __NETWORK_HXX__
|
|
|
|
VOID
|
|
NetworkInitialize(
|
|
VOID
|
|
);
|
|
|
|
VOID
|
|
NetworkShare(
|
|
IN LPCTSTR DriveLetter
|
|
);
|
|
|
|
VOID
|
|
NetworkRemoveShare(
|
|
IN LPCTSTR DriveLetter
|
|
);
|
|
|
|
#endif __NETWORK_HXX__
|