diff options
author | Daiki Ueno <ueno@gnu.org> | 2014-07-16 13:31:31 +0900 |
---|---|---|
committer | Daiki Ueno <ueno@gnu.org> | 2014-07-16 13:31:31 +0900 |
commit | 7ec2c0effc0ad7ed27ed9b040e75bd953d65fedc (patch) | |
tree | 0f57231da6e2497a2307843d025fcf8f3d1a67eb /src/w32gui.h | |
parent | 1c6fefc9557ac174cea6b2d41f0eb3bdb1cced3a (diff) | |
download | emacs-7ec2c0effc0ad7ed27ed9b040e75bd953d65fedc.tar.gz emacs-7ec2c0effc0ad7ed27ed9b040e75bd953d65fedc.tar.bz2 emacs-7ec2c0effc0ad7ed27ed9b040e75bd953d65fedc.zip |
Move back the XChar2b definition to w32gui.h and nsgui.h
Fix the last change. XChar2b still needs to be defined platform dependently,
to match with the argument types of drawing functions.
Diffstat (limited to 'src/w32gui.h')
-rw-r--r-- | src/w32gui.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/w32gui.h b/src/w32gui.h index 8642c479be8..40a8a00346d 100644 --- a/src/w32gui.h +++ b/src/w32gui.h @@ -52,6 +52,8 @@ typedef HCURSOR Cursor; #define No_Cursor (0) +#define XChar2b wchar_t + /* Windows equivalent of XImage. */ typedef struct _XImage |