cliprect.h
来自「libminigui-1.3.0.tar.gz。 miniGUI的库函数源代码」· C头文件 代码 · 共 48 行
H
48 行
/*** $Id: cliprect.h,v 1.6 2003/08/12 07:46:18 weiym Exp $**** cliprect.h: the head file of Clip Rect module.** ** Copyright (C) 2003 Feynman Software.** Copyright (C) 1999 ~ 2002 Wei Yongming.**** Create date: 1999/3/26*/#ifndef GUI_CLIPRECT_H #define GUI_CLIPRECT_H#ifdef __cplusplusextern "C" {#endif /* __cplusplus */typedef struct tagGCRINFO{#ifndef _LITE_VERSION pthread_mutex_t lock;#endif CLIPRGN crgn; int age;} GCRINFO;typedef GCRINFO* PGCRINFO;typedef struct tagINVRGN{#ifndef _LITE_VERSION pthread_mutex_t lock;#endif CLIPRGN rgn; int frozen;} INVRGN;typedef INVRGN* PINVRGN;/* Function definitions */#ifdef __cplusplus}#endif /* __cplusplus */#endif /* GUI_CLIPRECT_H */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?