DLLMAIN.CPP
/* 
 *  This is a part of the Microsoft Source Code Samples. 
 *  Copyright 1996 - 1998 Microsoft Corporation. 
 *  All rights reserved. 
 * 
 *This sample code shows the usage of some portions 
 *of the NTMS API. 
 * 
 *Return codes are, for the most part, not checked in 
 *this code. See the Programmer's reference for error 
 *return information. 
 * 
 * THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF 
 * ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO  
 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A 
 * PARTICULAR PURPOSE. 
 * 
 * Copyright 1997 - 1998 Microsoft Corporation.  All Rights Reserved. * 
 */ 
#include <windows.h> 
 
// 
//   $Function:: $ 
//  
// $Parameters:: $ 
//  
//    $Content:: $ 
//  
//     $Return:: $ 
// 
BOOL WINAPI DllMain (HINSTANCE hDLL, DWORD dwReason, LPVOID lpReserved) 
{ 
  return (TRUE); 
}