cliprect.h

来自「在ecos 下mingui 的移植开发」· C头文件 代码 · 共 42 行

H
42
字号
//// $Id: cliprect.h,v 1.2 2000/06/19 01:54:15 weiym Exp $//// cliprect.h: the head file of Clip Rect module.// // Copyright (c) 1999, Wei Yongming.//// Create date: 1999/3/26//#ifndef GUI_CLIPRECT_H    #define GUI_CLIPRECT_H#ifdef __cplusplusextern "C" {#endif  /* __cplusplus */typedef struct tagGCRINFO{    pthread_mutex_t lock;    CLIPRGN         crgn;    int             age;}GCRINFO;typedef GCRINFO* PGCRINFO;typedef struct tagINVRGN{    pthread_mutex_t lock;    CLIPRGN         rgn;}INVRGN;typedef INVRGN* PINVRGN;/* Function definitions */#ifdef __cplusplus}#endif  /* __cplusplus */#endif  /* GUI_CLIPRECT_H */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?