# HG changeset patch # User Michael Goffioul # Date 1288543731 0 # Node ID 298a75c128ad1f4acd22dc5afec5bf4422fafab3 # Parent 7e8ce65f73cf27decb8395c0e7300bdde4cb9758 Additional exported symbols [MSVC] diff -r 7e8ce65f73cf -r 298a75c128ad liboctave/ChangeLog --- a/liboctave/ChangeLog Sun Oct 31 07:30:15 2010 -0700 +++ b/liboctave/ChangeLog Sun Oct 31 16:48:51 2010 +0000 @@ -1,3 +1,7 @@ +2010-10-31 Michael Goffioul + + * dim-vector.h (class dim_vector): tag with OCTAVE_API. + 2010-10-21 John W. Eaton * Makefile.am (INCS): Include lo-array-gripes.h in the list. diff -r 7e8ce65f73cf -r 298a75c128ad liboctave/dim-vector.h --- a/liboctave/dim-vector.h Sun Oct 31 07:30:15 2010 -0700 +++ b/liboctave/dim-vector.h Sun Oct 31 16:48:51 2010 +0000 @@ -50,6 +50,7 @@ // (reinterpret_cast is assumed to be an inexpensive operation). class +OCTAVE_API dim_vector { private: diff -r 7e8ce65f73cf -r 298a75c128ad src/ChangeLog --- a/src/ChangeLog Sun Oct 31 07:30:15 2010 -0700 +++ b/src/ChangeLog Sun Oct 31 16:48:51 2010 +0000 @@ -1,3 +1,8 @@ +2010-10-31 Michael Goffioul + + * xnorm.h (xnorm, xcolnorms, xrownorms, xfrobnorm): tag with + OCTINTERP_API. + 2010-10-31 Kai Habel * fltk-backend.cc (find_uimenu_children): Remove template argument. diff -r 7e8ce65f73cf -r 298a75c128ad src/xnorm.h --- a/src/xnorm.h Sun Oct 31 07:30:15 2010 -0700 +++ b/src/xnorm.h Sun Oct 31 16:48:51 2010 +0000 @@ -29,9 +29,9 @@ class octave_value; -extern octave_value xnorm (const octave_value& x, const octave_value& p); -extern octave_value xcolnorms (const octave_value& x, const octave_value& p); -extern octave_value xrownorms (const octave_value& x, const octave_value& p); -extern octave_value xfrobnorm (const octave_value& x); +extern OCTINTERP_API octave_value xnorm (const octave_value& x, const octave_value& p); +extern OCTINTERP_API octave_value xcolnorms (const octave_value& x, const octave_value& p); +extern OCTINTERP_API octave_value xrownorms (const octave_value& x, const octave_value& p); +extern OCTINTERP_API octave_value xfrobnorm (const octave_value& x); #endif