2009-06-02 20:23:38 +00:00
/* Sed: http://msdn.microsoft.com/library/en-us/shellcc/platform/shell/programmersguide/versions.asp */
2021-10-20 23:05:30 +01:00
/*
libzint - the open source barcode library
2022-09-13 21:16:31 +01:00
Copyright ( C ) 2008 - 2022 Robin Stuart < rstuart114 @ gmail . com >
2021-10-20 23:05:30 +01:00
Redistribution and use in source and binary forms , with or without
modification , are permitted provided that the following conditions
are met :
1. Redistributions of source code must retain the above copyright
notice , this list of conditions and the following disclaimer .
2. Redistributions in binary form must reproduce the above copyright
notice , this list of conditions and the following disclaimer in the
documentation and / or other materials provided with the distribution .
3. Neither the name of the project nor the names of its contributors
may be used to endorse or promote products derived from this software
without specific prior written permission .
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS " AS IS " AND
ANY EXPRESS OR IMPLIED WARRANTIES , INCLUDING , BUT NOT LIMITED TO , THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED . IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT , INDIRECT , INCIDENTAL , SPECIAL , EXEMPLARY , OR CONSEQUENTIAL
DAMAGES ( INCLUDING , BUT NOT LIMITED TO , PROCUREMENT OF SUBSTITUTE GOODS
OR SERVICES ; LOSS OF USE , DATA , OR PROFITS ; OR BUSINESS INTERRUPTION )
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY , WHETHER IN CONTRACT , STRICT
LIABILITY , OR TORT ( INCLUDING NEGLIGENCE OR OTHERWISE ) ARISING IN ANY WAY
OUT OF THE USE OF THIS SOFTWARE , EVEN IF ADVISED OF THE POSSIBILITY OF
SUCH DAMAGE .
*/
2022-09-13 21:16:31 +01:00
/* SPDX-License-Identifier: BSD-3-Clause */
2009-06-02 20:23:38 +00:00
# if defined (_WIN32) && (defined(_USRDLL) || defined(DLL_EXPORT) || defined(PIC))
# include <windows.h>
# include <shlwapi.h>
2020-11-24 22:22:12 +00:00
# include "zintconfig.h"
2009-06-02 20:23:38 +00:00
# ifdef __cplusplus
extern " C "
{
# endif
2022-09-13 21:16:31 +01:00
__declspec ( dllexport ) HRESULT DllGetVersion ( DLLVERSIONINFO2 * pdvi ) ;
2009-06-02 20:23:38 +00:00
# ifdef __cplusplus
}
# endif
2022-09-13 21:16:31 +01:00
HRESULT DllGetVersion ( DLLVERSIONINFO2 * pdvi ) {
2021-10-20 23:05:30 +01:00
if ( ! pdvi | | ( sizeof ( * pdvi ) ! = pdvi - > info1 . cbSize ) )
return ( E_INVALIDARG ) ;
2012-12-29 19:37:03 +01:00
2021-10-20 23:05:30 +01:00
pdvi - > info1 . dwMajorVersion = ZINT_VERSION_MAJOR ;
pdvi - > info1 . dwMinorVersion = ZINT_VERSION_MINOR ;
pdvi - > info1 . dwBuildNumber = ZINT_VERSION_RELEASE ;
pdvi - > info1 . dwPlatformID = DLLVER_PLATFORM_WINDOWS ;
if ( sizeof ( DLLVERSIONINFO2 ) = = pdvi - > info1 . cbSize )
pdvi - > ullVersion = MAKEDLLVERULL ( ZINT_VERSION_MAJOR , ZINT_VERSION_MINOR , ZINT_VERSION_RELEASE ,
ZINT_VERSION_BUILD ) ;
2012-12-29 19:37:03 +01:00
2021-10-20 23:05:30 +01:00
return S_OK ;
2009-06-02 20:23:38 +00:00
}
2021-09-12 23:37:44 +01:00
# else
Add Structured Append support for AZTEC, CODEONE, DATAMATRIX, DOTCODE,
GRIDMATRIX, MAXICODE, MICROPDF417, PDF417, QRCODE, ULTRA
DOTCODE: use pre-calculated generator poly coeffs in Reed-Solomon for
performance improvement
PDF417/MICROPDF417: use common routine pdf417_initial()
GUI: code lines <= 118, shorthand widget_obj(),
shorten calling upcean_addon_gap(), upcean_guard_descent()
various backend: var name debug -> debug_print
2021-09-28 21:42:44 +01:00
/* https://stackoverflow.com/a/26541331 Suppresses gcc warning ISO C forbids an empty translation unit */
2021-09-12 23:37:44 +01:00
typedef int make_iso_compilers_happy ;
2022-09-13 21:16:31 +01:00
/* vim: set ts=4 sw=4 et : */
2009-06-02 20:23:38 +00:00
# endif /* _WIN32 */