summaryrefslogtreecommitdiff
path: root/ucb
diff options
context:
space:
mode:
authorFridrich Štrba <fridrich.strba@bluewin.ch>2011-03-26 01:02:51 +0100
committerFridrich Štrba <fridrich.strba@bluewin.ch>2011-03-26 01:02:51 +0100
commit2d29361dbe8f9b0ee5a55b83aa04382585582c7f (patch)
treeee7965393fe75bbcc25208db237ef1288b487fc8 /ucb
parentf1ec4b66c2bbcfd40605f8741db557ed80e871cb (diff)
fix build of odma provider
Diffstat (limited to 'ucb')
-rwxr-xr-xucb/source/ucp/odma/odma_content.cxx8
-rwxr-xr-xucb/source/ucp/odma/odma_contentcaps.cxx8
-rwxr-xr-xucb/source/ucp/odma/odma_datasupplier.cxx9
-rwxr-xr-xucb/source/ucp/odma/odma_inputstream.cxx3
-rwxr-xr-xucb/source/ucp/odma/odma_lib.cxx3
-rwxr-xr-xucb/source/ucp/odma/odma_main.cxx3
-rwxr-xr-xucb/source/ucp/odma/odma_provider.cxx8
-rwxr-xr-xucb/source/ucp/odma/odma_resultset.cxx4
-rwxr-xr-xucb/source/ucp/odma/odma_services.cxx3
9 files changed, 28 insertions, 21 deletions
diff --git a/ucb/source/ucp/odma/odma_content.cxx b/ucb/source/ucp/odma/odma_content.cxx
index 05b36107e73b..7eae232e8e67 100755
--- a/ucb/source/ucp/odma/odma_content.cxx
+++ b/ucb/source/ucp/odma/odma_content.cxx
@@ -29,11 +29,9 @@
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_ucb.hxx"
-/**************************************************************************
- TODO
- **************************************************************************
-
- *************************************************************************/
+#ifdef WNT
+#include <windows.h>
+#endif
#include <osl/diagnose.h>
#include "odma_contentprops.hxx"
#include <com/sun/star/ucb/XDynamicResultSet.hpp>
diff --git a/ucb/source/ucp/odma/odma_contentcaps.cxx b/ucb/source/ucp/odma/odma_contentcaps.cxx
index aa31c3b87a1b..45b5425a1ab0 100755
--- a/ucb/source/ucp/odma/odma_contentcaps.cxx
+++ b/ucb/source/ucp/odma/odma_contentcaps.cxx
@@ -29,11 +29,9 @@
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_ucb.hxx"
-/**************************************************************************
- TODO
- **************************************************************************
-
- *************************************************************************/
+#ifdef WNT
+#include <windows.h>
+#endif
#include <com/sun/star/beans/Property.hpp>
#include <com/sun/star/beans/PropertyAttribute.hpp>
#include <com/sun/star/beans/PropertyValue.hpp>
diff --git a/ucb/source/ucp/odma/odma_datasupplier.cxx b/ucb/source/ucp/odma/odma_datasupplier.cxx
index 817a4f4decf8..0003d93ae28b 100755
--- a/ucb/source/ucp/odma/odma_datasupplier.cxx
+++ b/ucb/source/ucp/odma/odma_datasupplier.cxx
@@ -29,12 +29,9 @@
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_ucb.hxx"
-/**************************************************************************
- TODO
- **************************************************************************
-
- *************************************************************************/
-
+#ifdef WNT
+#include <windows.h>
+#endif
#include <vector>
#include <ucbhelper/contentidentifier.hxx>
#include <ucbhelper/providerhelper.hxx>
diff --git a/ucb/source/ucp/odma/odma_inputstream.cxx b/ucb/source/ucp/odma/odma_inputstream.cxx
index 1c291bd2121c..b1e8cab6d911 100755
--- a/ucb/source/ucp/odma/odma_inputstream.cxx
+++ b/ucb/source/ucp/odma/odma_inputstream.cxx
@@ -28,6 +28,9 @@
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_ucb.hxx"
+#ifdef WNT
+#include <windows.h>
+#endif
#include "odma_inputstream.hxx"
#include "com/sun/star/io/IOException.hpp"
#include <com/sun/star/ucb/OpenCommandArgument2.hpp>
diff --git a/ucb/source/ucp/odma/odma_lib.cxx b/ucb/source/ucp/odma/odma_lib.cxx
index df1fcce1fdc9..91cd79ee1941 100755
--- a/ucb/source/ucp/odma/odma_lib.cxx
+++ b/ucb/source/ucp/odma/odma_lib.cxx
@@ -28,6 +28,9 @@
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_ucb.hxx"
+#ifdef WNT
+#include <windows.h>
+#endif
#include <osl/module.h>
#include <rtl/ustring.hxx>
#include "odma_lib.hxx"
diff --git a/ucb/source/ucp/odma/odma_main.cxx b/ucb/source/ucp/odma/odma_main.cxx
index b49d24a46a6d..a8eb6f83a6bc 100755
--- a/ucb/source/ucp/odma/odma_main.cxx
+++ b/ucb/source/ucp/odma/odma_main.cxx
@@ -29,6 +29,9 @@
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_ucb.hxx"
+#ifdef WNT
+#include <windows.h>
+#endif
#include <osl/process.h>
#include "odma_provider.hxx"
diff --git a/ucb/source/ucp/odma/odma_provider.cxx b/ucb/source/ucp/odma/odma_provider.cxx
index e59fa2093ff3..20da599ab1ab 100755
--- a/ucb/source/ucp/odma/odma_provider.cxx
+++ b/ucb/source/ucp/odma/odma_provider.cxx
@@ -29,11 +29,9 @@
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_ucb.hxx"
-/**************************************************************************
- TODO
- **************************************************************************
-
- *************************************************************************/
+#ifdef WNT
+#include <windows.h>
+#endif
#include <ucbhelper/contentidentifier.hxx>
#include "odma_provider.hxx"
#include "odma_content.hxx"
diff --git a/ucb/source/ucp/odma/odma_resultset.cxx b/ucb/source/ucp/odma/odma_resultset.cxx
index e3f10fe611d3..c4f02267d4f4 100755
--- a/ucb/source/ucp/odma/odma_resultset.cxx
+++ b/ucb/source/ucp/odma/odma_resultset.cxx
@@ -29,6 +29,10 @@
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_ucb.hxx"
+#ifdef WNT
+#include <windows.h>
+#endif
+
/**************************************************************************
TODO
**************************************************************************
diff --git a/ucb/source/ucp/odma/odma_services.cxx b/ucb/source/ucp/odma/odma_services.cxx
index 5465c8a202a3..e6ca17cea73a 100755
--- a/ucb/source/ucp/odma/odma_services.cxx
+++ b/ucb/source/ucp/odma/odma_services.cxx
@@ -28,6 +28,9 @@
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_ucb.hxx"
+#ifdef WNT
+#include <windows.h>
+#endif
#include <com/sun/star/lang/XMultiServiceFactory.hpp>
#include <com/sun/star/lang/XSingleServiceFactory.hpp>
#include <com/sun/star/registry/XRegistryKey.hpp>