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
b3e0a032
Commit
b3e0a032
authored
May 18, 2005
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Moved entry point definitions from module.h to kernel16_private.h.
parent
db3be155
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
27 additions
and
34 deletions
+27
-34
kernel16_private.h
dlls/kernel/kernel16_private.h
+26
-1
loader.c
dlls/ntdll/loader.c
+1
-0
module.h
include/module.h
+0
-33
No files found.
dlls/kernel/kernel16_private.h
View file @
b3e0a032
...
...
@@ -24,7 +24,6 @@
#include "wine/winbase16.h"
#include "winreg.h"
#include "winternl.h"
#include "module.h"
#include "pshpack1.h"
...
...
@@ -69,6 +68,32 @@ typedef struct _NE_MODULE
HANDLE
fd
;
/* 4c handle to the binary file */
}
NE_MODULE
;
typedef
struct
{
BYTE
type
;
BYTE
flags
;
BYTE
segnum
;
WORD
offs
;
}
ET_ENTRY
;
typedef
struct
{
WORD
first
;
/* ordinal */
WORD
last
;
/* ordinal */
WORD
next
;
/* bundle */
}
ET_BUNDLE
;
/* In-memory segment table */
typedef
struct
{
WORD
filepos
;
/* Position in file, in sectors */
WORD
size
;
/* Segment size on disk */
WORD
flags
;
/* Segment flags */
WORD
minsize
;
/* Min. size of segment in memory */
HANDLE16
hSeg
;
/* Selector or handle (selector - 1) of segment in memory */
}
SEGTABLEENTRY
;
/* this structure is always located at offset 0 of the DGROUP segment */
typedef
struct
{
...
...
dlls/ntdll/loader.c
View file @
b3e0a032
...
...
@@ -37,6 +37,7 @@
#include "module.h"
#include "wine/exception.h"
#include "excpt.h"
#include "wine/library.h"
#include "wine/unicode.h"
#include "wine/debug.h"
#include "wine/server.h"
...
...
include/module.h
View file @
b3e0a032
...
...
@@ -24,39 +24,6 @@
#include <stdarg.h>
#include <windef.h>
#include <winbase.h>
#include <winreg.h>
#include <wine/windef16.h>
#include <wine/winbase16.h>
#include <winternl.h>
#include <pshpack1.h>
typedef
struct
{
BYTE
type
;
BYTE
flags
;
BYTE
segnum
;
WORD
offs
;
}
ET_ENTRY
;
typedef
struct
{
WORD
first
;
/* ordinal */
WORD
last
;
/* ordinal */
WORD
next
;
/* bundle */
}
ET_BUNDLE
;
/* In-memory segment table */
typedef
struct
{
WORD
filepos
;
/* Position in file, in sectors */
WORD
size
;
/* Segment size on disk */
WORD
flags
;
/* Segment flags */
WORD
minsize
;
/* Min. size of segment in memory */
HANDLE16
hSeg
;
/* Selector or handle (selector - 1) */
/* of segment in memory */
}
SEGTABLEENTRY
;
#include <poppack.h>
enum
loadorder_type
{
...
...
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