Commit d9f75587 authored by Chris Robinson's avatar Chris Robinson Committed by Alexandre Julliard

quartz: Fix ALIGN macros.

parent 955ba73e
...@@ -34,8 +34,8 @@ static const IPinVtbl OutputPin_Vtbl; ...@@ -34,8 +34,8 @@ static const IPinVtbl OutputPin_Vtbl;
static const IMemInputPinVtbl MemInputPin_Vtbl; static const IMemInputPinVtbl MemInputPin_Vtbl;
static const IPinVtbl PullPin_Vtbl; static const IPinVtbl PullPin_Vtbl;
#define ALIGNDOWN(value,boundary) ((value) & ~(boundary-1)) #define ALIGNDOWN(value,boundary) ((value)/(boundary)*(boundary))
#define ALIGNUP(value,boundary) (ALIGNDOWN(value - 1, boundary) + boundary) #define ALIGNUP(value,boundary) (ALIGNDOWN((value)+(boundary)-1, (boundary)))
static inline InputPin *impl_from_IMemInputPin( IMemInputPin *iface ) static inline InputPin *impl_from_IMemInputPin( IMemInputPin *iface )
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment