mirror of
https://gitlab.winehq.org/wine/wine.git
synced 2025-08-30 03:03:59 +02:00
12 lines
281 B
C
12 lines
281 B
C
/* Capstone Disassembly Engine */
|
|
/* By Travis Finkenauer <tmfinken@gmail.com>, 2018 */
|
|
|
|
#ifndef CS_ARM_MODULE_H
|
|
#define CS_ARM_MODULE_H
|
|
|
|
#include "../../utils.h"
|
|
|
|
cs_err ARM_global_init(cs_struct *ud);
|
|
cs_err ARM_option(cs_struct *handle, cs_opt_type type, size_t value);
|
|
|
|
#endif
|