TTKMusicPlayer  4.3.0.0
TTKMusicPlayer imitates Kugou UI, the music player uses of qmmp core library based on Qt for windows and linux
musicinitmain.cpp
Go to the documentation of this file.
1 #include <QCoreApplication>
2 #include "musicconfigmodule.h"
3 #include "ttkinitialization.h"
4 
5 #ifdef _MSC_VER // do not show console window
6 # pragma comment(linker, "/subsystem:\"windows\" /entry:\"mainCRTStartup\"")
7 #endif
8 
9 int main(int argc, char *argv[])
10 {
11  QCoreApplication app(argc, argv);
13 
15  config.initialize();
16  TTK_INFO_STREAM("Parameter Init success");
17  return EXIT_SUCCESS;
18 }
#define TTK_REGISTER_ORGANIZATION(ORG)
void initialize() const
struct config_s config
The class of the initialize module.
#define TTK_INFO_STREAM(msg)
Definition: ttklogger.h:74
int main(int argc, char *argv[])