VirtualBox

Changeset 41919 in vbox for trunk/include/iprt


Ignore:
Timestamp:
Jun 27, 2012 8:06:27 AM (13 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
78783
Message:

Runtime/process: Add RTProcQueryUsername to query the username of the current process

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/iprt/process.h

    r40571 r41919  
    364364RTR3DECL(bool)  RTProcIsRunningByName(const char *pszName);
    365365
     366/**
     367 * Query the username of the given process.
     368 *
     369 * @returns IPRT status code.
     370 * @retval VERR_BUFFER_OVERFLOW if the given buffer size is to small for the username.
     371 * @param   hProcess     The process handle to query the username for.
     372 * @param   pszUser      Where to store the user name on success.
     373 * @param   cbUser       The size of the user name buffer.
     374 * @param   pcbUser      Where to store the username length on success
     375 *                       or the required buffer size if VERR_BUFFER_OVERFLOW
     376 *                       is returned.
     377 */
     378RTR3DECL(int)   RTProcQueryUsername(RTPROCESS hProcess, char *pszUser, size_t cbUser,
     379                                    size_t *pcbUser);
     380
    366381#endif /* IN_RING3 */
    367382
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette