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
172e731c
Commit
172e731c
authored
Apr 25, 2005
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Moved most files from the windows directory to dlls/user.
parent
3abb5bd6
Show whitespace changes
Inline
Side-by-side
Showing
16 changed files
with
19 additions
and
17 deletions
+19
-17
Makefile.in
dlls/user/Makefile.in
+15
-15
class.c
dlls/user/class.c
+0
-0
clipboard.c
dlls/user/clipboard.c
+0
-0
cursoricon.c
dlls/user/cursoricon.c
+0
-0
defdlg.c
dlls/user/defdlg.c
+0
-0
defwnd.c
dlls/user/defwnd.c
+0
-0
dialog.c
dlls/user/dialog.c
+0
-0
input.c
dlls/user/input.c
+4
-2
mdi.c
dlls/user/mdi.c
+0
-0
msgbox.c
dlls/user/msgbox.c
+0
-0
nonclient.c
dlls/user/nonclient.c
+0
-0
spy.c
dlls/user/spy.c
+0
-0
win.c
dlls/user/win.c
+0
-0
winhelp.c
dlls/user/winhelp.c
+0
-0
winpos.c
dlls/user/winpos.c
+0
-0
winproc.c
dlls/user/winproc.c
+0
-0
No files found.
dlls/user/Makefile.in
View file @
172e731c
...
...
@@ -15,56 +15,56 @@ SPEC_SRCS16 = \
user.exe.spec
C_SRCS
=
\
$(TOPOBJDIR)
/windows/class.c
\
$(TOPOBJDIR)
/windows/clipboard.c
\
$(TOPOBJDIR)
/windows/cursoricon.c
\
$(TOPOBJDIR)
/windows/defdlg.c
\
$(TOPOBJDIR)
/windows/defwnd.c
\
$(TOPOBJDIR)
/windows/dialog.c
\
$(TOPOBJDIR)
/windows/driver.c
\
$(TOPOBJDIR)
/windows/input.c
\
$(TOPOBJDIR)
/windows/mdi.c
\
$(TOPOBJDIR)
/windows/msgbox.c
\
$(TOPOBJDIR)
/windows/multimon.c
\
$(TOPOBJDIR)
/windows/nonclient.c
\
$(TOPOBJDIR)
/windows/queue.c
\
$(TOPOBJDIR)
/windows/scroll.c
\
$(TOPOBJDIR)
/windows/spy.c
\
$(TOPOBJDIR)
/windows/syscolor.c
\
$(TOPOBJDIR)
/windows/user.c
\
$(TOPOBJDIR)
/windows/win.c
\
$(TOPOBJDIR)
/windows/winhelp.c
\
$(TOPOBJDIR)
/windows/winpos.c
\
$(TOPOBJDIR)
/windows/winproc.c
\
button.c
\
caret.c
\
class.c
\
clipboard.c
\
combo.c
\
cursoricon.c
\
dde/client.c
\
dde/ddeml16.c
\
dde/misc.c
\
dde/server.c
\
defdlg.c
\
defwnd.c
\
desktop.c
\
dialog.c
\
dialog16.c
\
edit.c
\
exticon.c
\
focus.c
\
hook.c
\
icontitle.c
\
input.c
\
listbox.c
\
lstr.c
\
mdi.c
\
menu.c
\
message.c
\
misc.c
\
msg16.c
\
msgbox.c
\
nonclient.c
\
painting.c
\
property.c
\
resource.c
\
scroll.c
\
spy.c
\
static.c
\
sysparams.c
\
text.c
\
uitools.c
\
user_main.c
\
win.c
\
winhelp.c
\
winpos.c
\
winproc.c
\
wsprintf.c
C_SRCS16
=
\
...
...
windows
/class.c
→
dlls/user
/class.c
View file @
172e731c
File moved
windows
/clipboard.c
→
dlls/user
/clipboard.c
View file @
172e731c
windows
/cursoricon.c
→
dlls/user
/cursoricon.c
View file @
172e731c
windows
/defdlg.c
→
dlls/user
/defdlg.c
View file @
172e731c
windows
/defwnd.c
→
dlls/user
/defwnd.c
View file @
172e731c
windows
/dialog.c
→
dlls/user
/dialog.c
View file @
172e731c
windows
/input.c
→
dlls/user
/input.c
View file @
172e731c
...
...
@@ -496,7 +496,8 @@ UINT WINAPI GetKeyboardLayoutList(INT nBuff, HKL *layouts)
/***********************************************************************
* RegisterHotKey (USER32.@)
*/
BOOL
WINAPI
RegisterHotKey
(
HWND
hwnd
,
INT
id
,
UINT
modifiers
,
UINT
vk
)
{
BOOL
WINAPI
RegisterHotKey
(
HWND
hwnd
,
INT
id
,
UINT
modifiers
,
UINT
vk
)
{
FIXME_
(
keyboard
)(
"(%p,%d,0x%08x,%d): stub
\n
"
,
hwnd
,
id
,
modifiers
,
vk
);
return
TRUE
;
}
...
...
@@ -504,7 +505,8 @@ BOOL WINAPI RegisterHotKey(HWND hwnd,INT id,UINT modifiers,UINT vk) {
/***********************************************************************
* UnregisterHotKey (USER32.@)
*/
BOOL
WINAPI
UnregisterHotKey
(
HWND
hwnd
,
INT
id
)
{
BOOL
WINAPI
UnregisterHotKey
(
HWND
hwnd
,
INT
id
)
{
FIXME_
(
keyboard
)(
"(%p,%d): stub
\n
"
,
hwnd
,
id
);
return
TRUE
;
}
...
...
windows
/mdi.c
→
dlls/user
/mdi.c
View file @
172e731c
File moved
windows
/msgbox.c
→
dlls/user
/msgbox.c
View file @
172e731c
File moved
windows
/nonclient.c
→
dlls/user
/nonclient.c
View file @
172e731c
windows
/spy.c
→
dlls/user
/spy.c
View file @
172e731c
windows
/win.c
→
dlls/user
/win.c
View file @
172e731c
windows
/winhelp.c
→
dlls/user
/winhelp.c
View file @
172e731c
File moved
windows
/winpos.c
→
dlls/user
/winpos.c
View file @
172e731c
File moved
windows
/winproc.c
→
dlls/user
/winproc.c
View file @
172e731c
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