Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
16bfd3a
First version of QCalls implementation, using QCalls on ICU Globaliza…
thaystg Jun 9, 2020
56b4b44
Fixing windows compilation.
thaystg Jun 9, 2020
8455282
Fixing warnings at compilation time.
thaystg Jun 9, 2020
a6b1f48
Fixing iOS compilation.
thaystg Jun 10, 2020
f79c2f1
Fixing iOS compilation.
thaystg Jun 10, 2020
07e609a
Removing implementation of EventPipe using QCalls.
thaystg Jun 12, 2020
26b85db
Fixing usused extern array.
thaystg Jun 12, 2020
d492c57
Adding QCALL to log
thaystg Jun 12, 2020
1b4662b
Fixing getNativeHandle and organising files.
thaystg Jun 15, 2020
b749e18
Fixing compilation error.
thaystg Jun 15, 2020
10101f8
Adding comments, fixing code style.
thaystg Jun 15, 2020
569de74
Fixing Zoltan suggestion.
thaystg Jun 15, 2020
c942e24
Accepting @coffeeflux suggestion.
thaystg Jun 15, 2020
12dca6e
Update src/mono/mono/metadata/native-library.h
thaystg Jun 17, 2020
78e8edb
Update src/mono/mono/metadata/native-library.h
thaystg Jun 17, 2020
e1f488b
Update src/mono/mono/metadata/native-library.h
thaystg Jun 17, 2020
e1e0ed4
Update src/mono/mono/metadata/native-library.h
thaystg Jun 17, 2020
ff6be74
Update src/mono/mono/metadata/native-library.h
thaystg Jun 17, 2020
13dc0d4
Update src/mono/mono/metadata/native-library-qcall.c
thaystg Jun 17, 2020
a203a97
Update src/mono/mono/metadata/native-library-qcall.c
thaystg Jun 17, 2020
9d1992e
Update src/mono/mono/metadata/native-library-qcall.c
thaystg Jun 17, 2020
96cf8b0
Update src/mono/mono/metadata/native-library-qcall.c
thaystg Jun 17, 2020
bdae239
Update src/mono/mono/metadata/native-library-qcall.c
thaystg Jun 17, 2020
5da75d8
Update src/mono/mono/metadata/native-library-qcall.c
thaystg Jun 17, 2020
040048f
Update src/mono/mono/metadata/native-library-qcall.c
thaystg Jun 17, 2020
20c2177
Update src/mono/mono/metadata/native-library-qcall.c
thaystg Jun 17, 2020
8be4f78
Update src/mono/mono/metadata/native-library-qcall.c
thaystg Jun 17, 2020
cc5c49e
Update src/mono/mono/metadata/native-library-qcall.c
thaystg Jun 17, 2020
41d21ab
Update src/mono/mono/metadata/native-library-qcall.c
thaystg Jun 17, 2020
faeb893
Fix mono compilation.
thaystg Jun 18, 2020
70ff810
Fix mono compilation.
thaystg Jun 19, 2020
a50b92c
Fix mono compilation.
thaystg Jun 19, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update src/mono/mono/metadata/native-library.h
Co-authored-by: Ryan Lucia <[email protected]>
  • Loading branch information
thaystg and CoffeeFlux authored Jun 17, 2020
commit e1e0ed4e758ca8cc46e66ff7fbcfbca7a67c19aa
2 changes: 1 addition & 1 deletion src/mono/mono/metadata/native-library.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ mono_lookup_pinvoke_qcall_internal (MonoMethod *method, MonoLookupPInvokeStatus
typedef struct MonoQCallDef
{
const char* class_name;
const char* namespace_name;
const char *namespace_name;
const void **functions;
} MonoQCallDef;

Expand Down