| 7 | } |
| 8 | |
| 9 | void CNodeInt32::Update( const PHOTSPOT Spot ) |
| 10 | { |
| 11 | __int32 Int32Value; |
| 12 | |
| 13 | StandardUpdate( Spot ); |
| 14 | |
| 15 | Int32Value = _ttoi( Spot->Text.GetString( ) ); |
| 16 | if (Spot->Id == 0) |
| 17 | ReClassWriteMemory( (LPVOID)Spot->Address, &Int32Value, sizeof( long ) ); |
| 18 | } |
| 19 | |
| 20 | NODESIZE CNodeInt32::Draw( const PVIEWINFO View, int x, int y ) |
| 21 | { |
nothing calls this directly
no test coverage detected