Use function pointer term in the coreclr_create_delegate doc
authorJan Vorlicek <janvorli@microsoft.com>
Mon, 25 Feb 2019 16:56:56 +0000 (17:56 +0100)
committerJan Vorlicek <janvorli@microsoft.com>
Mon, 25 Feb 2019 16:56:56 +0000 (17:56 +0100)
src/coreclr/hosts/inc/coreclrhost.h
src/dlls/mscoree/unixinterface.cpp

index 2809ded..d1ec724 100644 (file)
@@ -77,7 +77,7 @@ CORECLR_HOSTING_API(coreclr_shutdown_2,
             int* latchedExitCode);
 
 //
-// 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
@@ -85,7 +85,7 @@ CORECLR_HOSTING_API(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
index 7ad618e..64fe030 100644 (file)
@@ -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