summaryrefslogtreecommitdiff
path: root/src/dlls
diff options
context:
space:
mode:
authorJan Vorlicek <janvorli@microsoft.com>2019-02-25 17:56:56 +0100
committerJan Vorlicek <janvorli@microsoft.com>2019-02-25 17:56:56 +0100
commitab8bc11531fd7fb6d05aee0b0bf670beab38da41 (patch)
treec6e5c4bda6213debed8856ac1612ba5a3fbea03c /src/dlls
parentaa2ab989c41d59d2a4bc165b5958abcdde1b293c (diff)
downloadcoreclr-ab8bc11531fd7fb6d05aee0b0bf670beab38da41.tar.gz
coreclr-ab8bc11531fd7fb6d05aee0b0bf670beab38da41.tar.bz2
coreclr-ab8bc11531fd7fb6d05aee0b0bf670beab38da41.zip
Use function pointer term in the coreclr_create_delegate doc
Diffstat (limited to 'src/dlls')
-rw-r--r--src/dlls/mscoree/unixinterface.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dlls/mscoree/unixinterface.cpp b/src/dlls/mscoree/unixinterface.cpp
index 7ad618eb5d..64fe0308eb 100644
--- a/src/dlls/mscoree/unixinterface.cpp
+++ b/src/dlls/mscoree/unixinterface.cpp
@@ -333,7 +333,7 @@ int coreclr_shutdown_2(
}
//
-// Create a native callable delegate for a managed method.
+// Create a native callable function pointer 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 pointer to the delegate at the specified address
+// delegate - Output parameter, the function stores a native callable function pointer to the delegate at the specified address
//
// Returns:
// HRESULT indicating status of the operation. S_OK if the assembly was successfully executed