14d3acf4ec42bf6e838f9060103aff98fbf170794Philip P. Moltmann// Copyright 2014 PDFium Authors. All rights reserved. 24d3acf4ec42bf6e838f9060103aff98fbf170794Philip P. Moltmann// Use of this source code is governed by a BSD-style license that can be 34d3acf4ec42bf6e838f9060103aff98fbf170794Philip P. Moltmann// found in the LICENSE file. 44d3acf4ec42bf6e838f9060103aff98fbf170794Philip P. Moltmann 54d3acf4ec42bf6e838f9060103aff98fbf170794Philip P. Moltmann// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com 64d3acf4ec42bf6e838f9060103aff98fbf170794Philip P. Moltmann 74d3acf4ec42bf6e838f9060103aff98fbf170794Philip P. Moltmann#include "xfa/fxfa/fm2js/xfa_error.h" 84d3acf4ec42bf6e838f9060103aff98fbf170794Philip P. Moltmann 94d3acf4ec42bf6e838f9060103aff98fbf170794Philip P. Moltmannconst FX_WCHAR kFMErrUnsupportedChar[] = L"unsupported char '%c'"; 104d3acf4ec42bf6e838f9060103aff98fbf170794Philip P. Moltmannconst FX_WCHAR kFMErrBadSuffixNumber[] = L"bad suffix on number"; 114d3acf4ec42bf6e838f9060103aff98fbf170794Philip P. Moltmannconst FX_WCHAR kFMErrExpectedIdentifier[] = 124d3acf4ec42bf6e838f9060103aff98fbf170794Philip P. Moltmann L"expected identifier instead of '%s'"; 134d3acf4ec42bf6e838f9060103aff98fbf170794Philip P. Moltmannconst FX_WCHAR kFMErrExpectedToken[] = L"expected '%s' instead of '%s'"; 144d3acf4ec42bf6e838f9060103aff98fbf170794Philip P. Moltmannconst FX_WCHAR kFMErrExpectedEndIf[] = L"expected 'endif' instead of '%s'"; 154d3acf4ec42bf6e838f9060103aff98fbf170794Philip P. Moltmannconst FX_WCHAR kFMErrUnexpectedExpression[] = L"unexpected expression '%s'"; 164d3acf4ec42bf6e838f9060103aff98fbf170794Philip P. Moltmannconst FX_WCHAR kFMErrExpectedNonEmptyExpression[] = 174d3acf4ec42bf6e838f9060103aff98fbf170794Philip P. Moltmann L"expected non-empty expression"; 18