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
b406c7d4
Commit
b406c7d4
authored
Jan 24, 1999
by
Eric Kohl
Committed by
Alexandre Julliard
Jan 24, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
New drag list control.
parent
65016636
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
55 additions
and
8 deletions
+55
-8
Makefile.in
dlls/comctl32/Makefile.in
+1
-0
draglist.c
dlls/comctl32/draglist.c
+46
-0
commctrl.h
include/commctrl.h
+0
-0
comctl32.spec
relay32/comctl32.spec
+8
-8
No files found.
dlls/comctl32/Makefile.in
View file @
b406c7d4
...
...
@@ -11,6 +11,7 @@ C_SRCS = \
comctl32undoc.c
\
commctrl.c
\
datetime.c
\
draglist.c
\
flatsb.c
\
header.c
\
hotkey.c
\
...
...
dlls/comctl32/draglist.c
0 → 100644
View file @
b406c7d4
/*
* Drag List control
*
* Copyright 1999 Eric Kohl
*
* NOTES
* This is just a dummy control. An author is needed! Any volunteers?
* I will only improve this control once in a while.
* Eric <ekohl@abo.rhein-zeitung.de>
*
* TODO:
* - Everything.
*/
#include "windows.h"
#include "commctrl.h"
#include "debug.h"
BOOL32
MakeDragList
(
HWND32
hwndLB
)
{
FIXME
(
commctrl
,
"(0x%x)
\n
"
,
hwndLB
);
return
FALSE
;
}
VOID
DrawInsert
(
HWND32
hwndParent
,
HWND32
hwndLB
,
INT32
nItem
)
{
FIXME
(
commctrl
,
"(0x%x 0x%x %d)
\n
"
,
hwndParent
,
hwndLB
,
nItem
);
}
INT32
LBItemFromPt
(
HWND32
hwndLB
,
POINT32
pt
,
BOOL32
bAutoScroll
)
{
FIXME
(
commctrl
,
"(0x%x %dx %d %s)
\n
"
,
hwndLB
,
pt
.
x
,
pt
.
y
,
bAutoScroll
?
"TRUE"
:
"FALSE"
);
return
-
1
;
}
include/commctrl.h
View file @
b406c7d4
This diff is collapsed.
Click to expand it.
relay32/comctl32.spec
View file @
b406c7d4
...
...
@@ -18,21 +18,21 @@ init COMCTL32_LibMain
10 stub COMCTL32_10
11 stdcall DPA_Merge(ptr ptr long ptr ptr long) DPA_Merge
#12 stub Cctl1632_ThunkData32
13 st
ub
MakeDragList
14 st
ub
LBItemFromPt
15 st
ub
DrawInsert
13 st
dcall MakeDragList(long)
MakeDragList
14 st
dcall LBItemFromPt(long long long)
LBItemFromPt
15 st
dcall DrawInsert(long long long)
DrawInsert
16 stdcall CreateUpDownControl(long long long long long long long long long long long long) CreateUpDownControl
17 stdcall InitCommonControls() InitCommonControls
18 stdcall CreatePropertySheetPage(ptr) CreatePropertySheetPage32A
W
18 stdcall CreatePropertySheetPage(ptr) CreatePropertySheetPage32A
19 stdcall CreatePropertySheetPageA(ptr) CreatePropertySheetPage32A
20 stdcall CreatePropertySheetPageW(ptr) CreatePropertySheetPage32W
21 stdcall CreateStatusWindow(long str long long) CreateStatusWindow32A
W
21 stdcall CreateStatusWindow(long str long long) CreateStatusWindow32A
22 stdcall CreateStatusWindowW(long wstr long long) CreateStatusWindow32W
23 stdcall CreateToolbarEx(long long long long long long ptr long long long long long long) CreateToolbarEx
24 stdcall DestroyPropertySheetPage(long) DestroyPropertySheetPage32
25 stdcall DllGetVersion(ptr) COMCTL32_DllGetVersion
26 stub DllInstall
27 stdcall DrawStatusText(long ptr ptr long) DrawStatusText32A
W
27 stdcall DrawStatusText(long ptr ptr long) DrawStatusText32A
28 stdcall DrawStatusTextW(long ptr wstr long) DrawStatusText32W
29 stdcall FlatSB_EnableScrollBar (long long long) FlatSB_EnableScrollBar
30 stdcall FlatSB_GetScrollInfo (long long ptr) FlatSB_GetScrollInfo
...
...
@@ -67,7 +67,7 @@ init COMCTL32_LibMain
59 stdcall ImageList_GetImageCount(ptr) ImageList_GetImageCount
60 stdcall ImageList_GetImageInfo(ptr long ptr) ImageList_GetImageInfo
61 stdcall ImageList_GetImageRect(ptr long ptr) ImageList_GetImageRect
62 stdcall ImageList_LoadImage(long str long long long long long) ImageList_LoadImage32A
W
62 stdcall ImageList_LoadImage(long str long long long long long) ImageList_LoadImage32A
63 stdcall ImageList_LoadImageA(long str long long long long long) ImageList_LoadImage32A
64 stdcall ImageList_LoadImageW(long wstr long long long long long) ImageList_LoadImage32W
65 stdcall ImageList_Merge(ptr long ptr long long long) ImageList_Merge
...
...
@@ -88,7 +88,7 @@ init COMCTL32_LibMain
80 stdcall ImageList_Write(ptr ptr) ImageList_Write
81 stdcall InitCommonControlsEx(ptr) InitCommonControlsEx
82 stdcall InitializeFlatSB(long) InitializeFlatSB
83 stdcall PropertySheet(ptr) PropertySheet32A
W
83 stdcall PropertySheet(ptr) PropertySheet32A
84 stdcall PropertySheetA(ptr) PropertySheet32A
85 stdcall PropertySheetW(ptr) PropertySheet32W
86 stdcall UninitializeFlatSB(long) UninitializeFlatSB
...
...
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