diff options
Diffstat (limited to 'nt/runemacs.c')
-rw-r--r-- | nt/runemacs.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/nt/runemacs.c b/nt/runemacs.c index 4a3d4a9536d..f4d72062620 100644 --- a/nt/runemacs.c +++ b/nt/runemacs.c @@ -43,7 +43,7 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ #include <string.h> #include <malloc.h> -static void set_user_model_id (); +static void set_user_model_id (void); int WINAPI WinMain (HINSTANCE hSelf, HINSTANCE hPrev, LPSTR cmdline, int nShow) @@ -174,7 +174,8 @@ error: return 1; } -void set_user_model_id () +void +set_user_model_id (void) { HMODULE shell; HRESULT (WINAPI * set_user_model) (wchar_t * id); |