Broadcast Tools ADMS 44.22 Manual de servicio Pagina 325

  • Descarga
  • Añadir a mis manuales
  • Imprimir
  • Pagina
    / 362
  • Tabla de contenidos
  • SOLUCIÓN DE PROBLEMAS
  • MARCADORES
  • Valorado. / 5. Basado en revisión del cliente
Vista de pagina 324
Appendices 325
© Copyright 2003-2015 C-R Media All Rights Reserved.
Definition
An initialization file, or INI file, is a configuration file that contains configuration data for Microsoft
Windows based applications.
Starting with Windows 95, the INI file format was superseded but not entirely replaced by a registry
database in Microsoft operating systems. Recently, XML became a popular choice for encoding
configuration, as well as other kinds of data for many applications, but INI format is still in widespread
use.
Although made popular by Windows, INI files can be used on any system thanks to its flexibility. It
allows a program to store configuration data, which can then be easily parsed and changed.
File Format
A typical INI file might look like this:
[Section1]
; some comment on section1
var1=abc
var2=451
[Section2]
; another comment
var1=123
var2=dfg
Format Elements
The elements of the INI file format:
Sections: Section declarations start with '[' and end with ']' as in [Section1] and [Section2] above.
Parameters: The "var1 = abc" above is an example of a parameter. Parameters are made up of a
key ('var1'), equals sign ('='), and a value ('abc'). For this reason, they are also known as key/value
pairs or simply items.
Comments: All the lines starting with a semicolon (';') are assumed to be comments, and are
ignored.
Vista de pagina 324
1 2 ... 320 321 322 323 324 325 326 327 328 329 330 ... 361 362

Comentarios a estos manuales

Sin comentarios