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.
59 lines
722 B
59 lines
722 B
/*++
|
|
|
|
Copyright (C) Microsoft Corporation, 1997 - 1999
|
|
|
|
Module Name:
|
|
|
|
dest.hxx
|
|
|
|
Abstract:
|
|
|
|
Header for Destination reachability polling code.
|
|
|
|
Author:
|
|
|
|
Gopal Parupudi <GopalP>
|
|
|
|
[Notes:]
|
|
|
|
optional-notes
|
|
|
|
Revision History:
|
|
|
|
GopalP 10/31/1997 Start.
|
|
|
|
--*/
|
|
|
|
|
|
|
|
#ifndef __DEST_HXX__
|
|
#define __DEST_HXX__
|
|
|
|
BOOL
|
|
StartReachabilityEngine(
|
|
void
|
|
);
|
|
|
|
BOOL
|
|
StopReachabilityEngine(
|
|
void
|
|
);
|
|
|
|
BOOL
|
|
InitReachabilityEngine(
|
|
void
|
|
);
|
|
|
|
SENS_TIMER_CALLBACK_RETURN
|
|
ReachabilityPollingRoutine(
|
|
PVOID pvIgnore,
|
|
BOOLEAN bIgnore
|
|
);
|
|
|
|
HRESULT
|
|
GetDestinationsFromSubscriptions(
|
|
void
|
|
);
|
|
|
|
#endif // __DEST_HXX__
|
|
|