|
Object Inheritance
When you create a process with the CreateProcess function, you can specify that the process inherit handles to mutex, event,
semaphore, or timer objects using the SECURITY_ATTRIBUTES structure. The handle inherited by the process has the same access to the
object as the original handle. The inherited handle appears in the handle table of
the created process, but you must communicate the handle value to the created
process. You can do this by specifying the value as a command-line argument
when you call CreateProcess. The created process then uses the GetCommandLine function to retrieve the command-line string and convert the handle argument
into a usable handle. For more information about object inheritance, see Processes and Threads.
Related Links
Software for Delphi and C++ Builder developers
Software for Visual Studio .NET developers
Software for Visual Basic 6 developers
Delphi Tips&Tricks
MegaDetailed.NET
More Online Helps
Win32 Multimedia Programmer's Reference (mmedia.hlp)
OLE Programmer's Reference (ole.hlp)
Microsoft Windows Pen API Programmer's Reference (penapi.hlp)
Microsoft Windows Sockets 2 Reference (sock2.hlp)
Microsoft Windows Telephony API (TAPI) Programmer's Reference (tapi.hlp)
Unix Manual Pages
|