| 386 | * Each module generates one structure like this, and the runtime collects |
| 387 | * all of these structures and stores them in a circularly linked list.*/ |
| 388 | typedef struct swig_module_info { |
| 389 | swig_type_info **types; /* Array of pointers to swig_type_info structures that are in this module */ |
| 390 | size_t size; /* Number of types in this module */ |
| 391 | struct swig_module_info *next; /* Pointer to next element in circularly linked list */ |
| 392 | swig_type_info **type_initial; /* Array of initially generated type structures */ |
| 393 | swig_cast_info **cast_initial; /* Array of initially generated casting structures */ |
| 394 | void *clientdata; /* Language specific module data */ |
| 395 | } swig_module_info; |
| 396 | |
| 397 | /* |
| 398 | Compare two type names skipping the space characters, therefore |
nothing calls this directly
no outgoing calls
no test coverage detected