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
50976092
Commit
50976092
authored
Nov 07, 2007
by
Andrew Talbot
Committed by
Alexandre Julliard
Nov 08, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
urlmon: Constify some variables.
parent
76255835
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
format.c
dlls/urlmon/format.c
+2
-2
http.c
dlls/urlmon/http.c
+1
-1
umon.c
dlls/urlmon/umon.c
+1
-1
No files found.
dlls/urlmon/format.c
View file @
50976092
...
...
@@ -43,7 +43,7 @@ typedef struct {
LONG
ref
;
}
EnumFORMATETC
;
static
IEnumFORMATETC
*
EnumFORMATETC_Create
(
UINT
cfmtetc
,
FORMATETC
*
rgfmtetc
,
UINT
it
);
static
IEnumFORMATETC
*
EnumFORMATETC_Create
(
UINT
cfmtetc
,
const
FORMATETC
*
rgfmtetc
,
UINT
it
);
#define ENUMF_THIS(iface) ICOM_THIS_MULTI(EnumFORMATETC, lpEnumFORMATETCVtbl, iface)
...
...
@@ -158,7 +158,7 @@ static const IEnumFORMATETCVtbl EnumFORMATETCVtbl = {
EnumFORMATETC_Clone
};
static
IEnumFORMATETC
*
EnumFORMATETC_Create
(
UINT
cfmtetc
,
FORMATETC
*
rgfmtetc
,
UINT
it
)
static
IEnumFORMATETC
*
EnumFORMATETC_Create
(
UINT
cfmtetc
,
const
FORMATETC
*
rgfmtetc
,
UINT
it
)
{
EnumFORMATETC
*
ret
=
HeapAlloc
(
GetProcessHeap
(),
0
,
sizeof
(
EnumFORMATETC
));
...
...
dlls/urlmon/http.c
View file @
50976092
...
...
@@ -228,7 +228,7 @@ static void CALLBACK HTTPPROTOCOL_InternetStatusCallback(
IInternetProtocolSink_ReportProgress
(
This
->
protocol_sink
,
ulStatusCode
,
(
LPWSTR
)
lpvStatusInformation
);
}
static
inline
LPWSTR
strndupW
(
LPWSTR
string
,
int
len
)
static
inline
LPWSTR
strndupW
(
LP
C
WSTR
string
,
int
len
)
{
LPWSTR
ret
=
NULL
;
if
(
string
&&
...
...
dlls/urlmon/umon.c
View file @
50976092
...
...
@@ -183,7 +183,7 @@ static void Binding_CloseCacheDownload(Binding *This)
This
->
pstrCache
=
0
;
}
static
HRESULT
Binding_MoreCacheData
(
Binding
*
This
,
char
*
buf
,
DWORD
dwBytes
)
static
HRESULT
Binding_MoreCacheData
(
Binding
*
This
,
c
onst
c
har
*
buf
,
DWORD
dwBytes
)
{
DWORD
written
;
...
...
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