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
7017c4a0
Commit
7017c4a0
authored
Sep 27, 2017
by
Huw Davies
Committed by
Alexandre Julliard
Sep 27, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Add sapi.idl.
Signed-off-by:
Huw Davies
<
huw@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
7ea82a02
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
214 additions
and
0 deletions
+214
-0
Makefile.in
include/Makefile.in
+1
-0
sapi.idl
include/sapi.idl
+213
-0
No files found.
include/Makefile.in
View file @
7017c4a0
...
@@ -154,6 +154,7 @@ IDL_SRCS = \
...
@@ -154,6 +154,7 @@ IDL_SRCS = \
rstinf.idl
\
rstinf.idl
\
rstloc.idl
\
rstloc.idl
\
rstnot.idl
\
rstnot.idl
\
sapi.idl
\
sensevts.idl
\
sensevts.idl
\
servprov.idl
\
servprov.idl
\
sesprp.idl
\
sesprp.idl
\
...
...
include/sapi.idl
0 → 100644
View file @
7017c4a0
/*
*
Speech
API
(
SAPI
)
IDL
file
.
*
*
Copyright
(
C
)
2017
Huw
Davies
*
*
This
library
is
free
software
; you can redistribute it and/or
*
modify
it
under
the
terms
of
the
GNU
Lesser
General
Public
*
License
as
published
by
the
Free
Software
Foundation
; either
*
version
2.1
of
the
License
,
or
(
at
your
option
)
any
later
version
.
*
*
This
library
is
distributed
in
the
hope
that
it
will
be
useful
,
*
but
WITHOUT
ANY
WARRANTY
; without even the implied warranty of
*
MERCHANTABILITY
or
FITNESS
FOR
A
PARTICULAR
PURPOSE
.
See
the
GNU
*
Lesser
General
Public
License
for
more
details
.
*
*
You
should
have
received
a
copy
of
the
GNU
Lesser
General
Public
*
License
along
with
this
library
; if not, write to the Free Software
*
Foundation
,
Inc
.
,
51
Franklin
St
,
Fifth
Floor
,
Boston
,
MA
02110
-
1301
,
USA
*/
import
"oaidl.idl"
;
import
"ocidl.idl"
;
#
ifndef
__WIDL__
#
define
threading
(
model
)
#
define
progid
(
str
)
#
define
vi_progid
(
str
)
#
endif
typedef
[
hidden
]
enum
SPDATAKEYLOCATION
{
SPDKL_DefaultLocation
=
0
,
SPDKL_CurrentUser
=
1
,
SPDKL_LocalMachine
=
2
,
SPDKL_CurrentConfig
=
5
}
SPDATAKEYLOCATION
;
cpp_quote
(
"#if defined(__GNUC__)"
)
cpp_quote
(
"#define SPCAT_AUDIOOUT (const WCHAR []){ 'H','K','E','Y','_','L','O','C','A','L','_','M','A','C','H','I','N','E','\\\\','S','O','F','T','W','A','R','E','\\\\','M','i','c','r','o','s','o','f','t','\\\\','S','p','e','e','c','h','\\\\','A','u','d','i','o','O','u','t','p','u','t',0 }"
)
cpp_quote
(
"#define SPCAT_AUDIOIN (const WCHAR []){ 'H','K','E','Y','_','L','O','C','A','L','_','M','A','C','H','I','N','E','\\\\','S','O','F','T','W','A','R','E','\\\\','M','i','c','r','o','s','o','f','t','\\\\','S','p','e','e','c','h','\\\\','A','u','d','i','o','I','n','p','u','t',0 }"
)
cpp_quote
(
"#define SPCAT_VOICES (const WCHAR []){ 'H','K','E','Y','_','L','O','C','A','L','_','M','A','C','H','I','N','E','\\\\','S','O','F','T','W','A','R','E','\\\\','M','i','c','r','o','s','o','f','t','\\\\','S','p','e','e','c','h','\\\\','V','o','i','c','e','s',0 }"
)
cpp_quote
(
"#elif defined(_MSC_VER)"
)
cpp_quote
(
"#define SPCAT_AUDIOOUT L\"
HKEY_LOCAL_MACHINE
\\\\
SOFTWARE
\\\\
Microsoft
\\\\
Speech
\\\\
AudioOutput
\
""
)
cpp_quote
(
"#define SPCAT_AUDIOIN L\"
HKEY_LOCAL_MACHINE
\\\\
SOFTWARE
\\\\
Microsoft
\\\\
Speech
\\\\
AudioInput
\
""
)
cpp_quote
(
"#define SPCAT_VOICES L\"
HKEY_LOCAL_MACHINE
\\\\
SOFTWARE
\\\\
Microsoft
\\\\
Speech
\\\\
Voices
\
""
)
cpp_quote
(
"#else"
)
cpp_quote
(
"static const WCHAR SPCAT_AUDIOOUT[] = {'H','K','E','Y','_','L','O','C','A','L','_','M','A','C','H','I','N','E','\\\\','S','O','F','T','W','A','R','E','\\\\','M','i','c','r','o','s','o','f','t','\\\\','S','p','e','e','c','h','\\\\','A','u','d','i','o','O','u','t','p','u','t',0};"
)
cpp_quote
(
"static const WCHAR SPCAT_AUDIOIN[] = {'H','K','E','Y','_','L','O','C','A','L','_','M','A','C','H','I','N','E','\\\\','S','O','F','T','W','A','R','E','\\\\','M','i','c','r','o','s','o','f','t','\\\\','S','p','e','e','c','h','\\\\','A','u','d','i','o','I','n','p','u','t',0};"
)
cpp_quote
(
"static const WCHAR SPCAT_VOICES[] = {'H','K','E','Y','_','L','O','C','A','L','_','M','A','C','H','I','N','E','\\\\','S','O','F','T','W','A','R','E','\\\\','M','i','c','r','o','s','o','f','t','\\\\','S','p','e','e','c','h','\\\\','V','o','i','c','e','s',0};"
)
cpp_quote
(
"#endif"
)
interface
IEnumSpObjectTokens
;
[
object
,
uuid
(
14056581
-
e16c
-
11
d2
-
bb90
-
00
c04f8ee6c0
),
helpstring
(
"ISpDataKey"
),
pointer_default
(
unique
),
local
,
restricted
]
interface
ISpDataKey
:
IUnknown
{
HRESULT
SetData
(
[
in
]
LPCWSTR
pszValueName
,
[
in
]
ULONG
cbData
,
[
in
]
const
BYTE
*
pData
)
;
HRESULT
GetData
(
[
in
]
LPCWSTR
pszValueName
,
[
in
]
ULONG
*
pcbData
,
[
out
]
BYTE
*
pData
)
;
HRESULT
SetStringValue
(
[
in
]
LPCWSTR
pszValueName
,
[
in
]
LPCWSTR
pszValue
)
;
HRESULT
GetStringValue
(
[
in
]
LPCWSTR
pszValueName
,
[
out
]
LPWSTR
*
ppszValue
)
;
HRESULT
SetDWORD
(
[
in
]
LPCWSTR
pszValueName
,
[
in
]
DWORD
dwValue
)
;
HRESULT
GetDWORD
(
[
in
]
LPCWSTR
pszValueName
,
[
out
]
DWORD
*
pdwValue
)
;
HRESULT
OpenKey
(
[
in
]
LPCWSTR
pszSubKeyName
,
[
out
]
ISpDataKey
**
ppSubKey
)
;
HRESULT
CreateKey
(
[
in
]
LPCWSTR
pszSubKey
,
[
out
]
ISpDataKey
**
ppSubKey
)
;
HRESULT
DeleteKey
(
[
in
]
LPCWSTR
pszSubKey
)
;
HRESULT
DeleteValue
(
[
in
]
LPCWSTR
pszValueName
)
;
HRESULT
EnumKeys
(
[
in
]
ULONG
Index
,
[
out
]
LPWSTR
*
ppszSubKeyName
)
;
HRESULT
EnumValues
(
[
in
]
ULONG
Index
,
[
out
]
LPWSTR
*
ppszValueName
)
;
}
[
object
,
uuid
(
92
a66e2b
-
c830
-
4149
-
83
df
-
6
fc2ba1e7a5b
),
helpstring
(
"ISpRegDataKey"
),
pointer_default
(
unique
),
restricted
]
interface
ISpRegDataKey
:
ISpDataKey
{
[
local
]
HRESULT
SetKey
(
[
in
]
HKEY
hkey
,
[
in
]
BOOL
fReadOnly
)
;
}
[
object
,
uuid
(
2
d3d3845
-
39
af
-
4850
-
bbf9
-
40b49780011
d
),
helpstring
(
"ISpObjectTokenCategory"
),
pointer_default
(
unique
),
local
,
restricted
]
interface
ISpObjectTokenCategory
:
ISpDataKey
{
HRESULT
SetId
(
[
in
]
LPCWSTR
pszCategoryId
,
[
in
]
BOOL
fCreateIfNotExist
)
;
HRESULT
GetId
(
[
out
]
LPWSTR
*
ppszCoMemCategoryId
)
;
HRESULT
GetDataKey
(
[
in
]
SPDATAKEYLOCATION
spdkl
,
[
out
]
ISpDataKey
**
ppDataKey
)
;
HRESULT
EnumTokens
(
[
in
,
string
]
LPCWSTR
pszReqAttribs
,
[
in
,
string
]
LPCWSTR
pszOptAttribs
,
[
out
]
IEnumSpObjectTokens
**
ppEnum
)
;
HRESULT
SetDefaultTokenId
(
[
in
]
LPCWSTR
pszTokenId
)
;
HRESULT
GetDefaultTokenId
(
[
out
]
LPWSTR
*
ppszCoMemTokenId
)
;
}
[
object
,
uuid
(
14056589
-
e16c
-
11
d2
-
bb90
-
00
c04f8ee6c0
),
helpstring
(
"ISpObjectToken"
),
pointer_default
(
unique
),
local
,
restricted
]
interface
ISpObjectToken
:
ISpDataKey
{
HRESULT
SetId
(
/*
[
in
]
*/
LPCWSTR
pszCategoryId
,
[
in
]
LPCWSTR
pszTokenId
,
[
in
]
BOOL
fCreateIfNotExist
)
;
HRESULT
GetId
(
[
out
]
LPWSTR
*
ppszCoMemTokenId
)
;
HRESULT
GetCategory
(
[
out
]
ISpObjectTokenCategory
**
ppTokenCategory
)
;
HRESULT
CreateInstance
(
[
in
]
IUnknown
*
pUnkOuter
,
[
in
]
DWORD
dwClsContext
,
[
in
]
REFIID
riid
,
[
out
,
iid_is
(
riid
)
]
void
**
ppvObject
)
;
HRESULT
GetStorageFileName
(
[
in
]
REFCLSID
clsidCaller
,
[
in
]
LPCWSTR
pszValueName
,
[
in
,
string
]
LPCWSTR
pszFileNameSpecifier
,
[
in
]
ULONG
nFolder
,
[
out
]
LPWSTR
*
ppszFilePath
)
;
HRESULT
RemoveStorageFileName
(
[
in
]
REFCLSID
clsidCaller
,
[
in
]
LPCWSTR
pszKeyName
,
[
in
]
BOOL
fDeleteFile
)
;
HRESULT
Remove
(
/*
[
in
]
*/
const
CLSID
*
pclsidCaller
)
;
[
local
]
HRESULT
IsUISupported
(
[
in
]
LPCWSTR
pszTypeOfUI
,
[
in
]
void
*
pvExtraData
,
[
in
]
ULONG
cbExtraData
,
[
in
]
IUnknown
*
punkObject
,
[
out
]
BOOL
*
pfSupported
)
;
[
local
]
HRESULT
DisplayUI
(
[
in
]
HWND
hwndParent
,
[
in
]
LPCWSTR
pszTitle
,
[
in
]
LPCWSTR
pszTypeOfUI
,
[
in
]
void
*
pvExtraData
,
[
in
]
ULONG
cbExtraData
,
[
in
]
IUnknown
*
punkObject
)
;
HRESULT
MatchesAttributes
(
[
in
]
LPCWSTR
pszAttributes
,
[
out
]
BOOL
*
pfMatches
)
;
}
[
object
,
uuid
(
06b64
f9e
-
7
fda
-
11
d2
-
b4f2
-
00
c04f797396
),
helpstring
(
"IEnumSpObjectTokens"
),
pointer_default
(
unique
),
local
,
restricted
]
interface
IEnumSpObjectTokens
:
IUnknown
{
HRESULT
Next
(
[
in
]
ULONG
celt
,
[
out
,
size_is
(
celt
),
length_is
(
*
pceltFetched
)
]
ISpObjectToken
**
pelt
,
[
out
]
ULONG
*
pceltFetched
)
;
HRESULT
Skip
(
[
in
]
ULONG
celt
)
;
HRESULT
Reset
(
void
)
;
HRESULT
Clone
(
[
out
]
IEnumSpObjectTokens
**
ppEnum
)
;
HRESULT
Item
(
[
in
]
ULONG
Index
,
[
out
]
ISpObjectToken
**
ppToken
)
;
HRESULT
GetCount
(
[
out
]
ULONG
*
pCount
)
;
}
[
helpstring
(
"Speech Object Library"
),
uuid
(
c866ca3a
-
32
f7
-
11
d2
-
9602
-
00
c04f8ee628
),
version
(
5.4
)
]
library
SpeechLib
{
importlib
(
"stdole2.tlb"
)
;
[
uuid
(
a910187f
-
0
c7a
-
45
ac
-
92
cc
-
59
edafb77b53
),
helpstring
(
"SpObjectTokenCategory Class"
),
progid
(
"SAPI.SpObjectTokenCategory.1"
),
vi_progid
(
"SAPI.SpObjectTokenCategory"
),
threading
(
both
)
]
coclass
SpObjectTokenCategory
{
interface
ISpObjectTokenCategory
;
}
}
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