Home | History | Annotate | Download | only in Control

Lines Matching refs:len

21   LRESULT len = GetLBTextLen(index); // length, excluding the terminating null character

22 if (len == CB_ERR)
23 return len;
24 LRESULT len2 = GetLBText(index, s.GetBuf((unsigned)len));
26 return len;
27 if (len > len2)
28 len = len2;
29 s.ReleaseBuf_CalcLen((unsigned)len);
30 return len;
46 LRESULT len = SendMsgW(CB_GETLBTEXTLEN, index, 0);
47 if (len == CB_ERR)
48 return len;
49 LRESULT len2 = SendMsgW(CB_GETLBTEXT, index, (LPARAM)s.GetBuf((unsigned)len));
51 return len;
52 if (len > len2)
53 len = len2;
54 s.ReleaseBuf_CalcLen((unsigned)len);
55 return len;
58 LRESULT len = GetLBText(index, sa);
59 if (len == CB_ERR)
60 return len;
62 return s.Len();