Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/LAVFilters.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHendrik Leppkes <h.leppkes@gmail.com>2012-02-11 01:16:49 +0400
committerHendrik Leppkes <h.leppkes@gmail.com>2012-02-11 01:16:49 +0400
commitc83d89e04eb44866bf567d0ad230a7ec6073b6ef (patch)
tree8ae861a053273e4072a858b0acec251f4b1199cc /common/includes/version.h
parentf9ae72f61818dc1ce5876e3ca55659adf3cb7258 (diff)
Re-write installer script.
- All splitter media type/file extension handling was moved into the installer (with a small exception for Blu-rays). - The installer can now show the configuration dialogs for audio and video at the end of the installation. - Uninstalling is done in a more safe way
Diffstat (limited to 'common/includes/version.h')
-rw-r--r--common/includes/version.h23
1 files changed, 4 insertions, 19 deletions
diff --git a/common/includes/version.h b/common/includes/version.h
index fcfbdb35..4bbf2910 100644
--- a/common/includes/version.h
+++ b/common/includes/version.h
@@ -1,22 +1,3 @@
-/*
- * Copyright (C) 2010-2012 Hendrik Leppkes
- * http://www.1f0.de
- *
- * 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.,
- * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
- */
-
#pragma once
#define LAV_VERSION_MAJOR 0
@@ -27,6 +8,8 @@
#define LAV_SPLITTER "LAV Splitter"
/////////////////////////////////////////////////////////
+#ifndef ISPP_INCLUDED
+
#define DO_MAKE_STR(x) #x
#define MAKE_STR(x) DO_MAKE_STR(x)
@@ -36,3 +19,5 @@
#define LAV_VERSION_STR MAKE_STR(LAV_VERSION)
#define ENABLE_DEBUG_LOGFILE 0
+
+#endif