mirror of
https://github.com/reactos/reactos.git
synced 2024-11-10 00:34:39 +00:00
75 lines
1.6 KiB
C
75 lines
1.6 KiB
C
|
/* NFSv4.1 client for Windows
|
|||
|
* Copyright <EFBFBD> 2012 The Regents of the University of Michigan
|
|||
|
*
|
|||
|
* Olga Kornievskaia <aglo@umich.edu>
|
|||
|
* Casey Bodley <cbodley@umich.edu>
|
|||
|
*
|
|||
|
* This library is free software; you can redistribute it and/or modify it
|
|||
|
* under the terms of the GNU Lesser General Public License as published by
|
|||
|
* the Free Software Foundation; either version 2.1 of the License, or (at
|
|||
|
* your option) any later version.
|
|||
|
*
|
|||
|
* This library is distributed in the hope that it will be useful, but
|
|||
|
* without any warranty; without even the implied warranty of merchantability
|
|||
|
* or fitness for a particular purpose. See the GNU Lesser General Public
|
|||
|
* License for more details.
|
|||
|
*
|
|||
|
* You should have received a copy of the GNU Lesser General Public License
|
|||
|
* along with this library; if not, write to the Free Software Foundation,
|
|||
|
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
|||
|
*/
|
|||
|
|
|||
|
/*++
|
|||
|
|
|||
|
Copyright (c) 1989-1999 Microsoft Corporation
|
|||
|
|
|||
|
Module Name:
|
|||
|
|
|||
|
dllmain.c
|
|||
|
|
|||
|
Abstract:
|
|||
|
|
|||
|
This module implements the initialization routines for network
|
|||
|
provider interface
|
|||
|
|
|||
|
Notes:
|
|||
|
|
|||
|
This module has been built and tested only in UNICODE environment
|
|||
|
|
|||
|
--*/
|
|||
|
|
|||
|
#include <windows.h>
|
|||
|
#include <process.h>
|
|||
|
|
|||
|
|
|||
|
// NOTE:
|
|||
|
//
|
|||
|
// Function:` DllMain
|
|||
|
//
|
|||
|
// Return: TRUE => Success
|
|||
|
// FALSE => Failure
|
|||
|
|
|||
|
BOOL WINAPI DllMain(HINSTANCE hDLLInst, DWORD fdwReason, LPVOID lpvReserved)
|
|||
|
{
|
|||
|
BOOL bStatus = TRUE;
|
|||
|
|
|||
|
switch (fdwReason) {
|
|||
|
case DLL_PROCESS_ATTACH:
|
|||
|
break;
|
|||
|
|
|||
|
case DLL_PROCESS_DETACH:
|
|||
|
break;
|
|||
|
|
|||
|
case DLL_THREAD_ATTACH:
|
|||
|
break;
|
|||
|
|
|||
|
case DLL_THREAD_DETACH:
|
|||
|
break;
|
|||
|
|
|||
|
default:
|
|||
|
break;
|
|||
|
}
|
|||
|
|
|||
|
return(bStatus);
|
|||
|
}
|