Skip to content

Commit

Permalink
Fix calling convention of load_in_memory_assembly_fn. (dotnet/core-se…
Browse files Browse the repository at this point in the history
  • Loading branch information
jkoritzinsky authored Nov 9, 2019
1 parent e7c981b commit f65a10e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/installer/corehost/cli/ijwhost/ijwhost.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ bool patch_vtable_entries(PEDecoder& decoder);
void release_bootstrap_thunks(PEDecoder& decoder);
bool are_thunks_installed_for_module(HMODULE instance);

using load_in_memory_assembly_fn = void(*)(pal::dll_t handle, const pal::char_t* path);
using load_in_memory_assembly_fn = void(STDMETHODCALLTYPE*)(pal::dll_t handle, const pal::char_t* path);

pal::hresult_t get_load_in_memory_assembly_delegate(pal::dll_t handle, load_in_memory_assembly_fn* delegate);

Expand Down

0 comments on commit f65a10e

Please sign in to comment.