wine/include
Alexandros Frantzis aa72d7d42d gdi32: Track ticks since draw start per window_surface.
Track ticks since draw start per window_surface, instead of per DC as is
currently the case. This change helps reduce visual glitches caused by
badly timed flushes when drawing to the same window_surface from
multiple DCs (e.g., for child windows).

This approach is a better fit for the current heuristic for forcing
flushing, which consults the shared window_surface bounds to decide
whether this is the start of a draw in order to reset the (currently per
DC) draw start time.

The problem in the current implementation occurs when a drawing to a DC
begins with an already damaged window_surface, e.g., due to draws from
other DCs targeting that window_surface. In such a case, the DC draw
start time is not reset and refers to the start of some previous draw
sequence using this DC, thus increasing the chances that the 50ms time
flush limit will be eventually exceeded in the middle of the current
draw sequence. In other words, the state of the (shared) window_surface
damage is not a reliable indicator of the beginning (or not) of a draw
to a DC.

An example, assuming DC1 and DC2 target the same window_surface:

DC1.start_ticks = 0
DC2.start_ticks = 0
FLUSH_PERIOD = 50

0 flush
1 draw to DC1 -> DC1.start_ticks = 1
... [no flush] ...
2 draw to DC2 -> DC2.start_ticks remains 0 since surface is damaged
...
50 flush
51 draw to DC1 -> DC1.start_ticks = 51
... [no flush] ...
52 draw to DC2 -> DC2.start_ticks remains 0 since surface is damaged,
                  current - DC2.start_ticks > FLUSH_PERIOD so we are
                  forced to flush in the middle of the drawing
                  sequence => potential glitch

Tracking the draw start per window_surface ameliorates the problem
because the beginning of a draw on a DC targeting an undamaged
window_surface resets the start time for all DCs targeting that
window_surface:

...
50 flush
51 draw to DC1 -> surface.draw_ticks = 51
... [no flush] ...
52 draw to DC2 -> surface.draw_ticks remains 51 since surface is damaged,
                  but current - surface.draw_ticks < FLUSH_PERIOD, so we
                  do not flush

