Skip to content

Commit

Permalink
Merge pull request #41 from unknownv2/develop
Browse files Browse the repository at this point in the history
Change the DLL export name UnloadRunTime to UnloadRuntime
  • Loading branch information
unknownv2 authored Nov 18, 2018
2 parents 509f6cc + 0edd7cc commit 4f2b21a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/corerundll.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -949,7 +949,7 @@ ExecuteAssemblyFunction (
// Shutdown the .NET Core runtime
DllApi
HRESULT
UnloadRunTime(
UnloadRuntime(
VOID
)
{
Expand Down
2 changes: 1 addition & 1 deletion src/corerundll.h
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,6 @@ StartCoreCLR(
// Stop the .NET Core host in the current application
DllApi
HRESULT
UnloadRunTime(
UnloadRuntime(
VOID
);
2 changes: 1 addition & 1 deletion tests/assembly-test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -106,5 +106,5 @@ TEST(TestCoreCLRHost, TestDotNetAssemblyExecution) {
EXPECT_EQ(NOERROR, ExecuteAssemblyFunction(&assemblyFunctionCall));

// Unload the AppDomain and stop the host
EXPECT_EQ(NOERROR, UnloadRunTime());
EXPECT_EQ(NOERROR, UnloadRuntime());
}

0 comments on commit 4f2b21a

Please sign in to comment.