[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/src/macgui.h
From: |
YAMAMOTO Mitsuharu |
Subject: |
[Emacs-diffs] Changes to emacs/src/macgui.h |
Date: |
Mon, 18 Jul 2005 01:39:27 -0400 |
Index: emacs/src/macgui.h
diff -c emacs/src/macgui.h:1.19 emacs/src/macgui.h:1.20
*** emacs/src/macgui.h:1.19 Mon Jul 4 16:06:33 2005
--- emacs/src/macgui.h Mon Jul 18 05:39:27 2005
***************
*** 180,194 ****
XFontStruct *font;
} XGCValues;
! typedef XGCValues *GC;
!
! extern XGCValues *
! XCreateGC (void *, Window, unsigned long, XGCValues *);
!
! #define GCForeground 0x01
! #define GCBackground 0x02
! #define GCFont 0x03
! #define GCGraphicsExposures 0
/* Bit Gravity */
--- 180,203 ----
XFontStruct *font;
} XGCValues;
! typedef struct _XGC
! {
! /* Original value. */
! XGCValues xgcv;
!
! /* Cached data members follow. */
!
! /* QuickDraw foreground color. */
! RGBColor fore_color;
!
! /* QuickDraw background color. */
! RGBColor back_color;
! } *GC;
!
! #define GCForeground (1L<<2)
! #define GCBackground (1L<<3)
! #define GCFont (1L<<14)
! #define GCGraphicsExposures 0
/* Bit Gravity */
***************
*** 247,254 ****
#define PAspect (1L << 7) /* program specified min and max
aspect ratios */
#define PBaseSize (1L << 8) /* program specified base for incrementing */
#define PWinGravity (1L << 9) /* program specified window gravity */
-
- extern int XParseGeometry ();
typedef struct {
int x, y;
--- 256,261 ----