how did these changes get lost before? they are needed for the windows builds.
[feisty_meow.git] / scripts / winders / locate_function_in_lib.sh
1 #!/bin/bash
2
3 filename="$1"; shift
4 function_name="$1"; shift
5
6 good_path="$(cygpath -w -s $filename)"
7
8 #/exports 
9 dumpbin /all $good_path | grep -q -i "$function_name"
10 if [ $? -eq 0 ]; then
11   echo "Found $function_name in $filename"
12 fi
13
14
15