19 lines
305 B
C++
19 lines
305 B
C++
/** @file
|
|
* @author Edouard DUPIN
|
|
* @copyright 2011, Edouard DUPIN, all right reserved
|
|
* @license APACHE v2.0 (see license file)
|
|
*/
|
|
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
int mm_main(int _argc, const char* _argv[]);
|
|
int mm_run();
|
|
void mm_stopApplication();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|