|
hOurDlg,
IDD_SENT, (LPSTR) prbuf);
}
/* end while */
time(&end);
if (total_time = (long) difftime(end, start)) {
/*
Print the statistics gathered */
wsprintf((LPSTR)prbuf,"%ld\n",total_time);
SetDlgItemText(hOurDlg,
IDD_TIME, (LPSTR) prbuf);
ltemp
= write_count/total_time;
wsprintf((LPSTR)prbuf,"%ld\n",
ltemp);
SetDlgItemText(hOurDlg,
IDD_WRITES,(LPSTR) prbuf);
ltemp
= bytes_sent/total_time;
wsprintf((LPSTR)prbuf,"%ld\n",
ltemp);
SetDlgItemText(hOurDlg,
IDD_BYTES, |