interface:
type
  //进度类型
  TProType = (ptLabel, ptPos, ptMax, ptLabelPos, ptLabelMax);  //返回进度信息
  TOnProcess = procedure(isCurPro: Boolean; AType: TProType; AValue: Integer; ALabel: String) of Object;
其中
 procedure MS_SetProcess(AOnProcess: TOnProcess); external DLLNAME;
这个回调函数是用来显示dll内部进度的。
其中 的参数中有一个结构体变量TProType 和一个string的类型我如何在vc中使用相应的数据类型,以便使用vc去调用这个dll。急用啊
望各位大侠赐教