Changeset 104 for trunk/JPGPROC/source
- Timestamp:
- Oct 2, 2023, 11:34:35 PM (23 months ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
-
Property svn:mergeinfo
set to
/branches/v2.9 merged eligible /branches/v2.9_Lars merged eligible
-
Property svn:mergeinfo
set to
-
trunk/JPGPROC/source/gbmsrc/gbm.def
r2 r104 1 1 LIBRARY GBM INITINSTANCE TERMINSTANCE 2 2 3 DATA MULTIPLE NONSHARED READWRITE 4 5 CODE PRELOAD EXECUTEREAD 3 DATA MULTIPLE NONSHARED 6 4 7 5 EXPORTS -
trunk/JPGPROC/source/gbmsrc/os2/gbm.def
r2 r104 1 1 LIBRARY GBM INITINSTANCE TERMINSTANCE 2 2 3 DATA MULTIPLE NONSHARED READWRITE 4 5 CODE PRELOAD EXECUTEREAD 3 DATA MULTIPLE NONSHARED 6 4 7 5 EXPORTS -
trunk/JPGPROC/source/jpegio.def
r2 r104 1 1 ;/* 2 ; * Copyright (c) Chris Wohlgemuth 2002 2 ; * Copyright (c) Chris Wohlgemuth 2002 3 3 ; * All rights reserved. 4 4 ; * … … 31 31 ; */ 32 32 LIBRARY JPEGIO INITINSTANCE TERMINSTANCE 33 DESCRIPTION '$@#(C) C. Wohlgemuth 2002:#@##1## 13.07.2002 15:17:00 My ;-) : :::0::@@ JPEG IO procedure V0.1.0' 33 DESCRIPTION '$@#(C) C. Wohlgemuth 2002:#@##1## 13.07.2002 15:17:00 My ;-) : :::0::@@ JPEG IO procedure V0.1.0' 34 34 DATA MULTIPLE NONSHARED 35 35 SEGMENTS 36 36 shardata CLASS 'DATA' SHARED 37 HEAPSIZE 038 BASE = 0x1B13000039 IMPORTS40 37 EXPORTS 41 IOProc_Entry @138 IOProc_Entry 42 39 -
trunk/JPGPROC/source/jpgfunc.c
r2 r104 1 1 /* 2 * Copyright (c) Chris Wohlgemuth 2002 2 * Copyright (c) Chris Wohlgemuth 2002 3 3 * All rights reserved. 4 4 * … … 35 35 /************************************************************************/ 36 36 37 #define INCL_32 * force 32 bit compile37 #define INCL_32 /* force 32 bit compile */ 38 38 #define INCL_GPIBITMAPS 39 39 #define INCL_DOSFILEMGR … … 42 42 #define INCL_WIN 43 43 #define INCL_GPI 44 #define INCL_PM /* force 32 bit compile */44 #define INCL_PM 45 45 46 46 /************************************************************************/ … … 62 62 * Caller assures that no two instances execute this code 63 63 * at the same time. 64 * 00) Change name to _DLL_InitTerm and use the linkage pragma.65 64 *************************************************************************************/ 66 65 /************************************************************************************* … … 71 70 HMODULE hModuleHandle; 72 71 73 #pragma linkage (_DLL_InitTerm, system) 74 //#pragma checkout (suspend) /* Prevent unreferenced parameter messages */ 75 ULONG _DLL_InitTerm (ULONG hModHandle, ULONG fTerm/*, BOOL FirstInstance*/) 72 73 ULONG APIENTRY _DLL_InitTerm(ULONG modhandle,ULONG flag); 74 int _CRT_init(void); 75 void _CRT_term(void); 76 77 ULONG APIENTRY _DLL_InitTerm (ULONG hModHandle, ULONG fTerm) 76 78 { 77 79 hModuleHandle = hModHandle; /* Remember for NLS lookup */ … … 80 82 return (0L); 81 83 } /* endif */ 84 else { 85 _CRT_term(); 86 } 82 87 83 88 return (1L); /* Success */ 84 89 } /* DLL_InitTerm */ 85 //#pragma checkout (resume)86 90 87 91
Note:
See TracChangeset
for help on using the changeset viewer.