Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
M
mongoose
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
esp
mongoose
Commits
b68b0e3e
Commit
b68b0e3e
authored
Aug 16, 2012
by
Sergey Lyubka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Exit cleanly on WM_CLOSE
parent
cf53f3da
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletion
+8
-1
main.c
main.c
+8
-1
No files found.
main.c
View file @
b68b0e3e
...
@@ -440,6 +440,11 @@ static LRESULT CALLBACK WindowProc(HWND hWnd, UINT msg, WPARAM wParam,
...
@@ -440,6 +440,11 @@ static LRESULT CALLBACK WindowProc(HWND hWnd, UINT msg, WPARAM wParam,
PostMessage
(
hWnd
,
WM_NULL
,
0
,
0
);
PostMessage
(
hWnd
,
WM_NULL
,
0
,
0
);
DestroyMenu
(
hMenu
);
DestroyMenu
(
hMenu
);
break
;
break
;
case
WM_CLOSE
:
mg_stop
(
ctx
);
Shell_NotifyIcon
(
NIM_DELETE
,
&
TrayIcon
);
PostQuitMessage
(
0
);
return
0
;
// We've just sent our own quit message, with proper hwnd.
}
}
break
;
break
;
}
}
...
@@ -473,10 +478,12 @@ int WINAPI WinMain(HINSTANCE hInst, HINSTANCE hPrev, LPSTR cmdline, int show) {
...
@@ -473,10 +478,12 @@ int WINAPI WinMain(HINSTANCE hInst, HINSTANCE hPrev, LPSTR cmdline, int show) {
TrayIcon
.
uCallbackMessage
=
WM_USER
;
TrayIcon
.
uCallbackMessage
=
WM_USER
;
Shell_NotifyIcon
(
NIM_ADD
,
&
TrayIcon
);
Shell_NotifyIcon
(
NIM_ADD
,
&
TrayIcon
);
while
(
GetMessage
(
&
msg
,
hWnd
,
0
,
0
))
{
while
(
GetMessage
(
&
msg
,
hWnd
,
0
,
0
)
>
0
)
{
TranslateMessage
(
&
msg
);
TranslateMessage
(
&
msg
);
DispatchMessage
(
&
msg
);
DispatchMessage
(
&
msg
);
}
}
return
msg
.
wParam
;
}
}
#else
#else
int
main
(
int
argc
,
char
*
argv
[])
{
int
main
(
int
argc
,
char
*
argv
[])
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment