note
	description: "This file has been generated by WrapC. Do not edit. Changes will be lost!"
	generator: "Eiffel Wrapper Generator"

class 
	SDL_HINTS_FUNCTIONS_API

create 
	default_create

feature -- Access

	sdl_set_hint_with_priority (name: STRING_8; value: STRING_8; priority: INTEGER_32): INTEGER_32
		local
			name_c_string: C_STRING
			value_c_string: C_STRING
		do
			create name_c_string.make (name)
			create value_c_string.make (value)
			Result := c_sdl_set_hint_with_priority (name_c_string.item, value_c_string.item, priority)
		ensure
			instance_free: class
		end

	sdl_set_hint (name: POINTER; value: POINTER): INTEGER_32
		external
			"C inline use <SDL.h>"
		alias
			"[
				return SDL_SetHint ((char const*)$name, (char const*)$value);
			]"
		end
	
feature -- Externals

	c_sdl_set_hint_with_priority (name: POINTER; value: POINTER; priority: INTEGER_32): INTEGER_32
		external
			"C inline use <SDL.h>"
		alias
			"[
				return SDL_SetHintWithPriority ((char const*)$name, (char const*)$value, (SDL_HintPriority)$priority);
			]"
		end
	
end -- class SDL_HINTS_FUNCTIONS_API

Generated by ISE EiffelStudio