English
首页
论坛
博客
多用户博客
在线工具
在线手册
开通博客赚积分
发布资源赚积分
分类
源码开发语言/平台
当前位置:
首页
> 源码/资料 >
Internet/网络编程
>
PlugIns编程
> 查看源码
commStruct.h
资源名称:
PluginDemo.zip [点击查看]
上传用户:
easylife05
上传日期:
2007-02-14
资源大小:
393k
文件大小:
0k
源码类别:
PlugIns编程
开发平台:
Visual C++
commStruct.h:源码内容
//commstruct.h
//--------------------------------------
struct _myGraph
{
int mWidth; //线的宽度
unsigned long mRed,mGreen,mBlue;//线的颜色
long x, y; //对于圆来说,为圆心点
int mRate; //{1,2,3}三种比率
struct _myGraph * next; //链接指针
};
typedef struct _myGraph myGraph;