show/hide this revision's text 2 added 162 characters in body

I have a delphi (Win32) web application that can run either as a CGI app, ISAPI or Apache DLL. I want to be able to generate a unique filename prefix (unique for all current requests at a given moment), and figure that the best way to do this would be to use processID (to handle CGI mode) as well as threadID (to handle dll mode).

How would I get a unique Process ID and Thread ID in Delphi?

Will these be unique in a Multi-Core/Multi-Processor situation (on a single webserver machine)?

Edit: please note that I was advised against this approach, and thus the accepted answer uses a different method to generate temporary filenames

show/hide this revision's text 1

Can I create a unique filename based on ProcessID and ThreadID?

I have a delphi (Win32) web application that can run either as a CGI app, ISAPI or Apache DLL. I want to be able to generate a unique filename prefix (unique for all current requests at a given moment), and figure that the best way to do this would be to use processID (to handle CGI mode) as well as threadID (to handle dll mode).

How would I get a unique Process ID and Thread ID in Delphi?

Will these be unique in a Multi-Core/Multi-Processor situation (on a single webserver machine)?