diff options
Diffstat (limited to 'offapi/com/sun/star/setup')
-rw-r--r-- | offapi/com/sun/star/setup/InstallResponse.idl | 12 | ||||
-rw-r--r-- | offapi/com/sun/star/setup/OSType.idl | 3 | ||||
-rw-r--r-- | offapi/com/sun/star/setup/ResponseErrorCode.idl | 44 | ||||
-rw-r--r-- | offapi/com/sun/star/setup/makefile.mk | 74 |
4 files changed, 49 insertions, 84 deletions
diff --git a/offapi/com/sun/star/setup/InstallResponse.idl b/offapi/com/sun/star/setup/InstallResponse.idl index 0107f8508..45ce4c52b 100644 --- a/offapi/com/sun/star/setup/InstallResponse.idl +++ b/offapi/com/sun/star/setup/InstallResponse.idl @@ -27,18 +27,10 @@ #ifndef __com_sun_star_setup_InstallResponse_idl__ #define __com_sun_star_setup_InstallResponse_idl__ +#include <com/sun/star/setup/ResponseErrorCode.idl> + module com { module sun { module star { module setup { -/// @deprecated -published enum ResponseErrorCode -{ - // DocMerge: empty anyway - NOERROR, - - // DocMerge: empty anyway - NOT_ENOUGH_SPACE - }; - // DocMerge: empty anyway published struct InstallResponse { diff --git a/offapi/com/sun/star/setup/OSType.idl b/offapi/com/sun/star/setup/OSType.idl index 2b9de9351..1a3a22f17 100644 --- a/offapi/com/sun/star/setup/OSType.idl +++ b/offapi/com/sun/star/setup/OSType.idl @@ -43,6 +43,9 @@ published enum OSType WIN, // DocMerge: empty anyway + OS2, + + // DocMerge: empty anyway MAC, // DocMerge: empty anyway diff --git a/offapi/com/sun/star/setup/ResponseErrorCode.idl b/offapi/com/sun/star/setup/ResponseErrorCode.idl new file mode 100644 index 000000000..648e2257f --- /dev/null +++ b/offapi/com/sun/star/setup/ResponseErrorCode.idl @@ -0,0 +1,44 @@ +/************************************************************************* + * + * 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. + * + ************************************************************************/ +#ifndef __com_sun_star_setup_ResponseErrorCode_idl__ +#define __com_sun_star_setup_ResponseErrorCode_idl__ + +module com { module sun { module star { module setup { + +/// @deprecated +published enum ResponseErrorCode +{ + // DocMerge: empty anyway + NOERROR, + + // DocMerge: empty anyway + NOT_ENOUGH_SPACE +}; + +}; }; }; }; + +#endif diff --git a/offapi/com/sun/star/setup/makefile.mk b/offapi/com/sun/star/setup/makefile.mk deleted file mode 100644 index 5970e1cd8..000000000 --- a/offapi/com/sun/star/setup/makefile.mk +++ /dev/null @@ -1,74 +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. -# -#************************************************************************* - -PRJ=..$/..$/..$/.. - -PRJNAME=offapi -TARGET=csssetup -PACKAGE=com$/sun$/star$/setup - -# --- Settings ----------------------------------------------------- -.INCLUDE : $(PRJ)$/util$/makefile.pmk - -# ------------------------------------------------------------------ - -IDLFILES=\ - UpdateType.idl \ - ActionType.idl \ - BaseAction.idl \ - CopyFileAction.idl \ - DeleteDirAction.idl \ - DeleteFileAction.idl \ - DeleteFolderAction.idl \ - DeleteFolderItemAction.idl \ - DownloadAction.idl \ - FontAction.idl \ - InstallEnvironment.idl \ - InstallResponse.idl \ - InstallType.idl \ - MakeDirAction.idl \ - MakeFolderAction.idl \ - MakeFolderItemAction.idl \ - MakeShortcutAction.idl \ - MirrorEntry.idl \ - ModuleInfo.idl \ - ModuleState.idl \ - OSType.idl \ - ProductRegistration.idl \ - ProfileItemAction.idl \ - Setup.idl \ - SizeInfo.idl \ - UnzipAction.idl \ - VersionIdentifier.idl \ - WindowsRegistryAction.idl \ - XSetup.idl - -# ------------------------------------------------------------------ - -.INCLUDE : target.mk -.INCLUDE : $(PRJ)$/util$/target.pmk - |