smartcache.h
上传用户:hhs829
上传日期:2022-06-17
资源大小:586k
文件大小:1k
源码类别:

DirextX编程

开发平台:

Visual C++

  1. //
  2. // smartcache.h
  3. //
  4. #ifndef __H_smartcache__
  5. #define __H_smartcache__
  6. long InitSmartCache(void);
  7. void ReleaseSmartCache(void);
  8. long ReceiveToSmartCache(unsigned char * inData, long inLength);
  9. long FetchDataFromSmartCache(BYTE * outBuffer, ULONG inLength);
  10. void BeginFlushSmartCache(void);
  11. void EndFlushSmartCache(void);
  12. long GetAvailableInSmartCache(void);
  13. BOOL CheckInputWaiting(void);
  14. BOOL CheckOutputWaiting(void);
  15. void SetCacheChecking(void);
  16. void ResetCacheChecking(void);
  17. #endif // __H_smartcache__