Changeset 239 for trunk/nom/class_c


Ignore:
Timestamp:
Mar 6, 2007, 8:05:58 PM (18 years ago)
Author:
cinc
Message:

Synching before applying WC2007 patches

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/nom/class_c/nomclassmanager.c

    r223 r239  
    5050#include "nomclassmanager.ih"
    5151
     52#include "nomfilepath.h"
    5253
    5354/**
     
    255256}
    256257
     258NOM_Scope CORBA_string NOMLINK impl_NOMClassMgr_nomQueryDLLForClass(NOMClassMgr* nomSelf,
     259                                                                    const CORBA_char * chrClassName,
     260                                                                    CORBA_Environment *ev)
     261{
     262/* NOMClassMgrData* nomThis=NOMClassMgrGetData(nomSelf); */
     263  NOMPath* thePath;
     264
     265  if(!chrClassName)
     266    return NULL;
     267
     268  if((thePath=NOMPathNew())==NULLHANDLE)
     269    return NULL;
     270
     271  /* We probably use the home dir later */
     272  thePath=NOMPath_assignCString(thePath, g_get_current_dir(), NULL);
     273  thePath=NOMPath_appendCString(thePath, "classlist.ini", NULL);
     274
     275  return NULL;
     276}
     277
     278
    257279static
    258280int nomClassMgrCompareFunc(gconstpointer a, gconstpointer b)
Note: See TracChangeset for help on using the changeset viewer.