]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix last change.
authorJason Rumney <jasonr@gnu.org>
Wed, 16 Jul 2008 10:06:08 +0000 (10:06 +0000)
committerJason Rumney <jasonr@gnu.org>
Wed, 16 Jul 2008 10:06:08 +0000 (10:06 +0000)
src/ChangeLog
src/w32gui.h

index 091b5b8776cbc3a0dbfc746bebf2a4940d92f948..4b357aa2bb96e79e3399a9f000238ab75542506b 100644 (file)
@@ -1,3 +1,7 @@
+2008-07-16  Jason Rumney  <jasonr@gnu.org>
+
+        * w32gui.h: Repeat 26 June changes lost by last change.
+
 2008-07-16  Dan Nicolaescu  <dann@ics.uci.edu>
 
        * systty.h: Remove code for Aix on 386, unsupported platform.
index d9f09e33134109aaad06319375fa1a7b0f280285..595796e4c01c89fcbc45261625fe3d79ce2c5ed8 100644 (file)
@@ -21,19 +21,6 @@ along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.  */
 #define EMACS_W32GUI_H
 #include <windows.h>
 
-#include "w32bdf.h"
-
-/* Emulate XCharStruct.  */
-typedef struct _XCharStruct
-{
-  short rbearing;
-  short lbearing;
-  short width;
-  short ascent;
-  short descent;
-} XCharStruct;
-
-
 /* Local memory management for menus.  */
 #define local_heap (GetProcessHeap ())
 #define local_alloc(n) (HeapAlloc (local_heap, HEAP_ZERO_MEMORY, (n)))
@@ -42,30 +29,6 @@ typedef struct _XCharStruct
 #define malloc_widget_value() ((widget_value *) local_alloc (sizeof (widget_value)))
 #define free_widget_value(wv) (local_free ((wv)))
 
-
-enum w32_char_font_type
-{
-  UNKNOWN_FONT = 0 /* FONT_TYPE_UNKNOWN */,
-  ANSI_FONT,
-  UNICODE_FONT,
-  BDF_1D_FONT,
-  BDF_2D_FONT
-};
-
-typedef struct W32FontStruct {
-  enum w32_char_font_type font_type;
-  TEXTMETRIC tm;
-  HFONT hfont;
-  bdffont *bdf;
-  int double_byte_p;
-  XCharStruct max_bounds;
-  XCharStruct scratch;
-  /* Only store info for ascii chars, if not fixed pitch.  */
-  XCharStruct * per_char;
-} W32FontStruct;
-
-typedef struct W32FontStruct XFontStruct;
-
 /* Emulate X GC's by keeping color and font info in a structure.  */
 typedef struct _XGCValues
 {