1
0
Fork 0
mirror of https://github.com/VSadov/Satori.git synced 2025-06-09 09:34:49 +09:00

Fix x86 clrgc loading (#81176)

Co-authored-by: Jan Kotas <jkotas@microsoft.com>
This commit is contained in:
Andrew Au 2023-01-27 15:43:56 -08:00 committed by GitHub
parent 59719477cf
commit ec06321141
Signed by: github
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 21 additions and 9 deletions

View file

@ -110,7 +110,7 @@ struct VersionInfo {
const char* Name;
};
extern "C" void GC_VersionInfo(
extern "C" void LOCALGC_CALLCONV GC_VersionInfo(
/* Out */ VersionInfo*
);
```
@ -142,7 +142,7 @@ Once the EE has verified that the version of the candidate GC is valid, it then
GC. It does so by loading (via `GetProcAddress`) and executing a function with this signature:
```c++
extern "C" HRESULT GC_Initialize(
extern "C" HRESULT LOCALGC_CALLCONV GC_Initialize(
/* In */ IGCToCLR*,
/* Out */ IGCHeap**.
/* Out */ IGCHandleManager**,