mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
252 B
18 lines
252 B
#include "common.h"
|
|
#include "test.h"
|
|
#include "mic.h"
|
|
|
|
//#define MAIN_T main_tdev
|
|
#define MAIN_T main_mic
|
|
|
|
int __cdecl main(int argc, char * argv[])
|
|
{
|
|
int iRet = 0;
|
|
|
|
if (!InitGlobals()) goto end;
|
|
|
|
iRet = MAIN_T (argc, argv);
|
|
|
|
end:
|
|
return iRet;
|
|
}
|