Re: [WiX-users] Windows Installer - CustomAction DLL

2007-07-20 Thread Rob Hamflett
It always succeeds because you always return ERROR_SUCCESS. The list of possible return values is here: https://msdn2.microsoft.com/en-us/library/aa368072.aspx Also make sure you have [EMAIL PROTECTED]"check" Rob Naresh Krishna Kumar K wrote: > Hi, > > I am creating a Custom Action DLL using

[WiX-users] Windows Installer - CustomAction DLL

2007-07-20 Thread Naresh Krishna Kumar K
Hi, I am creating a Custom Action DLL using VC++. My Custom Action DLL source code is given below: #pragma comment(lib, "msi.lib") #include "stdafx.h" BOOL APIENTRY DllMain( HMODULE hModule, DWORD ul_reason_for_call, LPVOID lpReserved