Changeset 57753 in vbox for trunk/src/VBox/Additions
- Timestamp:
- Sep 15, 2015 11:15:21 AM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 102677
- Location:
- trunk/src/VBox/Additions/common/VBoxService
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceControlProcess.cpp
r57659 r57753 1372 1372 if (fFlags & EXECUTEPROCESSFLAG_HIDDEN) 1373 1373 uProcFlags |= RTPROC_FLAGS_HIDDEN; 1374 if (fFlags & EXECUTEPROCESSFLAG_NO_PROFILE) 1375 uProcFlags |= RTPROC_FLAGS_NO_PROFILE; 1374 /** @todo Rename to EXECUTEPROCESSFLAG_PROFILE in next API change. */ 1375 if (!(fFlags & EXECUTEPROCESSFLAG_NO_PROFILE)) 1376 uProcFlags |= RTPROC_FLAGS_PROFILE; 1376 1377 if (fFlags & EXECUTEPROCESSFLAG_UNQUOTED_ARGS) 1377 1378 uProcFlags |= RTPROC_FLAGS_UNQUOTED_ARGS; -
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceControlSession.cpp
r57721 r57753 1954 1954 1955 1955 uint32_t uProcFlags = RTPROC_FLAGS_SERVICE 1956 #ifdef RT_OS_WINDOWS 1957 /* Make sure to also load the profile data on a Windows guest. */ 1958 | RTPROC_FLAGS_PROFILE /** @todo Not implemented for non-Windows yet. */ 1959 #endif 1956 1960 | RTPROC_FLAGS_HIDDEN; /** @todo More flags from startup info? */ 1957 1958 1961 /* 1959 1962 * Create the session process' environment block.
Note:
See TracChangeset
for help on using the changeset viewer.