Source code of Windows XP (NT5)
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.
|
|
//+--------------------------------------------------------------------------
//
// Microsoft Windows
// Copyright (C) Microsoft Corporation, 1996-1996
//
// File:
//
// Contents:
//
// History:
//
//---------------------------------------------------------------------------
#include <windows.h>
#include "license.h"
#include "tlsapi.h"
extern void InitPolicyModule(HMODULE hModule);
BOOL WINAPI DllMain( IN HINSTANCE hInstance, IN DWORD reason, IN LPVOID reserved ) /*++
++*/ { BOOL b;
UNREFERENCED_PARAMETER(reserved); b = TRUE;
switch(reason) { case DLL_PROCESS_ATTACH: InitPolicyModule( hInstance ); break;
case DLL_THREAD_ATTACH: break;
case DLL_PROCESS_DETACH: break;
case DLL_THREAD_DETACH: break; }
return(b); }
|