| 23 | const char* CReviveManifestController::AppPrefix = "revive.app."; |
| 24 | |
| 25 | CReviveManifestController *CReviveManifestController::SharedInstance() |
| 26 | { |
| 27 | if ( !s_pSharedRevController ) |
| 28 | { |
| 29 | s_pSharedRevController = new CReviveManifestController(); |
| 30 | } |
| 31 | return s_pSharedRevController; |
| 32 | } |
| 33 | |
| 34 | bool GetLibraryPath(PWCHAR path, DWORD length, PWCHAR guid) |
| 35 | { |
nothing calls this directly
no outgoing calls
no test coverage detected