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;
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
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.
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/
___
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;