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
937fd398
Commit
937fd398
authored
Nov 10, 2009
by
Maarten Lankhorst
Committed by
Alexandre Julliard
Nov 11, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Add avrt header.
parent
2b6a4534
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
75 additions
and
0 deletions
+75
-0
Makefile.in
include/Makefile.in
+1
-0
avrt.h
include/avrt.h
+74
-0
No files found.
include/Makefile.in
View file @
937fd398
...
...
@@ -108,6 +108,7 @@ SRCDIR_INCLUDES = \
audevcod.h
\
audiosessiontypes.h
\
aviriff.h
\
avrt.h
\
axcore.idl
\
axextend.idl
\
basetsd.h
\
...
...
include/avrt.h
0 → 100644
View file @
937fd398
/*
* avrt definitions
*
* Copyright 2009 Maarten Lankhorst
*
* 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
*
*/
#ifndef _AVRT_
#define _AVRT_
#ifdef __cplusplus
extern
"C"
{
#endif
typedef
enum
_AVRT_PRIORITY
{
AVRT_PRIORITY_LOW
=
-
1
,
AVRT_PRIORITY_NORMAL
,
AVRT_PRIORITY_HIGH
,
AVRT_PRIORITY_CRITICAL
}
AVRT_PRIORITY
,
*
PAVRT_PRIORITY
;
/* Windows compiler is more lax */
#define THREAD_ORDER_GROUP_INFINITE_TIMEOUT ((void*)((LONG_PTR)-1))
HANDLE
WINAPI
AvSetMmThreadCharacteristicsA
(
LPCSTR
TaskName
,
LPDWORD
TaskIndex
);
HANDLE
WINAPI
AvSetMmThreadCharacteristicsW
(
LPCWSTR
TaskName
,
LPDWORD
TaskIndex
);
#define AvSetMmThreadCharacteristics WINELIB_NAME_AW(AvSetMmThreadCharacteristics)
HANDLE
WINAPI
AvSetMmMaxThreadCharacteristicsA
(
LPCSTR
FirstTask
,
LPCSTR
SecondTask
,
LPDWORD
TaskIndex
);
HANDLE
WINAPI
AvSetMmMaxThreadCharacteristicsW
(
LPCSTR
FirstTask
,
LPCSTR
SecondTask
,
LPDWORD
TaskIndex
);
#define AvSetMmMaxThreadCharacteristics WINELIB_NAME_AW(AvSetMmMaxThreadCharacteristics)
BOOL
WINAPI
AvRevertMmThreadCharacteristics
(
HANDLE
AvrtHandle
);
BOOL
WINAPI
AvSetMmThreadPriority
(
HANDLE
AvrtHandle
,
AVRT_PRIORITY
Priority
);
BOOL
WINAPI
AvRtCreateThreadOrderingGroup
(
PHANDLE
Context
,
PLARGE_INTEGER
Period
,
GUID
*
ThreadOrderingGuid
,
PLARGE_INTEGER
Timeout
);
BOOL
WINAPI
AvRtCreateThreadOrderingGroupExA
(
PHANDLE
Context
,
PLARGE_INTEGER
Period
,
GUID
*
ThreadOrderingGuid
,
PLARGE_INTEGER
Timeout
,
LPCSTR
TaskName
);
BOOL
WINAPI
AvRtCreateThreadOrderingGroupExW
(
PHANDLE
Context
,
PLARGE_INTEGER
Period
,
GUID
*
ThreadOrderingGuid
,
PLARGE_INTEGER
Timeout
LPCSTR
TaskName
);
#define AvRtCreateThreadOrderingGroupEx WINELIB_NAME_AW(AvRtCreateThreadOrderingGroupEx)
BOOL
WINAPI
AvRtJoinThreadOrderingGroup
(
PHANDLE
Context
,
GUID
*
ThreadOrderingGuid
,
BOOL
Before
);
BOOL
WINAPI
AvRtWaitOnThreadOrderingGroup
(
HANDLE
Context
);
BOOL
WINAPI
AvRtLeaveThreadOrderingGroup
(
HANDLE
Context
);
BOOL
WINAPI
AvRtDeleteThreadOrderingGroup
(
HANDLE
Context
);
BOOL
WINAPI
AvQuerySystemResponsiveness
(
HANDLE
AvrtHandle
,
PULONG
SystemResponsivenessValue
);
#ifdef __cplusplus
}
#endif
#endif
/*_AVRT_*/
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