search for: hdrstop

Displaying 2 results from an estimated 2 matches for "hdrstop".

Did you mean: destop
2008 Jul 19
0
Winelib: How can I compile a Borland C++ Builder application on Linux using winelib?
...o winelib. I'm trying to port a Borland C++ Builder 6.0 application, but I need VCL library: vcl.h. Any ideas?? I would want to make it run natively on Linux. The code is as follows: //--------------------------------------------------------------------------- #include <vcl.h> #pragma hdrstop USEFORM("textS.cpp", TextStuff); USEFORM("aboutS.cpp", AboutBox); USEFORM("assembleS.cpp", AssemblerBox); USEFORM("chksaveS.cpp", ChkSave); USEFORM("mainS.cpp", Main); USEFORM("optionsS.cpp", Options); USEFORM("editorOptions.cpp"...
2010 Jun 22
0
BCB5 CGI.EXE in Ubuntu Lucid 64bit
Hi All, I am trying to use an exiting CGI.EXE program on 64bit Ubuntu Lucid. I have made a test program with the compiler (Borland C++Builder 5 ? BCB5) that just starts prints and closes. Code: #include <vcl.h> #include <conio.h> #pragma hdrstop #pragma argsused int main(int argc, char* argv[]) { cprintf("small test"); return 0; } Launched from Bash Script&#058; Code: before="$(date +%s%N)" wine ./testProject1.exe after="$(date +%s%N)" elapsed_seconds="$(expr $after - $before)&quot...