- Timestamp:
- Aug 27, 2007 8:45:40 AM (17 years ago)
- Location:
- trunk/src/VBox/Additions/os2
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/os2/VBoxGuest/VBoxGuest-os2.def
r4071 r4377 17 17 18 18 PHYSICAL DEVICE VBoxGst 19 DESCRIPTION 'VirtualBox .orgGuest Additions Driver for OS/2.'19 DESCRIPTION 'VirtualBox Guest Additions Driver for OS/2.' 20 20 CODE PRELOAD EXECUTEREAD 21 21 DATA PRELOAD -
trunk/src/VBox/Additions/os2/VBoxSF/VBoxSF.def
r3655 r4377 4 4 5 5 LIBRARY VBoxSF 6 DESCRIPTION 'VirtualBox .orgGuest Additions Shared Folder FSD for OS/2.'6 DESCRIPTION 'VirtualBox Guest Additions Shared Folder FSD for OS/2.' 7 7 DATA PRELOAD SINGLE SHARED MOVABLE 8 8 CODE PRELOAD MOVABLE -
trunk/src/VBox/Additions/os2/VBoxSF/VBoxSFA.asm
r3655 r4377 1365 1365 segment DATA16 1366 1366 .szMessage: 1367 db 'VirtualBox .orgGuest Additions IFS for OS/2', 0dh, 0ah, 01367 db 'VirtualBox Guest Additions IFS for OS/2', 0dh, 0ah, 0 1368 1368 segment CODE16 1369 1369 mov bx, .szMessage -
trunk/src/VBox/Additions/os2/VBoxService/VBoxService-os2.def
r4071 r4377 16 16 17 17 NAME VBoxSvc 18 DESCRIPTION 'VirtualBox .orgGuest Additions Service for OS/2.'18 DESCRIPTION 'VirtualBox Guest Additions Service for OS/2.' 19 19 CODE SHARED 20 20 DATA MULTIPLE NONSHARED -
trunk/src/VBox/Additions/os2/VBoxService/VBoxServiceClipboard-os2.cpp
r4071 r4377 168 168 * Create the 'nothing-changed' format. 169 169 */ 170 g_atomNothingChanged = WinAddAtom(WinQuerySystemAtomTable(), (PCSZ)"VirtualBox .orgClipboard Service");170 g_atomNothingChanged = WinAddAtom(WinQuerySystemAtomTable(), (PCSZ)"VirtualBox Clipboard Service"); 171 171 LONG lLastError = WinGetLastError(g_habCtrl); 172 172 if (g_atomNothingChanged == 0) 173 g_atomNothingChanged = WinFindAtom(WinQuerySystemAtomTable(), (PCSZ)"VirtualBox .orgClipboard Service");173 g_atomNothingChanged = WinFindAtom(WinQuerySystemAtomTable(), (PCSZ)"VirtualBox Clipboard Service"); 174 174 if (g_atomNothingChanged) 175 175 { … … 904 904 g_hwndWorker = WinCreateWindow(HWND_OBJECT, /* hwndParent */ 905 905 (PCSZ)"VBoxServiceClipboardClass", /* pszClass */ 906 (PCSZ)"VirtualBox .org Clipboard Service",/* pszName */906 (PCSZ)"VirtualBox Clipboard Service", /* pszName */ 907 907 0, /* flStyle */ 908 908 0, 0, 0, 0, /* x, y, cx, cy */
Note:
See TracChangeset
for help on using the changeset viewer.