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
f2ad6305
Commit
f2ad6305
authored
May 29, 2010
by
Mariusz Pluciński
Committed by
Alexandre Julliard
Jun 08, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gameux: Add declaration of IGameStatistics interface.
parent
4a6ed210
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
61 additions
and
1 deletion
+61
-1
gameux.idl
include/gameux.idl
+61
-1
No files found.
include/gameux.idl
View file @
f2ad6305
...
...
@@ -54,7 +54,59 @@ library gameuxLib
HRESULT
UpdateGame
(
[
in
]
GUID
instanceID
)
;
HRESULT
VerifyAccess
(
[
in
]
BSTR
sGDFBinaryPath
,
[
out
]
BOOL
*
pHasAccess
)
;
HRESULT
VerifyAccess
(
[
in
]
BSTR
sGDFBinaryPath
,
[
out
]
BOOL
*
pHasAccess
)
;
}
;
[
object
,
uuid
(
3887
C9CA
-
04
A0
-
42
ae
-
BC4C
-
5
FA6C7721145
)
]
interface
IGameStatistics
:
IUnknown
{
HRESULT
GetMaxCategoryLength
(
[
retval
,
out
]
UINT
*
cch
)
;
HRESULT
GetMaxNameLength
(
[
retval
,
out
]
UINT
*
cch
)
;
HRESULT
GetMaxValueLength
(
[
retval
,
out
]
UINT
*
cch
)
;
HRESULT
GetMaxCategories
(
[
retval
,
out
]
WORD
*
pMax
)
;
HRESULT
GetMaxStatsPerCategory
(
[
retval
,
out
]
WORD
*
pMax
)
;
HRESULT
SetCategoryTitle
(
[
in
]
WORD
categoryIndex
,
[
string
,
in
]
LPCWSTR
title
)
;
HRESULT
GetCategoryTitle
(
[
in
]
WORD
categoryIndex
,
[
retval
,
string
,
out
]
LPWSTR
*
pTitle
)
;
HRESULT
GetStatistic
(
[
in
]
WORD
categoryIndex
,
[
in
]
WORD
statIndex
,
[
string
,
unique
,
out
,
in
]
LPWSTR
*
pName
,
[
string
,
unique
,
out
,
in
]
LPWSTR
*
pValue
)
;
HRESULT
SetStatistic
(
[
in
]
WORD
categoryIndex
,
[
in
]
WORD
statIndex
,
[
string
,
in
]
LPCWSTR
name
,
[
string
,
in
]
LPCWSTR
value
)
;
HRESULT
Save
(
[
in
]
BOOL
trackChanges
)
;
HRESULT
SetLastPlayedCategory
(
[
in
]
UINT
categoryIndex
)
;
HRESULT
GetLastPlayedCategory
(
[
retval
,
out
]
UINT
*
pCategoryIndex
)
;
}
;
[
...
...
@@ -64,4 +116,12 @@ library gameuxLib
{
[
default
]
interface
IGameExplorer
;
}
;
[
uuid
(
DBC85A2C
-
C0DC
-
4961
-
B6E2
-
D28B62C11AD4
)
]
coclass
GameStatistics
{
[
default
]
interface
IGameStatistics
;
}
;
}
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