update to ida 7.6, add builds

This commit is contained in:
2021-10-31 21:20:46 +02:00
parent e0e0f2be99
commit b1809fe2d9
1408 changed files with 279193 additions and 302468 deletions

View File

@@ -0,0 +1,35 @@
/*
* Interactive disassembler (IDA)
* Copyright (c) 1990-98 by Ilfak Guilfanov.
* E-mail: ig@datarescue.com
* JVM module.
* Copyright (c) 1995-2006 by Iouri Kharon.
* E-mail: yjh@styx.cabel.net
*
* ALL RIGHTS RESERVED.
*
*/
#ifndef _UPGRADE_HPP_
#define _UPGRADE_HPP_
//----------------------------------------------------------------------
#define IDP_JDK12 19
#define IDP_JDK15 151
#define IDP_JDK16 161
//----------------------------------------------------------------------
#define UPG12_BADMASK 0x80000000
#define UPG12_EXTMASK 0x70000000
#define UPG12_CLRMASK 0xF03F0000
#define UPG12_EXTSET 0x80000000
//----------------------------------------------------------------------
#define CHP_MIN ' '
#define CHP_MAX 0x7F
#define BLOB_TAG 'j'
uchar set_exception_xref(SegInfo *ps, Exception const & exc, ea_t ea);
char *convert_clsname(char *buf);
//----------------------------------------------------------------------
#endif