# File lib/ruby-sdl-ffi/ttf.rb, line 153
    def self.SizeUNICODE( font, text )
      w = FFI::Buffer.new( :int )
      h = FFI::Buffer.new( :int )
      __SizeUNICODE( font, text, w, h )
      return [w.get_int(0),h.get_int(0)]
    end