| 1 |
/* |
|---|
| 2 |
* versions.h |
|---|
| 3 |
* |
|---|
| 4 |
* The current version of the AC3MovieImport component. |
|---|
| 5 |
* |
|---|
| 6 |
* |
|---|
| 7 |
* Copyright (c) 2006 David Conrad |
|---|
| 8 |
* |
|---|
| 9 |
* This file is part of A52Codec, based off of the same file in XiphQT. |
|---|
| 10 |
* |
|---|
| 11 |
* A52Codec is free software; you can redistribute it and/or |
|---|
| 12 |
* modify it under the terms of the GNU Lesser General Public |
|---|
| 13 |
* License as published by the Free Software Foundation; either |
|---|
| 14 |
* version 2.1 of the License, or (at your option) any later version. |
|---|
| 15 |
* |
|---|
| 16 |
* A52Codec is distributed in the hope that it will be useful, |
|---|
| 17 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|---|
| 18 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|---|
| 19 |
* Lesser General Public License for more details. |
|---|
| 20 |
* |
|---|
| 21 |
* You should have received a copy of the GNU Lesser General Public |
|---|
| 22 |
* License along with A52Codec; if not, write to the Free Software |
|---|
| 23 |
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
|---|
| 24 |
* |
|---|
| 25 |
* |
|---|
| 26 |
* Last modified: $Id: versions.h 10322 2006-02-26 10:40:18Z dconrad1 $ |
|---|
| 27 |
* |
|---|
| 28 |
*/ |
|---|
| 29 |
|
|---|
| 30 |
|
|---|
| 31 |
#if !defined(__versions_h__) |
|---|
| 32 |
#define __versions_h__ |
|---|
| 33 |
|
|---|
| 34 |
#ifdef DEBUG |
|---|
| 35 |
#define kAC3Movie_eat__Version (0x00FF0100) |
|---|
| 36 |
#else |
|---|
| 37 |
#define kAC3Movie_eat__Version (0x00000100) |
|---|
| 38 |
#endif /* DEBUG */ |
|---|
| 39 |
|
|---|
| 40 |
|
|---|
| 41 |
#define kAC3MovieBundleID "com.cod3r.ac3movieimport" |
|---|
| 42 |
|
|---|
| 43 |
#define kImporterResID 4000 |
|---|
| 44 |
#define kImporterNameStringResID 4000 |
|---|
| 45 |
#define kImporterInfoStringResID 4001 |
|---|
| 46 |
|
|---|
| 47 |
#define kMovieComponentManufacturer 'cod3' |
|---|
| 48 |
#define kAC3MovieFormat 'Ac3A' |
|---|
| 49 |
|
|---|
| 50 |
|
|---|
| 51 |
#ifdef _DEBUG |
|---|
| 52 |
#define AC3MovieImporterName "AC3 Importer" |
|---|
| 53 |
#else |
|---|
| 54 |
#define AC3MovieImporterName "" |
|---|
| 55 |
#endif |
|---|
| 56 |
|
|---|
| 57 |
#endif /* __versions_h__ */ |
|---|