Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
3fcebdaa
Commit
3fcebdaa
authored
Feb 18, 2008
by
Damien Fouilleul
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
activex: it sounds like latest windres no longer supports resource by name, use integer instead
parent
390b9dcb
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
projects/activex/axvlc_rc.rc
projects/activex/axvlc_rc.rc
+1
-1
projects/activex/plugin.cpp
projects/activex/plugin.cpp
+2
-2
No files found.
projects/activex/axvlc_rc.rc
View file @
3fcebdaa
...
...
@@ -32,7 +32,7 @@ BEGIN
END
END
INPLACE-PICT
BITMAP DISCARDABLE "inplace.bmp"
1
BITMAP DISCARDABLE "inplace.bmp"
1 TYPELIB "axvlc.tlb"
projects/activex/plugin.cpp
View file @
3fcebdaa
...
...
@@ -106,7 +106,7 @@ VLCPluginClass::VLCPluginClass(LONG *p_class_ref, HINSTANCE hInstance, REFCLSID
_inplace_wndclass_atom
=
0
;
}
HBITMAP
hbitmap
=
(
HBITMAP
)
LoadImage
(
getHInstance
(),
TEXT
(
"INPLACE-PICT"
),
IMAGE_BITMAP
,
0
,
0
,
LR_DEFAULTCOLOR
);
HBITMAP
hbitmap
=
(
HBITMAP
)
LoadImage
(
getHInstance
(),
MAKEINTRESOURCE
(
1
),
IMAGE_BITMAP
,
0
,
0
,
LR_DEFAULTCOLOR
);
if
(
NULL
!=
hbitmap
)
{
PICTDESC
pictDesc
;
...
...
@@ -433,7 +433,7 @@ HRESULT VLCPlugin::getVLC(libvlc_instance_t** pp_libvlc)
/*
** default initialization options
*/
char
*
ppsz_argv
[
32
]
=
{
"vlc"
};
c
onst
c
har
*
ppsz_argv
[
32
]
=
{
"vlc"
};
int
ppsz_argc
=
1
;
char
p_progpath
[
MAX_PATH
];
...
...
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