summaryrefslogtreecommitdiff
path: root/src/dlls
diff options
context:
space:
mode:
authorJarret Shook <jashoo@microsoft.com>2019-03-02 10:51:40 -0800
committerGitHub <noreply@github.com>2019-03-02 10:51:40 -0800
commit831cb13f1432aac09e66a8543831d3ed55b4bddf (patch)
tree9adca94b90c84c1e014f94f3e84d96db78753a2e /src/dlls
parentff53a99fb9e4c6e479a60c09a7014bfb72af4936 (diff)
downloadcoreclr-831cb13f1432aac09e66a8543831d3ed55b4bddf.tar.gz
coreclr-831cb13f1432aac09e66a8543831d3ed55b4bddf.tar.bz2
coreclr-831cb13f1432aac09e66a8543831d3ed55b4bddf.zip
Revert "Improve coreclrhost.h header" (#22955)
Diffstat (limited to 'src/dlls')
-rw-r--r--src/dlls/mscoree/unixinterface.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/dlls/mscoree/unixinterface.cpp b/src/dlls/mscoree/unixinterface.cpp
index 67bd444ba8..0f52afa89d 100644
--- a/src/dlls/mscoree/unixinterface.cpp
+++ b/src/dlls/mscoree/unixinterface.cpp
@@ -149,7 +149,7 @@ extern "C" int coreclr_create_delegate(void*, unsigned int, const char*, const c
// Initialize the CoreCLR. Creates and starts CoreCLR host and creates an app domain
//
// Parameters:
-// exePath - Absolute path of the executable that invoked the ExecuteAssembly (the native host application)
+// exePath - Absolute path of the executable that invoked the ExecuteAssembly
// appDomainFriendlyName - Friendly name of the app domain that will be created to execute the assembly
// propertyCount - Number of properties (elements of the following two arguments)
// propertyKeys - Keys of properties of the app domain
@@ -275,7 +275,7 @@ int coreclr_initialize(
//
// Parameters:
// hostHandle - Handle of the host
-// domainId - Id of the domain
+// domainId - Id of the domain
//
// Returns:
// HRESULT indicating status of the operation. S_OK if the assembly was successfully executed
@@ -333,7 +333,7 @@ int coreclr_shutdown_2(
}
//
-// Create a native callable function pointer for a managed method.
+// Create a native callable delegate for a managed method.
//
// Parameters:
// hostHandle - Handle of the host
@@ -341,7 +341,7 @@ int coreclr_shutdown_2(
// entryPointAssemblyName - Name of the assembly which holds the custom entry point
// entryPointTypeName - Name of the type which holds the custom entry point
// entryPointMethodName - Name of the method which is the custom entry point
-// delegate - Output parameter, the function stores a native callable function pointer to the delegate at the specified address
+// delegate - Output parameter, the function stores a pointer to the delegate at the specified address
//
// Returns:
// HRESULT indicating status of the operation. S_OK if the assembly was successfully executed