Changeset 363
- Timestamp:
- Jun 23, 2009, 8:38:28 PM (16 years ago)
- Location:
- trunk/newview_dll
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/newview_dll/makefile
r362 r363 19 19 @newview.def & 20 20 file newview.obj 21 copy newview.dll ..\build\newview\newview.dll 21 22 22 23 # Compile step: .c -> .obj -
trunk/newview_dll/newview.c
r362 r363 5 5 #include <stdio.h> 6 6 #include <stdlib.h> 7 8 9 #define _PMPRINTF_ 10 #include <PMPRINTF.H> 11 12 13 #define VERSION "0.9.1" 14 15 7 16 8 17 /******************************************************************** … … 61 70 * 62 71 */ 63 char *decode_string(unsigned char *buffer, unsigned int code, BOOL* error) 64 { 72 char *decode_string(unsigned char *buffer, unsigned int code, BOOL* error) { 65 73 int i = 0; 66 74 *error = FALSE; … … 84 92 * stream. 85 93 */ 86 unsigned input_code(PBYTE *ppbInput, unsigned bytes_to_read) 87 { 94 unsigned input_code(PBYTE *ppbInput, unsigned bytes_to_read) { 88 95 unsigned int return_value; 89 96 static unsigned long bytes_out = 0; … … 137 144 *pBytesOut = 0; 138 145 146 _Pmpf(("LZWDecompressBlock")); 147 139 148 while ((new_code = input_code(&pbInput, number_bytes)) != TERMINATOR) { 140 149 if (clear_flag) { -
trunk/newview_dll/newview.def
r362 r363 1 1 library clib3r.lib 2 2 3 system os2v2 dll initinstance terminstance 4 option ManyAutoData5 option map6 option stack=1M3 system os2v2 dll initinstance terminstance 4 option ManyAutoData 5 option map 6 option stack=1M 7 7 8 export LZWDECOMPRESSBLOCK .1 = LZWDecompressBlock 8 LIBRARY P:\newview_dev\tools\pmprintf\PMPRINTF.LIB 9 10 export LZWDECOMPRESSBLOCK .1 = LZWDecompressBlock
Note:
See TracChangeset
for help on using the changeset viewer.