| 1033 | } |
| 1034 | |
| 1035 | static dmExtension::Result ProfilerBasic_AppFinalize(dmExtension::AppParams* params) |
| 1036 | { |
| 1037 | if (dmExtension::AppParamsGetAppExitCode(params) == dmExtension::APP_EXIT_CODE_EXIT) |
| 1038 | { |
| 1039 | ProfileUnregisterProfiler(g_ProfilerName); |
| 1040 | } |
| 1041 | return dmExtension::RESULT_OK; |
| 1042 | } |
| 1043 | |
| 1044 | DM_DECLARE_EXTENSION(ProfilerBasic, g_ProfilerName, ProfilerBasic_AppInitialize, ProfilerBasic_AppFinalize, 0, 0, 0, 0); |
nothing calls this directly
no test coverage detected