stream.c
资源名称:shell.rar [点击查看]
上传用户:xhy777
上传日期:2007-02-14
资源大小:24088k
文件大小:1k
源码类别:
系统编程
开发平台:
Visual C++
- //---------------------------------------------------------------------------
- //
- // 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);
- }
- STDAPI_(IStream *)
- CreateMemStream(
- LPBYTE pInit,
- UINT cbInit)
- {
- return SHCreateMemStream(pInit, cbInit);
- }
English
