aboutsummaryrefslogtreecommitdiffstats
path: root/src/w32console.c
diff options
context:
space:
mode:
authorKim F. Storm2003-03-21 22:56:52 +0000
committerKim F. Storm2003-03-21 22:56:52 +0000
commite080d3ebbf5823a103ff1f9c7614f05e55d91793 (patch)
tree2289a36a54a56d6edf18cb0b8d983a31701cf0ad /src/w32console.c
parent1853f74c1cede3a355e61ee504ec6289e0c58833 (diff)
downloademacs-e080d3ebbf5823a103ff1f9c7614f05e55d91793.tar.gz
emacs-e080d3ebbf5823a103ff1f9c7614f05e55d91793.zip
* xdisp.c (pixel_to_glyph_coords, glyph_to_pixel_coords):
Add generic versions here. Remove system specific versions defined elsewhere.
Diffstat (limited to 'src/w32console.c')
-rw-r--r--src/w32console.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/w32console.c b/src/w32console.c
index c784f804630..5a66ae4af8d 100644
--- a/src/w32console.c
+++ b/src/w32console.c
@@ -705,23 +705,6 @@ DEFUN ("set-cursor-size", Fset_cursor_size, Sset_cursor_size, 1, 1, 0,
705 return Qt; 705 return Qt;
706} 706}
707 707
708#ifndef HAVE_NTGUI
709void
710pixel_to_glyph_coords (struct frame * f, int pix_x, int pix_y, int *x, int *y,
711 void *bounds, int noclip)
712{
713 *x = pix_x;
714 *y = pix_y;
715}
716
717void
718glyph_to_pixel_coords (struct window * f, int x, int y, int *pix_x, int *pix_y)
719{
720 *pix_x = x;
721 *pix_y = y;
722}
723#endif /* !HAVE_NTGUI */
724
725void 708void
726syms_of_ntterm () 709syms_of_ntterm ()
727{ 710{