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
06822b89
Commit
06822b89
authored
Jul 15, 2005
by
Stefan Huehner
Committed by
Alexandre Julliard
Jul 15, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix some write-strings warnings.
parent
6b7778f3
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
7 deletions
+7
-7
dsound.c
dlls/dsound/dsound.c
+2
-2
ds3d.c
dlls/dsound/tests/ds3d.c
+1
-1
sock.c
dlls/winsock/tests/sock.c
+2
-2
rundll32.c
programs/rundll32/rundll32.c
+2
-2
No files found.
dlls/dsound/dsound.c
View file @
06822b89
...
...
@@ -65,7 +65,7 @@ static const char * dumpCooperativeLevel(DWORD level)
static
void
_dump_DSCAPS
(
DWORD
xmask
)
{
struct
{
DWORD
mask
;
char
*
name
;
c
onst
c
har
*
name
;
}
flags
[]
=
{
#define FE(x) { x, #x },
FE
(
DSCAPS_PRIMARYMONO
)
...
...
@@ -91,7 +91,7 @@ static void _dump_DSCAPS(DWORD xmask) {
static
void
_dump_DSBCAPS
(
DWORD
xmask
)
{
struct
{
DWORD
mask
;
char
*
name
;
c
onst
c
har
*
name
;
}
flags
[]
=
{
#define FE(x) { x, #x },
FE
(
DSBCAPS_PRIMARYBUFFER
)
...
...
dlls/dsound/tests/ds3d.c
View file @
06822b89
...
...
@@ -71,7 +71,7 @@ char* wave_generate_la(WAVEFORMATEX* wfx, double duration, DWORD* size)
const
char
*
getDSBCAPS
(
DWORD
xmask
)
{
static
struct
{
DWORD
mask
;
char
*
name
;
c
onst
c
har
*
name
;
}
flags
[]
=
{
#define FE(x) { x, #x },
FE
(
DSBCAPS_PRIMARYBUFFER
)
...
...
dlls/winsock/tests/sock.c
View file @
06822b89
...
...
@@ -990,8 +990,8 @@ static void test_UDP(void)
static
void
WINAPI
do_getservbyname
(
HANDLE
*
starttest
)
{
struct
{
char
*
name
;
char
*
proto
;
c
onst
c
har
*
name
;
c
onst
c
har
*
proto
;
int
port
;
}
serv
[
2
]
=
{
{
"domain"
,
"udp"
,
53
},
{
"telnet"
,
"tcp"
,
23
}
};
...
...
programs/rundll32/rundll32.c
View file @
06822b89
...
...
@@ -53,8 +53,8 @@ typedef void (WINAPI *EntryPointA)(HWND hWnd, HINSTANCE hInst, LPSTR lpszCmdLine
* Control_RunDLL needs to have a window. So lets make us a very
* simple window class.
*/
static
TCHAR
*
szTitle
=
"rundll32"
;
static
TCHAR
*
szWindowClass
=
"class_rundll32"
;
static
const
TCHAR
*
szTitle
=
"rundll32"
;
static
const
TCHAR
*
szWindowClass
=
"class_rundll32"
;
static
HINSTANCE16
(
WINAPI
*
pLoadLibrary16
)(
LPCSTR
libname
);
static
FARPROC16
(
WINAPI
*
pGetProcAddress16
)(
HMODULE16
hModule
,
LPCSTR
name
);
...
...
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