- Timestamp:
- Sep 4, 2019 5:54:47 AM (5 years ago)
- Location:
- trunk/src/VBox
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/Common/PasswordInput.h
r80569 r80573 16 16 */ 17 17 18 #ifndef VBOX_INCLUDED_SRC_Common_Password FileImpl_h19 #define VBOX_INCLUDED_SRC_Common_Password FileImpl_h18 #ifndef VBOX_INCLUDED_SRC_Common_PasswordInput_h 19 #define VBOX_INCLUDED_SRC_Common_PasswordInput_h 20 20 #ifndef RT_WITHOUT_PRAGMA_ONCE 21 21 # pragma once … … 32 32 RTEXITCODE settingsPasswordFile(ComPtr<IVirtualBox> virtualBox, const char *pszFilename); 33 33 34 #endif /* !VBOX_INCLUDED_SRC_ VBoxAutostart_VBoxAutostart_h */34 #endif /* !VBOX_INCLUDED_SRC_Common_PasswordInput_h */ -
trunk/src/VBox/Frontends/VBoxAutostart/Makefile.kmk
r80569 r80573 30 30 VBoxAutostart-win.cpp \ 31 31 ../Common/PasswordInput.cpp 32 VBoxAutostartSvc_LIBS.win += Secur32.lib 32 VBoxAutostartSvc_LIBS.win += Secur32.lib 33 33 else 34 34 PROGRAMS += VBoxAutostart -
trunk/src/VBox/Frontends/VBoxAutostart/VBoxAutostart-win.cpp
r80569 r80573 488 488 int vrc = autostartGetServiceName(pszUser, sServiceName); 489 489 if (!RT_FAILURE(vrc)) 490 return autostartSvcDisplayError("delete - DeleteService failed, service name for user %s can not be constructed.\n", 490 return autostartSvcDisplayError("delete - DeleteService failed, service name for user %s can not be constructed.\n", 491 491 pszUser); 492 492 /* -
trunk/src/VBox/Frontends/VBoxAutostart/VBoxAutostart.h
r80569 r80573 322 322 323 323 #endif /* !VBOX_INCLUDED_SRC_VBoxAutostart_VBoxAutostart_h */ 324 -
trunk/src/VBox/Main/src-all/MachineLaunchVMCommonWorker.cpp
r80569 r80573 127 127 { 128 128 /** @todo r=bird: Broken escaping rule, how to end a variable with '\\'? 129 * E.g. TMP=C:\ TEMP\ */129 * E.g. TMP=C:\\TEMP\\ */ 130 130 char const ch = *psz; 131 131 if ( (ch == '\n' && (psz == pszEnvMutable || psz[-1] != '\\')) -
trunk/src/VBox/Main/src-server/MachineImpl.cpp
r80569 r80573 7491 7491 * sessions and the caller in the interactive one. 7492 7492 */ 7493 fUseVBoxSDS = false; 7493 fUseVBoxSDS = false; 7494 7494 7495 7495 /* Get windows session of the current process. The process token used … … 7497 7497 1. The token is absent for the current thread except someone set it 7498 7498 for us. 7499 2. Needs to get the id of the session where the process is started. 7499 2. Needs to get the id of the session where the process is started. 7500 7500 We only need to do this once, though. */ 7501 7501 static DWORD s_idCurrentSession = ~(DWORD)0;
Note:
See TracChangeset
for help on using the changeset viewer.