summaryrefslogtreecommitdiff
path: root/libguile/hooks.h
diff options
context:
space:
mode:
Diffstat (limited to 'libguile/hooks.h')
-rw-r--r--libguile/hooks.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/libguile/hooks.h b/libguile/hooks.h
index 48e4f8b16..6944624c2 100644
--- a/libguile/hooks.h
+++ b/libguile/hooks.h
@@ -57,11 +57,11 @@
* both may want to indicate success/failure and return a result.
*/
-typedef enum scm_t_c_hookype_t {
+typedef enum scm_t_c_hook_type {
SCM_C_HOOK_NORMAL,
SCM_C_HOOK_OR,
SCM_C_HOOK_AND
-} scm_t_c_hookype_t;
+} scm_t_c_hook_type;
typedef void *(*scm_t_c_hook_function) (void *hook_data,
void *func_data,
@@ -75,13 +75,13 @@ typedef struct scm_t_c_hook_entry {
typedef struct scm_t_c_hook {
scm_t_c_hook_entry *first;
- scm_t_c_hookype_t type;
+ scm_t_c_hook_type type;
void *data;
} scm_t_c_hook;
SCM_API void scm_c_hook_init (scm_t_c_hook *hook,
void *hook_data,
- scm_t_c_hookype_t type);
+ scm_t_c_hook_type type);
SCM_API void scm_c_hook_add (scm_t_c_hook *hook,
scm_t_c_hook_function func,
void *func_data,