possible calls directive
In this section:
Syntax
possible callscalling-func:called-func[ ,called-func... ];
Parameters
See the information on syntactic components:
Description
Specifies an exhaustive list of possible destinations for all indirect calls in one function. Use this for functions which are known to perform indirect calls and where you know exactly which functions that might be called in this particular application. Consider using the #pragma calls directive if the information about which functions that might be called is available when compiling.
Example
possible calls _MyFunc7: _MyFunc8, _MyFunc9;
When the function does not perform any calls, the list is empty:
possible calls _MyFunc8: ;