Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2020
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.33 KB | None | 0 0
  1. //#pragma once
  2. #ifndef UNICODE
  3. #define UNICODE
  4. #endif
  5.  
  6. #include <Windows.h>
  7. #include <d2d1.h>
  8. #include <dwrite.h>
  9.  
  10. IDWriteFactory* pDWriteFactory_;
  11. IDWriteTextFormat* pTextFormat_;
  12.  
  13. const wchar_t* wszText_;
  14. UINT32 cTextLength_;
  15.  
  16. ID2D1Factory* pD2DFactory_;
  17. ID2D1HwndRenderTarget* pRT_;
  18. ID2D1SolidColorBrush* pBlackBrush_;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement