Changeset 146 for trunk/desktop/class_c/wpfilesystem.c
- Timestamp:
- Dec 3, 2006, 9:54:12 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/desktop/class_c/wpfilesystem.c
r141 r146 45 45 #include "wpfilesystem.ih" 46 46 47 NOM_Scope void NOMLINK impl_WPFileSystem_tstSetFullPath(WPFileSystem* nomSelf, const CORBA_char * fullPath, CORBA_Environment *ev) 47 NOM_Scope void NOMLINK impl_WPFileSystem_tstSetFullPath(WPFileSystem* nomSelf, const CORBA_char * fullPath, 48 CORBA_Environment *ev) 48 49 { 49 /* WPFileSystemData* nomThis=WPFileSystemGetData(nomSelf); */ 50 WPFileSystemData* nomThis=WPFileSystemGetData(nomSelf); 50 51 51 52 nomPrintf("thePath: ---> %s \n", fullPath); 53 _pszFullPath=fullPath; 52 54 } 53 55 56 NOM_Scope PNOMPath NOMLINK impl_WPFileSystem_wpQueryRealName(WPFileSystem* nomSelf, const CORBA_boolean bFullPath, 57 CORBA_Environment *ev) 58 { 59 WPFileSystemData* nomThis=WPFileSystemGetData(nomSelf); 60 PNOMPath nomRetval=NOMPathNew(); 61 62 NOMPath_assignCString(nomRetval, _pszFullPath, ev); 63 64 return nomRetval; 65 } 66
Note:
See TracChangeset
for help on using the changeset viewer.