changeset 11173:298a75c128ad

Additional exported symbols [MSVC]
author Michael Goffioul <michael.goffioul@gmail.com>
date Sun, 31 Oct 2010 16:48:51 +0000
parents 7e8ce65f73cf
children 2114867f2a50
files liboctave/ChangeLog liboctave/dim-vector.h src/ChangeLog src/xnorm.h
diffstat 4 files changed, 14 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- 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  <michael.goffioul@gmail.com>
+
+	* dim-vector.h (class dim_vector): tag with OCTAVE_API.
+
 2010-10-21  John W. Eaton  <jwe@octave.org>
 
 	* Makefile.am (INCS): Include lo-array-gripes.h in the list.
--- 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:
--- 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  <michael.goffioul@gmail.com>
+
+	* xnorm.h (xnorm, xcolnorms, xrownorms, xfrobnorm): tag with
+	OCTINTERP_API.
+
 2010-10-31  Kai Habel  <kai.habel@gmx.de>
 
 	* fltk-backend.cc (find_uimenu_children): Remove template argument.
--- 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