ListClipper.h 544 B

123456789101112131415161718192021
  1. #pragma once
  2. #include "imguiWrapperTypes.h"
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. extern IggListClipper iggNewListClipper();
  7. extern int iggListClipperDisplayStart(IggListClipper handle);
  8. extern int iggListClipperDisplayEnd(IggListClipper handle);
  9. extern void iggListClipperDelete(IggListClipper handle);
  10. extern IggBool iggListClipperStep(IggListClipper handle);
  11. extern void iggListClipperBegin(IggListClipper handle, int items_count, float items_height);
  12. extern void iggListClipperEnd(IggListClipper handle);
  13. #ifdef __cplusplus
  14. }
  15. #endif