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.
42 lines
578 B
42 lines
578 B
/*++
|
|
|
|
Copyright (c) 1989-2001 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
svclib.h
|
|
|
|
Abstract:
|
|
|
|
Declarations for SMB service
|
|
|
|
Author:
|
|
|
|
Jiandong Ruan
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
#ifndef __SVCLIB_H__
|
|
#define __SVCLIB_H__
|
|
|
|
VOID
|
|
SmbSetTraceRoutine(
|
|
int (*trace)(char *,...)
|
|
);
|
|
|
|
typedef DWORD (*SMBSVC_UPDATE_STATUS)(VOID);
|
|
|
|
DWORD
|
|
SmbStartService(
|
|
LONG NumWorker,
|
|
SMBSVC_UPDATE_STATUS HeartBeating
|
|
);
|
|
|
|
VOID
|
|
SmbStopService(
|
|
SMBSVC_UPDATE_STATUS HeartBeating
|
|
);
|
|
|
|
#endif // __SVCLIB_H__
|