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:
parent
59719477cf
commit
ec06321141
5 changed files with 21 additions and 9 deletions
|
@ -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**,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue