Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Gautam Chitnis
web-ui-redesign
Commits
7f2b618b
Commit
7f2b618b
authored
Nov 26, 2005
by
gbazin
Browse files
* modules/gui/wince/interface.cpp: include extra version information in the about dialog box.
parent
77a238de
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/gui/wince/interface.cpp
View file @
7f2b618b
...
...
@@ -495,8 +495,12 @@ LRESULT Interface::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp )
string
about
=
(
string
)
"VLC media player "
PACKAGE_VERSION
+
_
(
"
\n
(WinCE interface)
\n\n
"
)
+
_
(
"(c) 1996-2005 - the VideoLAN Team
\n\n
"
)
+
_
(
"Compiled by "
)
+
VLC_CompileBy
()
+
"@"
+
VLC_CompileHost
()
+
"."
+
VLC_CompileDomain
()
+
".
\n
"
+
_
(
"Compiler: "
)
+
VLC_Compiler
()
+
".
\n
"
+
_
(
"Based on SVN revision: "
)
+
VLC_Changeset
()
+
".
\n\n
"
+
_
(
"The VideoLAN team <videolan@videolan.org>
\n
"
"http://www.videolan.org/
\n\n
"
);
"http://www.videolan.org/"
);
MessageBox
(
hwnd
,
_FROMMB
(
about
.
c_str
()),
_T
(
"About VLC media player"
),
MB_OK
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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