mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
27 lines
948 B
C
27 lines
948 B
C
|
// Copyright (c) 2009 The Chromium Authors. All rights reserved.
|
||
|
// Use of this source code is governed by a BSD-style license that can be
|
||
|
// found in the LICENSE file.
|
||
|
|
||
|
#ifndef BASE_FILE_VERSION_INFO_LINUX_H_
|
||
|
#define BASE_FILE_VERSION_INFO_LINUX_H_
|
||
|
|
||
|
#define COMPANY_NAME L"@COMPANY_FULLNAME@"
|
||
|
#define FILE_DESCRIPTION L"@PRODUCT_FULLNAME@"
|
||
|
#define FILE_VERSION L"@MAJOR@.@MINOR@.@BUILD@.@PATCH@"
|
||
|
#define LEGAL_COPYRIGHT L"@COPYRIGHT@"
|
||
|
#define PRODUCT_NAME L"@PRODUCT_FULLNAME@"
|
||
|
#define PRODUCT_VERSION L"@MAJOR@.@MINOR@.@BUILD@.@PATCH@"
|
||
|
#define COMPANY_SHORT_NAME L"@COMPANY_SHORTNAME@"
|
||
|
#define PRODUCT_SHORT_NAME L"@PRODUCT_SHORTNAME@"
|
||
|
#define LAST_CHANGE L"@LASTCHANGE@"
|
||
|
#define OFFICIAL_BUILD 1
|
||
|
// TODO(mmoss) Do these have values for Linux?
|
||
|
#define INTERNAL_NAME L""
|
||
|
#define ORIGINAL_FILENAME L""
|
||
|
#define PRIVATE_BUILD L""
|
||
|
#define SPECIAL_BUILD L""
|
||
|
#define COMMENTS L""
|
||
|
#define LEGAL_TRADEMARKS L""
|
||
|
|
||
|
#endif // BASE_FILE_VERSION_INFO_LINUX_H_
|