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
60767296
Commit
60767296
authored
Jun 19, 2001
by
Patrik Stridvall
Committed by
Alexandre Julliard
Jun 19, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Documentation ordinal fixes.
parent
de70d2b2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
93 additions
and
87 deletions
+93
-87
comctl32undoc.c
dlls/comctl32/comctl32undoc.c
+2
-2
commctrl.c
dlls/comctl32/commctrl.c
+8
-6
draglist.c
dlls/comctl32/draglist.c
+3
-3
flatsb.c
dlls/comctl32/flatsb.c
+12
-12
imagelist.c
dlls/comctl32/imagelist.c
+38
-37
propsheet.c
dlls/comctl32/propsheet.c
+5
-3
cdlg32.c
dlls/commdlg/cdlg32.c
+3
-2
colordlg.c
dlls/commdlg/colordlg.c
+2
-2
filedlg.c
dlls/commdlg/filedlg.c
+4
-4
filetitle.c
dlls/commdlg/filetitle.c
+2
-2
finddlg32.c
dlls/commdlg/finddlg32.c
+4
-4
fontdlg.c
dlls/commdlg/fontdlg.c
+3
-3
generic.c
dlls/commdlg/generic.c
+1
-1
printdlg.c
dlls/commdlg/printdlg.c
+6
-6
No files found.
dlls/comctl32/comctl32undoc.c
View file @
60767296
...
...
@@ -1086,7 +1086,7 @@ DSA_SetItem (const HDSA hdsa, INT nIndex, LPVOID pSrc)
/**************************************************************************
* DSA_InsertItem [COMCTL32.32
5
]
* DSA_InsertItem [COMCTL32.32
4
]
*
* PARAMS
* hdsa [I] pointer to the array control structure
...
...
@@ -1210,7 +1210,7 @@ DSA_DeleteItem (const HDSA hdsa, INT nIndex)
/**************************************************************************
* DSA_DeleteAllItems [COMCTL32.32
6
]
* DSA_DeleteAllItems [COMCTL32.32
7
]
*
* Removes all items and reinitializes the array.
*
...
...
dlls/comctl32/commctrl.c
View file @
60767296
...
...
@@ -375,7 +375,8 @@ GetEffectiveClientRect (HWND hwnd, LPRECT lpRect, LPINT lpInfo)
/***********************************************************************
* DrawStatusTextA [COMCTL32.5][COMCTL32.27]
* DrawStatusText [COMCTL32.27]
* DrawStatusTextA [COMCTL32.5]
*
* Draws text with borders, like in a status bar.
*
...
...
@@ -443,7 +444,8 @@ DrawStatusTextW (HDC hdc, LPRECT lprc, LPCWSTR text, UINT style)
/***********************************************************************
* CreateStatusWindowA [COMCTL32.6][COMCTL32.21]
* CreateStatusWindow [COMCTL32.21]
* CreateStatusWindowA [COMCTL32.6]
*
* Creates a status bar
*
...
...
@@ -556,7 +558,7 @@ InitCommonControls (void)
/***********************************************************************
* InitCommonControlsEx [COMCTL32.8
1
]
* InitCommonControlsEx [COMCTL32.8
4
]
*
* Registers the common controls.
*
...
...
@@ -639,7 +641,7 @@ InitCommonControlsEx (LPINITCOMMONCONTROLSEX lpInitCtrls)
/***********************************************************************
* CreateToolbarEx [COMCTL32.
32
] Creates a tool bar window
* CreateToolbarEx [COMCTL32.
23
] Creates a tool bar window
*
* PARAMS
* hwnd
...
...
@@ -896,7 +898,7 @@ COMCTL32_DllGetVersion (DLLVERSIONINFO *pdvi)
}
/***********************************************************************
* DllInstall (COMCTL32.
@
)
* DllInstall (COMCTL32.
26
)
*/
HRESULT
WINAPI
COMCTL32_DllInstall
(
BOOL
bInstall
,
LPCWSTR
cmdline
)
{
...
...
@@ -988,7 +990,7 @@ static void CALLBACK TrackMouseEventProc(HWND hwndUnused, UINT uMsg, UINT_PTR id
}
/***********************************************************************
* _TrackMouseEvent [COMCTL32.
25
]
* _TrackMouseEvent [COMCTL32.
91
]
*
* Requests notification of mouse events
*
...
...
dlls/comctl32/draglist.c
View file @
60767296
...
...
@@ -21,7 +21,7 @@ DEFAULT_DEBUG_CHANNEL(commctrl);
static
DWORD
dwLastScrollTime
=
0
;
/***********************************************************************
* MakeDragList
* MakeDragList
(COMCTL32.13)
*/
BOOL
WINAPI
MakeDragList
(
HWND
hwndLB
)
{
...
...
@@ -32,7 +32,7 @@ BOOL WINAPI MakeDragList (HWND hwndLB)
}
/***********************************************************************
* DrawInsert
* DrawInsert
(COMCTL32.15)
*/
VOID
WINAPI
DrawInsert
(
HWND
hwndParent
,
HWND
hwndLB
,
INT
nItem
)
{
...
...
@@ -42,7 +42,7 @@ VOID WINAPI DrawInsert (HWND hwndParent, HWND hwndLB, INT nItem)
}
/***********************************************************************
* LBItemFromPt
* LBItemFromPt
(COMCTL32.14)
*/
INT
WINAPI
LBItemFromPt
(
HWND
hwndLB
,
POINT
pt
,
BOOL
bAutoScroll
)
{
...
...
dlls/comctl32/flatsb.c
View file @
60767296
...
...
@@ -32,7 +32,7 @@ typedef struct
/***********************************************************************
* InitializeFlatSB
* InitializeFlatSB
(COMCTL32.86)
*
* returns nonzero if successful, zero otherwise
*
...
...
@@ -45,7 +45,7 @@ BOOL WINAPI InitializeFlatSB(HWND hwnd)
}
/***********************************************************************
* UninitializeFlatSB
* UninitializeFlatSB
(COMCTL32.90)
*
* returns:
* E_FAIL if one of the scroll bars is currently in use
...
...
@@ -61,7 +61,7 @@ HRESULT WINAPI UninitializeFlatSB(HWND hwnd)
}
/***********************************************************************
* FlatSB_GetScrollProp
* FlatSB_GetScrollProp
(COMCTL32.32)
*
* Returns nonzero if successful, or zero otherwise. If index is WSB_PROP_HSTYLE,
* the return is nonzero if InitializeFlatSB has been called for this window, or
...
...
@@ -77,7 +77,7 @@ FlatSB_GetScrollProp(HWND hwnd, INT propIndex, LPINT prop)
}
/***********************************************************************
* FlatSB_SetScrollProp
* FlatSB_SetScrollProp
(COMCTL32.36)
*/
BOOL
WINAPI
FlatSB_SetScrollProp
(
HWND
hwnd
,
UINT
index
,
INT
newValue
,
BOOL
flag
)
...
...
@@ -104,7 +104,7 @@ FlatSB_SetScrollProp(HWND hwnd, UINT index, INT newValue, BOOL flag)
*/
/***********************************************************************
* FlatSB_EnableScrollBar
* FlatSB_EnableScrollBar
(COMCTL32.29)
*/
BOOL
WINAPI
FlatSB_EnableScrollBar
(
HWND
hwnd
,
int
nBar
,
UINT
flags
)
...
...
@@ -113,7 +113,7 @@ FlatSB_EnableScrollBar(HWND hwnd, int nBar, UINT flags)
}
/***********************************************************************
* FlatSB_ShowScrollBar
* FlatSB_ShowScrollBar
(COMCTL32.38)
*/
BOOL
WINAPI
FlatSB_ShowScrollBar
(
HWND
hwnd
,
int
nBar
,
BOOL
fShow
)
...
...
@@ -122,7 +122,7 @@ FlatSB_ShowScrollBar(HWND hwnd, int nBar, BOOL fShow)
}
/***********************************************************************
* FlatSB_GetScrollRange
* FlatSB_GetScrollRange
(COMCTL32.33)
*/
BOOL
WINAPI
FlatSB_GetScrollRange
(
HWND
hwnd
,
int
nBar
,
LPINT
min
,
LPINT
max
)
...
...
@@ -131,7 +131,7 @@ FlatSB_GetScrollRange(HWND hwnd, int nBar, LPINT min, LPINT max)
}
/***********************************************************************
* FlatSB_GetScrollInfo
* FlatSB_GetScrollInfo
(COMCTL32.30)
*/
BOOL
WINAPI
FlatSB_GetScrollInfo
(
HWND
hwnd
,
int
nBar
,
LPSCROLLINFO
info
)
...
...
@@ -140,7 +140,7 @@ FlatSB_GetScrollInfo(HWND hwnd, int nBar, LPSCROLLINFO info)
}
/***********************************************************************
* FlatSB_GetScrollPos
* FlatSB_GetScrollPos
(COMCTL32.31)
*/
INT
WINAPI
FlatSB_GetScrollPos
(
HWND
hwnd
,
int
nBar
)
...
...
@@ -149,7 +149,7 @@ FlatSB_GetScrollPos(HWND hwnd, int nBar)
}
/***********************************************************************
* FlatSB_SetScrollPos
* FlatSB_SetScrollPos
(COMCTL32.35)
*/
INT
WINAPI
FlatSB_SetScrollPos
(
HWND
hwnd
,
int
nBar
,
INT
pos
,
BOOL
bRedraw
)
...
...
@@ -158,7 +158,7 @@ FlatSB_SetScrollPos(HWND hwnd, int nBar, INT pos, BOOL bRedraw)
}
/***********************************************************************
* FlatSB_SetScrollInfo
* FlatSB_SetScrollInfo
(COMCTL32.34)
*/
INT
WINAPI
FlatSB_SetScrollInfo
(
HWND
hwnd
,
int
nBar
,
LPSCROLLINFO
info
,
BOOL
bRedraw
)
...
...
@@ -167,7 +167,7 @@ FlatSB_SetScrollInfo(HWND hwnd, int nBar, LPSCROLLINFO info, BOOL bRedraw)
}
/***********************************************************************
* FlatSB_SetScrollRange
* FlatSB_SetScrollRange
(COMCTL32.37)
*/
INT
WINAPI
FlatSB_SetScrollRange
(
HWND
hwnd
,
int
nBar
,
INT
min
,
INT
max
,
BOOL
bRedraw
)
...
...
dlls/comctl32/imagelist.c
View file @
60767296
This diff is collapsed.
Click to expand it.
dlls/comctl32/propsheet.c
View file @
60767296
...
...
@@ -1900,7 +1900,8 @@ static void PROPSHEET_CleanUp(HWND hwndDlg)
}
/******************************************************************************
* PropertySheetA (COMCTL32.84)(COMCTL32.83)
* PropertySheet (COMCTL32.87)
* PropertySheetA (COMCTL32.88)
*/
INT
WINAPI
PropertySheetA
(
LPCPROPSHEETHEADERA
lppsh
)
{
...
...
@@ -1942,7 +1943,7 @@ INT WINAPI PropertySheetA(LPCPROPSHEETHEADERA lppsh)
}
/******************************************************************************
* PropertySheetW (COMCTL32.8
5
)
* PropertySheetW (COMCTL32.8
9
)
*/
INT
WINAPI
PropertySheetW
(
LPCPROPSHEETHEADERW
propertySheetHeader
)
{
...
...
@@ -1952,7 +1953,8 @@ INT WINAPI PropertySheetW(LPCPROPSHEETHEADERW propertySheetHeader)
}
/******************************************************************************
* CreatePropertySheetPageA (COMCTL32.19)(COMCTL32.18)
* CreatePropertySheetPage (COMCTL32.18)
* CreatePropertySheetPageA (COMCTL32.19)
*/
HPROPSHEETPAGE
WINAPI
CreatePropertySheetPageA
(
LPCPROPSHEETPAGEA
lpPropSheetPage
)
...
...
dlls/commdlg/cdlg32.c
View file @
60767296
...
...
@@ -37,7 +37,7 @@ DWORD WINAPI (*COMDLG32_SHFree)(LPVOID);
BOOL
WINAPI
(
*
COMDLG32_SHGetFolderPathA
)(
HWND
,
int
,
HANDLE
,
DWORD
,
LPSTR
);
/***********************************************************************
* COMDLG32_DllEntryPoint (COMDLG32.
entry
)
* COMDLG32_DllEntryPoint (COMDLG32.
init
)
*
* Initialization code for the COMDLG32 DLL
*
...
...
@@ -153,7 +153,8 @@ void COMDLG32_SetCommDlgExtendedError(DWORD err)
/***********************************************************************
* CommDlgExtendedError (COMDLG32.5)
* CommDlgExtendedError (COMMDLG.26)
* CommDlgExtendedError (COMDLG32.@)
*
* Get the thread's local error value if a comdlg32 function fails.
* RETURNS
...
...
dlls/commdlg/colordlg.c
View file @
60767296
...
...
@@ -1432,7 +1432,7 @@ BOOL16 WINAPI ChooseColor16( LPCHOOSECOLOR16 lpChCol )
}
/***********************************************************************
* ChooseColorW (COMDLG32.
2
)
* ChooseColorW (COMDLG32.
@
)
*/
BOOL
WINAPI
ChooseColorW
(
LPCHOOSECOLORW
lpChCol
)
...
...
@@ -1492,7 +1492,7 @@ BOOL WINAPI ChooseColorW( LPCHOOSECOLORW lpChCol )
}
/***********************************************************************
* ChooseColorA (COMDLG32.
1
)
* ChooseColorA (COMDLG32.
@
)
*/
BOOL
WINAPI
ChooseColorA
(
LPCHOOSECOLORA
lpChCol
)
...
...
dlls/commdlg/filedlg.c
View file @
60767296
...
...
@@ -1550,7 +1550,7 @@ BOOL16 WINAPI GetSaveFileName16(
}
/***********************************************************************
* GetOpenFileNameA (COMDLG32.
10
)
* GetOpenFileNameA (COMDLG32.
@
)
*
* Creates a dialog box for the user to select a file to open.
*
...
...
@@ -1581,7 +1581,7 @@ BOOL WINAPI GetOpenFileNameA(
}
/***********************************************************************
* GetOpenFileNameW (COMDLG32.
11
)
* GetOpenFileNameW (COMDLG32.
@
)
*
* Creates a dialog box for the user to select a file to open.
*
...
...
@@ -1612,7 +1612,7 @@ BOOL WINAPI GetOpenFileNameW(
}
/***********************************************************************
* GetSaveFileNameA (COMDLG32.
12
)
* GetSaveFileNameA (COMDLG32.
@
)
*
* Creates a dialog box for the user to select a file to save.
*
...
...
@@ -1643,7 +1643,7 @@ BOOL WINAPI GetSaveFileNameA(
}
/***********************************************************************
* GetSaveFileNameW (COMDLG32.
13
)
* GetSaveFileNameW (COMDLG32.
@
)
*
* Creates a dialog box for the user to select a file to save.
*
...
...
dlls/commdlg/filetitle.c
View file @
60767296
...
...
@@ -19,7 +19,7 @@ DEFAULT_DEBUG_CHANNEL(commdlg);
#include "cdlg.h"
/***********************************************************************
* GetFileTitleA (COMDLG32.
8
)
* GetFileTitleA (COMDLG32.
@
)
*
*/
short
WINAPI
GetFileTitleA
(
LPCSTR
lpFile
,
LPSTR
lpTitle
,
UINT
cbBuf
)
...
...
@@ -68,7 +68,7 @@ short WINAPI GetFileTitleA(LPCSTR lpFile, LPSTR lpTitle, UINT cbBuf)
/***********************************************************************
* GetFileTitleW (COMDLG32.
9
)
* GetFileTitleW (COMDLG32.
@
)
*
*/
short
WINAPI
GetFileTitleW
(
LPCWSTR
lpFile
,
LPWSTR
lpTitle
,
UINT
cbBuf
)
...
...
dlls/commdlg/finddlg32.c
View file @
60767296
...
...
@@ -424,7 +424,7 @@ cleanup:
}
/***********************************************************************
* FindTextA [COMDLG32.
6
]
* FindTextA [COMDLG32.
@
]
* RETURNS
* Window handle to created dialog: Success
* NULL: Failure
...
...
@@ -448,7 +448,7 @@ HWND WINAPI FindTextA(
}
/***********************************************************************
* ReplaceTextA [COMDLG32.
19
]
* ReplaceTextA [COMDLG32.
@
]
* RETURNS
* Window handle to created dialog: Success
* NULL: Failure
...
...
@@ -473,7 +473,7 @@ HWND WINAPI ReplaceTextA(
}
/***********************************************************************
* FindTextW [COMDLG32.
7
]
* FindTextW [COMDLG32.
@
]
* RETURNS
* Window handle to created dialog: Success
* NULL: Failure
...
...
@@ -504,7 +504,7 @@ HWND WINAPI FindTextW(
}
/***********************************************************************
* ReplaceTextW [COMDLG32.
20
]
* ReplaceTextW [COMDLG32.
@
]
* RETURNS
* Window handle to created dialog: Success
* NULL: Failure
...
...
dlls/commdlg/fontdlg.c
View file @
60767296
...
...
@@ -241,7 +241,7 @@ BOOL16 WINAPI ChooseFont16(LPCHOOSEFONT16 lpChFont)
/***********************************************************************
* ChooseFontA (COMDLG32.
3
)
* ChooseFontA (COMDLG32.
@
)
*/
BOOL
WINAPI
ChooseFontA
(
LPCHOOSEFONTA
lpChFont
)
{
...
...
@@ -269,7 +269,7 @@ BOOL WINAPI ChooseFontA(LPCHOOSEFONTA lpChFont)
}
/***********************************************************************
* ChooseFontW (COMDLG32.
4
)
* ChooseFontW (COMDLG32.
@
)
*
* NOTES:
*
...
...
@@ -380,7 +380,7 @@ BOOL WINAPI ChooseFontW(LPCHOOSEFONTW lpChFont)
#if 0
/***********************************************************************
* ChooseFontW (COMDLG32.
4
)
* ChooseFontW (COMDLG32.
@
)
*/
BOOL WINAPI ChooseFontW(LPCHOOSEFONTW lpChFont)
{
...
...
dlls/commdlg/generic.c
View file @
60767296
...
...
@@ -20,7 +20,7 @@ HINSTANCE COMMDLG_hInstance32 = 0;
static
int
COMMDLG_Attach
=
0
;
/***********************************************************************
* COMMDLG_DllEntryPoint [COMMDLG.
entry
]
* COMMDLG_DllEntryPoint [COMMDLG.
32
]
*
* Initialization code for the COMMDLG DLL
*
...
...
dlls/commdlg/printdlg.c
View file @
60767296
...
...
@@ -1311,7 +1311,7 @@ static BOOL PRINTDLG_CreateDC16(LPPRINTDLG16 lppd)
}
/***********************************************************************
* PrintDlgA (COMDLG32.
17
)
* PrintDlgA (COMDLG32.
@
)
*
* Displays the the PRINT dialog box, which enables the user to specify
* specific properties of the print job.
...
...
@@ -1663,7 +1663,7 @@ BOOL16 WINAPI PrintDlg16(
/***********************************************************************
* PrintDlgW (COMDLG32.
18
)
* PrintDlgW (COMDLG32.
@
)
*/
BOOL
WINAPI
PrintDlgW
(
LPPRINTDLGW
printdlg
)
{
...
...
@@ -1967,7 +1967,7 @@ PageDlgProcA(HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam)
}
/***********************************************************************
* PageSetupDlgA (COMDLG32.
15
)
* PageSetupDlgA (COMDLG32.
@
)
*/
BOOL
WINAPI
PageSetupDlgA
(
LPPAGESETUPDLGA
setupdlg
)
{
HGLOBAL
hDlgTmpl
;
...
...
@@ -2033,7 +2033,7 @@ BOOL WINAPI PageSetupDlgA(LPPAGESETUPDLGA setupdlg) {
return
bRet
;
}
/***********************************************************************
* PageSetupDlgW (COMDLG32.
16
)
* PageSetupDlgW (COMDLG32.
@
)
*/
BOOL
WINAPI
PageSetupDlgW
(
LPPAGESETUPDLGW
setupdlg
)
{
FIXME
(
"(%p), stub!
\n
"
,
setupdlg
);
...
...
@@ -2131,7 +2131,7 @@ LRESULT WINAPI PrintSetupDlgProc16(HWND16 hWnd, UINT16 wMsg, WPARAM16 wParam,
/***********************************************************************
* PrintDlgExA
* PrintDlgExA
(COMDLG32.@)
*/
HRESULT
WINAPI
PrintDlgExA
(
LPVOID
lpPrintDlgExA
)
/* [???] FIXME: LPPRINTDLGEXA */
{
...
...
@@ -2139,7 +2139,7 @@ HRESULT WINAPI PrintDlgExA(LPVOID lpPrintDlgExA) /* [???] FIXME: LPPRINTDLGEXA *
return
E_NOTIMPL
;
}
/***********************************************************************
* PrintDlgExW
* PrintDlgExW
(COMDLG32.@)
*/
HRESULT
WINAPI
PrintDlgExW
(
LPVOID
lpPrintDlgExW
)
/* [???] FIXME: LPPRINTDLGEXW */
{
...
...
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