Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/SubPic/ISubRender.h')
-rw-r--r--src/SubPic/ISubRender.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/SubPic/ISubRender.h b/src/SubPic/ISubRender.h
index 9a684056a..ad71f59e2 100644
--- a/src/SubPic/ISubRender.h
+++ b/src/SubPic/ISubRender.h
@@ -1,6 +1,6 @@
/*
* (C) 2003-2006 Gabest
- * (C) 2006-2012 see Authors.txt
+ * (C) 2006-2013 see Authors.txt
*
* This file is part of MPC-HC.
*
@@ -27,13 +27,13 @@ interface __declspec(uuid("CD6D2AA5-20D3-4ebe-A8A9-34D3B00CC253"))
ISubRenderCallback :
public IUnknown {
// NULL means release current device, textures and other resources
- STDMETHOD(SetDevice)(IDirect3DDevice9 * dev) = 0;
+ STDMETHOD(SetDevice)(IDirect3DDevice9 * dev) PURE;
// destination video rectangle, will be inside (0, 0)-(width, height)
// width,height is the size of the entire output window
STDMETHOD(Render)(REFERENCE_TIME rtStart,
int left, int top, int bottom, int right,
- int width, int height) = 0;
+ int width, int height) PURE;
};
interface __declspec(uuid("E602585E-C05A-4828-AC69-AF92997F2E0C"))
@@ -42,11 +42,11 @@ public ISubRenderCallback {
STDMETHOD(RenderEx)(REFERENCE_TIME rtStart, REFERENCE_TIME rtStop,
REFERENCE_TIME AvgTimePerFrame,
int left, int top, int right, int bottom,
- int width, int height) = 0;
+ int width, int height) PURE;
};
interface __declspec(uuid("9CC7F9F7-3ED1-493c-AF65-527EA1D9947F"))
ISubRender :
public IUnknown {
- STDMETHOD(SetCallback)(ISubRenderCallback * cb) = 0;
+ STDMETHOD(SetCallback)(ISubRenderCallback * cb) PURE;
};