[fpc-pascal] declaration of functions

2010-10-15 Thread Uffe Kousgaard
have many functions/procedures without full declaration in the implementation part. TIA Uffe Kousgaard ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

[fpc-pascal] Re: declaration of functions

2010-10-15 Thread Uffe Kousgaard
lly pointed out a few details which the delphi compiler didn't care about. Got code cleaned up a bit that way :-) Regards Uffe Kousgaard "Uffe Kousgaard" wrote in message news:4cb6fcac@routeware.dk... > While trying to make delphi code compatible with FPC, I have hi

[fpc-pascal] WinCE / Win32 compilation

2010-10-16 Thread Uffe Kousgaard
r error when calling enter, leave or free methods. This one stops me at the moment. TIA Uffe Kousgaard ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

[fpc-pascal] Re: WinCE / Win32 compilation

2010-10-16 Thread Uffe Kousgaard
"Jonas Maebe" wrote in message news:6ef537cb-d266-4034-8c96-8286158ac...@elis.ugent.be... > 1) Whenever I compile "single = min(single,single)" I have to add math.min > or the win32 compiler complains and expects longints instead. Is there a > difference between the RTL in the two versions? > C

[fpc-pascal] Re: Re: WinCE / Win32 compilation

2010-10-16 Thread Uffe Kousgaard
"Sven Barth" wrote in message > > TCriticalSection is a WinAPI struct if you include the unit Windows. OK, that explains. In Delphi the WinAPI struct is called TRTLCriticalSection. So, no name clashing. ___ fpc-pascal maillist - fpc-pascal@lists.

[fpc-pascal] Win CE

2010-11-10 Thread Uffe Kousgaard
When developing for WinCE, is it possible to compile for DLL's or COM objects? I don't even know if COM objects exist on WinCE, so sorry if that part of the question makes little sense - still trying to get an overview of available "glue" technology on that platform.

[fpc-pascal] Re: Win CE

2010-11-10 Thread Uffe Kousgaard
"Felipe Monteiro de Carvalho" wrote in message > > Your frase isn't very clear, so you want to use a COM object or you > want to implement one? Implement. It should be used from VBscript in another application. ___ fpc-pascal maillist - fpc-pasca

[fpc-pascal] More Win CE

2010-11-12 Thread Uffe Kousgaard
Does the output from the wince compiler work with specific versions of win CE? This page lists versions 3.0, 4.20 and 5.2 : http://en.wikipedia.org/wiki/Windows_Mobile ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepasca

[fpc-pascal] Re: TimSort

2011-05-24 Thread Uffe Kousgaard
"José Mejuto" wrote in message > Why is TimSort specially interesting to you ? If it is the best all-purpose sorting algorithm and now the standard in several other programming languages, it should be obvious why it is also worth looking at for pascal / delphi developers. _