summaryrefslogtreecommitdiff
path: root/src/w32console.c
diff options
context:
space:
mode:
authorKim F. Storm <storm@cua.dk>2003-03-21 22:56:52 +0000
committerKim F. Storm <storm@cua.dk>2003-03-21 22:56:52 +0000
commite080d3ebbf5823a103ff1f9c7614f05e55d91793 (patch)
tree2289a36a54a56d6edf18cb0b8d983a31701cf0ad /src/w32console.c
parent1853f74c1cede3a355e61ee504ec6289e0c58833 (diff)
downloademacs-e080d3ebbf5823a103ff1f9c7614f05e55d91793.tar.gz
* 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,
return Qt;
}
-#ifndef HAVE_NTGUI
-void
-pixel_to_glyph_coords (struct frame * f, int pix_x, int pix_y, int *x, int *y,
- void *bounds, int noclip)
-{
- *x = pix_x;
- *y = pix_y;
-}
-
-void
-glyph_to_pixel_coords (struct window * f, int x, int y, int *pix_x, int *pix_y)
-{
- *pix_x = x;
- *pix_y = y;
-}
-#endif /* !HAVE_NTGUI */
-
void
syms_of_ntterm ()
{