Changeset 84
- Timestamp:
- Aug 5, 2017, 10:38:08 PM (8 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/h/exceptq.h ¶
r50 r84 2 2 * 3 3 * 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 $ 4 5 * 5 6 * Parts of this file are 6 * Copyright (c) 2000-201 3Steven Levine and Associates, Inc.7 * Copyright (c) 2000-2015 Steven Levine and Associates, Inc. 7 8 * Copyright (c) 2010-2011 Richard L Walsh 8 9 * … … 13 14 * 2013-12-12 SHL Always include string.h (Dmitriy) 14 15 * 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++ 15 18 * 16 19 *****************************************************************************/ … … 215 218 /*****************************************************************************/ 216 219 /* 217 * LoadExceptq() is a s ample function to load and install Exceptq dynamically220 * LoadExceptq() is a simple function to load and install Exceptq dynamically 218 221 * so your application can use it without being dependent on its presence. 219 222 * 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. 223 225 * 224 226 * LibLoadExceptq() lets a third-party library add Exceptq support to threads … … 240 242 */ 241 243 #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 242 249 # ifdef INCL_FORKEXCEPTQ 243 250 # ifndef __KLIBC_VERSION__ … … 246 253 # include <dlfcn.h> 247 254 # 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 248 258 # define XQ_GETPROC(hndl, sym, ptr) (ptr = dlsym(hndl, sym)) 259 # endif 249 260 # define XQ_UNLOADDLL(hndl) (dlclose(hndl)) 250 261 # 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) 259 265 # define XQ_UNLOADDLL(hndl) (DosFreeModule(hndl) == 0) 260 266 # define XQ_HMOD HMODULE 261 267 # endif 262 #endif 268 #endif /* INCL_LOADEXCEPTQ or INCL_LIBLOADEXCEPTQ */ 263 269 264 270 /* 2012-09-30 SHL Always define so that callable from multiple source files */ 265 271 #ifndef INCL_LIBLOADEXCEPTQ 266 BOOL LoadExceptq(EXCEPTIONREGISTRATIONRECORD* pExRegRec, 267 const char* pOpts, const char* pInfo); 272 BOOL LoadExceptq(EXCEPTIONREGISTRATIONRECORD* pExRegRec, 273 const char* pOpts, 274 const char* pInfo); 268 275 #endif 269 276 270 277 #ifdef INCL_LOADEXCEPTQ 271 278 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) 281 inline 282 #endif 283 BOOL LoadExceptq(EXCEPTIONREGISTRATIONRECORD* pExRegRec, 284 const char* pOpts, 285 const char* pInfo) 274 286 { 275 287 static BOOL fLoadTried = FALSE; … … 329 341 #ifdef INCL_LIBLOADEXCEPTQ 330 342 331 static BOOL LibLoadExceptq(EXCEPTIONREGISTRATIONRECORD* pExRegRec); 332 333 static BOOL LibLoadExceptq(EXCEPTIONREGISTRATIONRECORD* pExRegRec) 343 BOOL 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) 347 inline 348 #endif 349 BOOL LibLoadExceptq(EXCEPTIONREGISTRATIONRECORD* pExRegRec) 334 350 { 335 351 static BOOL fLoadTried = FALSE; … … 352 368 353 369 strcpy(szPath, "EXCEPTQ"); 354 if (DosQueryModuleHandle(szPath, (HMODULE*)&hmod)) { 370 /* 2015-08-29 SHL Support C++ */ 371 if (DosQueryModuleHandle((XQ_PSZ)szPath, (HMODULE*)&hmod)) { 355 372 PPIB ppib; 356 373 PTIB ptib; … … 363 380 364 381 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)) 366 384 return FALSE; 367 385 } -
TabularUnified trunk/widget/xwph/center.h ¶
r2 r84 21 21 22 22 /* 23 * Copyright (C) 2000-2002 Ulrich Mller. 23 * Copyright (C) 2000-2003 Ulrich Mller, 24 * Martin Lafaix. 25 * 24 26 * 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. 33 52 */ 34 53
Note:
See TracChangeset
for help on using the changeset viewer.