# HG changeset patch # User jwe # Date 1196103235 0 # Node ID 83cbff53bc9628a08a04965a235528187d001df9 # Parent 2f915d6cac3de37f983ed4fbedb771e9e77f0528 [project @ 2007-11-26 18:53:54 by jwe] diff --git a/src/ChangeLog b/src/ChangeLog --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2007-11-26 Michael Goffioul + + * builtins.h (install_builtins): Tag with OCTINTERP_API. + * toplev.h (octave_interpreter_ready, octave_initialized): Likewise. + 2007-11-14 John W. Eaton * mex.cc (mex::foreign_memlist): New data member. diff --git a/src/builtins.h b/src/builtins.h --- a/src/builtins.h +++ b/src/builtins.h @@ -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 diff --git a/src/toplev.h b/src/toplev.h --- a/src/toplev.h +++ b/src/toplev.h @@ -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