Changeset 975


Ignore:
Timestamp:
27/11/07 13:17:28 (4 years ago)
Author:
Mark Koennecke
Message:
  • First commit of the new IDL binding refs #100
  • Fixed napi5.c bug #98
  • Fixed unreported NX5putslab issue
Location:
trunk
Files:
30 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/napiconfig.h

    r793 r975  
    1313typedef short int               int16_t; 
    1414typedef int                     int32_t; 
     15typedef long                    int64_t; 
    1516typedef unsigned char           uint8_t; 
    1617typedef unsigned short int      uint16_t; 
    1718typedef unsigned int            uint32_t; 
     19typedef unsigned long           uint64_t; 
    1820 
    1921#endif /* HAVE_STDINT_H */ 
  • trunk/src/napi5.c

    r970 r975  
    971971       myStart[i] = iStart[i]; 
    972972       mySize[i]  = iSize[i]; 
    973        size[i] = maxdims[i]; 
     973       size[i]    = iSize[i]; 
    974974    } 
    975975    if (H5Tget_class(pFile->iCurrentT) == H5T_STRING) 
     
    18161816       } 
    18171817       strcpy(pName, iname); 
     1818       free(iname); 
    18181819       iname = NULL; 
    1819        free(iname); 
    18201820     } else { 
    18211821       strcpy(pName,"What is this?"); 
Note: See TracChangeset for help on using the changeset viewer.