Module: wine Branch: master Commit: e1d14d2665be5615cad7db519ef3cc2dd067cc8f URL: http://source.winehq.org/git/wine.git/?a=commit;h=e1d14d2665be5615cad7db519e...
Author: Zebediah Figura z.figura12@gmail.com Date: Mon Jun 19 14:15:31 2017 -0500
quartz: Restore a comment explaining mediatime.
Signed-off-by: Zebediah Figura z.figura12@gmail.com Signed-off-by: Andrew Eikum aeikum@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/quartz/quartz_private.h | 1 + 1 file changed, 1 insertion(+)
diff --git a/dlls/quartz/quartz_private.h b/dlls/quartz/quartz_private.h index 7cad3a7..a9855e9 100644 --- a/dlls/quartz/quartz_private.h +++ b/dlls/quartz/quartz_private.h @@ -33,6 +33,7 @@ #include "wine/strmbase.h" #include "wine/list.h"
+/* see IAsyncReader::Request on MSDN for the explanation of this */ #define MEDIATIME_FROM_BYTES(x) ((LONGLONG)(x) * 10000000) #define SEC_FROM_MEDIATIME(time) ((time) / 10000000) #define BYTES_FROM_MEDIATIME(time) SEC_FROM_MEDIATIME(time)