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

  1. /*++
  2. Copyright (c) 2001 Microsoft Corporation
  3. Module Name:
  4. dfsComp.c
  5. Abstract:
  6. dll to check compatability of existing DFS with Windows XP professional
  7. Revision History:
  8. Aug. 7 2001, Author: navjotv
  9. --*/
  10. #include "dfsCompCheck.hxx"
  11. BOOL
  12. WINAPI
  13. DllMain (
  14. HINSTANCE hinst,
  15. DWORD dwReason,
  16. LPVOID pvReserved )
  17. {
  18. switch (dwReason) {
  19. case DLL_PROCESS_ATTACH:
  20. break;
  21. case DLL_THREAD_ATTACH:
  22. break;
  23. case DLL_THREAD_DETACH:
  24. break;
  25. case DLL_PROCESS_DETACH:
  26. break;
  27. }
  28. return (TRUE);
  29. }