From: Kenichi Handa Date: Wed, 15 Apr 1998 07:12:49 +0000 (+0000) Subject: (Vccl_program_table, Qccl_program_idx): Extern them. X-Git-Tag: emacs-20.3~1525 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=1cfae2bf3726cda5f65466d670541ba3b26dea90;p=emacs.git (Vccl_program_table, Qccl_program_idx): Extern them. --- diff --git a/src/ccl.h b/src/ccl.h index c1700c957d9..f6e9586ccba 100644 --- a/src/ccl.h +++ b/src/ccl.h @@ -72,4 +72,11 @@ extern void setup_ccl_program P_ ((struct ccl_program *, Lisp_Object)); extern int ccl_driver P_ ((struct ccl_program *, unsigned char *, unsigned char *, int, int, int *)); +/* Vector of CCL program names vs corresponding program data. */ +extern Lisp_Object Vccl_program_table; + +/* Symbols of ccl program have this property, a value of the property + is an index for Vccl_protram_table. */ +extern Lisp_Object Qccl_program_idx; + #endif /* _CCL_H */