EntryPoints-EntriesByDLLExportΒΆ
Consider routines being marked as dllexport as externally called entry points
Required inputs: IR
This rule identifies additional entry points based on the DLL export attribute.
This rule typically is used to easily add entry points where functions are marked as dllexport. This helps when you want to analyse a library without any client code. For example:
__declspec(dllexport) void my_library_entry()
void __attribute__ ((dllexport)) my_other_library_entry()
Configuration of entry points is required for dead code analysis and static semantic analysis.
Possible Messages
This rule has no predefined messages.
Options
The following places define options that affect this rule: Analysis-GlobalOptions
This rule has no individual options.