Skip to content

Commit

Permalink
fixes and improvements, debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
MTJailed committed Aug 26, 2018
1 parent ce11eaf commit b64167b
Show file tree
Hide file tree
Showing 36 changed files with 15,212 additions and 45 deletions.
880 changes: 880 additions & 0 deletions PrivateHeaders/Capstone/arm.h

Large diffs are not rendered by default.

1,151 changes: 1,151 additions & 0 deletions PrivateHeaders/Capstone/arm64.h

Large diffs are not rendered by default.

663 changes: 663 additions & 0 deletions PrivateHeaders/Capstone/capstone.h

Large diffs are not rendered by default.

Binary file added PrivateHeaders/Capstone/libcapstone.3.dylib
Binary file not shown.
Binary file added PrivateHeaders/Capstone/libcapstone.a
Binary file not shown.
903 changes: 903 additions & 0 deletions PrivateHeaders/Capstone/mips.h

Large diffs are not rendered by default.

28 changes: 28 additions & 0 deletions PrivateHeaders/Capstone/platform.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
/* Capstone Disassembly Engine */
/* By Axel Souchet & Nguyen Anh Quynh, 2014 */

// handle C99 issue (for pre-2013 VisualStudio)
#ifndef CAPSTONE_PLATFORM_H
#define CAPSTONE_PLATFORM_H

#if !defined(__CYGWIN__) && !defined(__MINGW32__) && !defined(__MINGW64__) && (defined (WIN32) || defined (WIN64) || defined (_WIN32) || defined (_WIN64))
// MSVC

// stdbool.h
#if (_MSC_VER < 1800)
#ifndef __cplusplus
typedef unsigned char bool;
#define false 0
#define true 1
#endif

#else
// VisualStudio 2013+ -> C99 is supported
#include <stdbool.h>
#endif

#else // not MSVC -> C99 is supported
#include <stdbool.h>
#endif

#endif
Loading

0 comments on commit b64167b

Please sign in to comment.