Re: [fpc-devel]xresource.pp

2004-06-09 Thread Nikolay Nikolov
Jeff Pohlmeyer wrote: X11R6/include/X11/Xresource.h says: typedef char *XrmString; typedef XrmHashBucket *XrmHashTable; fpc/packages/extra/x11/xresource.pp says: TXrmString = char; TXrmHashTable = TXrmHashBucket; I think that should be: TXrmString = ^char; TXrmHashTable = ^TXrmHashBucket;

Re: [fpc-devel]xresource.pp

2004-06-09 Thread Michael Van Canneyt
On Wed, 9 Jun 2004, Jeff Pohlmeyer wrote: > > > X11R6/include/X11/Xresource.h says: > > typedef char *XrmString; > typedef XrmHashBucket *XrmHashTable; > > > > fpc/packages/extra/x11/xresource.pp says: > > TXrmString = char; > TXrmHashTable = TXrmHashBucket; > > > > I think that should b

Re: [fpc-devel]xresource.pp: macros patch

2004-06-09 Thread Michael Van Canneyt
On Wed, 9 Jun 2004, Jeff Pohlmeyer wrote: > > Here is a patch to get the macro functions working in xresource.pp : > > http://houston.quik.com/jkp/xresource.diff Thanks, applied ! Michael. ___ fpc-devel maillist - [EMAIL PROTECTED] http://lists.

[fpc-devel]xresource.pp: macros patch

2004-06-09 Thread Jeff Pohlmeyer
Here is a patch to get the macro functions working in xresource.pp : http://houston.quik.com/jkp/xresource.diff __ Do you Yahoo!? Friends. Fun. Try the all-new Yahoo! Messenger. http://messenger.yahoo.com/ ___

[fpc-devel]xresource.pp

2004-06-09 Thread Jeff Pohlmeyer
X11R6/include/X11/Xresource.h says: typedef char *XrmString; typedef XrmHashBucket *XrmHashTable; fpc/packages/extra/x11/xresource.pp says: TXrmString = char; TXrmHashTable = TXrmHashBucket; I think that should be: TXrmString = ^char; TXrmHashTable = ^TXrmHashBucket;