Mercurial > hgrepos > Python2 > PyMuPDF
comparison mupdf-source/thirdparty/zint/backend/dllversion.c @ 2:b50eed0cc0ef upstream
ADD: MuPDF v1.26.7: the MuPDF source as downloaded by a default build of PyMuPDF 1.26.4.
The directory name has changed: no version number in the expanded directory now.
| author | Franz Glasner <fzglas.hg@dom66.de> |
|---|---|
| date | Mon, 15 Sep 2025 11:43:07 +0200 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| 1:1d09e1dec1d9 | 2:b50eed0cc0ef |
|---|---|
| 1 /* Sed: http://msdn.microsoft.com/library/en-us/shellcc/platform/shell/programmersguide/versions.asp */ | |
| 2 /* | |
| 3 libzint - the open source barcode library | |
| 4 Copyright (C) 2008-2022 Robin Stuart <rstuart114@gmail.com> | |
| 5 | |
| 6 Redistribution and use in source and binary forms, with or without | |
| 7 modification, are permitted provided that the following conditions | |
| 8 are met: | |
| 9 | |
| 10 1. Redistributions of source code must retain the above copyright | |
| 11 notice, this list of conditions and the following disclaimer. | |
| 12 2. Redistributions in binary form must reproduce the above copyright | |
| 13 notice, this list of conditions and the following disclaimer in the | |
| 14 documentation and/or other materials provided with the distribution. | |
| 15 3. Neither the name of the project nor the names of its contributors | |
| 16 may be used to endorse or promote products derived from this software | |
| 17 without specific prior written permission. | |
| 18 | |
| 19 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND | |
| 20 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | |
| 21 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | |
| 22 ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE | |
| 23 FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | |
| 24 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | |
| 25 OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | |
| 26 HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | |
| 27 LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | |
| 28 OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | |
| 29 SUCH DAMAGE. | |
| 30 */ | |
| 31 /* SPDX-License-Identifier: BSD-3-Clause */ | |
| 32 | |
| 33 #if defined (_WIN32) && (defined(_USRDLL) || defined(DLL_EXPORT) || defined(PIC)) | |
| 34 #include <windows.h> | |
| 35 #include <shlwapi.h> | |
| 36 #include "zintconfig.h" | |
| 37 | |
| 38 #ifdef __cplusplus | |
| 39 extern "C" | |
| 40 { | |
| 41 #endif | |
| 42 | |
| 43 __declspec(dllexport) HRESULT DllGetVersion(DLLVERSIONINFO2 *pdvi); | |
| 44 | |
| 45 #ifdef __cplusplus | |
| 46 } | |
| 47 #endif | |
| 48 | |
| 49 HRESULT DllGetVersion(DLLVERSIONINFO2 *pdvi) { | |
| 50 if (!pdvi || (sizeof(*pdvi) != pdvi->info1.cbSize)) | |
| 51 return (E_INVALIDARG); | |
| 52 | |
| 53 pdvi->info1.dwMajorVersion = ZINT_VERSION_MAJOR; | |
| 54 pdvi->info1.dwMinorVersion = ZINT_VERSION_MINOR; | |
| 55 pdvi->info1.dwBuildNumber = ZINT_VERSION_RELEASE; | |
| 56 pdvi->info1.dwPlatformID = DLLVER_PLATFORM_WINDOWS; | |
| 57 if (sizeof(DLLVERSIONINFO2) == pdvi->info1.cbSize) | |
| 58 pdvi->ullVersion = MAKEDLLVERULL(ZINT_VERSION_MAJOR, ZINT_VERSION_MINOR, ZINT_VERSION_RELEASE, | |
| 59 ZINT_VERSION_BUILD); | |
| 60 | |
| 61 return S_OK; | |
| 62 } | |
| 63 #else | |
| 64 /* https://stackoverflow.com/a/26541331 Suppresses gcc warning ISO C forbids an empty translation unit */ | |
| 65 typedef int make_iso_compilers_happy; | |
| 66 /* vim: set ts=4 sw=4 et : */ | |
| 67 #endif /* _WIN32 */ |
