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
55ef9a5a
Commit
55ef9a5a
authored
Apr 24, 2000
by
Patrik Stridvall
Committed by
Alexandre Julliard
Apr 24, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed issues found by winapi_check.
parent
14bb7f14
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
175 additions
and
18 deletions
+175
-18
comctl32.spec
dlls/comctl32/comctl32.spec
+1
-1
commctrl.c
dlls/comctl32/commctrl.c
+10
-0
dinput.spec
dlls/dinput/dinput.spec
+4
-4
dinput_main.c
dlls/dinput/dinput_main.c
+42
-0
dpclassfactory.c
dlls/dplayx/dpclassfactory.c
+10
-1
dplayx.spec
dlls/dplayx/dplayx.spec
+2
-2
shell32.spec
dlls/shell32/shell32.spec
+1
-1
shell32_main.c
dlls/shell32/shell32_main.c
+1
-1
Makefile.in
dlls/urlmon/Makefile.in
+3
-1
urlmon.spec
dlls/urlmon/urlmon.spec
+5
-5
urlmon_main.c
dlls/urlmon/urlmon_main.c
+68
-0
Makefile.in
dlls/wininet/Makefile.in
+2
-1
wininet.spec
dlls/wininet/wininet.spec
+1
-1
wininet_main.c
dlls/wininet/wininet_main.c
+25
-0
No files found.
dlls/comctl32/comctl32.spec
View file @
55ef9a5a
...
...
@@ -32,7 +32,7 @@ rsrc comctl32
23 stdcall CreateToolbarEx(long long long long long long ptr long long long long long long) CreateToolbarEx
24 stdcall DestroyPropertySheetPage(long) DestroyPropertySheetPage
25 stdcall DllGetVersion(ptr) COMCTL32_DllGetVersion
26 st
ub
DllInstall
26 st
dcall DllInstall(long ptr) COMCTL32_
DllInstall
27 stdcall DrawStatusText(long ptr ptr long) DrawStatusTextA
28 stdcall DrawStatusTextW(long ptr wstr long) DrawStatusTextW
29 stdcall FlatSB_EnableScrollBar (long long long) FlatSB_EnableScrollBar
...
...
dlls/comctl32/commctrl.c
View file @
55ef9a5a
...
...
@@ -852,6 +852,16 @@ COMCTL32_DllGetVersion (DLLVERSIONINFO *pdvi)
return
S_OK
;
}
/***********************************************************************
* DllInstall (COMCTL32.@)
*/
HRESULT
WINAPI
COMCTL32_DllInstall
(
BOOL
bInstall
,
LPCWSTR
cmdline
)
{
FIXME
(
"(%s, %s): stub
\n
"
,
bInstall
?
"TRUE"
:
"FALSE"
,
debugstr_w
(
cmdline
));
return
S_OK
;
}
static
int
iTrackMax
=
0
;
static
HWND
TrackingList
[
10
];
...
...
dlls/dinput/dinput.spec
View file @
55ef9a5a
...
...
@@ -3,7 +3,7 @@ type win32
@ stdcall DirectInputCreateA(long long ptr ptr) DirectInputCreateA
@ stub DirectInputCreateW
@ st
ub
DllCanUnloadNow
@ st
ub
DllGetClassObject
@ st
ub
DllRegisterServer
@ st
ub
DllUnregisterServer
@ st
dcall DllCanUnloadNow() DINPUT_
DllCanUnloadNow
@ st
dcall DllGetClassObject(ptr ptr ptr) DINPUT_
DllGetClassObject
@ st
dcall DllRegisterServer() DINPUT_
DllRegisterServer
@ st
dcall DllUnregisterServer() DINPUT_
DllUnregisterServer
dlls/dinput/dinput_main.c
View file @
55ef9a5a
...
...
@@ -2273,3 +2273,45 @@ static ICOM_VTABLE(IDirectInputDevice2A) JoystickAvt =
IDirectInputDevice2AImpl_SendDeviceData
,
};
#endif
/***********************************************************************
* DllCanUnloadNow (DINPUT.@)
*/
HRESULT
WINAPI
DINPUT_DllCanUnloadNow
(
void
)
{
FIXME
(
"(void): stub
\n
"
);
return
S_FALSE
;
}
/***********************************************************************
* DllGetClassObject (DINPUT.@)
*/
HRESULT
WINAPI
DINPUT_DllGetClassObject
(
REFCLSID
rclsid
,
REFIID
riid
,
LPVOID
*
ppv
)
{
FIXME
(
"(%p, %p, %p): stub
\n
"
,
debugstr_guid
(
rclsid
),
debugstr_guid
(
riid
),
ppv
);
return
CLASS_E_CLASSNOTAVAILABLE
;
}
/***********************************************************************
* DllRegisterServer (DINPUT.@)
*/
HRESULT
WINAPI
DINPUT_DllRegisterServer
(
void
)
{
FIXME
(
"(void): stub
\n
"
);
return
S_OK
;
}
/***********************************************************************
* DllUnregisterServer (DINPUT.@)
*/
HRESULT
WINAPI
DINPUT_DllUnregisterServer
(
void
)
{
FIXME
(
"(void): stub
\n
"
);
return
S_OK
;
}
dlls/dplayx/dpclassfactory.c
View file @
55ef9a5a
...
...
@@ -95,7 +95,7 @@ static IClassFactoryImpl DP_and_DPL_CF = {&DP_and_DPL_Vtbl, 1 };
* Failure: CLASS_E_CLASSNOTAVAILABLE, E_OUTOFMEMORY, E_INVALIDARG,
* E_UNEXPECTED
*/
DWORD
WINAPI
DP
_and_DPL
_DllGetClassObject
(
REFCLSID
rclsid
,
REFIID
riid
,
LPVOID
*
ppv
)
DWORD
WINAPI
DP
LAYX
_DllGetClassObject
(
REFCLSID
rclsid
,
REFIID
riid
,
LPVOID
*
ppv
)
{
TRACE
(
"(%p,%p,%p)
\n
"
,
debugstr_guid
(
rclsid
),
debugstr_guid
(
riid
),
ppv
);
...
...
@@ -111,3 +111,12 @@ DWORD WINAPI DP_and_DPL_DllGetClassObject(REFCLSID rclsid,REFIID riid,LPVOID *pp
return
CLASS_E_CLASSNOTAVAILABLE
;
}
/***********************************************************************
* DllCanUnloadNow (DPLAYX.@)
*/
HRESULT
WINAPI
DPLAYX_DllCanUnloadNow
(
void
)
{
FIXME
(
"(void): stub
\n
"
);
return
S_FALSE
;
}
dlls/dplayx/dplayx.spec
View file @
55ef9a5a
...
...
@@ -11,5 +11,5 @@ import ole32.dll
5 stdcall DirectPlayLobbyCreateW(ptr ptr ptr ptr long) DirectPlayLobbyCreateW
6 stub gdwDPlaySPRefCount
9 stdcall DirectPlayEnumerate(ptr ptr) DirectPlayEnumerateA
10 st
ub
DllCanUnloadNow
11 stdcall DllGetClassObject(ptr ptr ptr) DP
_and_DPL
_DllGetClassObject
10 st
dcall DllCanUnloadNow() DPLAYX_
DllCanUnloadNow
11 stdcall DllGetClassObject(ptr ptr ptr) DP
LAYX
_DllGetClassObject
dlls/shell32/shell32.spec
View file @
55ef9a5a
...
...
@@ -396,4 +396,4 @@ import comctl32.dll
1224 stdcall SHFileOperationA (ptr) SHFileOperationA # exported by name
1225 stdcall SHFileOperationW (ptr) SHFileOperationW # exported by name
1226 stdcall DllInstall (long wstr) DllInstall # win98:202
1226 stdcall DllInstall (long wstr)
SHELL32_
DllInstall # win98:202
dlls/shell32/shell32_main.c
View file @
55ef9a5a
...
...
@@ -876,7 +876,7 @@ BOOL WINAPI Shell32LibMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID fImpLoad)
* LPCWSTR pszCmdLine - command line (unused by shell32?)
*/
HRESULT
WINAPI
DllInstall
(
BOOL
bInstall
,
LPCWSTR
cmdline
)
HRESULT
WINAPI
SHELL32_
DllInstall
(
BOOL
bInstall
,
LPCWSTR
cmdline
)
{
FIXME
(
"(%s, %s): stub!
\n
"
,
bInstall
?
"TRUE"
:
"FALSE"
,
debugstr_w
(
cmdline
));
...
...
dlls/urlmon/Makefile.in
View file @
55ef9a5a
...
...
@@ -9,7 +9,9 @@ WRCEXTRA = -s -p$(MODULE)
SPEC_SRCS
=
urlmon.spec
C_SRCS
=
umon.c
C_SRCS
=
\
umon.c
\
urlmon_main.c
@MAKE_DLL_RULES@
...
...
dlls/urlmon/urlmon.spec
View file @
55ef9a5a
...
...
@@ -25,12 +25,12 @@ import ole32.dll
@ stub CreateAsyncBindCtxEx
@ stub CreateFormatEnumerator
@ stdcall CreateURLMoniker(ptr str ptr) CreateURLMoniker
@ st
ub
DllCanUnloadNow
@ st
ub
DllGetClassObject
@ st
ub
DllInstall
@ st
ub
DllRegisterServer
@ st
dcall DllCanUnloadNow() URLMON_
DllCanUnloadNow
@ st
dcall DllGetClassObject(ptr ptr ptr) URLMON_
DllGetClassObject
@ st
dcall DllInstall(long ptr) URLMON_
DllInstall
@ st
dcall DllRegisterServer() URLMON_
DllRegisterServer
@ stub DllRegisterServerEx
@ st
ub
DllUnregisterServer
@ st
dcall DllUnregisterServer() URLMON_
DllUnregisterServer
@ stub Extract
@ stub FaultInIEFeature
@ stub FindMediaType
...
...
dlls/urlmon/urlmon_main.c
0 → 100644
View file @
55ef9a5a
/*
* UrlMon
*
* Copyright (c) 2000 Patrik Stridvall
*
*/
#include "windef.h"
#include "winerror.h"
#include "wtypes.h"
#include "debugtools.h"
DEFAULT_DEBUG_CHANNEL
(
win32
);
/***********************************************************************
* URLMON_DllInstall (URLMON.@)
*/
HRESULT
WINAPI
URLMON_DllInstall
(
BOOL
bInstall
,
LPCWSTR
cmdline
)
{
FIXME
(
"(%s, %s): stub
\n
"
,
bInstall
?
"TRUE"
:
"FALSE"
,
debugstr_w
(
cmdline
));
return
S_OK
;
}
/***********************************************************************
* DllCanUnloadNow (URLMON.@)
*/
HRESULT
WINAPI
URLMON_DllCanUnloadNow
(
void
)
{
FIXME
(
"(void): stub
\n
"
);
return
S_FALSE
;
}
/***********************************************************************
* DllGetClassObject (URLMON.@)
*/
HRESULT
WINAPI
URLMON_DllGetClassObject
(
REFCLSID
rclsid
,
REFIID
riid
,
LPVOID
*
ppv
)
{
FIXME
(
"(%p, %p, %p): stub
\n
"
,
debugstr_guid
(
rclsid
),
debugstr_guid
(
riid
),
ppv
);
return
CLASS_E_CLASSNOTAVAILABLE
;
}
/***********************************************************************
* DllRegisterServer (URLMON.@)
*/
HRESULT
WINAPI
URLMON_DllRegisterServer
(
void
)
{
FIXME
(
"(void): stub
\n
"
);
return
S_OK
;
}
/***********************************************************************
* DllUnregisterServer (URLMON.@)
*/
HRESULT
WINAPI
URLMON_DllUnregisterServer
(
void
)
{
FIXME
(
"(void): stub
\n
"
);
return
S_OK
;
}
dlls/wininet/Makefile.in
View file @
55ef9a5a
...
...
@@ -10,7 +10,8 @@ SPEC_SRCS = wininet.spec
C_SRCS
=
\
internet.c
\
ftp.c
\
utility.c
utility.c
\
wininet_main.c
@MAKE_DLL_RULES@
...
...
dlls/wininet/wininet.spec
View file @
55ef9a5a
...
...
@@ -16,7 +16,7 @@ init WININET_LibMain
@ stub DeleteUrlCacheContainerW
@ stub DeleteUrlCacheEntry
@ stub DeleteUrlCacheGroup
@ st
ub
DllInstall
@ st
dcall DllInstall(long ptr) WININET_
DllInstall
@ stub FindCloseUrlCache
@ stub FindFirstUrlCacheContainerA
@ stub FindFirstUrlCacheContainerW
...
...
dlls/wininet/wininet_main.c
0 → 100644
View file @
55ef9a5a
/*
* WinInet
*
* Copyright (c) 2000 Patrik Stridvall
*
*/
#include "windef.h"
#include "winerror.h"
#include "debugtools.h"
DEFAULT_DEBUG_CHANNEL
(
wininet
);
/***********************************************************************
* WININET_DllInstall (WININET.@)
*/
HRESULT
WINAPI
WININET_DllInstall
(
BOOL
bInstall
,
LPCWSTR
cmdline
)
{
FIXME
(
"(%s, %s): stub
\n
"
,
bInstall
?
"TRUE"
:
"FALSE"
,
debugstr_w
(
cmdline
));
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