> What library contains the ProcCallFixedOrMoveable family of functions? Glue
> can't find the functions. Also, how come FileEnum and GeodeUseLibrary are
> being published instead of the library being used? I'm using platform
> geos20. Right now I'm linking in the libraries geos, ui, spell, spool, and
> text. I just tried changing the platform to geos201 and it removed the
> publishing, but it still can't find ProcCallFixedOrMoveable_pascal. This is
> what I'm doing, the variable name should explain it:
>
> ProcCallFixedOrMoveable_pascal(character, ProcGetLibraryEntry(PlugIn, 0));
>
> -------------------------------------------------------------------
> | Edward Di Geronimo Jr. edwdig@bergen.org |
> -------------------------------------------------------------------
1/ I'm assuming you just have a typo here; the routines are
ProcCallFixedOrMovable_pascal
ProcCallFixedOrMovable_cdecl
^ notice, no "e"
2/ You need to #include resource.h.
3/ Even when you include resource.h, you'll still get a warning about:
ProcCallFixedOrMovable...() called with no prototype.
This is because the ProcCallFixedOrMovable...() routines are
declared with empty parameters, since the number of their arguments
can vary, and this confuses Borland.
You can ignore this "no prototype" warning.
Hope this helps.
Regards,
Paul.