Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Yoann Laissus
wine
Commits
124657f5
Commit
124657f5
authored
24 years ago
by
Jeremy White
Committed by
Alexandre Julliard
24 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Created zmouse.h, moved wheel code from mouse.h into it.
parent
aad78b91
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
include/Makefile.in
+2
-1
2 additions, 1 deletion
include/Makefile.in
include/mouse.h
+0
-31
0 additions, 31 deletions
include/mouse.h
include/zmouse.h
+32
-0
32 additions, 0 deletions
include/zmouse.h
with
34 additions
and
32 deletions
include/Makefile.in
+
2
−
1
View file @
124657f5
...
...
@@ -134,7 +134,8 @@ INSTALLED_INCLUDES = \
winver.h
\
wnaspi32.h
\
wownt32.h
\
wtypes.h
wtypes.h
\
zmouse.h
EXTRASUBDIRS
=
bitmaps wine
...
...
This diff is collapsed.
Click to expand it.
include/mouse.h
+
0
−
31
View file @
124657f5
...
...
@@ -19,38 +19,7 @@ typedef struct _WINE_MOUSEEVENT
DWORD
keyState
;
DWORD
time
;
HWND
hWnd
;
}
WINE_MOUSEEVENT
;
/***********************************
* MouseWheel support (defines)
*/
#define MSH_MOUSEWHEEL "MSWHEEL_ROLLMSG"
#define WHEEL_DELTA 120
#define MOUSEZ_CLASSNAME "MouseZ"
#define MOUSEZ_TITLE "Magellan MSWHEEL"
#define MSH_WHEELMODULE_CLASS (MOUSEZ_CLASSNAME)
#define MSH_WHEELMODULE_TITLE (MOUSEZ_TITLE)
#define MSH_WHEELSUPPORT "MSH_WHEELSUPPORT_MSG"
#define MSH_SCROLL_LINES "MSH_SCROLL_LINES_MSG"
#ifndef WHEEL_PAGESCROLL
#define WHEEL_PAGESCROLL (UINT_MAX)
#endif
#ifndef SPI_SETWHEELSCROLLLINES
#define SPI_SETWHEELSCROLLLINES 105
#endif
/* MouseWheel support
***********************************/
#endif
/* __WINE_MOUSE_H */
This diff is collapsed.
Click to expand it.
include/zmouse.h
0 → 100644
+
32
−
0
View file @
124657f5
/*
* Scroll wheel mouse definitions
*
* Copyright (C) 2000 CodeWeavers
*/
#ifndef __WINE_ZMOUSE_H
#define __WINE_ZMOUSE_H
#define MSH_MOUSEWHEEL "MSWHEEL_ROLLMSG"
#define MOUSEZ_CLASSNAME "MouseZ"
#define MOUSEZ_TITLE "Magellan MSWHEEL"
#define MSH_WHEELMODULE_CLASS (MOUSEZ_CLASSNAME)
#define MSH_WHEELMODULE_TITLE (MOUSEZ_TITLE)
#define MSH_WHEELSUPPORT "MSH_WHEELSUPPORT_MSG"
#define MSH_SCROLL_LINES "MSH_SCROLL_LINES_MSG"
#define WHEEL_DELTA 120
#ifndef WHEEL_PAGESCROLL
#define WHEEL_PAGESCROLL (UINT_MAX)
#endif
#ifndef SPI_SETWHEELSCROLLLINES
#define SPI_SETWHEELSCROLLLINES 105
#endif
#endif
/* __WINE_ZMOUSE_H */
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment