windows-nt/Source/XPSP1/NT/base/fs/rdr2/smbrdr/smbrdr.h
2020-09-26 16:20:57 +08:00

62 lines
671 B
C
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*++
Copyright (c) 1991 Microsoft Corporation
Module Name:
smbrdr.h
Abstract:
Author:
Revision History:
--*/
#ifndef _SWITCHRX_INCLUDED_
#define _SWITCHRX_INCLUDED_
#include <lmcons.h>
#if DBG
#define STATIC
#define DEBUG if (TRUE)
#define IF_DEBUG(Function) if ( TRUE )
#else
#define STATIC static
#define DEBUG if (FALSE)
#define IF_DEBUG(Function) if (FALSE)
#endif // DBG
NET_API_STATUS
SwRxRdr2Muck(
void
);
NET_API_STATUS
SwRxRdr1Muck(
void
);
VOID
SwRxStartProxyFileSystem(void);
VOID
SwRxStopProxyFileSystem(void);
typedef
NET_API_STATUS
(*PSWRX_REGISTRY_MUCKER)(
void
);
#endif // ifndef _SWITCHRX_INCLUDED_