#define MAX_VERSTR (128 + 4) typedef struct { int top,mid,bottom; int bNormal; int reserved; char ver[MAX_VERSTR]; } SCVER,*PSCVER;
メンバ | 内容 |
top mid bottom |
バージョン番号の各数値が格納されます。バージョン番号は左から順に top 、mid 、bottom となります。 例えば、バージョン番号を a . b . c とした場合、top = a 、mid = b 、bottom = c となります。また、a . b の場合は、top = a 、mid = b 、bottom = 0 となります。 |
bNormal | lib\normal フォルダに入っていた DLL の場合は 1 、lib\oldWin フォルダに入っていた DLL の場合は 0 が格納されます。 64 bit 版の場合は 1 が格納されます。 |
reserved | (予約) |
ver | 128 文字以下のバージョン情報文字列(末尾ヌル)が格納されます。 |