[comp.sys.amiga.programmer] PowerWindows

dlorre@cbmfra.UUCP (D. LORRE) (01/30/91)

With edit it is very easy to correct the lacks of Power Windows. For example
the chip keyword can be added like this :
GE /USHORT ImageData/USHORT chip ImageData/

Put this in a file (for ex. s:chipupdate) and the file generated by PW can be
updated with the command

edit myfile.h with s:chipupdate

in a makefile you can do this automatically :

myfile.o : myfile.c myfile.h

...

myfile.h : myfile.pw
	edit myfile.h with s:chipupdate

This can be done with most of the troubles you can have with PowerWindows.