Changeset 41919 in vbox for trunk/include/iprt
- Timestamp:
- Jun 27, 2012 8:06:27 AM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 78783
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/process.h
r40571 r41919 364 364 RTR3DECL(bool) RTProcIsRunningByName(const char *pszName); 365 365 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 */ 378 RTR3DECL(int) RTProcQueryUsername(RTPROCESS hProcess, char *pszUser, size_t cbUser, 379 size_t *pcbUser); 380 366 381 #endif /* IN_RING3 */ 367 382
Note:
See TracChangeset
for help on using the changeset viewer.