Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-1.1
Commits
4b6ec77d
Commit
4b6ec77d
authored
Sep 01, 2011
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Win32: Don't leak a HICON
Signed-off-by:
Jean-Baptiste Kempf
<
jb@videolan.org
>
parent
5a5d5155
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
6 deletions
+10
-6
modules/video_output/msw/events.c
modules/video_output/msw/events.c
+10
-6
No files found.
modules/video_output/msw/events.c
View file @
4b6ec77d
...
...
@@ -122,6 +122,8 @@ struct event_thread_t
video_format_t
source
;
vout_display_place_t
place
;
HICON
vlc_icon
;
bool
has_moved
;
};
...
...
@@ -498,7 +500,6 @@ static int DirectXCreateWindow( event_thread_t *p_event )
HMENU
hMenu
;
RECT
rect_window
;
WNDCLASS
wc
;
/* window class components */
HICON
vlc_icon
;
char
vlc_path
[
MAX_PATH
+
1
];
int
i_style
,
i_stylex
;
...
...
@@ -537,11 +538,11 @@ static int DirectXCreateWindow( event_thread_t *p_event )
#endif
/* Get the Icon from the main app */
vlc_icon
=
NULL
;
p_event
->
vlc_icon
=
NULL
;
#ifndef UNDER_CE
if
(
GetModuleFileName
(
NULL
,
vlc_path
,
MAX_PATH
)
)
{
vlc_icon
=
ExtractIcon
(
hInstance
,
vlc_path
,
0
);
p_event
->
vlc_icon
=
ExtractIcon
(
hInstance
,
vlc_path
,
0
);
}
#endif
...
...
@@ -551,7 +552,7 @@ static int DirectXCreateWindow( event_thread_t *p_event )
wc
.
cbClsExtra
=
0
;
/* no extra class data */
wc
.
cbWndExtra
=
0
;
/* no extra window data */
wc
.
hInstance
=
hInstance
;
/* instance */
wc
.
hIcon
=
vlc_icon
;
/* load the vlc big icon */
wc
.
hIcon
=
p_event
->
vlc_icon
;
/* load the vlc big icon */
wc
.
hCursor
=
p_event
->
is_cursor_hidden
?
p_event
->
cursor_empty
:
p_event
->
cursor_arrow
;
wc
.
hbrBackground
=
GetStockObject
(
BLACK_BRUSH
);
/* background color */
...
...
@@ -561,8 +562,8 @@ static int DirectXCreateWindow( event_thread_t *p_event )
/* Register the window class */
if
(
!
RegisterClass
(
&
wc
)
)
{
if
(
vlc_icon
)
DestroyIcon
(
vlc_icon
);
if
(
p_event
->
vlc_icon
)
DestroyIcon
(
p_event
->
vlc_icon
);
msg_Err
(
vd
,
"DirectXCreateWindow RegisterClass FAILED (err=%lu)"
,
GetLastError
()
);
return
VLC_EGENERIC
;
...
...
@@ -717,6 +718,9 @@ static void DirectXCloseWindow( event_thread_t *p_event )
vout_display_DeleteWindow
(
vd
,
p_event
->
parent_window
);
p_event
->
hwnd
=
NULL
;
if
(
p_event
->
vlc_icon
)
DestroyIcon
(
p_event
->
vlc_icon
);
HINSTANCE
hInstance
=
GetModuleHandle
(
NULL
);
UnregisterClass
(
p_event
->
class_video
,
hInstance
);
UnregisterClass
(
p_event
->
class_main
,
hInstance
);
...
...
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