mirror of https://github.com/lianthony/NT4.0
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.
41 lines
600 B
41 lines
600 B
/*++
|
|
Copyright (c) 1995 Microsoft Corporation
|
|
|
|
Module Name :
|
|
|
|
filtrcfg.hxx
|
|
|
|
Abstract:
|
|
|
|
This file contains declarations for Domain Filter Configuration
|
|
APIs.
|
|
|
|
Author:
|
|
|
|
Sophia Chung ( SophiaC ) 28-Aug-1995
|
|
|
|
Environment:
|
|
|
|
User Mode -- Win32
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
# ifndef _FILTERCONF_H_
|
|
# define _FILTERCONF_H_
|
|
|
|
DWORD
|
|
DomainFilterConfigGet( OUT LPINETA_GLOBAL_CONFIG_INFO pConfigInfo );
|
|
|
|
|
|
DWORD
|
|
DomainFilterConfigSet( IN HKEY hkey,
|
|
IN INETA_GLOBAL_CONFIG_INFO * pConfigInfo );
|
|
|
|
|
|
|
|
|
|
# endif // _FILTERCONF_H_
|
|
|
|
|