Leaked source code of windows server 2003
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
583 B

/*++
Copyright (c) 2001 Microsoft Corporation
Module Name:
dfsComp.c
Abstract:
dll to check compatability of existing DFS with Windows XP professional
Revision History:
Aug. 7 2001, Author: navjotv
--*/
#include "dfsCompCheck.hxx"
BOOL
WINAPI
DllMain (
HINSTANCE hinst,
DWORD dwReason,
LPVOID pvReserved )
{
switch (dwReason) {
case DLL_PROCESS_ATTACH:
break;
case DLL_THREAD_ATTACH:
break;
case DLL_THREAD_DETACH:
break;
case DLL_PROCESS_DETACH:
break;
}
return (TRUE);
}