| 35 | | |
| 36 | | extern LIB3DSAPI Lib3dsByte lib3ds_byte_read(FILE *f); |
| 37 | | extern LIB3DSAPI Lib3dsWord lib3ds_word_read(FILE *f); |
| 38 | | extern LIB3DSAPI Lib3dsDword lib3ds_dword_read(FILE *f); |
| 39 | | extern LIB3DSAPI Lib3dsIntb lib3ds_intb_read(FILE *f); |
| 40 | | extern LIB3DSAPI Lib3dsIntw lib3ds_intw_read(FILE *f); |
| 41 | | extern LIB3DSAPI Lib3dsIntd lib3ds_intd_read(FILE *f); |
| 42 | | extern LIB3DSAPI Lib3dsFloat lib3ds_float_read(FILE *f); |
| 43 | | extern LIB3DSAPI Lib3dsBool lib3ds_vector_read(Lib3dsVector v, FILE *f); |
| 44 | | extern LIB3DSAPI Lib3dsBool lib3ds_rgb_read(Lib3dsRgb rgb, FILE *f); |
| 45 | | extern LIB3DSAPI Lib3dsBool lib3ds_string_read(char *s, int buflen, FILE *f); |
| 46 | | extern LIB3DSAPI Lib3dsBool lib3ds_byte_write(Lib3dsByte b, FILE *f); |
| 47 | | extern LIB3DSAPI Lib3dsBool lib3ds_word_write(Lib3dsWord w, FILE *f); |
| 48 | | extern LIB3DSAPI Lib3dsBool lib3ds_dword_write(Lib3dsDword d, FILE *f); |
| 49 | | extern LIB3DSAPI Lib3dsBool lib3ds_intb_write(Lib3dsIntb b, FILE *f); |
| 50 | | extern LIB3DSAPI Lib3dsBool lib3ds_intw_write(Lib3dsIntw w, FILE *f); |
| 51 | | extern LIB3DSAPI Lib3dsBool lib3ds_intd_write(Lib3dsIntd d, FILE *f); |
| 52 | | extern LIB3DSAPI Lib3dsBool lib3ds_float_write(Lib3dsFloat l, FILE *f); |
| 53 | | extern LIB3DSAPI Lib3dsBool lib3ds_vector_write(Lib3dsVector v, FILE *f); |
| 54 | | extern LIB3DSAPI Lib3dsBool lib3ds_rgb_write(Lib3dsRgb rgb, FILE *f); |
| 55 | | extern LIB3DSAPI Lib3dsBool lib3ds_string_write(const char *s, FILE *f); |
| | 38 | extern LIB3DSAPI Lib3dsByte lib3ds_byte_read(iostream *strm); |
| | 39 | extern LIB3DSAPI Lib3dsWord lib3ds_word_read(iostream *strm); |
| | 40 | extern LIB3DSAPI Lib3dsDword lib3ds_dword_read(iostream *strm); |
| | 41 | extern LIB3DSAPI Lib3dsIntb lib3ds_intb_read(iostream *strm); |
| | 42 | extern LIB3DSAPI Lib3dsIntw lib3ds_intw_read(iostream *strm); |
| | 43 | extern LIB3DSAPI Lib3dsIntd lib3ds_intd_read(iostream *strm); |
| | 44 | extern LIB3DSAPI Lib3dsFloat lib3ds_float_read(iostream *strm); |
| | 45 | extern LIB3DSAPI Lib3dsBool lib3ds_vector_read(Lib3dsVector v, iostream *strm); |
| | 46 | extern LIB3DSAPI Lib3dsBool lib3ds_rgb_read(Lib3dsRgb rgb, iostream *strm); |
| | 47 | extern LIB3DSAPI Lib3dsBool lib3ds_string_read(char *s, int buflen, iostream *strm); |
| | 48 | extern LIB3DSAPI Lib3dsBool lib3ds_byte_write(Lib3dsByte b, iostream *strm); |
| | 49 | extern LIB3DSAPI Lib3dsBool lib3ds_word_write(Lib3dsWord w, iostream *strm); |
| | 50 | extern LIB3DSAPI Lib3dsBool lib3ds_dword_write(Lib3dsDword d, iostream *strm); |
| | 51 | extern LIB3DSAPI Lib3dsBool lib3ds_intb_write(Lib3dsIntb b, iostream *strm); |
| | 52 | extern LIB3DSAPI Lib3dsBool lib3ds_intw_write(Lib3dsIntw w, iostream *strm); |
| | 53 | extern LIB3DSAPI Lib3dsBool lib3ds_intd_write(Lib3dsIntd d, iostream *strm); |
| | 54 | extern LIB3DSAPI Lib3dsBool lib3ds_float_write(Lib3dsFloat l, iostream *strm); |
| | 55 | extern LIB3DSAPI Lib3dsBool lib3ds_vector_write(Lib3dsVector v, iostream *strm); |
| | 56 | extern LIB3DSAPI Lib3dsBool lib3ds_rgb_write(Lib3dsRgb rgb, iostream *strm); |
| | 57 | extern LIB3DSAPI Lib3dsBool lib3ds_string_write(const char *s, iostream *strm); |