mirror of https://github.com/tongzx/nt5src
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.
44 lines
538 B
44 lines
538 B
/*++
|
|
|
|
Copyright (c) 1996 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
clusrout.h
|
|
|
|
Abstract:
|
|
|
|
Cluster code support: entrypoints exposed by the router.
|
|
|
|
Author:
|
|
|
|
Albert Ting (AlbertT) 1-Oct-96
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
#ifndef _CLUSROUT_H
|
|
#define _CLUSROUT_H
|
|
|
|
BOOL
|
|
ClusterSplOpen(
|
|
LPCTSTR pszServer,
|
|
LPCTSTR pszResource,
|
|
PHANDLE phSpooler,
|
|
LPCTSTR pszName,
|
|
LPCTSTR pszAddress
|
|
);
|
|
|
|
BOOL
|
|
ClusterSplClose(
|
|
HANDLE hSpooler
|
|
);
|
|
|
|
|
|
BOOL
|
|
ClusterSplIsAlive(
|
|
HANDLE hSpooler
|
|
);
|
|
|
|
#endif // ifdef _CLUSROUT_H
|