aboutsummaryrefslogtreecommitdiffstats
path: root/lib/sisfilerecord.h
diff options
context:
space:
mode:
authorDaniel Brahneborg <basic@chello.se>2002-03-03 12:21:31 +0000
committerDaniel Brahneborg <basic@chello.se>2002-03-03 12:21:31 +0000
commitd92c2abcca7d9270f49cbfb09a27bfda86642c31 (patch)
treec9c0ba02f077f2413e6023a9d3e13a5f256d186b /lib/sisfilerecord.h
parent9df8909948bb491b1b8c53ff8e1b5ce125304aac (diff)
downloadplptools-d92c2abcca7d9270f49cbfb09a27bfda86642c31.tar.gz
plptools-d92c2abcca7d9270f49cbfb09a27bfda86642c31.tar.bz2
plptools-d92c2abcca7d9270f49cbfb09a27bfda86642c31.zip
Added GNU copyright header.
Diffstat (limited to 'lib/sisfilerecord.h')
-rw-r--r--lib/sisfilerecord.h46
1 files changed, 34 insertions, 12 deletions
diff --git a/lib/sisfilerecord.h b/lib/sisfilerecord.h
index 1187ccf..d37d64e 100644
--- a/lib/sisfilerecord.h
+++ b/lib/sisfilerecord.h
@@ -1,3 +1,25 @@
+/** -*-c++-*-
+ * $Id$
+ *
+ * This file is part of plptools.
+ *
+ * Copyright (C) 2002 Daniel Brahneborg <basic.chello@se>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ */
+
#ifndef _SISFILERECORD_H
#define _SISFILERECORD_H
@@ -21,18 +43,18 @@ public:
void fillFrom(uchar* buf, int* base, SISFile* sisFile);
/**
- * 1 if multiple lang versions, otherwise 0.
+ * 1 if multiple language versions, otherwise 0.
*/
uint32 m_flags;
/**
* Type of file.
*
- * - 0: Standard file.
- * - 1: Text file to display during installation.
- * - 2: SIS component.
- * - 3: File to run during installation/removal.
- * - 4: Does not exist yet, but will be created when app is run, so
+ * - 0. Standard file.
+ * - 1. Text file to display during installation.
+ * - 2. SIS component.
+ * - 3. File to run during installation/removal.
+ * - 4. Does not exist yet, but will be created when app is run, so
* it should not be removed during an upgrade.
*/
uint32 m_fileType;
@@ -40,15 +62,15 @@ public:
/**
* If file type is 1:
*
- * - 0: Continue.
- * - 1: Yes, No (skip next file).
- * - 2: Yes, No (abort installation).
+ * - 0. Continue.
+ * - 1. Yes, No (skip next file).
+ * - 2. Yes, No (abort installation).
*
* If file type is 3:
*
- * - 0: Run during installation.
- * - 1: Run during removal.
- * - 2: Run during both installation and removal.
+ * - 0. Run during installation.
+ * - 1. Run during removal.
+ * - 2. Run during both installation and removal.
*/
uint32 m_fileDetails;