Page Menu
Home
desp's stash
Search
Configure Global Search
Log In
Files
F629790
AboutGui.cpp
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
746 B
Subscribers
None
AboutGui.cpp
View Options
#include
"AboutGui.h"
#include
"definitions.h"
INT_PTR
AboutGui
::
initDialog
(
HINSTANCE
hInstance
,
HWND
hWndParent
)
{
return
DialogBox
(
hInstance
,
MAKEINTRESOURCE
(
IDD_DLG_ABOUT
),
hWndParent
,
(
DLGPROC
)
aboutDlgProc
);
}
LRESULT
CALLBACK
AboutGui
::
aboutDlgProc
(
HWND
hWnd
,
UINT
uMsg
,
WPARAM
wParam
,
LPARAM
lParam
)
{
switch
(
uMsg
)
{
case
WM_INITDIALOG
:
SetDlgItemText
(
hWnd
,
IDC_STATIC_ABOUT
,
TEXT
(
APPNAME
)
TEXT
(
" "
)
TEXT
(
ARCHITECTURE
)
TEXT
(
" "
)
TEXT
(
APPVERSION
)
TEXT
(
"
\n\n
"
)
TEXT
(
DEVELOPED
)
TEXT
(
"
\n\n\n
"
)
TEXT
(
CREDIT_DISTORM
)
TEXT
(
"
\n
"
)
TEXT
(
CREDIT_YODA
)
TEXT
(
"
\n\n
"
)
TEXT
(
GREETINGS
)
TEXT
(
"
\n\n\n
"
)
TEXT
(
VISIT
));
return
TRUE
;
case
WM_COMMAND
:
switch
(
LOWORD
(
wParam
))
{
case
IDC_BTN_ABOUT_OK
:
EndDialog
(
hWnd
,
0
);
return
TRUE
;
}
}
return
FALSE
;
}
File Metadata
Details
Attached
Mime Type
text/x-c
Expires
Sat, Apr 25, 4:12 PM (1 d, 19 h)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
3e/cb/30c7ed94340e81b8b36bebcdc7b4
Attached To
rSCY Scylla
Event Timeline
Log In to Comment