Changeset 6467 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Jan 23, 2008 9:24:21 PM (17 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/Makefile.kmk
r6250 r6467 56 56 endif 57 57 INSTALLS = VirtualBox.nls 58 59 ifeq ($(BUILD_TARGET),os2) 60 DLLS += VBoxHlp 61 ifneq ($(strip $(VBOX_DLL_QT)),) 62 INSTALLS += qt.dll 63 qt.dll_INST = $(INST_BIN) 64 qt.dll_SOURCES += \ 65 $(VBOX_DLL_QT)=>$(not-dir $(VBOX_DLL_QT)) 66 endif 67 endif 68 69 70 # 71 # VBoxHlp - helper DLL for OS/2. 72 # 73 VBoxHlp_ASTOOL = NASM 74 VBoxHlp_ASFLAGS = -f obj 75 VBoxHlp_DEFS = IN_RING3 IN_VBOXHLP 76 VBoxHlp_CXXFLAGS = -fno-exceptions 77 VBoxHlp_LDFLAGS = -nostdlib -los2 78 VBoxHlp_LDFLAGS += -Zlinker option -Zlinker manyautodata 79 VBoxHlp_SOURCES = \ 80 src/os2/VBoxHlp.asm \ 81 src/os2/VBoxHlp.cpp 58 82 59 83 … … 279 303 $(PATH_SDK_DXSDK_LIB)/ddraw.lib \ 280 304 $(PATH_SDK_DXSDK_LIB)/dxguid.lib 305 VirtualBox_LIBS.os2 += $(PATH_DLL)/VBoxHlp$(VBOX_SUFF_DLL) 281 306 ifeq ($(filter-out freebsd linux netbsd openbsd solaris,$(BUILD_TARGET)),) # X11 282 307 VirtualBox_LIBS += $(PATH_DLL)/VBoxKeyboard$(VBOX_SUFF_DLL) -
trunk/src/VBox/Frontends/VirtualBox/include/VBoxConsoleView.h
r6184 r6467 32 32 #include <qkeysequence.h> 33 33 34 #if defined (Q_WS_PM) 35 #include "src/os2/VBoxHlp.h" 36 #endif 37 34 38 #if defined (Q_WS_MAC) 35 39 # include <Carbon/Carbon.h> -
trunk/src/VBox/Frontends/VirtualBox/src/VBoxConsoleView.cpp
r6462 r6467 751 751 #endif 752 752 753 #if defined (Q_WS_PM) 754 bool ok = VBoxHlpInstallKbdHook (0, winId(), WM_CHAR); 755 Assert (ok); 756 NOREF (ok); 757 #endif 758 753 759 #ifdef Q_WS_MAC 754 760 DarwinCursorClearHandle (&mDarwinCursor); … … 758 764 VBoxConsoleView::~VBoxConsoleView() 759 765 { 766 #if defined (Q_WS_PM) 767 bool ok = VBoxHlpUninstallKbdHook (0, winId(), WM_CHAR); 768 Assert (ok); 769 NOREF (ok); 770 #endif 771 760 772 #if defined (Q_WS_WIN) 761 773 if (g_kbdhook) … … 2017 2029 * @param count pointer to the keycodes counter 2018 2030 */ 2019 void VBoxConsoleView::fixModifierState (LONG *codes, uint *count)2031 void VBoxConsoleView::fixModifierState (LONG *codes, uint *count) 2020 2032 { 2021 2033 #if defined(Q_WS_X11)
Note:
See TracChangeset
for help on using the changeset viewer.