MCPcopy Create free account
hub / github.com/LASzip/LASzip / laszip_message_func

Function laszip_message_func

src/laszip_dll.cpp:260–274  ·  view source on GitHub ↗

---------------------------------------------------------------------------*/

Source from the content-addressed store, hash-verified

258
259/*---------------------------------------------------------------------------*/
260static void
261laszip_message_func(
262 LAS_MESSAGE_TYPE type
263 , const char* msg
264 , void* user_data
265)
266{
267 if (user_data == 0) return;
268 laszip_dll_struct* laszip_dll = (laszip_dll_struct*)user_data;
269 if (laszip_dll->message_callback_data == 0) return;
270 if (laszip_dll->message_callback_data->callback == 0) return;
271
272 laszip_dll->message_callback_data->callback(
273 type, msg, laszip_dll->message_callback_data->user_data);
274}
275
276/*---------------------------------------------------------------------------*/
277LASZIP_API laszip_I32

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected