From 39fd8497a66aa9f78a18c8684181128361612c6f Mon Sep 17 00:00:00 2001 From: David 'Digit' Turner Date: Mon, 7 Dec 2009 16:44:47 -0800 Subject: Add two documentation files describing the format of config and skin files. --- android/utils/ini.h | 32 +------------------------------- 1 file changed, 1 insertion(+), 31 deletions(-) (limited to 'android/utils') diff --git a/android/utils/ini.h b/android/utils/ini.h index a176bfe..83d2027 100644 --- a/android/utils/ini.h +++ b/android/utils/ini.h @@ -15,37 +15,7 @@ #include /* the emulator supports a simple .ini file format for its configuration - * files. Here's the BNF for it: - * - * file := * - * line := | | - * comment := (';'|'#') * - * assignment := * * '=' * * - * keyName := * - * keyNameStartChar := [A-Za-z_] - * keyNameChar := [A-Za-z0-9_.-] - * valueString := * - * space := ' ' | '\t' - * LF := '\r\n' | '\n' | '\r' - * noLF := [^] - * - * Or, in English: - * - * - no support for sections - * - empty lines are ignored, as well as lines beginning with ';' or '#' - * - lines must be of the form: " = " - * - key names must start with a letter or an underscore - * - other key name characters can be letters, digits, underscores, dots or dashes - * - * - leading and trailing space are allowed and ignored before/after the key name - * and before/after the value - * - * - there is no restriction on the value, except that it can't contain - * leading/trailing space/tab characters or newline/charfeed characters - * - * - empty values are possible, and will be stored as an empty string. - * - any badly formatted line is discarded (and will print a warning) - * + * files. See docs/ANDROID-CONFIG-FILES.TXT for details. */ /* an opaque structure used to model an .ini configuration file */ -- cgit v1.1