Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
982d5287
Commit
982d5287
authored
Jul 11, 2023
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
Jul 11, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
windowscodecs: Remove DECLSPEC_HIDDEN usage.
parent
806330d1
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
65 additions
and
65 deletions
+65
-65
bitmap.c
dlls/windowscodecs/bitmap.c
+3
-3
main.c
dlls/windowscodecs/main.c
+1
-1
regsvr.c
dlls/windowscodecs/regsvr.c
+2
-2
ungif.h
dlls/windowscodecs/ungif.h
+3
-3
wincodecs_private.h
dlls/windowscodecs/wincodecs_private.h
+56
-56
No files found.
dlls/windowscodecs/bitmap.c
View file @
982d5287
...
...
@@ -667,7 +667,7 @@ static ULONG WINAPI IMILUnknown1Impl_Release(IMILUnknown1 *iface)
}
DEFINE_THISCALL_WRAPPER
(
IMILUnknown1Impl_unknown1
,
8
)
DECLSPEC_HIDDEN
void
__thiscall
IMILUnknown1Impl_unknown1
(
IMILUnknown1
*
iface
,
void
*
arg
)
void
__thiscall
IMILUnknown1Impl_unknown1
(
IMILUnknown1
*
iface
,
void
*
arg
)
{
FIXME
(
"(%p,%p): stub
\n
"
,
iface
,
arg
);
}
...
...
@@ -679,7 +679,7 @@ static HRESULT WINAPI IMILUnknown1Impl_unknown2(IMILUnknown1 *iface, void *arg1,
}
DEFINE_THISCALL_WRAPPER
(
IMILUnknown1Impl_unknown3
,
8
)
DECLSPEC_HIDDEN
HRESULT
__thiscall
IMILUnknown1Impl_unknown3
(
IMILUnknown1
*
iface
,
void
*
arg
)
HRESULT
__thiscall
IMILUnknown1Impl_unknown3
(
IMILUnknown1
*
iface
,
void
*
arg
)
{
FIXME
(
"(%p,%p): stub
\n
"
,
iface
,
arg
);
return
E_NOTIMPL
;
...
...
@@ -710,7 +710,7 @@ static HRESULT WINAPI IMILUnknown1Impl_unknown7(IMILUnknown1 *iface, void *arg)
}
DEFINE_THISCALL_WRAPPER
(
IMILUnknown1Impl_unknown8
,
4
)
DECLSPEC_HIDDEN
HRESULT
__thiscall
IMILUnknown1Impl_unknown8
(
IMILUnknown1
*
iface
)
HRESULT
__thiscall
IMILUnknown1Impl_unknown8
(
IMILUnknown1
*
iface
)
{
FIXME
(
"(%p): stub
\n
"
,
iface
);
return
E_NOTIMPL
;
...
...
dlls/windowscodecs/main.c
View file @
982d5287
...
...
@@ -30,7 +30,7 @@
#include "wine/debug.h"
extern
BOOL
WINAPI
WIC_DllMain
(
HINSTANCE
,
DWORD
,
LPVOID
)
DECLSPEC_HIDDEN
;
extern
BOOL
WINAPI
WIC_DllMain
(
HINSTANCE
,
DWORD
,
LPVOID
);
HMODULE
windowscodecs_module
=
0
;
...
...
dlls/windowscodecs/regsvr.c
View file @
982d5287
...
...
@@ -2270,8 +2270,8 @@ static HRESULT unregister_categories(const struct regsvr_category *list)
return
res
!=
ERROR_SUCCESS
?
HRESULT_FROM_WIN32
(
res
)
:
S_OK
;
}
extern
HRESULT
WINAPI
WIC_DllRegisterServer
(
void
)
DECLSPEC_HIDDEN
;
extern
HRESULT
WINAPI
WIC_DllUnregisterServer
(
void
)
DECLSPEC_HIDDEN
;
extern
HRESULT
WINAPI
WIC_DllRegisterServer
(
void
);
extern
HRESULT
WINAPI
WIC_DllUnregisterServer
(
void
);
HRESULT
WINAPI
DllRegisterServer
(
void
)
{
...
...
dlls/windowscodecs/ungif.h
View file @
982d5287
...
...
@@ -144,9 +144,9 @@ typedef int (*InputFunc) (GifFileType *, GifByteType *, int);
#define APPLICATION_EXT_FUNC_CODE 0xff
/* application block */
/* public interface to ungif.c */
int
DGifSlurp
(
GifFileType
*
GifFile
)
DECLSPEC_HIDDEN
;
GifFileType
*
DGifOpen
(
void
*
userPtr
,
InputFunc
readFunc
)
DECLSPEC_HIDDEN
;
int
DGifCloseFile
(
GifFileType
*
GifFile
)
DECLSPEC_HIDDEN
;
int
DGifSlurp
(
GifFileType
*
GifFile
);
GifFileType
*
DGifOpen
(
void
*
userPtr
,
InputFunc
readFunc
);
int
DGifCloseFile
(
GifFileType
*
GifFile
);
#define D_GIF_ERR_OPEN_FAILED 101
/* And DGif possible errors. */
#define D_GIF_ERR_READ_FAILED 102
...
...
dlls/windowscodecs/wincodecs_private.h
View file @
982d5287
This diff is collapsed.
Click to expand it.
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