home *** CD-ROM | disk | FTP | other *** search
INI File | 1991-06-25 | 4.2 KB | 127 lines |
- [setup]
- ;
- ; This is where you put global information about your app.
- ;
- "PACKAGENAME","Killer App Package"
- "CAPTIONNAME","Killer App Setup"
-
- [disks]
- ;
- ; This is where you place the information about the installation
- ; disks.
- ;
- ; Format:
- ;
- ; "n","path","name"
- ;
- ; n : The disk number, 0-9, A-Z. MUST BE ONE CHARACTER ONLY!
- ; path : The path of the disk, i.e. "A:\"
- ; name : The name on the printed disk label you stick on,
- ; i.e. "KillerApp Disk #1"
- ;
- "0","A:\","KA Setup Disk #1"
- "1","A:\","KA Setup Disk #2"
-
- [directories]
- ;
- ; This is where you indicate where to place the files. There are
- ; two types of directories: The parent, and children. Children
- ; must be from the parent, or from other children. There can
- ; only be one parent, as many children as you like
- ;
- ; Format:
- ;
- ; "n","path","description"
- ;
- ; n : The directory Number. PARENT must be 0, and must exist
- ; children can have names A-Z, must start with A,
- ; and work up. Children start with backslash.
- ; path : The name of the subdirectory
- ; description : The description of the purpose of this directory
- ;
- "0","C:\KA","Killer App Directory"
- "A","\CHILD1","Killer App Directory Child 1"
- "B","\CHILD1","Killer App Directory Child 2"
-
- [apps]
- ;
- ; This is where you place the information about each file to be
- ; copied.
- ;
- ; ----------------------------------------------------------------------------
- ;
- ; NOTE: There are two types of setup: Simple and Complex.
- ;
- ; Simple: Installs ALL files, like a batch file. For this
- ; setup, do not worry about "D" flags, "R" flags,
- ; or the <nn> flag.
- ;
- ; Complex: Presents the user with a dialog box allowing
- ; them to install certain files. All flags apply
- ; in this case.
- ;
- ; ----------------------------------------------------------------------------
- ;
- ; Format:
- ;
- ; "n","flags","d","idir","filename","PName", "Description","Comment","size"
- ;
- ; n : The disk number this file resides on
- ;
- ; flags : Can be none, one, or many of the following:
- ;
- ; C : Compressed file. Use the "real" filename in this .INF
- ; file, setup will look for a filename with the last
- ; character of the extension == '$'.
- ; R : Required file- Setup **will** copy this file
- ; D : Display this file in the User Selection Listbox
- ; Ic : Add this program to ProgMan, group c. Group is A-Z
- ; nn : The next nn entries are part of the group to copy,
- ; for example, if there are four files for KillerApp,
- ; all of which you copy or you dont, then you
- ; would place 03 in this spot, and make the next
- ; three entries be the other three files. The user
- ; will see this entry as only one Object though.
- ;
- ; d : The destination directory. 0 = Parent, 1-9, A-Z = Children
- ;
- ; idir : The directory on the install disk
- ;
- ; filename : The actual name of the file
- ;
- ; PName : The name of the Icon in Progman (required if D flag)
- ;
- ; Description: A short description, for the listbox entry (only if D flag)
- ;
- ; Comment : The lengthy text displayed in the Comment box (only if D flag)
- ;
- ; size : Size of file/group in K (Only if D flag)
- ;
-
-
- ; These three lines are for A:\BIN\KILLER.EXE, .DLL, and .HLP to go
- ; on C:\KILLER, putting KILLER.EXE in Group A
-
- "0","02DIA","0","BIN","KILLER.EXE","Killer","Killer","The Best App in the WORLD!","70"
- "0","","0","BIN","KILLER.DLL"
- "0","","0","BIN","KILLER.HLP"
-
- ; These two lines are for A:\BIN\COOL.EXE, and COOL.DLL to go
- ; on C:\KILLER\CHILD1, putting COOL.EXE in Group A
-
- "1","01DIA","A","BIN","COOL.EXE","Cool","Cool","Cool Program","23"
- "1","","A","BIN","COOL.HLP"
-
- [progman]
- ;
- ; This defines the progman groups that the apps above will be added to
- ;
- ; Format:
- ;
- ; "n","Title","filename"
- ;
- ; n : The number of the group, A-Z
- ; title : The caption on the group window
- ; filename : The name of the .GRP file
- "A","Killer Apps","KILLER.GRP"