SetProcPermissions (Windows Embedded CE 6.0)
1/6/2010
This function sets the internal permissions bit mask for the current thread, thereby enabling access to the address space of another process.
This function is no longer supported as of CE 6.0.
Syntax
DWORD SetProcPermissions(
DWORD newperms
);
Parameters
- newperms
[in] Bit mask specifying the new permissions. Use the value 0xFFFFFFFF to set access rights to the whole system.
Return Value
The returned DWORD specifies the old permissions.
Remarks
Typically, a driver saves the permissions of a calling process, and then sets the driver's thread permissions to include the calling process when needed. After the work for the calling process is complete, the driver's thread permissions are reset. Setting process permissions to 0xFFFFFFFF should be used sparingly because it enables access to all of the virtual address spaces.
Requirements
Header | pkfuncs.h |
Library | coredll.lib |
Windows Embedded CE | Windows CE 2.10 and later |
See Also
Reference
Kernel Functions
GetCurrentPermissions