Added Doxyfile

This commit is contained in:
Joel Höner 2017-07-25 01:04:25 +02:00
parent 7033929e63
commit 65091811d2
11 changed files with 2517 additions and 0 deletions

2
.gitignore vendored
View File

@ -82,3 +82,5 @@ CTestTestfile.cmake
build*
.vs
doc/html

2470
doc/Doxyfile Normal file

File diff suppressed because it is too large Load Diff

View File

@ -24,6 +24,11 @@
***************************************************************************************************/
/**
* @file
* @brief Functions for decoding instructions.
*/
#ifndef ZYDIS_DECODER_H
#define ZYDIS_DECODER_H

View File

@ -24,6 +24,11 @@
***************************************************************************************************/
/**
* @file
* @brief General helper and platform detection macros.
*/
#ifndef ZYDIS_DEFINES_H
#define ZYDIS_DEFINES_H

View File

@ -24,6 +24,11 @@
***************************************************************************************************/
/**
* @file
* @brief Functions for (re-)encoding instructions.
*/
#ifndef ZYDIS_ENCODER_H
#define ZYDIS_ENCODER_H

View File

@ -24,6 +24,11 @@
***************************************************************************************************/
/**
* @file
* @brief Functions for formatting human-readable instructions.
*/
#ifndef ZYDIS_FORMATTER_H
#define ZYDIS_FORMATTER_H

View File

@ -24,6 +24,11 @@
***************************************************************************************************/
/**
* @file
* @brief Mnemonic constant definitions and helper functions.
*/
#ifndef ZYDIS_MNEMONIC_H
#define ZYDIS_MNEMONIC_H

View File

@ -24,6 +24,11 @@
***************************************************************************************************/
/**
* @file
* @brief Utility functions and constants for registers.
*/
#ifndef ZYDIS_REGISTER_H
#define ZYDIS_REGISTER_H

View File

@ -24,6 +24,11 @@
***************************************************************************************************/
/**
* @file
* @brief Status code definitions and check macros.
*/
#ifndef ZYDIS_STATUS_H
#define ZYDIS_STATUS_H

View File

@ -24,6 +24,11 @@
***************************************************************************************************/
/**
* @file
* @brief Other utility functions.
*/
#ifndef ZYDIS_UTILS_H
#define ZYDIS_UTILS_H

View File

@ -24,6 +24,11 @@
***************************************************************************************************/
/**
* @file
* @brief Master include file, including everything else.
*/
#ifndef ZYDIS_H
#define ZYDIS_H