Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: installer/src/custom-action/abp_ca.cpp

Issue 5219280069066752: Issue #1186 - Change names that appear in the custom action (Closed)
Patch Set: Created Jan. 4, 2015, 7 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | installer/src/custom-action/abp_ca.def » ('j') | installer/src/installer-lib/interaction.cpp » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: installer/src/custom-action/abp_ca.cpp
===================================================================
--- a/installer/src/custom-action/abp_ca.cpp
+++ b/installer/src/custom-action/abp_ca.cpp
@@ -7,7 +7,7 @@
/**
* DllMain is the standard entry point call when the DLL is loaded or unloaded.
*
- * \param[in] module_handle
+ * \param[in] moduleHandle
* Handle for this instance of the DLL; same as the module handle.
* This handle allows us to get the DLL file name for logging.
* \param[in] reason
@@ -20,7 +20,7 @@
* Documentation on DLL entry points in Windows.
*/
extern "C" BOOL WINAPI DllMain(
- IN HINSTANCE module_handle,
+ IN HINSTANCE moduleHandle,
IN ULONG reason,
IN LPVOID reserved )
{
@@ -32,7 +32,7 @@
case DLL_PROCESS_ATTACH:
try
{
- DLL_Module::attach( module_handle );
+ DllModule::Attach( moduleHandle );
return TRUE;
}
catch(...)
@@ -46,7 +46,7 @@
case DLL_PROCESS_DETACH:
try
{
- DLL_Module::detach();
+ DllModule::Detach();
return TRUE;
}
catch(...)
« no previous file with comments | « no previous file | installer/src/custom-action/abp_ca.def » ('j') | installer/src/installer-lib/interaction.cpp » ('J')

Powered by Google App Engine
This is Rietveld