Code: Select all
~InstallAware Clipboard Data~
~Call DLL Function~
~{0FD88D9C-D9B4-400C-A065-5B78EED67672}~
~$TARGETDIR$\ConfigRA\RAWrapper.dll,help,long,dllReturn,$~
~mIDEFunc.dll\mEXEFunc.dll~
The Method called "help" is a dummy method that I made in order to figure out where I am going wrong with the DLL Call, since I couldn't get the actual one that I want to call to return the proper value. I feel that, once I can get InstallAware to find this function, I can get it to see the function that I am actually trying to call.
help()'s code is as followed:
Code: Select all
int _stdcall CRAWrapperApp::help()
{
int yes= 8888888888888;
return yes;
}
Please tell me what I'm doing wrong. Thank you.