Signed-off-by: Alexandros Frantzis <alexandros.frantzis@collabora.com>
2023-02-21 11:22:45 +01:00
..
ddk include: Move ddk/imm.h to immdev.h. 2023-02-15 21:48:33 +01:00
msvcrt include: Move __builtin_ms_va_list definitions to vadefs.h. 2023-02-20 08:41:45 +01:00
wine gdi32: Track ticks since draw start per window_surface. 2023-02-21 11:22:45 +01:00
accctrl.h
access.idl include: Add DBACCESSORFLAGSENUM/DBBINDSTATUSENUM values. 2020-12-30 20:55:41 +01:00
aclapi.h
aclui.h
activation.idl
activaut.idl
activdbg.idl
activscp.idl
adserr.h
adshlp.h include: Remove __WINE_MALLOC from functions that shouldn't have it. 2023-01-30 16:49:55 +01:00
advpub.h
af_irda.h
amaudio.h
amsi.idl
amstream.idl
amva.h include: Add amva.h. 2022-04-14 09:28:31 +02:00
amvideo.idl
appcompatapi.h
appmgmt.h
appmodel.h kernelbase: Implement AppPolicyGetMediaFoundationCodecLoading. 2021-11-11 21:05:51 +01:00
asferr.h
asptlb.idl include: Fix IRequestDictionary IID. 2021-08-10 17:53:55 +02:00
asyncinfo.idl include: Add IAsyncInfo interface in asyncinfo.idl. 2021-03-19 19:55:34 +01:00
asynot.idl
asysta.idl
atlbase.h
atlcom.h
atliface.idl
atlthunk.h
atlwin.h
audevcod.h
audioclient.idl include: Add IAudioAmbisonicsControl interface in audioclient.idl. 2020-12-15 22:09:21 +01:00
audiopolicy.idl
audiosessiontypes.h
austream.idl
authz.h
aviriff.h
avrt.h avrt: Add AvSetMmMaxThreadCharacteristicsA/W stub. 2020-11-24 22:09:59 +01:00
axcore.idl
axextend.idl include: Add IAMCameraControl definition in axextend.idl. 2020-12-21 21:08:03 +01:00
axextendenums.h
basetsd.h include/basetsd.h: Define PtrTo(Ul|L)ong to return a long (as SDK does). 2022-02-01 18:23:18 +01:00
basetyps.h
bcrypt.h bcrypt: Add support for PSS padding. 2022-12-06 17:12:31 +01:00
bdaiface.idl
bdaiface_enums.h
bdatypes.h
binres.idl
bits.idl
bits1_5.idl include: Add BackgroundCopyManager1_5 library in bits1_5.idl. 2021-10-27 22:40:50 +02:00
bits2_0.idl
bits2_5.idl
bits3_0.idl
bits5_0.idl
bitsmsg.h
bluetoothapis.h include: Add BluetoothRegisterForAuthenticationEx prototype. 2023-02-21 11:22:34 +01:00
bthsdpdef.h
cderr.h
cdosys.idl
cfg.h
cfgmgr32.h setupapi: Return CR_SUCCESS for CM_Get_DevNode_Status{_Ex}. 2022-03-30 11:03:38 +02:00
cguid.h
chprst.idl
cierror.h infosoft/tests: Fix the pfnFillTextBuffer() return value. 2021-05-10 20:33:34 +02:00
clusapi.h
cmdbas.idl
cmdpre.idl
cmdprp.idl
cmdstrm.idl
cmdtxt.idl
cmdwpr.idl include: Add ICommandWithParameters interface. 2021-06-23 22:25:56 +02:00
cmnquery.idl
codecapi.h
colinf.idl
colordlg.h
colrst.idl include: Add colrst.idl. 2021-03-12 17:28:26 +01:00
combaseapi.h include: Introduce combaseapi.h. 2021-07-29 10:20:24 +02:00
comcat.idl
commctrl.h include: Use proper dllimports for comctl32 functions. 2022-12-07 13:51:37 +01:00
commctrl.rh
commdlg.h include: Use proper dllimports for comdlg32 functions. 2022-12-07 13:51:37 +01:00
commoncontrols.idl
compobj.h
comsvcs.idl include: Add ISharedPropertyGroupManager interface. 2021-11-25 21:44:22 +01:00
concurrencysal.h include: Import specstrings.h and related headers from Mingw. 2021-10-13 13:39:20 +02:00
config.h.in tools: Move signal masking to the common make_temp_file() helper. 2023-01-25 11:47:51 +01:00
consoleapi.h
control.idl
cor.idl
cordebug.idl
corerror.h
corhdr.h
corsym.idl diasymreader: Stub ISymUnmanagedWriter5. 2022-02-02 10:55:13 +01:00
cpl.h
crtrow.idl
cryptdlg.h
cryptuiapi.h
ctfutb.idl
ctxtcall.idl
custcntl.h
cvconst.h dbghelp/pdb: Add new basic type to represent char8_t introduced in C++20. 2021-11-08 21:00:57 +01:00
cvttyp.idl
d2d1.idl
d2d1_1.idl d2d1_1: Don't redefine D2D1_PROPERTY_BINDING (gcc 4.3). 2023-01-25 10:01:36 +01:00
d2d1_2.idl include: Add newer D2D command sink interface definitions. 2022-08-04 19:00:00 +02:00
d2d1_3.idl include: Add newer D2D command sink interface definitions. 2022-08-04 19:00:00 +02:00
d2d1effectauthor.idl include: Add defines for D2D1_PROPERTY_BINDING. 2022-05-12 19:37:44 +02:00
d2d1effects.idl d2d1: Add D2D1Shadow effect. 2022-03-07 16:29:57 +01:00
d2d1effects_1.idl include: Add defines for D2D1YCbCr effect. 2022-04-04 19:52:45 +02:00
d2d1effects_2.idl d2d1/tests: Add tests for D2D1Grayscale effect. 2022-04-05 17:50:57 +02:00
d2dbasetypes.h
d2derr.h
d3d.h
d3d8.h
d3d8caps.h
d3d8types.h
d3d9.h d3d9: Fix handling of D3DENUM_WHQL_LEVEL. 2020-12-14 16:21:49 +01:00
d3d9caps.h include: Remove two D3DCAPS2 defines in d3d9 headers. 2020-12-11 21:47:15 +01:00
d3d9types.h
d3d10.idl include: Add D3D10_RAISE_FLAG structure in d3d10.idl. 2020-11-26 23:25:24 +01:00
d3d10_1.idl
d3d10_1shader.h
d3d10effect.h d3d10: Fix up D3D10_DST_* names. 2021-10-07 21:22:21 +02:00
d3d10misc.h
d3d10sdklayers.idl
d3d10shader.h
d3d11.idl include: Add missing constants in d3d11.idl. 2022-12-22 20:51:24 +01:00
d3d11_1.idl
d3d11_2.idl
d3d11_3.idl include: Add D3D11_FENCE_FLAG_NON_MONITORED name in d3d11_3.idl. 2020-11-26 23:25:24 +01:00
d3d11_4.idl
d3d11on12.idl
d3d11sdklayers.idl
d3d11shader.h
d3d12.idl include: Add DirectX 12 Agility SDK definitions. 2023-02-10 19:09:16 +01:00
d3d12sdklayers.idl
d3d12shader.idl
d3dcaps.h
d3dcommon.idl include: Fix the definition of D3D_PRIMITIVE enum members. 2021-12-28 19:02:56 +01:00
d3dcompiler.h
d3dhal.h
d3dkmdt.h
d3drm.h
d3drmdef.h
d3drmobj.h
d3drmwin.h
d3dtypes.h
d3dukmdt.h include: Add some missing ntgdi declarations. 2021-09-20 22:45:48 +02:00
d3dvec.inl
d3dx9.h
d3dx9anim.h
d3dx9core.h
d3dx9effect.h
d3dx9math.h d3dx9: Implement D3DXSHProjectCubeMap(). 2022-02-07 20:23:35 +01:00
d3dx9math.inl
d3dx9mesh.h
d3dx9shader.h
d3dx9shape.h
d3dx9tex.h
d3dx9xof.h
d3dx10.h d3dx10: Add D3DX10CreateAsyncTextureInfoProcessor stub. 2022-06-01 20:51:58 +02:00
d3dx10async.h d3dx10: Add D3DX10CreateAsyncTextureProcessor stub. 2022-06-15 21:45:02 +02:00
d3dx10core.h d3dx10core: Don't redefine ID3D10Device1 (gcc 4.3). 2023-01-25 10:01:38 +01:00
d3dx10math.h include: Add d3dx10 vector and matrix types. 2021-08-06 14:33:22 +02:00
d3dx10mesh.h include: Add ID3DX10Mesh definition. 2021-08-19 20:38:51 +02:00
d3dx10tex.h d3dx10: Add stubs for D3DX10CreateTextureFromResource{A, W}. 2021-10-07 22:54:59 +02:00
d3dx11.h
d3dx11async.h
d3dx11core.idl
d3dx11tex.h
davclnt.h
dbccmd.idl
dbcses.idl
dbdsad.idl
dbgeng.h include: Add IDebugAdvanced3 definition. 2022-04-04 19:52:45 +02:00
dbghelp.h include: Ensure that SymRefreshModuleList() is properly defined. 2023-02-20 23:00:33 +01:00
dbinit.idl
dbprop.idl
dbs.idl include: Add more DBPROPVAL_ defines. 2021-11-16 10:09:57 +01:00
dbt.h
dciddi.h
dciman.h
dcommon.idl
dcomp.idl include: Add dcomp.idl. 2023-02-20 23:00:33 +01:00
dcompanimation.idl include: Add dcompanimation.idl. 2023-02-20 23:00:33 +01:00
dcomptypes.idl include: Add dcomptypes.idl. 2023-02-20 23:00:33 +01:00
dde.h include: Use proper dllimports for user32 functions. 2022-12-07 13:51:37 +01:00
dde.rh
ddeml.h include: Use proper dllimports for user32 functions. 2022-12-07 13:51:37 +01:00
ddraw.h
ddrawgdi.h
ddrawi.h
ddstream.idl
delayloadhandler.h
devenum.idl
devguid.h
devicetopology.idl
devpkey.h
devpropdef.h
dhcpcsdk.h
dhtmldid.h
dhtmled.idl
difxapi.h include: Add more definitions to difxapi.h. 2023-01-31 16:54:52 +01:00
digitalv.h
dimm.idl
dinput.h include: Declare DIPROP_(PHYSICAL|LOGICAL)RANGE properties. 2021-11-18 11:11:35 +01:00
dinputd.h include: Add IID_IDirectInputPIDDriver definition. 2021-09-29 21:38:13 +02:00
directmanipulation.idl include: Add DEFINE_ENUM_FLAG_OPERATORS macro in directmanipulation.idl. 2020-12-18 15:21:37 +01:00
dispdib.h
dispex.idl
dlgs.h
dls1.h
dls2.h
dmdls.h
dmerror.h
dmksctrl.h
dmo.h
dmodshow.idl
dmoreg.h
dmort.h
dmplugin.h
dmusbuff.h
dmusicc.h
dmusicf.h
dmusici.h
dmusics.h
docobj.idl
docobjectservice.idl
documenttarget.idl include: Add document target ids. 2021-12-10 14:41:41 +01:00
downloadmgr.idl
dpaddr.h
dpfilter.h
dplay.h
dplay8.h
dplobby.h
dplobby8.h
dpnathlp.h
driverspecs.h include: Import specstrings.h and related headers from Mingw. 2021-10-13 13:39:20 +02:00
drmexternals.idl
dsclient.h
dsconf.h
dsgetdc.h
dshow.h
dsound.h include: Add some type aliases in dsound.h. 2021-08-04 11:38:17 +02:00
dsrole.h
dvdif.idl
dvdmedia.h
dvoice.h
dwmapi.h dwmapi: Correct parameter types of DwmGetColorizationColor(). 2022-02-01 20:36:43 +01:00
dwrite.idl
dwrite_1.idl
dwrite_2.idl
dwrite_3.idl include: Add recent DirectWrite API changes. 2023-01-24 18:22:05 +01:00
dxdiag.h
dxerr8.h
dxerr9.h
dxfile.h
dxgi.idl
dxgi1_2.idl
dxgi1_3.idl
dxgi1_4.idl
dxgi1_5.idl
dxgi1_6.idl
dxgicommon.idl include: Add some DXGI_COLOR_SPACE_TYPE enumeration values. 2023-02-02 11:00:16 +01:00
dxgidebug.idl include: Add IDXGIDebug1 declaration in dxgidebug.idl. 2022-06-22 22:35:24 +02:00
dxgiformat.idl
dxgitype.idl
dxva.h include: Add AV1 support to dxva.h. 2021-07-05 23:05:37 +02:00
dxva2api.idl include: Use nameless unions in dxva2api.idl helpers. 2021-03-22 21:48:41 +01:00
dyngraph.idl
endpointvolume.idl
errorrep.h
errors.h
errrec.idl
evcode.h
eventtoken.idl include: Add EventRegistrationToken struct in eventtoken.idl. 2021-03-17 15:36:59 +01:00
evntprov.h
evntrace.h
evr.idl
evr9.idl include: Add MFVideoAlphaBitmapFlags in evr9.idl. 2021-10-25 18:54:30 +02:00
excpt.h
exdisp.idl
exdispid.h
exposeenums2managed.h
fci.h
fdi.h
featurestagingapi.h include: Add featurestagingapi.h. 2021-11-25 22:01:09 +01:00
fileapi.h
filter.idl
fltdefs.h
fontsub.h
fusion.idl
gameux.idl
gamingtcui.h gamingtcui: Add stub for ShowProfileCardUI(). 2021-05-05 21:52:23 +02:00
gdiplus.h
gdipluscolor.h
gdipluscolormatrix.h
gdipluseffects.h
gdiplusenums.h
gdiplusflat.h gdiplus: Add GdipGetPenCompoundArray implementation. 2022-10-31 12:11:55 +01:00
gdiplusgpstubs.h
gdiplusimaging.h
gdiplusinit.h
gdiplusmem.h include: Annotate GdipAlloc with __WINE_(DEALLOC|MALLOC). 2022-12-07 23:20:23 +01:00
gdiplusmetaheader.h
gdipluspixelformats.h
gdiplustypes.h
getdts.idl
guiddef.h include: Use Mingw64's __uuidof when present. 2022-05-19 16:17:08 +02:00
hidusage.h include: Define some HID simulation device usages. 2022-03-03 21:31:55 +01:00
highlevelmonitorconfigurationapi.h
hlguids.h
hlink.idl
hstring.idl
htiface.idl
htiframe.idl
htmlhelp.h
http.h
httprequest.idl
httprequestid.h
i_cryptasn1tls.h
iads.idl
icftypes.idl
icm.h
icmpapi.h include/icmpapi: Add missing function declarations. 2020-12-03 20:18:38 +01:00
icodecapi.idl include: Remove duplicate ICodecAPI::GetParameterValues function. 2022-06-15 22:21:34 +02:00
idispids.h
ieautomation.idl
iextag.idl
ifdef.h
ifmib.h
iimgctx.idl
imagehlp.h include: Include minidumpapiset.h in imagehlp.h. 2022-11-02 17:20:20 +01:00
ime.h
imm.h
immdev.h include: Add Imm(Get|Set)HotKey declarations. 2023-02-15 21:48:33 +01:00
imnact.idl
imnxport.idl
in6addr.h
inaddr.h
indexsrv.idl
initguid.h
inputscope.idl
inseng.idl
inspectable.idl
interactioncontext.h
intshcut.h
ip2string.h
ipexport.h
iphlpapi.h
ipifcons.h
ipmib.h
iprtrmib.h
iptypes.h iphlpapi: Mark adapter addresses as DNS eligible when interface has a gateway. 2021-01-27 21:04:52 +01:00
isguids.h
ivectorchangedeventargs.idl include: Add Windows.Foundation.Collections.IVectorChangedEventArgs definition. 2023-01-25 18:31:03 +01:00
kbd.h include: Add VK_TO_WCHARS constants definitions to kbd.h. 2023-02-07 17:58:52 +01:00
knownfolders.h
ks.h
ksguid.h
ksmedia.h mfplat/tests: Add some tests for legacy media type conersion functions. 2022-08-27 16:53:09 +02:00
ksuuids.h
libloaderapi.h
lm.h
lmaccess.h
lmapibuf.h
lmat.h
lmbrowsr.h
lmcons.h
lmerr.h
lmjoin.h
lmmsg.h
lmserver.h
lmshare.h
lmstats.h
lmuse.h
lmuseflg.h
lmwksta.h
loadperf.h
lowlevelmonitorconfigurationapi.h
lzexpand.h include: Use proper dllimports for lz32 functions. 2022-12-07 13:51:37 +01:00
Makefile.in include: Add dcomp.idl. 2023-02-20 23:00:33 +01:00
mapi.h
mapicode.h
mapidefs.h
mapiform.h
mapiguid.h
mapitags.h
mapiutil.h
mapival.h
mapix.h
mciavi.h
mcx.h
mediaerr.h
mediaobj.idl
medparam.idl include: Add IMediaParams definitions. 2022-08-10 11:35:29 +02:00
memoryapi.h kernelbase: Add QueryVirtualMemoryInformation(). 2022-10-31 20:41:44 +01:00
metahost.idl
mfapi.h include: Annotate MFHeapAlloc with __WINE_(ALLOC_SIZE|DEALLOC|MALLOC). 2022-12-07 20:27:26 +01:00
mfd3d12.idl include: Add mfd3d12.idl. 2021-11-22 22:20:50 +01:00
mferror.h include: Add more Media Foundation error codes. 2020-12-21 21:07:56 +01:00
mfidl.idl include: Declare AudioResamplerMediaObject and MP3DecMediaObject class ids in mfidl.idl. 2022-09-06 21:40:39 +02:00
mfmediaengine.idl mfmediaengine: Update network state when loading the media source. 2021-07-20 21:51:16 +02:00
mfobjects.idl mfplat: Add MECapture* events to tracing. 2022-01-13 14:21:41 +01:00
mfplay.idl include: Add MFP_POSITIONTYPE_100NS symbol. 2021-06-21 23:13:57 +02:00
mfreadwrite.idl include: Add DEFINE_ENUM_FLAG_OPERATORS macro in mfreadwrite.idl. 2020-12-18 15:21:37 +01:00
mftransform.idl mfplat: Add some more attributes for tracing. 2021-08-02 11:28:20 +02:00
midles.h
mimeinfo.idl
mimeole.idl
minidumpapiset.h winedump: Add support for dumping UnloadedModuleListStream. 2022-05-19 18:28:25 +02:00
minmax.h
minschannel.h include: Move SECPKG_ATTR defines to a new header and add missing definitions. 2022-06-21 18:53:18 +02:00
mlang.idl
mmc.idl
mmddk.h
mmdeviceapi.idl
mmreg.h include: Add IMpegAudioDecoder definition. 2022-05-11 19:33:23 +02:00
mmstream.idl
mmsystem.h msacm32: Use extended structure definition for driver configuration. 2022-02-14 21:32:04 +01:00
mpegtype.idl include: Add IMpegAudioDecoder definition. 2022-05-11 19:33:23 +02:00
mprapi.h
mprerror.h
msacm.h
msacmdlg.h
msacmdrv.h
msado15_backcompat.idl msado15: Fix some LONG/LONG_PTR mismatches. 2022-02-04 22:44:49 +01:00
msasn1.h
mscat.h
mscoree.idl
msctf.idl include: Add TF_TMF/TMAW defines. 2022-05-12 22:19:02 +02:00
msdadc.idl
msdaguid.h
msdasc.idl
msdasql.h
mshtmcid.h
mshtmdid.h include/mshtml: Add the other IHTMLEventObj* interfaces. 2023-02-01 22:29:39 +01:00
mshtmhst.idl include/mshtmhst: Add CGID_ScriptSite and CMDIDs for it. 2022-11-30 20:48:20 +01:00
mshtml.idl include/mshtml: Add the other IHTMLEventObj* interfaces. 2023-02-01 22:29:39 +01:00
msi.h include: Fix size of MsiEnumClientsEx[AW]'s array argument (GCC). 2021-08-03 23:41:05 +02:00
msidefs.h
msident.idl
msinkaut.idl
msiquery.h
msopc.idl
mssip.h
msstkppg.h
mstask.idl
mstcpip.h include: Fix typo in IN4ADDR_LOOPBACK_INIT. 2022-11-18 17:33:49 +01:00
mswsock.h ws2_32: Implement SIO_BASE_HANDLE. 2021-06-10 20:50:54 +02:00
msxml.idl
msxml2.idl
msxml2did.h
msxml6.idl include: Add _XHR enum values. 2023-01-25 10:16:31 +01:00
msxml6did.h
msxmldid.h
mtxdm.h
mulres.idl include: Add mulres.idl. 2021-02-04 21:25:32 +01:00
multimon.h
namespaceapi.h include: Add namespaceapi.h file. 2021-12-07 16:19:48 +01:00
natupnp.idl
nb30.h
ncrypt.h ncrypt: Implement NCryptSignHash(). 2022-12-06 17:04:50 +01:00
ndrtypes.h
netcfgx.idl
netcon.idl
netfw.idl
netioapi.h nsiproxy: Implement IPv4 neighbour enumerate_all. 2021-08-10 17:53:54 +02:00
netiodef.h uuid: Add a few NPI module ids. 2021-06-25 22:48:48 +02:00
netlistmgr.idl
newdev.h
nldef.h
npapi.h
nserror.h
nspapi.h
ntddcdrm.h
ntddkbd.h include: Add GUID_DEVINTERFACE_KEYBOARD to ntddkbd.h. 2021-04-23 20:02:06 +02:00
ntddmou.h
ntddndis.h
ntddscsi.h
ntddstor.h
ntddvdeo.h winex11.drv: Register GUID_DISPLAY_DEVICE_ARRIVAL interface for GPUs. 2021-09-16 22:22:44 +02:00
ntdef.h include: Add RTL_CONSTANT_STRING. 2023-01-24 18:21:34 +01:00
ntdsapi.h
ntgdi.h gdi32: Get printer output file name in StartDoc. 2022-11-22 18:27:30 +01:00
ntlsa.h advapi32: Add stub for LsaEnumerateAccounts. 2021-05-11 22:15:05 +02:00
ntquery.h
ntsecapi.h include: Use proper dllimports for advapi32 functions. 2022-12-07 13:51:37 +01:00
ntsecpkg.h
ntstatus.h ntstatus.h: Add MUI statuses. 2021-03-25 21:52:18 +01:00
ntuser.h include: Declare some NtUser pointer related syscalls. 2023-01-31 21:05:37 +01:00
oaidl.idl
objbase.h include: Use proper dllimports for OLE functions. 2022-12-07 13:51:37 +01:00
objectarray.idl
objidl.idl ole32: Add CreateObjrefMoniker() stub implementation.. 2021-11-26 11:58:19 +01:00
objidlbase.idl combase: Return initial values for global options. 2021-04-01 18:18:59 +02:00
objsafe.idl
objsel.h
ocidl.idl
ocmm.idl
odbcinst.h
ole2.h include: Use proper dllimports for OLE functions. 2022-12-07 13:51:37 +01:00
ole2ver.h
oleacc.idl include: Stop building tlb files in the include directory. 2021-11-12 22:42:51 +01:00
oleauto.h include: Use proper dllimports for OLE functions. 2022-12-07 13:51:37 +01:00
olectl.h winecrt0: Add a default implementation DllRegisterServer()/DllUnregisterServer(). 2021-04-30 22:59:50 +02:00
oledb.idl include: Add trnobj.idl. 2022-01-24 21:44:51 +01:00
oledberr.h include: Add more DB_* defines. 2021-10-31 17:11:43 +01:00
oledlg.h
oleidl.idl
opcbase.idl
opcobjectmodel.idl
opcparturi.idl
opnrst.idl
optary.idl
patchapi.h
pathcch.h
pdh.h
pdhmsg.h
perflib.h advapi32: Add stub for PerfQueryCounterData(). 2022-09-13 12:54:54 +02:00
perhist.idl
physicalmonitorenumerationapi.h
pktdef.h
poppack.h
powrprof.h powrprof: Add PowerSettingUnregisterNotification stub. 2022-03-01 22:41:15 +01:00
prntvpt.h
processthreadsapi.h include: Add THREAD_POWER_THROTTLING_STATE type. 2022-05-25 18:25:43 +02:00
profinfo.h
proofofpossessioncookieinfo.idl include: Add proofofpossessioncookieinfo.idl file. 2021-06-28 19:43:28 +02:00
propidl.idl
propkey.h include: Add more PROPERTYKEY declarations in propkey.h. 2021-05-14 21:03:09 +02:00
propkeydef.h
propsys.idl
propvarutil.h propsys: Add InitPropVariantFromStringVector(). 2023-01-26 22:05:13 +01:00
prsht.h include: Use proper dllimports for comctl32 functions. 2022-12-07 13:51:37 +01:00
psapi.h include: Add manifest constants for EnumProcessModulesEx. 2023-02-13 17:08:46 +01:00
pshpack1.h
pshpack2.h
pshpack4.h
pshpack8.h
pstore.idl
qedit.idl
qos2.h
ras.h include: Add RASCREDENTIALSA/W structures. 2021-08-04 11:36:07 +02:00
rasdlg.h
raserror.h
realtimeapiset.h include: Add realtimeapiset.h file. 2023-02-07 17:46:42 +01:00
reason.h
regstr.h include: Add CONFIGFLAG_* definitions. 2022-12-13 12:44:51 +01:00
relogger.idl include: Add relogger.idl file. 2021-02-09 21:19:29 +01:00
restartmanager.h
restrictederrorinfo.idl
richedit.h
richole.idl
rmxfguid.h
rmxftmpl.x
roapi.h combase/tests: Link directly to combase. 2021-04-15 17:41:40 +02:00
roerrorapi.h combase: Add RoSetErrorReportingFlags() stub. 2022-03-02 20:17:25 +01:00
roparameterizediid.idl
row.idl
rowchg.idl
rowpos.idl
rowpsc.idl
rpc.h include: Use proper dllimports for rpcrt4 functions. 2022-12-07 13:51:37 +01:00
rpcasync.h
rpcdce.h include: Import specstrings.h and related headers from Mingw. 2021-10-13 13:39:20 +02:00
rpcdcep.h include: Annotate I_RpcAllocate with __WINE_(ALLOC_SIZE|DEALLOC|MALLOC). 2022-11-30 10:54:31 +01:00
rpcndr.h include: Add __WINE_DEALLOC attribute and use it for allocation functions. 2022-05-18 18:36:10 +02:00
rpcnterr.h
rpcproxy.h include: Use proper dllimports for rpcrt4 functions. 2022-12-07 13:51:37 +01:00
rpcsal.h
rstbas.idl
rstchg.idl
rstinf.idl
rstloc.idl
rstnot.idl
rstupd.idl
rtutils.h
rtworkq.idl include: Rename class parameters to mmcss_class. 2021-02-03 21:01:01 +01:00
sal.h include: Add more dummy msvc SAL macros. 2021-11-08 20:40:09 +01:00
sapi.idl include: Add coclass SpMMAudioEnum. 2022-08-05 20:14:41 +02:00
sapiaut.idl include: Avoid C++ keyword. 2021-09-17 22:07:41 +02:00
sapiddk.idl
scarderr.h
schannel.h include: Move SECPKG_ATTR defines to a new header and add missing definitions. 2022-06-21 18:53:18 +02:00
schemadef.h
schnlsp.h
sddl.h include: Use proper dllimports for advapi32 functions. 2022-12-07 13:51:37 +01:00
sdkddkver.h include: Add sdkddkver.h. 2022-11-07 21:13:31 +01:00
secext.h
security.h
sensapi.h
sensevts.idl
servprov.idl
sesprp.idl
setupapi.h setupapi: Move prototypes not in Windows's setupapi.h to setupapi_private.h. 2022-12-06 17:04:50 +01:00
sfc.h
shdeprecated.idl
shdispid.h
shellapi.h include: Use proper dllimports for shell32 functions. 2022-12-07 14:16:10 +01:00
shellscalingapi.h
shimgdata.idl
shldisp.idl
shlguid.h include: Add shobjidl_core.idl. 2022-11-29 21:33:58 +01:00
shlobj.h include: Annotate ILC* functions with __WINE_(DEALLOC|MALLOC). 2022-12-07 23:20:39 +01:00
shlwapi.h include: Use proper dllimports for shlwapi functions. 2022-12-07 13:51:37 +01:00
shobjidl.idl include: Use proper dllimports for shell32 functions. 2022-12-07 14:16:10 +01:00
shobjidl_core.idl include: Add shobjidl_core.idl. 2022-11-29 21:33:58 +01:00
shtypes.idl
sipbase.h
slerror.h
slpublic.h
snmp.h include: Annotate SnmpUtilMem(Re)Alloc with __WINE_(DEALLOC|MALLOC). 2022-12-03 00:05:16 +01:00
socketapi.h windows.networking: Add stub dll. 2022-04-25 15:08:43 +02:00
softpub.h
spatialaudioclient.idl mmdevapi: Implement SpatialAudio features. 2021-02-04 23:11:22 +01:00
specstrings.h include: Import specstrings.h and related headers from Mingw. 2021-10-13 13:39:20 +02:00
sperror.h include: Add missing SP defines. 2022-10-11 12:00:14 +02:00
sql.h
sqlext.h include: Add define SQL_OV_ODBC3_80. 2021-11-08 20:40:09 +01:00
sqltypes.h include: Add more SQL_ defines. 2021-02-24 22:01:42 +01:00
sqlucode.h include: Add missing SQL prototype. 2023-02-16 10:31:56 +01:00
srcrst.idl
srrestoreptapi.h
sspi.h include: Fix a typo. 2022-07-12 22:51:29 +02:00
stamp-h.in
stgprop.h
sti.h
storage.h
strmif.idl
strongname.h mscoree: Add StrongNameTokenFromAssembly stub. 2022-11-14 13:13:01 +01:00
strsafe.h
structuredquerycondition.idl
svrapi.h
synchapi.h
t2embapi.h
tapi.h
taskschd.idl
tbs.h include: Add tbs.h. 2021-07-01 08:42:49 +02:00
tchar.h include: Add _tcsto[u]ll declarations. 2022-06-20 10:37:56 +02:00
tcpestats.h
tcpmib.h
textserv.h include: Add ITextHost2. 2021-03-26 16:48:30 +01:00
textstor.idl
threadpoolapiset.h include: Remove __WINE_MALLOC from functions that shouldn't have it. 2023-01-30 16:49:55 +01:00
thumbcache.idl
timezoneapi.h
tlhelp32.h
tlogstg.idl
tmschema.h uxtheme: Use vssym32.h instead of tmschema.h. 2021-11-02 17:09:39 +01:00
tom.idl include: Move the ITextRange2 definition to avoid an undefined reference. 2022-01-12 17:14:27 +01:00
tpcshrd.h
traffic.h
transact.idl
trnjoi.idl include: Add trnjoi.idl. 2021-11-08 17:34:49 +01:00
trnlcl.idl include: Add trnlcl.idl. 2022-01-24 21:44:51 +01:00
trnobj.idl include: Add trnobj.idl. 2022-01-24 21:44:51 +01:00
twain.h
txcoord.idl
txdtc.idl
udpmib.h
uianimation.idl
uiautomation.h
uiautomationclient.idl uiautomationcore: Register all UI Automation typelibs. 2023-02-20 08:37:21 +01:00
uiautomationcore.idl uiautomationcore: Register all UI Automation typelibs. 2023-02-20 08:37:21 +01:00
uiautomationcoreapi.h uiautomationcore: Add UiaRaiseChangesEvent stub. 2023-02-14 20:57:09 +01:00
uiribbon.idl
uiviewsettingsinterop.idl include: Add uiviewsettingsinterop.idl. 2023-02-02 18:08:39 +01:00
unexposeenums2managed.h
unknwn.idl
urlhist.idl
urlmon.idl include: Add IAuthenticateEx interface definition. 2021-06-16 23:23:49 +02:00
userenv.h
usp10.h include: Add definition of ScriptPlaceOpenType(). 2022-06-20 10:53:06 +02:00
uuids.h
uxtheme.h include: Add more EnableThemeDialogTexture() option flags. 2021-12-07 12:22:11 +01:00
vdmdbg.h
ver.h
verrsrc.h include: Update __MSABI_LONG definition for WINE_NO_LONG_TYPES support. 2022-02-25 19:02:18 +01:00
vfw.h
vfwmsgs.h
videoacc.idl include: Add videoacc.idl. 2022-04-14 09:28:33 +02:00
virtdisk.h
vmr9.idl
vmrender.idl
vsbackup.idl
vss.idl
vsstyle.h uxtheme: Support parsing more window parts and states. 2022-06-23 10:54:06 +02:00
vssym32.h uxtheme: Support parsing more clock states. 2022-06-21 18:40:25 +02:00
vswriter.idl
wbemcli.idl wbemprox: Implement WbemContext stub. 2021-02-24 10:26:02 +01:00
wbemdisp.idl include: Add WbemErrorEnum error codes. 2022-01-11 15:15:34 +01:00
wbemprov.idl
wct.h include: Add more Wait Chain Traversal definitions. 2022-03-14 18:30:28 +01:00
wdbgexts.h include: Move wdbgexts.h from dbghelp to include. 2022-12-05 20:04:54 +01:00
weakreference.idl include: Add IWeakReference(Source) declaration. 2022-03-02 20:18:10 +01:00
webservices.h webservices: Detect when a message contains a fault in read_envelope_start. 2022-08-05 20:14:41 +02:00
werapi.h
wfext.h
wia.h
wia_lh.idl
wia_xp.idl
wiadef.h
wimgapi.h
winapifamily.h
winbase.h include: Add realtimeapiset.h file. 2023-02-07 17:46:42 +01:00
winber.h include: Remove __WINE_MALLOC from functions that shouldn't have it. 2023-01-30 16:49:55 +01:00
wincodec.idl windowscodecs: Add stub for IWICDdsEncoder. 2021-05-11 20:33:51 +02:00
wincodecsdk.idl
wincon.h
wincontypes.h
wincred.h include: Use proper dllimports for advapi32 functions. 2022-12-07 13:51:37 +01:00
wincrypt.h include: Use proper dllimports for crypt32 functions. 2022-12-07 13:51:37 +01:00
windef.h include: Add support for defining Win32 types as 'long' where possible. 2022-01-27 20:38:22 +01:00
windns.h dnsapi: Build the DNS reply records on the PE side. 2021-11-02 17:09:40 +01:00
windot11.h wlanapi: Add WlanHostedNetworkQueryStatus stub. 2021-08-05 20:43:28 +02:00
windows.devices.enumeration.idl include/windows.devices.enumeration: Define DeviceAccessInformation class. 2022-10-13 10:37:40 +02:00
windows.devices.haptics.idl include: Add Windows.Devices.Haptics.SimpleHapticsController definition. 2022-02-22 18:20:22 +01:00
windows.devices.power.idl include: Add Windows.Devices.Power.IBatteryReport interface definition. 2022-03-07 11:23:42 +01:00
windows.foundation.collections.idl include: Add Windows.Foundation.IAsyncOperationWithProgress<TResult, TProgress> definition. 2023-01-25 18:31:03 +01:00
windows.foundation.idl include: Add Windows.Foundation.Collections.IPropertySet definition. 2023-01-25 18:31:03 +01:00
windows.foundation.metadata.idl include: Add windows.foundation.metadata.idl. 2022-04-22 13:07:43 +02:00
windows.foundation.numerics.idl include: Add Windows.Foundation.Numerics.Vector3 struct declaration. 2022-04-27 22:40:06 +02:00
windows.gaming.input.custom.idl windows.gaming.input: Register Windows.Gaming.Input.Custom classes. 2022-03-02 20:18:00 +01:00
windows.gaming.input.forcefeedback.idl windows.gaming.input: Register Windows.Gaming.Input.ForceFeedback classes. 2022-05-11 11:40:41 +02:00
windows.gaming.input.idl include: Add Windows.Gaming.Input.IGamepad2 interface declaration. 2022-06-08 15:04:56 +02:00
windows.gaming.ui.idl include: Add windows.gaming.ui.idl. 2022-11-04 19:23:56 +01:00
windows.globalization.idl windows.globalization: Implement ILanguage::get_LanguageTag(). 2023-01-24 18:26:57 +01:00
windows.h include: Add sdkddkver.h. 2022-11-07 21:13:31 +01:00
windows.media.closedcaptioning.idl include: Add windows.media.closedcaptioning.idl file. 2022-04-25 15:09:47 +02:00
windows.media.devices.idl windows.media.devices: Stub implement IMediaDeviceStatics. 2021-04-13 18:45:09 +02:00
windows.media.idl include/windows.media.idl: Move IMediaMarker collections from speechsynthesis. 2022-06-14 22:04:55 +02:00
windows.media.speechrecognition.idl include/windows.media.speechrecognition.idl: Add SpeechRecognitionListConstraint class. 2022-03-14 18:30:28 +01:00
windows.media.speechsynthesis.idl include/windows.media.speechsynthesis.idl: Add missing interfaces to SpeechSynthesizerOptions runtimeclass. 2022-08-29 20:04:17 +02:00
windows.security.cryptography.idl include: Add windows.security.cryptography.idl. 2022-09-20 09:28:35 +02:00
windows.storage.streams.idl include: Add Windows.Storage.Streams.Buffer runtimeclass declaration. 2022-04-28 16:14:21 +02:00
windows.system.idl include: Add User(ChangedEventArgs) runtimeclasses in windows.system.idl. 2021-03-19 19:55:34 +01:00
windows.system.power.idl include: Add Windows.Devices.Power.IBatteryReport interface definition. 2022-03-07 11:23:42 +01:00
windows.system.profile.systemmanufacturers.idl include: Add windows.system.profile.systemmanufacturers.idl file. 2023-01-27 13:39:06 +01:00
windows.system.threading.idl include: Add windows.system.threading.idl. 2022-09-20 09:26:08 +02:00
windows.system.userprofile.idl windows.globalization: Implement ILanguage::get_LanguageTag(). 2023-01-24 18:26:57 +01:00
windows.ui.idl include: Add windows.ui.idl file. 2022-04-25 15:09:39 +02:00
windows.ui.viewmanagement.idl include: Add windows.ui.viewmanagement.idl file. 2023-02-10 19:10:44 +01:00
windowscontracts.idl include/windowscontracts: Bump contractversion to 14. 2022-11-21 12:59:49 +01:00
windowsx.h
winerror.h include: Add DirectComposition error codes. 2023-02-20 23:00:33 +01:00
winevt.h wevtapi/tests: Add some EvtGetChannelConfigProperty() tests. 2021-02-03 20:58:42 +01:00
wingdi.h include: Use proper dllimports for gdi32 functions. 2022-12-07 13:51:37 +01:00
winhttp.h include: Use proper dllimports for winhttp functions. 2022-12-07 13:51:37 +01:00
wininet.h include: Use proper dllimports for wininet functions. 2022-12-07 14:16:10 +01:00
winineti.h wininet: Adjust IsHostInProxyBypassList() prototype. 2021-08-03 23:41:05 +02:00
winioctl.h
winldap.h wldap32: Get rid of the WLDAP32_ prefix. 2021-04-19 20:08:48 +02:00
winnetwk.h
winnls.h kernelbase: Create GetGeoInfoEx stub. 2022-11-22 18:27:30 +01:00
winnls32.h
winnt.h winedump: Initial support for dumping PE dynamic relocations. 2023-02-08 12:10:13 +01:00
winnt.rh include: Remove custom/undocumented language identifiers. 2022-11-16 21:24:18 +01:00
winperf.h advapi32: Improve PerfSetCounterSetInfo() stub. 2021-11-22 22:20:51 +01:00
winreg.h advapi32/tests: Add some tests for RegRenameKey(). 2022-06-28 15:39:55 +02:00
winresrc.h
winsafer.h
winscard.h
winsmcrd.h
winsnmp.h
winsock.h include: Use proper dllimports for winsock functions. 2022-12-07 14:25:18 +01:00
winsock2.h include: Use proper dllimports for winsock functions. 2022-12-07 14:25:18 +01:00
winspool.h winspool.drv: Implement OpenPrinter2. 2022-07-15 17:42:53 +02:00
winstring.h
winsvc.h include: Use proper dllimports for advapi32 functions. 2022-12-07 13:51:37 +01:00
winsxs.idl
wintab.h
wintabx.h
winternl.h ntdll: Implement RtlAddressInSectionTable. 2023-02-17 18:59:29 +01:00
wintrust.h wintrust: Load secondary signatures in SoftpubLoadSignature(). 2022-10-11 11:42:41 +02:00
winusb.h include: Add winusb.h file. 2022-09-15 17:45:26 +02:00
winuser.h include: Use proper dllimports for user32 functions. 2022-12-07 13:51:37 +01:00
winuser.rh
winver.h include: Use proper dllimports for version functions. 2022-12-07 13:51:37 +01:00
wlanapi.h include: Annotate WlanAllocateMemory with __WINE_(ALLOC_SIZE|DEALLOC|MALLOC). 2022-12-01 10:24:15 +01:00
wmcodecdsp.idl include: Add more WMV media subtypes to wmcodecdsp.idl. 2022-09-06 21:40:39 +02:00
wmdrmsdk.idl
wmistr.h
wmium.h
wmiutils.idl
wmp.idl include: Add IWMPMedia3 interface to wmp.idl. 2021-01-29 10:16:38 +01:00
wmpids.h include: Add more DISPID constants to wmpids.h. 2021-02-01 11:05:22 +01:00
wmprealestate.idl include: Add IWMPRenderConfig interface to wmprealestate.idl. 2021-02-01 11:04:33 +01:00
wmpservices.idl include: Add WMPGC_FLAGS_SUPPRESS_DIALOGS constant to wmpservices.idl. 2021-02-01 11:05:19 +01:00
wmsbuffer.idl include: Add INSSBuffer3. 2021-10-18 10:46:22 +02:00
wmsdk.h
wmsdkidl.idl winegstreamer: Implement IWMSyncReader::GetNextSample(). 2021-11-01 11:37:14 +01:00
wmsecure.idl include: Add IWMGetSecureChannel. 2021-10-18 10:46:09 +02:00
wnaspi32.h
wofapi.h wofutil: Stub WofShouldCompressBinaries(). 2022-12-08 18:41:25 +01:00
wownt16.h
wownt32.h include: Use WOWHandle32 for HDC_32 on Wine. 2021-08-13 16:36:30 +02:00
wpcapi.idl
ws2def.h ws2_32: Implement AI_DNS_ONLY using DNS APIs. 2021-11-30 22:07:21 +01:00
ws2ipdef.h ws2_32: Add in[46]addr_* constants to import library. 2022-11-14 13:13:02 +01:00
ws2spi.h
ws2tcpip.h include: Forbid using unsuffixed gai_strerror() in the Wine source. 2021-04-27 18:55:24 +02:00
wsdapi.h
wsdbase.idl
wsddisco.idl wsdapi: Add stub for WSDCreateDiscoveryProvider. 2021-12-08 22:14:44 +01:00
wsdtypes.h
wsdutil.h include: Annotate WSDAllocateLinkedMemory with __WINE_(ALLOC_SIZE|MALLOC). 2022-12-07 20:27:25 +01:00
wsdxml.idl
wsdxmldom.h
wshisotp.h
wsipx.h include: Properly define struct sockaddr_ipx when not using the WS_ prefix. 2021-04-27 18:55:24 +02:00
wsnwlink.h
wspiapi.h include: Add wspiapi.h. 2022-11-14 17:38:42 +01:00
wtsapi32.h wtsapi32: Implement WTSEnumerateProcessesW(). 2021-05-26 21:24:52 +02:00
wtypes.idl include: Correct BYTE typedef. 2022-03-04 10:01:29 +01:00
wuapi.idl include/wuapi: Add WindowsUpdateAgentInfo coclass and interface. 2021-08-31 16:04:50 +02:00
x3daudio.h
xact.h include: Add xact2wb.h. 2021-04-20 21:07:09 +02:00
xact2wb.h include: Add xact2wb.h. 2021-04-20 21:07:09 +02:00
xact3.h include: Don't pack XACT_RUNTIME_PARAMETERS structure. 2021-04-23 20:02:06 +02:00
xact3wb.h xactengine: Use nameless unions. 2021-04-23 20:02:06 +02:00
xapo.idl
xapofx.h
xaudio2.idl
xaudio2fx.idl
xcmc.h
xinput.h
xmldom.h
xmldom.idl
xmldomdid.h
xmldso.idl
xmldsodid.h
xmllite.idl xmllite/reader: Implement CreateXmlReaderInputWithEncodingCodePage(). 2022-05-03 18:55:52 +02:00
xpsobjectmodel.idl include: Add some of the XPS OM interfaces. 2021-12-10 14:41:41 +01:00
xpsobjectmodel_1.idl include: Add some of the XPS OM interfaces. 2021-12-10 14:41:41 +01:00
zmouse.h