Skip to content

Commit

Permalink
Update bindings
Browse files Browse the repository at this point in the history
  • Loading branch information
wtdcode committed Nov 1, 2022
1 parent bdd9f4f commit db9ddab
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 24 deletions.
6 changes: 2 additions & 4 deletions bindings/dotnet/UnicornManaged/Const/Common.fs
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,12 @@ module Common =
let UC_API_MAJOR = 2

let UC_API_MINOR = 0

let UC_API_PATCH = 0
let UC_API_PATCH = 1
let UC_API_EXTRA = 255
let UC_VERSION_MAJOR = 2

let UC_VERSION_MINOR = 0

let UC_VERSION_PATCH = 0
let UC_VERSION_PATCH = 1
let UC_VERSION_EXTRA = 255
let UC_SECOND_SCALE = 1000000
let UC_MILISECOND_SCALE = 1000
Expand Down
6 changes: 2 additions & 4 deletions bindings/go/unicorn/unicorn_const.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,12 @@ const (
API_MAJOR = 2

API_MINOR = 0

API_PATCH = 0
API_PATCH = 1
API_EXTRA = 255
VERSION_MAJOR = 2

VERSION_MINOR = 0

VERSION_PATCH = 0
VERSION_PATCH = 1
VERSION_EXTRA = 255
SECOND_SCALE = 1000000
MILISECOND_SCALE = 1000
Expand Down
6 changes: 2 additions & 4 deletions bindings/java/unicorn/UnicornConst.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,12 @@ public interface UnicornConst {
public static final int UC_API_MAJOR = 2;

public static final int UC_API_MINOR = 0;

public static final int UC_API_PATCH = 0;
public static final int UC_API_PATCH = 1;
public static final int UC_API_EXTRA = 255;
public static final int UC_VERSION_MAJOR = 2;

public static final int UC_VERSION_MINOR = 0;

public static final int UC_VERSION_PATCH = 0;
public static final int UC_VERSION_PATCH = 1;
public static final int UC_VERSION_EXTRA = 255;
public static final int UC_SECOND_SCALE = 1000000;
public static final int UC_MILISECOND_SCALE = 1000;
Expand Down
6 changes: 2 additions & 4 deletions bindings/pascal/unicorn/UnicornConst.pas
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,12 @@ interface
const UC_API_MAJOR = 2;

UC_API_MINOR = 0;

UC_API_PATCH = 0;
UC_API_PATCH = 1;
UC_API_EXTRA = 255;
UC_VERSION_MAJOR = 2;

UC_VERSION_MINOR = 0;

UC_VERSION_PATCH = 0;
UC_VERSION_PATCH = 1;
UC_VERSION_EXTRA = 255;
UC_SECOND_SCALE = 1000000;
UC_MILISECOND_SCALE = 1000;
Expand Down
6 changes: 2 additions & 4 deletions bindings/python/unicorn/unicorn_const.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,12 @@
UC_API_MAJOR = 2

UC_API_MINOR = 0

UC_API_PATCH = 0
UC_API_PATCH = 1
UC_API_EXTRA = 255
UC_VERSION_MAJOR = 2

UC_VERSION_MINOR = 0

UC_VERSION_PATCH = 0
UC_VERSION_PATCH = 1
UC_VERSION_EXTRA = 255
UC_SECOND_SCALE = 1000000
UC_MILISECOND_SCALE = 1000
Expand Down
6 changes: 2 additions & 4 deletions bindings/ruby/unicorn_gem/lib/unicorn_engine/unicorn_const.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,12 @@ module UnicornEngine
UC_API_MAJOR = 2

UC_API_MINOR = 0

UC_API_PATCH = 0
UC_API_PATCH = 1
UC_API_EXTRA = 255
UC_VERSION_MAJOR = 2

UC_VERSION_MINOR = 0

UC_VERSION_PATCH = 0
UC_VERSION_PATCH = 1
UC_VERSION_EXTRA = 255
UC_SECOND_SCALE = 1000000
UC_MILISECOND_SCALE = 1000
Expand Down

0 comments on commit db9ddab

Please sign in to comment.