home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / trimdll1.zip / KGSEXT.CPP < prev    next >
C/C++ Source or Header  |  1997-04-06  |  1KB  |  38 lines

  1. /*******************************************************************************
  2.   How to rebuild the IOC DLL without Drag and Drop but *with* Toolbar Support
  3.  
  4. *** THIS SOURCE CODE IS PROVIDED WITHOUT ANY SUPPORT OR WARRANTY OF ANY KIND ***
  5.  
  6.     When you try to rebuild CPPOOU3.DLL with out the IDM*.OBJ modules, you will
  7.     get three unresolved externals from the Toolbar object modules.
  8.     Compile this source file icc --c /Gm+ KGSEXT.CPP and add the object to the
  9.     CPPOOU3.RSP to resolve the external references.
  10.     Don't forget to disable all drag and drop abilities in your toolbars.
  11.  
  12.     If you still have questions, contact me.
  13.  
  14.     Hajo Kirchhoff
  15.     Kirchhoff & Grill Softwareentwicklung GmbH, Germany
  16.     100024,712@compuserve.com
  17.     hk@kgs.lst.de                            /* altered 6.4.97 fm */
  18.     http://www.kgs.lst.de
  19. ********************************************************************************/
  20.  
  21. #include <iwindow.hpp>
  22.  
  23. IDMItemProvider* IWindow::itemProvider() const
  24. {
  25.    IASSERT("DM Support disabled but IWindow::itemProvider called"==0);
  26.    return 0;
  27. }
  28.  
  29. #include <idmhndlr.hpp>
  30.  
  31. void  IDMHandler::enableDropOn(IToolBar*)
  32. {
  33. }
  34.  
  35. void  IDMHandler::enableDragDropFor(IToolBarButton*)
  36. {
  37. }
  38.