summaryrefslogtreecommitdiffstats
path: root/private/ole32/stg/h/stgutil.hxx
blob: 3175246d33aa3e4af9bf152680fb820d28b4cb94 (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
//+---------------------------------------------------------------------------
//
//  Microsoft Windows
//  Copyright (C) Microsoft Corporation, 1992 - 1993.
//
//  File:	stgutil.hxx
//
//  Contents:	Generic storage utilities
//
//  History:	18-Aug-93	DrewB	Created
//              20-Mar-95   HenryLee added GetDriveLetter, SetDriveLetter
//
//----------------------------------------------------------------------------

#ifndef __STGUTIL_HXX__
#define __STGUTIL_HXX__

SCODE DetermineStgType(HANDLE hParent,
                       WCHAR const *pwcsName,
                       DWORD grfMode,
                       DWORD *pdwStgFmt,
                       HANDLE *ph);
SCODE DetermineHandleStgType(HANDLE h,
                             FILEDIR fd,
                             DWORD *pdwStgFmt);
SCODE CheckFsAndOpenAnyStorage(HANDLE hParent,
                               WCHAR const *pwcsName,
                               IStorage *pstgPriority,
                               DWORD grfMode,
                               SNB snbExclude,
                               BOOL fRoot,
                               IStorage **ppstg);
SCODE GenericMoveElement(IStorage *pstgFrom,
                         WCHAR const *pwcsName,
                         IStorage *pstgTo,
                         WCHAR const *pwcsNewName,
                         DWORD grfFlags);
WCHAR *FindExt(WCHAR const *pwcsPath);

// Generic storage openers, one for OFS and one for non-OFS
STDAPI OfsCreateStorageType(HANDLE hParent,
                            WCHAR const *pwcsName,
                            HANDLE h,
                            DWORD grfMode,
                            DWORD dwStgFmt,
                            LPSECURITY_ATTRIBUTES pssSecurity,
                            BOOL fRoot,
                            IStorage **ppstg);
STDAPI OfsOpenAnyStorage(HANDLE hParent,
                         WCHAR const *pwcsName,
                         HANDLE *ph,
                         DWORD dwStgFmt,
                         IStorage *pstgPriority,
                         DWORD grfMode,
                         SNB snbExclude,
                         BOOL fRoot,
                         IStorage **ppstg);
STDAPI CreateStorageType(HANDLE hParent,
                         WCHAR const *pwcsName,
                         HANDLE *ph,
                         DWORD grfMode,
                         DWORD dwStgFmt,
                         LPSECURITY_ATTRIBUTES pssSecurity,
                         IStorage **ppstg);
STDAPI OpenAnyStorage(HANDLE hParent,
                      WCHAR const *pwcsName,
                      HANDLE *ph,
                      DWORD dwStgFmt,
                      IStorage *pstgPriority,
                      DWORD grfMode,
                      SNB snbExclude,
                      IStorage **ppstg);

SCODE DestroyTree(HANDLE hParent,
                  WCHAR const *pwcsName,
                  HANDLE h,
                  FILEDIR fd);
SCODE RenameChild(HANDLE hParent,
                  WCHAR const *pwcsName,
                  WCHAR const *pwcsNewName);

SCODE InitDirectory (HANDLE hParent,
                          WCHAR const *pwcsName,
                          HANDLE h,
                          CREATEOPEN co,
                          STGOPEN *pStgOpen,
                          STGCREATE *pStgCreate,
                          SCODE scOfs,
                          REFIID riid,
                          void **ppObjectOpen);

SCODE InitStorage (HANDLE hParent,
                          WCHAR const *pwcsName,
                          HANDLE h,
                          CREATEOPEN co,
                          STGOPEN *pStgOpen,
                          STGCREATE *pStgCreate,
                          WCHAR const wcDrive,
                          SCODE *pscOfs,
                          BOOL fRestricted,
                          REFIID riid,
                          void **ppObjectOpen);

WCHAR GetDriveLetter (WCHAR const *pwcsName);

SCODE SetDriveLetter (WCHAR *pwcsName, WCHAR const wcDrive);

STDAPI OfsDocCreateStorage(HANDLE hParent,
                          WCHAR const *pwcsName,
                          HANDLE h,
                          DWORD grfMode,
                          LPSECURITY_ATTRIBUTES pssSecurity,
                          BOOL fRoot,
                          IStorage **ppstg);

STDAPI GetHandleServerInfo(
    IN HANDLE hFile,
    IN OUT LPWSTR lpServerName,
    IN OUT LPDWORD lpcbServerName,
    IN OUT LPWSTR lpReplSpecificPath,
    IN OUT LPDWORD lpcbReplSpecificPath);
  
#endif // #ifndef __STGUTIL_HXX__