| 150 | std::vector<void *> buffers; |
| 151 | |
| 152 | void zero() |
| 153 | { |
| 154 | memset(&header, 0, sizeof(demzip_header_struct)); |
| 155 | p_count = 0; |
| 156 | npoints = 0; |
| 157 | memset(&point, 0, sizeof(demzip_point_struct)); |
| 158 | point_items = NULL; |
| 159 | file = NULL; |
| 160 | streamin = NULL; |
| 161 | reader = NULL; |
| 162 | streamout = NULL; |
| 163 | writer = NULL; |
| 164 | attributer = NULL; |
| 165 | memset(error, 0, 1024); |
| 166 | memset(warning, 0, 1024); |
| 167 | lax_index = NULL; |
| 168 | lax_r_min_x = 0.0; |
| 169 | lax_r_min_y = 0.0; |
| 170 | lax_r_max_x = 0.0; |
| 171 | lax_r_max_y = 0.0; |
| 172 | lax_file_name = NULL; |
| 173 | lax_create = FALSE; |
| 174 | lax_append = FALSE; |
| 175 | lax_exploit = FALSE; |
| 176 | las14_decompress_selective = 0; |
| 177 | preserve_generating_software = FALSE; |
| 178 | request_native_extension = FALSE; |
| 179 | request_compatibility_mode = FALSE; |
| 180 | compatibility_mode = FALSE; |
| 181 | set_chunk_size = 0; |
| 182 | start_scan_angle = 0; |
| 183 | start_extended_returns = 0; |
| 184 | start_classification = 0; |
| 185 | start_flags_and_channel = 0; |
| 186 | start_NIR_band = 0; |
| 187 | inventory = NULL; |
| 188 | }; |
| 189 | } demzip_dll_struct; |
| 190 | |
| 191 | /*---------------------------------------------------------------------------*/ |
no outgoing calls
no test coverage detected