diff options
author | Andrew Innes <andrewi@gnu.org> | 2001-01-02 22:49:42 +0000 |
---|---|---|
committer | Andrew Innes <andrewi@gnu.org> | 2001-01-02 22:49:42 +0000 |
commit | d6bd9edb9126b9cb73367e90d6c68477981a0bf5 (patch) | |
tree | 3987b736c8d5229414b97ed69303083bacf0f0e7 /src/frame.h | |
parent | 1e508979359368415d1ced67781dc34167549a32 (diff) | |
download | emacs-d6bd9edb9126b9cb73367e90d6c68477981a0bf5.tar.gz |
(output_method): Add output_w32_console method.
(FRAME_W32_CONSOLE_P): New macro.
Diffstat (limited to 'src/frame.h')
-rw-r--r-- | src/frame.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/frame.h b/src/frame.h index 5db5ebd3019..f74a70e00cc 100644 --- a/src/frame.h +++ b/src/frame.h @@ -45,6 +45,7 @@ enum output_method output_x_window, output_msdos_raw, output_w32, + output_w32_console, output_mac }; @@ -389,6 +390,7 @@ typedef struct frame *FRAME_PTR; #define FRAME_TERMCAP_P(f) ((f)->output_method == output_termcap) #define FRAME_X_P(f) ((f)->output_method == output_x_window) #define FRAME_W32_P(f) ((f)->output_method == output_w32) +#define FRAME_W32_CONSOLE_P(f) ((f)->output_method == output_w32_console) #define FRAME_MSDOS_P(f) ((f)->output_method == output_msdos_raw) #define FRAME_MAC_P(f) ((f)->output_method == output_mac) |