Anyone who is interested in HDF5 Delphi, can download converted API and free
open source demo program from my site: 
http://www.astro.ff.vu.lt/index.php?option=com_content&task=view&id=46&Itemid=63


Tested under Windows 7, 64bit OS and Windows Virtual PC XP mode.
 
exe compiled with Embarcadero RAD studio Delphi XE2 edition, 32 bit
application

dll compiled with Visual studio 2010. 32 bit application.

version 1.8.10. Name: hdf5dll_m.dll (m stands for "modified")
No need for msvcr100.dll and msvcp100.dll
zlib.dll and szip.dll (if needed) must be used from original HDF5 software 
http://www.hdfgroup.org/downloads/index.html


Modifications (to compare with original versions hdf5dll.dll):

Introduced free memory for functions, returning * char
in:
H5public.h


H5_DLL herr_t H5free_mem(char * memToFree);


in:
H5.c

herr_t 
H5free_mem(char * memToFree)
{
    herr_t                  ret_value = SUCCEED;

    FUNC_ENTER_API(FAIL)
    H5TRACE0("e","");

    /* Free memory */
    free(memToFree);

done:
    FUNC_LEAVE_API(ret_value)
}

Best regards,

Saulius



--
View this message in context: 
http://hdf-forum.184993.n3.nabble.com/Porting-HDF5-to-Delphi-tp4025566p4025589.html
Sent from the hdf-forum mailing list archive at Nabble.com.

_______________________________________________
Hdf-forum is for HDF software users discussion.
[email protected]
http://mail.hdfgroup.org/mailman/listinfo/hdf-forum_hdfgroup.org

Reply via email to