- 积分
- 644
- 明经币
- 个
- 注册时间
- 2002-10-3
- 在线时间
- 小时
- 威望
-
- 金钱
- 个
- 贡献
-
- 激情
-
|
struct resbuf rb, rb1,rb2,rb3; acedGetVar("ANGDIR", &rb); rb1.restype = RTSHORT; rb1.resval.rint =1; if (acedSetVar("ANGDIR", &rb1) != RTNORM) { acedAlert("设置系统变量ANGDIR时出错"); return ; // Setvar failed. } acedGetVar("ANGBASE", &rb2); rb3.restype = RTREAL; rb3.resval.rint = 270.0; if (acedSetVar("ANGBASE", &rb3) != RTNORM) { acedAlert("设置系统变量ANGBASE时出错"); return ; // Setvar failed. } |
|