|
Overview |
|
|
|
Group |
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| Yes
| Win32s
| Yes
| Import Library
| kernel32.lib
| Header File
| winbase.h
| Unicode
| No
| Platform Notes
| None
|
|
|
GetCurrentProcess
The GetCurrentProcess function returns a pseudohandle for the current process.
HANDLE GetCurrentProcess(VOID)
Parameters
This function has no parameters.
Return Values
The return value is a pseudohandle to the current process.
Remarks
A pseudohandle is a special constant that is interpreted as the current
process handle. The calling process can use this handle to specify its own process
whenever a process handle is required. Pseudohandles are not inherited by child
processes.
This handle has the maximum possible access to the process object. For systems
that support security descriptors, this is the maximum access allowed by the
security descriptor for the calling process. For systems that do not support
security descriptors, this is PROCESS_ALL_ACCESS. For more information, see Process Objects.
A process can create a "real" handle to itself that is valid in the context of
other processes, or that can be inherited by other processes, by specifying
the pseudohandle as the source handle in a call to the DuplicateHandle function. A process can also use the OpenProcess function to open a real handle to itself.
The pseudohandle need not be closed when it is no longer needed. Calling the CloseHandle function with a pseudohandle has no effect. If the pseudohandle is duplicated
by DuplicateHandle, the duplicate handle must be closed.
See Also
CloseHandle, DuplicateHandle, GetCurrentProcessId, GetCurrentThread, OpenProcess
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
TMS Scripter Studio Pro components for Delphi/C++Builder
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
|