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
9213d56a
Commit
9213d56a
authored
Jun 20, 2005
by
Stefan Huehner
Committed by
Alexandre Julliard
Jun 20, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make some function static.
parent
ddf70d7e
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
18 additions
and
18 deletions
+18
-18
ddrawmodes.c
dlls/ddraw/tests/ddrawmodes.c
+1
-1
iphlpapi.c
dlls/iphlpapi/tests/iphlpapi.c
+7
-7
pipe.c
dlls/kernel/tests/pipe.c
+1
-1
headers.c
dlls/msvcrt/tests/headers.c
+2
-2
debug.c
dlls/msvcrtd/tests/debug.c
+2
-2
access.c
dlls/netapi32/tests/access.c
+2
-2
apibuf.c
dlls/netapi32/tests/apibuf.c
+1
-1
rpc.c
dlls/rpcrt4/tests/rpc.c
+2
-2
No files found.
dlls/ddraw/tests/ddrawmodes.c
View file @
9213d56a
...
...
@@ -100,7 +100,7 @@ HRESULT WINAPI enummodescallback(LPDDSURFACEDESC lpddsd, LPVOID lpContext)
return
DDENUMRET_OK
;
}
void
enumdisplaymodes
(
void
)
static
void
enumdisplaymodes
(
void
)
{
DDSURFACEDESC
ddsd
;
HRESULT
rc
;
...
...
dlls/iphlpapi/tests/iphlpapi.c
View file @
9213d56a
...
...
@@ -277,7 +277,7 @@ static void testGetIpForwardTable(void)
}
}
void
testGetIpNetTable
(
void
)
static
void
testGetIpNetTable
(
void
)
{
if
(
gGetIpNetTable
)
{
DWORD
apiReturn
;
...
...
@@ -307,7 +307,7 @@ void testGetIpNetTable(void)
}
}
void
testGetIcmpStatistics
(
void
)
static
void
testGetIcmpStatistics
(
void
)
{
if
(
gGetIcmpStatistics
)
{
DWORD
apiReturn
;
...
...
@@ -325,7 +325,7 @@ void testGetIcmpStatistics(void)
}
}
void
testGetIpStatistics
(
void
)
static
void
testGetIpStatistics
(
void
)
{
if
(
gGetIpStatistics
)
{
DWORD
apiReturn
;
...
...
@@ -343,7 +343,7 @@ void testGetIpStatistics(void)
}
}
void
testGetTcpStatistics
(
void
)
static
void
testGetTcpStatistics
(
void
)
{
if
(
gGetTcpStatistics
)
{
DWORD
apiReturn
;
...
...
@@ -361,7 +361,7 @@ void testGetTcpStatistics(void)
}
}
void
testGetUdpStatistics
(
void
)
static
void
testGetUdpStatistics
(
void
)
{
if
(
gGetUdpStatistics
)
{
DWORD
apiReturn
;
...
...
@@ -379,7 +379,7 @@ void testGetUdpStatistics(void)
}
}
void
testGetTcpTable
(
void
)
static
void
testGetTcpTable
(
void
)
{
if
(
gGetTcpTable
)
{
DWORD
apiReturn
;
...
...
@@ -407,7 +407,7 @@ void testGetTcpTable(void)
}
}
void
testGetUdpTable
(
void
)
static
void
testGetUdpTable
(
void
)
{
if
(
gGetUdpTable
)
{
DWORD
apiReturn
;
...
...
dlls/kernel/tests/pipe.c
View file @
9213d56a
...
...
@@ -297,7 +297,7 @@ static void test_CreateNamedPipe(int pipemode)
trace
(
"test_CreateNamedPipe returning
\n
"
);
}
void
test_CreateNamedPipe_instances_must_match
(
void
)
static
void
test_CreateNamedPipe_instances_must_match
(
void
)
{
HANDLE
hnp
,
hnp2
;
...
...
dlls/msvcrt/tests/headers.c
View file @
9213d56a
...
...
@@ -73,7 +73,7 @@
#define CHECK_DEF(n,d1,d2) ok(d1 == d2, "Defines (MSVCRT_)%s are different: '%d' vs. '%d'\n", n, d1, d2)
/************* Checking types ***************/
void
test_types
(
void
)
static
void
test_types
(
void
)
{
CHECK_TYPE
(
wchar_t
);
CHECK_TYPE
(
wint_t
);
...
...
@@ -97,7 +97,7 @@ void test_types(void)
}
/************* Checking structs ***************/
void
test_structs
(
void
)
static
void
test_structs
(
void
)
{
CHECK_STRUCT
(
tm
);
CHECK_FIELD
(
tm
,
tm_sec
);
...
...
dlls/msvcrtd/tests/debug.c
View file @
9213d56a
...
...
@@ -34,7 +34,7 @@ static void * (*pMSVCRTD_operator_new_dbg)(unsigned long, int, const char *, int
#define SETNOFAIL(x,y) x = (void*)GetProcAddress(hModule,y)
#define SET(x,y) SETNOFAIL(x,y); ok(x != NULL, "Export '%s' not found\n", y)
int
init_functions
(
void
)
static
int
init_functions
(
void
)
{
HMODULE
hModule
=
LoadLibraryA
(
"msvcrtd.dll"
);
ok
(
hModule
!=
NULL
,
"LoadLibraryA failed
\n
"
);
...
...
@@ -51,7 +51,7 @@ int init_functions(void)
/**********************************************************************/
void
test_new
(
void
)
static
void
test_new
(
void
)
{
void
*
mem
;
...
...
dlls/netapi32/tests/access.c
View file @
9213d56a
...
...
@@ -64,7 +64,7 @@ static int init_access_tests(void)
return
1
;
}
void
run_usergetinfo_tests
(
void
)
static
void
run_usergetinfo_tests
(
void
)
{
NET_API_STATUS
rc
;
PUSER_INFO_0
ui0
=
NULL
;
...
...
@@ -123,7 +123,7 @@ void run_usergetinfo_tests(void)
}
/* checks Level 1 of NetQueryDisplayInformation */
void
run_querydisplayinformation1_tests
(
void
)
static
void
run_querydisplayinformation1_tests
(
void
)
{
PNET_DISPLAY_USER
Buffer
,
rec
;
DWORD
Result
,
EntryCount
;
...
...
dlls/netapi32/tests/apibuf.c
View file @
9213d56a
...
...
@@ -35,7 +35,7 @@ static NET_API_STATUS (WINAPI *pNetApiBufferReallocate)(LPVOID,DWORD,LPVOID*)=NU
static
NET_API_STATUS
(
WINAPI
*
pNetApiBufferSize
)(
LPVOID
,
LPDWORD
)
=
NULL
;
void
run_apibuf_tests
(
void
)
static
void
run_apibuf_tests
(
void
)
{
VOID
*
p
;
DWORD
dwSize
;
...
...
dlls/rpcrt4/tests/rpc.c
View file @
9213d56a
...
...
@@ -58,7 +58,7 @@ static BOOL Uuid_Comparison_Grid[11][11] = {
{
TRUE
,
FALSE
,
FALSE
,
FALSE
,
FALSE
,
FALSE
,
FALSE
,
FALSE
,
FALSE
,
FALSE
,
TRUE
}
};
void
UuidConversionAndComparison
(
void
)
{
static
void
UuidConversionAndComparison
(
void
)
{
CHAR
strx
[
100
],
x
;
LPSTR
str
=
strx
;
WCHAR
wstrx
[
100
],
wx
;
...
...
@@ -123,7 +123,7 @@ void UuidConversionAndComparison(void) {
}
}
void
TestDceErrorInqText
(
void
)
static
void
TestDceErrorInqText
(
void
)
{
char
bufferInvalid
[
1024
];
char
buffer
[
1024
];
/* The required size is not documented but would
...
...
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