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
ac81d02a
Commit
ac81d02a
authored
Jul 31, 2002
by
Rafael Kitover
Committed by
Alexandre Julliard
Jul 31, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Portability fixes for Cygwin.
parent
7375597f
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
54 additions
and
16 deletions
+54
-16
sync.c
dlls/kernel/sync.c
+2
-0
signal_i386.c
dlls/ntdll/signal_i386.c
+37
-1
builtin.c
dlls/wineps/builtin.c
+10
-10
stat.h
include/msvcrt/sys/stat.h
+3
-3
types.h
include/msvcrt/sys/types.h
+1
-1
Makefile.in
tsx11/Makefile.in
+1
-1
No files found.
dlls/kernel/sync.c
View file @
ac81d02a
...
...
@@ -536,6 +536,7 @@ HANDLE WINAPI CreateNamedPipeW( LPCWSTR name, DWORD dwOpenMode,
BOOL
WINAPI
PeekNamedPipe
(
HANDLE
hPipe
,
LPVOID
lpvBuffer
,
DWORD
cbBuffer
,
LPDWORD
lpcbRead
,
LPDWORD
lpcbAvail
,
LPDWORD
lpcbMessage
)
{
#ifdef FIONREAD
int
avail
=
0
,
fd
;
fd
=
FILE_GetUnixHandle
(
hPipe
,
GENERIC_READ
);
...
...
@@ -555,6 +556,7 @@ BOOL WINAPI PeekNamedPipe( HANDLE hPipe, LPVOID lpvBuffer, DWORD cbBuffer,
*
lpcbAvail
=
avail
;
return
TRUE
;
}
#endif
/* defined(FIONREAD) */
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
FIXME
(
"function not implemented
\n
"
);
...
...
dlls/ntdll/signal_i386.c
View file @
ac81d02a
...
...
@@ -249,8 +249,44 @@ typedef struct
#endif
/* __EMX__ */
#ifdef __CYGWIN__
#if defined(linux) || defined(__NetBSD__) || defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__EMX__)
/* FIXME: This section is just here so it can compile, it's most likely
* completely wrong. */
typedef
struct
{
unsigned
short
sc_gs
,
__gsh
;
unsigned
short
sc_fs
,
__fsh
;
unsigned
short
sc_es
,
__esh
;
unsigned
short
sc_ds
,
__dsh
;
unsigned
long
sc_edi
;
unsigned
long
sc_esi
;
unsigned
long
sc_ebp
;
unsigned
long
sc_esp
;
unsigned
long
sc_ebx
;
unsigned
long
sc_edx
;
unsigned
long
sc_ecx
;
unsigned
long
sc_eax
;
unsigned
long
sc_trapno
;
unsigned
long
sc_err
;
unsigned
long
sc_eip
;
unsigned
short
sc_cs
,
__csh
;
unsigned
long
sc_eflags
;
unsigned
long
esp_at_signal
;
unsigned
short
sc_ss
,
__ssh
;
unsigned
long
i387
;
unsigned
long
oldmask
;
unsigned
long
cr2
;
}
SIGCONTEXT
;
#define HANDLER_DEF(name) void name( int __signal, SIGCONTEXT __context )
#define HANDLER_CONTEXT (&__context)
#endif
/* __CYGWIN__ */
#if defined(linux) || defined(__NetBSD__) || defined(__FreeBSD__) ||\
defined(__OpenBSD__) || defined(__EMX__) || defined(__CYGWIN__)
#define EAX_sig(context) ((context)->sc_eax)
#define EBX_sig(context) ((context)->sc_ebx)
...
...
dlls/wineps/builtin.c
View file @
ac81d02a
...
...
@@ -49,7 +49,7 @@ inline static BOOL is_stock_font( HFONT font )
* Scale builtin font to requested lfHeight
*
*/
inline
static
float
r
ound
(
float
f
)
inline
static
float
R
ound
(
float
f
)
{
return
(
f
>
0
)
?
(
f
+
0
.
5
)
:
(
f
-
0
.
5
);
}
...
...
@@ -73,15 +73,15 @@ static VOID ScaleFont(const AFM *afm, LONG lfHeight, PSFONT *font,
(
float
)(
wm
->
usWinAscent
+
wm
->
usWinDescent
);
}
font
->
size
=
(
INT
)
r
ound
(
font
->
fontinfo
.
Builtin
.
scale
*
(
float
)
wm
->
usUnitsPerEm
);
font
->
size
=
(
INT
)
R
ound
(
font
->
fontinfo
.
Builtin
.
scale
*
(
float
)
wm
->
usUnitsPerEm
);
usUnitsPerEm
=
(
USHORT
)
r
ound
((
float
)(
wm
->
usUnitsPerEm
)
*
font
->
fontinfo
.
Builtin
.
scale
);
sAscender
=
(
SHORT
)
r
ound
((
float
)(
wm
->
sAscender
)
*
font
->
fontinfo
.
Builtin
.
scale
);
sDescender
=
(
SHORT
)
r
ound
((
float
)(
wm
->
sDescender
)
*
font
->
fontinfo
.
Builtin
.
scale
);
sLineGap
=
(
SHORT
)
r
ound
((
float
)(
wm
->
sLineGap
)
*
font
->
fontinfo
.
Builtin
.
scale
);
usWinAscent
=
(
USHORT
)
r
ound
((
float
)(
wm
->
usWinAscent
)
*
font
->
fontinfo
.
Builtin
.
scale
);
usWinDescent
=
(
USHORT
)
r
ound
((
float
)(
wm
->
usWinDescent
)
*
font
->
fontinfo
.
Builtin
.
scale
);
sAvgCharWidth
=
(
SHORT
)
r
ound
((
float
)(
wm
->
sAvgCharWidth
)
*
font
->
fontinfo
.
Builtin
.
scale
);
usUnitsPerEm
=
(
USHORT
)
R
ound
((
float
)(
wm
->
usUnitsPerEm
)
*
font
->
fontinfo
.
Builtin
.
scale
);
sAscender
=
(
SHORT
)
R
ound
((
float
)(
wm
->
sAscender
)
*
font
->
fontinfo
.
Builtin
.
scale
);
sDescender
=
(
SHORT
)
R
ound
((
float
)(
wm
->
sDescender
)
*
font
->
fontinfo
.
Builtin
.
scale
);
sLineGap
=
(
SHORT
)
R
ound
((
float
)(
wm
->
sLineGap
)
*
font
->
fontinfo
.
Builtin
.
scale
);
usWinAscent
=
(
USHORT
)
R
ound
((
float
)(
wm
->
usWinAscent
)
*
font
->
fontinfo
.
Builtin
.
scale
);
usWinDescent
=
(
USHORT
)
R
ound
((
float
)(
wm
->
usWinDescent
)
*
font
->
fontinfo
.
Builtin
.
scale
);
sAvgCharWidth
=
(
SHORT
)
R
ound
((
float
)(
wm
->
sAvgCharWidth
)
*
font
->
fontinfo
.
Builtin
.
scale
);
tm
->
tmAscent
=
(
LONG
)
usWinAscent
;
tm
->
tmDescent
=
(
LONG
)
usWinDescent
;
...
...
@@ -125,7 +125,7 @@ static VOID ScaleFont(const AFM *afm, LONG lfHeight, PSFONT *font,
font
->
fontinfo
.
Builtin
.
scale
*=
(
float
)
wm
->
usUnitsPerEm
/
1000
.
0
;
tm
->
tmMaxCharWidth
=
(
LONG
)
r
ound
(
tm
->
tmMaxCharWidth
=
(
LONG
)
R
ound
(
(
afm
->
FontBBox
.
urx
-
afm
->
FontBBox
.
llx
)
*
font
->
fontinfo
.
Builtin
.
scale
);
font
->
underlinePosition
=
afm
->
UnderlinePosition
*
font
->
fontinfo
.
Builtin
.
scale
;
...
...
include/msvcrt/sys/stat.h
View file @
ac81d02a
...
...
@@ -34,7 +34,7 @@ struct _stat {
short
st_uid
;
short
st_gid
;
_dev_t
st_rdev
;
_off_t
st_size
;
MSVCRT
(
_off_t
)
st_size
;
MSVCRT
(
time_t
)
st_atime
;
MSVCRT
(
time_t
)
st_mtime
;
MSVCRT
(
time_t
)
st_ctime
;
...
...
@@ -59,9 +59,9 @@ struct _stati64 {
extern
"C"
{
#endif
int
_fstat
(
int
,
struct
_stat
*
);
int
MSVCRT
(
_fstat
)(
int
,
struct
_stat
*
);
int
MSVCRT
(
_stat
)(
const
char
*
,
struct
_stat
*
);
int
_fstati64
(
int
,
struct
_stati64
*
);
int
_stat
(
const
char
*
,
struct
_stat
*
);
int
_stati64
(
const
char
*
,
struct
_stati64
*
);
int
_wstat
(
const
WCHAR
*
,
struct
_stat
*
);
...
...
include/msvcrt/sys/types.h
View file @
ac81d02a
...
...
@@ -31,7 +31,7 @@
typedef
unsigned
int
_dev_t
;
typedef
unsigned
short
_ino_t
;
typedef
int
_off_t
;
typedef
int
MSVCRT
(
_off_t
)
;
typedef
long
MSVCRT
(
time_t
);
...
...
tsx11/Makefile.in
View file @
ac81d02a
...
...
@@ -37,7 +37,7 @@ libwine_tsx11.a: $(OBJS)
$(RANLIB)
$@
libwine_tsx11.dll
:
$(OBJS)
$(DLLWRAP)
$(DLLWRAPFLAGS)
--export-all
--implib
libwine_tsx11.a
-o
libwine_tsx11.dll
$(OBJS)
$(DLLWRAP)
$(DLLWRAPFLAGS)
--export-all
--implib
libwine_tsx11.a
-o
libwine_tsx11.dll
$(OBJS)
$(EXTRALIBS)
.PHONY
:
install_so install_a
...
...
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