Search Results

2
votes
8answers
1k views

Delphi Win API CreateTimerQueueTimer threads and thread safe FormatDateTime crashes

Hi This is a bit of a long question, but here we go. There is a version of FormatDateTime that is said to be thread safe in that you use GetLocaleFormatSettings(3081, Forma …
1
vote
1answer
2k views

Delphi 2009, Indy 10, TIdTCPServer.OnExecute, how to grab all the bytes in the InputBuffer

Hi I am messing around with the Indy 10 supplied with Delphi 2009 and am having trouble with getting all the data from the IOHandler when OnExecute fires... procedure TFormM …
1
vote
3answers
565 views

Delphi Array Alignment set to 4, 8, or 16 byte boundaries?

I would like to use the FFTW C library from Delphi 2009 and according to this documentation; http://www.fftw. …
1
vote
3answers
293 views

Delphi TClientSocket replacement using winsock2 and IOCP?

Is there such a thing? It needs to be asynchronous (no Indy). …
0
votes
0answers
64 views

EncryptMessage returns SEC_E_INVALID_TOKEN

Hi When using the EncryptMessage (SChannel) from the win32 API with a valid context, I am supplying the four buffers in the correct order I get the SEC_E_INVALID_TOKEN response which accord …
2
votes

Delphi Win API CreateTimerQueueTimer threads and thread safe FormatDateTime crashes

I am not sure if it is good form to post an "Answer" to my own question but it seemed logical, let me know if that is uncool. I think I have found the problem, the thread local storage ide …
0
votes

Delphi Win API CreateTimerQueueTimer threads and thread safe FormatDateTime crashes

The problem with Indy is that if you need many connections it's not effiecient at all. It requires one thread per connection (blocking I/O) which doesn't scale at all, hence the benefit of IOCP and …