mirror of https://github.com/tongzx/nt5src
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
42 lines
799 B
/********************************************************************/
|
|
/** Copyright(c) 1989 Microsoft Corporation. **/
|
|
/********************************************************************/
|
|
|
|
//***
|
|
//
|
|
// Filename: init.h
|
|
//
|
|
// Description: This file contains prototypes of functions to initialize the
|
|
// PPP engine
|
|
//
|
|
// History:
|
|
// Nov 11,1993. NarenG Created original version.
|
|
//
|
|
|
|
DWORD
|
|
LoadProtocolDlls(
|
|
IN DLL_ENTRY_POINTS * pCpDlls,
|
|
IN DWORD cCpDlls,
|
|
IN HKEY hKeyPpp,
|
|
OUT DWORD * pcTotalNumProtocols
|
|
);
|
|
|
|
DWORD
|
|
ReadPPPKeyValues(
|
|
IN HKEY hKeyPpp
|
|
);
|
|
|
|
DWORD
|
|
ReadRegistryInfo(
|
|
OUT HKEY * phkeyPpp
|
|
);
|
|
|
|
DWORD
|
|
InitializePPP(
|
|
VOID
|
|
);
|
|
|
|
VOID
|
|
PPPCleanUp(
|
|
VOID
|
|
);
|