Changeset 363 for trunk/newview_dll/newview.c
- Timestamp:
- Jun 23, 2009, 8:38:28 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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) {
Note:
See TracChangeset
for help on using the changeset viewer.