Author: tewk
Date: Sat Feb  3 16:50:31 2007
New Revision: 16888

Modified:
   trunk/include/parrot/register.h
   trunk/runtime/parrot/library/String/   (props changed)

Log:
Fix windows so it builds.  Parrot_push/pop_context should be exported.


Modified: trunk/include/parrot/register.h
==============================================================================
--- trunk/include/parrot/register.h     (original)
+++ trunk/include/parrot/register.h     Sat Feb  3 16:50:31 2007
@@ -77,8 +77,8 @@
 
 struct Parrot_Context * Parrot_alloc_context(Interp *, INTVAL *n_regs_used);
 struct Parrot_Context * Parrot_dup_context(Interp *, struct Parrot_Context 
*old);
-struct Parrot_Context * Parrot_push_context(Interp *, INTVAL *n_regs_used);
-void   Parrot_pop_context(Interp *);
+PARROT_API struct Parrot_Context * Parrot_push_context(Interp *, INTVAL 
*n_regs_used);
+PARROT_API void   Parrot_pop_context(Interp *);
 PARROT_API void Parrot_free_context(Interp *, struct Parrot_Context *, int 
re_use);
 PARROT_API void Parrot_set_context_threshold(Interp *, struct Parrot_Context 
*);
 void parrot_gc_context(Interp *);

Reply via email to