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
1894d708
Commit
1894d708
authored
Jul 03, 2008
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oleaut32: Include the system jpeg and png headers before the Windows headers.
parent
86a0643d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
19 deletions
+18
-19
olepicture.c
dlls/oleaut32/olepicture.c
+18
-19
No files found.
dlls/oleaut32/olepicture.c
View file @
1894d708
...
...
@@ -45,6 +45,22 @@
#include <stdio.h>
#include <string.h>
#ifdef SONAME_LIBJPEG
/* This is a hack, so jpeglib.h does not redefine INT32 and the like*/
#define XMD_H
#define UINT8 JPEG_UINT8
#define UINT16 JPEG_UINT16
#define boolean jpeg_boolean
# include <jpeglib.h>
#undef UINT8
#undef UINT16
#undef boolean
#endif
#ifdef HAVE_PNG_H
#include <png.h>
#endif
/* Must be before wine includes, the header has things conflicting with
* WINE headers.
*/
...
...
@@ -67,23 +83,6 @@
#include "wine/wingdi16.h"
#ifdef SONAME_LIBJPEG
/* This is a hack, so jpeglib.h does not redefine INT32 and the like*/
#define XMD_H
#define UINT8 JPEG_UINT8
#define UINT16 JPEG_UINT16
#undef FAR
#define boolean jpeg_boolean
# include <jpeglib.h>
#undef jpeg_boolean
#undef UINT16
#endif
#ifdef HAVE_PNG_H
#undef FAR
#include <png.h>
#endif
#include "ungif.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
ole
);
...
...
@@ -1008,7 +1007,7 @@ static void *load_libjpeg(void)
/* for the jpeg decompressor source manager. */
static
void
_jpeg_init_source
(
j_decompress_ptr
cinfo
)
{
}
static
boolean
_jpeg_fill_input_buffer
(
j_decompress_ptr
cinfo
)
{
static
jpeg_
boolean
_jpeg_fill_input_buffer
(
j_decompress_ptr
cinfo
)
{
ERR
(
"(), should not get here.
\n
"
);
return
FALSE
;
}
...
...
@@ -1019,7 +1018,7 @@ static void _jpeg_skip_input_data(j_decompress_ptr cinfo,long num_bytes) {
cinfo
->
src
->
bytes_in_buffer
-=
num_bytes
;
}
static
boolean
_jpeg_resync_to_restart
(
j_decompress_ptr
cinfo
,
int
desired
)
{
static
jpeg_
boolean
_jpeg_resync_to_restart
(
j_decompress_ptr
cinfo
,
int
desired
)
{
ERR
(
"(desired=%d), should not get here.
\n
"
,
desired
);
return
FALSE
;
}
...
...
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