Changeset 105757 in vbox
- Timestamp:
- Aug 21, 2024 11:42:13 AM (9 months ago)
- svn:sync-xref-src-repo-rev:
- 164469
- Location:
- trunk/include/iprt
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/script.h
r105755 r105757 1 1 /* $Id$ */ 2 2 /** @file 3 3 * IPRT - RTScript, Script language support in IPRT. … … 5 5 6 6 /* 7 * Copyright (C) 2017 Oracle Corporation 8 * 9 * This file is part of VirtualBox Open Source Edition (OSE), as 10 * available from http://www.virtualbox.org. This file is free software; 11 * you can redistribute it and/or modify it under the terms of the GNU 12 * General Public License (GPL) as published by the Free Software 13 * Foundation, in version 2 as it comes in the "COPYING" file of the 14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the 15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind. 7 * Copyright (C) 2024 Oracle and/or its affiliates. 8 * 9 * This file is part of VirtualBox base platform packages, as 10 * available from https://www.virtualbox.org. 11 * 12 * This program is free software; you can redistribute it and/or 13 * modify it under the terms of the GNU General Public License 14 * as published by the Free Software Foundation, in version 3 of the 15 * License. 16 * 17 * This program is distributed in the hope that it will be useful, but 18 * WITHOUT ANY WARRANTY; without even the implied warranty of 19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 20 * General Public License for more details. 21 * 22 * You should have received a copy of the GNU General Public License 23 * along with this program; if not, see <https://www.gnu.org/licenses>. 16 24 * 17 25 * The contents of this file may alternatively be used under the terms 18 26 * of the Common Development and Distribution License Version 1.0 19 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the20 * VirtualBox OSEdistribution, in which case the provisions of the27 * (CDDL), a copy of it is provided in the "COPYING.CDDL" file included 28 * in the VirtualBox distribution, in which case the provisions of the 21 29 * CDDL are applicable instead of those of the GPL. 22 30 * 23 31 * You may elect to license modified versions of this file under the 24 32 * terms and conditions of either the GPL or the CDDL or both. 25 */ 26 27 #ifndef ___iprt_script_h 28 #define ___iprt_script_h 33 * 34 * SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0 35 */ 36 37 #ifndef IPRT_INCLUDED_script_h 38 #define IPRT_INCLUDED_script_h 39 #ifndef RT_WITHOUT_PRAGMA_ONCE 40 # pragma once 41 #endif 29 42 30 43 #include <iprt/cdefs.h> … … 1097 1110 RT_C_DECLS_END 1098 1111 1099 #endif 1100 1112 #endif /* !IPRT_INCLUDED_script_h */ 1113 -
trunk/include/iprt/scriptbase.h
r105755 r105757 5 5 6 6 /* 7 * Copyright (C) 20 17 Oracle Corporation7 * Copyright (C) 2024 Oracle and/or its affiliates. 8 8 * 9 * This file is part of VirtualBox Open Source Edition (OSE), as 10 * available from http://www.virtualbox.org. This file is free software; 11 * you can redistribute it and/or modify it under the terms of the GNU 12 * General Public License (GPL) as published by the Free Software 13 * Foundation, in version 2 as it comes in the "COPYING" file of the 14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the 15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind. 9 * This file is part of VirtualBox base platform packages, as 10 * available from https://www.virtualbox.org. 11 * 12 * This program is free software; you can redistribute it and/or 13 * modify it under the terms of the GNU General Public License 14 * as published by the Free Software Foundation, in version 3 of the 15 * License. 16 * 17 * This program is distributed in the hope that it will be useful, but 18 * WITHOUT ANY WARRANTY; without even the implied warranty of 19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 20 * General Public License for more details. 21 * 22 * You should have received a copy of the GNU General Public License 23 * along with this program; if not, see <https://www.gnu.org/licenses>. 16 24 * 17 25 * The contents of this file may alternatively be used under the terms 18 26 * of the Common Development and Distribution License Version 1.0 19 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the20 * VirtualBox OSEdistribution, in which case the provisions of the27 * (CDDL), a copy of it is provided in the "COPYING.CDDL" file included 28 * in the VirtualBox distribution, in which case the provisions of the 21 29 * CDDL are applicable instead of those of the GPL. 22 30 * 23 31 * You may elect to license modified versions of this file under the 24 32 * terms and conditions of either the GPL or the CDDL or both. 33 * 34 * SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0 25 35 */ 26 36 27 #ifndef ___iprt_scriptbase_h 28 #define ___iprt_scriptbase_h 37 #ifndef IPRT_INCLUDED_scriptbase_h 38 #define IPRT_INCLUDED_scriptbase_h 39 #ifndef RT_WITHOUT_PRAGMA_ONCE 40 # pragma once 41 #endif 29 42 30 43 #include <iprt/types.h> … … 117 130 RT_C_DECLS_END 118 131 119 #endif 132 #endif /* !IPRT_INCLUDED_scriptbase_h */
Note:
See TracChangeset
for help on using the changeset viewer.