* reinterpret_cast ( 0x969152 ) = 1 ;
template void writeMem ( uintptr_t address , T value , bool unprotect = false ) { DWORD old_protection ; auto address_ = reinterpret_cast ( address ) ; if ( unprotect ) VirtualProtect ( address_ , sizeof ( value ) , PAGE_EXECUTE_READWRITE , & old_protection ) ; memcpy ( & value , address_ , sizeof ( value ) ) ; if ( unprotect ) VirtualProtect ( address_ , sizeof ( value ) , old_protection , & old_protection ) ; }