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
17689c07
Commit
17689c07
authored
May 12, 2006
by
Francois Gouget
Committed by
Alexandre Julliard
May 15, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix some winapi_check documentation warnings.
parent
f7c24f37
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
33 additions
and
0 deletions
+33
-0
security.c
dlls/advapi32/security.c
+6
-0
main.c
dlls/cfgmgr32/main.c
+9
-0
freetype.c
dlls/gdi/freetype.c
+2
-0
mprapi.c
dlls/mprapi/mprapi.c
+3
-0
sync.c
dlls/ntdll/sync.c
+3
-0
usrmarshal.c
dlls/ole32/usrmarshal.c
+6
-0
usp10.c
dlls/usp10/usp10.c
+4
-0
No files found.
dlls/advapi32/security.c
View file @
17689c07
...
...
@@ -2174,6 +2174,9 @@ VOID WINAPI BuildTrusteeWithObjectsAndNameW( PTRUSTEEW pTrustee, POBJECTS_AND_NA
pTrustee
->
ptstrName
=
(
LPWSTR
)
pObjName
;
}
/******************************************************************************
* BuildTrusteeWithObjectsAndSidA [ADVAPI32.@]
*/
VOID
WINAPI
BuildTrusteeWithObjectsAndSidA
(
PTRUSTEEA
pTrustee
,
POBJECTS_AND_SID
pObjSid
,
GUID
*
pObjectGuid
,
GUID
*
pInheritedObjectGuid
,
PSID
pSid
)
{
...
...
@@ -2215,6 +2218,9 @@ VOID WINAPI BuildTrusteeWithObjectsAndSidA( PTRUSTEEA pTrustee, POBJECTS_AND_SID
pTrustee
->
ptstrName
=
(
LPSTR
)
pObjSid
;
}
/******************************************************************************
* BuildTrusteeWithObjectsAndSidW [ADVAPI32.@]
*/
VOID
WINAPI
BuildTrusteeWithObjectsAndSidW
(
PTRUSTEEW
pTrustee
,
POBJECTS_AND_SID
pObjSid
,
GUID
*
pObjectGuid
,
GUID
*
pInheritedObjectGuid
,
PSID
pSid
)
{
...
...
dlls/cfgmgr32/main.c
View file @
17689c07
...
...
@@ -45,6 +45,9 @@ BOOL WINAPI DllMain( HINSTANCE inst, DWORD reason, LPVOID reserved )
return
TRUE
;
}
/***********************************************************************
* CM_Get_Device_ID_ListA (CFGMGR32.@)
*/
CONFIGRET
WINAPI
CM_Get_Device_ID_ListA
(
PCSTR
pszFilter
,
PCHAR
Buffer
,
ULONG
BufferLen
,
ULONG
ulFlags
)
{
...
...
@@ -53,6 +56,9 @@ CONFIGRET WINAPI CM_Get_Device_ID_ListA(
return
CR_SUCCESS
;
}
/***********************************************************************
* CM_Get_Device_ID_Size (CFGMGR32.@)
*/
CONFIGRET
WINAPI
CM_Get_Device_ID_Size
(
ULONG
*
pulLen
,
LPVOID
dnDevInst
,
ULONG
ulFlags
)
{
...
...
@@ -61,6 +67,9 @@ CONFIGRET WINAPI CM_Get_Device_ID_Size( ULONG* pulLen, LPVOID dnDevInst,
return
CR_SUCCESS
;
}
/***********************************************************************
* CM_Get_Device_IDA (CFGMGR32.@)
*/
CONFIGRET
WINAPI
CM_Get_Device_IDA
(
LPVOID
dnDevInst
,
LPSTR
Buffer
,
ULONG
BufferLen
,
ULONG
ulFlags
)
{
...
...
dlls/gdi/freetype.c
View file @
17689c07
...
...
@@ -4074,6 +4074,8 @@ BOOL WINAPI GetRasterizerCaps( LPRASTERIZER_STATUS lprs, UINT cbNumBytes)
#else
/* HAVE_FREETYPE */
/*************************************************************************/
BOOL
WineEngInit
(
void
)
{
return
FALSE
;
...
...
dlls/mprapi/mprapi.c
View file @
17689c07
...
...
@@ -44,6 +44,9 @@ BOOL WINAPI DllMain(HINSTANCE hinst, DWORD reason, LPVOID reserved)
return
TRUE
;
}
/***********************************************************************
* MprAdminIsServiceRunning (MPRAPI.@)
*/
BOOL
APIENTRY
MprAdminIsServiceRunning
(
LPWSTR
server
)
{
FIXME
(
"(%s): stub!
\n
"
,
debugstr_w
(
server
));
...
...
dlls/ntdll/sync.c
View file @
17689c07
...
...
@@ -843,6 +843,9 @@ NTSTATUS WINAPI NtDelayExecution( BOOLEAN alertable, const LARGE_INTEGER *timeou
return
STATUS_SUCCESS
;
}
/******************************************************************
* NtCreateIoCompletion (NTDLL.@)
*/
NTSTATUS
WINAPI
NtCreateIoCompletion
(
PHANDLE
CompletionPort
,
ACCESS_MASK
DesiredAccess
,
POBJECT_ATTRIBUTES
ObjectAttributes
,
ULONG
NumberOfConcurrentThreads
)
{
...
...
dlls/ole32/usrmarshal.c
View file @
17689c07
...
...
@@ -308,6 +308,9 @@ IMPL_WIREM_HANDLE(HACCEL)
IMPL_WIREM_HANDLE
(
HMENU
)
IMPL_WIREM_HANDLE
(
HWND
)
/******************************************************************************
* HGLOBAL_UserSize [OLE32.@]
*/
unsigned
long
__RPC_USER
HGLOBAL_UserSize
(
unsigned
long
*
pFlags
,
unsigned
long
StartingSize
,
HGLOBAL
*
phGlobal
)
{
unsigned
long
size
=
StartingSize
;
...
...
@@ -443,6 +446,9 @@ unsigned char * __RPC_USER HGLOBAL_UserUnmarshal(unsigned long *pFlags, unsigned
return
pBuffer
;
}
/******************************************************************************
* HGLOBAL_UserFree [OLE32.@]
*/
void
__RPC_USER
HGLOBAL_UserFree
(
unsigned
long
*
pFlags
,
HGLOBAL
*
phGlobal
)
{
TRACE
(
"("
);
dump_user_flags
(
pFlags
);
TRACE
(
", &%p
\n
"
,
*
phGlobal
);
...
...
dlls/usp10/usp10.c
View file @
17689c07
...
...
@@ -72,6 +72,10 @@ typedef struct scriptcache {
HDC
hdc
;
}
Scriptcache
;
/***********************************************************************
* DllMain
*
*/
BOOL
WINAPI
DllMain
(
HINSTANCE
hInstDLL
,
DWORD
fdwReason
,
LPVOID
lpv
)
{
switch
(
fdwReason
)
{
...
...
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