FontGlyphRangesBuilderWrapper.h 678 B

123456789101112131415161718192021
  1. #pragma once
  2. #include "imguiWrapperTypes.h"
  3. #ifdef __cplusplus
  4. extern "C"
  5. {
  6. #endif
  7. extern IggGlyphRanges IggNewGlyphRanges();
  8. extern IggGlyphRanges IggGlyphRangesData(IggGlyphRanges handle);
  9. extern IggFontGlyphRangesBuilder IggNewFontGlyphRangesBuilder();
  10. extern void IggFontGlyphRangesBuilderClear(IggFontGlyphRangesBuilder handle);
  11. extern void IggFontGlyphRangesBuilderAddRanges(IggFontGlyphRangesBuilder handle, IggGlyphRanges ranges);
  12. extern void IggFontGlyphRangesBuilderAddText(IggFontGlyphRangesBuilder handle, const char* text);
  13. extern void IggFontGlyphRangesBuilderBuildRanges(IggFontGlyphRangesBuilder handle, IggGlyphRanges ranges);
  14. #ifdef __cplusplus
  15. }
  16. #endif