Changeset 1220 for trunk/src/napi.c


Ignore:
Timestamp:
17/03/09 11:06:04 (3 years ago)
Author:
Mark Koennecke
Message:
  • Added a NXgetrawinfo function in the internal section. This function does not do any special processing for strings and rather returns the raw data size as read from file for strings. This is a special for Paul Kienzle. I marked this function as internal becuase for all normal cases, NXgetinfo as is does the right thing. Refs #173 We may even consider supressing documentation for NXgetrawinfo.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/napi.c

    r1217 r1220  
    857857    return status; 
    858858  } 
    859      
     859/*---------------------------------------------------------------------------*/ 
     860  NXstatus  NXgetrawinfo (NXhandle fid, int *rank,  
     861                                    int dimension[], int *iType) 
     862  { 
     863    int status; 
     864    char *pPtr = NULL; 
     865 
     866    pNexusFunction pFunc = handleToNexusFunc(fid); 
     867    status = pFunc->nxgetinfo(pFunc->pNexusData, rank, dimension, iType); 
     868    return status; 
     869  } 
    860870  /*-------------------------------------------------------------------------*/ 
    861871  
Note: See TracChangeset for help on using the changeset viewer.