| OLD | NEW |
| 1 #if !defined(_FX_JPEG_TURBO_) | |
| 2 /* | 1 /* |
| 3 * jmemnobs.c | 2 * jmemnobs.c |
| 4 * | 3 * |
| 5 * Copyright (C) 1992-1996, Thomas G. Lane. | 4 * Copyright (C) 1992-1996, Thomas G. Lane. |
| 6 * This file is part of the Independent JPEG Group's software. | 5 * This file is part of the Independent JPEG Group's software. |
| 7 * For conditions of distribution and use, see the accompanying README file. | 6 * For conditions of distribution and use, see the accompanying README file. |
| 8 * | 7 * |
| 9 * This file provides a really simple implementation of the system- | 8 * This file provides a really simple implementation of the system- |
| 10 * dependent portion of the JPEG memory manager. This implementation | 9 * dependent portion of the JPEG memory manager. This implementation |
| 11 * assumes that no backing-store files are needed: all required space | 10 * assumes that no backing-store files are needed: all required space |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 jpeg_mem_init (j_common_ptr cinfo) | 114 jpeg_mem_init (j_common_ptr cinfo) |
| 116 { | 115 { |
| 117 return 0; /* just set max_memory_to_use to 0 */ | 116 return 0; /* just set max_memory_to_use to 0 */ |
| 118 } | 117 } |
| 119 | 118 |
| 120 GLOBAL(void) | 119 GLOBAL(void) |
| 121 jpeg_mem_term (j_common_ptr cinfo) | 120 jpeg_mem_term (j_common_ptr cinfo) |
| 122 { | 121 { |
| 123 /* no work */ | 122 /* no work */ |
| 124 } | 123 } |
| 125 | |
| 126 #endif //_FX_JPEG_TURBO_ | |
| OLD | NEW |