Files correlati :ba1.exe & co. Ricompilazione Demo : [ ] Commento :sistemati alcuni errori di riporto sulla versione 32 bit git-svn-id: svn://10.65.10.50/trunk@10186 c028cbd2-c16b-5b4b-a496-9718f37d4682
36 lines
655 B
C++
Executable File
36 lines
655 B
C++
Executable File
#include <config.h>
|
|
#include <execp.h>
|
|
#include <isam.h>
|
|
#include <tabutil.h>
|
|
#include <utility.h>
|
|
|
|
#include "bainst.h"
|
|
#include "bainst31.h"
|
|
|
|
class TInstall_VE : public TInstallmodule_app
|
|
{
|
|
TMask * _m;
|
|
protected:
|
|
virtual bool load_default_data() const ;
|
|
virtual int module_number() const {return 31;}
|
|
virtual bool install_firm() {return TRUE;} // no firm installation
|
|
|
|
public:
|
|
virtual ~TInstall_VE () {}
|
|
};
|
|
|
|
bool TInstall_VE::load_default_data() const
|
|
{
|
|
TTable tip("%TIP");
|
|
const bool empty = tip.first() != NOERR;
|
|
|
|
return empty;
|
|
}
|
|
|
|
|
|
int bainst31(int argc, char** argv)
|
|
{
|
|
TInstall_VE app;
|
|
app.run(argc, argv);
|
|
return 0;
|
|
} |