============================================================================= DeleteBitmapButton()
| 708 | // DeleteBitmapButton() |
| 709 | // |
| 710 | void DeleteBitmapButton ( HWND hwnd, int nCtlId ) |
| 711 | { |
| 712 | HWND hwndCtl = GetDlgItem ( hwnd, nCtlId ); |
| 713 | BUTTON_IMAGELIST bi; |
| 714 | if ( SendMessage ( hwndCtl, BCM_GETIMAGELIST, 0, ( LPARAM ) &bi ) ) { |
| 715 | ImageList_Destroy ( bi.himl ); |
| 716 | } |
| 717 | } |
| 718 | |
| 719 | |
| 720 | //============================================================================= |
no outgoing calls
no test coverage detected