MCPcopy Create free account
hub / github.com/TactilityProject/Tactility / setElfAppParameters

Function setElfAppParameters

Tactility/Source/app/ElfApp.cpp:204–222  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

202std::shared_ptr<Lock> ElfApp::staticParametersLock = std::make_shared<Mutex>();
203
204void setElfAppParameters(
205 CreateData createData,
206 DestroyData destroyData,
207 OnCreate onCreate,
208 OnDestroy onDestroy,
209 OnShow onShow,
210 OnHide onHide,
211 OnResult onResult
212) {
213 ElfApp::setParameters({
214 .createData = createData,
215 .destroyData = destroyData,
216 .onCreate = onCreate,
217 .onDestroy = onDestroy,
218 .onShow = onShow,
219 .onHide = onHide,
220 .onResult = onResult
221 });
222}
223
224std::shared_ptr<App> createElfApp(const std::shared_ptr<AppManifest>& manifest) {
225 LOGGER.info("createElfApp");

Callers 1

tt_app_registerFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected