Changeset 56335 in vbox
- Timestamp:
- Jun 10, 2015 11:33:30 AM (9 years ago)
- Location:
- trunk
- Files:
-
- 22 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/err.sed
-
Property svn:eol-style
changed from
native
toLF
-
Property svn:eol-style
changed from
-
trunk/include/iprt/err.sed
-
Property svn:eol-style
changed from
native
toLF
-
Property svn:eol-style
changed from
-
trunk/src/VBox/Additions/WINNT/Graphics/Video/disp/wddm/VBoxDispD3D.def
r46757 r56335 16 16 17 17 EXPORTS 18 18 OpenAdapter -
trunk/src/VBox/Additions/WINNT/SharedFolders/np/vboxmrxnp.def
r40269 r56335 11 11 ; 12 12 13 LIBRARY 13 LIBRARY VBOXMRXNP 14 14 15 15 EXPORTS 16 NPGetCaps@1317 NPAddConnection@1718 NPAddConnection3@3819 NPCancelConnection@1820 NPGetConnection@1221 NPOpenEnum@3322 NPEnumResource@3423 NPCloseEnum@3524 NPGetUniversalName@4025 NPGetResourceParent@4126 NPGetResourceInformation@5227 NPLogonNotify@50028 NPPasswordChangeNotify@50116 NPGetCaps @13 17 NPAddConnection @17 18 NPAddConnection3 @38 19 NPCancelConnection @18 20 NPGetConnection @12 21 NPOpenEnum @33 22 NPEnumResource @34 23 NPCloseEnum @35 24 NPGetUniversalName @40 25 NPGetResourceParent @41 26 NPGetResourceInformation @52 27 NPLogonNotify @500 28 NPPasswordChangeNotify @501 29 29 -
trunk/src/VBox/Additions/WINNT/VBoxGINA/VBoxGINA.def
r40768 r56335 18 18 19 19 EXPORTS 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 20 WlxNegotiate 21 WlxInitialize 22 WlxDisplaySASNotice 23 WlxLoggedOutSAS 24 WlxActivateUserShell 25 WlxLoggedOnSAS 26 WlxDisplayLockedNotice 27 WlxWkstaLockedSAS 28 WlxIsLockOk 29 WlxIsLogoffOk 30 WlxLogoff 31 WlxShutdown 32 ; 1.1 33 WlxScreenSaverNotify 34 WlxStartApplication 35 ; 1.3 36 WlxNetworkProviderLoad 37 WlxDisplayStatusMessage 38 WlxGetStatusMessage 39 WlxRemoveStatusMessage 40 ; 1.4 41 WlxGetConsoleSwitchCredentials 42 WlxReconnectNotify 43 WlxDisconnectNotify 44 44 ; Debug 45 45 VBoxGINADebug -
trunk/src/VBox/Additions/os2/VBoxSF/VBoxSF.def
-
Property svn:keywords
changed from
Id
toId Revision
r4377 r56335 13 13 FS_MPSAFEFLAGS2 14 14 FS32_ATTRIBUTE 15 15 16 16 ; 16-bit entry points. 17 17 FS_ALLOCATEPAGESPACE -
Property svn:keywords
changed from
-
trunk/src/VBox/Additions/solaris/Installer/vboxdevlink.sed
r9189 r56335 3 3 /name=vboxguest/d 4 4 $i\ 5 type=ddi_pseudo;name=vboxguest 5 type=ddi_pseudo;name=vboxguest \\D 6 6 7 7 !remove -
trunk/src/VBox/Frontends/VBoxSDL/Framebuffer-darwin.m
r55810 r56335 17 17 if (!pMainWnd) 18 18 pMainWnd = pApp->_mainWindow; /* UGLY!! but mApp->_AppFlags._active = 0, so mainWindow() fails. */ 19 pView = [pMainWnd contentView]; 19 pView = [pMainWnd contentView]; 20 20 } 21 21 [pPool release]; -
trunk/src/VBox/Frontends/VBoxSDL/VBoxSDLMain-darwin.m
- Property svn:executable deleted
-
Property svn:keywords
set to
Id Revision
r33540 r56335 20 20 21 21 /* Use this flag to determine whether we use SDLMain.nib or not */ 22 #define SDL_USE_NIB_FILE022 #define SDL_USE_NIB_FILE 0 23 23 24 24 /* Use this flag to determine whether we use CPS (docking) or not */ 25 #define SDL_USE_CPS125 #define SDL_USE_CPS 1 26 26 #ifdef SDL_USE_CPS 27 27 /* Portions of CPS.h */ 28 28 typedef struct CPSProcessSerNum 29 29 { 30 UInt32lo;31 UInt32hi;30 UInt32 lo; 31 UInt32 hi; 32 32 } CPSProcessSerNum; 33 33 34 extern OSErr 35 extern OSErr 36 extern OSErr 34 extern OSErr CPSGetCurrentProcess( CPSProcessSerNum *psn); 35 extern OSErr CPSEnableForegroundOperation( CPSProcessSerNum *psn, UInt32 _arg2, UInt32 _arg3, UInt32 _arg4, UInt32 _arg5); 36 extern OSErr CPSSetFrontProcess( CPSProcessSerNum *psn); 37 37 38 38 #endif /* SDL_USE_CPS */ … … 89 89 { 90 90 char parentdir[MAXPATHLEN]; 91 92 93 94 95 96 97 98 99 91 CFURLRef url = CFBundleCopyBundleURL(CFBundleGetMainBundle()); 92 CFURLRef url2 = CFURLCreateCopyDeletingLastPathComponent(0, url); 93 if (CFURLGetFileSystemRepresentation(url2, true, (UInt8 *)parentdir, MAXPATHLEN)) { 94 int rc = chdir(parentdir); /* chdir to the binary app's parent */ 95 Assert(rc == 0); 96 } 97 CFRelease(url); 98 CFRelease(url2); 99 } 100 100 101 101 } … … 202 202 static void CustomApplicationMain (int argc, char **argv) 203 203 { 204 NSAutoreleasePool 205 SDLMain 204 NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; 205 SDLMain *sdlMain; 206 206 207 207 /* Ensure the application object is initialised */ -
trunk/src/VBox/Frontends/VirtualBox/src/platform/darwin/UICocoaSpecialControls.mm
r54539 r56335 43 43 UICocoaButton *mRealTarget; 44 44 } 45 /* The next method used to be called initWithObject, but Xcode 4.1 preview 5 45 /* The next method used to be called initWithObject, but Xcode 4.1 preview 5 46 46 cannot cope with that for some reason. Hope this doesn't break anything... */ 47 -(id)initWithObjectAndLionTrouble:(UICocoaButton*)object; 47 -(id)initWithObjectAndLionTrouble:(UICocoaButton*)object; 48 48 -(IBAction)clicked:(id)sender; 49 49 @end … … 215 215 /* Don't execute the selector for Enter & Escape. */ 216 216 if ( commandSelector == @selector(insertNewline:) 217 218 217 || commandSelector == @selector(cancelOperation:)) 218 return YES; 219 219 return NO; 220 220 } -
trunk/src/VBox/Frontends/VirtualBox/src/platform/darwin/VBoxIChatTheaterWrapper.m
-
Property svn:eol-style
set to
native
-
Property svn:eol-style
set to
-
trunk/src/VBox/HostDrivers/Support/freebsd/SUPDrv-freebsd.def
-
Property svn:eol-style
changed from
LF
tonative
-
Property svn:eol-style
changed from
-
trunk/src/VBox/Installer/win/InstallHelper/VBoxInstallHelper.def
r56299 r56335 25 25 InstallNetFlt 26 26 UninstallNetFlt 27 28 27 UninstallNetAdp 28 InstallNetLwf 29 29 UninstallNetLwf 30 30 UninstallTAPInstances … … 36 36 Ndis6UpdateHostOnlyInterfaces 37 37 38 -
trunk/src/VBox/Runtime/common/err/errmsg.sed
r56290 r56335 5 5 6 6 # 7 # Copyright (C) 2006-2015 Oracle Corporation 7 # Copyright (C) 2006-2015 Oracle Corporation 8 8 # 9 9 # This file is part of VirtualBox Open Source Edition (OSE), as -
trunk/src/VBox/Runtime/common/err/errmsgcom.sed
r56290 r56335 4 4 # 5 5 6 # Copyright (C) 2006-2015 Oracle Corporation 6 # Copyright (C) 2006-2015 Oracle Corporation 7 7 # 8 8 # This file is part of VirtualBox Open Source Edition (OSE), as -
trunk/src/VBox/Runtime/r3/win/VBoxRT-openssl-ose.def
r56290 r56335 10 10 11 11 ; 12 ; Copyright (C) 2009-2015 Oracle Corporation 12 ; Copyright (C) 2009-2015 Oracle Corporation 13 13 ; 14 14 ; This file is part of VirtualBox Open Source Edition (OSE), as -
trunk/src/VBox/Runtime/r3/win/VBoxRT-openssl.def
r56290 r56335 10 10 11 11 ; 12 ; Copyright (C) 2009-2015 Oracle Corporation 12 ; Copyright (C) 2009-2015 Oracle Corporation 13 13 ; 14 14 ; This file is part of VirtualBox Open Source Edition (OSE), as -
trunk/src/VBox/Runtime/testcase/tstLdr-4Imp-os2.def
-
Property svn:keywords
changed from
Id
toId Revision
r56290 r56335 3 3 4 4 ; 5 ; Copyright (C) 2006-2015 Oracle Corporation 5 ; Copyright (C) 2006-2015 Oracle Corporation 6 6 ; 7 7 ; This file is part of VirtualBox Open Source Edition (OSE), as -
Property svn:keywords
changed from
-
trunk/src/VBox/Runtime/testcase/tstLdr-4Imp-win.def
-
Property svn:keywords
changed from
Id
toId Revision
r56290 r56335 3 3 4 4 ; 5 ; Copyright (C) 2006-2015 Oracle Corporation 5 ; Copyright (C) 2006-2015 Oracle Corporation 6 6 ; 7 7 ; This file is part of VirtualBox Open Source Edition (OSE), as -
Property svn:keywords
changed from
-
trunk/src/VBox/VMM/VMMR3/VMMR3.def
r56287 r56335 4 4 5 5 ; 6 ; Copyright (C) 2010-2015 Oracle Corporation 6 ; Copyright (C) 2010-2015 Oracle Corporation 7 7 ; 8 8 ; This file is part of VirtualBox Open Source Edition (OSE), as -
trunk/src/VBox/VMM/VMMRC/VMMRCBuiltin.def
r56287 r56335 4 4 ; 5 5 6 ; Copyright (C) 2006-2015 Oracle Corporation 6 ; Copyright (C) 2006-2015 Oracle Corporation 7 7 ; 8 8 ; This file is part of VirtualBox Open Source Edition (OSE), as -
trunk/src/VBox/VMM/testcase/tstMicroRC.def
r56287 r56335 3 3 ; VMM Guest Context Micro Benchmark - Definition file. 4 4 5 ; Copyright (C) 2006-2015 Oracle Corporation 5 ; Copyright (C) 2006-2015 Oracle Corporation 6 6 ; 7 7 ; This file is part of VirtualBox Open Source Edition (OSE), as
Note:
See TracChangeset
for help on using the changeset viewer.