mirror of
https://github.com/Cisco-Talos/clamav.git
synced 2026-05-01 12:16:20 -04:00
* Added loglevel parameter to logg() * Fix logg and mprintf internals with new loglevels * Update all logg calls to set loglevel * Update all mprintf calls to set loglevel * Fix hidden logg calls * Executed clam-format
17 lines
398 B
C
17 lines
398 B
C
/*
|
|
* Author: 웃 Sebastian Andrzej Siewior
|
|
* Summary: Glue code for libmspack handling.
|
|
*
|
|
* Acknowledgements: ClamAV uses Stuart Caie's libmspack to parse as number of
|
|
* 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
|