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.
43 lines
585 B
43 lines
585 B
/*++
|
|
|
|
Copyright (c) 1990 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
bowbackp.h
|
|
|
|
Abstract:
|
|
|
|
This module implements all of the backup browser related routines for the
|
|
NT browser
|
|
|
|
Author:
|
|
|
|
Larry Osterman (LarryO) 21-Jun-1990
|
|
|
|
Revision History:
|
|
|
|
21-Jun-1990 LarryO
|
|
|
|
Created
|
|
|
|
--*/
|
|
|
|
#ifndef _BOWBACKP_
|
|
#define _BOWBACKP_
|
|
|
|
DATAGRAM_HANDLER(
|
|
BowserHandleBecomeBackup
|
|
);
|
|
|
|
DATAGRAM_HANDLER(
|
|
BowserResetState
|
|
);
|
|
|
|
VOID
|
|
BowserResetStateForTransport(
|
|
IN PTRANSPORT TransportName,
|
|
IN UCHAR NewState
|
|
);
|
|
|
|
#endif
|