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
95209b39
Commit
95209b39
authored
Jan 15, 2003
by
Jeroen Janssen
Committed by
Alexandre Julliard
Jan 15, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed wine_ldt_copy importing on cygwin.
parent
9b0b1e07
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
1 deletion
+12
-1
library.h
include/wine/library.h
+11
-1
ldt.c
library/ldt.c
+1
-0
No files found.
include/wine/library.h
View file @
95209b39
...
@@ -72,7 +72,17 @@ extern void wine_ldt_get_entry( unsigned short sel, LDT_ENTRY *entry );
...
@@ -72,7 +72,17 @@ extern void wine_ldt_get_entry( unsigned short sel, LDT_ENTRY *entry );
extern
int
wine_ldt_set_entry
(
unsigned
short
sel
,
const
LDT_ENTRY
*
entry
);
extern
int
wine_ldt_set_entry
(
unsigned
short
sel
,
const
LDT_ENTRY
*
entry
);
/* the local copy of the LDT */
/* the local copy of the LDT */
extern
struct
__wine_ldt_copy
#ifdef __CYGWIN__
# ifdef WINE_EXPORT_LDT_COPY
# define WINE_LDT_EXTERN __declspec(dllexport)
# else
# define WINE_LDT_EXTERN __declspec(dllimport)
# endif
#else
# define WINE_LDT_EXTERN extern
#endif
WINE_LDT_EXTERN
struct
__wine_ldt_copy
{
{
void
*
base
[
8192
];
/* base address or 0 if entry is free */
void
*
base
[
8192
];
/* base address or 0 if entry is free */
unsigned
long
limit
[
8192
];
/* limit in bytes or 0 if entry is free */
unsigned
long
limit
[
8192
];
/* limit in bytes or 0 if entry is free */
...
...
library/ldt.c
View file @
95209b39
...
@@ -28,6 +28,7 @@
...
@@ -28,6 +28,7 @@
#include <errno.h>
#include <errno.h>
#include "winbase.h"
#include "winbase.h"
#define WINE_EXPORT_LDT_COPY
#include "wine/library.h"
#include "wine/library.h"
#ifdef __i386__
#ifdef __i386__
...
...
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