Changeset 76379 in vbox for trunk/src/VBox
- Timestamp:
- Dec 22, 2018 10:48:10 PM (6 years ago)
- Location:
- trunk/src/VBox
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Graphics/Video/disp/wddm/VBoxUhgsmiDisp.cpp
r73097 r76379 47 47 48 48 /* typedef DECLCALLBACK(int) FNVBOXUHGSMI_BUFFER_LOCK(PVBOXUHGSMI_BUFFER pBuf, uint32_t offLock, uint32_t cbLock, VBOXUHGSMI_BUFFER_LOCK_FLAGS fFlags, void**pvLock); */ 49 DECLCALLBACK(int) vboxUhgsmiD3DBufferLock(PVBOXUHGSMI_BUFFER pBuf, uint32_t offLock, uint32_t cbLock, VBOXUHGSMI_BUFFER_LOCK_FLAGS fFlags, void**pvLock) 49 DECLCALLBACK(int) vboxUhgsmiD3DBufferLock(PVBOXUHGSMI_BUFFER pBuf, uint32_t offLock, uint32_t cbLock, 50 VBOXUHGSMI_BUFFER_LOCK_FLAGS fFlags, void**pvLock) 50 51 { 51 52 PVBOXUHGSMI_BUFFER_PRIVATE_DX_ALLOC_BASE pBuffer = VBOXUHGSMDXALLOCBASE_GET_BUFFER(pBuf); -
trunk/src/VBox/GuestHost/DragAndDrop/DnDDroppedFiles.cpp
r74526 r76379 1 1 /* $Id$ */ 2 2 /** @file 3 * DnD :Directory handling.3 * DnD - Directory handling. 4 4 */ 5 5 … … 20 20 * Header Files * 21 21 *********************************************************************************************************************************/ 22 #define LOG_GROUP LOG_GROUP_GUEST_DND 23 #include <VBox/GuestHost/DragAndDrop.h> 22 24 23 25 #include <iprt/assert.h> 24 26 #include <iprt/dir.h> 27 #include <iprt/err.h> 28 #include <iprt/file.h> 25 29 #include <iprt/path.h> 26 30 #include <iprt/string.h> 27 31 28 #include <VBox/GuestHost/DragAndDrop.h> 29 30 #ifdef LOG_GROUP 31 #undef LOG_GROUP 32 #endif 33 #define LOG_GROUP LOG_GROUP_GUEST_DND 32 34 33 #include <VBox/log.h> 35 34 -
trunk/src/VBox/GuestHost/DragAndDrop/DnDMIME.cpp
r69500 r76379 1 1 /* $Id$ */ 2 2 /** @file 3 * DnD :Path list class.3 * DnD - Path list class. 4 4 */ 5 5 … … 20 20 * Header Files * 21 21 *********************************************************************************************************************************/ 22 #define LOG_GROUP LOG_GROUP_GUEST_DND 23 #include <VBox/GuestHost/DragAndDrop.h> 22 24 23 25 #include <iprt/string.h> 24 26 25 #include <VBox/GuestHost/DragAndDrop.h>26 27 27 28 bool DnDMIMEHasFileURLs(const char *pcszFormat, size_t cchFormatMax) -
trunk/src/VBox/GuestHost/DragAndDrop/DnDPath.cpp
r69500 r76379 20 20 * Header Files * 21 21 *********************************************************************************************************************************/ 22 #define LOG_GROUP LOG_GROUP_GUEST_DND 23 #include <VBox/GuestHost/DragAndDrop.h> 22 24 25 #include <iprt/err.h> 23 26 #include <iprt/path.h> 24 27 #include <iprt/string.h> 25 28 26 #include <VBox/GuestHost/DragAndDrop.h>27 29 28 30 /** -
trunk/src/VBox/GuestHost/DragAndDrop/DnDURIList.cpp
r74715 r76379 1 1 /* $Id$ */ 2 2 /** @file 3 * DnD :URI list class.3 * DnD - URI list class. 4 4 */ 5 5 … … 20 20 * Header Files * 21 21 *********************************************************************************************************************************/ 22 #define LOG_GROUP LOG_GROUP_GUEST_DND 23 #include <VBox/GuestHost/DragAndDrop.h> 22 24 23 25 #include <iprt/dir.h> 26 #include <iprt/err.h> 24 27 #include <iprt/file.h> 25 28 #include <iprt/fs.h> … … 29 32 #include <iprt/uri.h> 30 33 31 #ifdef LOG_GROUP32 #undef LOG_GROUP33 #endif34 #define LOG_GROUP LOG_GROUP_GUEST_DND35 34 #include <VBox/log.h> 36 35 37 #include <VBox/GuestHost/DragAndDrop.h>38 36 39 37 DnDURIList::DnDURIList(void) -
trunk/src/VBox/GuestHost/DragAndDrop/DnDURIObject.cpp
r74714 r76379 1 1 /* $Id$ */ 2 2 /** @file 3 * DnD: URI object class. For handling creation/reading/writing to files and directories 4 * on host or guest side. 3 * DnD - URI object class. For handling creation/reading/writing to files and directories on host or guest side. 5 4 */ 6 5 … … 21 20 * Header Files * 22 21 *********************************************************************************************************************************/ 22 #define LOG_GROUP LOG_GROUP_GUEST_DND 23 #include <VBox/GuestHost/DragAndDrop.h> 23 24 24 25 #include <iprt/dir.h> 26 #include <iprt/err.h> 25 27 #include <iprt/file.h> 26 28 #include <iprt/fs.h> … … 28 30 #include <iprt/uri.h> 29 31 30 #ifdef LOG_GROUP31 #undef LOG_GROUP32 #endif33 #define LOG_GROUP LOG_GROUP_GUEST_DND34 32 #include <VBox/log.h> 35 33 36 #include <VBox/GuestHost/DragAndDrop.h>37 34 38 35 DnDURIObject::DnDURIObject(void)
Note:
See TracChangeset
for help on using the changeset viewer.