CMMemoryPool.inc 898 B

1234567891011121314151617181920212223242526
  1. { Parsed from CoreMedia.framework CMMemoryPool.h }
  2. {$ifndef CMMEMORYPOOL_H}
  3. {$ifdef TYPES}
  4. type
  5. CMMemoryPoolRef = OpaqueType;
  6. {$endif}
  7. {$ifdef FUNCTIONS}
  8. function CMMemoryPoolGetTypeID: CFTypeID; cdecl; external; { available starting in __MAC_10_8, __IPHONE_6_0 }
  9. {$endif}
  10. {$ifdef EXTERNAL_SYMBOLS}
  11. var
  12. kCMMemoryPoolOption_AgeOutPeriod: CFStringRef; cvar; external;
  13. {$endif}
  14. {$ifdef FUNCTIONS}
  15. function CMMemoryPoolCreate(options: CFDictionaryRef): CMMemoryPoolRef; cdecl; external;
  16. function CMMemoryPoolGetAllocator(pool: CMMemoryPoolRef): CFAllocatorRef; cdecl; external; { available starting in __MAC_10_8, __IPHONE_6_0 }
  17. procedure CMMemoryPoolFlush(pool: CMMemoryPoolRef); cdecl; external; { available starting in __MAC_10_8, __IPHONE_6_0 }
  18. procedure CMMemoryPoolInvalidate(pool: CMMemoryPoolRef); cdecl; external; { available starting in __MAC_10_8, __IPHONE_6_0 }
  19. {$endif}
  20. {$endif}