1
0

dc_client.h 758 B

123456789101112131415161718192021222324252627
  1. /*
  2. * File : dc_buffer.h
  3. * This file is part of RT-Thread RTOS
  4. * COPYRIGHT (C) 2006 - 2010, RT-Thread Development Team
  5. *
  6. * The license and distribution terms for this file may be
  7. * found in the file LICENSE in this distribution or at
  8. * http://www.rt-thread.org/license/LICENSE
  9. *
  10. * Change Logs:
  11. * Date Author Notes
  12. * 2010-04-10 Bernard first version
  13. * 2010-06-14 Bernard embedded hardware dc to each widget
  14. * 2010-08-09 Bernard rename hardware dc to client dc
  15. */
  16. #ifndef __RTGUI_DC_CLIENT_H__
  17. #define __RTGUI_DC_CLIENT_H__
  18. #include <rtgui/dc.h>
  19. /* create a hardware dc */
  20. struct rtgui_dc *rtgui_dc_client_create(rtgui_widget_t *owner);
  21. void rtgui_dc_client_init(rtgui_widget_t *owner);
  22. #endif