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.
26 lines
759 B
26 lines
759 B
//---------------------------------------------------------------------------
|
|
//
|
|
// Copyright (c) Microsoft Corporation 1991-1993
|
|
//
|
|
// File: stream.c
|
|
//
|
|
// This file contains some of the stream support code that is used by
|
|
// the shell. It also contains the shells implementation of a memory
|
|
// stream that is used by the cabinet to allow views to be serialized.
|
|
//
|
|
// History:
|
|
// 08-20-93 KurtE Added header block and memory stream.
|
|
//
|
|
//---------------------------------------------------------------------------
|
|
#include "shellprv.h"
|
|
|
|
|
|
STDAPI_(IStream *)
|
|
OpenRegStream(
|
|
HKEY hkey,
|
|
LPCTSTR pszSubkey,
|
|
LPCTSTR pszValue,
|
|
DWORD grfMode)
|
|
{
|
|
return SHOpenRegStream(hkey, pszSubkey, pszValue, grfMode);
|
|
}
|