-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathver.cpp
25 lines (17 loc) · 897 Bytes
/
ver.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#include "ver.h"
#include "stdio.h"
void printInfo(void)
{
printf("\n|-------------------------------------------------|\n");
printf("| ----------------------------------------------| |\n");
printf("| | | |\n");
printf("| | CMMB DTMB_MUXER | |\n");
printf("| | version %x | |\n", VERSION);
printf("| | | |\n");
printf("| | Figure IT | |\n");
printf("| | Time: %s, %s | |\n",__DATE__,__TIME__);
printf("| | | |\n");
printf("| | With sarifec and Auto Send 100 files | |\n");
printf("| ----------------------------------------------- |\n");
printf("|-------------------------------------------------|\n\n");
}