README 1015 B

12345678910111213141516171819202122232425262728293031
  1. Free Pascal GL* Units
  2. (c) 1999-2000 Sebastian Guenther, [email protected]
  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 Linux units "linux/gl.pp" and "linux/glut.pp".
  10. *.def
  11. -----
  12. These are definition files, which hold all declarations common to all
  13. platforms. It may contain two sections:
  14. All lines between "%COPY_INTERFACE" and "%END" are just inserted into the
  15. interface section of generated units; the lines between "%PROCS" and "%END"
  16. are procedure and function definitions. Comments are preserved.
  17. Comments within the .def file (which don't appear in generated units) have
  18. a "#" character at the beginning of the line.
  19. *.tpl
  20. -----
  21. Template files; these files are the skeleton for the generated units. Within
  22. a template file, lines beginning with "%" mark special positions where the
  23. generator inserts its stuff read and possibly converted from .def files.