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