diff options
Diffstat (limited to 'extensions/test/ole/unoTocomCalls')
25 files changed, 0 insertions, 3401 deletions
diff --git a/extensions/test/ole/unoTocomCalls/Test/StdAfx.cpp b/extensions/test/ole/unoTocomCalls/Test/StdAfx.cpp deleted file mode 100644 index 36ed10edd..000000000 --- a/extensions/test/ole/unoTocomCalls/Test/StdAfx.cpp +++ /dev/null @@ -1,37 +0,0 @@ -/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ -/************************************************************************* - * - * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. - * - * Copyright 2000, 2010 Oracle and/or its affiliates. - * - * OpenOffice.org - a multi-platform office productivity suite - * - * This file is part of OpenOffice.org. - * - * OpenOffice.org is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License version 3 - * only, as published by the Free Software Foundation. - * - * OpenOffice.org is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Lesser General Public License version 3 for more details - * (a copy is included in the LICENSE file that accompanied this code). - * - * You should have received a copy of the GNU Lesser General Public License - * version 3 along with OpenOffice.org. If not, see - * <http://www.openoffice.org/license.html> - * for a copy of the LGPLv3 License. - * - ************************************************************************/ -// stdafx.cpp : source file that includes just the standard includes -// Test.pch will be the pre-compiled header -// stdafx.obj will contain the pre-compiled type information - -#include "stdafx.h" - -// TODO: reference any additional headers you need in STDAFX.H -// and not in this file - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/extensions/test/ole/unoTocomCalls/Test/StdAfx.h b/extensions/test/ole/unoTocomCalls/Test/StdAfx.h deleted file mode 100644 index 65fffc04c..000000000 --- a/extensions/test/ole/unoTocomCalls/Test/StdAfx.h +++ /dev/null @@ -1,58 +0,0 @@ -/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ -/************************************************************************* - * - * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. - * - * Copyright 2000, 2010 Oracle and/or its affiliates. - * - * OpenOffice.org - a multi-platform office productivity suite - * - * This file is part of OpenOffice.org. - * - * OpenOffice.org is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License version 3 - * only, as published by the Free Software Foundation. - * - * OpenOffice.org is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Lesser General Public License version 3 for more details - * (a copy is included in the LICENSE file that accompanied this code). - * - * You should have received a copy of the GNU Lesser General Public License - * version 3 along with OpenOffice.org. If not, see - * <http://www.openoffice.org/license.html> - * for a copy of the LGPLv3 License. - * - ************************************************************************/ -// stdafx.h : include file for standard system include files, -// or project specific include files that are used frequently, but -// are changed infrequently -// - -#if !defined(AFX_STDAFX_H__180FF568_6F5C_11D4_8330_005004526AB4__INCLUDED_) -#define AFX_STDAFX_H__180FF568_6F5C_11D4_8330_005004526AB4__INCLUDED_ - -#if _MSC_VER > 1000 -#pragma once -#endif // _MSC_VER > 1000 - -#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers - -#include <stdio.h> -#include <windows.h> -#include <comdef.h> -#include <tchar.h> -#include <atlbase.h> -extern CComModule _Module; -#include<atlcom.h> -#include<atlimpl.cpp> - -// TODO: reference additional headers your program requires here - -//{{AFX_INSERT_LOCATION}} -// Microsoft Visual C++ will insert additional declarations immediately before the previous line. - -#endif // !defined(AFX_STDAFX_H__180FF568_6F5C_11D4_8330_005004526AB4__INCLUDED_) - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/extensions/test/ole/unoTocomCalls/Test/Test.cpp b/extensions/test/ole/unoTocomCalls/Test/Test.cpp deleted file mode 100644 index fcb121be6..000000000 --- a/extensions/test/ole/unoTocomCalls/Test/Test.cpp +++ /dev/null @@ -1,249 +0,0 @@ -/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ -/************************************************************************* - * - * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. - * - * Copyright 2000, 2010 Oracle and/or its affiliates. - * - * OpenOffice.org - a multi-platform office productivity suite - * - * This file is part of OpenOffice.org. - * - * OpenOffice.org is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License version 3 - * only, as published by the Free Software Foundation. - * - * OpenOffice.org is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Lesser General Public License version 3 for more details - * (a copy is included in the LICENSE file that accompanied this code). - * - * You should have received a copy of the GNU Lesser General Public License - * version 3 along with OpenOffice.org. If not, see - * <http://www.openoffice.org/license.html> - * for a copy of the LGPLv3 License. - * - ************************************************************************/ -// Test.cpp : Defines the entry point for the console application. -// - -#include "stdafx.h" -#include "../XCallback_Impl/XCallback_Impl.h" -#include "../XCallback_Impl/XCallback_Impl_i.c" - -CComModule _Module; -BEGIN_OBJECT_MAP(ObjectMap) -END_OBJECT_MAP() - -HRESULT doTest(); - -int main(int argc, char* argv[]) -{ - HRESULT hr; - if( FAILED( hr=CoInitialize(NULL))) - { - _tprintf(_T("CoInitialize failed \n")); - return -1; - } - - - _Module.Init( ObjectMap, GetModuleHandle( NULL)); - - if( FAILED(hr=doTest())) - { - _com_error err( hr); - const TCHAR * errMsg= err.ErrorMessage(); - MessageBox( NULL, errMsg, "Test failed", MB_ICONERROR); - } - - - _Module.Term(); - CoUninitialize(); - - - return 0; -} - - -HRESULT doTest() -{ - HRESULT hr= S_OK; - - CComPtr<IUnknown> spUnk; - hr= spUnk.CoCreateInstance(L"com.sun.star.ServiceManager"); - if( FAILED( hr)) - return hr; - - CComDispatchDriver manager( spUnk); - CComVariant param( L"oletest.OleTest"); - CComVariant retVal; - hr= manager.Invoke1((LPCOLESTR)L"createInstance", ¶m, &retVal ); - - CComDispatchDriver oletest( retVal.punkVal); - - spUnk.Release(); - - hr= spUnk.CoCreateInstance(L"XCallback_Impl.Callback"); - if( FAILED( hr)) - return hr; - - CComQIPtr<IDispatch> paramDisp(spUnk); - - - //###################################################################### - // out parameters - //###################################################################### - CComVariant param1( paramDisp); - CComVariant param2(1); - - // oletest calls XCallback::func1 - hr= oletest.Invoke2(L"testInterface", ¶m1, ¶m2); - // XCallback::returnInterface - param2= 2; - hr= oletest.Invoke2(L"testInterface", ¶m1, ¶m2); - // XCallback::outInterface - param2= 3; - hr= oletest.Invoke2(L"testInterface", ¶m1, ¶m2); - // XCallback::outStruct - param2= 4; - hr= oletest.Invoke2(L"testInterface", ¶m1, ¶m2); - // XCallback::outEnum - param2= 5; - hr= oletest.Invoke2(L"testInterface", ¶m1, ¶m2); - // XCallback::outSeqAny - param2= 6; - hr= oletest.Invoke2(L"testInterface", ¶m1, ¶m2); - // XCallback::outAny - param2= 7; - hr= oletest.Invoke2(L"testInterface", ¶m1, ¶m2); - // XCallback::outBool - param2= 8; - hr= oletest.Invoke2(L"testInterface", ¶m1, ¶m2); - // XCallback::outChar - param2= 9; - hr= oletest.Invoke2(L"testInterface", ¶m1, ¶m2); - // XCallback::outString - param2= 10; - hr= oletest.Invoke2(L"testInterface", ¶m1, ¶m2); - // XCallback::outFloat - param2= 11; - hr= oletest.Invoke2(L"testInterface", ¶m1, ¶m2); - // XCallback::outDouble - param2= 12; - hr= oletest.Invoke2(L"testInterface", ¶m1, ¶m2); - // XCallback::outByte - param2= 13; - hr= oletest.Invoke2(L"testInterface", ¶m1, ¶m2); - // XCallback::outShort - param2= 14; - hr= oletest.Invoke2(L"testInterface", ¶m1, ¶m2); - // XCallback::outLong - param2= 15; - hr= oletest.Invoke2(L"testInterface", ¶m1, ¶m2); - // XCallback::outValuesMixed - param2= 30; - hr= oletest.Invoke2(L"testInterface", ¶m1, ¶m2); - // XCallback::outValuesAll - param2= 31; - hr= oletest.Invoke2(L"testInterface", ¶m1, ¶m2); - - // XCallback::outSeqByte - // Does not work currently because Sequences are always converted to - // SAFEARRAY( VARIANT) - // param2= 32; - // hr= oletest.Invoke2(L"testInterface", ¶m1, ¶m2); - - //###################################################################### - // in / out parameters - //###################################################################### - // XCallback::inoutInterface - param2= 100; - hr= oletest.Invoke2(L"testInterface", ¶m1, ¶m2); - // XCallback::inoutStruct - param2= 101; - hr= oletest.Invoke2(L"testInterface", ¶m1, ¶m2); - // XCallback::inoutEnum - param2= 102; - hr= oletest.Invoke2(L"testInterface", ¶m1, ¶m2); - // XCallback::inoutSeqAny - param2= 103; - hr= oletest.Invoke2(L"testInterface", ¶m1, ¶m2); - // XCallback::inoutAny - param2= 104; - hr= oletest.Invoke2(L"testInterface", ¶m1, ¶m2); - // XCallback::inoutBool - param2= 105; - hr= oletest.Invoke2(L"testInterface", ¶m1, ¶m2); - // XCallback::inoutChar - param2= 106; - hr= oletest.Invoke2(L"testInterface", ¶m1, ¶m2); - // XCallback::inoutString - param2= 107; - hr= oletest.Invoke2(L"testInterface", ¶m1, ¶m2); - // XCallback::inoutFloat - param2= 108; - hr= oletest.Invoke2(L"testInterface", ¶m1, ¶m2); - // XCallback::inoutDouble - param2= 109; - hr= oletest.Invoke2(L"testInterface", ¶m1, ¶m2); - // XCallback::inoutByte - param2= 110; - hr= oletest.Invoke2(L"testInterface", ¶m1, ¶m2); - // XCallback::inoutShort - param2= 111; - hr= oletest.Invoke2(L"testInterface", ¶m1, ¶m2); - // XCallback::inoutLong - param2= 112; - hr= oletest.Invoke2(L"testInterface", ¶m1, ¶m2); - // XCallback::inoutValuesAll - param2=120; - hr= oletest.Invoke2(L"testInterface", ¶m1, ¶m2); - //###################################################################### - // in parameters - //###################################################################### - // XCallback::inValues - param2= 200; - hr= oletest.Invoke2(L"testInterface", ¶m1, ¶m2); - // XCallback::inSeqByte - // SAFEARRAY( VARIANT) - param2= 201; - hr= oletest.Invoke2(L"testInterface", ¶m1, ¶m2); - //XCallback::inSeqXEventListener - param2= 202; - hr= oletest.Invoke2(L"testInterface", ¶m1, ¶m2); - //###################################################################### - // The UNO test component OleTest calls on XCallback_Impl.Callback directly - // that is the COM object has not been past a parameter but rather OleTest - // creates the COM object itself - //###################################################################### - // XCallback::outValuesAll - // does not work currently - param2= 300; - hr= oletest.Invoke2(L"testInterface", ¶m1, ¶m2); - // XCallback::inoutValuesAll - param2= 301; - hr= oletest.Invoke2(L"testInterface", ¶m1, ¶m2); - // XCallback::inoutValues - param2= 302; - hr= oletest.Invoke2(L"testInterface", ¶m1, ¶m2); - - // XCallback::inValues - param2= 303; - hr= oletest.Invoke2(L"testInterface", ¶m1, ¶m2); - //###################################################################### - // Test a COM object which implements several interfaces. - //###################################################################### - - CComQIPtr<IDispatch> dispSimple; - hr= dispSimple.CoCreateInstance(L"XCallback_Impl.Simple"); - CComVariant varSimple( dispSimple); - param2= 0; - hr= oletest.Invoke2(L"testInterface2", &varSimple, ¶m2); - - return hr; -} -// VARIANT CComVariant VT_UNKNOWN VT_DISPATCH V_UI1 CComDispatchDriver WINAPI - - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/extensions/test/ole/unoTocomCalls/Test/Test.dsp b/extensions/test/ole/unoTocomCalls/Test/Test.dsp deleted file mode 100644 index d9ef4e865..000000000 --- a/extensions/test/ole/unoTocomCalls/Test/Test.dsp +++ /dev/null @@ -1,114 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Test" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Test - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "Test.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "Test.mak" CFG="Test - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Test - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Test - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Test - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "Release" -# PROP Intermediate_Dir "Release" -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /Yu"stdafx.h" /FD /c -# ADD CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /Yu"stdafx.h" /FD /c -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 - -!ELSEIF "$(CFG)" == "Test - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "Debug" -# PROP Intermediate_Dir "Debug" -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /Yu"stdafx.h" /FD /GZ /c -# ADD CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /FR /Yu"stdafx.h" /FD /GZ /c -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept - -!ENDIF - -# Begin Target - -# Name "Test - Win32 Release" -# Name "Test - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=.\StdAfx.cpp -# ADD CPP /Yc"stdafx.h" -# End Source File -# Begin Source File - -SOURCE=.\Test.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# Begin Source File - -SOURCE=.\StdAfx.h -# End Source File -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# Begin Source File - -SOURCE=.\ReadMe.txt -# End Source File -# End Target -# End Project - diff --git a/extensions/test/ole/unoTocomCalls/Test/Test.sln b/extensions/test/ole/unoTocomCalls/Test/Test.sln deleted file mode 100644 index 428b73625..000000000 --- a/extensions/test/ole/unoTocomCalls/Test/Test.sln +++ /dev/null @@ -1,19 +0,0 @@ -Microsoft Visual Studio Solution File, Format Version 10.00
-# Visual Studio 2008
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Test", "Test.vcproj", "{13AE4BE8-2467-4B35-800F-154379D54C24}"
-EndProject
-Global
- GlobalSection(SolutionConfigurationPlatforms) = preSolution
- Debug|Win32 = Debug|Win32
- Release|Win32 = Release|Win32
- EndGlobalSection
- GlobalSection(ProjectConfigurationPlatforms) = postSolution
- {13AE4BE8-2467-4B35-800F-154379D54C24}.Debug|Win32.ActiveCfg = Debug|Win32
- {13AE4BE8-2467-4B35-800F-154379D54C24}.Debug|Win32.Build.0 = Debug|Win32
- {13AE4BE8-2467-4B35-800F-154379D54C24}.Release|Win32.ActiveCfg = Release|Win32
- {13AE4BE8-2467-4B35-800F-154379D54C24}.Release|Win32.Build.0 = Release|Win32
- EndGlobalSection
- GlobalSection(SolutionProperties) = preSolution
- HideSolutionNode = FALSE
- EndGlobalSection
-EndGlobal
diff --git a/extensions/test/ole/unoTocomCalls/Test/Test.vcproj b/extensions/test/ole/unoTocomCalls/Test/Test.vcproj deleted file mode 100644 index f31d1ffc4..000000000 --- a/extensions/test/ole/unoTocomCalls/Test/Test.vcproj +++ /dev/null @@ -1,247 +0,0 @@ -<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioProject
- ProjectType="Visual C++"
- Version="9,00"
- Name="Test"
- ProjectGUID="{13AE4BE8-2467-4B35-800F-154379D54C24}"
- TargetFrameworkVersion="131072"
- >
- <Platforms>
- <Platform
- Name="Win32"
- />
- </Platforms>
- <ToolFiles>
- </ToolFiles>
- <Configurations>
- <Configuration
- Name="Debug|Win32"
- OutputDirectory=".\Debug"
- IntermediateDirectory=".\Debug"
- ConfigurationType="1"
- InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC70.vsprops"
- UseOfMFC="0"
- ATLMinimizesCRunTimeLibraryUsage="false"
- CharacterSet="2"
- >
- <Tool
- Name="VCPreBuildEventTool"
- />
- <Tool
- Name="VCCustomBuildTool"
- />
- <Tool
- Name="VCXMLDataGeneratorTool"
- />
- <Tool
- Name="VCWebServiceProxyGeneratorTool"
- />
- <Tool
- Name="VCMIDLTool"
- TypeLibraryName=".\Debug/Test.tlb"
- />
- <Tool
- Name="VCCLCompilerTool"
- Optimization="0"
- PreprocessorDefinitions="WIN32,_DEBUG,_CONSOLE"
- BasicRuntimeChecks="3"
- RuntimeLibrary="1"
- UsePrecompiledHeader="2"
- PrecompiledHeaderThrough="stdafx.h"
- PrecompiledHeaderFile=".\Debug/Test.pch"
- AssemblerListingLocation=".\Debug/"
- ObjectFile=".\Debug/"
- ProgramDataBaseFileName=".\Debug/"
- BrowseInformation="1"
- WarningLevel="3"
- SuppressStartupBanner="true"
- DebugInformationFormat="4"
- />
- <Tool
- Name="VCManagedResourceCompilerTool"
- />
- <Tool
- Name="VCResourceCompilerTool"
- PreprocessorDefinitions="_DEBUG"
- Culture="1033"
- />
- <Tool
- Name="VCPreLinkEventTool"
- />
- <Tool
- Name="VCLinkerTool"
- AdditionalOptions="/MACHINE:I386"
- AdditionalDependencies="odbc32.lib odbccp32.lib"
- OutputFile=".\Debug/Test.exe"
- LinkIncremental="2"
- SuppressStartupBanner="true"
- GenerateDebugInformation="true"
- ProgramDatabaseFile=".\Debug/Test.pdb"
- SubSystem="1"
- RandomizedBaseAddress="1"
- DataExecutionPrevention="0"
- />
- <Tool
- Name="VCALinkTool"
- />
- <Tool
- Name="VCManifestTool"
- />
- <Tool
- Name="VCXDCMakeTool"
- />
- <Tool
- Name="VCBscMakeTool"
- />
- <Tool
- Name="VCFxCopTool"
- />
- <Tool
- Name="VCAppVerifierTool"
- />
- <Tool
- Name="VCPostBuildEventTool"
- />
- </Configuration>
- <Configuration
- Name="Release|Win32"
- OutputDirectory=".\Release"
- IntermediateDirectory=".\Release"
- ConfigurationType="1"
- InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC70.vsprops"
- UseOfMFC="0"
- ATLMinimizesCRunTimeLibraryUsage="false"
- CharacterSet="2"
- >
- <Tool
- Name="VCPreBuildEventTool"
- />
- <Tool
- Name="VCCustomBuildTool"
- />
- <Tool
- Name="VCXMLDataGeneratorTool"
- />
- <Tool
- Name="VCWebServiceProxyGeneratorTool"
- />
- <Tool
- Name="VCMIDLTool"
- TypeLibraryName=".\Release/Test.tlb"
- />
- <Tool
- Name="VCCLCompilerTool"
- InlineFunctionExpansion="1"
- PreprocessorDefinitions="WIN32,NDEBUG,_CONSOLE"
- StringPooling="true"
- RuntimeLibrary="0"
- EnableFunctionLevelLinking="true"
- UsePrecompiledHeader="2"
- PrecompiledHeaderThrough="stdafx.h"
- PrecompiledHeaderFile=".\Release/Test.pch"
- AssemblerListingLocation=".\Release/"
- ObjectFile=".\Release/"
- ProgramDataBaseFileName=".\Release/"
- WarningLevel="3"
- SuppressStartupBanner="true"
- />
- <Tool
- Name="VCManagedResourceCompilerTool"
- />
- <Tool
- Name="VCResourceCompilerTool"
- PreprocessorDefinitions="NDEBUG"
- Culture="1033"
- />
- <Tool
- Name="VCPreLinkEventTool"
- />
- <Tool
- Name="VCLinkerTool"
- AdditionalOptions="/MACHINE:I386"
- AdditionalDependencies="odbc32.lib odbccp32.lib"
- OutputFile=".\Release/Test.exe"
- LinkIncremental="1"
- SuppressStartupBanner="true"
- ProgramDatabaseFile=".\Release/Test.pdb"
- SubSystem="1"
- RandomizedBaseAddress="1"
- DataExecutionPrevention="0"
- />
- <Tool
- Name="VCALinkTool"
- />
- <Tool
- Name="VCManifestTool"
- />
- <Tool
- Name="VCXDCMakeTool"
- />
- <Tool
- Name="VCBscMakeTool"
- />
- <Tool
- Name="VCFxCopTool"
- />
- <Tool
- Name="VCAppVerifierTool"
- />
- <Tool
- Name="VCPostBuildEventTool"
- />
- </Configuration>
- </Configurations>
- <References>
- </References>
- <Files>
- <Filter
- Name="Source Files"
- Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
- >
- <File
- RelativePath=".\StdAfx.cpp"
- >
- <FileConfiguration
- Name="Debug|Win32"
- >
- <Tool
- Name="VCCLCompilerTool"
- UsePrecompiledHeader="1"
- />
- </FileConfiguration>
- <FileConfiguration
- Name="Release|Win32"
- >
- <Tool
- Name="VCCLCompilerTool"
- UsePrecompiledHeader="1"
- />
- </FileConfiguration>
- </File>
- <File
- RelativePath=".\Test.cpp"
- >
- </File>
- </Filter>
- <Filter
- Name="Header Files"
- Filter="h;hpp;hxx;hm;inl"
- >
- <File
- RelativePath=".\StdAfx.h"
- >
- </File>
- </Filter>
- <Filter
- Name="Resource Files"
- Filter="ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
- >
- </Filter>
- <File
- RelativePath=".\ReadMe.txt"
- >
- </File>
- </Files>
- <Globals>
- </Globals>
-</VisualStudioProject>
diff --git a/extensions/test/ole/unoTocomCalls/XCallback_Impl/Basic.rgs b/extensions/test/ole/unoTocomCalls/XCallback_Impl/Basic.rgs deleted file mode 100644 index bc1525d7e..000000000 --- a/extensions/test/ole/unoTocomCalls/XCallback_Impl/Basic.rgs +++ /dev/null @@ -1,27 +0,0 @@ -HKCR -{ - XCallback_Impl.Basic.1 = s 'Basic Class' - { - CLSID = s '{A0F04CB7-8494-11D4-8335-005004526AB4}' - } - XCallback_Impl.Basic = s 'Basic Class' - { - CLSID = s '{A0F04CB7-8494-11D4-8335-005004526AB4}' - CurVer = s 'XCallback_Impl.Basic.1' - } - NoRemove CLSID - { - ForceRemove {A0F04CB7-8494-11D4-8335-005004526AB4} = s 'Basic Class' - { - ProgID = s 'XCallback_Impl.Basic.1' - VersionIndependentProgID = s 'XCallback_Impl.Basic' - ForceRemove 'Programmable' - InprocServer32 = s '%MODULE%' - { - val ThreadingModel = s 'Apartment' - } - 'TypeLib' = s '{180FF553-6F5C-11D4-8330-005004526AB4}' - } - } -} - diff --git a/extensions/test/ole/unoTocomCalls/XCallback_Impl/BasicTest.rgs b/extensions/test/ole/unoTocomCalls/XCallback_Impl/BasicTest.rgs deleted file mode 100644 index ee718304d..000000000 --- a/extensions/test/ole/unoTocomCalls/XCallback_Impl/BasicTest.rgs +++ /dev/null @@ -1,27 +0,0 @@ -HKCR -{ - XCallback_Impl.BasicTest.1 = s 'BasicTest Class' - { - CLSID = s '{A0F04CBD-8494-11D4-8335-005004526AB4}' - } - XCallback_Impl.BasicTest = s 'BasicTest Class' - { - CLSID = s '{A0F04CBD-8494-11D4-8335-005004526AB4}' - CurVer = s 'XCallback_Impl.BasicTest.1' - } - NoRemove CLSID - { - ForceRemove {A0F04CBD-8494-11D4-8335-005004526AB4} = s 'BasicTest Class' - { - ProgID = s 'XCallback_Impl.BasicTest.1' - VersionIndependentProgID = s 'XCallback_Impl.BasicTest' - ForceRemove 'Programmable' - InprocServer32 = s '%MODULE%' - { - val ThreadingModel = s 'Apartment' - } - 'TypeLib' = s '{180FF553-6F5C-11D4-8330-005004526AB4}' - } - } -} - diff --git a/extensions/test/ole/unoTocomCalls/XCallback_Impl/Callback.cpp b/extensions/test/ole/unoTocomCalls/XCallback_Impl/Callback.cpp deleted file mode 100644 index ea21a9695..000000000 --- a/extensions/test/ole/unoTocomCalls/XCallback_Impl/Callback.cpp +++ /dev/null @@ -1,514 +0,0 @@ -/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ -/************************************************************************* - * - * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. - * - * Copyright 2000, 2010 Oracle and/or its affiliates. - * - * OpenOffice.org - a multi-platform office productivity suite - * - * This file is part of OpenOffice.org. - * - * OpenOffice.org is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License version 3 - * only, as published by the Free Software Foundation. - * - * OpenOffice.org is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Lesser General Public License version 3 for more details - * (a copy is included in the LICENSE file that accompanied this code). - * - * You should have received a copy of the GNU Lesser General Public License - * version 3 along with OpenOffice.org. If not, see - * <http://www.openoffice.org/license.html> - * for a copy of the LGPLv3 License. - * - ************************************************************************/ -// Callback.cpp : Implementation of CCallback -#include "stdafx.h" -#include "XCallback_Impl.h" -#include "Callback.h" - -///////////////////////////////////////////////////////////////////////////// -// CCallback - - -STDMETHODIMP CCallback::func1() -{ - MessageBox( NULL, _T("Callback::func1 called"),_T(""), MB_OK); - return S_OK; -} - -STDMETHODIMP CCallback::returnInterface(IDispatch **ppdisp) -{ - if( ! ppdisp) - return E_POINTER; - CComPtr<IDispatch> spDisp; - spDisp.CoCreateInstance( L"XCallback_Impl.Simple"); - *ppdisp= spDisp; - (*ppdisp)->AddRef(); - return S_OK; -} - -STDMETHODIMP CCallback::outInterface(IDispatch **ppdisp) -{ -// return S_OK; - if( ! ppdisp) - return E_POINTER; - CComPtr<IDispatch> spDisp; - spDisp.CoCreateInstance( L"XCallback_Impl.Simple"); - *ppdisp= spDisp; - (*ppdisp)->AddRef(); - -// MessageBox( NULL, _T("CCallback::outInterface"), _T(""), MB_OK); - return S_OK; -} - -STDMETHODIMP CCallback::outValuesMixed(long val, long *pval, BSTR string) -{ - USES_CONVERSION; - char buff[1024]; - *pval = val+1; - sprintf( buff, "param1: %d, param2 out: %d, param3: %S", val, *pval, string); - MessageBox( NULL, A2T(buff), A2T("XCallback_Impl.Callback"), MB_OK); - return S_OK; -} - - -STDMETHODIMP CCallback::outValuesAll( - /* [out] */ IDispatch __RPC_FAR *__RPC_FAR *ppdisp, - /* [out] */ IDispatch __RPC_FAR *__RPC_FAR *ppSimpleStruct, - /* [out] */ long __RPC_FAR *aSimpleEnum, - /* [out] */ SAFEARRAY __RPC_FAR * __RPC_FAR *outSeq, - /* [out] */ VARIANT __RPC_FAR *varAny, - /* [out] */ VARIANT_BOOL __RPC_FAR *aBool, - /* [out] */ short __RPC_FAR *aChar, - /* [out] */ BSTR __RPC_FAR *aString, - /* [out] */ float __RPC_FAR *aFloat, - /* [out] */ double __RPC_FAR *aDouble, - /* [out] */ unsigned char __RPC_FAR *aByte, - /* [out] */ short __RPC_FAR *aShort, - /* [out] */ long __RPC_FAR *aLong) -//) -{ -// if( ! ppdisp || ! ppSimpleStruct || ! aSimpleEnum || -// ! outSeq || !varAny ||! aBool || ! aChar || -// ! aString || ! aFloat || ! aDouble || ! aByte || -// ! aShort || ! aLong || ! aUShort || ! aULong) -// return E_POINTER; - - HRESULT hr=S_OK; - hr= outInterface( ppdisp); - hr= outStruct( ppSimpleStruct); - hr= outEnum( aSimpleEnum); - hr= outSeqAny( outSeq); - hr= outAny( varAny); - hr= outBool( aBool); - hr= outChar( aChar); - hr= outString( aString); - hr= outFloat( aFloat); - hr= outDouble( aDouble); - hr= outByte( aByte); - hr= outShort( aShort); - hr= outLong( aLong); - return hr; -} - -STDMETHODIMP CCallback::outStruct(IDispatch **outStruct) -{ -// return S_OK; - if( !outStruct) - return E_POINTER; - HRESULT hr= E_FAIL; -// MessageBox( NULL, _T("CCallback::outStruct"), _T(""), MB_OK); - - CComPtr<IDispatch> _dispMgr; - if( SUCCEEDED(hr= _dispMgr.CoCreateInstance(L"com.sun.star.ServiceManager"))) - { - CComDispatchDriver manager( _dispMgr); - CComVariant param1(L"com.sun.star.reflection.CoreReflection"); - CComVariant varRet; - hr= manager.Invoke1( L"createInstance", ¶m1, &varRet); - - CComDispatchDriver reflection( varRet.pdispVal); - param1= L"oletest.SimpleStruct"; - varRet.Clear(); - hr= reflection.Invoke1( L"forName", ¶m1, &varRet); - - CComDispatchDriver classSimpleStruct( varRet.pdispVal); - - CComPtr<IDispatch> dispStruct; - param1.vt= VT_DISPATCH | VT_BYREF; - param1.ppdispVal= &dispStruct; - if( SUCCEEDED( hr= classSimpleStruct.Invoke1(L"createObject", ¶m1))) - { - // Set the value - CComDispatchDriver simpleStruct( dispStruct); - param1=L" this is a property string"; - hr= simpleStruct.PutPropertyByName(L"message", ¶m1); - *outStruct= dispStruct; - (*outStruct)->AddRef(); - hr= S_OK; - } - } - return hr; -} - -STDMETHODIMP CCallback::outEnum(long *outEnum) -{ - if( !outEnum) - return E_POINTER; - *outEnum= 1; - return S_OK; -} - -STDMETHODIMP CCallback::outSeqAny(LPSAFEARRAY* outSeq) -{ -// _CrtDbgBreak(); - SAFEARRAY* pArr= SafeArrayCreateVector( VT_VARIANT, 0, 3); - CComVariant var[3]; - var[0]=L" variant 0"; - var[1]=L" variant 1"; - var[2]=L"variant 2"; - for( long i=0; i<3; i++) - { - SafeArrayPutElement( pArr, &i, (void*)&var[i]); - } - - *outSeq= pArr; - return S_OK; -} - -// ATLASSERT //VT_EMPTY - - -STDMETHODIMP CCallback::outAny(VARIANT *outAny) -{ - if( ! outAny) - return E_POINTER; - outAny->vt= VT_BSTR; - outAny->bstrVal= SysAllocString( L"This is a string in a VARIANT"); - - return S_OK; -} - -STDMETHODIMP CCallback::outBool(VARIANT_BOOL *outBool) -{ - if( ! outBool) - return E_POINTER; - *outBool= VARIANT_TRUE; - return S_OK; -} - -STDMETHODIMP CCallback::outChar(short *outChar) -{ - if( !outChar) - return E_POINTER; - *outChar= (short)L'A'; - return S_OK; -} - -STDMETHODIMP CCallback::outString(BSTR *outString) -{ - if( !outString) - return E_POINTER; - *outString= SysAllocString(L"This is a BSTR"); - return S_OK; -} - -STDMETHODIMP CCallback::outFloat(float *outFloat) -{ - if( !outFloat) - return E_POINTER; - *outFloat= 3.14f; - return S_OK; -} - -STDMETHODIMP CCallback::outDouble(double *outDouble) -{ - if(!outDouble) - return E_POINTER; - - *outDouble= 3.145; - return S_OK; -} - - - -STDMETHODIMP CCallback::outShort(short *outShort) -{ - if(!outShort) - return E_POINTER; - *outShort= -1; - return S_OK; -} - -STDMETHODIMP CCallback::outLong(long *outLong) -{ - if(!outLong) - return E_POINTER; - *outLong= 0xffffffff; - return S_OK; -} - - - -STDMETHODIMP CCallback::outByte(unsigned char* outByte) -{ - if(!outByte) - return E_POINTER; - *outByte= 0xff; - return S_OK; -} - -STDMETHODIMP CCallback::inoutInterface(IDispatch **ppdisp) -{ - if( !ppdisp) - return E_POINTER; - CComDispatchDriver disp( *ppdisp); - CComVariant param1(L""); - disp.Invoke1(L"func", ¶m1); - - (*ppdisp)->Release(); - - CComPtr<IDispatch> outDisp; - outDisp.CoCreateInstance( L"XCallback_Impl.Simple"); - *ppdisp= outDisp; - (*ppdisp)->AddRef(); - - return S_OK; -} - -STDMETHODIMP CCallback::inoutStruct(IDispatch **inoutVal) -{ - if( !inoutVal) - return E_POINTER; - HRESULT hr= S_OK; - USES_CONVERSION; - CComVariant var; - CComDispatchDriver disp( *inoutVal); - - hr= disp.GetPropertyByName(L"message", &var); - MessageBox( NULL, W2T(var.bstrVal), _T("XCallback_Impl.Callback"), MB_OK); - - (*inoutVal)->Release(); - - CComDispatchDriver dispStruct; - hr= outStruct( &dispStruct.p); - var.Clear(); - var= L"This struct was created in XCallback_Imp.Callback"; - hr= dispStruct.PutPropertyByName(L"message", &var); - - *inoutVal= dispStruct; - (*inoutVal)->AddRef(); - return hr; -} - -STDMETHODIMP CCallback::inoutEnum(long *inoutVal) -{ - if( !inoutVal) - return E_POINTER; - *inoutVal= *inoutVal+1; - - return S_OK; -} - -STDMETHODIMP CCallback::inoutSeqAny(LPSAFEARRAY *pArray) -{ - if( !pArray) - return E_POINTER; - HRESULT hr= S_OK; - long lbound=0; - long ubound=0; - hr= SafeArrayGetLBound( *pArray, 1, &lbound); - hr= SafeArrayGetUBound( *pArray, 1, &ubound); - long count= ubound - lbound + 1; - - // the Array is supposet to contain variants - CComVariant var; - for( long i=0; i<count; i++) - { - var.Clear(); - hr= SafeArrayGetElement( *pArray, &i, (void*)&var); - } - - SafeArrayDestroy( *pArray); - - outSeqAny( pArray); - return S_OK; -} - -STDMETHODIMP CCallback::inoutAny(VARIANT *inoutVal) -{ - if( !inoutVal) - return E_POINTER; - USES_CONVERSION; - if( inoutVal->vt= VT_BSTR) - MessageBox( NULL, W2T( inoutVal->bstrVal), _T("XCallback_Impl.Callback"), MB_OK); - - VariantClear( inoutVal); - inoutVal->vt= VT_BSTR; - inoutVal->bstrVal=SysAllocString( L" [string] XCallback_Impl.Callback inoutAny"); - return S_OK; -} - -STDMETHODIMP CCallback::inoutBool(VARIANT_BOOL *inoutVal) -{ - if( !inoutVal) - return E_POINTER; - - *inoutVal= *inoutVal == VARIANT_TRUE ? VARIANT_FALSE : VARIANT_TRUE; - return S_OK; -} - -STDMETHODIMP CCallback::inoutChar(short *inoutVal) -{ - if( !inoutVal) - return E_POINTER; - USES_CONVERSION; - char buff[256]; - sprintf( buff, "character value: %C", *inoutVal); - MessageBox( NULL, A2T(buff), _T("XCallback_Impl.Callback"), MB_OK); - *inoutVal= L'B'; - return S_OK; -} - -STDMETHODIMP CCallback::inoutString(BSTR *inoutVal) -{ - if( !inoutVal) - return E_POINTER; - USES_CONVERSION; - MessageBox( NULL, W2T(*inoutVal), _T("XCallback_Impl.Callback"), MB_OK); - SysFreeString(*inoutVal); - *inoutVal= SysAllocString(L"a string from XCallback_Impl.Callback"); - - return S_OK; -} - -STDMETHODIMP CCallback::inoutFloat(float *inoutVal) -{ - if( !inoutVal) - return E_POINTER; - *inoutVal = *inoutVal+1; - return S_OK; -} - -STDMETHODIMP CCallback::inoutDouble(double *inoutVal) -{ - if( !inoutVal) - return E_POINTER; - *inoutVal= *inoutVal+1; - return S_OK; -} - -STDMETHODIMP CCallback::inoutByte(unsigned char *inoutVal) -{ - if( !inoutVal) - return E_POINTER; - *inoutVal= 0xff; - return S_OK; -} - -STDMETHODIMP CCallback::inoutShort(short *inoutVal) -{ - if( !inoutVal) - return E_POINTER; - *inoutVal= -1; - return S_OK; -} - -STDMETHODIMP CCallback::inoutLong(long* inoutVal) -{ - if( !inoutVal) - return E_POINTER; - *inoutVal= 0xffffffff; - return S_OK; -} - -STDMETHODIMP CCallback::inoutValuesAll( - /* [out][in] */ IDispatch __RPC_FAR *__RPC_FAR *aXSimple, - /* [out][in] */ IDispatch __RPC_FAR *__RPC_FAR *aStruct, - /* [out][in] */ long __RPC_FAR *aEnum, - /* [out][in] */ SAFEARRAY __RPC_FAR * __RPC_FAR *aSeq, - /* [out][in] */ VARIANT __RPC_FAR *aAny, - /* [out][in] */ VARIANT_BOOL __RPC_FAR *aBool, - /* [out][in] */ short __RPC_FAR *aChar, - /* [out][in] */ BSTR __RPC_FAR *aString, - /* [out][in] */ float __RPC_FAR *aFloat, - /* [out][in] */ double __RPC_FAR *aDouble, - /* [out][in] */ unsigned char __RPC_FAR *aByte, - /* [out][in] */ short __RPC_FAR *aShort, - /* [out][in] */ long __RPC_FAR *aLong) -{ - inoutInterface( aXSimple); - inoutStruct( aStruct); - inoutEnum( aEnum); - inoutSeqAny( aSeq); - inoutAny( aAny); - inoutBool( aBool); - inoutChar( aChar); - inoutString( aString); - inoutFloat( aFloat); - inoutDouble( aDouble); - inoutByte( aByte); - inoutShort( aShort); - inoutLong( aLong); - - return S_OK; -} - - -STDMETHODIMP CCallback::inValues(short aChar, long aLong, BSTR aString) -{ - USES_CONVERSION; - wchar_t _char= (wchar_t) aChar; - char buff[1024]; - sprintf( buff, "Parameters: char= %C, long= %d, string= %s", _char, aLong, W2A(aString)); - MessageBox( NULL, A2T(buff), _T("XCallback_Impl.Callback"), MB_OK); - return S_OK; -} - -STDMETHODIMP CCallback::outSeqByte(LPSAFEARRAY * outVal) -{ - // TODO: Add your implementation code here - - return S_OK; -} - -STDMETHODIMP CCallback::inSeqByte( LPSAFEARRAY listeners) -{ - - return S_OK; -} - -STDMETHODIMP CCallback::inSeqXEventListener( LPSAFEARRAY listeners, LPSAFEARRAY events) -{ - HRESULT hr= S_OK; - long ubound= 0; - long lbound= 0; - long count= 0; - hr= SafeArrayGetUBound( listeners, 1, &ubound); - hr= SafeArrayGetLBound( listeners, 1, &lbound); - count= ubound - lbound +1; - - // We assume thate the count of EventObjects in events is the same - for( long i = 0; i < count; i++) - { - CComVariant varListener; - CComVariant varEvent; - hr= SafeArrayGetElement( listeners, &i, &varListener); - hr= SafeArrayGetElement( events, &i, &varEvent); - if( varListener.vt == VT_DISPATCH && varEvent.vt == VT_DISPATCH) - { - CComDispatchDriver disp( varListener.pdispVal); - hr= disp.Invoke1(L"disposing", &varEvent); - } - - } - - return S_OK; -} - - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/extensions/test/ole/unoTocomCalls/XCallback_Impl/Callback.h b/extensions/test/ole/unoTocomCalls/XCallback_Impl/Callback.h deleted file mode 100644 index 02cb6cff4..000000000 --- a/extensions/test/ole/unoTocomCalls/XCallback_Impl/Callback.h +++ /dev/null @@ -1,138 +0,0 @@ -/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ -/************************************************************************* - * - * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. - * - * Copyright 2000, 2010 Oracle and/or its affiliates. - * - * OpenOffice.org - a multi-platform office productivity suite - * - * This file is part of OpenOffice.org. - * - * OpenOffice.org is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License version 3 - * only, as published by the Free Software Foundation. - * - * OpenOffice.org is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Lesser General Public License version 3 for more details - * (a copy is included in the LICENSE file that accompanied this code). - * - * You should have received a copy of the GNU Lesser General Public License - * version 3 along with OpenOffice.org. If not, see - * <http://www.openoffice.org/license.html> - * for a copy of the LGPLv3 License. - * - ************************************************************************/ -// Callback.h : Declaration of the CCallback - -#ifndef __CALLBACK_H_ -#define __CALLBACK_H_ - -#include "resource.h" // main symbols - -///////////////////////////////////////////////////////////////////////////// -// CCallback -class ATL_NO_VTABLE CCallback : - public CComObjectRootEx<CComSingleThreadModel>, - public CComCoClass<CCallback, &CLSID_Callback>, - public IDispatchImpl<ICallback, &IID_ICallback, &LIBID_XCALLBACK_IMPLLib> -{ -public: - CCallback() - { - } - -DECLARE_REGISTRY_RESOURCEID(IDR_CALLBACK) - -DECLARE_PROTECT_FINAL_CONSTRUCT() - -BEGIN_COM_MAP(CCallback) - COM_INTERFACE_ENTRY(ICallback) - COM_INTERFACE_ENTRY(IDispatch) -END_COM_MAP() - -// ICallback -public: - STDMETHOD(inSeqByte)(/*[in]*/ LPSAFEARRAY val); - STDMETHOD(inSeqXEventListener)(/*[in]*/ LPSAFEARRAY listener, LPSAFEARRAY event); - STDMETHOD(outSeqByte)(/*[out]*/ LPSAFEARRAY* outVal); - STDMETHOD(inValues)(/*[in]*/short aChar, /*[in]*/ long aLong, /*[in]*/ BSTR aString); - STDMETHOD(inoutLong)(/*[in,out]*/ long* inoutVal); - STDMETHOD(inoutShort)(/*[in,out]*/ short* inoutVal); - STDMETHOD(inoutByte)(/*[in,out]*/ unsigned char* inoutVal); - STDMETHOD(inoutDouble)(/*[in,out]*/ double* inoutVal); - STDMETHOD(inoutFloat)(/*[in,out]*/ float* inoutVal); - STDMETHOD(inoutString)(/*[in,out]*/ BSTR *inoutVal); - STDMETHOD(inoutChar)(/*[in,out]*/ short* inoutVal); - STDMETHOD(inoutBool)(/*[in,out]*/ VARIANT_BOOL * inoutVal); - STDMETHOD(inoutAny)(/*[in,out]*/ VARIANT* inoutVal); - STDMETHOD(inoutSeqAny)(/*[in,out]*/ LPSAFEARRAY* pArray); - STDMETHOD(inoutEnum)(/*[in,out]*/ long * inoutVal); - STDMETHOD(inoutStruct)(/*[in,out]*/ IDispatch** inoutVal); - STDMETHOD(inoutInterface)(/*[in,out]*/ IDispatch** ppdisp); - STDMETHOD(inoutValuesAll)( - /* [out][in] */ IDispatch __RPC_FAR *__RPC_FAR *aXSimple, - /* [out][in] */ IDispatch __RPC_FAR *__RPC_FAR *aStruct, - /* [out][in] */ long __RPC_FAR *aEnum, - /* [out][in] */ SAFEARRAY __RPC_FAR * __RPC_FAR *aSeq, - /* [out][in] */ VARIANT __RPC_FAR *aAny, - /* [out][in] */ VARIANT_BOOL __RPC_FAR *aBool, - /* [out][in] */ short __RPC_FAR *aChar, - /* [out][in] */ BSTR __RPC_FAR *aString, - /* [out][in] */ float __RPC_FAR *aFloat, - /* [out][in] */ double __RPC_FAR *aDouble, - /* [out][in] */ unsigned char __RPC_FAR *aByte, - /* [out][in] */ short __RPC_FAR *aShort, - /* [out][in] */ long __RPC_FAR *aLong); - - STDMETHOD(outByte)( unsigned char* outByte); - STDMETHOD(outLong)(/*[out]*/ long* outLong); - STDMETHOD(outShort)(/*[out]*/ short *outShort); - STDMETHOD(outDouble)(/*[out]*/ double* outDouble); - STDMETHOD(outFloat)(/*[out]*/ float* outFloat); - STDMETHOD(outString)(/*[out]*/ BSTR * outString); - STDMETHOD(outChar)(short* outChar); - STDMETHOD(outBool)(VARIANT_BOOL* outBool); - STDMETHOD(outAny)(VARIANT* outAny); - STDMETHOD(outSeqAny)(/*[out]*/LPSAFEARRAY* outSeq); - STDMETHOD(outEnum)(/*[out]*/ long* outEnum); - STDMETHOD(outStruct)(/*[out]*/ IDispatch** outStruct); - virtual /* [helpstring][id] */ HRESULT STDMETHODCALLTYPE outValuesAll( - /* [out] */ IDispatch __RPC_FAR *__RPC_FAR *ppdisp, - /* [out] */ IDispatch __RPC_FAR *__RPC_FAR *ppSimpleStruct, - /* [out] */ long __RPC_FAR *aSimpleEnum, - /* [out] */ LPSAFEARRAY* outSeq, - /* [out] */ VARIANT __RPC_FAR *varAny, - /* [out] */ VARIANT_BOOL __RPC_FAR *aBool, - /* [out] */ short __RPC_FAR *aChar, - /* [out] */ BSTR __RPC_FAR *aString, - /* [out] */ float __RPC_FAR *aFloat, - /* [out] */ double __RPC_FAR *aDouble, - /* [out] */ unsigned char __RPC_FAR *aByte, - /* [out] */ short __RPC_FAR *aShort, - /* [out] */ long __RPC_FAR *aLong); -// ); -// -// STDMETHOD(outValuesAll)( -// /*[out]*/ IDispatch** ppdisp, -// /*[out]*/ IUnknown** ppSimpleStruct, -// /*[out]*/ long* aSimpleEnum, -// /*[out]*/ VARIANT* ArrayAny, -// /*[out]*/ VARIANT* varAny, -// /*[out]*/ VARIANT_BOOL * aBool, -// /*[out]*/ unsigned short* aChar, -// /*[out]*/ BSTR* aString, /*[out]*/ float* aFloat, -// /*[out]*/ double* aDouble, -// /*[out]*/ signed char* aByte, /*[out]*/ short* aShort, /*[out]*/long* aLong, /*[out]*/ unsigned short* aUShort, /*[out]*/ unsigned long* aULong); - STDMETHOD(outValuesMixed)(/*[in]*/ long val, /*[out]*/ long* pval, /*[in]*/ BSTR string); - STDMETHOD(outInterface)(/*[out]*/ IDispatch** ppdisp); - STDMETHOD(returnInterface)(/*[out, retval]*/ IDispatch** ppdisp); - STDMETHOD(func1)(); -}; - -#endif //__CALLBACK_H_ - - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/extensions/test/ole/unoTocomCalls/XCallback_Impl/Callback.rgs b/extensions/test/ole/unoTocomCalls/XCallback_Impl/Callback.rgs deleted file mode 100644 index b3f9e071b..000000000 --- a/extensions/test/ole/unoTocomCalls/XCallback_Impl/Callback.rgs +++ /dev/null @@ -1,27 +0,0 @@ -HKCR -{ - XCallback_Impl.Callback.1 = s 'Callback Class' - { - CLSID = s '{180FF560-6F5C-11D4-8330-005004526AB4}' - } - XCallback_Impl.Callback = s 'Callback Class' - { - CLSID = s '{180FF560-6F5C-11D4-8330-005004526AB4}' - CurVer = s 'XCallback_Impl.Callback.1' - } - NoRemove CLSID - { - ForceRemove {180FF560-6F5C-11D4-8330-005004526AB4} = s 'Callback Class' - { - ProgID = s 'XCallback_Impl.Callback.1' - VersionIndependentProgID = s 'XCallback_Impl.Callback' - ForceRemove 'Programmable' - InprocServer32 = s '%MODULE%' - { - val ThreadingModel = s 'Apartment' - } - 'TypeLib' = s '{180FF553-6F5C-11D4-8330-005004526AB4}' - } - } -} - diff --git a/extensions/test/ole/unoTocomCalls/XCallback_Impl/Simple.cpp b/extensions/test/ole/unoTocomCalls/XCallback_Impl/Simple.cpp deleted file mode 100644 index 34a5075db..000000000 --- a/extensions/test/ole/unoTocomCalls/XCallback_Impl/Simple.cpp +++ /dev/null @@ -1,82 +0,0 @@ -/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ -/************************************************************************* - * - * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. - * - * Copyright 2000, 2010 Oracle and/or its affiliates. - * - * OpenOffice.org - a multi-platform office productivity suite - * - * This file is part of OpenOffice.org. - * - * OpenOffice.org is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License version 3 - * only, as published by the Free Software Foundation. - * - * OpenOffice.org is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Lesser General Public License version 3 for more details - * (a copy is included in the LICENSE file that accompanied this code). - * - * You should have received a copy of the GNU Lesser General Public License - * version 3 along with OpenOffice.org. If not, see - * <http://www.openoffice.org/license.html> - * for a copy of the LGPLv3 License. - * - ************************************************************************/ -// Simple.cpp : Implementation of CSimple -#include "stdafx.h" -#include "XCallback_Impl.h" -#include "Simple.h" - -///////////////////////////////////////////////////////////////////////////// -// CSimple - - -STDMETHODIMP CSimple::func(BSTR message) -{ - USES_CONVERSION; - MessageBox( NULL, W2T( message), _T("XCallback_Impl.Simple"), MB_OK); - return S_OK; -} - - -STDMETHODIMP CSimple::func2(BSTR message) -{ - USES_CONVERSION; - MessageBox( NULL, W2T( message), _T("XCallback_Impl.Simple"), MB_OK); - return S_OK; -} - -STDMETHODIMP CSimple::func3(BSTR message) -{ - USES_CONVERSION; - MessageBox( NULL, W2T( message), _T("XCallback_Impl.Simple"), MB_OK); - return S_OK; -} - - -STDMETHODIMP CSimple::get__implementedInterfaces(LPSAFEARRAY *pVal) -{ - HRESULT hr= S_OK; - SAFEARRAY *pArr= SafeArrayCreateVector( VT_BSTR, 0, 3); - if( pArr) - { long index=0; - BSTR name1= SysAllocString(L"oletest.XSimple"); - BSTR name2= SysAllocString(L"oletest.XSimple2"); - BSTR name3= SysAllocString(L"oletest.XSimple3"); - - hr= SafeArrayPutElement( pArr, & index, name1); - index++; - hr= SafeArrayPutElement( pArr, &index, name2); - index++; - hr= SafeArrayPutElement( pArr, &index, name3); - *pVal= pArr; - - } - *pVal= pArr; - return S_OK; -} - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/extensions/test/ole/unoTocomCalls/XCallback_Impl/Simple.h b/extensions/test/ole/unoTocomCalls/XCallback_Impl/Simple.h deleted file mode 100644 index e76795925..000000000 --- a/extensions/test/ole/unoTocomCalls/XCallback_Impl/Simple.h +++ /dev/null @@ -1,67 +0,0 @@ -/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ -/************************************************************************* - * - * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. - * - * Copyright 2000, 2010 Oracle and/or its affiliates. - * - * OpenOffice.org - a multi-platform office productivity suite - * - * This file is part of OpenOffice.org. - * - * OpenOffice.org is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License version 3 - * only, as published by the Free Software Foundation. - * - * OpenOffice.org is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Lesser General Public License version 3 for more details - * (a copy is included in the LICENSE file that accompanied this code). - * - * You should have received a copy of the GNU Lesser General Public License - * version 3 along with OpenOffice.org. If not, see - * <http://www.openoffice.org/license.html> - * for a copy of the LGPLv3 License. - * - ************************************************************************/ -// Simple.h : Declaration of the CSimple - -#ifndef __SIMPLE_H_ -#define __SIMPLE_H_ - -#include "resource.h" // main symbols - -///////////////////////////////////////////////////////////////////////////// -// CSimple -class ATL_NO_VTABLE CSimple : - public CComObjectRootEx<CComSingleThreadModel>, - public CComCoClass<CSimple, &CLSID_Simple>, - public IDispatchImpl<ISimple, &IID_ISimple, &LIBID_XCALLBACK_IMPLLib> -{ -public: - CSimple() - { - } - -DECLARE_REGISTRY_RESOURCEID(IDR_SIMPLE) - -DECLARE_PROTECT_FINAL_CONSTRUCT() - -BEGIN_COM_MAP(CSimple) - COM_INTERFACE_ENTRY(ISimple) - COM_INTERFACE_ENTRY(IDispatch) -END_COM_MAP() - -// ISimple -public: - - STDMETHOD(get__implementedInterfaces)(/*[out, retval]*/ LPSAFEARRAY *pVal); - STDMETHOD(func3)(/*[in]*/ BSTR message); - STDMETHOD(func2)(/*[in]*/ BSTR message); - STDMETHOD(func)( BSTR message); -}; - -#endif //__SIMPLE_H_ - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/extensions/test/ole/unoTocomCalls/XCallback_Impl/Simple.rgs b/extensions/test/ole/unoTocomCalls/XCallback_Impl/Simple.rgs deleted file mode 100644 index 19237bf36..000000000 --- a/extensions/test/ole/unoTocomCalls/XCallback_Impl/Simple.rgs +++ /dev/null @@ -1,27 +0,0 @@ -HKCR -{ - XCallback_Impl.Simple.1 = s 'Simple Class' - { - CLSID = s '{180FF565-6F5C-11D4-8330-005004526AB4}' - } - XCallback_Impl.Simple = s 'Simple Class' - { - CLSID = s '{180FF565-6F5C-11D4-8330-005004526AB4}' - CurVer = s 'XCallback_Impl.Simple.1' - } - NoRemove CLSID - { - ForceRemove {180FF565-6F5C-11D4-8330-005004526AB4} = s 'Simple Class' - { - ProgID = s 'XCallback_Impl.Simple.1' - VersionIndependentProgID = s 'XCallback_Impl.Simple' - ForceRemove 'Programmable' - InprocServer32 = s '%MODULE%' - { - val ThreadingModel = s 'Apartment' - } - 'TypeLib' = s '{180FF553-6F5C-11D4-8330-005004526AB4}' - } - } -} - diff --git a/extensions/test/ole/unoTocomCalls/XCallback_Impl/StdAfx.cpp b/extensions/test/ole/unoTocomCalls/XCallback_Impl/StdAfx.cpp deleted file mode 100644 index 902524bdf..000000000 --- a/extensions/test/ole/unoTocomCalls/XCallback_Impl/StdAfx.cpp +++ /dev/null @@ -1,41 +0,0 @@ -/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ -/************************************************************************* - * - * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. - * - * Copyright 2000, 2010 Oracle and/or its affiliates. - * - * OpenOffice.org - a multi-platform office productivity suite - * - * This file is part of OpenOffice.org. - * - * OpenOffice.org is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License version 3 - * only, as published by the Free Software Foundation. - * - * OpenOffice.org is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Lesser General Public License version 3 for more details - * (a copy is included in the LICENSE file that accompanied this code). - * - * You should have received a copy of the GNU Lesser General Public License - * version 3 along with OpenOffice.org. If not, see - * <http://www.openoffice.org/license.html> - * for a copy of the LGPLv3 License. - * - ************************************************************************/ -// stdafx.cpp : source file that includes just the standard includes -// stdafx.pch will be the pre-compiled header -// stdafx.obj will contain the pre-compiled type information - -#include "stdafx.h" - -#ifdef _ATL_STATIC_REGISTRY -#include <statreg.h> -#include <statreg.cpp> -#endif - -#include <atlimpl.cpp> - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/extensions/test/ole/unoTocomCalls/XCallback_Impl/StdAfx.h b/extensions/test/ole/unoTocomCalls/XCallback_Impl/StdAfx.h deleted file mode 100644 index f692fae95..000000000 --- a/extensions/test/ole/unoTocomCalls/XCallback_Impl/StdAfx.h +++ /dev/null @@ -1,59 +0,0 @@ -/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ -/************************************************************************* - * - * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. - * - * Copyright 2000, 2010 Oracle and/or its affiliates. - * - * OpenOffice.org - a multi-platform office productivity suite - * - * This file is part of OpenOffice.org. - * - * OpenOffice.org is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License version 3 - * only, as published by the Free Software Foundation. - * - * OpenOffice.org is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Lesser General Public License version 3 for more details - * (a copy is included in the LICENSE file that accompanied this code). - * - * You should have received a copy of the GNU Lesser General Public License - * version 3 along with OpenOffice.org. If not, see - * <http://www.openoffice.org/license.html> - * for a copy of the LGPLv3 License. - * - ************************************************************************/ -// stdafx.h : include file for standard system include files, -// or project specific include files that are used frequently, -// but are changed infrequently - -#if !defined(AFX_STDAFX_H__180FF556_6F5C_11D4_8330_005004526AB4__INCLUDED_) -#define AFX_STDAFX_H__180FF556_6F5C_11D4_8330_005004526AB4__INCLUDED_ - -#if _MSC_VER > 1000 -#pragma once -#endif // _MSC_VER > 1000 - -#define STRICT -#ifndef _WIN32_WINNT -#define _WIN32_WINNT 0x0400 -#endif -#define _ATL_APARTMENT_THREADED - -#include <stdio.h> -#include <atlbase.h> -//You may derive a class from CComModule and use it if you want to override -//something, but do not change the name of _Module -extern CComModule _Module; -#include <atlcom.h> -#include <stdio.h> -#include <tchar.h> - -//{{AFX_INSERT_LOCATION}} -// Microsoft Visual C++ will insert additional declarations immediately before the previous line. - -#endif // !defined(AFX_STDAFX_H__180FF556_6F5C_11D4_8330_005004526AB4__INCLUDED) - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/extensions/test/ole/unoTocomCalls/XCallback_Impl/XCallback_Impl.cpp b/extensions/test/ole/unoTocomCalls/XCallback_Impl/XCallback_Impl.cpp deleted file mode 100644 index 78585a01b..000000000 --- a/extensions/test/ole/unoTocomCalls/XCallback_Impl/XCallback_Impl.cpp +++ /dev/null @@ -1,103 +0,0 @@ -/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ -/************************************************************************* - * - * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. - * - * Copyright 2000, 2010 Oracle and/or its affiliates. - * - * OpenOffice.org - a multi-platform office productivity suite - * - * This file is part of OpenOffice.org. - * - * OpenOffice.org is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License version 3 - * only, as published by the Free Software Foundation. - * - * OpenOffice.org is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Lesser General Public License version 3 for more details - * (a copy is included in the LICENSE file that accompanied this code). - * - * You should have received a copy of the GNU Lesser General Public License - * version 3 along with OpenOffice.org. If not, see - * <http://www.openoffice.org/license.html> - * for a copy of the LGPLv3 License. - * - ************************************************************************/ -// XCallback_Impl.cpp : Implementation of DLL Exports. - - -// Note: Proxy/Stub Information -// To build a separate proxy/stub DLL, -// run nmake -f XCallback_Implps.mk in the project directory. - -#include "stdafx.h" -#include "resource.h" -#include <initguid.h> -#include "XCallback_Impl.h" - -#include "XCallback_Impl_i.c" -#include "Callback.h" -#include "Simple.h" - - -CComModule _Module; - -BEGIN_OBJECT_MAP(ObjectMap) -OBJECT_ENTRY(CLSID_Callback, CCallback) -OBJECT_ENTRY(CLSID_Simple, CSimple) -END_OBJECT_MAP() - -///////////////////////////////////////////////////////////////////////////// -// DLL Entry Point - -extern "C" -BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD dwReason, LPVOID /*lpReserved*/) -{ - if (dwReason == DLL_PROCESS_ATTACH) - { - _Module.Init(ObjectMap, hInstance, &LIBID_XCALLBACK_IMPLLib); - DisableThreadLibraryCalls(hInstance); - } - else if (dwReason == DLL_PROCESS_DETACH) - _Module.Term(); - return TRUE; // ok -} - -///////////////////////////////////////////////////////////////////////////// -// Used to determine whether the DLL can be unloaded by OLE - -STDAPI DllCanUnloadNow(void) -{ - return (_Module.GetLockCount()==0) ? S_OK : S_FALSE; -} - -///////////////////////////////////////////////////////////////////////////// -// Returns a class factory to create an object of the requested type - -STDAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID* ppv) -{ - return _Module.GetClassObject(rclsid, riid, ppv); -} - -///////////////////////////////////////////////////////////////////////////// -// DllRegisterServer - Adds entries to the system registry - -STDAPI DllRegisterServer(void) -{ - // registers object, typelib and all interfaces in typelib - return _Module.RegisterServer(TRUE); -} - -///////////////////////////////////////////////////////////////////////////// -// DllUnregisterServer - Removes entries from the system registry - -STDAPI DllUnregisterServer(void) -{ - return _Module.UnregisterServer(TRUE); -} - - - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/extensions/test/ole/unoTocomCalls/XCallback_Impl/XCallback_Impl.def b/extensions/test/ole/unoTocomCalls/XCallback_Impl/XCallback_Impl.def deleted file mode 100644 index b2d5e9627..000000000 --- a/extensions/test/ole/unoTocomCalls/XCallback_Impl/XCallback_Impl.def +++ /dev/null @@ -1,10 +0,0 @@ -; XCallback_Impl.def : Declares the module parameters.
-
-LIBRARY "XCallback_Impl.DLL"
-
-EXPORTS
- DllCanUnloadNow PRIVATE
- DllGetClassObject PRIVATE
- DllRegisterServer PRIVATE
- DllUnregisterServer PRIVATE
-
diff --git a/extensions/test/ole/unoTocomCalls/XCallback_Impl/XCallback_Impl.dsp b/extensions/test/ole/unoTocomCalls/XCallback_Impl/XCallback_Impl.dsp deleted file mode 100644 index 6897d0d81..000000000 --- a/extensions/test/ole/unoTocomCalls/XCallback_Impl/XCallback_Impl.dsp +++ /dev/null @@ -1,337 +0,0 @@ -# Microsoft Developer Studio Project File - Name="XCallback_Impl" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 - -CFG=XCallback_Impl - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "XCallback_Impl.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "XCallback_Impl.mak" CFG="XCallback_Impl - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "XCallback_Impl - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "XCallback_Impl - Win32 Unicode Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "XCallback_Impl - Win32 Release MinSize" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "XCallback_Impl - Win32 Release MinDependency" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "XCallback_Impl - Win32 Unicode Release MinSize" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "XCallback_Impl - Win32 Unicode Release MinDependency" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "XCallback_Impl - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "Debug" -# PROP Intermediate_Dir "Debug" -# PROP Target_Dir "" -# ADD BASE CPP /nologo /MTd /W3 /Gm /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /Yu"stdafx.h" /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /ZI /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /FR /Yu"stdafx.h" /FD /GZ /c -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept -# Begin Custom Build - Performing registration -OutDir=.\Debug -TargetPath=.\Debug\XCallback_Impl.dll -InputPath=.\Debug\XCallback_Impl.dll -SOURCE="$(InputPath)" - -"$(OutDir)\regsvr32.trg" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)" - regsvr32 /s /c "$(TargetPath)" - echo regsvr32 exec. time > "$(OutDir)\regsvr32.trg" - -# End Custom Build - -!ELSEIF "$(CFG)" == "XCallback_Impl - Win32 Unicode Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "DebugU" -# PROP BASE Intermediate_Dir "DebugU" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "DebugU" -# PROP Intermediate_Dir "DebugU" -# PROP Target_Dir "" -# ADD BASE CPP /nologo /MTd /W3 /Gm /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_USRDLL" /D "_UNICODE" /Yu"stdafx.h" /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_USRDLL" /D "_UNICODE" /Yu"stdafx.h" /FD /GZ /c -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept -# Begin Custom Build - Performing registration -OutDir=.\DebugU -TargetPath=.\DebugU\XCallback_Impl.dll -InputPath=.\DebugU\XCallback_Impl.dll -SOURCE="$(InputPath)" - -"$(OutDir)\regsvr32.trg" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)" - if "%OS%"=="" goto NOTNT - if not "%OS%"=="Windows_NT" goto NOTNT - regsvr32 /s /c "$(TargetPath)" - echo regsvr32 exec. time > "$(OutDir)\regsvr32.trg" - goto end - :NOTNT - echo Warning : Cannot register Unicode DLL on Windows 95 - :end - -# End Custom Build - -!ELSEIF "$(CFG)" == "XCallback_Impl - Win32 Release MinSize" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "ReleaseMinSize" -# PROP BASE Intermediate_Dir "ReleaseMinSize" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "ReleaseMinSize" -# PROP Intermediate_Dir "ReleaseMinSize" -# PROP Target_Dir "" -# ADD BASE CPP /nologo /MT /W3 /O1 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "_ATL_DLL" /D "_ATL_MIN_CRT" /Yu"stdafx.h" /FD /c -# ADD CPP /nologo /MT /W3 /O1 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "_ATL_DLL" /D "_ATL_MIN_CRT" /Yu"stdafx.h" /FD /c -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 -# Begin Custom Build - Performing registration -OutDir=.\ReleaseMinSize -TargetPath=.\ReleaseMinSize\XCallback_Impl.dll -InputPath=.\ReleaseMinSize\XCallback_Impl.dll -SOURCE="$(InputPath)" - -"$(OutDir)\regsvr32.trg" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)" - regsvr32 /s /c "$(TargetPath)" - echo regsvr32 exec. time > "$(OutDir)\regsvr32.trg" - -# End Custom Build - -!ELSEIF "$(CFG)" == "XCallback_Impl - Win32 Release MinDependency" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "ReleaseMinDependency" -# PROP BASE Intermediate_Dir "ReleaseMinDependency" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "ReleaseMinDependency" -# PROP Intermediate_Dir "ReleaseMinDependency" -# PROP Target_Dir "" -# ADD BASE CPP /nologo /MT /W3 /O1 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "_ATL_STATIC_REGISTRY" /D "_ATL_MIN_CRT" /Yu"stdafx.h" /FD /c -# ADD CPP /nologo /MT /W3 /O1 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "_ATL_STATIC_REGISTRY" /D "_ATL_MIN_CRT" /Yu"stdafx.h" /FD /c -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 -# Begin Custom Build - Performing registration -OutDir=.\ReleaseMinDependency -TargetPath=.\ReleaseMinDependency\XCallback_Impl.dll -InputPath=.\ReleaseMinDependency\XCallback_Impl.dll -SOURCE="$(InputPath)" - -"$(OutDir)\regsvr32.trg" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)" - regsvr32 /s /c "$(TargetPath)" - echo regsvr32 exec. time > "$(OutDir)\regsvr32.trg" - -# End Custom Build - -!ELSEIF "$(CFG)" == "XCallback_Impl - Win32 Unicode Release MinSize" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "ReleaseUMinSize" -# PROP BASE Intermediate_Dir "ReleaseUMinSize" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "ReleaseUMinSize" -# PROP Intermediate_Dir "ReleaseUMinSize" -# PROP Target_Dir "" -# ADD BASE CPP /nologo /MT /W3 /O1 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_USRDLL" /D "_UNICODE" /D "_ATL_DLL" /D "_ATL_MIN_CRT" /Yu"stdafx.h" /FD /c -# ADD CPP /nologo /MT /W3 /O1 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_USRDLL" /D "_UNICODE" /D "_ATL_DLL" /D "_ATL_MIN_CRT" /Yu"stdafx.h" /FD /c -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 -# Begin Custom Build - Performing registration -OutDir=.\ReleaseUMinSize -TargetPath=.\ReleaseUMinSize\XCallback_Impl.dll -InputPath=.\ReleaseUMinSize\XCallback_Impl.dll -SOURCE="$(InputPath)" - -"$(OutDir)\regsvr32.trg" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)" - if "%OS%"=="" goto NOTNT - if not "%OS%"=="Windows_NT" goto NOTNT - regsvr32 /s /c "$(TargetPath)" - echo regsvr32 exec. time > "$(OutDir)\regsvr32.trg" - goto end - :NOTNT - echo Warning : Cannot register Unicode DLL on Windows 95 - :end - -# End Custom Build - -!ELSEIF "$(CFG)" == "XCallback_Impl - Win32 Unicode Release MinDependency" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "ReleaseUMinDependency" -# PROP BASE Intermediate_Dir "ReleaseUMinDependency" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "ReleaseUMinDependency" -# PROP Intermediate_Dir "ReleaseUMinDependency" -# PROP Target_Dir "" -# ADD BASE CPP /nologo /MT /W3 /O1 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_USRDLL" /D "_UNICODE" /D "_ATL_STATIC_REGISTRY" /D "_ATL_MIN_CRT" /Yu"stdafx.h" /FD /c -# ADD CPP /nologo /MT /W3 /O1 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_USRDLL" /D "_UNICODE" /D "_ATL_STATIC_REGISTRY" /Yu"stdafx.h" /FD /c -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 -# Begin Custom Build - Performing registration -OutDir=.\ReleaseUMinDependency -TargetPath=.\ReleaseUMinDependency\XCallback_Impl.dll -InputPath=.\ReleaseUMinDependency\XCallback_Impl.dll -SOURCE="$(InputPath)" - -"$(OutDir)\regsvr32.trg" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)" - if "%OS%"=="" goto NOTNT - if not "%OS%"=="Windows_NT" goto NOTNT - regsvr32 /s /c "$(TargetPath)" - echo regsvr32 exec. time > "$(OutDir)\regsvr32.trg" - goto end - :NOTNT - echo Warning : Cannot register Unicode DLL on Windows 95 - :end - -# End Custom Build - -!ENDIF - -# Begin Target - -# Name "XCallback_Impl - Win32 Debug" -# Name "XCallback_Impl - Win32 Unicode Debug" -# Name "XCallback_Impl - Win32 Release MinSize" -# Name "XCallback_Impl - Win32 Release MinDependency" -# Name "XCallback_Impl - Win32 Unicode Release MinSize" -# Name "XCallback_Impl - Win32 Unicode Release MinDependency" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=.\Callback.cpp -# End Source File -# Begin Source File - -SOURCE=.\Simple.cpp -# End Source File -# Begin Source File - -SOURCE=.\StdAfx.cpp -# ADD CPP /Yc"stdafx.h" -# End Source File -# Begin Source File - -SOURCE=.\XCallback_Impl.cpp -# End Source File -# Begin Source File - -SOURCE=.\XCallback_Impl.def -# End Source File -# Begin Source File - -SOURCE=.\XCallback_Impl.idl -# ADD MTL /tlb ".\XCallback_Impl.tlb" /h "XCallback_Impl.h" /iid "XCallback_Impl_i.c" /Oicf -# End Source File -# Begin Source File - -SOURCE=.\XCallback_Impl.rc -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# Begin Source File - -SOURCE=.\Callback.h -# End Source File -# Begin Source File - -SOURCE=.\Resource.h -# End Source File -# Begin Source File - -SOURCE=.\Simple.h -# End Source File -# Begin Source File - -SOURCE=.\StdAfx.h -# End Source File -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# Begin Source File - -SOURCE=.\Callback.rgs -# End Source File -# Begin Source File - -SOURCE=.\Simple.rgs -# End Source File -# End Group -# End Target -# End Project - - diff --git a/extensions/test/ole/unoTocomCalls/XCallback_Impl/XCallback_Impl.idl b/extensions/test/ole/unoTocomCalls/XCallback_Impl/XCallback_Impl.idl deleted file mode 100644 index 553243213..000000000 --- a/extensions/test/ole/unoTocomCalls/XCallback_Impl/XCallback_Impl.idl +++ /dev/null @@ -1,151 +0,0 @@ -/************************************************************************* - * - * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. - * - * Copyright 2000, 2010 Oracle and/or its affiliates. - * - * OpenOffice.org - a multi-platform office productivity suite - * - * This file is part of OpenOffice.org. - * - * OpenOffice.org is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License version 3 - * only, as published by the Free Software Foundation. - * - * OpenOffice.org is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Lesser General Public License version 3 for more details - * (a copy is included in the LICENSE file that accompanied this code). - * - * You should have received a copy of the GNU Lesser General Public License - * version 3 along with OpenOffice.org. If not, see - * <http://www.openoffice.org/license.html> - * for a copy of the LGPLv3 License. - * - ************************************************************************/ -// XCallback_Impl.idl : IDL source for XCallback_Impl.dll -// - -// This file will be processed by the MIDL tool to -// produce the type library (XCallback_Impl.tlb) and marshalling code. - -import "oaidl.idl"; -import "ocidl.idl"; - [ - object, - uuid(180FF55F-6F5C-11D4-8330-005004526AB4), - dual, - helpstring("ICallback Interface"), - pointer_default(unique) - ] - interface ICallback : IDispatch - { - [id(1), helpstring("method func1")] HRESULT func1(); - [id(2), helpstring("method returnInterface")] HRESULT returnInterface([out, retval] IDispatch** ppdisp); - [id(3), helpstring("method outInterface")] HRESULT outInterface([out] IDispatch** ppdisp); - [id(4), helpstring("method outValuesMixed")] HRESULT outValuesMixed([in] long val, [out] long* pval, [in] BSTR string); - [id(5), helpstring("method outValuesAll")] HRESULT outValuesAll([out] IDispatch** ppdisp, [out] IDispatch** ppSimpleStruct, [out] long* aSimpleEnum, - [out] SAFEARRAY( VARIANT)* outSeq, - [out] VARIANT* varAny, - [out] VARIANT_BOOL * aBool, - [out] short* aChar, - [out] BSTR* aString , - [out] float* aFloat, - [out] double* aDouble, - [out] unsigned char* aByte, - [out] short* aShort, - [out]long* aLong); -// ); - [id(6), helpstring("method outStruct")] HRESULT outStruct([out] IDispatch** outStruct); - [id(7), helpstring("method outEnum")] HRESULT outEnum([out] long* outEnum); - [id(8), helpstring("method outSeqAny")] HRESULT outSeqAny([out] SAFEARRAY( VARIANT)* outSeq); - [id(9), helpstring("method outAny")] HRESULT outAny([out] VARIANT* outAny); - [id(10), helpstring("method outBool")] HRESULT outBool([out]VARIANT_BOOL* outBool); - [id(11), helpstring("method outChar")] HRESULT outChar([out] short* outChar); - [id(12), helpstring("method outString")] HRESULT outString([out] BSTR * outString); - [id(13), helpstring("method outFloat")] HRESULT outFloat([out] float* outFloat); - [id(14), helpstring("method outDouble")] HRESULT outDouble([out] double* outDouble); - [id(16), helpstring("method outShort")] HRESULT outShort([out] short *outShort); - [id(17), helpstring("method outLong")] HRESULT outLong([out] long* outLong); - [id(20), helpstring("method outByte")] HRESULT outByte([out] unsigned char* outByte); - [id(21), helpstring("method inoutInterface")] HRESULT inoutInterface([in,out] IDispatch** ppdisp); - [id(22), helpstring("method inoutStruct")] HRESULT inoutStruct([in,out] IDispatch** inoutVal); - [id(23), helpstring("method inoutEnum")] HRESULT inoutEnum([in,out] long * inoutVal); - [id(24), helpstring("method inoutSeqAny")] HRESULT inoutSeqAny([in,out] SAFEARRAY(VARIANT)* pArray); - [id(25), helpstring("method inoutAny")] HRESULT inoutAny([in,out] VARIANT* inoutVal); - [id(26), helpstring("method inoutBool")] HRESULT inoutBool([in,out] VARIANT_BOOL * inoutVal); - [id(27), helpstring("method inoutChar")] HRESULT inoutChar([in,out] short* inoutVal); - [id(28), helpstring("method inoutString")] HRESULT inoutString([in,out] BSTR *inoutVal); - [id(29), helpstring("method inoutFloat")] HRESULT inoutFloat([in,out] float* inoutVal); - [id(30), helpstring("method inoutDouble")] HRESULT inoutDouble([in,out] double* inoutVal); - [id(31), helpstring("method inoutByte")] HRESULT inoutByte([in,out] unsigned char* inoutVal); - [id(32), helpstring("method inoutShort")] HRESULT inoutShort([in,out] short* inoutVal); - [id(33), helpstring("method inoutLong")] HRESULT inoutLong([in,out] long* inoutVal); - [id(34), helpstring("method inoutValueAll")] HRESULT inoutValuesAll( - [in,out] IDispatch** aXSimple, - [in,out] IDispatch** aStruct, - [in,out] long* aEnum, - [in,out] SAFEARRAY( VARIANT)* aSeq, - [in,out] VARIANT* aAny, - [in,out] VARIANT_BOOL* aBool, - [in,out] short* aChar, - [in,out] BSTR* aString, - [in,out] float* aFloat, - [in,out] double* aDouble, - [in,out] unsigned char* aByte, - [in,out] short* aShort, - [in,out] long* aLong); - [id(35), helpstring("method inValues")] HRESULT inValues([in]short aChar, [in] long aLong, [in] BSTR aString); - [id(36), helpstring("method outSeqByte")] HRESULT outSeqByte([out] SAFEARRAY(unsigned char)* outVal); - [id(37), helpstring("method inSeqByte")] HRESULT inSeqByte([in] SAFEARRAY(VARIANT) val); - [id(38), helpstring("method inSeqXEventListener")] HRESULT inSeqXEventListener([in] SAFEARRAY(VARIANT) listener, - [in] SAFEARRAY(VARIANT) event); - - }; - [ - object, - uuid(180FF564-6F5C-11D4-8330-005004526AB4), - dual, - helpstring("ISimple Interface"), - pointer_default(unique) - ] - interface ISimple : IDispatch - { - [id(1), helpstring("method func")] HRESULT func( [in] BSTR message); - [id(2), helpstring("method func2")] HRESULT func2([in] BSTR message); - [id(3), helpstring("method func3")] HRESULT func3([in] BSTR message); - [propget, id(4), helpstring("property _implementedInterfaces")] HRESULT _implementedInterfaces([out, retval] SAFEARRAY(BSTR) *pVal); - }; - - - -[ - uuid(180FF553-6F5C-11D4-8330-005004526AB4), - version(1.0), - helpstring("XCallback_Impl 1.0 Type Library") -] -library XCALLBACK_IMPLLib -{ - importlib("stdole32.tlb"); - importlib("stdole2.tlb"); - - [ - uuid(180FF560-6F5C-11D4-8330-005004526AB4), - helpstring("Callback Class") - ] - coclass Callback - { - [default] interface ICallback; - }; - [ - uuid(180FF565-6F5C-11D4-8330-005004526AB4), - helpstring("Simple Class") - ] - coclass Simple - { - [default] interface ISimple; - }; -}; - - diff --git a/extensions/test/ole/unoTocomCalls/XCallback_Impl/XCallback_Impl.rc b/extensions/test/ole/unoTocomCalls/XCallback_Impl/XCallback_Impl.rc deleted file mode 100644 index 32b485233..000000000 --- a/extensions/test/ole/unoTocomCalls/XCallback_Impl/XCallback_Impl.rc +++ /dev/null @@ -1,163 +0,0 @@ -/************************************************************************* -* - * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. - * - * Copyright 2000, 2010 Oracle and/or its affiliates. - * - * OpenOffice.org - a multi-platform office productivity suite - * - * This file is part of OpenOffice.org. - * - * OpenOffice.org is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License version 3 - * only, as published by the Free Software Foundation. - * - * OpenOffice.org is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Lesser General Public License version 3 for more details - * (a copy is included in the LICENSE file that accompanied this code). - * - * You should have received a copy of the GNU Lesser General Public License - * version 3 along with OpenOffice.org. If not, see - * <http://www.openoffice.org/license.html> - * for a copy of the LGPLv3 License. - * -**************************************************************************/ - -#include "resource.h" - -#define APSTUDIO_READONLY_SYMBOLS -///////////////////////////////////////////////////////////////////////////// -// -// Generated from the TEXTINCLUDE 2 resource. -// -#include "winres.h" - -///////////////////////////////////////////////////////////////////////////// -#undef APSTUDIO_READONLY_SYMBOLS - -///////////////////////////////////////////////////////////////////////////// -// German (Germany) resources - -#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_DEU) -#ifdef _WIN32 -LANGUAGE LANG_GERMAN, SUBLANG_GERMAN -#pragma code_page(1252) -#endif //_WIN32 - -///////////////////////////////////////////////////////////////////////////// -// -// REGISTRY -// - -IDR_CALLBACK REGISTRY DISCARDABLE "Callback.rgs" -IDR_SIMPLE REGISTRY DISCARDABLE "Simple.rgs" -#endif // German (Germany) resources -///////////////////////////////////////////////////////////////////////////// - - -///////////////////////////////////////////////////////////////////////////// -// English (U.S.) resources - -#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU) -#ifdef _WIN32 -LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US -#pragma code_page(1252) -#endif //_WIN32 - -#ifdef APSTUDIO_INVOKED -///////////////////////////////////////////////////////////////////////////// -// -// TEXTINCLUDE -// - -1 TEXTINCLUDE DISCARDABLE -BEGIN - "resource.h\0" -END - -2 TEXTINCLUDE DISCARDABLE -BEGIN - "#include ""winres.h""\r\n" - "\0" -END - -3 TEXTINCLUDE DISCARDABLE -BEGIN - "1 TYPELIB ""XCallback_Impl.tlb""\r\n" - "\0" -END - -#endif // APSTUDIO_INVOKED - - -#ifndef _MAC -///////////////////////////////////////////////////////////////////////////// -// -// Version -// - -VS_VERSION_INFO VERSIONINFO - FILEVERSION 1,0,0,1 - PRODUCTVERSION 1,0,0,1 - FILEFLAGSMASK 0x3fL -#ifdef _DEBUG - FILEFLAGS 0x1L -#else - FILEFLAGS 0x0L -#endif - FILEOS 0x4L - FILETYPE 0x2L - FILESUBTYPE 0x0L -BEGIN - BLOCK "StringFileInfo" - BEGIN - BLOCK "040904B0" - BEGIN - VALUE "CompanyName", "\0" - VALUE "FileDescription", "XCallback_Impl Module\0" - VALUE "FileVersion", "1, 0, 0, 1\0" - VALUE "InternalName", "XCallback_Impl\0" - VALUE "LegalCopyright", "Copyright 2000\0" - VALUE "OriginalFilename", "XCallback_Impl.DLL\0" - VALUE "ProductName", "XCallback_Impl Module\0" - VALUE "ProductVersion", "1, 0, 0, 1\0" - VALUE "OLESelfRegister", "\0" - END - END - BLOCK "VarFileInfo" - BEGIN - VALUE "Translation", 0x409, 1200 - END -END - -#endif // !_MAC - - -///////////////////////////////////////////////////////////////////////////// -// -// String Table -// - -STRINGTABLE DISCARDABLE -BEGIN - IDS_PROJNAME "XCallback_Impl" -END - -#endif // English (U.S.) resources -///////////////////////////////////////////////////////////////////////////// - - - -#ifndef APSTUDIO_INVOKED -///////////////////////////////////////////////////////////////////////////// -// -// Generated from the TEXTINCLUDE 3 resource. -// -1 TYPELIB "XCallback_Impl.tlb" - -///////////////////////////////////////////////////////////////////////////// -#endif // not APSTUDIO_INVOKED - - diff --git a/extensions/test/ole/unoTocomCalls/XCallback_Impl/XCallback_Impl.sln b/extensions/test/ole/unoTocomCalls/XCallback_Impl/XCallback_Impl.sln deleted file mode 100644 index 62b109fe4..000000000 --- a/extensions/test/ole/unoTocomCalls/XCallback_Impl/XCallback_Impl.sln +++ /dev/null @@ -1,31 +0,0 @@ -Microsoft Visual Studio Solution File, Format Version 10.00
-# Visual Studio 2008
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "XCallback_Impl", "XCallback_Impl.vcproj", "{92A6B531-401E-4900-8217-169A96F4168D}"
-EndProject
-Global
- GlobalSection(SolutionConfigurationPlatforms) = preSolution
- Debug|Win32 = Debug|Win32
- Release MinDependency|Win32 = Release MinDependency|Win32
- Release MinSize|Win32 = Release MinSize|Win32
- Unicode Debug|Win32 = Unicode Debug|Win32
- Unicode Release MinDependency|Win32 = Unicode Release MinDependency|Win32
- Unicode Release MinSize|Win32 = Unicode Release MinSize|Win32
- EndGlobalSection
- GlobalSection(ProjectConfigurationPlatforms) = postSolution
- {92A6B531-401E-4900-8217-169A96F4168D}.Debug|Win32.ActiveCfg = Debug|Win32
- {92A6B531-401E-4900-8217-169A96F4168D}.Debug|Win32.Build.0 = Debug|Win32
- {92A6B531-401E-4900-8217-169A96F4168D}.Release MinDependency|Win32.ActiveCfg = Release MinDependency|Win32
- {92A6B531-401E-4900-8217-169A96F4168D}.Release MinDependency|Win32.Build.0 = Release MinDependency|Win32
- {92A6B531-401E-4900-8217-169A96F4168D}.Release MinSize|Win32.ActiveCfg = Release MinSize|Win32
- {92A6B531-401E-4900-8217-169A96F4168D}.Release MinSize|Win32.Build.0 = Release MinSize|Win32
- {92A6B531-401E-4900-8217-169A96F4168D}.Unicode Debug|Win32.ActiveCfg = Unicode Debug|Win32
- {92A6B531-401E-4900-8217-169A96F4168D}.Unicode Debug|Win32.Build.0 = Unicode Debug|Win32
- {92A6B531-401E-4900-8217-169A96F4168D}.Unicode Release MinDependency|Win32.ActiveCfg = Unicode Release MinDependency|Win32
- {92A6B531-401E-4900-8217-169A96F4168D}.Unicode Release MinDependency|Win32.Build.0 = Unicode Release MinDependency|Win32
- {92A6B531-401E-4900-8217-169A96F4168D}.Unicode Release MinSize|Win32.ActiveCfg = Unicode Release MinSize|Win32
- {92A6B531-401E-4900-8217-169A96F4168D}.Unicode Release MinSize|Win32.Build.0 = Unicode Release MinSize|Win32
- EndGlobalSection
- GlobalSection(SolutionProperties) = preSolution
- HideSolutionNode = FALSE
- EndGlobalSection
-EndGlobal
diff --git a/extensions/test/ole/unoTocomCalls/XCallback_Impl/XCallback_Impl.vcproj b/extensions/test/ole/unoTocomCalls/XCallback_Impl/XCallback_Impl.vcproj deleted file mode 100644 index 1a9068d31..000000000 --- a/extensions/test/ole/unoTocomCalls/XCallback_Impl/XCallback_Impl.vcproj +++ /dev/null @@ -1,816 +0,0 @@ -<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioProject
- ProjectType="Visual C++"
- Version="9,00"
- Name="XCallback_Impl"
- ProjectGUID="{92A6B531-401E-4900-8217-169A96F4168D}"
- RootNamespace="XCallback_Impl"
- Keyword="AtlProj"
- TargetFrameworkVersion="131072"
- >
- <Platforms>
- <Platform
- Name="Win32"
- />
- </Platforms>
- <ToolFiles>
- </ToolFiles>
- <Configurations>
- <Configuration
- Name="Unicode Release MinSize|Win32"
- OutputDirectory=".\ReleaseUMinSize"
- IntermediateDirectory=".\ReleaseUMinSize"
- ConfigurationType="2"
- InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC70.vsprops"
- UseOfMFC="0"
- UseOfATL="2"
- ATLMinimizesCRunTimeLibraryUsage="false"
- CharacterSet="1"
- >
- <Tool
- Name="VCPreBuildEventTool"
- />
- <Tool
- Name="VCCustomBuildTool"
- Description="Performing registration"
- CommandLine="if "%OS%"=="" goto NOTNT
if not "%OS%"=="Windows_NT" goto NOTNT
regsvr32 /s /c "$(TargetPath)"
echo regsvr32 exec. time > "$(OutDir)\regsvr32.trg"
goto end
:NOTNT
echo Warning : Cannot register Unicode DLL on Windows 95
:end
"
- Outputs="$(OutDir)\regsvr32.trg"
- />
- <Tool
- Name="VCXMLDataGeneratorTool"
- />
- <Tool
- Name="VCWebServiceProxyGeneratorTool"
- />
- <Tool
- Name="VCMIDLTool"
- TypeLibraryName=".\ReleaseUMinSize/XCallback_Impl.tlb"
- />
- <Tool
- Name="VCCLCompilerTool"
- InlineFunctionExpansion="1"
- PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL"
- StringPooling="true"
- RuntimeLibrary="0"
- EnableFunctionLevelLinking="true"
- UsePrecompiledHeader="2"
- PrecompiledHeaderThrough="stdafx.h"
- PrecompiledHeaderFile=".\ReleaseUMinSize/XCallback_Impl.pch"
- AssemblerListingLocation=".\ReleaseUMinSize/"
- ObjectFile=".\ReleaseUMinSize/"
- ProgramDataBaseFileName=".\ReleaseUMinSize/"
- WarningLevel="3"
- SuppressStartupBanner="true"
- />
- <Tool
- Name="VCManagedResourceCompilerTool"
- />
- <Tool
- Name="VCResourceCompilerTool"
- PreprocessorDefinitions="NDEBUG"
- Culture="1033"
- />
- <Tool
- Name="VCPreLinkEventTool"
- />
- <Tool
- Name="VCLinkerTool"
- AdditionalOptions="/MACHINE:I386"
- AdditionalDependencies="odbc32.lib odbccp32.lib"
- OutputFile=".\ReleaseUMinSize/XCallback_Impl.dll"
- LinkIncremental="1"
- SuppressStartupBanner="true"
- ModuleDefinitionFile=".\XCallback_Impl.def"
- ProgramDatabaseFile=".\ReleaseUMinSize/XCallback_Impl.pdb"
- SubSystem="2"
- RandomizedBaseAddress="1"
- DataExecutionPrevention="0"
- ImportLibrary=".\ReleaseUMinSize/XCallback_Impl.lib"
- />
- <Tool
- Name="VCALinkTool"
- />
- <Tool
- Name="VCManifestTool"
- />
- <Tool
- Name="VCXDCMakeTool"
- />
- <Tool
- Name="VCBscMakeTool"
- />
- <Tool
- Name="VCFxCopTool"
- />
- <Tool
- Name="VCAppVerifierTool"
- />
- <Tool
- Name="VCPostBuildEventTool"
- />
- </Configuration>
- <Configuration
- Name="Release MinSize|Win32"
- OutputDirectory=".\ReleaseMinSize"
- IntermediateDirectory=".\ReleaseMinSize"
- ConfigurationType="2"
- InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC70.vsprops"
- UseOfMFC="0"
- UseOfATL="2"
- ATLMinimizesCRunTimeLibraryUsage="false"
- CharacterSet="2"
- >
- <Tool
- Name="VCPreBuildEventTool"
- />
- <Tool
- Name="VCCustomBuildTool"
- Description="Performing registration"
- CommandLine="regsvr32 /s /c "$(TargetPath)"
echo regsvr32 exec. time > "$(OutDir)\regsvr32.trg"
"
- Outputs="$(OutDir)\regsvr32.trg"
- />
- <Tool
- Name="VCXMLDataGeneratorTool"
- />
- <Tool
- Name="VCWebServiceProxyGeneratorTool"
- />
- <Tool
- Name="VCMIDLTool"
- TypeLibraryName=".\ReleaseMinSize/XCallback_Impl.tlb"
- />
- <Tool
- Name="VCCLCompilerTool"
- InlineFunctionExpansion="1"
- PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL"
- StringPooling="true"
- RuntimeLibrary="0"
- EnableFunctionLevelLinking="true"
- UsePrecompiledHeader="2"
- PrecompiledHeaderThrough="stdafx.h"
- PrecompiledHeaderFile=".\ReleaseMinSize/XCallback_Impl.pch"
- AssemblerListingLocation=".\ReleaseMinSize/"
- ObjectFile=".\ReleaseMinSize/"
- ProgramDataBaseFileName=".\ReleaseMinSize/"
- WarningLevel="3"
- SuppressStartupBanner="true"
- />
- <Tool
- Name="VCManagedResourceCompilerTool"
- />
- <Tool
- Name="VCResourceCompilerTool"
- PreprocessorDefinitions="NDEBUG"
- Culture="1033"
- />
- <Tool
- Name="VCPreLinkEventTool"
- />
- <Tool
- Name="VCLinkerTool"
- AdditionalOptions="/MACHINE:I386"
- AdditionalDependencies="odbc32.lib odbccp32.lib"
- OutputFile=".\ReleaseMinSize/XCallback_Impl.dll"
- LinkIncremental="1"
- SuppressStartupBanner="true"
- ModuleDefinitionFile=".\XCallback_Impl.def"
- ProgramDatabaseFile=".\ReleaseMinSize/XCallback_Impl.pdb"
- SubSystem="2"
- RandomizedBaseAddress="1"
- DataExecutionPrevention="0"
- ImportLibrary=".\ReleaseMinSize/XCallback_Impl.lib"
- />
- <Tool
- Name="VCALinkTool"
- />
- <Tool
- Name="VCManifestTool"
- />
- <Tool
- Name="VCXDCMakeTool"
- />
- <Tool
- Name="VCBscMakeTool"
- />
- <Tool
- Name="VCFxCopTool"
- />
- <Tool
- Name="VCAppVerifierTool"
- />
- <Tool
- Name="VCPostBuildEventTool"
- />
- </Configuration>
- <Configuration
- Name="Unicode Release MinDependency|Win32"
- OutputDirectory=".\ReleaseUMinDependency"
- IntermediateDirectory=".\ReleaseUMinDependency"
- ConfigurationType="2"
- InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC70.vsprops"
- UseOfMFC="0"
- UseOfATL="1"
- ATLMinimizesCRunTimeLibraryUsage="false"
- CharacterSet="1"
- >
- <Tool
- Name="VCPreBuildEventTool"
- />
- <Tool
- Name="VCCustomBuildTool"
- Description="Performing registration"
- CommandLine="if "%OS%"=="" goto NOTNT
if not "%OS%"=="Windows_NT" goto NOTNT
regsvr32 /s /c "$(TargetPath)"
echo regsvr32 exec. time > "$(OutDir)\regsvr32.trg"
goto end
:NOTNT
echo Warning : Cannot register Unicode DLL on Windows 95
:end
"
- Outputs="$(OutDir)\regsvr32.trg"
- />
- <Tool
- Name="VCXMLDataGeneratorTool"
- />
- <Tool
- Name="VCWebServiceProxyGeneratorTool"
- />
- <Tool
- Name="VCMIDLTool"
- TypeLibraryName=".\ReleaseUMinDependency/XCallback_Impl.tlb"
- />
- <Tool
- Name="VCCLCompilerTool"
- Optimization="1"
- InlineFunctionExpansion="1"
- PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL"
- StringPooling="true"
- RuntimeLibrary="0"
- EnableFunctionLevelLinking="true"
- UsePrecompiledHeader="2"
- PrecompiledHeaderThrough="stdafx.h"
- PrecompiledHeaderFile=".\ReleaseUMinDependency/XCallback_Impl.pch"
- AssemblerListingLocation=".\ReleaseUMinDependency/"
- ObjectFile=".\ReleaseUMinDependency/"
- ProgramDataBaseFileName=".\ReleaseUMinDependency/"
- WarningLevel="3"
- SuppressStartupBanner="true"
- />
- <Tool
- Name="VCManagedResourceCompilerTool"
- />
- <Tool
- Name="VCResourceCompilerTool"
- PreprocessorDefinitions="NDEBUG"
- Culture="1033"
- />
- <Tool
- Name="VCPreLinkEventTool"
- />
- <Tool
- Name="VCLinkerTool"
- AdditionalOptions="/MACHINE:I386"
- AdditionalDependencies="odbc32.lib odbccp32.lib"
- OutputFile=".\ReleaseUMinDependency/XCallback_Impl.dll"
- LinkIncremental="1"
- SuppressStartupBanner="true"
- ModuleDefinitionFile=".\XCallback_Impl.def"
- ProgramDatabaseFile=".\ReleaseUMinDependency/XCallback_Impl.pdb"
- SubSystem="2"
- RandomizedBaseAddress="1"
- DataExecutionPrevention="0"
- ImportLibrary=".\ReleaseUMinDependency/XCallback_Impl.lib"
- />
- <Tool
- Name="VCALinkTool"
- />
- <Tool
- Name="VCManifestTool"
- />
- <Tool
- Name="VCXDCMakeTool"
- />
- <Tool
- Name="VCBscMakeTool"
- />
- <Tool
- Name="VCFxCopTool"
- />
- <Tool
- Name="VCAppVerifierTool"
- />
- <Tool
- Name="VCPostBuildEventTool"
- />
- </Configuration>
- <Configuration
- Name="Release MinDependency|Win32"
- OutputDirectory=".\ReleaseMinDependency"
- IntermediateDirectory=".\ReleaseMinDependency"
- ConfigurationType="2"
- InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC70.vsprops"
- UseOfMFC="0"
- UseOfATL="1"
- ATLMinimizesCRunTimeLibraryUsage="false"
- CharacterSet="2"
- >
- <Tool
- Name="VCPreBuildEventTool"
- />
- <Tool
- Name="VCCustomBuildTool"
- Description="Performing registration"
- CommandLine="regsvr32 /s /c "$(TargetPath)"
echo regsvr32 exec. time > "$(OutDir)\regsvr32.trg"
"
- Outputs="$(OutDir)\regsvr32.trg"
- />
- <Tool
- Name="VCXMLDataGeneratorTool"
- />
- <Tool
- Name="VCWebServiceProxyGeneratorTool"
- />
- <Tool
- Name="VCMIDLTool"
- TypeLibraryName=".\ReleaseMinDependency/XCallback_Impl.tlb"
- />
- <Tool
- Name="VCCLCompilerTool"
- InlineFunctionExpansion="1"
- PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL"
- StringPooling="true"
- RuntimeLibrary="0"
- EnableFunctionLevelLinking="true"
- UsePrecompiledHeader="2"
- PrecompiledHeaderThrough="stdafx.h"
- PrecompiledHeaderFile=".\ReleaseMinDependency/XCallback_Impl.pch"
- AssemblerListingLocation=".\ReleaseMinDependency/"
- ObjectFile=".\ReleaseMinDependency/"
- ProgramDataBaseFileName=".\ReleaseMinDependency/"
- WarningLevel="3"
- SuppressStartupBanner="true"
- />
- <Tool
- Name="VCManagedResourceCompilerTool"
- />
- <Tool
- Name="VCResourceCompilerTool"
- PreprocessorDefinitions="NDEBUG"
- Culture="1033"
- />
- <Tool
- Name="VCPreLinkEventTool"
- />
- <Tool
- Name="VCLinkerTool"
- AdditionalOptions="/MACHINE:I386"
- AdditionalDependencies="odbc32.lib odbccp32.lib"
- OutputFile=".\ReleaseMinDependency/XCallback_Impl.dll"
- LinkIncremental="1"
- SuppressStartupBanner="true"
- ModuleDefinitionFile=".\XCallback_Impl.def"
- ProgramDatabaseFile=".\ReleaseMinDependency/XCallback_Impl.pdb"
- SubSystem="2"
- RandomizedBaseAddress="1"
- DataExecutionPrevention="0"
- ImportLibrary=".\ReleaseMinDependency/XCallback_Impl.lib"
- />
- <Tool
- Name="VCALinkTool"
- />
- <Tool
- Name="VCManifestTool"
- />
- <Tool
- Name="VCXDCMakeTool"
- />
- <Tool
- Name="VCBscMakeTool"
- />
- <Tool
- Name="VCFxCopTool"
- />
- <Tool
- Name="VCAppVerifierTool"
- />
- <Tool
- Name="VCPostBuildEventTool"
- />
- </Configuration>
- <Configuration
- Name="Unicode Debug|Win32"
- OutputDirectory=".\DebugU"
- IntermediateDirectory=".\DebugU"
- ConfigurationType="2"
- InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC70.vsprops"
- UseOfMFC="0"
- ATLMinimizesCRunTimeLibraryUsage="false"
- CharacterSet="1"
- >
- <Tool
- Name="VCPreBuildEventTool"
- />
- <Tool
- Name="VCCustomBuildTool"
- Description="Performing registration"
- CommandLine="if "%OS%"=="" goto NOTNT
if not "%OS%"=="Windows_NT" goto NOTNT
regsvr32 /s /c "$(TargetPath)"
echo regsvr32 exec. time > "$(OutDir)\regsvr32.trg"
goto end
:NOTNT
echo Warning : Cannot register Unicode DLL on Windows 95
:end
"
- Outputs="$(OutDir)\regsvr32.trg"
- />
- <Tool
- Name="VCXMLDataGeneratorTool"
- />
- <Tool
- Name="VCWebServiceProxyGeneratorTool"
- />
- <Tool
- Name="VCMIDLTool"
- TypeLibraryName=".\DebugU/XCallback_Impl.tlb"
- />
- <Tool
- Name="VCCLCompilerTool"
- Optimization="0"
- PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_USRDLL"
- BasicRuntimeChecks="3"
- RuntimeLibrary="1"
- UsePrecompiledHeader="2"
- PrecompiledHeaderThrough="stdafx.h"
- PrecompiledHeaderFile=".\DebugU/XCallback_Impl.pch"
- AssemblerListingLocation=".\DebugU/"
- ObjectFile=".\DebugU/"
- ProgramDataBaseFileName=".\DebugU/"
- WarningLevel="3"
- SuppressStartupBanner="true"
- DebugInformationFormat="4"
- />
- <Tool
- Name="VCManagedResourceCompilerTool"
- />
- <Tool
- Name="VCResourceCompilerTool"
- PreprocessorDefinitions="_DEBUG"
- Culture="1033"
- />
- <Tool
- Name="VCPreLinkEventTool"
- />
- <Tool
- Name="VCLinkerTool"
- AdditionalOptions="/MACHINE:I386"
- AdditionalDependencies="odbc32.lib odbccp32.lib"
- OutputFile=".\DebugU/XCallback_Impl.dll"
- LinkIncremental="2"
- SuppressStartupBanner="true"
- ModuleDefinitionFile=".\XCallback_Impl.def"
- GenerateDebugInformation="true"
- ProgramDatabaseFile=".\DebugU/XCallback_Impl.pdb"
- SubSystem="2"
- RandomizedBaseAddress="1"
- DataExecutionPrevention="0"
- ImportLibrary=".\DebugU/XCallback_Impl.lib"
- />
- <Tool
- Name="VCALinkTool"
- />
- <Tool
- Name="VCManifestTool"
- />
- <Tool
- Name="VCXDCMakeTool"
- />
- <Tool
- Name="VCBscMakeTool"
- />
- <Tool
- Name="VCFxCopTool"
- />
- <Tool
- Name="VCAppVerifierTool"
- />
- <Tool
- Name="VCPostBuildEventTool"
- />
- </Configuration>
- <Configuration
- Name="Debug|Win32"
- OutputDirectory=".\Debug"
- IntermediateDirectory=".\Debug"
- ConfigurationType="2"
- InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC70.vsprops"
- UseOfMFC="0"
- ATLMinimizesCRunTimeLibraryUsage="false"
- CharacterSet="2"
- >
- <Tool
- Name="VCPreBuildEventTool"
- />
- <Tool
- Name="VCCustomBuildTool"
- Description="Performing registration"
- CommandLine="regsvr32 /s /c "$(TargetPath)"
echo regsvr32 exec. time > "$(OutDir)\regsvr32.trg"
"
- Outputs="$(OutDir)\regsvr32.trg"
- />
- <Tool
- Name="VCXMLDataGeneratorTool"
- />
- <Tool
- Name="VCWebServiceProxyGeneratorTool"
- />
- <Tool
- Name="VCMIDLTool"
- TypeLibraryName=".\Debug/XCallback_Impl.tlb"
- />
- <Tool
- Name="VCCLCompilerTool"
- AdditionalOptions="/D_CRT_SECURE_CPP_OVERLOAD_STANDARD_NAMES"
- Optimization="0"
- PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_USRDLL"
- BasicRuntimeChecks="3"
- RuntimeLibrary="1"
- UsePrecompiledHeader="2"
- PrecompiledHeaderThrough="stdafx.h"
- PrecompiledHeaderFile=".\Debug/XCallback_Impl.pch"
- AssemblerListingLocation=".\Debug/"
- ObjectFile=".\Debug/"
- ProgramDataBaseFileName=".\Debug/"
- BrowseInformation="1"
- WarningLevel="3"
- SuppressStartupBanner="true"
- DebugInformationFormat="4"
- />
- <Tool
- Name="VCManagedResourceCompilerTool"
- />
- <Tool
- Name="VCResourceCompilerTool"
- PreprocessorDefinitions="_DEBUG"
- Culture="1033"
- />
- <Tool
- Name="VCPreLinkEventTool"
- />
- <Tool
- Name="VCLinkerTool"
- AdditionalOptions="/MACHINE:I386"
- AdditionalDependencies="odbc32.lib odbccp32.lib"
- OutputFile=".\Debug/XCallback_Impl.dll"
- LinkIncremental="2"
- SuppressStartupBanner="true"
- ModuleDefinitionFile=".\XCallback_Impl.def"
- GenerateDebugInformation="true"
- ProgramDatabaseFile=".\Debug/XCallback_Impl.pdb"
- SubSystem="2"
- RandomizedBaseAddress="1"
- DataExecutionPrevention="0"
- ImportLibrary=".\Debug/XCallback_Impl.lib"
- />
- <Tool
- Name="VCALinkTool"
- />
- <Tool
- Name="VCManifestTool"
- />
- <Tool
- Name="VCXDCMakeTool"
- />
- <Tool
- Name="VCBscMakeTool"
- />
- <Tool
- Name="VCFxCopTool"
- />
- <Tool
- Name="VCAppVerifierTool"
- />
- <Tool
- Name="VCPostBuildEventTool"
- />
- </Configuration>
- </Configurations>
- <References>
- </References>
- <Files>
- <Filter
- Name="Source Files"
- Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
- >
- <File
- RelativePath=".\Callback.cpp"
- >
- </File>
- <File
- RelativePath=".\Simple.cpp"
- >
- </File>
- <File
- RelativePath=".\StdAfx.cpp"
- >
- <FileConfiguration
- Name="Unicode Release MinSize|Win32"
- >
- <Tool
- Name="VCCLCompilerTool"
- UsePrecompiledHeader="1"
- />
- </FileConfiguration>
- <FileConfiguration
- Name="Release MinSize|Win32"
- >
- <Tool
- Name="VCCLCompilerTool"
- UsePrecompiledHeader="1"
- />
- </FileConfiguration>
- <FileConfiguration
- Name="Unicode Release MinDependency|Win32"
- >
- <Tool
- Name="VCCLCompilerTool"
- UsePrecompiledHeader="1"
- />
- </FileConfiguration>
- <FileConfiguration
- Name="Release MinDependency|Win32"
- >
- <Tool
- Name="VCCLCompilerTool"
- UsePrecompiledHeader="1"
- />
- </FileConfiguration>
- <FileConfiguration
- Name="Unicode Debug|Win32"
- >
- <Tool
- Name="VCCLCompilerTool"
- UsePrecompiledHeader="1"
- />
- </FileConfiguration>
- <FileConfiguration
- Name="Debug|Win32"
- >
- <Tool
- Name="VCCLCompilerTool"
- UsePrecompiledHeader="1"
- />
- </FileConfiguration>
- </File>
- <File
- RelativePath=".\XCallback_Impl.cpp"
- >
- </File>
- <File
- RelativePath=".\XCallback_Impl.def"
- >
- </File>
- <File
- RelativePath=".\XCallback_Impl.idl"
- >
- <FileConfiguration
- Name="Unicode Release MinSize|Win32"
- >
- <Tool
- Name="VCMIDLTool"
- GenerateStublessProxies="true"
- TypeLibraryName=".\XCallback_Impl.tlb"
- HeaderFileName="XCallback_Impl.h"
- InterfaceIdentifierFileName="XCallback_Impl_i.c"
- />
- </FileConfiguration>
- <FileConfiguration
- Name="Release MinSize|Win32"
- >
- <Tool
- Name="VCMIDLTool"
- GenerateStublessProxies="true"
- TypeLibraryName=".\XCallback_Impl.tlb"
- HeaderFileName="XCallback_Impl.h"
- InterfaceIdentifierFileName="XCallback_Impl_i.c"
- />
- </FileConfiguration>
- <FileConfiguration
- Name="Unicode Release MinDependency|Win32"
- >
- <Tool
- Name="VCMIDLTool"
- GenerateStublessProxies="true"
- TypeLibraryName=".\XCallback_Impl.tlb"
- HeaderFileName="XCallback_Impl.h"
- InterfaceIdentifierFileName="XCallback_Impl_i.c"
- />
- </FileConfiguration>
- <FileConfiguration
- Name="Release MinDependency|Win32"
- >
- <Tool
- Name="VCMIDLTool"
- GenerateStublessProxies="true"
- TypeLibraryName=".\XCallback_Impl.tlb"
- HeaderFileName="XCallback_Impl.h"
- InterfaceIdentifierFileName="XCallback_Impl_i.c"
- />
- </FileConfiguration>
- <FileConfiguration
- Name="Unicode Debug|Win32"
- >
- <Tool
- Name="VCMIDLTool"
- GenerateStublessProxies="true"
- TypeLibraryName=".\XCallback_Impl.tlb"
- HeaderFileName="XCallback_Impl.h"
- InterfaceIdentifierFileName="XCallback_Impl_i.c"
- />
- </FileConfiguration>
- <FileConfiguration
- Name="Debug|Win32"
- >
- <Tool
- Name="VCMIDLTool"
- GenerateStublessProxies="true"
- TypeLibraryName=".\XCallback_Impl.tlb"
- HeaderFileName="XCallback_Impl.h"
- InterfaceIdentifierFileName="XCallback_Impl_i.c"
- />
- </FileConfiguration>
- </File>
- <File
- RelativePath=".\XCallback_Impl.rc"
- >
- <FileConfiguration
- Name="Unicode Release MinSize|Win32"
- >
- <Tool
- Name="VCResourceCompilerTool"
- AdditionalIncludeDirectories="$(OUTDIR);$(NoInherit)"
- />
- </FileConfiguration>
- <FileConfiguration
- Name="Release MinSize|Win32"
- >
- <Tool
- Name="VCResourceCompilerTool"
- AdditionalIncludeDirectories="$(OUTDIR);$(NoInherit)"
- />
- </FileConfiguration>
- <FileConfiguration
- Name="Unicode Release MinDependency|Win32"
- >
- <Tool
- Name="VCResourceCompilerTool"
- AdditionalIncludeDirectories="$(OUTDIR);$(NoInherit)"
- />
- </FileConfiguration>
- <FileConfiguration
- Name="Release MinDependency|Win32"
- >
- <Tool
- Name="VCResourceCompilerTool"
- AdditionalIncludeDirectories="$(OUTDIR);$(NoInherit)"
- />
- </FileConfiguration>
- <FileConfiguration
- Name="Unicode Debug|Win32"
- >
- <Tool
- Name="VCResourceCompilerTool"
- AdditionalIncludeDirectories="$(OUTDIR);$(NoInherit)"
- />
- </FileConfiguration>
- <FileConfiguration
- Name="Debug|Win32"
- >
- <Tool
- Name="VCResourceCompilerTool"
- AdditionalIncludeDirectories="$(OUTDIR);$(NoInherit)"
- />
- </FileConfiguration>
- </File>
- </Filter>
- <Filter
- Name="Header Files"
- Filter="h;hpp;hxx;hm;inl"
- >
- <File
- RelativePath=".\Callback.h"
- >
- </File>
- <File
- RelativePath=".\Resource.h"
- >
- </File>
- <File
- RelativePath=".\Simple.h"
- >
- </File>
- <File
- RelativePath=".\StdAfx.h"
- >
- </File>
- </Filter>
- <Filter
- Name="Resource Files"
- Filter="ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
- >
- <File
- RelativePath=".\Callback.rgs"
- >
- </File>
- <File
- RelativePath=".\Simple.rgs"
- >
- </File>
- </Filter>
- </Files>
- <Globals>
- </Globals>
-</VisualStudioProject>
diff --git a/extensions/test/ole/unoTocomCalls/XCallback_Impl/resource.h b/extensions/test/ole/unoTocomCalls/XCallback_Impl/resource.h deleted file mode 100644 index d041b3790..000000000 --- a/extensions/test/ole/unoTocomCalls/XCallback_Impl/resource.h +++ /dev/null @@ -1,48 +0,0 @@ -/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ -/************************************************************************* - * - * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. - * - * Copyright 2000, 2010 Oracle and/or its affiliates. - * - * OpenOffice.org - a multi-platform office productivity suite - * - * This file is part of OpenOffice.org. - * - * OpenOffice.org is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License version 3 - * only, as published by the Free Software Foundation. - * - * OpenOffice.org is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Lesser General Public License version 3 for more details - * (a copy is included in the LICENSE file that accompanied this code). - * - * You should have received a copy of the GNU Lesser General Public License - * version 3 along with OpenOffice.org. If not, see - * <http://www.openoffice.org/license.html> - * for a copy of the LGPLv3 License. - * - ************************************************************************/ -//{{NO_DEPENDENCIES}} -// Microsoft Developer Studio generated include file. -// Used by XCallback_Impl.rc -// -#define IDS_PROJNAME 100 -#define IDR_CALLBACK 101 -#define IDR_SIMPLE 102 -#define IDR_SIMPLESTRUCT 103 - -// Next default values for new objects -// -#ifdef APSTUDIO_INVOKED -#ifndef APSTUDIO_READONLY_SYMBOLS -#define _APS_NEXT_RESOURCE_VALUE 201 -#define _APS_NEXT_COMMAND_VALUE 32768 -#define _APS_NEXT_CONTROL_VALUE 201 -#define _APS_NEXT_SYMED_VALUE 104 -#endif -#endif - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/extensions/test/ole/unoTocomCalls/readme.txt b/extensions/test/ole/unoTocomCalls/readme.txt deleted file mode 100644 index 40841cb0e..000000000 --- a/extensions/test/ole/unoTocomCalls/readme.txt +++ /dev/null @@ -1,9 +0,0 @@ -The directory XCallback_Impl contains a MSDEV project that
-creates a dll containing the ActiveX components
-XCallback_Impl.Simple and XCallback_Impl.Callback
-Callback implements functions defined in oletest.XCallback
-and Simple implements functions defined in oletest.XSimple.
-These interfaces are build in extensions/test/ole/cpnt
-
-The projects in unoToComCalls test the functionality of COM
-and JScript object which implement UNO interfaces.
|