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.
24 lines
512 B
24 lines
512 B
//+----------------------------------------------------------------------------
|
|
//
|
|
// 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
|
|
|
|
|