Error C8003

InstallShield 2016 ยป InstallScript Language Reference

Message

'name' : function has no prototype declaration

Description

The function specified by name has not been declared in a prototype statement.

Troubleshooting Information

If the function has not been declared, insert a prototype statement before the current block (main program or function definition).

If the function has been declared ahead of the current block, compare the function declaration in the prototype statement with the function header in the function definition. Be sure the spelling of the function name is identical in both places and that the number and types of parameters matches.

If the function has been declared later in the script, move the declaration before the current block.

See Also