GPPSA = Win32API.new('kernel32', 'GetPrivateProfileStringA', 'PPPPLP', 'L')
FindWindowA = Win32API.new('user32', 'FindWindowA', 'pp', 'l')
SetWindowLong = Win32API.new('user32', 'SetWindowLong', 'LLL', 'L')
title = "\0" * 255
GPPSA.call('Game', 'Title', '', title, 255, '.\\Game.ini')
title.delete!("\0")
hwnd = FindWindowA.call('RGSS Player', title)
SetWindowLong.call(hwnd, -16, 0x20000000)