Back to home page

Wine source

 
 

    


File indexing completed on 2019-02-11 01:37:33

471323665 Laws*0001 #!/bin/sh
                0002 name="$1"
4e422766f Fran*0003 if [ "$name" = "" ] ; then
471323665 Laws*0004     echo -n 'Function: '
                0005     read name;
                0006 fi
                0007 
                0008 while [ "$name" != "" ]
                0009 do
                0010     find $(dirname $0)/../ -name \*.spec | xargs -l1024 grep -i $name
c075f35e1 Vinc*0011     find $(dirname $0)/../ -name \*.[ch] | xargs grep -i "WINAPI[[:space:]]\+$name"
471323665 Laws*0012     echo -n 'Function: '
                0013     read name
                0014 done