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
Releases
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
Felix Münchhalfen
wine
Commits
83804d28
Commit
83804d28
authored
24 years ago
by
Francois Gouget
Committed by
Alexandre Julliard
24 years ago
Browse files
Options
Downloads
Patches
Plain Diff
The MODEM stuff has been spun off to its rightful place: mcx.h.
parent
5e4b7de1
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
include/Makefile.in
+1
-0
1 addition, 0 deletions
include/Makefile.in
include/mcx.h
+42
-0
42 additions, 0 deletions
include/mcx.h
include/winbase.h
+1
-38
1 addition, 38 deletions
include/winbase.h
with
44 additions
and
38 deletions
include/Makefile.in
+
1
−
0
View file @
83804d28
...
...
@@ -34,6 +34,7 @@ INSTALLED_INCLUDES = \
lmcons.h
\
lzexpand.h
\
mapidefs.h
\
mcx.h
\
mmreg.h
\
mmsystem.h
\
msacm.h
\
...
...
This diff is collapsed.
Click to expand it.
include/mcx.h
0 → 100644
+
42
−
0
View file @
83804d28
#ifndef __WINE_MCX_H
#define __WINE_MCX_H
typedef
struct
tagMODEMDEVCAPS
{
DWORD
dwActualSize
;
DWORD
dwRequiredSize
;
DWORD
dwDevSpecificOffset
;
DWORD
dwDevSpecificSize
;
DWORD
dwModemProviderVersion
;
DWORD
dwModemManufacturerOffset
;
DWORD
dwModemManufacturerSize
;
DWORD
dwModemModelOffset
;
DWORD
dwModemModelSize
;
DWORD
dwModemVersionOffset
;
DWORD
dwModemVersionSize
;
DWORD
dwDialOptions
;
DWORD
dwCallSetupFailTimer
;
DWORD
dwInactivityTimeout
;
DWORD
dwSpeakerVolume
;
DWORD
dwSpeakerMode
;
DWORD
dwModemoptions
;
DWORD
dwMaxDTERate
;
DWORD
dwMaxDCERate
;
BYTE
abVariablePortion
[
1
];
}
MODEMDEVCAPS
,
*
LPMODEMDEVCAPS
;
typedef
struct
tagMODEMSETTINGS
{
DWORD
dwActualSize
;
DWORD
dwRequiredSize
;
DWORD
dwDevSpecificOffset
;
DWORD
dwDevSpecificSize
;
DWORD
dwCallSetupFailTimer
;
DWORD
dwInactivityTimeout
;
DWORD
dwSpeakerVolume
;
DWORD
dwSpeakerMode
;
DWORD
dwPreferedModemOptions
;
DWORD
dwNegotiatedModemOptions
;
DWORD
dwNegotiatedDCERate
;
BYTE
abVariablePortion
[
1
];
}
MODEMSETTINGS
,
*
LPMODEMSETTINGS
;
#endif
/* __WINE_MCX_H */
This diff is collapsed.
Click to expand it.
include/winbase.h
+
1
−
38
View file @
83804d28
...
...
@@ -1148,43 +1148,6 @@ typedef struct tagCOMMTIMEOUTS {
DWORD
WriteTotalTimeoutConstant
;
}
COMMTIMEOUTS
,
*
LPCOMMTIMEOUTS
;
typedef
struct
tagMODEMSETTINGS
{
DWORD
dwActualSize
;
DWORD
dwRequiredSize
;
DWORD
dwDevSpecificOffset
;
DWORD
dwDevSpecificSize
;
DWORD
dwCallSetupFailTimer
;
DWORD
dwInactivityTimeout
;
DWORD
dwSpeakerVolume
;
DWORD
dwSpeakerMode
;
DWORD
dwPreferedModemOptions
;
DWORD
dwNegotiatedModemOptions
;
DWORD
dwNegotiatedDCERate
;
BYTE
abVariablePortion
[
1
];
}
MODEMSETTINGS
,
*
LPMODEMSETTINGS
;
typedef
struct
tagMODEMDEVCAPS
{
DWORD
dwActualSize
;
DWORD
dwRequiredSize
;
DWORD
dwDevSpecificOffset
;
DWORD
dwDevSpecificSize
;
DWORD
dwModemProviderVersion
;
DWORD
dwModemManufacturerOffset
;
DWORD
dwModemManufacturerSize
;
DWORD
dwModemModelOffset
;
DWORD
dwModemModelSize
;
DWORD
dwModemVersionOffset
;
DWORD
dwModemVersionSize
;
DWORD
dwDialOptions
;
DWORD
dwCallSetupFailTimer
;
DWORD
dwInactivityTimeout
;
DWORD
dwSpeakerVolume
;
DWORD
dwSpeakerMode
;
DWORD
dwModemoptions
;
DWORD
dwMaxDTERate
;
DWORD
dwMaxDCERate
;
BYTE
abVariablePortion
[
1
];
}
MODEMDEVCAPS
,
*
LPMODEMDEVCAPS
;
#include
"poppack.h"
...
...
@@ -1451,7 +1414,7 @@ PUCHAR WINAPI GetSidSubAuthorityCount(PSID);
DWORD
WINAPI
GetShortPathNameA
(
LPCSTR
,
LPSTR
,
DWORD
);
DWORD
WINAPI
GetShortPathNameW
(
LPCWSTR
,
LPWSTR
,
DWORD
);
#define GetShortPathName WINELIB_NAME_AW(GetShortPathName)
H
FI
LE
WINAPI
GetStdHandle
(
DWORD
);
H
AND
LE
WINAPI
GetStdHandle
(
DWORD
);
BOOL
WINAPI
GetStringTypeExA
(
LCID
,
DWORD
,
LPCSTR
,
INT
,
LPWORD
);
BOOL
WINAPI
GetStringTypeExW
(
LCID
,
DWORD
,
LPCWSTR
,
INT
,
LPWORD
);
#define GetStringTypeEx WINELIB_NAME_AW(GetStringTypeEx)
...
...
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