Mercurial > hg > octave-nkf
diff liboctave/data-conv.h @ 6108:143b556ce725
[project @ 2006-10-27 01:45:54 by jwe]
author | jwe |
---|---|
date | Fri, 27 Oct 2006 01:45:56 +0000 |
parents | 22e23bee74c8 |
children | 93c65f2a5668 |
line wrap: on
line diff
--- a/liboctave/data-conv.h +++ b/liboctave/data-conv.h @@ -29,6 +29,7 @@ #include "mach-info.h" class +OCTAVE_API oct_data_conv { public: @@ -91,28 +92,28 @@ LS_LONG = 9 }; -extern void +extern OCTAVE_API void do_double_format_conversion (void *data, int len, oct_mach_info::float_format from_fmt, oct_mach_info::float_format to_fmt = oct_mach_info::native_float_format ()); -extern void +extern OCTAVE_API void do_float_format_conversion (void *data, int len, oct_mach_info::float_format from_fmt, oct_mach_info::float_format to_fmt = oct_mach_info::native_float_format ()); -extern void +extern OCTAVE_API void do_float_format_conversion (void *data, size_t sz, int len, oct_mach_info::float_format from_fmt, oct_mach_info::float_format to_fmt = oct_mach_info::native_float_format ()); -extern void +extern OCTAVE_API void read_doubles (std::istream& is, double *data, save_type type, int len, bool swap, oct_mach_info::float_format fmt); -extern void +extern OCTAVE_API void write_doubles (std::ostream& os, const double *data, save_type type, int len); #endif