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
5038c04e
Commit
5038c04e
authored
Jan 31, 2002
by
Patrik Stridvall
Committed by
Alexandre Julliard
Jan 31, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed some issues found by winapi_check.
parent
a44d9fca
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
18 additions
and
3 deletions
+18
-3
rpcrt4.spec
dlls/rpcrt4/rpcrt4.spec
+1
-1
rpcrt4_main.c
dlls/rpcrt4/rpcrt4_main.c
+4
-1
shell.c
dlls/shell32/shell.c
+6
-0
rpcdce.h
include/rpcdce.h
+1
-1
init.c
win32/init.c
+6
-0
No files found.
dlls/rpcrt4/rpcrt4.spec
View file @
5038c04e
...
...
@@ -24,7 +24,7 @@ debug_channels (ole)
@ stub MqRegisterQueue # win9x
@ stdcall NdrDllCanUnloadNow(ptr) NdrDllCanUnloadNow
@ stdcall NdrDllGetClassObject() NdrDllGetClassObject
@ stdcall NdrDllGetClassObject(
ptr ptr ptr ptr ptr ptr
) NdrDllGetClassObject
@ stdcall NdrDllRegisterProxy(long ptr ptr) NdrDllRegisterProxy
@ stub NdrDllUnregisterProxy
...
...
dlls/rpcrt4/rpcrt4_main.c
View file @
5038c04e
...
...
@@ -510,7 +510,7 @@ RPC_STATUS WINAPI RpcStringBindingComposeW( LPWSTR ObjUuid, LPWSTR Protseq, LPWS
/***********************************************************************
* RpcBindingFree (RPCRT4.@)
*/
RPC_STATUS
WINAPI
RpcBindingFree
(
/*RPC_BINDING_HANDLE* */
void
*
Binding
)
RPC_STATUS
WINAPI
RpcBindingFree
(
RPC_BINDING_HANDLE
*
Binding
)
{
FIXME
(
"(%p): stub
\n
"
,
Binding
);
return
RPC_S_OK
;
...
...
@@ -544,6 +544,9 @@ HRESULT WINAPI NdrDllCanUnloadNow(CStdPSFactoryBuffer *pPSFactoryBuffer)
return
FALSE
;
}
/***********************************************************************
* NdrDllGetClassObject (RPCRT4.@)
*/
HRESULT
WINAPI
NdrDllGetClassObject
(
REFCLSID
rclsid
,
REFIID
riid
,
LPVOID
*
ppv
,
const
ProxyFileInfo
**
pProxyFileList
,
...
...
dlls/shell32/shell.c
View file @
5038c04e
...
...
@@ -650,6 +650,12 @@ HICON WINAPI ExtractAssociatedIconA(HINSTANCE hInst, LPSTR lpIconPath, LPWORD lp
return
ExtractAssociatedIcon16
(
hInst
,
lpIconPath
,
lpiIcon
);
}
/*************************************************************************
* ExtractAssociatedIconExW (SHELL32.@)
*
* Return icon for given file (either from file itself or from associated
* executable) and patch parameters if needed.
*/
HICON
WINAPI
ExtractAssociatedIconExW
(
DWORD
d1
,
DWORD
d2
,
DWORD
d3
,
DWORD
d4
)
{
FIXME
(
"(%lx %lx %lx %lx): stub
\n
"
,
d1
,
d2
,
d3
,
d4
);
...
...
include/rpcdce.h
View file @
5038c04e
...
...
@@ -78,7 +78,7 @@ RPCRTAPI RPC_STATUS RPC_ENTRY
RpcBindingCopy
(
RPC_BINDING_HANDLE
SourceBinding
,
RPC_BINDING_HANDLE
*
DestinationBinding
);
RPCRTAPI
RPC_STATUS
RPC_ENTRY
RpcBindingFree
(
RPC_BINDING_HANDLE
Binding
);
RpcBindingFree
(
RPC_BINDING_HANDLE
*
Binding
);
RPCRTAPI
RPC_STATUS
RPC_ENTRY
RpcBindingFromStringBindingA
(
LPSTR
StringBinding
,
RPC_BINDING_HANDLE
*
Binding
);
...
...
win32/init.c
View file @
5038c04e
...
...
@@ -70,12 +70,18 @@ BOOL WINAPI GetComputerNameW(LPWSTR name,LPDWORD size)
return
ret
;
}
/***********************************************************************
* GetComputerNameExA (KERNEL32.@)
*/
BOOL
WINAPI
GetComputerNameExA
(
COMPUTER_NAME_FORMAT
type
,
LPSTR
name
,
LPDWORD
size
)
{
FIXME
(
"(%d, %p, %p) semi-stub!
\n
"
,
type
,
name
,
size
);
return
GetComputerNameA
(
name
,
size
);
}
/***********************************************************************
* GetComputerNameExW (KERNEL32.@)
*/
BOOL
WINAPI
GetComputerNameExW
(
COMPUTER_NAME_FORMAT
type
,
LPWSTR
name
,
LPDWORD
size
)
{
FIXME
(
"(%d, %p, %p) semi-stub!
\n
"
,
type
,
name
,
size
);
...
...
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