| 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 ); |
| + DLL_Module::attach( moduleHandle ); |
| return TRUE; |
| } |
| catch(...) |