I have a basic WIX custom action:

        UINT __stdcall MyCustomAction(MSIHANDLE hInstaller)
        {   
            DWORD dwSize=0;
            MsiGetProperty(hInstaller, TEXT("MyProperty"), TEXT(""), &dwSize);
            return ERROR_SUCCESS;
        }

Added to the installer:

   <CustomAction Id="CustomActionId" FileKey="CustomDll" DllEntry="MyCustomAction"/>
   <InstallExecuteSequence>
       <Custom Action="CustomActionId" Before="InstallFinalize" />
   </InstallExecuteSequence>

The problem is that, no matter what i do, the handle hInstaller is not valid. I've set the action to commit, deferred, changed the place in InstallExecute sequence, hInstaller is always not valid.

Any help would be appreciated. Thanks.

link|improve this question

In what way is it not valid? Are you getting an error back from an API call? – Paul Lalonde Jan 28 '10 at 3:20
If i make any call that uses the handle, the function will return Invalid_Handle error message. – Adrian Faciu Jan 28 '10 at 18:08
ignoring the handle, is the function itself being called correctly? – saschabeaumont Feb 2 '10 at 4:37
I believe the function was called correctly. Anyway to solve the problem, i've rewritten the setup and the custom dll ( there wasn't a lot of code ), and now it's working ok. – Adrian Faciu Feb 2 '10 at 9:04
feedback

1 Answer

up vote 4 down vote accepted

You need to export the called function so MSI can call it using undecorated C style name

Replace your code with this

    extern "C" _declspec(dllexport) UINT __stdcall MyCustomAction(MSIHANDLE hInstall);

    extern "C" UINT __stdcall MyCustomAction(MSIHANDLE hInstall)
    {   
        DWORD dwSize=0;
        MsiGetProperty(hInstaller, TEXT("MyProperty"), TEXT(""), &dwSize);
        return ERROR_SUCCESS;
    }
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.