.\" Generated by the Allegro makedoc utility .TH override_config_data 3alleg4 "version 4.4.2" "Allegro" "Allegro manual" .SH NAME override_config_data \- Specifies a block of data containing config overrides. Allegro game programming library.\& .SH SYNOPSIS .B #include .sp .B void override_config_data(const char *data, int length); .SH DESCRIPTION Version of override_config_file() which uses a block of data that has already been read into memory. The length of the block has to be specified in bytes. Example: .nf /* Force German as system language, Spanish keyboard map. */ const char *override_data = "[system]\\n" "language=DE\\n" "keyboard=ES"; override_config_data(override_data, ustrsize(override_data)); .fi Note that this function and override_config_file() are mutually exclusive, i.e. calling one will cancel the effects of the other. .SH SEE ALSO .BR override_config_file (3alleg4), .BR set_config_data (3alleg4)