25 lines
488 B
C
25 lines
488 B
C
//+----------------------------------------------------------------------------
|
|
//
|
|
// Copyright (C) 1992, Microsoft Corporation
|
|
//
|
|
// File: provider.h
|
|
//
|
|
// Contents: Interface to the provider defining module
|
|
//
|
|
// Classes:
|
|
//
|
|
// Functions: ProviderInit
|
|
//
|
|
// History: 12 Sep 1992 Milans created.
|
|
//
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#ifndef _DFS_PROVIDERS_
|
|
#define _DFS_PROVIDERS_
|
|
|
|
NTSTATUS ProviderInit(void);
|
|
|
|
#endif
|
|
|
|
|