comparison Applications/IBasicApplication.cpp @ 214:1c5a47dda299

SdlOrthancSurface
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 01 Jun 2018 18:33:34 +0200
parents 5412adf19980
children d7b2590744f8 106a0f9781d9
comparison
equal deleted inserted replaced
213:f753a7e15a73 214:1c5a47dda299
85 ******************************************************************/ 85 ******************************************************************/
86 86
87 Orthanc::Logging::Initialize(); 87 Orthanc::Logging::Initialize();
88 Orthanc::HttpClient::InitializeOpenSsl(); 88 Orthanc::HttpClient::InitializeOpenSsl();
89 Orthanc::HttpClient::GlobalInitialize(); 89 Orthanc::HttpClient::GlobalInitialize();
90 SdlEngine::GlobalInitialize(); 90 SdlWindow::GlobalInitialize();
91 91
92 92
93 /****************************************************************** 93 /******************************************************************
94 * Declare and parse the command-line options of the application 94 * Declare and parse the command-line options of the application
95 ******************************************************************/ 95 ******************************************************************/
278 278
279 /****************************************************************** 279 /******************************************************************
280 * Finalize all the subcomponents of Orthanc Stone 280 * Finalize all the subcomponents of Orthanc Stone
281 ******************************************************************/ 281 ******************************************************************/
282 282
283 SdlEngine::GlobalFinalize(); 283 SdlWindow::GlobalFinalize();
284 Orthanc::HttpClient::GlobalFinalize(); 284 Orthanc::HttpClient::GlobalFinalize();
285 Orthanc::HttpClient::FinalizeOpenSsl(); 285 Orthanc::HttpClient::FinalizeOpenSsl();
286 286
287 return (success ? 0 : -1); 287 return (success ? 0 : -1);
288 } 288 }