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.

31 lines
514 B

  1. #ifndef KERNEL
  2. PSTR pszExtName = "RTUMEXT";
  3. #else
  4. PSTR pszExtName = "IPSEC";
  5. #endif
  6. #include <stdexts.h>
  7. #include <stdexts.c>
  8. DllInit(
  9. HANDLE hModule,
  10. DWORD dwReason,
  11. DWORD dwReserved
  12. )
  13. {
  14. switch (dwReason) {
  15. case DLL_THREAD_ATTACH:
  16. break;
  17. case DLL_THREAD_DETACH:
  18. break;
  19. case DLL_PROCESS_DETACH:
  20. break;
  21. case DLL_PROCESS_ATTACH:
  22. break;
  23. }
  24. return TRUE;
  25. }