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
a9f6a9da
Commit
a9f6a9da
authored
Oct 24, 2000
by
Patrik Stridvall
Committed by
Alexandre Julliard
Oct 24, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Explicitly initialize structures.
parent
f87b96e7
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
45 additions
and
9 deletions
+45
-9
dsound_main.c
dlls/dsound/dsound_main.c
+10
-1
proxyodbc.c
dlls/odbc32/proxyodbc.c
+0
-0
init.c
dlls/wineps/init.c
+12
-3
thunk.c
if1632/thunk.c
+20
-2
task.c
loader/task.c
+1
-1
options.c
misc/options.c
+1
-1
request.c
server/request.c
+1
-1
No files found.
dlls/dsound/dsound_main.c
View file @
a9f6a9da
...
...
@@ -1598,6 +1598,14 @@ static HRESULT WINAPI IDirectSoundBufferImpl_Unlock(
return
DS_OK
;
}
static
HRESULT
WINAPI
IDirectSoundBufferImpl_Restore
(
LPDIRECTSOUNDBUFFER
iface
)
{
ICOM_THIS
(
IDirectSoundBufferImpl
,
iface
);
FIXME
(
"(%p):stub
\n
"
,
This
);
return
DS_OK
;
}
static
HRESULT
WINAPI
IDirectSoundBufferImpl_GetFrequency
(
LPDIRECTSOUNDBUFFER
iface
,
LPDWORD
freq
)
{
...
...
@@ -1787,7 +1795,8 @@ static ICOM_VTABLE(IDirectSoundBuffer) dsbvt =
IDirectSoundBufferImpl_SetPan
,
IDirectSoundBufferImpl_SetFrequency
,
IDirectSoundBufferImpl_Stop
,
IDirectSoundBufferImpl_Unlock
IDirectSoundBufferImpl_Unlock
,
IDirectSoundBufferImpl_Restore
};
/*******************************************************************************
...
...
dlls/odbc32/proxyodbc.c
View file @
a9f6a9da
This diff is collapsed.
Click to expand it.
dlls/wineps/init.c
View file @
a9f6a9da
...
...
@@ -196,13 +196,22 @@ static PSDRV_DEVMODEA DefaultDevmode =
/* dmPelsWidth */
0
,
/* dmPelsHeight */
0
,
/* dmDisplayFlags */
0
,
/* dmDisplayFrequency */
0
/* dmDisplayFrequency */
0
,
/* dmICMMethod */
0
,
/* dmICMIntent */
0
,
/* dmMediaType */
0
,
/* dmDitherType */
0
,
/* dmReserved1 */
0
,
/* dmReserved2 */
0
,
/* dmPanningWidth */
0
,
/* dmPanningHeight */
0
},
{
/* dmDocPrivate */
0
/* dummy */
/* dummy */
0
},
{
/* dmDrvPrivate */
/* ppdfilename */
"default.ppd"
/* ppdfilename */
"default.ppd"
,
/* numInstalledOptions */
0
}
};
...
...
if1632/thunk.c
View file @
a9f6a9da
...
...
@@ -38,8 +38,26 @@ extern WORD CALLBACK THUNK_CallTo16_word_wwwl (FARPROC16,WORD,WORD,WORD,LONG);
static
THUNK
*
firstThunk
=
NULL
;
CALLOUT_TABLE
Callout
=
{
0
};
CALLOUT_TABLE
Callout
=
{
/* PeekMessageA */
NULL
,
/* GetMessageA */
NULL
,
/* SendMessageA */
NULL
,
/* PostMessageA */
NULL
,
/* PostAppMessage16 */
NULL
,
/* TranslateMessage */
NULL
,
/* DispatchMessageA */
NULL
,
/* RedrawWindow */
NULL
,
/* UserSignalProc */
NULL
,
/* FinalUserInit16 */
NULL
,
/* InitThreadInput16 */
NULL
,
/* UserYield16) */
NULL
,
/* DestroyIcon32 */
NULL
,
/* WaitForInputIdle */
NULL
,
/* MsgWaitForMultipleObjects */
NULL
,
/* WindowFromDC */
NULL
,
/* MessageBoxA */
NULL
,
/* MessageBoxW */
NULL
};
/***********************************************************************
* THUNK_Alloc
...
...
loader/task.c
View file @
a9f6a9da
...
...
@@ -42,7 +42,7 @@ DECLARE_DEBUG_CHANNEL(toolhelp);
#define MIN_THUNKS 32
static
THHOOK
DefaultThhook
=
{
0
}
;
static
THHOOK
DefaultThhook
;
THHOOK
*
pThhook
=
&
DefaultThhook
;
#define hCurrentTask (pThhook->CurTDB)
...
...
misc/options.c
View file @
a9f6a9da
...
...
@@ -96,7 +96,7 @@ static const struct option option_table[] =
"--version,-v Display the Wine version"
},
{
"winver"
,
0
,
1
,
1
,
VERSION_ParseWinVersion
,
"--winver Version to imitate (one of win31,win95,nt351,nt40)"
},
{
NULL
,
}
/* terminator */
{
NULL
,
0
,
0
,
0
,
NULL
,
NULL
}
/* terminator */
};
...
...
server/request.c
View file @
a9f6a9da
...
...
@@ -78,7 +78,7 @@ static struct master_socket *master_socket; /* the master socket object */
/* socket communication static structures */
static
struct
iovec
myiovec
;
static
struct
msghdr
msghdr
=
{
NULL
,
0
,
&
myiovec
,
1
,
};
static
struct
msghdr
msghdr
=
{
NULL
,
0
,
&
myiovec
,
1
,
/* remaining fields depend on system */
};
#ifndef HAVE_MSGHDR_ACCRIGHTS
struct
cmsg_fd
{
...
...
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