Source code of Windows XP (NT5)
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.

36 lines
546 B

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