changeset 7185:83cbff53bc96

[project @ 2007-11-26 18:53:54 by jwe]
author jwe
date Mon, 26 Nov 2007 18:53:55 +0000
parents 2f915d6cac3d
children 800f1fd3ffb8
files src/ChangeLog src/builtins.h src/toplev.h
diffstat 3 files changed, 8 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/src/ChangeLog	Mon Nov 26 18:45:02 2007 +0000
+++ b/src/ChangeLog	Mon Nov 26 18:53:55 2007 +0000
@@ -1,3 +1,8 @@
+2007-11-26  Michael Goffioul <michael.goffioul@gmail.com>
+
+	* builtins.h (install_builtins): Tag with OCTINTERP_API.
+	* toplev.h (octave_interpreter_ready, octave_initialized): Likewise.
+
 2007-11-14  John W. Eaton  <jwe@octave.org>
 
 	* mex.cc (mex::foreign_memlist): New data member.
--- a/src/builtins.h	Mon Nov 26 18:45:02 2007 +0000
+++ b/src/builtins.h	Mon Nov 26 18:53:55 2007 +0000
@@ -23,7 +23,7 @@
 #if !defined (octave_builtins_h)
 #define octave_builtins_h 1
 
-extern void install_builtins (void);
+extern OCTINTERP_API void install_builtins (void);
 
 #endif
 
--- a/src/toplev.h	Mon Nov 26 18:45:02 2007 +0000
+++ b/src/toplev.h	Mon Nov 26 18:53:55 2007 +0000
@@ -52,10 +52,10 @@
 
 // TRUE means we are ready to interpret commands, but not everything
 // is ready for interactive use.
-extern bool octave_interpreter_ready;
+extern OCTINTERP_API bool octave_interpreter_ready;
 
 // TRUE means we've processed all the init code and we are good to go.
-extern bool octave_initialized;
+extern OCTINTERP_API bool octave_initialized;
 
 class
 octave_call_stack