summaryrefslogtreecommitdiffstats
path: root/private/ole32/stg/exp/ascii.hxx
blob: 72eb593370376f7ce69b97b91315fb69d86d9390 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
//+--------------------------------------------------------------
//
//  Microsoft Windows
//  Copyright (C) Microsoft Corporation, 1992 - 1992.
//
//  File:	ascii.hxx
//
//  Contents:	WCHAR header for ASCII layer
//
//  History:	23-Jun-92	DrewB	Created
//
//---------------------------------------------------------------

#ifndef __ASCII_HXX__
#define __ASCII_HXX__

#ifndef OLEWIDECHAR
#ifndef REF
SCODE StgCreateDocfileW(WCHAR const *pwcsName,
                        DWORD grfMode,
                        DWORD reserved,
                        IStorage **ppstgOpen);
SCODE OpenStorageW(WCHAR const *pszName,
                   IStorage *pstgPriority,
                   DWORD grfMode,
                   SNBW snbExclude,
                   DWORD reserved,
                   IStorage **ppstgOpen,
                   CLSID *pcid);
#endif //!REF
SCODE OpenStorageOnILockBytesW(ILockBytes *plkbyt,
                               IStorage *pstgPriority,
                               DWORD grfMode,
                               SNBW snbExclude,
                               DWORD reserved,
                               IStorage **ppstgOpen,
                               CLSID *pcid);
#endif

#endif // #ifndef __ASCII_HXX__