| 14 | }; |
| 15 | |
| 16 | CNodeFunctionPtr::CNodeFunctionPtr( ) |
| 17 | : m_pAssemblyWindow( NULL ) |
| 18 | , m_pParentWindow( NULL ) |
| 19 | , m_nLines( 0 ) |
| 20 | , m_nLongestLine( 0 ) |
| 21 | , m_iWidth( 0 ) |
| 22 | , m_iHeight( 0 ) |
| 23 | , m_bRedrawNeeded( FALSE ) |
| 24 | { |
| 25 | m_nodeType = nt_functionptr; |
| 26 | m_strName = _T( "" ); |
| 27 | } |
| 28 | |
| 29 | CNodeFunctionPtr::CNodeFunctionPtr( CWnd* pParentWindow, ULONG_PTR Address ) |
| 30 | : CNodeFunctionPtr( ) |
nothing calls this directly
no outgoing calls
no test coverage detected