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.
51 lines
1.1 KiB
51 lines
1.1 KiB
//+---------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1999.
|
|
//
|
|
// File: P E R S I S T . H
|
|
//
|
|
// Contents: Module repsonsible for persistence of the network
|
|
// configuration information.
|
|
//
|
|
// Notes:
|
|
//
|
|
// Author: shaunco 15 Jan 1999
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#pragma once
|
|
#include "netcfg.h"
|
|
|
|
HRESULT
|
|
HrLoadNetworkConfigurationFromBuffer (
|
|
IN const BYTE* pbBuf,
|
|
IN ULONG cbBuf,
|
|
OUT CNetConfig* pNetConfig);
|
|
|
|
HRESULT
|
|
HrLoadNetworkConfigurationFromLegacy (
|
|
OUT CNetConfig* pNetConfig);
|
|
|
|
HRESULT
|
|
HrLoadNetworkConfigurationFromRegistry (
|
|
IN REGSAM samDesired,
|
|
OUT CNetConfig* pNetConfig);
|
|
|
|
|
|
HRESULT
|
|
HrSaveNetworkConfigurationToBuffer (
|
|
IN CNetConfig* pNetConfig,
|
|
IN BYTE* pbBuf,
|
|
OUT ULONG* pcbBuf);
|
|
|
|
HRESULT
|
|
HrSaveNetworkConfigurationToBufferWithAlloc (
|
|
IN CNetConfig* pNetConfig,
|
|
OUT BYTE** ppbBuf,
|
|
OUT ULONG* pcbBuf);
|
|
|
|
HRESULT
|
|
HrSaveNetworkConfigurationToRegistry (
|
|
IN CNetConfig* pNetConfig);
|
|
|