diff options
author | Jason Rumney <jasonr@gnu.org> | 2009-07-03 15:32:02 +0000 |
---|---|---|
committer | Jason Rumney <jasonr@gnu.org> | 2009-07-03 15:32:02 +0000 |
commit | 0a3472c7b938d9469e9c4b304798c7eacf8b3330 (patch) | |
tree | 15faa75a8a443eca31a744f3f982d336e8f16084 /nt | |
parent | f0dbdc25ca83b4d82c9626e050c05580f5bc8672 (diff) | |
download | emacs-0a3472c7b938d9469e9c4b304798c7eacf8b3330.tar.gz |
* w32term.c (w32_initialize): Use standard types.
* runemacs.c (set_user_model_id): Use standard types.
* emacsclient.c (w32_set_user_model_id): Use standard types.
Diffstat (limited to 'nt')
-rw-r--r-- | nt/ChangeLog | 4 | ||||
-rw-r--r-- | nt/runemacs.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/nt/ChangeLog b/nt/ChangeLog index e4c95671aff..7843154f33f 100644 --- a/nt/ChangeLog +++ b/nt/ChangeLog @@ -1,3 +1,7 @@ +2009-07-03 Jason Rumney <jasonr@gnu.org> + + * runemacs.c (set_user_model_id): Use standard types. + 2009-06-30 Jason Rumney <jasonr@gnu.org> * runemacs.c (set_user_model_id): New function. diff --git a/nt/runemacs.c b/nt/runemacs.c index aba1d439957..ab9620c0b0b 100644 --- a/nt/runemacs.c +++ b/nt/runemacs.c @@ -177,7 +177,7 @@ error: void set_user_model_id () { HMODULE shell; - HRESULT (WINAPI * set_user_model) (PCWSTR); + HRESULT (WINAPI * set_user_model) (wchar_t * id); /* On Windows 7 and later, we need to set the user model ID to associate emacsclient launched files with Emacs frames |