aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorYAMAMOTO Mitsuharu2005-03-04 11:11:55 +0000
committerYAMAMOTO Mitsuharu2005-03-04 11:11:55 +0000
commit11cd283999e6b0751080833f02c36d9afd4bc121 (patch)
tree3f4d80576c52e9276ac9dc4aaa800587221e3dd9 /src
parent25c9622b81de91b3ac971fe2fb621707b394e073 (diff)
downloademacs-11cd283999e6b0751080833f02c36d9afd4bc121.tar.gz
emacs-11cd283999e6b0751080833f02c36d9afd4bc121.zip
(install_window_handler, remove_window_handler)
(posix_pathname_to_fsspec, fsspec_to_posix_pathname) (mac_clear_font_name_table): New externs.
Diffstat (limited to 'src')
-rw-r--r--src/macterm.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/macterm.h b/src/macterm.h
index f32b13000e6..27cd1f49646 100644
--- a/src/macterm.h
+++ b/src/macterm.h
@@ -607,10 +607,17 @@ extern void XSetWindowBackground P_ ((Display *, WindowPtr, unsigned long));
607extern void mac_draw_line_to_pixmap P_ ((Display *, Pixmap, GC, int, int, 607extern void mac_draw_line_to_pixmap P_ ((Display *, Pixmap, GC, int, int,
608 int, int)); 608 int, int));
609extern void mac_unload_font P_ ((struct mac_display_info *, XFontStruct *)); 609extern void mac_unload_font P_ ((struct mac_display_info *, XFontStruct *));
610extern OSErr install_window_handler P_ ((WindowPtr));
611extern void remove_window_handler P_ ((WindowPtr));
610 612
611#define FONT_TYPE_FOR_UNIBYTE(font, ch) 0 613#define FONT_TYPE_FOR_UNIBYTE(font, ch) 0
612#define FONT_TYPE_FOR_MULTIBYTE(font, ch) 0 614#define FONT_TYPE_FOR_MULTIBYTE(font, ch) 0
613 615
616/* Defined in mac.c. */
617
618extern OSErr posix_pathname_to_fsspec P_ ((const char *, FSSpec *));
619extern OSErr fsspec_to_posix_pathname P_ ((const FSSpec *, char *, int));
620extern void mac_clear_font_name_table P_ ((void));
614#if TARGET_API_MAC_CARBON 621#if TARGET_API_MAC_CARBON
615extern CFStringRef cfstring_create_with_utf8_cstring P_ ((const char *)); 622extern CFStringRef cfstring_create_with_utf8_cstring P_ ((const char *));
616#endif 623#endif