| 5860 | } |
| 5861 | |
| 5862 | int AddBitmap(int nNumButtons, UINT nBitmapID) |
| 5863 | { |
| 5864 | ATLASSERT(::IsWindow(m_hWnd)); |
| 5865 | TBADDBITMAP tbab = { 0 }; |
| 5866 | tbab.hInst = ModuleHelper::GetResourceInstance(); |
| 5867 | ATLASSERT(tbab.hInst != NULL); |
| 5868 | tbab.nID = nBitmapID; |
| 5869 | return (int)::SendMessage(m_hWnd, TB_ADDBITMAP, (WPARAM)nNumButtons, (LPARAM)&tbab); |
| 5870 | } |
| 5871 | |
| 5872 | int AddBitmap(int nNumButtons, HBITMAP hBitmap) |
| 5873 | { |
nothing calls this directly
no test coverage detected