21 lines
435 B
C++
21 lines
435 B
C++
|
//---------------------------------------------------------------------------
|
||
|
|
||
|
#include <vcl.h>
|
||
|
#pragma hdrstop
|
||
|
|
||
|
#include <tchar.h>
|
||
|
//---------------------------------------------------------------------------
|
||
|
|
||
|
#pragma argsused
|
||
|
|
||
|
#include "mylib.h"
|
||
|
|
||
|
int _tmain(int argc, _TCHAR* argv[])
|
||
|
{
|
||
|
mylib_func ();
|
||
|
|
||
|
system ("pause");
|
||
|
return 0;
|
||
|
}
|
||
|
//---------------------------------------------------------------------------
|