-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
126 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
class Test { | ||
static function main() { | ||
var id : hl.GUID = makeGUID(0xF1561985,0xF15008); | ||
var id2 : hl.GUID = makeGUID(0xF1561985,0xF15009); | ||
hl.Api.registerGUIDName(id, "SomeName"); | ||
Sys.println(Std.string(id)); | ||
Sys.println(Std.string(id2)); | ||
} | ||
|
||
static function makeGUID(high,low) : hl.GUID { | ||
return haxe.Int64.make(high,low); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
-D hl-ver=1.15.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--ci | ||
test.hl | ||
"b Test.hx:5" | ||
"b Test.hx:7" | ||
r | ||
"p id" | ||
"p id2" | ||
r | ||
"p id" | ||
"p id2" | ||
q |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
> b Test.hx:5 | ||
Breakpoint set line 5 | ||
> b Test.hx:7 | ||
Breakpoint set line 7 | ||
> r | ||
Thread paused Test.hx:5 ($Test::main) | ||
> p id | ||
z3K4-MI#w-J#6 : hl.GUID | ||
> p id2 | ||
z3K4-MI#w-J#7 : hl.GUID | ||
> r | ||
Thread paused Test.hx:7 ($Test::main) | ||
> p id | ||
SomeName (z3K4-MI#w-J#6) : hl.GUID | ||
> p id2 | ||
z3K4-MI#w-J#7 : hl.GUID | ||
> q |