* 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.
This commit is contained in:
Jason Rumney 2009-07-03 15:32:02 +00:00
parent f0dbdc25ca
commit 0a3472c7b9
6 changed files with 15 additions and 3 deletions

View file

@ -1,3 +1,7 @@
2009-07-03 Jason Rumney <jasonr@gnu.org>
* emacsclient.c (w32_set_user_model_id): Use standard types.
2009-07-03 Eli Zaretskii <eliz@gnu.org>
* makefile.w32-in (WINNT_SUPPORT): Add common-win.elc, like

View file

@ -396,7 +396,7 @@ void
w32_set_user_model_id ()
{
HMODULE shell;
HRESULT (WINAPI * set_user_model) (PWCSTR);
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

View file

@ -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.

View file

@ -177,7 +177,7 @@ WinMain (HINSTANCE hSelf, HINSTANCE hPrev, LPSTR cmdline, int nShow)
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

View file

@ -1,3 +1,7 @@
2009-07-03 Jason Rumney <jasonr@gnu.org>
* w32term.c (w32_initialize): Use standard types.
2009-07-03 Eli Zaretskii <eliz@gnu.org>
* dired.c (Ffile_attributes): Decode user and group names by the

View file

@ -6341,7 +6341,7 @@ static void
w32_initialize ()
{
HANDLE shell;
HRESULT (WINAPI * set_user_model) (PCWSTR);
HRESULT (WINAPI * set_user_model) (wchar_t * id);
baud_rate = 19200;