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
821 B
42 lines
821 B
|
|
|
|
#include "precomp.h"
|
|
|
|
#define COUNTOF(x) (sizeof x/sizeof *x)
|
|
|
|
//----------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 2001.
|
|
//
|
|
// File: Dllsvr.c
|
|
//
|
|
// Contents: Wifi Policy management Snapin
|
|
//
|
|
//
|
|
// History: TaroonM
|
|
// 10/30/01
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
DWORD
|
|
DllRegisterServer()
|
|
{
|
|
DWORD dwError = 0;
|
|
HKEY hRegistryKey = NULL;
|
|
HKEY hOakleyKey = NULL;
|
|
DWORD dwDisposition = 0;
|
|
DWORD dwTypesSupported = 7;
|
|
HKEY hPolicyLocationKey = NULL;
|
|
HANDLE hPolicyStore = NULL;
|
|
|
|
return (dwError);
|
|
}
|
|
|
|
|
|
DWORD
|
|
DllUnregisterServer()
|
|
{
|
|
return (ERROR_SUCCESS);
|
|
}
|
|
|