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
a4f829f4
Commit
a4f829f4
authored
Jan 24, 1999
by
Pascal Cuoq
Committed by
Alexandre Julliard
Jan 24, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed typos.
parent
d72e2dea
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
12 deletions
+12
-12
internal-dll
documentation/internal-dll
+8
-8
shell32
documentation/shell32
+2
-2
wine.man
documentation/wine.man
+2
-2
No files found.
documentation/internal-dll
View file @
a4f829f4
This document describes some points you should know
when you are going to
implement
the internal counterparts to external DLL's. Only 32 bit DLL's
This document describes some points you should know
before implementing
the internal counterparts to external DLL's. Only 32 bit DLL's
are considered.
1. The LibMain function
-----------------------
Th
ese are the way to do some initialis
ing when a process or thread is attached
Th
is is the way to do some initializ
ing when a process or thread is attached
to the dll. The function name is taken from a *.spec file line:
init YourFunctionName
the you have to implement the function:
the
n,
you have to implement the function:
BOOL32 WINAPI YourLibMain(HINSTANCE32 hinstDLL,
...
...
@@ -26,11 +26,11 @@ BOOL32 WINAPI YourLibMain(HINSTANCE32 hinstDLL,
The problem here is, that you can't know if you have to call the function from
the internal or the external DLL. If you just call the function you will get
the internal implementation. If the external DLL is loaded the executed program
will use the external
and you the internal DLL
.
When you -as
example- fill a
iconlist placed in the internal DLL the
application wont get the icons from the external DLL.
will use the external
DLL and you the internal one
.
When you -as
an example- fill an
iconlist placed in the internal DLL the
application won
'
t get the icons from the external DLL.
To
go around this you have to call the functions over pointer.
To
work around this, you should always use a pointer to call such functions:
/* definition of the pointer type*/
void (CALLBACK* pDLLInitComctl)();
...
...
documentation/shell32
View file @
a4f829f4
...
...
@@ -12,7 +12,7 @@ base functionality is roughly in place. The missing parts are the icon
the file copy status window.
The basis comes from Marcus Meissner and I <juergen.schmied@metronet.de>
implemented the classes and filled function stubs.
implemented the classes and filled
in
function stubs.
2. General Information
----------------------
...
...
@@ -71,7 +71,7 @@ implemented the classes and filled function stubs.
Undocumented:
MS says: the abID of SHITEMID should be treated as binary data and not
be interpreted by applications. Appl
y
s to everyone but MS itself.
be interpreted by applications. Appl
ie
s to everyone but MS itself.
Word95 interprets the contents of abID (Filesize/Date) so we have to go
for binary compatibility here.
I expect the file open/close dialog in comctl32 does so also.
...
...
documentation/wine.man
View file @
a4f829f4
...
...
@@ -37,9 +37,9 @@ libc6 (aka glibc2).
.PP
.B X
must be installed. To use Wine's support for multithreaded applications,
your X libraries must be reetrant. If you have libc6 (glibc2), or you
your X libraries must be ree
n
trant. If you have libc6 (glibc2), or you
compiled the X libraries yourself, they were probably compiled with the
reetrant option enabled.
ree
n
trant option enabled.
.PP
.B libXpm
must be installed. If you're using Red Hat, make sure the following
...
...
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