# File lib/win32/mc.rb, line 17 def initialize(mc_file, res_file=nil, dll_file=nil) @mc_file = mc_file if res_file @res_file = res_file else @res_file = File.basename(mc_file, '.mc') + '.res' end if dll_file @dll_file = dll_file else @dll_file = File.basename(mc_file, '.mc') + '.dll' end end