/*1* Copyright 2023 Zhiyi Zhang for CodeWeavers2*3* This library is free software; you can redistribute it and/or4* modify it under the terms of the GNU Lesser General Public5* License as published by the Free Software Foundation; either6* version 2.1 of the License, or (at your option) any later version.7*8* This library is distributed in the hope that it will be useful,9* but WITHOUT ANY WARRANTY; without even the implied warranty of10* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU11* Lesser General Public License for more details.12*13* You should have received a copy of the GNU Lesser General Public14* License along with this library; if not, write to the Free Software15* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA16*/1718#include <windef.h>1920#define MAXSTRING 81922122#define STRING_USAGE 10123#define STRING_BAD_COMMAND_LINE 10224#define STRING_CANNOT_OPEN 10325#define STRING_IGNORED 1042627struct findstr_string28{29const char *string;30struct findstr_string *next;31};3233struct findstr_file34{35FILE *file;36struct findstr_file *next;37};383940