[fpc-pascal] FPC trunk missing include file due to recent httpd24 change?

2014-01-24 Thread Reinier Olislagers
Got this compiling trunk in fpcup: [1] Perhaps a forgotten file in commit r26573 michael * Patch from Dennis (Bug ID 25534) to add some APR functions to the interface Thanks, Reinier [1] Compiling httpd24/BuildUnit_httpd24.pp Compiling ./httpd24/src/apr/apr24.pas Compiling

Re: [fpc-pascal] FPC trunk missing include file due to recent httpd24 change?

2014-01-24 Thread Michael Van Canneyt
On Fri, 24 Jan 2014, Reinier Olislagers wrote: Got this compiling trunk in fpcup: [1] Perhaps a forgotten file in commit r26573 Correct. Fixed in 26575. ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org

Re: [fpc-pascal] best method: multiple three state options in a decision tree

2014-01-24 Thread waldo kitty
On 1/23/2014 5:01 AM, Lukasz Sokol wrote: Maybe Something like: (but this is with type TOptionMinMax = [mmNone, mmMin,mmMinMax, mmMax]) i wanted to thank you, lukasz, for your input... it has made me take another look while rewriting to implement your ideas... during this process i had an

Re: [fpc-pascal] how to pass a procedure address and execute it?

2014-01-24 Thread waldo kitty
On 1/23/2014 2:18 PM, waldo kitty wrote: following up on this, how do i pass parameters to doThis and doThat?? do i have to use an intermediate pre_doThis and pre_doThat which handles the calls from centralControl and then calls doThis and doThat with the necessary parameters? type TProc =

Re: [fpc-pascal] how to pass a procedure address and execute it?

2014-01-24 Thread Ewald
On 24 Jan 2014, at 21:20, waldo kitty wrote: On 1/23/2014 2:18 PM, waldo kitty wrote: following up on this, how do i pass parameters to doThis and doThat?? do i have to use an intermediate pre_doThis and pre_doThat which handles the calls from centralControl and then calls doThis and

Re: [fpc-pascal] how to pass a procedure address and execute it?

2014-01-24 Thread waldo kitty
On 1/24/2014 3:18 PM, Ewald wrote: On 24 Jan 2014, at 21:20, waldo kitty wrote: On 1/23/2014 2:18 PM, waldo kitty wrote: following up on this, how do i pass parameters to doThis and doThat?? do i have to use an intermediate pre_doThis and pre_doThat which handles the calls from

Re: [fpc-pascal] how to pass a procedure address and execute it?

2014-01-24 Thread Ewald
On 24 Jan 2014, at 22:20, waldo kitty wrote: On 1/24/2014 3:18 PM, Ewald wrote: On 24 Jan 2014, at 21:20, waldo kitty wrote: On 1/23/2014 2:18 PM, waldo kitty wrote: following up on this, how do i pass parameters to doThis and doThat?? do i have to use an intermediate pre_doThis and

Re: [fpc-pascal] how to pass a procedure address and execute it?

2014-01-24 Thread leledumbo
ahhh! that helps to explain what the compiler error was that i was seeing... so i may need two different types if each procedure called from centralControl has different parameters? won't that cause a conflict if the parameters are not the same or are in different ordering or even if some