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
d9780a8b
Commit
d9780a8b
authored
Jul 03, 2003
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed compile when functions are not inlined.
parent
b23aa943
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
sysdeps.c
dlls/ntdll/sysdeps.c
+1
-1
smb.h
files/smb.h
+2
-2
No files found.
dlls/ntdll/sysdeps.c
View file @
d9780a8b
...
...
@@ -105,7 +105,7 @@ void SYSDEPS_SetCurThread( TEB *teb )
*/
inline
static
char
*
get_temp_stack
(
void
)
{
unsigned
int
next
=
InterlockedExchangeA
dd
(
&
next_temp_stack
,
1
);
unsigned
int
next
=
interlocked_xchg_a
dd
(
&
next_temp_stack
,
1
);
return
temp_stacks
[
next
%
NB_TEMP_STACKS
];
}
...
...
files/smb.h
View file @
d9780a8b
...
...
@@ -19,8 +19,8 @@
#ifndef __INC_SMB__
#define __INC_SMB__
extern
inline
int
SMB_isSepW
(
WCHAR
c
)
{
return
(
c
==
'\\'
||
c
==
'/'
);}
extern
inline
int
SMB_isUNCW
(
LPCWSTR
filename
)
{
return
(
filename
&&
SMB_isSepW
(
filename
[
0
])
&&
SMB_isSepW
(
filename
[
1
]));}
static
inline
int
SMB_isSepW
(
WCHAR
c
)
{
return
(
c
==
'\\'
||
c
==
'/'
);}
static
inline
int
SMB_isUNCW
(
LPCWSTR
filename
)
{
return
(
filename
&&
SMB_isSepW
(
filename
[
0
])
&&
SMB_isSepW
(
filename
[
1
]));}
NTSTATUS
WINAPI
SMB_ReadFile
(
HANDLE
hFile
,
LPVOID
buffer
,
DWORD
bytesToRead
,
PIO_STATUS_BLOCK
io_status
);
...
...
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