Author: fperrad
Date: Tue Apr 25 03:12:04 2006
New Revision: 12423

Modified:
   trunk/include/parrot/interpreter.h

Log:
fix linkage broken for tcl_group.dll (on Win32).

Modified: trunk/include/parrot/interpreter.h
==============================================================================
--- trunk/include/parrot/interpreter.h  (original)
+++ trunk/include/parrot/interpreter.h  Tue Apr 25 03:12:04 2006
@@ -443,9 +443,9 @@
 
 PARROT_API void Parrot_set_config_hash_internal(const unsigned char*, unsigned 
int);
 
-INTVAL interpinfo(Interp *interpreter, INTVAL what);
-PMC*   interpinfo_p(Interp *interpreter, INTVAL what);
-STRING*interpinfo_s(Interp *interpreter, INTVAL what);
+PARROT_API INTVAL interpinfo(Interp *interpreter, INTVAL what);
+PARROT_API PMC*   interpinfo_p(Interp *interpreter, INTVAL what);
+PARROT_API STRING*interpinfo_s(Interp *interpreter, INTVAL what);
 
 void runops(Interp *, size_t offset);
 void runops_int(Interp *, size_t offset);

Reply via email to