2022-10-22 18:41:00 +08:00
|
|
|
/*
|
|
|
|
* Author: 웃 Sebastian Andrzej Siewior
|
|
|
|
* Summary: Glue code for libmspack handling.
|
2023-01-14 18:28:39 +08:00
|
|
|
*
|
|
|
|
* Acknowledgements: ClamAV uses Stuart Caie's libmspack to parse as number of
|
2022-10-22 18:41:00 +08:00
|
|
|
* Microsoft file formats.
|
|
|
|
* ✉ sebastian @ breakpoint ̣cc
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __LIBMSPACK_H__
|
|
|
|
#define __LIBMSPACK_H__
|
|
|
|
|
|
|
|
int cli_scanmscab(cli_ctx *ctx, off_t sfx_offset);
|
|
|
|
int cli_scanmschm(cli_ctx *ctx);
|
|
|
|
|
|
|
|
#endif
|