|
本帖最后由 nsc 于 2021-12-3 15:41 编辑
使用winAPi函数遇到UINT数据类型,请问当有多个值的时候怎么写赋值语句?
例如:
typedef struct _LVCOLUMN { UINT mask; int fmt; int cx; LPTSTR pszText; int cchTextMax; int iSubItem; int iOrder; int iImage;} LVCOLUMN;
LVCOLUMN lvc;
lvc.mask=LVCF_TEXT | LVCF_WIDTH;
在Fortran 怎么写
type(T_LVCOLUMN) lvc;
lvc%mask=??????????
|
|