Changeset 188 for trunk/desktop/class_c/wpobject.c
- Timestamp:
- Jan 13, 2007, 11:54:02 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/desktop/class_c/wpobject.c
r186 r188 52 52 /* We have to declare this here to make PNOMFolderWindow known 53 53 to wpDisplayMenu(). */ 54 #ifndef NOMFolderWindow55 typedef struct NOMFolderWindow_struct {54 #ifndef WPFolderWindow 55 typedef struct WPFolderWindow_struct { 56 56 struct nomMethodTabStruct *mtab; 57 57 gulong body[1]; 58 } NOMFolderWindowObj;59 #define NOMFolderWindow NOMFolderWindowObj60 typedef NOMFolderWindow *PNOMFolderWindow;58 } WPFolderWindowObj; 59 #define WPFolderWindow WPFolderWindowObj 60 typedef WPFolderWindow *PWPFolderWindow; 61 61 #endif 62 62 … … 74 74 75 75 #include "wpobject.ih" 76 #include " nomfolderwindow.h"76 #include "wpfolderwindow.h" 77 77 #include "wpnotebook.h" 78 78 … … 205 205 } 206 206 207 NOM_Scope gpointer NOMLINK impl_WPObject_wpOpen(WPObject* nomSelf, const P NOMFolderWindow nomFolder,207 NOM_Scope gpointer NOMLINK impl_WPObject_wpOpen(WPObject* nomSelf, const PWPFolderWindow nomFolder, 208 208 const gulong ulView, const gpointer pParam, CORBA_Environment *ev) 209 209 { … … 249 249 } 250 250 251 NOM_Scope gpointer NOMLINK impl_WPObject_wpViewObject(WPObject* nomSelf, const PNOMFolderWindow nomFolder, const gulong ulView, const gpointer pParam, CORBA_Environment *ev) 251 NOM_Scope gpointer NOMLINK impl_WPObject_wpViewObject(WPObject* nomSelf, const PWPFolderWindow nomFolder, 252 const gulong ulView, const gpointer pParam, 253 CORBA_Environment *ev) 252 254 { 253 255 /* WPObjectData* nomThis=WPObjectGetData(nomSelf); */ … … 590 592 591 593 592 NOM_Scope PNOMMenu NOMLINK impl_WPObject_wpDisplayMenu(WPObject* nomSelf, const P NOMFolderWindow nomFolder,594 NOM_Scope PNOMMenu NOMLINK impl_WPObject_wpDisplayMenu(WPObject* nomSelf, const PWPFolderWindow nomFolder, 593 595 const gpointer gReserved, const CORBA_unsigned_long ulMenuType, 594 596 const CORBA_unsigned_long ulReserved, CORBA_Environment *ev) … … 610 612 } 611 613 612 NOM_Scope void NOMLINK impl_WPObject_wpModifyMenu(WPObject* nomSelf, const P NOMFolderWindow nomFolder,614 NOM_Scope void NOMLINK impl_WPObject_wpModifyMenu(WPObject* nomSelf, const PWPFolderWindow nomFolder, 613 615 const PNOMMenu nomMenu, const CORBA_unsigned_long ulMenuType, 614 616 CORBA_Environment *ev) … … 627 629 } 628 630 629 NOM_Scope void NOMLINK impl_WPObject_wpFilterMenu(WPObject* nomSelf, const P NOMFolderWindow nomFolder,631 NOM_Scope void NOMLINK impl_WPObject_wpFilterMenu(WPObject* nomSelf, const PWPFolderWindow nomFolder, 630 632 const PNOMMenu nomMenu, const CORBA_unsigned_long ulMenuType, 631 633 const CORBA_unsigned_long ulFlags, CORBA_Environment *ev) … … 635 637 } 636 638 637 NOM_Scope CORBA_boolean NOMLINK impl_WPObject_wpMenuItemSelected(WPObject* nomSelf, const P NOMFolderWindow nomFolder,639 NOM_Scope CORBA_boolean NOMLINK impl_WPObject_wpMenuItemSelected(WPObject* nomSelf, const PWPFolderWindow nomFolder, 638 640 const PNOMMenuItem nomMenuItem, 639 641 CORBA_Environment *ev)
Note:
See TracChangeset
for help on using the changeset viewer.