diff options
Diffstat (limited to 'src/dispextern.h')
| -rw-r--r-- | src/dispextern.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/dispextern.h b/src/dispextern.h index e6064476d0c..180820d4b80 100644 --- a/src/dispextern.h +++ b/src/dispextern.h | |||
| @@ -69,6 +69,14 @@ typedef Pixmap XImagePtr; | |||
| 69 | typedef XImagePtr XImagePtr_or_DC; | 69 | typedef XImagePtr XImagePtr_or_DC; |
| 70 | #endif | 70 | #endif |
| 71 | 71 | ||
| 72 | #ifdef HAVE_NS | ||
| 73 | #include "nsgui.h" | ||
| 74 | /* following typedef needed to accomodate the MSDOS port, believe it or not */ | ||
| 75 | typedef struct ns_display_info Display_Info; | ||
| 76 | typedef Pixmap XImagePtr; | ||
| 77 | typedef XImagePtr XImagePtr_or_DC; | ||
| 78 | #endif | ||
| 79 | |||
| 72 | #ifndef NativeRectangle | 80 | #ifndef NativeRectangle |
| 73 | #define NativeRectangle int | 81 | #define NativeRectangle int |
| 74 | #endif | 82 | #endif |
| @@ -1563,6 +1571,13 @@ struct face | |||
| 1563 | /* If non-zero, use overstrike (to simulate bold-face). */ | 1571 | /* If non-zero, use overstrike (to simulate bold-face). */ |
| 1564 | unsigned overstrike : 1; | 1572 | unsigned overstrike : 1; |
| 1565 | 1573 | ||
| 1574 | /* NOTE: this is not used yet, but eventually this impl should be done | ||
| 1575 | similarly to overstrike */ | ||
| 1576 | #ifdef HAVE_NS | ||
| 1577 | /* If non-zero, use geometric rotation (to simulate italic). */ | ||
| 1578 | unsigned synth_ital : 1; | ||
| 1579 | #endif | ||
| 1580 | |||
| 1566 | /* Next and previous face in hash collision list of face cache. */ | 1581 | /* Next and previous face in hash collision list of face cache. */ |
| 1567 | struct face *next, *prev; | 1582 | struct face *next, *prev; |
| 1568 | 1583 | ||