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
63b596d7
Commit
63b596d7
authored
May 06, 2005
by
Francois Gouget
Committed by
Alexandre Julliard
May 06, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Tweak the documentation to make winapi_check happy.
parent
8054f6c5
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
37 additions
and
17 deletions
+37
-17
registry.c
dlls/msi/registry.c
+17
-1
opengl.c
dlls/x11drv/opengl.c
+20
-16
No files found.
dlls/msi/registry.c
View file @
63b596d7
...
...
@@ -722,6 +722,10 @@ UINT WINAPI MsiEnumClientsW(LPCWSTR szComponent, DWORD index, LPWSTR szProduct)
return
r
;
}
/*************************************************************************
* MsiEnumComponentQualifiersA [MSI.@]
*
*/
UINT
WINAPI
MsiEnumComponentQualifiersA
(
LPSTR
szComponent
,
DWORD
iIndex
,
LPSTR
lpQualifierBuf
,
DWORD
*
pcchQualifierBuf
,
LPSTR
lpApplicationDataBuf
,
DWORD
*
pcchApplicationDataBuf
)
...
...
@@ -768,7 +772,7 @@ UINT WINAPI MsiEnumComponentQualifiersA( LPSTR szComponent, DWORD iIndex,
/*
* A bit of wizardry to report back the length without the null.
* just in case the buffer is to small and is filled.
* just in case the buffer is to
o
small and is filled.
*/
if
(
lpQualifierBuf
)
{
...
...
@@ -799,6 +803,10 @@ UINT WINAPI MsiEnumComponentQualifiersA( LPSTR szComponent, DWORD iIndex,
return
rc
;
}
/*************************************************************************
* MsiEnumComponentQualifiersW [MSI.@]
*
*/
UINT
WINAPI
MsiEnumComponentQualifiersW
(
LPWSTR
szComponent
,
DWORD
iIndex
,
LPWSTR
lpQualifierBuf
,
DWORD
*
pcchQualifierBuf
,
LPWSTR
lpApplicationDataBuf
,
DWORD
*
pcchApplicationDataBuf
)
...
...
@@ -858,6 +866,10 @@ UINT WINAPI MsiEnumComponentQualifiersW( LPWSTR szComponent, DWORD iIndex,
return
rc
;
}
/*************************************************************************
* MsiEnumRelatedProductsW [MSI.@]
*
*/
UINT
WINAPI
MsiEnumRelatedProductsW
(
LPCWSTR
szUpgradeCode
,
DWORD
dwReserved
,
DWORD
iProductIndex
,
LPWSTR
lpProductBuf
)
{
...
...
@@ -885,6 +897,10 @@ UINT WINAPI MsiEnumRelatedProductsW(LPCWSTR szUpgradeCode, DWORD dwReserved,
return
r
;
}
/*************************************************************************
* MsiEnumRelatedProductsA [MSI.@]
*
*/
UINT
WINAPI
MsiEnumRelatedProductsA
(
LPCSTR
szUpgradeCode
,
DWORD
dwReserved
,
DWORD
iProductIndex
,
LPSTR
lpProductBuf
)
{
...
...
dlls/x11drv/opengl.c
View file @
63b596d7
...
...
@@ -272,10 +272,11 @@ choose_exit:
return
ret
;
}
/* X11DRV_DescribePixelFormat
Get the pixel-format descriptor associated to the given id
*/
/**
* X11DRV_DescribePixelFormat
*
* Get the pixel-format descriptor associated to the given id
*/
int
X11DRV_DescribePixelFormat
(
X11DRV_PDEVICE
*
physDev
,
int
iPixelFormat
,
UINT
nBytes
,
...
...
@@ -403,20 +404,22 @@ int X11DRV_DescribePixelFormat(X11DRV_PDEVICE *physDev,
return
ret
;
}
/* X11DRV_GetPixelFormat
Get the pixel-format id used by this DC
*/
/**
* X11DRV_GetPixelFormat
*
* Get the pixel-format id used by this DC
*/
int
X11DRV_GetPixelFormat
(
X11DRV_PDEVICE
*
physDev
)
{
TRACE
(
"(%p): returns %d
\n
"
,
physDev
,
physDev
->
current_pf
);
return
physDev
->
current_pf
;
}
/* X11DRV_SetPixelFormat
Set the pixel-format id used by this DC
*/
/**
* X11DRV_SetPixelFormat
*
* Set the pixel-format id used by this DC
*/
BOOL
X11DRV_SetPixelFormat
(
X11DRV_PDEVICE
*
physDev
,
int
iPixelFormat
,
const
PIXELFORMATDESCRIPTOR
*
ppfd
)
{
...
...
@@ -427,10 +430,11 @@ BOOL X11DRV_SetPixelFormat(X11DRV_PDEVICE *physDev,
return
TRUE
;
}
/* X11DRV_SwapBuffers
Swap the buffers of this DC
*/
/**
* X11DRV_SwapBuffers
*
* Swap the buffers of this DC
*/
BOOL
X11DRV_SwapBuffers
(
X11DRV_PDEVICE
*
physDev
)
{
if
(
opengl_handle
==
NULL
)
{
ERR
(
"No libGL on this box - disabling OpenGL support !
\n
"
);
...
...
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