Ignore:
Timestamp:
Feb 11, 2007, 4:52:34 PM (19 years ago)
Author:
cinc
Message:

Started drag and drop implementation. Some dox additions.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/desktop/class_c/wpobject.c

    r224 r237  
    1616* The Initial Developer of the Original Code is
    1717* netlabs.org: Chris Wohlgemuth <cinc-ml@netlabs.org>.
    18 * Portions created by the Initial Developer are Copyright (C) 2005-2006
     18* Portions created by the Initial Developer are Copyright (C) 2005-2007
    1919* the Initial Developer. All Rights Reserved.
    2020*
     
    798798
    799799
    800 
    801 
     800NOM_Scope gulong NOMLINK impl_WPObject_wpDragOver(WPObject* nomSelf, const gpointer containerHandle,
     801                                                  const gpointer pDragInfo, CORBA_Environment *ev)
     802{
     803/* WPObjectData* nomThis=WPObjectGetData(nomSelf); */
     804
     805  return 0; /* Don't allow drop */
     806}
     807
     808NOM_Scope gulong NOMLINK impl_WPObject_wpDrop(WPObject* nomSelf, const gpointer containerHandle,
     809                                              const gpointer pDragInfo, CORBA_Environment *ev)
     810{
     811/* WPObjectData* nomThis=WPObjectGetData(nomSelf); */
     812
     813  DosBeep(500, 100);
     814  return 0;
     815}
     816
     817
Note: See TracChangeset for help on using the changeset viewer.