| 96 | // This is the function that connects us to Audacity. |
| 97 | extern int DLL_API ModuleDispatch(ModuleDispatchTypes type); |
| 98 | int ModuleDispatch(ModuleDispatchTypes type) |
| 99 | { |
| 100 | switch (type) |
| 101 | { |
| 102 | case ModuleInitialize: |
| 103 | RegisterMenuItems(); |
| 104 | break; |
| 105 | case AppInitialized: |
| 106 | break; |
| 107 | case AppQuiting: |
| 108 | break; |
| 109 | default: |
| 110 | break; |
| 111 | } |
| 112 | |
| 113 | return 1; |
| 114 | } |
| 115 | |
| 116 | //Example code commented out. |
| 117 | #if 0 |
nothing calls this directly
no test coverage detected