
Originally Posted by
symbianyucca
As the RProcess, is R-Type API, you need to connect/open it before tring to use it.
Not in this case, as the process I'm interested in is the current one. From RProcess's default constructor documentation: Specifically, it sets the handle-number to the value KCurrentProcessHandle. In effect, the constructor creates a default process handle.
Anyway, I found out the answer to my original question:
Code:
TSecurityInfo
security;
security.SetToCurrentInfo();
if (security.iCaps.HasCapability(...))
Johan