README 1000 B

12345678910111213141516171819202122232425262728293031
  1. Free Pascal GL* Units
  2. (c) 1999 Sebastian Guenther
  3. buildgl.pp
  4. ----------
  5. This unit only contains the class "TDefReader", which reads .def files and
  6. holds the informations in the read .def file.
  7. c_linuxd.pp
  8. -----------
  9. This program creates the dynamic Linux units "linuxd/gl.pp" and
  10. "linuxd/glut.pp".
  11. *.def
  12. -----
  13. These are definition files, which hold all declarations common to all
  14. platforms. It may contain two sections:
  15. All lines between "%COPY_INTERFACE" and "%END" are just inserted into the
  16. interface section of generated units; the lines between "%PROCS" and "%END"
  17. are procedure and function definitions. Comments are preserved.
  18. Comments within the .def file (which don't appear in generated units) have
  19. a "#" character at the beginning of the line.
  20. *.tpl
  21. -----
  22. Template files; these files are the skeleton for the generated units. Within
  23. a template file, lines beginning with "%" mark special positions where the
  24. generator inserts its stuff read and possibly converted from .def files.