Re: [fpc-devel] Possible to generate Symbol File with FPC for WinDbg?

2009-05-08 Thread Sooky Boo
Thanks. :( Does FPC currently generate any alternative symbol file format(s)? On Fri, May 8, 2009 at 8:50 AM, Jonas Maebe jonas.ma...@elis.ugent.bewrote: On 08 May 2009, at 01:56, Sooky Boo wrote: Is it possible to generate a symbol file for WinDbg? According to http://en.wikipedia.org

[fpc-devel] Possible to generate Symbol File with FPC for WinDbg?

2009-05-07 Thread Sooky Boo
Hi, Is it possible to generate a symbol file for WinDbg? Thanks ___ fpc-devel maillist - fpc-devel@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-devel

[fpc-devel] FPC 2.2.4 rc1 Copy() function issue?

2009-03-13 Thread Sooky Boo
I am using fpc 2.2.4 rc1 and I have a dynamic array of records which I Copy() to another variable, the copied array has reference pointers to the original array, I don't think this was the case in earlier versions of fpc. Anyone know a work around? I could make a function the sets the lengths of

[fpc-devel] Re: FPC 2.2.4 rc1 Copy() function issue?

2009-03-13 Thread Sooky Boo
Found a solution. Copy() only works for one level deep and since using fpc 2.2.4 the array became two levels deep. Solution copy array A to array B using copy, then for each element of array B copy nested array from A to B. ___ fpc-devel maillist -

Re: [fpc-devel] What does the register keyword do?

2008-12-02 Thread Sooky Boo
Thanks On Tue, Dec 2, 2008 at 8:07 AM, Jonas Maebe [EMAIL PROTECTED]wrote: On 02 Dec 2008, at 03:11, Sooky Boo wrote: In c++ the register keyword tries to make the compiler use the CPU's registers if possible for the variable being defined. The register keyword is completely ignored

[fpc-devel] What does the register keyword do?

2008-12-01 Thread Sooky Boo
Hi, I am wondering what the register keyword does, I am hoping that it is the same as the c++ register keyword. In c++ the register keyword tries to make the compiler use the CPU's registers if possible for the variable being defined. If anyone knows what the register keyword does and how it is

Re: [fpc-devel] Convert C++ Array[1] to FPC

2008-02-24 Thread Sooky Boo
] Of SSLPROTOCOL Thanks On Sun, Feb 24, 2008 at 12:31 PM, Bram Kuijvenhoven [EMAIL PROTECTED] wrote: Sooky Boo wrote: On 2/23/08, ik [EMAIL PROTECTED] wrote: {$PACKRECORDS C} On Sat, Feb 23, 2008 at 5:59 AM, Sooky Boo [EMAIL PROTECTED] wrote: Please help I am unsure how to port from C

Re: [fpc-devel] Convert C++ Array[1] to FPC

2008-02-23 Thread Sooky Boo
On 2/23/08, ik [EMAIL PROTECTED] wrote: {$PACKRECORDS C} ... type LPSSLPROTOCOL = ^SSLPROTOCOL; SSLPROTOCOL = record dwProtocol : DWORD; dwVersion : DWORD; dwFlags : DWORD; end; _SSLPROTOCOL = SSLPROTOCOL; On Sat, Feb 23, 2008 at 5:59 AM, Sooky Boo [EMAIL PROTECTED] wrote

[fpc-devel] Convert C++ Array[1] to FPC

2008-02-22 Thread Sooky Boo
Please help I am unsure how to port from C++ to fpc this code. The function this must be passed to says that the structure pointer or size is invalid. C++ typedef struct _SSLPROTOCOL { DWORD dwProtocol; DWORD dwVersion; DWORD dwFlags; } SSLPROTOCOL, FAR *LPSSLPROTOCOL;