kopia lustrzana https://gitlab.com/sane-project/backends
Fixed newlines.
rodzic
db5fdabf16
commit
da63262198
|
@ -1,3 +1,7 @@
|
||||||
|
2004-06-08 Henning Meier-Geinitz <henning@meier-geinitz.de>
|
||||||
|
|
||||||
|
* tools/RenSaneDlls.cmd: Fixed newlines.
|
||||||
|
|
||||||
2004-06-06 Karl Heinz Kremer <khk@khk.net>
|
2004-06-06 Karl Heinz Kremer <khk@khk.net>
|
||||||
|
|
||||||
* backend/epson_usb.c: remove product IDs for Perfection 1250 and 1260
|
* backend/epson_usb.c: remove product IDs for Perfection 1250 and 1260
|
||||||
|
|
|
@ -1,33 +1,33 @@
|
||||||
/* REXX */
|
/* REXX */
|
||||||
/* Convert backend-DLL-filenames according to 8.3 naming convention */
|
/* Convert backend-DLL-filenames according to 8.3 naming convention */
|
||||||
/* necessary for DLLs on OS/2 (C) Franz Bakan 2004 */
|
/* necessary for DLLs on OS/2 (C) Franz Bakan 2004 */
|
||||||
/* */
|
/* */
|
||||||
/* This file is part of the SANE package. */
|
/* This file is part of the SANE package. */
|
||||||
/* */
|
/* */
|
||||||
/* This program is free software; you can redistribute it and/or */
|
/* This program is free software; you can redistribute it and/or */
|
||||||
/* modify it under the terms of the GNU General Public License as */
|
/* modify it under the terms of the GNU General Public License as */
|
||||||
/* published by the Free Software Foundation; either version 2 of the */
|
/* published by the Free Software Foundation; either version 2 of the */
|
||||||
/* License, or (at your option) any later version. */
|
/* License, or (at your option) any later version. */
|
||||||
/* */
|
/* */
|
||||||
/* This program is distributed in the hope that it will be useful, but */
|
/* This program is distributed in the hope that it will be useful, but */
|
||||||
/* WITHOUT ANY WARRANTY; without even the implied warranty of */
|
/* WITHOUT ANY WARRANTY; without even the implied warranty of */
|
||||||
/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU */
|
/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU */
|
||||||
/* General Public License for more details. */
|
/* General Public License for more details. */
|
||||||
/* */
|
/* */
|
||||||
/* You should have received a copy of the GNU General Public License */
|
/* You should have received a copy of the GNU General Public License */
|
||||||
/* along with this program; if not, write to the Free Software */
|
/* along with this program; if not, write to the Free Software */
|
||||||
/* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
|
/* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
|
||||||
|
|
||||||
|
|
||||||
CALL RxFuncAdd 'SysLoadFuncs', 'RexxUtil', 'SysLoadFuncs'
|
CALL RxFuncAdd 'SysLoadFuncs', 'RexxUtil', 'SysLoadFuncs'
|
||||||
CALL SysLoadFuncs
|
CALL SysLoadFuncs
|
||||||
|
|
||||||
rc = SysFileTree('\usr\lib\sane\libsane-*.dll',dlls,O)
|
rc = SysFileTree('\usr\lib\sane\libsane-*.dll',dlls,O)
|
||||||
DO i=1 TO dlls.0
|
DO i=1 TO dlls.0
|
||||||
PARSE VALUE dlls.i WITH front 'libsane-' backend '.dll'
|
PARSE VALUE dlls.i WITH front 'libsane-' backend '.dll'
|
||||||
IF length(backend) > 8 THEN
|
IF length(backend) > 8 THEN
|
||||||
COPY dlls.i front||LEFT(backend,2)||RIGHT(backend,6,' ')||'.dll'
|
COPY dlls.i front||LEFT(backend,2)||RIGHT(backend,6,' ')||'.dll'
|
||||||
ELSE
|
ELSE
|
||||||
IF length(backend) > 0 THEN COPY dlls.i front||backend||'.dll'
|
IF length(backend) > 0 THEN COPY dlls.i front||backend||'.dll'
|
||||||
DEL dlls.i
|
DEL dlls.i
|
||||||
END /* do */
|
END /* do */
|
||||||
|
|
Ładowanie…
Reference in New Issue