dev/c/GLib_bcb/test_mingw_bcb/main.cpp

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;
}
//---------------------------------------------------------------------------