[win32] add AS patch#24, remove one other instance of error_no
[p5sagit/p5-mst-13.2.git] / mg.h
diff --git a/mg.h b/mg.h
index c464746..1490470 100644 (file)
--- a/mg.h
+++ b/mg.h
@@ -8,11 +8,11 @@
  */
 
 struct mgvtbl {
-    int                (*svt_get)      _((SV *sv, MAGIC* mg));
-    int                (*svt_set)      _((SV *sv, MAGIC* mg));
-    U32                (*svt_len)      _((SV *sv, MAGIC* mg));
-    int                (*svt_clear)    _((SV *sv, MAGIC* mg));
-    int                (*svt_free)     _((SV *sv, MAGIC* mg));
+    int                (CPERLscope(*svt_get))  _((SV *sv, MAGIC* mg));
+    int                (CPERLscope(*svt_set))  _((SV *sv, MAGIC* mg));
+    U32                (CPERLscope(*svt_len))  _((SV *sv, MAGIC* mg));
+    int                (CPERLscope(*svt_clear))        _((SV *sv, MAGIC* mg));
+    int                (CPERLscope(*svt_free)) _((SV *sv, MAGIC* mg));
 };
 
 struct magic {