Skip to content
This repository was archived by the owner on Aug 4, 2024. It is now read-only.

Commit 9f9b89e

Browse files
committed
add missing constants
1 parent c988a1b commit 9f9b89e

File tree

1 file changed

+16
-0
lines changed
  • native4j-capstone/src/main/java/org/native4j/capstone/insn

1 file changed

+16
-0
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
package org.native4j.capstone.insn;
2+
3+
/**
4+
* Generic Capstone constants.
5+
*/
6+
@SuppressWarnings("ALL")
7+
public class Constants {
8+
public static final int CS_GRP_INVALID = 0;
9+
public static final int CS_GRP_JUMP = 1;
10+
public static final int CS_GRP_CALL = 2;
11+
public static final int CS_GRP_RET = 3;
12+
public static final int CS_GRP_INT = 4;
13+
public static final int CS_GRP_IRET = 5;
14+
public static final int CS_GRP_PRIVILEGE = 6;
15+
public static final int CS_GRP_BRANCH_RELATIVE = 7;
16+
}

0 commit comments

Comments
 (0)