Line | Code | Value | Export IDENTIFIER |
36 | return(_stscanf(s, _T("%f"), &f) == 1); | %f | |
42 | s.Format(_T("%.4f"), d); | %.4f | |
52 | return(_stscanf(s, _T("%f"), &f) == 1 ? f : 0); | %f | |
118 | return(_stscanf(s, _T("%x"), &dw) == 1); | %x | |
124 | s.Format(_T("%08x"), dw); | %08x | |
134 | return(_stscanf(s, _T("%x"), &dw) == 1 ? dw : 0); | %x | |
| | | |