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
94defee5
Commit
94defee5
authored
Aug 08, 2005
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't prefix the functions DllInstall and DllGetVersion with the dll
name so that the compiler can check the prototypes.
parent
5f4cdfcd
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
6 additions
and
7 deletions
+6
-7
riched32.spec
dlls/richedit/riched32.spec
+1
-1
richedit.c
dlls/richedit/richedit.c
+1
-1
shlwapi.spec
dlls/shlwapi/shlwapi.spec
+1
-1
shlwapi_main.c
dlls/shlwapi/shlwapi_main.c
+1
-1
wininet.spec
dlls/wininet/wininet.spec
+1
-1
wininet_main.c
dlls/wininet/wininet_main.c
+1
-2
No files found.
dlls/richedit/riched32.spec
View file @
94defee5
2 stdcall
DllGetVersion (ptr) RICHED32_DllGetVersion
2 stdcall
-private DllGetVersion (ptr)
dlls/richedit/richedit.c
View file @
94defee5
...
@@ -90,7 +90,7 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
...
@@ -90,7 +90,7 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
*
*
* Retrieves version information
* Retrieves version information
*/
*/
HRESULT
WINAPI
RICHED32_
DllGetVersion
(
DLLVERSIONINFO
*
pdvi
)
HRESULT
WINAPI
DllGetVersion
(
DLLVERSIONINFO
*
pdvi
)
{
{
TRACE
(
"
\n
"
);
TRACE
(
"
\n
"
);
...
...
dlls/shlwapi/shlwapi.spec
View file @
94defee5
...
@@ -559,7 +559,7 @@
...
@@ -559,7 +559,7 @@
@ stdcall ColorAdjustLuma(long long long)
@ stdcall ColorAdjustLuma(long long long)
@ stdcall ColorHLSToRGB(long long long)
@ stdcall ColorHLSToRGB(long long long)
@ stdcall ColorRGBToHLS(long ptr ptr ptr)
@ stdcall ColorRGBToHLS(long ptr ptr ptr)
@ stdcall
DllGetVersion (ptr) SHLWAPI_DllGetVersion
@ stdcall
-private DllGetVersion(ptr)
@ stdcall GetMenuPosFromID(ptr long)
@ stdcall GetMenuPosFromID(ptr long)
@ stdcall HashData (ptr long ptr long)
@ stdcall HashData (ptr long ptr long)
@ stdcall IntlStrEqWorkerA(long str str long) StrIsIntlEqualA
@ stdcall IntlStrEqWorkerA(long str str long) StrIsIntlEqualA
...
...
dlls/shlwapi/shlwapi_main.c
View file @
94defee5
...
@@ -105,7 +105,7 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID fImpLoad)
...
@@ -105,7 +105,7 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID fImpLoad)
* as pdvi, provided that the size is set correctly.
* as pdvi, provided that the size is set correctly.
* Returns version as shlwapi.dll from IE5.01.
* Returns version as shlwapi.dll from IE5.01.
*/
*/
HRESULT
WINAPI
SHLWAPI_
DllGetVersion
(
DLLVERSIONINFO
*
pdvi
)
HRESULT
WINAPI
DllGetVersion
(
DLLVERSIONINFO
*
pdvi
)
{
{
DLLVERSIONINFO2
*
pdvi2
=
(
DLLVERSIONINFO2
*
)
pdvi
;
DLLVERSIONINFO2
*
pdvi2
=
(
DLLVERSIONINFO2
*
)
pdvi
;
...
...
dlls/wininet/wininet.spec
View file @
94defee5
...
@@ -32,7 +32,7 @@
...
@@ -32,7 +32,7 @@
@ stdcall DeleteUrlCacheEntryW(wstr)
@ stdcall DeleteUrlCacheEntryW(wstr)
@ stdcall DeleteUrlCacheGroup(double long ptr)
@ stdcall DeleteUrlCacheGroup(double long ptr)
@ stdcall DetectAutoProxyUrl(str long long)
@ stdcall DetectAutoProxyUrl(str long long)
@ stdcall
DllInstall(long ptr) WININET_DllInstall
@ stdcall
-private DllInstall(long wstr)
@ stdcall FindCloseUrlCache(long)
@ stdcall FindCloseUrlCache(long)
@ stdcall FindFirstUrlCacheContainerA(ptr ptr ptr long)
@ stdcall FindFirstUrlCacheContainerA(ptr ptr ptr long)
@ stdcall FindFirstUrlCacheContainerW(ptr ptr ptr long)
@ stdcall FindFirstUrlCacheContainerW(ptr ptr ptr long)
...
...
dlls/wininet/wininet_main.c
View file @
94defee5
...
@@ -31,11 +31,10 @@ WINE_DEFAULT_DEBUG_CHANNEL(wininet);
...
@@ -31,11 +31,10 @@ WINE_DEFAULT_DEBUG_CHANNEL(wininet);
/***********************************************************************
/***********************************************************************
* DllInstall (WININET.@)
* DllInstall (WININET.@)
*/
*/
HRESULT
WINAPI
WININET_
DllInstall
(
BOOL
bInstall
,
LPCWSTR
cmdline
)
HRESULT
WINAPI
DllInstall
(
BOOL
bInstall
,
LPCWSTR
cmdline
)
{
{
FIXME
(
"(%s, %s): stub
\n
"
,
bInstall
?
"TRUE"
:
"FALSE"
,
FIXME
(
"(%s, %s): stub
\n
"
,
bInstall
?
"TRUE"
:
"FALSE"
,
debugstr_w
(
cmdline
));
debugstr_w
(
cmdline
));
return
S_OK
;
return
S_OK
;
}
}
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