commStruct.h
上传用户:easylife05
上传日期:2007-02-14
资源大小:393k
文件大小:0k
源码类别:

PlugIns编程

开发平台:

Visual C++

  1. //commstruct.h
  2. //--------------------------------------
  3. struct _myGraph
  4. {
  5. int mWidth; //线的宽度
  6. unsigned long mRed,mGreen,mBlue;//线的颜色
  7. long x, y;     //对于圆来说,为圆心点
  8. int mRate; //{1,2,3}三种比率
  9. struct _myGraph * next;  //链接指针
  10. };
  11. typedef struct _myGraph  myGraph;