- Timestamp:
- Aug 29, 2018 12:16:17 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxDnD.cpp
r69500 r73945 5 5 6 6 /* 7 * Copyright (C) 2013-201 7Oracle Corporation7 * Copyright (C) 2013-2018 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 396 396 { 397 397 int rc = OnCreate(); 398 /** @todo r=bird: MSDN says this returns 0 on success and -1 on failure, not399 * TRUE/FALSE... */400 398 if (RT_FAILURE(rc)) 401 return FALSE; 402 return TRUE; 399 { 400 LogRel(("DnD: Failed to create proxy window, rc=%Rrc\n", rc)); 401 return -1; 402 } 403 return 0; 403 404 } 404 405
Note:
See TracChangeset
for help on using the changeset viewer.