blob: 5e30fa5bed81ff180ed1b703486b37a0b81deee1 (
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
|
//+---------------------------------------------------------------------------
//
// Microsoft Windows
// Copyright (C) Microsoft Corporation, 1992 - 1993.
//
// File: csstg.idl
//
// Contents: ICatalogStorage
//
// History: Oct-93 DaveMont Created
//
//----------------------------------------------------------------------------
#include "idlmulti.h"
LOCAL_INTERFACE(00000014-0000-0008-c000-000000000099)
interface ICatalogStorage : IUnknown
{
HRESULT GetSCPath
(
[in] WCHAR ** pwszPath
);
HRESULT SetRows
(
[in] COLUMNSET * pcol,
[in] LONG * pwids,
[in] ULONG crows,
[in] TABLEROW ** prow
);
HRESULT DeleteRow
(
[in] ULONG wid
);
}
|