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.

34 lines
490 B

  1. #include "netpch.h"
  2. #pragma hdrstop
  3. #include <rasapip.h>
  4. static
  5. DWORD
  6. APIENTRY
  7. RasReferenceRasman (
  8. BOOL fAttach
  9. )
  10. {
  11. return ERROR_PROC_NOT_FOUND;
  12. }
  13. static
  14. DWORD
  15. APIENTRY
  16. RasInitialize()
  17. {
  18. return ERROR_PROC_NOT_FOUND;
  19. }
  20. //
  21. // !! WARNING !! The entries below must be in alphabetical order, and are CASE SENSITIVE (eg lower case comes last!)
  22. //
  23. DEFINE_PROCNAME_ENTRIES(rasman)
  24. {
  25. DLPENTRY(RasInitialize)
  26. DLPENTRY(RasReferenceRasman)
  27. };
  28. DEFINE_PROCNAME_MAP(rasman)