C Call and Callby Kinds

Kind Name
Entity Performing Reference
Entity Being Referenced
C Asm Call
func
func1
C Asm Callby
func1
func
C Call
func
func1
C Callby
func1
func
C Implicit Call
func
func1
C Implicit Callby
func1
func
C Inactive Call
func
func1
C Inactive Callby
func1
func
C Virtual Call
func
func1
C Virtual Callby
func1
func

Asm Call and Asm Callby indicates a reference in assembly code to a known C/C++ function. The function's name must already be declared at the point of the usage.

extern int func1(); 
int func() { 
   _asm op1 _func1; 
   _asm op1 _func2; 
} 

Call and Callby reference kinds indicate a reference to a known C/C++ function. The function’s name must already be declared at the point of the usage.

extern int func1(void); 
int func() { 
   func1(); 
   func2(); 
} 

Inactive Call or Inactive Callby reference kinds indicate a reference to a known C/C++ function in an inactive region of code.

int func() { 
#if 0 
   func1(); 
#endif 
} 

Scientific Toolworks, Inc.
http://www.scitools.com