cmd: DIR command outputs free space for the path.
[wine.git] / dlls / msado15 / msado15_private.h
blobf8a515a596ff10a6c0939b9896f1b624dca5be5d
1 /*
2 * Copyright 2019 Hans Leidekker for CodeWeavers
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 #ifndef _WINE_MSADO15_PRIVATE_H_
20 #define _WINE_MSADO15_PRIVATE_H_
22 #define MAKE_ADO_HRESULT( err ) MAKE_HRESULT( SEVERITY_ERROR, FACILITY_CONTROL, err )
24 HRESULT Command_create( void ** );
25 HRESULT Connection_create( void ** );
26 HRESULT Recordset_create( void ** );
27 HRESULT Stream_create( void ** );
29 typedef enum tid_t {
30 ADORecordsetConstruction_tid,
31 Command_tid,
32 Connection_tid,
33 Field_tid,
34 Fields_tid,
35 Properties_tid,
36 Property_tid,
37 Recordset_tid,
38 Stream_tid,
39 LAST_tid
40 } tid_t;
42 HRESULT get_typeinfo(tid_t tid, ITypeInfo **typeinfo);
44 #endif /* _WINE_MSADO15_PRIVATE_H_ */