compiler.pas 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. $Id$
  3. Fake compiler unit
  4. }
  5. unit compiler;
  6. interface
  7. function Compile(const cmd:string):longint;
  8. implementation
  9. uses
  10. comphook;
  11. function Compile(const cmd:string):longint;
  12. begin
  13. status.verbosity:=V_Default;
  14. status.maxerrorcount:=50;
  15. do_comment(V_Error,'Fake Compiler');
  16. do_comment(V_Error,'Cmd = "'+cmd+'"');
  17. Compile:=0;
  18. end;
  19. end.
  20. {
  21. $Log$
  22. Revision 1.1 1999-01-28 19:56:12 peter
  23. * moved to include compiler/gdb independent of each other
  24. Revision 1.3 1999/01/04 11:49:39 peter
  25. * 'Use tab characters' now works correctly
  26. + Syntax highlight now acts on File|Save As...
  27. + Added a new class to syntax highlight: 'hex numbers'.
  28. * There was something very wrong with the palette managment. Now fixed.
  29. + Added output directory (-FE<xxx>) support to 'Directories' dialog...
  30. * Fixed some possible bugs in Running/Compiling, and the compilation/run
  31. process revised
  32. Revision 1.2 1998/12/28 15:44:59 peter
  33. * use V_Error
  34. * set status.verbosity
  35. Revision 1.1 1998/12/22 14:27:54 peter
  36. * moved
  37. Revision 1.1 1998/12/10 23:54:28 peter
  38. * initial version of the FV IDE
  39. * initial version of a fake compiler
  40. }