diff options
author | Andreas Schwab <schwab@suse.de> | 1997-11-21 14:30:34 +0000 |
---|---|---|
committer | Andreas Schwab <schwab@suse.de> | 1997-11-21 14:30:34 +0000 |
commit | 58068210c55a8d1bfa1007eb94d5d64adff9cf9a (patch) | |
tree | 9c15ec31e52cfb0ccdfb0b40c0db1657680cf2a6 | |
parent | f78433b61e878acf9fe156b88b85a165d29d3a86 (diff) | |
download | emacs-58068210c55a8d1bfa1007eb94d5d64adff9cf9a.tar.gz |
Add declaration of setup_ccl_program and ccl_driver.
-rw-r--r-- | src/ccl.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/ccl.h b/src/ccl.h index 2f019e40d25..86602f2a3c8 100644 --- a/src/ccl.h +++ b/src/ccl.h @@ -52,4 +52,11 @@ struct ccl_spec { /* Alist of fontname patterns vs corresponding CCL program. */ extern Lisp_Object Vfont_ccl_encoder_alist; +/* Setup fields of the structure pointed by CCL appropriately for the + execution of compiled CCL code in VEC (vector of integer). */ +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 *)); + #endif /* _CCL_H */ |