Changeset 33540 in vbox for trunk/src/VBox/Runtime/r3/win
- Timestamp:
- Oct 28, 2010 9:27:05 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 67140
- Location:
- trunk/src/VBox/Runtime/r3/win
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/win/RTSystemQueryDmiString-win.cpp
r30013 r33540 162 162 163 163 /* 164 * Before we do anything with COM, we have to init alize it.164 * Before we do anything with COM, we have to initialize it. 165 165 */ 166 166 HRESULT hrc = rtSystemDmiWinInitialize(); -
trunk/src/VBox/Runtime/r3/win/fileaio-win.cpp
r32428 r33540 100 100 /** Flag whether the request completed. */ 101 101 bool fCompleted; 102 /** Number of bytes transfer ed successfully. */102 /** Number of bytes transferred successfully. */ 103 103 size_t cbTransfered; 104 104 /** Error code of the completed request. */ -
trunk/src/VBox/Runtime/r3/win/fileio-win.cpp
r28918 r33540 475 475 if (MySetFilePointer(File, cbSize, NULL, FILE_BEGIN)) 476 476 { 477 /* file pointer setted*/477 /* set file pointer */ 478 478 if (SetEndOfFile((HANDLE)File)) 479 479 { … … 488 488 489 489 /* 490 * Failed, try restor e file pointer.490 * Failed, try restoring the file pointer. 491 491 */ 492 492 rc = GetLastError(); -
trunk/src/VBox/Runtime/r3/win/localipc-win.cpp
r28800 r33540 411 411 { 412 412 /* 413 * We failed to create a new instance for the server, di connect413 * We failed to create a new instance for the server, disconnect 414 414 * the client and fail. Don't try service the client here. 415 415 */ -
trunk/src/VBox/Runtime/r3/win/pipe-win.cpp
r33194 r33540 51 51 * Defined Constants And Macros * 52 52 *******************************************************************************/ 53 /** The pipe buffer size we prefer e. */53 /** The pipe buffer size we prefer. */ 54 54 #define RTPIPE_NT_SIZE _64K 55 55 … … 145 145 * Wrapper for getting FILE_PIPE_LOCAL_INFORMATION via the NT API. 146 146 * 147 * @returns Success in idicator (true/false).147 * @returns Success indicator (true/false). 148 148 * @param pThis The pipe. 149 149 * @param pInfo The info structure. … … 584 584 585 585 /* 586 * Kick of a an overlapped read. It should return immed ately if586 * Kick of a an overlapped read. It should return immediately if 587 587 * there is bytes in the buffer. If not, we'll cancel it and see 588 588 * what we get back. … … 656 656 { 657 657 /* 658 * Kick of a an overlapped read. It should return immed ately if658 * Kick of a an overlapped read. It should return immediately if 659 659 * there is bytes in the buffer. If not, we'll cancel it and see 660 660 * what we get back. … … 740 740 741 741 /* Adjust the number of bytes to write to fit into the current 742 buffer quota, unless we've promis sed stuff in RTPipeSelectOne.742 buffer quota, unless we've promised stuff in RTPipeSelectOne. 743 743 WriteQuotaAvailable better not be zero when it shouldn't!! */ 744 744 FILE_PIPE_LOCAL_INFORMATION Info; … … 1149 1149 * @param hPipe The pipe handle. 1150 1150 * @param fEvents The events we're polling for. 1151 * @param ph wher to put the primary handle.1151 * @param ph where to put the primary handle. 1152 1152 */ 1153 1153 int rtPipePollGetHandle(RTPIPE hPipe, uint32_t fEvents, PHANDLE ph) -
trunk/src/VBox/Runtime/r3/win/process-win.cpp
r33491 r33540 348 348 if (dwErr != NO_ERROR) 349 349 return RTErrConvertFromWin32(dwErr); 350 return VERR_NOT_FOUND; /* No error occur ed, but we didn't find the right process. */350 return VERR_NOT_FOUND; /* No error occurred, but we didn't find the right process. */ 351 351 } 352 352 … … 527 527 528 528 /** 529 * Logs off a user, specified by the given tok ken.529 * Logs off a user, specified by the given token. 530 530 * 531 531 * @param hToken The token (=user) to log off. … … 741 741 * physical console or terminal services). 742 742 * - If we found the user's Explorer/VBoxTray app, use and modify the token to 743 * use it in order to allow the newly started process acess the user's743 * use it in order to allow the newly started process to access the user's 744 744 * desktop. If there's no Explorer/VBoxTray app we cannot display the started 745 745 * process (but run it without UI). -
trunk/src/VBox/Runtime/r3/win/semevent-win.cpp
r33269 r33540 1 1 /* $Id$ */ 2 2 /** @file 3 * IPRT - Event Sem pahore, Windows.3 * IPRT - Event Semaphore, Windows. 4 4 */ 5 5
Note:
See TracChangeset
for help on using the changeset viewer.