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
2d55e048
Commit
2d55e048
authored
Mar 31, 2003
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Mar 31, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix some problems found while compiling and linking Wine under
Cygwin.
parent
70c47b66
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
11 additions
and
10 deletions
+11
-10
Makefile.in
dlls/commdlg/Makefile.in
+1
-1
Makefile.in
dlls/kernel/Makefile.in
+1
-0
Makefile.in
dlls/oleaut32/Makefile.in
+1
-1
umon.c
dlls/urlmon/umon.c
+1
-1
urlcache.c
dlls/wininet/urlcache.c
+1
-1
wininet.spec
dlls/wininet/wininet.spec
+3
-3
Makefile.in
dlls/winspool/Makefile.in
+1
-1
wininet.h
include/wininet.h
+2
-2
No files found.
dlls/commdlg/Makefile.in
View file @
2d55e048
...
...
@@ -3,7 +3,7 @@ TOPOBJDIR = ../..
SRCDIR
=
@srcdir@
VPATH
=
@srcdir@
MODULE
=
comdlg32.dll
IMPORTS
=
shell32 shlwapi comctl32 winspool user32 gdi32 kernel32
IMPORTS
=
shell32 shlwapi comctl32 winspool user32 gdi32 kernel32
ntdll
ALTNAMES
=
commdlg.dll
EXTRALIBS
=
$(LIBUUID)
...
...
dlls/kernel/Makefile.in
View file @
2d55e048
...
...
@@ -7,6 +7,7 @@ MODULE = kernel32.dll
IMPORTS
=
ntdll
ALTNAMES
=
krnl386.exe comm.dll stress.dll system.dll toolhelp.dll windebug.dll win87em.dll wprocs.dll
LDIMPORTS
=
ntdll.dll
EXTRALIBS
=
$(LIBUNICODE)
DLLMAIN
=
MAIN_KernelInit
SPEC_SRCS16
=
\
...
...
dlls/oleaut32/Makefile.in
View file @
2d55e048
...
...
@@ -4,7 +4,7 @@ TOPOBJDIR = ../..
SRCDIR
=
@srcdir@
VPATH
=
@srcdir@
MODULE
=
oleaut32.dll
IMPORTS
=
ole32 user32 gdi32 advapi32 kernel32
IMPORTS
=
ole32 user32 gdi32 advapi32 kernel32
ntdll
DELAYIMPORTS
=
comctl32
ALTNAMES
=
ole2disp.dll typelib.dll
EXTRALIBS
=
$(LIBUNICODE)
$(LIBUUID)
@GIFLIB@ @JPEGLIB@
...
...
dlls/urlmon/umon.c
View file @
2d55e048
...
...
@@ -897,7 +897,7 @@ HRESULT WINAPI CoInternetGetSession(DWORD dwSessionMode, /*IInternetSession*/voi
* INET_E_QUERYOPTIONUNKNOWN invalid option
*
*/
HRESULT
CoInternetQueryInfo
(
LPCWSTR
pwzUrl
,
QUERYOPTION
QueryOption
,
HRESULT
WINAPI
CoInternetQueryInfo
(
LPCWSTR
pwzUrl
,
QUERYOPTION
QueryOption
,
DWORD
dwQueryFlags
,
LPVOID
pvBuffer
,
DWORD
cbBuffer
,
DWORD
*
pcbBuffer
,
DWORD
dwReserved
)
{
...
...
dlls/wininet/urlcache.c
View file @
2d55e048
...
...
@@ -95,7 +95,7 @@ BOOL WINAPI SetUrlCacheEntryGroup(LPCSTR lpszUrlName, DWORD dwFlags,
BOOL
WINAPI
CommitUrlCacheEntryA
(
LPCSTR
lpszUrl
,
LPCSTR
lpszLocalName
,
FILETIME
ExpireTime
,
FILETIME
lastModified
,
DWORD
cacheEntryType
,
LPBYTE
lpHeaderInfo
,
DWORD
headerSize
,
LPCSTR
fileExtension
,
DWORD
originalUrl
)
LPCSTR
originalUrl
)
{
FIXME
(
"stub
\n
"
);
return
FALSE
;
...
...
dlls/wininet/wininet.spec
View file @
2d55e048
@ stdcall InternetInitializeAutoProxyDll(long)
@ stub ShowCertificate
@ stdcall CommitUrlCacheEntryA(str str
long long
long str long str str)
@ stdcall CommitUrlCacheEntryA(str str
double double
long str long str str)
@ stub CommitUrlCacheEntryW
@ stub CreateUrlCacheContainerA
@ stub CreateUrlCacheContainerW
...
...
@@ -11,7 +11,7 @@
@ stub DeleteUrlCacheContainerA
@ stub DeleteUrlCacheContainerW
@ stdcall DeleteUrlCacheEntry(str)
@ stdcall DeleteUrlCacheGroup(
long long ptr)
@ stdcall DeleteUrlCacheGroup(
double long ptr) DeleteUrlCacheGroup
@ stdcall DllInstall(long ptr) WININET_DllInstall
@ stub FindCloseUrlCache
@ stub FindFirstUrlCacheContainerA
...
...
@@ -153,7 +153,7 @@
@ stub RunOnceUrlCache
@ stub SetUrlCacheConfigInfoA
@ stub SetUrlCacheConfigInfoW
@ stdcall SetUrlCacheEntryGroup(str long
long
ptr long ptr)
@ stdcall SetUrlCacheEntryGroup(str long
double
ptr long ptr)
@ stub SetUrlCacheEntryInfoA
@ stub SetUrlCacheEntryInfoW
@ stub SetUrlCacheHeaderData
...
...
dlls/winspool/Makefile.in
View file @
2d55e048
...
...
@@ -4,7 +4,7 @@ TOPOBJDIR = ../..
SRCDIR
=
@srcdir@
VPATH
=
@srcdir@
MODULE
=
winspool.drv
IMPORTS
=
advapi32 kernel32
IMPORTS
=
advapi32 kernel32
ntdll
LDDLLFLAGS
=
@LDDLLFLAGS@
SYMBOLFILE
=
$(MODULE)
.tmp.o
...
...
include/wininet.h
View file @
2d55e048
...
...
@@ -1337,8 +1337,8 @@ BOOLAPI CreateUrlCacheEntryA(LPCSTR ,DWORD ,LPCSTR ,LPSTR ,DWORD);
BOOLAPI
CreateUrlCacheEntryW
(
LPCWSTR
,
DWORD
,
LPCWSTR
,
LPWSTR
,
DWORD
);
#define CreateUrlCacheEntry WINELIB_NAME_AW(CreateUrlCacheEntry)
BOOLAPI
CommitUrlCacheEntryA
(
LPCSTR
,
LPCSTR
,
FILETIME
,
FILETIME
,
DWORD
,
LPBYTE
,
DWORD
,
LPCSTR
,
DWORD
);
BOOLAPI
CommitUrlCacheEntryW
(
LPC
WSTR
,
LPCWSTR
,
FILETIME
,
FILETIME
,
DWORD
,
LPBYTE
,
DWORD
,
LPCWSTR
,
DWORD
);
BOOLAPI
CommitUrlCacheEntryA
(
LPCSTR
,
LPCSTR
,
FILETIME
,
FILETIME
,
DWORD
,
LPBYTE
,
DWORD
,
LPCSTR
,
LPCSTR
);
BOOLAPI
CommitUrlCacheEntryW
(
LPC
STR
,
LPCWSTR
,
FILETIME
,
FILETIME
,
DWORD
,
LPWSTR
,
DWORD
,
LPCWSTR
,
LPCWSTR
);
#define CommitUrlCacheEntry WINELIB_NAME_AW(CommitUrlCacheEntry)
BOOLAPI
RetrieveUrlCacheEntryFileA
(
LPCSTR
,
LPINTERNET_CACHE_ENTRY_INFOA
,
LPDWORD
,
DWORD
);
...
...
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