Note that if you're using DWORD (and you could just as easily use "unsigned int" instead) you probably want "%lu" rather than casting to int.
Yeah, I was a little confused if there's a format specification convention used by Wine for unsigned type variables used for storing size. Except for `%#Ix` used to `SIZE_T`, I could only see `ULONG`s being cast to int and then being printed with `%d`, so that's what I went with to be safe. But yeah, `%lu` makes more sense.