ezcgi.inc 360 B

123456789101112131415161718
  1. Uses Dos;
  2. { Declared EXPLICITLY with Ansistring, so NO mistaking is possible }
  3. Function Getenv (Var EnvVar : AnsiString): AnsiString;
  4. begin
  5. Result:=Dos.Getenv(EnvVar);
  6. end;
  7. {
  8. $Log$
  9. Revision 1.3 2000-07-22 12:27:48 jonas
  10. * added missing "open comment braces" for the log section
  11. Revision 1.2 2000/07/13 11:32:58 michael
  12. + removed logs
  13. }