guile-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

guile/guile-core/libguile async.h


From: Marius Vollmer
Subject: guile/guile-core/libguile async.h
Date: Thu, 01 Nov 2001 19:07:51 -0500

CVSROOT:        /cvs
Module name:    guile
Changes by:     Marius Vollmer <address@hidden> 01/11/01 19:07:51

Modified files:
        guile-core/libguile: async.h 

Log message:
        Prefixed each each exported symbol with SCM_API.

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/guile/guile-core/libguile/async.h.diff?cvsroot=OldCVS&tr1=1.21&tr2=1.22&r1=text&r2=text

Patches:
Index: guile/guile-core/libguile/async.h
diff -u guile/guile-core/libguile/async.h:1.21 
guile/guile-core/libguile/async.h:1.22
--- guile/guile-core/libguile/async.h:1.21      Fri Aug 31 06:42:19 2001
+++ guile/guile-core/libguile/async.h   Thu Nov  1 19:07:51 2001
@@ -50,24 +50,24 @@
 
 
 
-extern unsigned int scm_mask_ints;
+SCM_API unsigned int scm_mask_ints;
 
 
 
-extern int scm_asyncs_pending (void);
-extern void scm_async_click (void);
-extern void scm_switch (void);
-extern SCM scm_async (SCM thunk);
-extern SCM scm_system_async (SCM thunk);
-extern SCM scm_async_mark (SCM a);
-extern SCM scm_system_async_mark (SCM a);
-extern SCM scm_run_asyncs (SCM list_of_a);
-extern SCM scm_noop (SCM args);
-extern SCM scm_set_tick_rate (SCM n);
-extern SCM scm_set_switch_rate (SCM n);
-extern SCM scm_unmask_signals (void);
-extern SCM scm_mask_signals (void);
-extern void scm_init_async (void);
+SCM_API int scm_asyncs_pending (void);
+SCM_API void scm_async_click (void);
+SCM_API void scm_switch (void);
+SCM_API SCM scm_async (SCM thunk);
+SCM_API SCM scm_system_async (SCM thunk);
+SCM_API SCM scm_async_mark (SCM a);
+SCM_API SCM scm_system_async_mark (SCM a);
+SCM_API SCM scm_run_asyncs (SCM list_of_a);
+SCM_API SCM scm_noop (SCM args);
+SCM_API SCM scm_set_tick_rate (SCM n);
+SCM_API SCM scm_set_switch_rate (SCM n);
+SCM_API SCM scm_unmask_signals (void);
+SCM_API SCM scm_mask_signals (void);
+SCM_API void scm_init_async (void);
 
 #endif  /* SCM_ASYNC_H */
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]