============================================================================= StatusSetText()
| 722 | // StatusSetText() |
| 723 | // |
| 724 | BOOL StatusSetText ( HWND hwnd, UINT nPart, LPCWSTR lpszText ) |
| 725 | { |
| 726 | UINT uFlags = ( nPart == 255 ) ? nPart | SBT_NOBORDERS : nPart; |
| 727 | return ( BOOL ) SendMessage ( hwnd, SB_SETTEXT, uFlags, ( LPARAM ) lpszText ); |
| 728 | } |
| 729 | |
| 730 | |
| 731 | //============================================================================= |
no outgoing calls
no test coverage detected