comparison src/gui_dwrite.cpp @ 6120:f62b2e76dd80 v7.4.398

updated for version 7.4.398 Problem: Gcc error for the argument of InterlockedIncrement() and InterlockedDecrement(). (Axel Bender) Solution: Remove "unsigned" from the cRefCount_ declaration.
author Bram Moolenaar <bram@vim.org>
date Thu, 07 Aug 2014 13:55:10 +0200
parents 1bff71d20262
children 567e027a3ea1
comparison
equal deleted inserted replaced
6119:2a798dca16bf 6120:f62b2e76dd80
375 375
376 return S_OK; 376 return S_OK;
377 } 377 }
378 378
379 private: 379 private:
380 unsigned long cRefCount_; 380 long cRefCount_;
381 IDWriteBitmapRenderTarget* pRenderTarget_; 381 IDWriteBitmapRenderTarget* pRenderTarget_;
382 IDWriteRenderingParams* pRenderingParams_; 382 IDWriteRenderingParams* pRenderingParams_;
383 }; 383 };
384 384
385 struct DWriteContext { 385 struct DWriteContext {