// =======================================
// Olly File Translator 1.0 by ThunderPwr
// 08/06/2005 1.04.59
// Translating file utility
// =======================================
 
#define IMAXINDEXINJ 18// Patch size

// ---------------------------------------------------------------------------------------------------
// Definition about the addresses where to apply the patches.
// ---------------------------------------------------------------------------------------------------
DWORD dwPatchaddrInj[IMAXINDEXINJ] = {  0x0045BFD4, 0x0045BFD5, 0x0045BFD6, 0x0045BFD7,
                                        0x0045BFD8, 0x0045BFD9, 0x0045BFDA, 0x0045BFDB,
                                        0x0045BFDC, 0x0045BFDD, 0x0045BFDE, 0x0045BFDF,
                                        0x0045BFE0, 0x0045BFE1, 0x0045BFE2, 0x0045BFE3,
                                        0x0045BFE4, 0x0045BFE5 };
// ---------------------------------------------------------------------------------------------------
// Definition about the patching value
// ---------------------------------------------------------------------------------------------------
int iPatchDataInj[IMAXINDEXINJ] ={  0x89, 0x44, 0x24, 0x08,
                                    0xA3, 0x80, 0x82, 0x4B,
                                    0x00, 0xA3, 0x84, 0x82,
                                    0x4B, 0x00, 0x90, 0xC2,
                                    0x08, 0x00 };
