Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
32f91739
Commit
32f91739
authored
Oct 22, 2010
by
Damjan Jovanovic
Committed by
Alexandre Julliard
Oct 22, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
windowscodecs: Add COM proxies and stubs.
parent
0b66a0d3
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
41 additions
and
3 deletions
+41
-3
.gitignore
.gitignore
+2
-0
Makefile.in
dlls/windowscodecs/Makefile.in
+7
-1
clsfactory.c
dlls/windowscodecs/clsfactory.c
+3
-1
main.c
dlls/windowscodecs/main.c
+3
-1
regsvr.c
dlls/windowscodecs/regsvr.c
+7
-0
windowscodecs_wincodec.idl
dlls/windowscodecs/windowscodecs_wincodec.idl
+19
-0
No files found.
.gitignore
View file @
32f91739
...
...
@@ -139,6 +139,8 @@ dlls/sti/sti_wia.h
dlls/sti/sti_wia_p.c
dlls/urlmon/urlmon_urlmon.h
dlls/urlmon/urlmon_urlmon_p.c
dlls/windowscodecs/windowscodecs_wincodec.h
dlls/windowscodecs/windowscodecs_wincodec_p.c
include/activaut.h
include/activdbg.h
include/activscp.h
...
...
dlls/windowscodecs/Makefile.in
View file @
32f91739
MODULE
=
windowscodecs.dll
IMPORTLIB
=
windowscodecs
IMPORTS
=
uuid ole32
shlwapi advapi32
IMPORTS
=
uuid ole32
oleaut32 shlwapi advapi32 rpcrt4
EXTRAINCL
=
@PNGINCL@
EXTRADEFS
=
-DENTRY_PREFIX
=
WIC_
-DPROXY_DELEGATION
-DREGISTER_PROXY_DLL
C_SRCS
=
\
bmpdecode.c
\
...
...
@@ -27,4 +28,9 @@ C_SRCS = \
RC_SRCS
=
version.rc
IDL_P_SRCS
=
\
windowscodecs_wincodec.idl
EXTRA_OBJS
=
dlldata.o
@MAKE_DLL_RULES@
dlls/windowscodecs/clsfactory.c
View file @
32f91739
...
...
@@ -36,6 +36,8 @@
WINE_DEFAULT_DEBUG_CHANNEL
(
wincodecs
);
extern
HRESULT
WINAPI
WIC_DllGetClassObject
(
REFCLSID
,
REFIID
,
LPVOID
*
)
DECLSPEC_HIDDEN
;
typedef
struct
{
REFCLSID
classid
;
HRESULT
(
*
constructor
)(
IUnknown
*
,
REFIID
,
void
**
);
...
...
@@ -174,7 +176,7 @@ HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID iid, LPVOID *ppv)
if
(
info
)
ret
=
ClassFactoryImpl_Constructor
(
info
,
iid
,
ppv
);
else
ret
=
CLASS_E_CLASSNOTAVAILABLE
;
ret
=
WIC_DllGetClassObject
(
rclsid
,
iid
,
ppv
)
;
TRACE
(
"<-- %08X
\n
"
,
ret
);
return
ret
;
...
...
dlls/windowscodecs/main.c
View file @
32f91739
...
...
@@ -32,6 +32,8 @@
WINE_DEFAULT_DEBUG_CHANNEL
(
wincodecs
);
extern
BOOL
WINAPI
WIC_DllMain
(
HINSTANCE
,
DWORD
,
LPVOID
)
DECLSPEC_HIDDEN
;
BOOL
WINAPI
DllMain
(
HINSTANCE
hinstDLL
,
DWORD
fdwReason
,
LPVOID
lpvReserved
)
{
...
...
@@ -44,7 +46,7 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
break
;
}
return
TRUE
;
return
WIC_DllMain
(
hinstDLL
,
fdwReason
,
lpvReserved
)
;
}
HRESULT
copy_pixels
(
UINT
bpp
,
const
BYTE
*
srcbuffer
,
...
...
dlls/windowscodecs/regsvr.c
View file @
32f91739
...
...
@@ -1294,12 +1294,17 @@ static struct regsvr_converter const converter_list[] = {
{
NULL
}
/* list terminator */
};
extern
HRESULT
WINAPI
WIC_DllRegisterServer
(
void
)
DECLSPEC_HIDDEN
;
extern
HRESULT
WINAPI
WIC_DllUnregisterServer
(
void
)
DECLSPEC_HIDDEN
;
HRESULT
WINAPI
DllRegisterServer
(
void
)
{
HRESULT
hr
;
TRACE
(
"
\n
"
);
hr
=
WIC_DllRegisterServer
();
if
(
SUCCEEDED
(
hr
))
hr
=
register_coclasses
(
coclass_list
);
if
(
SUCCEEDED
(
hr
))
register_decoders
(
decoder_list
);
...
...
@@ -1316,6 +1321,8 @@ HRESULT WINAPI DllUnregisterServer(void)
TRACE
(
"
\n
"
);
hr
=
WIC_DllUnregisterServer
();
if
(
SUCCEEDED
(
hr
))
hr
=
unregister_coclasses
(
coclass_list
);
if
(
SUCCEEDED
(
hr
))
unregister_decoders
(
decoder_list
);
...
...
dlls/windowscodecs/windowscodecs_wincodec.idl
0 → 100644
View file @
32f91739
/*
*
Copyright
2010
Damjan
Jovanovic
*
*
This
library
is
free
software
; you can redistribute it and/or
*
modify
it
under
the
terms
of
the
GNU
Lesser
General
Public
*
License
as
published
by
the
Free
Software
Foundation
; either
*
version
2.1
of
the
License
,
or
(
at
your
option
)
any
later
version
.
*
*
This
library
is
distributed
in
the
hope
that
it
will
be
useful
,
*
but
WITHOUT
ANY
WARRANTY
; without even the implied warranty of
*
MERCHANTABILITY
or
FITNESS
FOR
A
PARTICULAR
PURPOSE
.
See
the
GNU
*
Lesser
General
Public
License
for
more
details
.
*
*
You
should
have
received
a
copy
of
the
GNU
Lesser
General
Public
*
License
along
with
this
library
; if not, write to the Free Software
*
Foundation
,
Inc
.
,
51
Franklin
St
,
Fifth
Floor
,
Boston
,
MA
02110
-
1301
,
USA
*/
#
include
"wincodec.idl"
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