- Bugfix: Corrected a SEGV in the rawdata handling. Mistakingly took the
commit3d455c9b16408d2754b0974d452ddbf4ba5d30cd
authorBertho Stultiens <bertho@akhphd.au.dk>
Tue, 9 May 2000 22:35:10 +0000 (9 22:35 +0000)
committerAlexandre Julliard <julliard@winehq.org>
Tue, 9 May 2000 22:35:10 +0000 (9 22:35 +0000)
tree2181c7a8c66ff29a8d4d56eec8d683ea79954e04
parent8ee3144a771359e34439a168e0805c2898fbde0d
- Bugfix: Corrected a SEGV in the rawdata handling. Mistakingly took the
  address of a pointer instead of its value. This probably slipped in
  during the merge of my tree into the winetree.
  Lesson learned: always double check.
- Verified most resources so that win16 compile also generates correct
  output for reversed endian.
- Implemented byte-ordering for resources. All resources can be forced
  to be little-, big- or native endian with command-line option -B.
- Reading resources from .res-files are only accepted in native byte-
  ordering so that no additional semantic analysis is required.
- Resource directory is still written in native-only format, including
  the strings.
- Wrc is now installed through the makefile with 'make install' and also
  uninstalled with 'make uninstall'.
- Wrote a man-page for better reference. The manpage also gets installed
  and uninstalled.
- Cleaned up the namespace a bit by more agressive use of static.
15 files changed:
tools/wrc/CHANGES
tools/wrc/Makefile.in
tools/wrc/README.wrc
tools/wrc/dumpres.c
tools/wrc/genres.c
tools/wrc/newstruc.c
tools/wrc/parser.h
tools/wrc/parser.l
tools/wrc/parser.y
tools/wrc/readres.c
tools/wrc/wrc.c
tools/wrc/wrc.h
tools/wrc/wrc.man [new file with mode: 0644]
tools/wrc/wrctypes.h
tools/wrc/writeres.c