求助!QNX代码和Help里面几句英文不明白

以下几句英文是什么意思?不明白ABN_和ABW_在程序中起什么作用?
1-------The global variable,which has the prefix ABN_,represents the widget’s name.The manifest,which has the prefix ABW_,represents

the widget’s instance pointer.
2--------int
aboutdlg_setup( PtWidget_t *link_instance,
ApInfo_t *apinfo,
PtCallbackInfo_t *cbinfo )
{
link_instance = link_instance,
apinfo = apinfo,
cbinfo = cbinfo;
return( Pt_CONTINUE );
}
to the following:
int
aboutdlg_setup( PtWidget_t *link_instance,
ApInfo_t *apinfo,
PtCallbackInfo_t *cbinfo )//这里的参数是什么意思?link_instance,apinfo,cbinfo,他们是干什么用的?程序上也用不上.不明白.
{
link_instance = link_instance, apinfo = apinfo,
cbinfo = cbinfo;
PtSetResource( ABW_about_version, Pt_ARG_TEXT_STRING,
“1.00”, 0);////PtSetResource是起什么作用?是什么函数?
return( Pt_CONTINUE );
}

3-------谢谢wsforever!
请问,Callback里面好多的事件,如Arm,Disarm,Repeat等等…但我却不知道他们是做什么用的?可以分别介绍一下吗?或者哪里有这方面的书可以参考一下?

4--------
上面代码中的 Pt_ARG_TEXT_STRING又是干什么的?什么意思?ABW_about_version是干什么的?什么意思?

以下几句英文是什么意思?不明白ABN_和ABW_在程序中起什么作用?
1-------The global variable,which has the prefix ABN_,represents the widget’s name.The manifest,which has the prefix ABW_,represents
ABN_:控件的名字
ABW_:指向控件的指针,可以通过它访问该控件。
the widget’s instance pointer.
2--------int
aboutdlg_setup( PtWidget_t *link_instance,
ApInfo_t *apinfo,
PtCallbackInfo_t *cbinfo )
{
link_instance = link_instance,
apinfo = apinfo,
cbinfo = cbinfo;
return( Pt_CONTINUE );
}
to the following:
int
aboutdlg_setup( PtWidget_t *link_instance,
ApInfo_t *apinfo,
PtCallbackInfo_t *cbinfo )//这里的参数是什么意思?link_instance,apinfo,cbinfo,他们是干什么用的?程序上也用不上.不明白.
{
link_instance = link_instance, apinfo = apinfo,
cbinfo = cbinfo;
PtSetResource( ABW_about_version, Pt_ARG_TEXT_STRING,
“1.00”, 0);////PtSetResource是起什么作用?是什么函数?
return( Pt_CONTINUE );
}

它们是程序框架所需要的吧,你现在可以不去管它们。等你熟悉了也可以从中得到一些有用的信息。
PtSetResource:是资源设置程序,这句话的作用就是设置控件ABW_about_version所显示的字符串是"1.00"。

3------
参照:Photon Programmer’s Guide
Photon Library Reference
Widget Reference 这部分帮助即可找到全部的答案。感觉你还没有学会利用帮助。



4--------
上面代码中的 Pt_ARG_TEXT_STRING又是干什么的?什么意思?ABW_about_version是干什么的?什么意思?
参见前面的解释。