Line data Source code
1 : #ifndef INCLUDED_COM_SUN_STAR_UCB_FETCHRESULT_HDL
2 : #define INCLUDED_COM_SUN_STAR_UCB_FETCHRESULT_HDL
3 :
4 : #include "sal/config.h"
5 :
6 : #include "com/sun/star/uno/Any.h"
7 : #include "com/sun/star/uno/Sequence.h"
8 : #include "cppu/macros.hxx"
9 : #include "sal/types.h"
10 :
11 : namespace com { namespace sun { namespace star { namespace uno { class Type; } } } }
12 :
13 : namespace com { namespace sun { namespace star { namespace ucb {
14 :
15 : #ifdef SAL_W32
16 : # pragma pack(push, 8)
17 : #endif
18 :
19 0 : struct FetchResult {
20 : inline FetchResult() SAL_THROW(());
21 :
22 : inline FetchResult(const ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any >& Rows_, const ::sal_Int32& StartIndex_, const ::sal_Bool& Orientation_, const ::sal_Int16& FetchError_) SAL_THROW(());
23 :
24 : ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any > Rows;
25 : ::sal_Int32 StartIndex;
26 : ::sal_Bool Orientation;
27 : ::sal_Int16 FetchError;
28 : };
29 :
30 : #ifdef SAL_W32
31 : # pragma pack(pop)
32 : #endif
33 :
34 :
35 : inline ::com::sun::star::uno::Type const & cppu_detail_getUnoType(SAL_UNUSED_PARAMETER css::ucb::FetchResult const *);
36 : } } } }
37 :
38 : inline ::com::sun::star::uno::Type const & SAL_CALL getCppuType(const css::ucb::FetchResult *) SAL_THROW(());
39 :
40 : #endif
|