A function declaration for a DLL typically has the following form:
For functions that do not have a return value, the declaration has the following form:
- return-type
- The data type of the return value.
- function-name
- The name of the function.
- arg-list
- A list of the arguments that are passed to the function.
The list is specified as follows:
- data-type
- The data type of the argument.
- identifier
- The name of the argument.