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.

42 lines
799 B

  1. /********************************************************************/
  2. /** Copyright(c) 1989 Microsoft Corporation. **/
  3. /********************************************************************/
  4. //***
  5. //
  6. // Filename: init.h
  7. //
  8. // Description: This file contains prototypes of functions to initialize the
  9. // PPP engine
  10. //
  11. // History:
  12. // Nov 11,1993. NarenG Created original version.
  13. //
  14. DWORD
  15. LoadProtocolDlls(
  16. IN DLL_ENTRY_POINTS * pCpDlls,
  17. IN DWORD cCpDlls,
  18. IN HKEY hKeyPpp,
  19. OUT DWORD * pcTotalNumProtocols
  20. );
  21. DWORD
  22. ReadPPPKeyValues(
  23. IN HKEY hKeyPpp
  24. );
  25. DWORD
  26. ReadRegistryInfo(
  27. OUT HKEY * phkeyPpp
  28. );
  29. DWORD
  30. InitializePPP(
  31. VOID
  32. );
  33. VOID
  34. PPPCleanUp(
  35. VOID
  36. );