Changeset 224 for trunk/desktop/class_c/wpobject.c
- Timestamp:
- Feb 4, 2007, 1:22:24 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/desktop/class_c/wpobject.c
r209 r224 69 69 /***************************************************************/ 70 70 71 /** 72 \brief Function which implements the wpAllocMem() method of WPObject. 73 */ 71 74 NOM_Scope gpointer NOMLINK impl_WPObject_wpAllocMem(WPObject* nomSelf, const gulong cbBytes, 72 75 gulong* prc, CORBA_Environment *ev) … … 99 102 } 100 103 104 /** 105 \brief Function which implements the wpFreeMem() method of WPObject. 106 */ 101 107 NOM_Scope CORBA_boolean NOMLINK impl_WPObject_wpFreeMem(WPObject* nomSelf, const gpointer pByte, CORBA_Environment *ev) 102 108 { … … 115 121 } 116 122 123 /** 124 \brief Override of nomInit() from NOMObject. 125 */ 117 126 NOM_Scope void NOMLINK impl_WPObject_nomInit(WPObject* nomSelf, CORBA_Environment *ev) 118 127 { … … 146 155 } 147 156 157 /** 158 \brief Function which implements the wpInitData() method of WPObject. 159 */ 148 160 NOM_Scope void NOMLINK impl_WPObject_wpInitData(WPObject* nomSelf, CORBA_Environment *ev) 149 161 { … … 159 171 } 160 172 173 /** 174 \brief Function which implements the wpUnInitData() method of WPObject. 175 */ 161 176 NOM_Scope void NOMLINK impl_WPObject_wpUnInitData(WPObject* nomSelf, CORBA_Environment *ev) 162 177 { … … 189 204 } 190 205 206 /** 207 \brief Function which implements the wpOpen() method of WPObject. 208 */ 191 209 NOM_Scope gpointer NOMLINK impl_WPObject_wpOpen(WPObject* nomSelf, const PWPFolderWindow nomFolder, 192 210 const gulong ulView, const nomId nameSpaceId, … … 250 268 } 251 269 270 /** 271 \brief Function which implements the wpViewObject() method of WPObject. 272 */ 252 273 NOM_Scope gpointer NOMLINK impl_WPObject_wpViewObject(WPObject* nomSelf, const PWPFolderWindow nomFolder, 253 274 const gulong ulView, const nomId nameSpaceId, … … 272 293 } 273 294 295 /** 296 \brief Function which implements the wpSwitchTo() method of WPObject. 297 */ 274 298 NOM_Scope gpointer NOMLINK impl_WPObject_wpSwitchTo(WPObject* nomSelf, const gulong ulView, const nomId nameSpaceId, 275 299 CORBA_Environment *ev) … … 289 313 } 290 314 315 /** 316 \brief Function which implements the wpRegisterView() method of WPObject. 317 */ 291 318 NOM_Scope CORBA_boolean NOMLINK impl_WPObject_wpRegisterView(WPObject* nomSelf, const PNOMWindow pWindow, 292 319 const PNOMString nomStrViewTitle, CORBA_Environment *ev) … … 298 325 } 299 326 327 /** 328 \brief Function which implements the wpAddToObjUseList() method of WPObject. 329 */ 300 330 NOM_Scope CORBA_boolean NOMLINK impl_WPObject_wpAddToObjUseList(WPObject* nomSelf, const PUSEITEM pUseItem, 301 331 CORBA_Environment *ev) … … 317 347 } 318 348 349 /** 350 \brief Function which implements the wpDeleteFromObjUseList() method of WPObject. 351 */ 319 352 NOM_Scope CORBA_boolean NOMLINK impl_WPObject_wpDeleteFromObjUseList(WPObject* nomSelf, const PUSEITEM pUseItem, 320 353 CORBA_Environment *ev)
Note:
See TracChangeset
for help on using the changeset viewer.