I'm in the process of porting a C++ library from Linux to Windows, and am having problems with getuid(), which is not supported in Windows.
Any ideas what I can use in its place?
|
|
|
You can retrieves the name of the user associated with the current thread with GetUserName :
|
||||
|
The Windows equivilent is actually the user's SID. You can get this by using the "GetTokenInformation" call and querying for the TokenUser information class. To call GetTokenInformation, you need a handle to the users token, which you can get by calling OpenProcessToken (or OpenThreadToken if you're impersonating someone). |
|||
|
|
Check out Microsoft's recommendations on porting with the Interix (also known as Services for UNIX 3.0) library. Overkill for what you want though. |
|||
|
|
|
Windows' closest equivalent of a UID is (probably) a SID. |
|||
|
|
|
in DotNet - Environment.UserName |
|||
|