Changeset 84


Ignore:
Timestamp:
Aug 5, 2017, 10:38:08 PM (8 years ago)
Author:
Gregg Young
Message:

Update some external header files

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/h/exceptq.h

    r50 r84  
    22 *
    33 *  exceptq.h - exceptq public header - v7.12 with SHL modifications
     4 *  $Id: exceptq.h,v 1.5 2015/08/30 04:33:59 Steven Exp $
    45 *
    56 *  Parts of this file are
    6  *    Copyright (c) 2000-2013 Steven Levine and Associates, Inc.
     7 *    Copyright (c) 2000-2015 Steven Levine and Associates, Inc.
    78 *    Copyright (c) 2010-2011 Richard L Walsh
    89 *
     
    1314 * 2013-12-12 SHL Always include string.h (Dmitriy)
    1415 * 2013-12-12 SHL Declare utility class if INCL_EXCEPTQ_CLASS defined (Dmitriy)
     16 * 2015-08-29 SHL Support INCL_EXCEPTQ_INLINE
     17 * 2015-08-29 SHL Support VAC, OpenWatcom, gcc C and C++
    1518 *
    1619 *****************************************************************************/
     
    215218/*****************************************************************************/
    216219/*
    217  * LoadExceptq() is a sample function to load and install Exceptq dynamically
     220 * LoadExceptq() is a simple function to load and install Exceptq dynamically
    218221 * so your application can use it without being dependent on its presence.
    219222 * By design, it will fail if it finds a version of Exceptq earlier than v7.0.
    220  * To use it, #define INCL_LOADEXCEPTQ in *one* of your files to have it
    221  * included.  It assumes that you have #defined INCL_DOS and #included <os2.h>
    222  * and <string.h> *before* exceptq.h.
     223 * To use it, #define INCL_LOADEXCEPTQ in *only one* of your files to have it
     224 * defined or the linker will complain about multiple definitions.
    223225 *
    224226 * LibLoadExceptq() lets a third-party library add Exceptq support to threads
     
    240242 */
    241243#if defined(INCL_LOADEXCEPTQ) || defined(INCL_LIBLOADEXCEPTQ)
     244#ifdef __cplusplus                     /* 2015-08-29 SHL Dos APIs need this */
     245#define XQ_PSZ                         PCSZ
     246#else
     247#define XQ_PSZ                         PSZ
     248#endif
    242249# ifdef INCL_FORKEXCEPTQ
    243250#   ifndef __KLIBC_VERSION__
     
    246253#   include <dlfcn.h>
    247254#   define XQ_LOADDLL(name, hndl)      (hndl = dlopen(name, 0))
     255#   ifdef __cplusplus                  /* 2015-08-29 SHL Support C++ */
     256#   define XQ_GETPROC(hndl, sym, ptr)  (ptr = (typeof ptr)dlsym(hndl, sym))
     257#   else
    248258#   define XQ_GETPROC(hndl, sym, ptr)  (ptr = dlsym(hndl, sym))
     259#   endif
    249260#   define XQ_UNLOADDLL(hndl)          (dlclose(hndl))
    250261#   define XQ_HMOD                     void*
    251 # else
    252 #ifdef __cplusplus
    253 #   define XQ_LOADDLL(name, hndl)      (DosLoadModule(0, 0, (PCSZ)name, &hndl) == 0)
    254 #   define XQ_GETPROC(hndl, sym, ptr)  (DosQueryProcAddr(hndl, 0, (PCSZ)sym, (PFN*)&ptr) == 0)
    255 #else
    256 #   define XQ_LOADDLL(name, hndl)      (DosLoadModule(0, 0, (PSZ)name, &hndl) == 0)
    257 #   define XQ_GETPROC(hndl, sym, ptr)  (DosQueryProcAddr(hndl, 0, (PSZ)sym, (PFN*)&ptr) == 0)
    258 #endif
     262# else /* INCL_FORKEXCEPTQ */
     263#   define XQ_LOADDLL(name, hndl)      (DosLoadModule(0, 0, (XQ_PSZ)name, &hndl) == 0)
     264#   define XQ_GETPROC(hndl, sym, ptr)  (DosQueryProcAddr(hndl, 0, (XQ_PSZ)sym, (PFN*)&ptr) == 0)
    259265#   define XQ_UNLOADDLL(hndl)          (DosFreeModule(hndl) == 0)
    260266#   define XQ_HMOD                     HMODULE
    261267# endif
    262 #endif
     268#endif /* INCL_LOADEXCEPTQ or INCL_LIBLOADEXCEPTQ */
    263269
    264270/* 2012-09-30 SHL Always define so that callable from multiple source files */
    265271#ifndef INCL_LIBLOADEXCEPTQ
    266 BOOL    LoadExceptq(EXCEPTIONREGISTRATIONRECORD* pExRegRec,
    267                     const char* pOpts, const char* pInfo);
     272BOOL LoadExceptq(EXCEPTIONREGISTRATIONRECORD* pExRegRec,
     273                 const char* pOpts,
     274                 const char* pInfo);
    268275#endif
    269276
    270277#ifdef INCL_LOADEXCEPTQ
    271278
    272 BOOL    LoadExceptq(EXCEPTIONREGISTRATIONRECORD* pExRegRec,
    273                     const char* pOpts, const char* pInfo)
     279/* 2015-08-28 SHL declare inline if C++ or INCL_EXECPTQ_INLINE defined */
     280#if defined(__cplusplus) || defined(INCL_EXECPTQ_INLINE)
     281inline
     282#endif
     283BOOL LoadExceptq(EXCEPTIONREGISTRATIONRECORD* pExRegRec,
     284                 const char* pOpts,
     285                 const char* pInfo)
    274286{
    275287  static BOOL      fLoadTried = FALSE;
     
    329341#ifdef INCL_LIBLOADEXCEPTQ
    330342
    331 static BOOL   LibLoadExceptq(EXCEPTIONREGISTRATIONRECORD* pExRegRec);
    332 
    333 static BOOL   LibLoadExceptq(EXCEPTIONREGISTRATIONRECORD* pExRegRec)
     343BOOL LibLoadExceptq(EXCEPTIONREGISTRATIONRECORD* pExRegRec);
     344
     345/* 2015-08-28 SHL declare inline if C++ or INCL_EXECPTQ_INLINE defined */
     346#if defined(__cplusplus) || defined(INCL_EXECPTQ_INLINE)
     347inline
     348#endif
     349BOOL LibLoadExceptq(EXCEPTIONREGISTRATIONRECORD* pExRegRec)
    334350{
    335351  static BOOL      fLoadTried = FALSE;
     
    352368
    353369    strcpy(szPath, "EXCEPTQ");
    354     if (DosQueryModuleHandle(szPath, (HMODULE*)&hmod)) {
     370    /* 2015-08-29 SHL Support C++ */
     371    if (DosQueryModuleHandle((XQ_PSZ)szPath, (HMODULE*)&hmod)) {
    355372      PPIB      ppib;
    356373      PTIB      ptib;
     
    363380
    364381      strcpy(&ptr[1], "EXCEPTQ.DLL");
    365       if (DosQueryModuleHandle(szPath, (HMODULE*)&hmod))
     382      /* 2015-08-29 SHL Support C++ */
     383      if (DosQueryModuleHandle((XQ_PSZ)szPath, (HMODULE*)&hmod))
    366384        return FALSE;
    367385    }
  • TabularUnified trunk/widget/xwph/center.h

    r2 r84  
    2121
    2222/*
    23  *      Copyright (C) 2000-2002 Ulrich M”ller.
     23 *      Copyright (C) 2000-2003 Ulrich M”ller,
     24 *                              Martin Lafaix.
     25 *
    2426 *      This file is part of the XWorkplace source package.
    25  *      XWorkplace is free software; you can redistribute it and/or modify
    26  *      it under the terms of the GNU General Public License as published
    27  *      by the Free Software Foundation, in version 2 as it comes in the
    28  *      "COPYING" file of the XWorkplace main distribution.
    29  *      This program is distributed in the hope that it will be useful,
    30  *      but WITHOUT ANY WARRANTY; without even the implied warranty of
    31  *      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    32  *      GNU General Public License for more details.
     27 *      Even though XWorkplace is free software under the GNU General
     28 *      Public License version 2 (GPL), permission is granted, free
     29 *      of charge, to use this file for the purpose of creating software
     30 *      that integrates into XWorkplace or eComStation, even if that
     31 *      software is not published under the GPL.
     32 *
     33 *      This permission  extends to this single file only, but NOT to
     34 *      other files of the XWorkplace sources, not even those that
     35 *      are based on or include this file.
     36 *
     37 *      As a special exception to the GPL, using this file for the
     38 *      purpose of creating software that integrates into XWorkplace
     39 *      or eComStation is not considered creating a derivative work
     40 *      in the sense of the GPL. In plain English, you are not bound
     41 *      to the terms and conditions of the GPL if you use only this
     42 *      file for that purpose. You are bound by the GPL however if
     43 *      you incorporate code from GPL'ed XWorkplace source files where
     44 *      this notice is not present.
     45 *
     46 *      This file is distributed in the hope that it will be useful,
     47 *      but still WITHOUT ANY WARRANTY; without even the implied
     48 *      warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
     49 *      In no event shall the authors and/or copyright holders be
     50 *      liable for any damages or other claims arising from the use
     51 *      of this software.
    3352 */
    3453
Note: See TracChangeset for help on using the changeset viewer.