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
1af53cbb
Commit
1af53cbb
authored
Dec 09, 2000
by
Andreas Mohr
Committed by
Alexandre Julliard
Dec 09, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- README update
- add offsets to ASPI struct defines - spelling
parent
5448c534
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
34 additions
and
40 deletions
+34
-40
README
README
+6
-10
ole2disp.c
dlls/oleaut32/ole2disp.c
+3
-3
mixer.c
dlls/winmm/wineoss/mixer.c
+2
-2
queue.h
include/queue.h
+2
-2
wnaspi32.h
include/wnaspi32.h
+0
-0
main.c
misc/main.c
+2
-2
class.c
windows/class.c
+1
-1
message.c
windows/message.c
+18
-20
No files found.
README
View file @
1af53cbb
...
...
@@ -69,16 +69,12 @@ To build Wine, run the following commands:
make depend
make
This will build the
library "libwine.a" and the program "wine"
.
This will build the
program "wine" and numerous support libraries/binaries
.
The program "wine" will load and run Windows executables.
The library "libwine
.a" can be used to compile and link Windows source
code under Unix.
The library "libwine
" ("Winelib") can be used to compile and link
Windows source
code under Unix.
If you do not intend to compile Windows source code, use
"./configure --disable-lib" to skip building the library and reduce disk
space requirements. If you have an ELF compiler (which you probably do),
you can use "./configure --enable-dll" to build a shared library instead.
To see other configuration options, do ./configure --help.
To see compile configuration options, do ./configure --help.
To upgrade to a new release by using a patch file, first cd to the
top-level directory of the release (the one containing this README
...
...
@@ -145,7 +141,7 @@ FAQ: The Wine FAQ is located at http://www.winehq.com/faq.html.
WWW: A great deal of information about Wine is available from WineHQ at
http://www.winehq.com/. Untested patches against the current release
are available on the wine-patches mailing list; see
http://www.winehq.com/dev.html#ml for more information.
http://www.winehq.com/dev.
s
html#ml for more information.
HOWTO: The Wine HOWTO is available at
http://www.westfalen.de/witch/wine-HOWTO.txt .
...
...
@@ -162,7 +158,7 @@ Usenet: Please browse old messages on http://www.dejanews.com/ to check whether
IRC: Online help is available at channel #WineHQ on IRCnet.
CVS: The current Wine development tree is available through CVS.
Go to http://www.winehq.com/dev.html for more information.
Go to http://www.winehq.com/dev.
s
html for more information.
If you add something, or fix a bug, please send a patch ('diff -u'
format preferred) to julliard@winehq.com for inclusion in the next
...
...
dlls/oleaut32/ole2disp.c
View file @
1af53cbb
...
...
@@ -136,7 +136,7 @@ BSTR16 WINAPI SysAllocStringLen16(const char *in, int len)
* SysAllocStringLen [OLEAUT32.4]
*
* In "Inside OLE, second edition" by Kraig Brockshmidt. In the Automation
* section, he describes the DWORD value placed
before
the BSTR data type.
* section, he describes the DWORD value placed
*before*
the BSTR data type.
* he describes it as a "DWORD count of characters". By experimenting with
* a windows application, this count seems to be a DWORD count of bytes in
* the string. Meaning that the count is double the number of wide
...
...
@@ -149,13 +149,13 @@ BSTR WINAPI SysAllocStringLen(const OLECHAR *in, unsigned int len)
WCHAR
*
stringBuffer
;
/*
* Find the lenth of the buffer passed-in in bytes.
* Find the len
g
th of the buffer passed-in in bytes.
*/
bufferSize
=
len
*
sizeof
(
WCHAR
);
/*
* Allocate a new buffer to hold the string.
* dont't forget to keep an empty spot at the begining of the
* dont't forget to keep an empty spot at the begin
n
ing of the
* buffer for the character count and an extra character at the
* end for the NULL.
*/
...
...
dlls/winmm/wineoss/mixer.c
View file @
1af53cbb
...
...
@@ -63,7 +63,7 @@ static BOOL MIX_GetVal(int chn, int* val)
WARN
(
"mixer device not available !
\n
"
);
}
else
{
if
(
ioctl
(
mixer
,
MIXER_READ
(
chn
),
val
)
>=
0
)
{
TRACE
(
"Reading %x on %d
\n
"
,
*
val
,
chn
);
TRACE
(
"Reading
volume
%x on %d
\n
"
,
*
val
,
chn
);
ret
=
TRUE
;
}
close
(
mixer
);
...
...
@@ -79,7 +79,7 @@ static BOOL MIX_SetVal(int chn, int val)
int
mixer
;
BOOL
ret
=
FALSE
;
TRACE
(
"Writing %x on %d
\n
"
,
val
,
chn
);
TRACE
(
"Writing
volume
%x on %d
\n
"
,
val
,
chn
);
if
((
mixer
=
open
(
MIXER_DEV
,
O_RDWR
))
<
0
)
{
/* FIXME: ENXIO => no mixer installed */
...
...
include/queue.h
View file @
1af53cbb
...
...
@@ -40,7 +40,7 @@ typedef struct tagSMSG
HQUEUE16
hSrcQueue
;
/* sending Queue, (NULL if it didn't wait) */
HQUEUE16
hDstQueue
;
/* destination Queue */
HWND
hWnd
;
/* destina
n
tion window */
HWND
hWnd
;
/* destination window */
UINT
msg
;
/* message sent */
WPARAM
wParam
;
/* wParam of the sent message */
LPARAM
lParam
;
/* lParam of the sent message */
...
...
@@ -65,7 +65,7 @@ typedef struct tagSMSG
#define SMSG_EARLY_REPLY 0x0080
/* set when sender is Win32 thread */
#define SMSG_WIN32 0x1000
/* set when sender is a un
n
icode thread */
/* set when sender is a unicode thread */
#define SMSG_UNICODE 0x2000
/* Per-queue data for the message queue
...
...
include/wnaspi32.h
View file @
1af53cbb
This diff is collapsed.
Click to expand it.
misc/main.c
View file @
1af53cbb
...
...
@@ -156,11 +156,11 @@ void MAIN_ParseDebugOptions( const char *arg )
error:
MESSAGE("%s: Syntax: --debugmsg [class]+xxx,... or "
"-debugmsg [class]-xxx,...\n",argv0);
"-
-
debugmsg [class]-xxx,...\n",argv0);
MESSAGE("Example: --debugmsg +all,warn-heap\n"
" turn on all messages except warning heap messages\n");
MESSAGE("Special case: --debugmsg +relay=DLL:DLL.###:FuncName\n"
" turn on -debugmsg +relay only as specified\n"
" turn on -
-
debugmsg +relay only as specified\n"
"Special case: --debugmsg -relay=DLL:DLL.###:FuncName\n"
" turn on --debugmsg +relay except as specified\n"
"Also permitted, +snoop=..., -snoop=... as with relay.\n\n");
...
...
windows/class.c
View file @
1af53cbb
...
...
@@ -9,7 +9,7 @@
* win31->NT migration book)
*
* FIXME: There seems to be a general problem with hInstance in WINE
* classes are getting registred with wrong hInstance.
* classes are getting regist
e
red with wrong hInstance.
*/
#include <stdlib.h>
...
...
windows/message.c
View file @
1af53cbb
...
...
@@ -361,7 +361,7 @@ END:
/***********************************************************************
* MSG_TranslateKbdMsg
*
* Translate a
n
keyboard hardware event into a real message.
* Translate a keyboard hardware event into a real message.
*/
static
DWORD
MSG_TranslateKbdMsg
(
HWND
hTopWnd
,
DWORD
first
,
DWORD
last
,
MSG
*
msg
,
BOOL
remove
)
...
...
@@ -508,7 +508,7 @@ static int MSG_JournalPlayBackMsg(void)
if
(
wtime
<=
0
)
{
wtime
=
0
;
if
((
tmpMsg
->
message
>=
WM_KEYFIRST
)
&&
(
tmpMsg
->
message
<=
WM_KEYLAST
))
if
((
tmpMsg
->
message
>=
WM_KEYFIRST
)
&&
(
tmpMsg
->
message
<=
WM_KEYLAST
))
{
wParam
=
tmpMsg
->
paramL
&
0xFF
;
lParam
=
MAKELONG
(
tmpMsg
->
paramH
&
0x7ffff
,
tmpMsg
->
paramL
>>
8
);
...
...
@@ -590,8 +590,6 @@ static int MSG_JournalPlayBackMsg(void)
static
BOOL
MSG_PeekHardwareMsg
(
MSG
*
msg
,
HWND
hwnd
,
DWORD
first
,
DWORD
last
,
BOOL
remove
)
{
/* FIXME: should deal with MSG32 instead of MSG16 */
DWORD
status
=
SYSQ_MSG_ACCEPT
;
MESSAGEQUEUE
*
sysMsgQueue
=
QUEUE_GetSysQueue
();
enum
{
MOUSE_MSG
=
0
,
KEYBOARD_MSG
,
HARDWARE_MSG
}
msgType
;
...
...
@@ -789,7 +787,7 @@ UINT WINAPI GetDoubleClickTime(void)
* Implementation of an inter-task SendMessage.
* Return values:
* 0 if error or timeout
* 1 if successf
l
ul
* 1 if successful
*/
static
LRESULT
MSG_SendMessageInterThread
(
HQUEUE16
hDestQueue
,
HWND
hwnd
,
UINT
msg
,
...
...
@@ -2204,7 +2202,7 @@ static BOOL MSG_DoTranslateMessage( UINT message, HWND hwnd,
/* FIXME : should handle ToUnicode yielding 2 */
switch
(
ToUnicode
(
wParam
,
HIWORD
(
lParam
),
QueueKeyStateTable
,
wp
,
2
,
0
))
{
case
1
:
case
1
:
message
=
(
message
==
WM_KEYDOWN
)
?
WM_CHAR
:
WM_SYSCHAR
;
/* Should dead chars handling go in ToAscii ? */
if
(
dead_char
)
...
...
@@ -2232,7 +2230,7 @@ static BOOL MSG_DoTranslateMessage( UINT message, HWND hwnd,
PostMessageW
(
hwnd
,
message
,
wp
[
0
],
lParam
);
return
TRUE
;
case
-
1
:
case
-
1
:
message
=
(
message
==
WM_KEYDOWN
)
?
WM_DEADCHAR
:
WM_SYSDEADCHAR
;
dead_char
=
wp
[
0
];
TRACE_
(
key
)(
"-1 -> PostMessage(%s)
\n
"
,
SPY_GetMsgName
(
message
));
...
...
@@ -2293,9 +2291,9 @@ LONG WINAPI DispatchMessage16( const MSG16* msg )
{
if
(
msg
->
lParam
)
{
/* before calling window proc, verify
it the timer is still valid,
there's a slim chance th
e application kill the timer between
getMessage and Disapta
chMessage API calls */
/* before calling window proc, verify
whether timer is still valid;
there's a slim chance th
at the application kills the timer
between GetMessage and Dispat
chMessage API calls */
if
(
!
TIMER_IsTimerValid
(
msg
->
hwnd
,
(
UINT
)
msg
->
wParam
,
(
HWINDOWPROC
)
msg
->
lParam
))
return
0
;
/* invalid winproc */
...
...
@@ -2377,9 +2375,9 @@ LONG WINAPI DispatchMessageA( const MSG* msg )
{
/* HOOK_CallHooks32A( WH_CALLWNDPROC, HC_ACTION, 0, FIXME ); */
/* before calling window proc, verify
it the timer is still valid,
there's a slim chance th
e application kill the timer between
getMessage and Disapta
chMessage API calls */
/* before calling window proc, verify
whether timer is still valid;
there's a slim chance th
at the application kills the timer
between GetMessage and Dispat
chMessage API calls */
if
(
!
TIMER_IsTimerValid
(
msg
->
hwnd
,
(
UINT
)
msg
->
wParam
,
(
HWINDOWPROC
)
msg
->
lParam
))
return
0
;
/* invalid winproc */
...
...
@@ -2460,9 +2458,9 @@ LONG WINAPI DispatchMessageW( const MSG* msg )
{
/* HOOK_CallHooks32W( WH_CALLWNDPROC, HC_ACTION, 0, FIXME ); */
/* before calling window proc, verify
it the timer is still valid,
there's a slim chance th
e application kill the timer between
getMessage and Disapta
chMessage API calls */
/* before calling window proc, verify
whether timer is still valid;
there's a slim chance th
at the application kills the timer
between GetMessage and Dispat
chMessage API calls */
if
(
!
TIMER_IsTimerValid
(
msg
->
hwnd
,
(
UINT
)
msg
->
wParam
,
(
HWINDOWPROC
)
msg
->
lParam
))
return
0
;
/* invalid winproc */
...
...
@@ -2598,8 +2596,10 @@ BOOL WINAPI SendNotifyMessageW(HWND hwnd,UINT msg,WPARAM wParam,LPARAM lParam)
/***********************************************************************
* SendMessageCallbackA
* FIXME: It's like PostMessage. The callback gets called when the message
* is processed. We have to modify the message processing for a exact
* is processed. We have to modify the message processing for a
n
exact
* implementation...
* The callback is only called when the thread that called us calls one of
* Get/Peek/WaitMessage.
*/
BOOL
WINAPI
SendMessageCallbackA
(
HWND
hWnd
,
UINT
Msg
,
WPARAM
wParam
,
LPARAM
lParam
,
...
...
@@ -2617,9 +2617,7 @@ BOOL WINAPI SendMessageCallbackA(
}
/***********************************************************************
* SendMessageCallbackW
* FIXME: It's like PostMessage. The callback gets called when the message
* is processed. We have to modify the message processing for a exact
* implementation...
* FIXME: see SendMessageCallbackA.
*/
BOOL
WINAPI
SendMessageCallbackW
(
HWND
hWnd
,
UINT
Msg
,
WPARAM
wParam
,
LPARAM
lParam
,
...
...
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