| 12 | namespace debugviewpp { |
| 13 | |
| 14 | std::wstring GetGridItemText(const CPropertyGridCtrl& grid, int iItem, int iSubItem) |
| 15 | { |
| 16 | const int BufSize = 1024; |
| 17 | wchar_t buf[BufSize]; |
| 18 | if (grid.GetItemText(iItem, iSubItem, buf, BufSize)) |
| 19 | return buf; |
| 20 | return L""; |
| 21 | } |
| 22 | |
| 23 | } // namespace debugviewpp |
| 24 | } // namespace fusion |
no test coverage detected