Module: wine Branch: master Commit: 80ebe35aa7e9249fea86ec165163d5bdaa04318d URL: http://source.winehq.org/git/wine.git/?a=commit;h=80ebe35aa7e9249fea86ec1651...
Author: Jacek Caban jacek@codeweavers.com Date: Tue Jul 17 10:37:58 2012 +0200
d3drmdef.h: Replace unsigned long by ULONG.
---
include/d3drmdef.h | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/include/d3drmdef.h b/include/d3drmdef.h index e83869f..ab9f02d 100644 --- a/include/d3drmdef.h +++ b/include/d3drmdef.h @@ -154,10 +154,10 @@ typedef struct _D3DRMIMAGE { int bytes_per_line; void* buffer1; void* buffer2; - unsigned long red_mask; - unsigned long green_mask; - unsigned long blue_mask; - unsigned long alpha_mask; + ULONG red_mask; + ULONG green_mask; + ULONG blue_mask; + ULONG alpha_mask; int palette_size; D3DRMPALETTEENTRY* palette; } D3DRMIMAGE, *LPD3DRMIMAGE;