Re: [Gimp-developer] "gimp_selection_invert" for a Gimp plug_in under windows

2002-08-20 Thread Tor Lillqvist
Tor Lillqvist writes: > I have a vague recollection that *some* of the underscore entry > points really *is* used by another DLL. Don't have time to check > right now. Yes, _readchannel is used by libgimpui. And the iwarp plug-in uses _gimp_layer_copy(). --tml _

Re: [Gimp-developer] "gimp_selection_invert" for a Gimp plug_in under windows

2002-08-12 Thread Tor Lillqvist
> none of the symbols that start with an underscore should be exported. > If they really are, it's a bug and you should expect that they won't > be available in the next release. OK, I'll remove them. (I have a vague recollection that *some* of the underscore entry points really *is* used by a

Re: [Gimp-developer] "gimp_selection_invert" for a Gimp plug_in under windows

2002-08-12 Thread Simon Budig
Thierry Tracol ([EMAIL PROTECTED]) wrote: > Sven Neumann a écrit : > > you could call the PDB function directly using gimp_run_procedure() > > instead of relying on the availability of the C wrappers. > > Thank you for your advice. It works when I call the procedure through > gimp_run_procedure.

Re: [Gimp-developer] "gimp_selection_invert" for a Gimp plug_in under windows

2002-08-12 Thread Thierry Tracol
Sven Neumann a écrit : > Hi, > > Thierry Tracol <[EMAIL PROTECTED]> writes: > > > I am currently adapting a Unix Gimp plug-in to Windows Gimp. > > I have a problem because the plug-in is using the > > "gimp_selection_invert" function which works well with Unix, but it > > doesn't seem to exist

Re: [Gimp-developer] 'gimp_selection_invert' for a Gimp plug_in under windows

2002-08-12 Thread Sven Neumann
Hi, <[EMAIL PROTECTED]> writes: > > Thierry Tracol <[EMAIL PROTECTED]> writes: > > > >> I am currently adapting a Unix Gimp plug-in to Windows Gimp. > >> I have a problem because the plug-in is using the > >> "gimp_selection_invert" function which works well with Unix, but it > >> doesn't seem t

Re: [Gimp-developer] 'gimp_selection_invert' for a Gimp plug_in under windows

2002-08-12 Thread collin
> Thierry Tracol <[EMAIL PROTECTED]> writes: > >> I am currently adapting a Unix Gimp plug-in to Windows Gimp. >> I have a problem because the plug-in is using the >> "gimp_selection_invert" function which works well with Unix, but it >> doesn't seem to exist on PC. [...] > I'd appreciate if you

Re: [Gimp-developer] "gimp_selection_invert" for a Gimp plug_in under windows

2002-08-12 Thread Sven Neumann
Hi, Thierry Tracol <[EMAIL PROTECTED]> writes: > I am currently adapting a Unix Gimp plug-in to Windows Gimp. > I have a problem because the plug-in is using the > "gimp_selection_invert" function which works well with Unix, but it > doesn't seem to exist on PC. > > The function is declared in

[Gimp-developer] "gimp_selection_invert" for a Gimp plug_in under windows

2002-08-12 Thread Thierry Tracol
I am currently adapting a Unix Gimp plug-in to Windows Gimp. I have a problem because the plug-in is using the "gimp_selection_invert" function which works well with Unix, but it doesn't seem to exist on PC. The function is declared in the windows include "gimpselection_pdb.h", but it is not pres