Skip to content

Commit

Permalink
Prepare for version 1.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinPayne committed Sep 7, 2013
1 parent e27e5c3 commit 1cbea49
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
6 changes: 5 additions & 1 deletion Readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,10 @@ sending any questions.

Changelog

2013�09-07: Version 1.2

� Removed superfluous LOWORD() macros which had been applied to WPARAMs.

2013�08�26: Version 1.1

� Added a VERSIONINFO resource to the executable, so that version information
Expand All @@ -55,4 +59,4 @@ Changelog
� First release.

Martin Payne
2013�08�26
2013�09-07
8 changes: 4 additions & 4 deletions callback.c
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ LRESULT CALLBACK MainWndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam)
{
case WM_COMMAND:
{
switch (LOWORD(wParam))
switch (wParam)
{
case ID_HELP_ABOUT:
{
Expand Down Expand Up @@ -39,7 +39,7 @@ LRESULT CALLBACK MainWndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam)

case WM_SYSCOMMAND:
{
switch (LOWORD(wParam))
switch (wParam)
{
case ID_HELP_ABOUT:
{
Expand Down Expand Up @@ -81,12 +81,12 @@ BOOL CALLBACK AboutDialogProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lPa
{
case WM_COMMAND:
{
switch (LOWORD(wParam))
switch (wParam)
{
case IDOK:
case IDCANCEL:
{
EndDialog(hwndDlg, LOWORD(wParam));
EndDialog(hwndDlg, wParam);
return TRUE;
}
}
Expand Down

0 comments on commit 1cbea49

Please sign in to comment.