// =======================================
// Olly File Translator 1.0 by ThunderPwr
// 08/06/2006 1.25.37
// Translating file utility
// =======================================
 
#define IMAXINDEXINJ 20// Patch size

// ---------------------------------------------------------------------------------------------------
// Definition about the addresses where to apply the patches.
// ---------------------------------------------------------------------------------------------------
DWORD dwPatchaddrInj[IMAXINDEXINJ] = {  0x0045C09B, 0x0045C09C, 0x0045C09D, 0x0045C09E,
                                        0x0045C09F, 0x0045C0A0, 0x0045C0A1, 0x0045C0A2,
                                        0x0045C0A3, 0x0045C0A4, 0x0045C0A5, 0x0045C0A6,
                                        0x0045C0A7, 0x0045C0A8, 0x0045C0A9, 0x0045C0AA,
                                        0x0045C0AB, 0x0045C0AC, 0x0045C0AD, 0x0045C0AE
                                        };
// ---------------------------------------------------------------------------------------------------
// Definition about the patching value
// ---------------------------------------------------------------------------------------------------
int iPatchDataInj[IMAXINDEXINJ] ={  0x90, 0x90, 0x90, 0x90,
                                    0x90, 0xB8, 0x01, 0x00,
                                    0x00, 0x00, 0x90, 0x90,
                                    0x90, 0x90, 0x90, 0x90,
                                    0x90, 0x90, 0x90, 0x90
                                    };
