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