commit 01abdc287708756232574a991d3ddbdb59ec5ded Author: HorizonCode Date: Wed Jul 21 16:06:01 2021 +0200 push to repo diff --git a/bin/function_grep.pl b/bin/function_grep.pl new file mode 100755 index 0000000..60e5677 --- /dev/null +++ b/bin/function_grep.pl @@ -0,0 +1,304 @@ +#! /usr/bin/perl -w +# +# Copyright 2000 Patrik Stridvall +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# + +use strict; + +my $name0=$0; +$name0 =~ s%^.*/%%; + +my $invert = 0; +my $pattern; +my @files = (); +my $usage; + +while(defined($_ = shift)) { + if (/^-v$/) { + $invert = 1; + } elsif (/^--?(\?|h|help)$/) { + $usage=0; + } elsif (/^-/) { + print STDERR "$name0:error: unknown option '$_'\n"; + $usage=2; + last; + } elsif(!defined($pattern)) { + $pattern = $_; + } else { + push @files, $_; + } +} +if (defined $usage) +{ + print "Usage: $name0 [--help] [-v] pattern files...\n"; + print "where:\n"; + print "--help Prints this help message\n"; + print "-v Return functions that do not match pattern\n"; + print "pattern A regular expression for the function name\n"; + print "files... A list of files to search the function in\n"; + exit $usage; +} + +foreach my $file (@files) { + open(IN, "< $file") || die "Error: Can't open $file: $!\n"; + + my $level = 0; + my $extern_c = 0; + + my $again = 0; + my $lookahead = 0; + while($again || defined(my $line = )) { + if(!$again) { + chomp $line; + if($lookahead) { + $lookahead = 0; + $_ .= "\n" . $line; + } else { + $_ = $line; + } + } else { + $again = 0; + } + + # remove C comments + if(s/^(|.*?[^\/])(\/\*.*?\*\/)(.*)$/$1 $3/s) { + $again = 1; + next; + } elsif(/^(.*?)\/\*/s) { + $lookahead = 1; + next; + } + + # remove C++ comments + while(s/^(.*?)\/\/.*?$/$1\n/s) { $again = 1; } + if($again) { next; } + + # remove empty rows + if(/^\s*$/) { next; } + + # remove preprocessor directives + if(s/^\s*\#/\#/m) { + if(/^\#[.\n\r]*?\\$/m) { + $lookahead = 1; + next; + } elsif(s/^\#\s*(.*?)(\s+(.*?))?\s*$//m) { + next; + } + } + + # Remove extern "C" + if(s/^\s*extern[\s\n]+"C"[\s\n]+\{//m) { + $extern_c = 1; + $again = 1; + next; + } elsif(m/^\s*extern[\s\n]+"C"/m) { + $lookahead = 1; + next; + } + + if($level > 0) + { + my $line = ""; + while(/^[^\{\}]/) { + s/^([^\{\}\'\"]*)//s; + $line .= $1; + if(s/^\'//) { + $line .= "\'"; + while(/^./ && !s/^\'//) { + s/^([^\'\\]*)//s; + $line .= $1; + if(s/^\\//) { + $line .= "\\"; + if(s/^(.)//s) { + $line .= $1; + if($1 eq "0") { + s/^(\d{0,3})//s; + $line .= $1; + } + } + } + } + $line .= "\'"; + } elsif(s/^\"//) { + $line .= "\""; + while(/^./ && !s/^\"//) { + s/^([^\"\\]*)//s; + $line .= $1; + if(s/^\\//) { + $line .= "\\"; + if(s/^(.)//s) { + $line .= $1; + if($1 eq "0") { + s/^(\d{0,3})//s; + $line .= $1; + } + } + } + } + $line .= "\""; + } + } + + if(s/^\{//) { + $_ = $'; $again = 1; + $line .= "{"; + $level++; + } elsif(s/^\}//) { + $_ = $'; $again = 1; + $line .= "}" if $level > 1; + $level--; + if($level == -1 && $extern_c) { + $extern_c = 0; + $level = 0; + } + } + + next; + } elsif(/^class[^\}]*{/) { + $_ = $'; $again = 1; + $level++; + next; + } elsif(/^class[^\}]*$/) { + $lookahead = 1; + next; + } elsif(/^typedef[^\}]*;/) { + next; + } elsif(/(extern\s+|static\s+)? + (?:__inline__\s+|__inline\s+|inline\s+)? + ((struct\s+|union\s+|enum\s+)?(?:\w+(?:\:\:(?:\s*operator\s*[^\)\s]+)?)?)+((\s*(?:\*|\&))+\s*|\s+)) + ((__cdecl|__stdcall|CDECL|VFWAPIV|VFWAPI|WINAPIV|WINAPI|CALLBACK)\s+)? + ((?:\w+(?:\:\:)?)+(\(\w+\))?)\s*\(([^\)]*)\)\s* + (?:\w+(?:\s*\([^\)]*\))?\s*)*\s* + (\{|\;)/sx) + { + $_ = $'; $again = 1; + if($11 eq "{") { + $level++; + } + + my $linkage = $1; + my $return_type = $2; + my $calling_convention = $7; + my $name = $8; + my $arguments = $10; + + if(!defined($linkage)) { + $linkage = ""; + } + + if(!defined($calling_convention)) { + $calling_convention = ""; + } + + $linkage =~ s/\s*$//; + + $return_type =~ s/\s*$//; + $return_type =~ s/\s*\*\s*/*/g; + $return_type =~ s/(\*+)/ $1/g; + + $arguments =~ y/\t\n/ /; + $arguments =~ s/^\s*(.*?)\s*$/$1/; + if($arguments eq "") { $arguments = "void" } + + my @argument_types; + my @argument_names; + my @arguments = split(/,/, $arguments); + foreach my $n (0..$#arguments) { + my $argument_type = ""; + my $argument_name = ""; + my $argument = $arguments[$n]; + $argument =~ s/^\s*(.*?)\s*$/$1/; + # print " " . ($n + 1) . ": '$argument'\n"; + $argument =~ s/^(IN OUT(?=\s)|IN(?=\s)|OUT(?=\s)|\s*)\s*//; + $argument =~ s/^(const(?=\s)|CONST(?=\s)|__const(?=\s)|__restrict(?=\s)|\s*)\s*//; + if($argument =~ /^\.\.\.$/) { + $argument_type = "..."; + $argument_name = "..."; + } elsif($argument =~ /^ + ((?:struct\s+|union\s+|enum\s+|(?:signed\s+|unsigned\s+) + (?:short\s+(?=int)|long\s+(?=int))?)?(?:\w+(?:\:\:)?)+)\s* + ((?:const(?=\s)|CONST(?=\s)|__const(?=\s)|__restrict(?=\s))?\s*(?:\*\s*?)*)\s* + (?:const(?=\s)|CONST(?=\s)|__const(?=\s)|__restrict(?=\s))?\s* + (\w*)\s* + (?:\[\]|\s+OPTIONAL)?/x) + { + $argument_type = "$1"; + if($2 ne "") { + $argument_type .= " $2"; + } + $argument_name = $3; + + $argument_type =~ s/\s*const\s*/ /; + $argument_type =~ s/^\s*(.*?)\s*$/$1/; + + $argument_name =~ s/^\s*(.*?)\s*$/$1/; + } else { + die "$file: $.: syntax error: '$argument'\n"; + } + $argument_types[$n] = $argument_type; + $argument_names[$n] = $argument_name; + # print " " . ($n + 1) . ": '$argument_type': '$argument_name'\n"; + } + if($#argument_types == 0 && $argument_types[0] =~ /^void$/i) { + $#argument_types = -1; + $#argument_names = -1; + } + + @arguments = (); + foreach my $n (0..$#argument_types) { + if($argument_names[$n] && $argument_names[$n] ne "...") { + if($argument_types[$n] !~ /\*$/) { + $arguments[$n] = $argument_types[$n] . " " . $argument_names[$n]; + } else { + $arguments[$n] = $argument_types[$n] . $argument_names[$n]; + } + } else { + $arguments[$n] = $argument_types[$n]; + } + } + + $arguments = join(", ", @arguments); + if(!$arguments) { $arguments = "void"; } + + if((!$invert && $name =~ /$pattern/) || ($invert && $name !~ /$pattern/)) { + if($calling_convention) { + print "$return_type $calling_convention $name($arguments)\n"; + } else { + if($return_type =~ /\*$/) { + print "$return_type$name($arguments)\n"; + } else { + print "$return_type $name($arguments)\n"; + } + } + } + } elsif(/\'(?:[^\\\']*|\\.)*\'/s) { + $_ = $'; $again = 1; + } elsif(/\"(?:[^\\\"]*|\\.)*\"/s) { + $_ = $'; $again = 1; + } elsif(/;/s) { + $_ = $'; $again = 1; + } elsif(/extern\s+"C"\s+{/s) { + $_ = $'; $again = 1; + } elsif(/\{/s) { + $_ = $'; $again = 1; + $level++; + } else { + $lookahead = 1; + } + } + close(IN); +} diff --git a/bin/msidb b/bin/msidb new file mode 100755 index 0000000..d9b6412 --- /dev/null +++ b/bin/msidb @@ -0,0 +1,64 @@ +#!/bin/sh +# +# Wrapper script to start a Winelib application once it is installed +# +# Copyright (C) 2002 Alexandre Julliard +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# + +# determine the app Winelib library name +appname=`basename "$0" .exe`.exe + +# first try explicit WINELOADER +if [ -x "$WINELOADER" ]; then exec "$WINELOADER" "$appname" "$@"; fi + +# now try the directory containing $0 +appdir="" +case "$0" in + */*) + # $0 contains a path, use it + appdir=`dirname "$0"` + ;; + *) + # no directory in $0, search in PATH + saved_ifs=$IFS + IFS=: + for d in $PATH + do + IFS=$saved_ifs + if [ -x "$d/$0" ]; then appdir="$d"; break; fi + done + ;; +esac +if [ -x "$appdir/wine" ]; then exec "$appdir/wine" "$appname" "$@"; fi +if [ -x "$appdir/wine64" ]; then exec "$appdir/wine64" "$appname" "$@"; fi + +# now look in PATH +saved_ifs=$IFS +IFS=: +for d in $PATH +do + IFS=$saved_ifs + if [ -x "$d/wine" ]; then exec "$d/wine" "$appname" "$@"; fi + if [ -x "$d/wine64" ]; then exec "$d/wine64" "$appname" "$@"; fi +done + +# finally, the default bin directory +if [ -x "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine" ]; then exec "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine" "$appname" "$@"; fi +if [ -x "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine64" ]; then exec "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine64" "$appname" "$@"; fi + +echo "$0: the Wine loader is missing" +exit 1 diff --git a/bin/msiexec b/bin/msiexec new file mode 100755 index 0000000..d9b6412 --- /dev/null +++ b/bin/msiexec @@ -0,0 +1,64 @@ +#!/bin/sh +# +# Wrapper script to start a Winelib application once it is installed +# +# Copyright (C) 2002 Alexandre Julliard +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# + +# determine the app Winelib library name +appname=`basename "$0" .exe`.exe + +# first try explicit WINELOADER +if [ -x "$WINELOADER" ]; then exec "$WINELOADER" "$appname" "$@"; fi + +# now try the directory containing $0 +appdir="" +case "$0" in + */*) + # $0 contains a path, use it + appdir=`dirname "$0"` + ;; + *) + # no directory in $0, search in PATH + saved_ifs=$IFS + IFS=: + for d in $PATH + do + IFS=$saved_ifs + if [ -x "$d/$0" ]; then appdir="$d"; break; fi + done + ;; +esac +if [ -x "$appdir/wine" ]; then exec "$appdir/wine" "$appname" "$@"; fi +if [ -x "$appdir/wine64" ]; then exec "$appdir/wine64" "$appname" "$@"; fi + +# now look in PATH +saved_ifs=$IFS +IFS=: +for d in $PATH +do + IFS=$saved_ifs + if [ -x "$d/wine" ]; then exec "$d/wine" "$appname" "$@"; fi + if [ -x "$d/wine64" ]; then exec "$d/wine64" "$appname" "$@"; fi +done + +# finally, the default bin directory +if [ -x "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine" ]; then exec "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine" "$appname" "$@"; fi +if [ -x "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine64" ]; then exec "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine64" "$appname" "$@"; fi + +echo "$0: the Wine loader is missing" +exit 1 diff --git a/bin/notepad b/bin/notepad new file mode 100755 index 0000000..d9b6412 --- /dev/null +++ b/bin/notepad @@ -0,0 +1,64 @@ +#!/bin/sh +# +# Wrapper script to start a Winelib application once it is installed +# +# Copyright (C) 2002 Alexandre Julliard +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# + +# determine the app Winelib library name +appname=`basename "$0" .exe`.exe + +# first try explicit WINELOADER +if [ -x "$WINELOADER" ]; then exec "$WINELOADER" "$appname" "$@"; fi + +# now try the directory containing $0 +appdir="" +case "$0" in + */*) + # $0 contains a path, use it + appdir=`dirname "$0"` + ;; + *) + # no directory in $0, search in PATH + saved_ifs=$IFS + IFS=: + for d in $PATH + do + IFS=$saved_ifs + if [ -x "$d/$0" ]; then appdir="$d"; break; fi + done + ;; +esac +if [ -x "$appdir/wine" ]; then exec "$appdir/wine" "$appname" "$@"; fi +if [ -x "$appdir/wine64" ]; then exec "$appdir/wine64" "$appname" "$@"; fi + +# now look in PATH +saved_ifs=$IFS +IFS=: +for d in $PATH +do + IFS=$saved_ifs + if [ -x "$d/wine" ]; then exec "$d/wine" "$appname" "$@"; fi + if [ -x "$d/wine64" ]; then exec "$d/wine64" "$appname" "$@"; fi +done + +# finally, the default bin directory +if [ -x "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine" ]; then exec "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine" "$appname" "$@"; fi +if [ -x "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine64" ]; then exec "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine64" "$appname" "$@"; fi + +echo "$0: the Wine loader is missing" +exit 1 diff --git a/bin/regedit b/bin/regedit new file mode 100755 index 0000000..d9b6412 --- /dev/null +++ b/bin/regedit @@ -0,0 +1,64 @@ +#!/bin/sh +# +# Wrapper script to start a Winelib application once it is installed +# +# Copyright (C) 2002 Alexandre Julliard +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# + +# determine the app Winelib library name +appname=`basename "$0" .exe`.exe + +# first try explicit WINELOADER +if [ -x "$WINELOADER" ]; then exec "$WINELOADER" "$appname" "$@"; fi + +# now try the directory containing $0 +appdir="" +case "$0" in + */*) + # $0 contains a path, use it + appdir=`dirname "$0"` + ;; + *) + # no directory in $0, search in PATH + saved_ifs=$IFS + IFS=: + for d in $PATH + do + IFS=$saved_ifs + if [ -x "$d/$0" ]; then appdir="$d"; break; fi + done + ;; +esac +if [ -x "$appdir/wine" ]; then exec "$appdir/wine" "$appname" "$@"; fi +if [ -x "$appdir/wine64" ]; then exec "$appdir/wine64" "$appname" "$@"; fi + +# now look in PATH +saved_ifs=$IFS +IFS=: +for d in $PATH +do + IFS=$saved_ifs + if [ -x "$d/wine" ]; then exec "$d/wine" "$appname" "$@"; fi + if [ -x "$d/wine64" ]; then exec "$d/wine64" "$appname" "$@"; fi +done + +# finally, the default bin directory +if [ -x "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine" ]; then exec "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine" "$appname" "$@"; fi +if [ -x "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine64" ]; then exec "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine64" "$appname" "$@"; fi + +echo "$0: the Wine loader is missing" +exit 1 diff --git a/bin/regsvr32 b/bin/regsvr32 new file mode 100755 index 0000000..d9b6412 --- /dev/null +++ b/bin/regsvr32 @@ -0,0 +1,64 @@ +#!/bin/sh +# +# Wrapper script to start a Winelib application once it is installed +# +# Copyright (C) 2002 Alexandre Julliard +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# + +# determine the app Winelib library name +appname=`basename "$0" .exe`.exe + +# first try explicit WINELOADER +if [ -x "$WINELOADER" ]; then exec "$WINELOADER" "$appname" "$@"; fi + +# now try the directory containing $0 +appdir="" +case "$0" in + */*) + # $0 contains a path, use it + appdir=`dirname "$0"` + ;; + *) + # no directory in $0, search in PATH + saved_ifs=$IFS + IFS=: + for d in $PATH + do + IFS=$saved_ifs + if [ -x "$d/$0" ]; then appdir="$d"; break; fi + done + ;; +esac +if [ -x "$appdir/wine" ]; then exec "$appdir/wine" "$appname" "$@"; fi +if [ -x "$appdir/wine64" ]; then exec "$appdir/wine64" "$appname" "$@"; fi + +# now look in PATH +saved_ifs=$IFS +IFS=: +for d in $PATH +do + IFS=$saved_ifs + if [ -x "$d/wine" ]; then exec "$d/wine" "$appname" "$@"; fi + if [ -x "$d/wine64" ]; then exec "$d/wine64" "$appname" "$@"; fi +done + +# finally, the default bin directory +if [ -x "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine" ]; then exec "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine" "$appname" "$@"; fi +if [ -x "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine64" ]; then exec "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine64" "$appname" "$@"; fi + +echo "$0: the Wine loader is missing" +exit 1 diff --git a/bin/widl b/bin/widl new file mode 100755 index 0000000..cd6e68b Binary files /dev/null and b/bin/widl differ diff --git a/bin/wine b/bin/wine new file mode 100755 index 0000000..2515259 Binary files /dev/null and b/bin/wine differ diff --git a/bin/wine-preloader b/bin/wine-preloader new file mode 100755 index 0000000..e79dd92 Binary files /dev/null and b/bin/wine-preloader differ diff --git a/bin/wine64 b/bin/wine64 new file mode 100755 index 0000000..2235bba Binary files /dev/null and b/bin/wine64 differ diff --git a/bin/wine64-preloader b/bin/wine64-preloader new file mode 100755 index 0000000..30ce755 Binary files /dev/null and b/bin/wine64-preloader differ diff --git a/bin/wineboot b/bin/wineboot new file mode 100755 index 0000000..d9b6412 --- /dev/null +++ b/bin/wineboot @@ -0,0 +1,64 @@ +#!/bin/sh +# +# Wrapper script to start a Winelib application once it is installed +# +# Copyright (C) 2002 Alexandre Julliard +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# + +# determine the app Winelib library name +appname=`basename "$0" .exe`.exe + +# first try explicit WINELOADER +if [ -x "$WINELOADER" ]; then exec "$WINELOADER" "$appname" "$@"; fi + +# now try the directory containing $0 +appdir="" +case "$0" in + */*) + # $0 contains a path, use it + appdir=`dirname "$0"` + ;; + *) + # no directory in $0, search in PATH + saved_ifs=$IFS + IFS=: + for d in $PATH + do + IFS=$saved_ifs + if [ -x "$d/$0" ]; then appdir="$d"; break; fi + done + ;; +esac +if [ -x "$appdir/wine" ]; then exec "$appdir/wine" "$appname" "$@"; fi +if [ -x "$appdir/wine64" ]; then exec "$appdir/wine64" "$appname" "$@"; fi + +# now look in PATH +saved_ifs=$IFS +IFS=: +for d in $PATH +do + IFS=$saved_ifs + if [ -x "$d/wine" ]; then exec "$d/wine" "$appname" "$@"; fi + if [ -x "$d/wine64" ]; then exec "$d/wine64" "$appname" "$@"; fi +done + +# finally, the default bin directory +if [ -x "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine" ]; then exec "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine" "$appname" "$@"; fi +if [ -x "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine64" ]; then exec "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine64" "$appname" "$@"; fi + +echo "$0: the Wine loader is missing" +exit 1 diff --git a/bin/winebuild b/bin/winebuild new file mode 100755 index 0000000..e1a5d58 Binary files /dev/null and b/bin/winebuild differ diff --git a/bin/winecfg b/bin/winecfg new file mode 100755 index 0000000..d9b6412 --- /dev/null +++ b/bin/winecfg @@ -0,0 +1,64 @@ +#!/bin/sh +# +# Wrapper script to start a Winelib application once it is installed +# +# Copyright (C) 2002 Alexandre Julliard +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# + +# determine the app Winelib library name +appname=`basename "$0" .exe`.exe + +# first try explicit WINELOADER +if [ -x "$WINELOADER" ]; then exec "$WINELOADER" "$appname" "$@"; fi + +# now try the directory containing $0 +appdir="" +case "$0" in + */*) + # $0 contains a path, use it + appdir=`dirname "$0"` + ;; + *) + # no directory in $0, search in PATH + saved_ifs=$IFS + IFS=: + for d in $PATH + do + IFS=$saved_ifs + if [ -x "$d/$0" ]; then appdir="$d"; break; fi + done + ;; +esac +if [ -x "$appdir/wine" ]; then exec "$appdir/wine" "$appname" "$@"; fi +if [ -x "$appdir/wine64" ]; then exec "$appdir/wine64" "$appname" "$@"; fi + +# now look in PATH +saved_ifs=$IFS +IFS=: +for d in $PATH +do + IFS=$saved_ifs + if [ -x "$d/wine" ]; then exec "$d/wine" "$appname" "$@"; fi + if [ -x "$d/wine64" ]; then exec "$d/wine64" "$appname" "$@"; fi +done + +# finally, the default bin directory +if [ -x "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine" ]; then exec "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine" "$appname" "$@"; fi +if [ -x "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine64" ]; then exec "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine64" "$appname" "$@"; fi + +echo "$0: the Wine loader is missing" +exit 1 diff --git a/bin/wineconsole b/bin/wineconsole new file mode 100755 index 0000000..d9b6412 --- /dev/null +++ b/bin/wineconsole @@ -0,0 +1,64 @@ +#!/bin/sh +# +# Wrapper script to start a Winelib application once it is installed +# +# Copyright (C) 2002 Alexandre Julliard +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# + +# determine the app Winelib library name +appname=`basename "$0" .exe`.exe + +# first try explicit WINELOADER +if [ -x "$WINELOADER" ]; then exec "$WINELOADER" "$appname" "$@"; fi + +# now try the directory containing $0 +appdir="" +case "$0" in + */*) + # $0 contains a path, use it + appdir=`dirname "$0"` + ;; + *) + # no directory in $0, search in PATH + saved_ifs=$IFS + IFS=: + for d in $PATH + do + IFS=$saved_ifs + if [ -x "$d/$0" ]; then appdir="$d"; break; fi + done + ;; +esac +if [ -x "$appdir/wine" ]; then exec "$appdir/wine" "$appname" "$@"; fi +if [ -x "$appdir/wine64" ]; then exec "$appdir/wine64" "$appname" "$@"; fi + +# now look in PATH +saved_ifs=$IFS +IFS=: +for d in $PATH +do + IFS=$saved_ifs + if [ -x "$d/wine" ]; then exec "$d/wine" "$appname" "$@"; fi + if [ -x "$d/wine64" ]; then exec "$d/wine64" "$appname" "$@"; fi +done + +# finally, the default bin directory +if [ -x "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine" ]; then exec "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine" "$appname" "$@"; fi +if [ -x "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine64" ]; then exec "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine64" "$appname" "$@"; fi + +echo "$0: the Wine loader is missing" +exit 1 diff --git a/bin/winecpp b/bin/winecpp new file mode 120000 index 0000000..45a9dd0 --- /dev/null +++ b/bin/winecpp @@ -0,0 +1 @@ +winegcc \ No newline at end of file diff --git a/bin/winedbg b/bin/winedbg new file mode 100755 index 0000000..d9b6412 --- /dev/null +++ b/bin/winedbg @@ -0,0 +1,64 @@ +#!/bin/sh +# +# Wrapper script to start a Winelib application once it is installed +# +# Copyright (C) 2002 Alexandre Julliard +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# + +# determine the app Winelib library name +appname=`basename "$0" .exe`.exe + +# first try explicit WINELOADER +if [ -x "$WINELOADER" ]; then exec "$WINELOADER" "$appname" "$@"; fi + +# now try the directory containing $0 +appdir="" +case "$0" in + */*) + # $0 contains a path, use it + appdir=`dirname "$0"` + ;; + *) + # no directory in $0, search in PATH + saved_ifs=$IFS + IFS=: + for d in $PATH + do + IFS=$saved_ifs + if [ -x "$d/$0" ]; then appdir="$d"; break; fi + done + ;; +esac +if [ -x "$appdir/wine" ]; then exec "$appdir/wine" "$appname" "$@"; fi +if [ -x "$appdir/wine64" ]; then exec "$appdir/wine64" "$appname" "$@"; fi + +# now look in PATH +saved_ifs=$IFS +IFS=: +for d in $PATH +do + IFS=$saved_ifs + if [ -x "$d/wine" ]; then exec "$d/wine" "$appname" "$@"; fi + if [ -x "$d/wine64" ]; then exec "$d/wine64" "$appname" "$@"; fi +done + +# finally, the default bin directory +if [ -x "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine" ]; then exec "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine" "$appname" "$@"; fi +if [ -x "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine64" ]; then exec "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine64" "$appname" "$@"; fi + +echo "$0: the Wine loader is missing" +exit 1 diff --git a/bin/winedump b/bin/winedump new file mode 100755 index 0000000..8081d08 Binary files /dev/null and b/bin/winedump differ diff --git a/bin/winefile b/bin/winefile new file mode 100755 index 0000000..d9b6412 --- /dev/null +++ b/bin/winefile @@ -0,0 +1,64 @@ +#!/bin/sh +# +# Wrapper script to start a Winelib application once it is installed +# +# Copyright (C) 2002 Alexandre Julliard +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# + +# determine the app Winelib library name +appname=`basename "$0" .exe`.exe + +# first try explicit WINELOADER +if [ -x "$WINELOADER" ]; then exec "$WINELOADER" "$appname" "$@"; fi + +# now try the directory containing $0 +appdir="" +case "$0" in + */*) + # $0 contains a path, use it + appdir=`dirname "$0"` + ;; + *) + # no directory in $0, search in PATH + saved_ifs=$IFS + IFS=: + for d in $PATH + do + IFS=$saved_ifs + if [ -x "$d/$0" ]; then appdir="$d"; break; fi + done + ;; +esac +if [ -x "$appdir/wine" ]; then exec "$appdir/wine" "$appname" "$@"; fi +if [ -x "$appdir/wine64" ]; then exec "$appdir/wine64" "$appname" "$@"; fi + +# now look in PATH +saved_ifs=$IFS +IFS=: +for d in $PATH +do + IFS=$saved_ifs + if [ -x "$d/wine" ]; then exec "$d/wine" "$appname" "$@"; fi + if [ -x "$d/wine64" ]; then exec "$d/wine64" "$appname" "$@"; fi +done + +# finally, the default bin directory +if [ -x "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine" ]; then exec "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine" "$appname" "$@"; fi +if [ -x "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine64" ]; then exec "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine64" "$appname" "$@"; fi + +echo "$0: the Wine loader is missing" +exit 1 diff --git a/bin/wineg++ b/bin/wineg++ new file mode 120000 index 0000000..45a9dd0 --- /dev/null +++ b/bin/wineg++ @@ -0,0 +1 @@ +winegcc \ No newline at end of file diff --git a/bin/winegcc b/bin/winegcc new file mode 100755 index 0000000..b2660cb Binary files /dev/null and b/bin/winegcc differ diff --git a/bin/winemaker b/bin/winemaker new file mode 100755 index 0000000..88ae78c --- /dev/null +++ b/bin/winemaker @@ -0,0 +1,2820 @@ +#!/usr/bin/perl -w +use utf8; +use strict; + +# Copyright 2000-2004 François Gouget for CodeWeavers +# Copyright 2004 Dimitrie O. Paun +# Copyright 2009-2012 André Hentschel +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# + +my $version="0.8.4"; + +use Cwd; +use File::Basename; +use File::Copy; + + + +##### +# +# Options +# +##### + +# The following constants define what we do with the case of filenames + +## +# Never rename a file to lowercase +my $OPT_LOWER_NONE=0; + +## +# Rename all files to lowercase +my $OPT_LOWER_ALL=1; + +## +# Rename only files that are all uppercase to lowercase +my $OPT_LOWER_UPPERCASE=2; + + +# The following constants define whether to ask questions or not + +## +# No (synonym of never) +my $OPT_ASK_NO=0; + +## +# Yes (always) +my $OPT_ASK_YES=1; + +## +# Skip the questions till the end of this scope +my $OPT_ASK_SKIP=-1; + + +# The following constants define the architecture + +## +# Default Architecture will be chosen +my $OPT_ARCH_DEFAULT=0; + +## +# 32-Bit Target +my $OPT_ARCH_32=32; + +## +# 64-Bit Target +my $OPT_ARCH_64=64; + + +# General options + +## +# This is the directory in which winemaker will operate. +my $opt_work_dir; + +## +# This is the file in which winemaker will operate if a project file is specified. +my $opt_work_file; + +## +# Make a backup of the files +my $opt_backup; + +## +# Defines which files to rename +my $opt_lower; + +## +# If we don't find the file referenced by an include, lower it +my $opt_lower_include; + +## +# If true then winemaker should not attempt to fix the source. This is +# useful if the source is known to be already in a suitable form and is +# readonly +my $opt_no_source_fix; + +# Options for the 'Source' method + +## +# Specifies that we have only one target so that all sources relate +# to this target. By default this variable is left undefined which +# means winemaker should try to find out by itself what the targets +# are. If not undefined then this contains the name of the default +# target (without the extension). +my $opt_single_target; + +## +# If '$opt_single_target' has been specified then this is the type of +# that target. Otherwise it specifies whether the default target type +# is guiexe or cuiexe. +my $opt_target_type; + +## +# Contains the default set of flags to be used when creating a new target. +my $opt_flags; + +## +# Contains 32 for 32-Bit-Targets and 64 for 64-Bit-Targets +my $opt_arch; + +## +# If true then winemaker should ask questions to the user as it goes +# along. +my $opt_is_interactive; +my $opt_ask_project_options; +my $opt_ask_target_options; + +## +# If false then winemaker should not generate the makefiles. +my $opt_no_generated_files; + +## +# Specifies not to print the banner if set. +my $opt_no_banner; + + + +##### +# +# Target modelization +# +##### + +# The description of a target is stored in an array. The constants +# below identify what is stored at each index of the array. + +## +# This is the name of the target. +my $T_NAME=0; + +## +# Defines the type of target we want to build. See the TT_xxx +# constants below +my $T_TYPE=1; + +## +# This is a bitfield containing flags refining the way the target +# should be handled. See the TF_xxx constants below +my $T_FLAGS=2; + +## +# This is a reference to an array containing the list of the +# resp. C, C++, RC, other (.h, .hxx, etc.) source files. +my $T_SOURCES_C=3; +my $T_SOURCES_CXX=4; +my $T_SOURCES_RC=5; +my $T_SOURCES_MISC=6; + +## +# This is a reference to an array containing the list of +# C compiler options +my $T_CEXTRA=7; + +## +# This is a reference to an array containing the list of +# C++ compiler options +my $T_CXXEXTRA=8; + +## +# This is a reference to an array containing the list of +# RC compiler options +my $T_RCEXTRA=9; + +## +# This is a reference to an array containing the list of macro +# definitions +my $T_DEFINES=10; + +## +# This is a reference to an array containing the list of directory +# names that constitute the include path +my $T_INCLUDE_PATH=11; + +## +# Flags for the linker +my $T_LDFLAGS=12; + +## +# Flags for the archiver +my $T_ARFLAGS=13; + +## +# Same as T_INCLUDE_PATH but for the dll search path +my $T_DLL_PATH=14; + +## +# The list of Windows dlls to import +my $T_DLLS=15; + +## +# Same as T_INCLUDE_PATH but for the library search path +my $T_LIBRARY_PATH=16; + +## +# The list of Unix libraries to link with +my $T_LIBRARIES=17; + + +# The following constants define the recognized types of target + +## +# This is not a real target. This type of target is used to collect +# the sources that don't seem to belong to any other target. Thus no +# real target is generated for them, we just put the sources of the +# fake target in the global source list. +my $TT_SETTINGS=0; + +## +# For executables in the windows subsystem +my $TT_GUIEXE=1; + +## +# For executables in the console subsystem +my $TT_CUIEXE=2; + +## +# For dynamically linked libraries +my $TT_DLL=3; + +## +# For static libraries +my $TT_LIB=4; + + +# The following constants further refine how the target should be handled + +## +# This target is an MFC-based target +my $TF_MFC=4; + +## +# User has specified --nomfc option for this target or globally +my $TF_NOMFC=8; + +## +# --nodlls option: Do not use standard DLL set +my $TF_NODLLS=16; + +## +# --nomsvcrt option: Do not link with msvcrt +my $TF_NOMSVCRT=32; + +## +# This target has a def file (only use it with TT_DLL) +my $TF_HASDEF=64; + +## +# This target has C++ files named *.cxx (instead of *.cpp) +my $TF_HASCXX=128; + +## +# Initialize a target: +# - set the target type to TT_SETTINGS, i.e. no real target will +# be generated. +sub target_init($) +{ + my $target=$_[0]; + + @$target[$T_TYPE]=$TT_SETTINGS; + @$target[$T_FLAGS]=$opt_flags; + @$target[$T_SOURCES_C]=[]; + @$target[$T_SOURCES_CXX]=[]; + @$target[$T_SOURCES_RC]=[]; + @$target[$T_SOURCES_MISC]=[]; + @$target[$T_CEXTRA]=[]; + @$target[$T_CXXEXTRA]=[]; + @$target[$T_RCEXTRA]=[]; + @$target[$T_DEFINES]=[]; + @$target[$T_INCLUDE_PATH]=[]; + @$target[$T_LDFLAGS]=[]; + @$target[$T_ARFLAGS]=[]; + @$target[$T_DLL_PATH]=[]; + @$target[$T_DLLS]=[]; + @$target[$T_LIBRARY_PATH]=[]; + @$target[$T_LIBRARIES]=[]; +} + + + +##### +# +# Project modelization +# +##### + +# First we have the notion of project. A project is described by an +# array (since we don't have structs in perl). The constants below +# identify what is stored at each index of the array. + +## +# This is the path in which this project is located. In other +# words, this is the path to the Makefile. +my $P_PATH=0; + +## +# This index contains a reference to an array containing the project-wide +# settings. The structure of that array is actually identical to that of +# a regular target since it can also contain extra sources. +my $P_SETTINGS=1; + +## +# This index contains a reference to an array of targets for this +# project. Each target describes how an executable or library is to +# be built. For each target this description takes the same form as +# that of the project: an array. So this entry is an array of arrays. +my $P_TARGETS=2; + +## +# Initialize a project: +# - set the project's path +# - initialize the target list +# - create a default target (will be removed later if unnecessary) +sub project_init($$$) +{ + my ($project, $path, $global_settings)=@_; + + my $project_settings=[]; + target_init($project_settings); + @$project_settings[$T_DEFINES]=[@{@$global_settings[$T_DEFINES]}]; + @$project_settings[$T_INCLUDE_PATH]=[@{@$global_settings[$T_INCLUDE_PATH]}]; + @$project_settings[$T_DLL_PATH]=[@{@$global_settings[$T_DLL_PATH]}]; + @$project_settings[$T_DLLS]=[@{@$global_settings[$T_DLLS]}]; + @$project_settings[$T_LIBRARY_PATH]=[@{@$global_settings[$T_LIBRARY_PATH]}]; + @$project_settings[$T_LIBRARIES]=[@{@$global_settings[$T_LIBRARIES]}]; + + @$project[$P_PATH]=$path; + @$project[$P_SETTINGS]=$project_settings; + @$project[$P_TARGETS]=[]; +} + + + +##### +# +# Global variables +# +##### + +my %warnings; + +my %templates; + +## +# This maps a directory name to a reference to an array listing +# its contents (files and directories) +my %directories; + +## +# Contains the list of all projects. This list tells us what are +# the subprojects of the main Makefile and where we have to generate +# Makefiles. +my @projects=(); + +## +# This is the main project, i.e. the one in the "." directory. +# It may well be empty in which case the main Makefile will only +# call out subprojects. +my @main_project; + +## +# Contains the defaults for the include path, etc. +# We store the defaults as if this were a target except that we only +# exploit the defines, include path, library path, library list and misc +# sources fields. +my @global_settings; + + + +##### +# +# Utility functions +# +##### + +## +# Cleans up a name to make it an acceptable Makefile +# variable name. +sub canonize($) +{ + my $name=$_[0]; + + $name =~ tr/a-zA-Z0-9_/_/c; + return $name; +} + +## +# Returns true is the specified pathname is absolute. +# Note: pathnames that start with a variable '$' or +# '~' are considered absolute. +sub is_absolute($) +{ + my $path=$_[0]; + + return ($path =~ /^[\/~\$]/); +} + +## +# Retrieves the contents of the specified directory. +# We either get it from the directories hashtable which acts as a +# cache, or use opendir, readdir, closedir and store the result +# in the hashtable. +sub get_directory_contents($) +{ + my $dirname=$_[0]; + my $directory; + + #print "getting the contents of $dirname\n"; + + # check for a cached version + $dirname =~ s+/$++; + if ($dirname eq "") { + $dirname=cwd; + } + $directory=$directories{$dirname}; + if (defined $directory) { + #print "->@$directory\n"; + return $directory; + } + + # Read this directory + if (opendir(DIRECTORY, "$dirname")) { + my @files=readdir DIRECTORY; + closedir(DIRECTORY); + $directory=\@files; + } else { + # Return an empty list + #print "error: cannot open $dirname\n"; + my @files; + $directory=\@files; + } + #print "->@$directory\n"; + $directories{$dirname}=$directory; + return $directory; +} + +## +# Removes a directory from the cache. +# This is needed if one of its files or subdirectory has been renamed. +sub clear_directory_cache($) +{ + my ($dirname)=@_; + delete $directories{$dirname}; +} + + +##### +# +# 'Source'-based Project analysis +# +##### + +## +# Allows the user to specify makefile and target specific options +# - target: the structure in which to store the results +# - options: the string containing the options +sub source_set_options($$) +{ + my $target=$_[0]; + my $options=$_[1]; + + #FIXME: we must deal with escaping of stuff and all + foreach my $option (split / /,$options) { + if (@$target[$T_TYPE] == $TT_SETTINGS and $option =~ /^-D/) { + push @{@$target[$T_DEFINES]},$option; + } elsif (@$target[$T_TYPE] == $TT_SETTINGS and $option =~ /^-I/) { + push @{@$target[$T_INCLUDE_PATH]},$option; + } elsif ($option =~ /^-P/) { + push @{@$target[$T_DLL_PATH]},"-L$'"; + } elsif ($option =~ /^-i/) { + push @{@$target[$T_DLLS]},"$'"; + } elsif ($option =~ /^-L/) { + push @{@$target[$T_LIBRARY_PATH]},$option; + } elsif ($option =~ /^-l/) { + push @{@$target[$T_LIBRARIES]},"$'"; + } elsif ($option =~ /^--mfc/) { + @$target[$T_FLAGS]|=$TF_MFC; + @$target[$T_FLAGS]&=~$TF_NOMFC; + } elsif ($option =~ /^--nomfc/) { + @$target[$T_FLAGS]&=~$TF_MFC; + @$target[$T_FLAGS]|=$TF_NOMFC; + } elsif ($option =~ /^--nodlls/) { + @$target[$T_FLAGS]|=$TF_NODLLS; + } elsif ($option =~ /^--nomsvcrt/) { + @$target[$T_FLAGS]|=$TF_NOMSVCRT; + } else { + print STDERR "error: unknown option \"$option\"\n"; + return 0; + } + } + return 1; +} + +## +# Scans the specified project file to: +# - get a list of targets for this project +# - get some settings +# - get the list of source files +sub source_scan_project_file($$$); +sub source_scan_project_file($$$) +{ + # a reference to the parent's project + my $parent_project=$_[0]; + # 0 if it is a single project, 1 if it is part of a workspace + my $is_sub_project=$_[1]; + # the name of the project file, with complete path, or without if in + # the same directory + my $filename=$_[2]; + + # reference to the project for this file. May not be used + my $project; + # list of sources found in the current file + my @sources_c=(); + my @sources_cxx=(); + my @sources_rc=(); + my @sources_misc=(); + # some more settings + my $path=dirname($filename); + my $prj_target_cflags; + my $prj_target_defines; + my $prj_target_ldflags; + my $prj_target_libs; + my $prj_name; + my $found_cfg=0; + my $prj_cfg; + my $prj_target_type=$TT_GUIEXE; + my @prj_target_options; + + if (!($path=~/\/$/)) { + $path.="/"; + } + + $project=$parent_project; + my $project_settings=@$project[$P_SETTINGS]; + + if ($filename =~ /.dsp$/i) { + # First find out what this project file contains: + # collect all sources, find targets and settings + if (!open(FILEI,$filename)) { + print STDERR "error: unable to open $filename for reading:\n"; + print STDERR " $!\n"; + return; + } + my $sfilet; + while () { + # Remove any trailing CtrlZ, which isn't strictly in the file + if (/\x1A/) { + s/\x1A//; + last if (/^$/) + } + + # Remove any trailing CrLf + s/\r\n$/\n/; + if (!/\n$/) { + # Make sure all lines are '\n' terminated + $_ .= "\n"; + } + + if (/^\# Microsoft Developer Studio Project File - Name=\"([^\"]+)/) { + $prj_name="$1"; + $prj_name=~s/\s+/_/g; + #print $prj_name; + next; + } elsif (/^# TARGTYPE/) { + if (/[[:space:]]0+x0*101$/) { + # Application + $prj_target_type=$TT_GUIEXE; + }elsif (/[[:space:]]0+x0*102$/) { + # Dynamic-Link Library + $prj_target_type=$TT_DLL; + }elsif (/[[:space:]]0+x0*103$/) { + # Console Application + $prj_target_type=$TT_CUIEXE; + }elsif (/[[:space:]]0+x0*104$/) { + # Static Library + $prj_target_type=$TT_LIB; + } + next; + } elsif (/^# ADD CPP(.*)/ && $found_cfg==1) { + $prj_target_cflags=$1; + @prj_target_options=split(/\s+\//, $prj_target_cflags); + $prj_target_cflags=""; + foreach ( @prj_target_options ) { + if ($_ eq "") { + # empty + } elsif (/nologo/) { + # Suppress Startup Banner and Information Messages + } elsif (/^W0$/) { + # Turns off all warning messages + $prj_target_cflags.="-w "; + } elsif (/^W[123]$/) { + # Warning Level + $prj_target_cflags.="-W "; + } elsif (/^W4$/) { + # Warning Level + $prj_target_cflags.="-Wall "; + } elsif (/^WX$/) { + # Warnings As Errors + $prj_target_cflags.="-Werror "; + } elsif (/^Gm$/) { + # Enable Minimal Rebuild + } elsif (/^GX$/) { + # Enable Exception Handling + $prj_target_cflags.="-fexceptions "; + } elsif (/^Gd$/) { + # use cdecl calling convention (default) + } elsif (/^Gr$/) { + # use fastcall calling convention + } elsif (/^Gz$/) { + # use stdcall calling convention + $prj_target_cflags.="-mrtd "; + } elsif (/^Z[d7iI]$/) { + # Debug Info + $prj_target_cflags.="-g "; + } elsif (/^Od$/) { + # Disable Optimizations + $prj_target_cflags.="-O0 "; + } elsif (/^O1$/) { + # Minimize Size + $prj_target_cflags.="-Os "; + } elsif (/^O2$/) { + # Maximize Speed + $prj_target_cflags.="-O2 "; + } elsif (/^Ob0$/) { + # Disables inline Expansion + $prj_target_cflags.="-fno-inline "; + } elsif (/^Ob1$/) { + #In-line Function Expansion + $prj_target_cflags.="-finline-functions "; + } elsif (/^Ob2$/) { + # auto In-line Function Expansion + $prj_target_cflags.="-finline-functions "; + } elsif (/^Ox$/) { + # Use maximum optimization + $prj_target_cflags.="-O3 "; + } elsif (/^Oy$/) { + # Frame-Pointer Omission + $prj_target_cflags.="-fomit-frame-pointer "; + } elsif (/^Oy-$/) { + # Frame-Pointer Omission + $prj_target_cflags.="-fno-omit-frame-pointer "; + } elsif (/^GZ$/) { + # Catch Release-Build Errors in Debug Build + } elsif (/^M[DLT]d?$/) { + # Use Multithreaded Run-Time Library + } elsif (/^D\s*\"(.*)\"/) { + # Preprocessor Definitions + $prj_target_defines.="-D".$1." "; + } elsif (/^I\s*\"(.*)\"/) { + # Additional Include Directories + $sfilet=$1; + $sfilet=~s/\\/\//g; + my @compinc=split /\/+/, $sfilet; + my $realinc=search_from($path, \@compinc); + if (defined $realinc) { + $sfilet=$realinc; + } + if ($sfilet=~/^\w:/) { + print STDERR "warning: Can't fix path $sfilet\n" + } else { + push @{@$project_settings[$T_INCLUDE_PATH]},"-I".$sfilet." "; + } + } elsif (/^U\s*\"(.*)\"/) { + # Undefines a previously defined symbol + $prj_target_cflags.="-U".$1." "; + } elsif (/^Fp/) { + # Name .PCH File + } elsif (/^F[Rr]/) { + # Create .SBR File + } elsif (/^YX$/) { + # Automatic Use of Precompiled Headers + } elsif (/^FD$/) { + # Generate File Dependencies + } elsif (/^c$/) { + # Compile Without Linking + # this option is always present and is already specified in the suffix rules + } elsif (/^GB$/) { + # Blend Optimization + $prj_target_cflags.="-D_M_IX86=500 "; + } elsif (/^G6$/) { + # Pentium Pro Optimization + $prj_target_cflags.="-D_M_IX86=600 "; + } elsif (/^G5$/) { + # Pentium Optimization + $prj_target_cflags.="-D_M_IX86=500 "; + } elsif (/^G3$/) { + # 80386 Optimization + $prj_target_cflags.="-D_M_IX86=300 "; + } elsif (/^G4$/) { + # 80486 Optimization + $prj_target_cflags.="-D_M_IX86=400 "; + } elsif (/^Yc/) { + # Create Precompiled Header + } elsif (/^Yu/) { + # Use Precompiled Header + } elsif (/^Za$/) { + # Disable Language Extensions + $prj_target_cflags.="-ansi "; + } elsif (/^Ze$/) { + # Enable Microsoft Extensions + } elsif (/^Zm[[:digit:]]+$/) { + # Specify Memory Allocation Limit + } elsif (/^Zp1?$/) { + # Packs structures on 1-byte boundaries + $prj_target_cflags.="-fpack-struct "; + } elsif (/^Zp(2|4|8|16)$/) { + # Struct Member Alignment + $prj_target_cflags.="-fpack-struct=".$1; + } else { + print "C compiler option $_ not implemented\n"; + } + } + + #print "\nOptions: $prj_target_cflags\n"; + next; + } elsif (/^# ADD LINK32(.*)/ && $found_cfg==1) { + $prj_target_ldflags=$1; + @prj_target_options=split(/\s+\//, $prj_target_ldflags); + $prj_target_ldflags=""; + $prj_target_libs=$prj_target_options[0]; + $prj_target_libs=~s/\\/\//g; + $prj_target_libs=~s/\.lib//g; + $prj_target_libs=~s/\s+/ -l/g; + shift (@prj_target_options); + foreach ( @prj_target_options ) { + if ($_ eq "") { + # empty + } elsif (/^base:(.*)/) { + # Base Address + $prj_target_ldflags.="--image-base ".$1." "; + } elsif (/^debug$/) { + # Generate Debug Info + } elsif (/^dll$/) { + # Build a DLL + $prj_target_type=$TT_DLL; + } elsif (/^incremental:[[:alpha:]]+$/) { + # Link Incrementally + } elsif (/^implib:/) { + # Name import library + } elsif (/^libpath:\"(.*)\"/) { + # Additional Libpath + push @{@$project_settings[$T_DLL_PATH]},"-L$1"; + } elsif (/^machine:[[:alnum:]]+$/) { + # Specify Target Platform + } elsif (/^map/) { + # Generate Mapfile + if (/^map:(.*)/) { + $prj_target_ldflags.="-Map ".$1." "; + } else { + $prj_target_ldflags.="-Map ".$prj_name.".map "; + } + } elsif (/^nologo$/) { + # Suppress Startup Banner and Information Messages + } elsif (/^out:/) { + # Output File Name + # may use it as Target? + } elsif (/^pdbtype:/) { + # Program Database Storage + } elsif (/^subsystem:/) { + # Specify Subsystem + } elsif (/^version:[[:digit:].]+$/) { + # Version Information + } else { + print "Linker option $_ not implemented\n"; + } + } + next; + } elsif (/^LIB32=/ && $found_cfg==1) { + #$libflag = 1; + next; + } elsif (/^SOURCE=(.*)$/) { + my @components=split /[\/\\]+/, $1; + $sfilet=search_from($path, \@components); + if (!defined $sfilet) { next; } + if ($sfilet =~ /\.c$/i and $sfilet !~ /\.(dbg|spec)\.c$/) { + push @sources_c,$sfilet; + } elsif ($sfilet =~ /\.cpp$/i) { + if ($sfilet =~ /^stdafx.cpp$/i && !(@$project_settings[$T_FLAGS] & $TF_NOMFC)) { + push @sources_misc,$sfilet; + @$project_settings[$T_FLAGS]|=$TF_MFC; + } else { + push @sources_cxx,$sfilet; + } + } elsif ($sfilet =~ /\.cxx$/i) { + @$project_settings[$T_FLAGS]|=$TF_HASCXX; + push @sources_cxx,$sfilet; + } elsif ($sfilet =~ /\.rc$/i) { + push @sources_rc,$sfilet; + } elsif ($sfilet =~ /\.def$/i) { + @$project_settings[$T_FLAGS]|=$TF_HASDEF; + } elsif ($sfilet =~ /\.(h|hxx|hpp|inl|rc2|dlg)$/i) { + push @sources_misc,$sfilet; + if ($sfilet =~ /^stdafx.h$/i && !(@$project_settings[$T_FLAGS] & $TF_NOMFC)) { + @$project_settings[$T_FLAGS]|=$TF_MFC; + } + } + next; + + } elsif (/^# (Begin|End) Source File/) { + # Source-Files already handled + next; + } elsif (/^# (Begin|End) Group/) { + # Groups are ignored + next; + } elsif (/^# (Begin|End) Custom Build/) { + # Custom Builds are ignored + next; + } elsif (/^# ADD LIB32 /) { + #"ARFLAGS=rus" + next; + } elsif (/^# Begin Target$/) { + # Targets are ignored + next; + } elsif (/^# End Target$/) { + # Targets are ignored + next; + } elsif (/^!/) { + if ($found_cfg == 1) { + $found_cfg=0; + } + if (/if (.*)\(CFG\)" == "(.*)"/i) { + if ($2 eq $prj_cfg) { + $found_cfg=1; + } + } + next; + } elsif (/^CFG=(.*)/i) { + $prj_cfg=$1; + next; + } + else { # Line recognized + # print "|\n"; + } + } + close(FILEI); + + push @{@$project_settings[$T_LIBRARIES]},$prj_target_libs; + push @{@$project_settings[$T_CEXTRA]},$prj_target_cflags; + push @{@$project_settings[$T_CXXEXTRA]},$prj_target_cflags; + push @{@$project_settings[$T_DEFINES]},$prj_target_defines; + push @{@$project_settings[$T_LDFLAGS]},$prj_target_ldflags; + } elsif ($filename =~ /.vcproj$/i) { + eval { + require XML::LibXML; + }; + if ($@) { + die "Error: You need the libxml package (deb: libxml-libxml-perl, rpm: perl-libxml-perl)"; + } + + my $xmlparser = XML::LibXML->new(); + my $project_xml = $xmlparser->parse_file($filename); + my $sfilet; + my $configt; + + foreach my $vc_project ($project_xml->findnodes('/VisualStudioProject')) { + foreach my $vc_project_attr ($vc_project->attributes) { + if ($vc_project_attr->getName eq "Name") { + $prj_name=$vc_project_attr->getValue; + $prj_name=~s/\s+/_/g; + last; + } + } + } + + for (my $flevel = 0; $flevel <= 5; $flevel++) { + foreach my $vc_file ($project_xml->findnodes('/VisualStudioProject/Files/'.('Filter/' x $flevel).'File')) { + foreach my $vc_file_attr ($vc_file->attributes) { + if ($vc_file_attr->getName eq "RelativePath") { + $sfilet = $vc_file_attr->getValue; + $sfilet=~s/\\\\/\\/g; #remove double backslash + $sfilet=~s/^\.\\//; #remove starting 'this directory' + $sfilet=~s/\\/\//g; #make slashes out of backslashes + my @compsrc=split(/\/+/, $sfilet); + my $realsrc=search_from($path, \@compsrc); + if (defined $realsrc) { + $sfilet=$realsrc; + } + if ($sfilet =~ /\.c$/i and $sfilet !~ /\.(dbg|spec)\.c$/) { + push @sources_c,$sfilet; + } elsif ($sfilet =~ /\.cpp$/i) { + if ($sfilet =~ /^stdafx.cpp$/i && !(@$project_settings[$T_FLAGS] & $TF_NOMFC)) { + push @sources_misc,$sfilet; + @$project_settings[$T_FLAGS]|=$TF_MFC; + } else { + push @sources_cxx,$sfilet; + } + } elsif ($sfilet =~ /\.cxx$/i) { + @$project_settings[$T_FLAGS]|=$TF_HASCXX; + push @sources_cxx,$sfilet; + } elsif ($sfilet =~ /\.rc$/i) { + push @sources_rc,$sfilet; + } elsif ($sfilet =~ /\.def$/i) { + @$project_settings[$T_FLAGS]|=$TF_HASDEF; + } elsif ($sfilet =~ /\.(h|hxx|hpp|inl|rc2|dlg)$/i) { + push @sources_misc,$sfilet; + if ($sfilet =~ /^stdafx.h$/i && !(@$project_settings[$T_FLAGS] & $TF_NOMFC)) { + @$project_settings[$T_FLAGS]|=$TF_MFC; + } + } + } + } + } + } + + my @vc_configurations = $project_xml->findnodes('/VisualStudioProject/Configurations/Configuration'); + my $vc_configuration = $vc_configurations[0]; + foreach my $vc_configuration_attr ($vc_configuration->attributes) { + if ($vc_configuration_attr->getName eq "ConfigurationType") { + if ($vc_configuration_attr->getValue==1) { + $prj_target_type=$TT_GUIEXE; # Application + } elsif ($vc_configuration_attr->getValue==2) { + $prj_target_type=$TT_DLL; # Dynamic-Link Library + } elsif ($vc_configuration_attr->getValue==4) { + $prj_target_type=$TT_LIB; # Static Library + } + } + } + + foreach my $vc_configuration_tools ($vc_configuration->findnodes('Tool')) { + my @find_tool = $vc_configuration_tools->attributes; + if ($find_tool[0]->getValue eq "VCCLCompilerTool") { + foreach my $vc_compiler_tool ($vc_configuration_tools->attributes) { + if ($vc_compiler_tool->getName eq "Optimization") {$prj_target_cflags.="-O".$vc_compiler_tool->getValue." ";} + if ($vc_compiler_tool->getName eq "WarningLevel") { + if ($vc_compiler_tool->getValue==0) { + $prj_target_cflags.="-w "; + } elsif ($vc_compiler_tool->getValue<4) { + $prj_target_cflags.="-W "; + } elsif ($vc_compiler_tool->getValue==4) { + $prj_target_cflags.="-Wall "; + } elsif ($vc_compiler_tool->getValue eq "X") { + $prj_target_cflags.="-Werror "; + } + } + if ($vc_compiler_tool->getName eq "PreprocessorDefinitions") { + $configt=$vc_compiler_tool->getValue; + $configt=~s/;+$//; + $configt=~s/;\s*/ -D/g; + $prj_target_defines.="-D".$configt." "; + } + if ($vc_compiler_tool->getName eq "AdditionalIncludeDirectories") { + $configt=$vc_compiler_tool->getValue; + $configt=~s/\\/\//g; + my @addincl = split(/\s*;\s*/, $configt); + foreach $configt (@addincl) { + my @compinc=split(/\/+/, $configt); + my $realinc=search_from($path, \@compinc); + if (defined $realinc) { + $configt=$realinc; + } + push @{@$project_settings[$T_INCLUDE_PATH]},"-I".$configt; + } + } + } + } + if ($find_tool[0]->getValue eq "VCLinkerTool") { + foreach my $vc_linker_tool ($vc_configuration_tools->attributes) { + if ($vc_linker_tool->getName eq "AdditionalDependencies") { + $prj_target_libs=" ".$vc_linker_tool->getValue; + $prj_target_libs=~s/\\/\//g; + $prj_target_libs=~s/\.lib//g; + $prj_target_libs=~s/\s+/ -l/g; + } + } + } + } + + push @{@$project_settings[$T_LIBRARIES]},$prj_target_libs; + push @{@$project_settings[$T_CEXTRA]},$prj_target_cflags; + push @{@$project_settings[$T_CXXEXTRA]},$prj_target_cflags; + push @{@$project_settings[$T_DEFINES]},$prj_target_defines; + } else { + print STDERR "File format not supported for file: $filename\n"; + return; + } + + # Add this project to the project list, except for + # the main project which is already in the list. + if ($is_sub_project == 1) { + push @projects,$project; + } + + # Ask for project-wide options + if ($opt_ask_project_options == $OPT_ASK_YES) { + my $flag_desc=""; + if ((@$project_settings[$T_FLAGS] & $TF_MFC)!=0) { + $flag_desc="mfc"; + } + print "* Type any project-wide options (-D/-I/-P/-i/-L/-l/--mfc),\n"; + if (defined $flag_desc) { + print "* (currently $flag_desc)\n"; + } + print "* or 'skip' to skip the target specific options,\n"; + print "* or 'never' to not be asked this question again:\n"; + while (1) { + my $options=; + chomp $options; + if ($options eq "skip") { + $opt_ask_target_options=$OPT_ASK_SKIP; + last; + } elsif ($options eq "never") { + $opt_ask_project_options=$OPT_ASK_NO; + last; + } elsif (source_set_options($project_settings,$options)) { + last; + } + print "Please re-enter the options:\n"; + } + } + + # Create the target... + my $target=[]; + target_init($target); + + if ($prj_target_type==$TT_GUIEXE or $prj_target_type==$TT_CUIEXE) { + $prj_name=lc($prj_name.".exe"); + @$target[$T_TYPE]=$opt_target_type; + push @{@$target[$T_LDFLAGS]},(@$target[$T_TYPE] == $TT_CUIEXE ? "-mconsole" : "-mwindows"); + } elsif ($prj_target_type==$TT_LIB) { + $prj_name=lc("lib".$prj_name.".a"); + @$target[$T_TYPE]=$TT_LIB; + push @{@$target[$T_ARFLAGS]},("rc"); + } else { + $prj_name=lc($prj_name.".dll"); + @$target[$T_TYPE]=$TT_DLL; + my $canon=canonize($prj_name); + if (@$project_settings[$T_FLAGS] & $TF_HASDEF) { + push @{@$target[$T_LDFLAGS]},("-shared","\$(${canon}_MODULE:.dll=.def)"); + } else { + push @{@$target[$T_LDFLAGS]},("-shared","\$(${canon}_MODULE:.dll=.spec)"); + } + } + + @$target[$T_NAME]=$prj_name; + @$target[$T_FLAGS]|=@$project_settings[$T_FLAGS]; + + # This is the default link list of Visual Studio + my @std_imports=qw(odbc32 ole32 oleaut32 winspool odbccp32); + my @std_libraries=qw(uuid); + if ((@$target[$T_FLAGS] & $TF_NODLLS) == 0) { + @$target[$T_DLLS]=\@std_imports; + @$target[$T_LIBRARIES]=\@std_libraries; + } else { + @$target[$T_DLLS]=[]; + @$target[$T_LIBRARIES]=[]; + } + if ((@$target[$T_FLAGS] & $TF_NOMSVCRT) == 0) { + push @{@$target[$T_LDFLAGS]},"-mno-cygwin"; + if ($opt_arch != $OPT_ARCH_DEFAULT) { + push @{@$target[$T_LDFLAGS]},"-m$opt_arch"; + } + } + push @{@$project[$P_TARGETS]},$target; + + # Ask for target-specific options + if ($opt_ask_target_options == $OPT_ASK_YES) { + my $flag_desc=""; + if ((@$target[$T_FLAGS] & $TF_MFC)!=0) { + $flag_desc=" (mfc"; + } + if ($flag_desc ne "") { + $flag_desc.=")"; + } + print "* Specify any link option (-P/-i/-L/-l/--mfc) specific to the target\n"; + print "* \"$prj_name\"$flag_desc or 'never' to not be asked this question again:\n"; + while (1) { + my $options=; + chomp $options; + if ($options eq "never") { + $opt_ask_target_options=$OPT_ASK_NO; + last; + } elsif (source_set_options($target,$options)) { + last; + } + print "Please re-enter the options:\n"; + } + } + if (@$target[$T_FLAGS] & $TF_MFC) { + @$project_settings[$T_FLAGS]|=$TF_MFC; + push @{@$target[$T_DLL_PATH]},"\$(MFC_LIBRARY_PATH)"; + push @{@$target[$T_DLLS]},"mfc.dll"; + # FIXME: Link with the MFC in the Unix sense, until we + # start exporting the functions properly. + push @{@$target[$T_LIBRARY_PATH]},"\$(MFC_LIBRARY_PATH)"; + push @{@$target[$T_LIBRARIES]},"mfc"; + } + + # Match sources... + push @{@$target[$T_SOURCES_C]},@{@$project_settings[$T_SOURCES_C]},@sources_c; + @$project_settings[$T_SOURCES_C]=[]; + @sources_c=(); + push @{@$target[$T_SOURCES_CXX]},@{@$project_settings[$T_SOURCES_CXX]},@sources_cxx; + @$project_settings[$T_SOURCES_CXX]=[]; + @sources_cxx=(); + push @{@$target[$T_SOURCES_RC]},@{@$project_settings[$T_SOURCES_RC]},@sources_rc; + @$project_settings[$T_SOURCES_RC]=[]; + @sources_rc=(); + push @{@$target[$T_SOURCES_MISC]},@{@$project_settings[$T_SOURCES_MISC]},@sources_misc; + @$project_settings[$T_SOURCES_MISC]=[]; + @sources_misc=(); + + @$target[$T_SOURCES_C]=[sort @{@$target[$T_SOURCES_C]}]; + @$target[$T_SOURCES_CXX]=[sort @{@$target[$T_SOURCES_CXX]}]; + @$target[$T_SOURCES_RC]=[sort @{@$target[$T_SOURCES_RC]}]; + @$target[$T_SOURCES_MISC]=[sort @{@$target[$T_SOURCES_MISC]}]; + + if ($opt_ask_target_options == $OPT_ASK_SKIP) { + $opt_ask_target_options=$OPT_ASK_YES; + } + + if ((@$project_settings[$T_FLAGS] & $TF_NOMSVCRT) == 0) { + push @{@$project_settings[$T_CEXTRA]},"-mno-cygwin"; + if ($opt_arch != $OPT_ARCH_DEFAULT) { + push @{@$project_settings[$T_CEXTRA]},"-m$opt_arch"; + push @{@$project_settings[$T_CXXEXTRA]},"-m$opt_arch"; + } + } + + if (@$project_settings[$T_FLAGS] & $TF_MFC) { + push @{@$project_settings[$T_INCLUDE_PATH]},"\$(MFC_INCLUDE_PATH)"; + } + # The sources that did not match, if any, go to the extra + # source list of the project settings + foreach my $source (@sources_c) { + if ($source ne "") { + push @{@$project_settings[$T_SOURCES_C]},$source; + } + } + @$project_settings[$T_SOURCES_C]=[sort @{@$project_settings[$T_SOURCES_C]}]; + foreach my $source (@sources_cxx) { + if ($source ne "") { + push @{@$project_settings[$T_SOURCES_CXX]},$source; + } + } + @$project_settings[$T_SOURCES_CXX]=[sort @{@$project_settings[$T_SOURCES_CXX]}]; + foreach my $source (@sources_rc) { + if ($source ne "") { + push @{@$project_settings[$T_SOURCES_RC]},$source; + } + } + @$project_settings[$T_SOURCES_RC]=[sort @{@$project_settings[$T_SOURCES_RC]}]; + foreach my $source (@sources_misc) { + if ($source ne "") { + push @{@$project_settings[$T_SOURCES_MISC]},$source; + } + } + @$project_settings[$T_SOURCES_MISC]=[sort @{@$project_settings[$T_SOURCES_MISC]}]; +} + +## +# Scans the specified workspace file to find the project files +sub source_scan_workspace_file($); +sub source_scan_workspace_file($) +{ + my $filename=$_[0]; + my $path=dirname($filename); + my @components; + + if (! -e $filename) { + return; + } + + if (!open(FILEIWS,$filename)) { + print STDERR "error: unable to open $filename for reading:\n"; + print STDERR " $!\n"; + return; + } + + my $prj_name; + my $prj_path; + + if ($filename =~ /.dsw$/i) { + while () { + # Remove any trailing CrLf + s/\r\n$/\n/; + + # catch a project definition + if (/^Project:\s\"(.*)\"=(.*)\s-/) { + $prj_name=$1; + $prj_path=$2; + @components=split /[\/\\]+/, $prj_path; + $prj_path=search_from($path, \@components); + print "Name: $prj_name\nPath: $prj_path\n"; + source_scan_project_file(\@main_project,1,$prj_path); + next; + } elsif (/^#/) { + # ignore Comments + } elsif (/^Global:/) { + # ignore the Global section + } elsif (/\w:/) { + print STDERR "unknown section $_\n"; + } elsif (/^Microsoft(.*)Studio(.*)File,\sFormat Version\s(.*)/) { + print "\nFileversion: $3\n"; + } + } + close(FILEIWS); + } elsif ($filename =~ /.sln$/i) { + while () { + # Remove any trailing CrLf + s/\r\n$/\n/; + + # catch a project definition + if (/^Project(.*)=\s*"(.*)",\s*"(.*)",\s*"(.*)"/) { + $prj_name=$2; + $prj_path=$3; + if ($prj_path eq "Solution Items") { next; } + @components=split /[\/\\]+/, $3; + $prj_path=search_from($path, \@components); + print "Name: $prj_name\nPath: $prj_path\n"; + source_scan_project_file(\@main_project,1,$prj_path); + next; + } elsif (/^Microsoft(.*)Studio(.*)File,\sFormat Version\s(.*)/) { + print "\nFileversion: $3\n"; + } + } + close(FILEIWS); + } + + @projects=sort { @$a[$P_PATH] cmp @$b[$P_PATH] } @projects; +} + +## +# Scans the specified directory to: +# - see if we should create a Makefile in this directory. We normally do +# so if we find a project file and sources +# - get a list of targets for this directory +# - get the list of source files +sub source_scan_directory($$$$); +sub source_scan_directory($$$$) +{ + # a reference to the parent's project + my $parent_project=$_[0]; + # the full relative path to the current directory, including a + # trailing '/', or an empty string if this is the top level directory + my $path=$_[1]; + # the name of this directory, including a trailing '/', or an empty + # string if this is the top level directory + my $dirname=$_[2]; + # if set then no targets will be looked for and the sources will all + # end up in the parent_project's 'misc' bucket + my $no_target=$_[3]; + + # reference to the project for this directory. May not be used + my $project; + # list of targets found in the 'current' directory + my %targets; + # list of sources found in the current directory + my @sources_c=(); + my @sources_cxx=(); + my @sources_rc=(); + my @sources_misc=(); + # true if this directory contains a Windows project + my $has_win_project=0; + # true if this directory contains headers + my $has_headers=0; + # If we don't find any executable/library then we might make up targets + # from the list of .dsp/.mak files we find since they usually have the + # same name as their target. + my @prj_files=(); + my @mak_files=(); + + if (defined $opt_single_target or $dirname eq "") { + # Either there is a single target and thus a single project, + # or we are in the top level directory for which a project + # already exists + $project=$parent_project; + } else { + $project=[]; + project_init($project, $path, \@global_settings); + } + my $project_settings=@$project[$P_SETTINGS]; + + # First find out what this directory contains: + # collect all sources, targets and subdirectories + my $directory=get_directory_contents($path); + foreach my $dentry (@$directory) { + if ($dentry =~ /^\./) { + next; + } + my $fullentry="$path$dentry"; + if (-d "$fullentry") { + if ($dentry =~ /^(Release|Debug)/i) { + # These directories are often used to store the object files and the + # resulting executable/library. They should not contain anything else. + my @candidates=grep /\.(exe|dll|lib)$/i, @{get_directory_contents("$fullentry")}; + foreach my $candidate (sort @candidates) { + my $dlldup = $candidate; + $dlldup =~ s/\.lib$/.dll/; + if ($candidate =~ /\.lib$/ and $targets{$dlldup}) + { + # Often lib files are created together with dll files, even if the dll file is the + # real target. + next; + } + $targets{$candidate}=1; + } + } elsif ($dentry =~ /^include/i) { + # This directory must contain headers we're going to need + push @{@$project_settings[$T_INCLUDE_PATH]},"-I$dentry"; + source_scan_directory($project,"$fullentry/","$dentry/",1); + } else { + # Recursively scan this directory. Any source file that cannot be + # attributed to a project in one of the subdirectories will be + # attributed to this project. + source_scan_directory($project,"$fullentry/","$dentry/",$no_target); + } + } elsif (-f "$fullentry") { + if ($dentry =~ /\.(exe|dll|lib)$/i) { + $targets{$dentry}=1; + } elsif ($dentry =~ /\.c$/i and $dentry !~ /\.(dbg|spec)\.c$/) { + push @sources_c,"$dentry"; + } elsif ($dentry =~ /\.cpp$/i) { + if ($dentry =~ /^stdafx.cpp$/i && !(@$project_settings[$T_FLAGS] & $TF_NOMFC)) { + push @sources_misc,"$dentry"; + @$project_settings[$T_FLAGS]|=$TF_MFC; + } else { + push @sources_cxx,"$dentry"; + } + } elsif ($dentry =~ /\.cxx$/i) { + @$project_settings[$T_FLAGS]|=$TF_HASCXX; + push @sources_cxx,"$dentry"; + } elsif ($dentry =~ /\.rc$/i) { + push @sources_rc,"$dentry"; + } elsif ($dentry =~ /\.def$/i) { + @$project_settings[$T_FLAGS]|=$TF_HASDEF; + } elsif ($dentry =~ /\.(h|hxx|hpp|inl|rc2|dlg)$/i) { + $has_headers=1; + push @sources_misc,"$dentry"; + if ($dentry =~ /^stdafx.h$/i && !(@$project_settings[$T_FLAGS] & $TF_NOMFC)) { + @$project_settings[$T_FLAGS]|=$TF_MFC; + } + } elsif ($dentry =~ /\.(dsp|vcproj)$/i) { + push @prj_files,"$dentry"; + $has_win_project=1; + } elsif ($dentry =~ /\.mak$/i) { + push @mak_files,"$dentry"; + $has_win_project=1; + } elsif ($dentry =~ /^makefile/i) { + $has_win_project=1; + } + } + } + + if ($has_headers) { + push @{@$project_settings[$T_INCLUDE_PATH]},"-I."; + } + # If we have a single target then all we have to do is assign + # all the sources to it and we're done + # FIXME: does this play well with the --interactive mode? + if ($opt_single_target) { + my $target=@{@$project[$P_TARGETS]}[0]; + push @{@$target[$T_SOURCES_C]},map "$path$_",@sources_c; + push @{@$target[$T_SOURCES_CXX]},map "$path$_",@sources_cxx; + push @{@$target[$T_SOURCES_RC]},map "$path$_",@sources_rc; + push @{@$target[$T_SOURCES_MISC]},map "$path$_",@sources_misc; + return; + } + if ($no_target) { + my $parent_settings=@$parent_project[$P_SETTINGS]; + push @{@$parent_settings[$T_SOURCES_MISC]},map "$dirname$_",@sources_c; + push @{@$parent_settings[$T_SOURCES_MISC]},map "$dirname$_",@sources_cxx; + push @{@$parent_settings[$T_SOURCES_MISC]},map "$dirname$_",@sources_rc; + push @{@$parent_settings[$T_SOURCES_MISC]},map "$dirname$_",@sources_misc; + push @{@$parent_settings[$T_SOURCES_MISC]},map "$dirname$_",@{@$project_settings[$T_SOURCES_MISC]}; + return; + } + + my $source_count=@sources_c+@sources_cxx+@sources_rc+ + @{@$project_settings[$T_SOURCES_C]}+ + @{@$project_settings[$T_SOURCES_CXX]}+ + @{@$project_settings[$T_SOURCES_RC]}; + if ($source_count == 0) { + # A project without real sources is not a project, get out! + if ($project!=$parent_project) { + my $parent_settings=@$parent_project[$P_SETTINGS]; + push @{@$parent_settings[$T_SOURCES_MISC]},map "$dirname$_",@sources_misc; + push @{@$parent_settings[$T_SOURCES_MISC]},map "$dirname$_",@{@$project_settings[$T_SOURCES_MISC]}; + } + return; + } + #print "targets=",%targets,"\n"; + #print "target_count=$target_count\n"; + #print "has_win_project=$has_win_project\n"; + #print "dirname=$dirname\n"; + + my $target_count; + if (($has_win_project != 0) or ($dirname eq "")) { + # Deal with cases where we could not find any executable/library, and + # thus have no target, although we did find some sort of windows project. + $target_count=keys %targets; + if ($target_count == 0) { + # Try to come up with a target list based on .dsp/.mak files + my $prj_list; + if (@prj_files > 0) { + print "Projectfile found! You might want to try using it directly.\n"; + $prj_list=\@prj_files; + } else { + $prj_list=\@mak_files; + } + foreach my $filename (@$prj_list) { + $filename =~ s/\.(dsp|vcproj|mak)$//i; + if ($opt_target_type == $TT_DLL) { + $filename = "$filename.dll"; + } + $targets{$filename}=1; + } + $target_count=keys %targets; + if ($target_count == 0) { + # Still nothing, try the name of the directory + my $name; + if ($dirname eq "") { + # Bad luck, this is the top level directory! + $name=(split /\//, cwd)[-1]; + } else { + $name=$dirname; + # Remove the trailing '/'. Also eliminate whatever is after the last + # '.' as it is likely to be meaningless (.orig, .new, ...) + $name =~ s+(/|\.[^.]*)$++; + if ($name eq "src") { + # 'src' is probably a subdirectory of the real project directory. + # Try again with the parent (if any). + my $parent=$path; + if ($parent =~ s+([^/]*)/[^/]*/$+$1+) { + $name=$parent; + } else { + $name=(split /\//, cwd)[-1]; + } + } + } + $name =~ s+(/|\.[^.]*)$++; + if ($opt_target_type == $TT_DLL) { + $name = canonize($name).".dll"; + } elsif ($opt_target_type == $TT_LIB) { + $name = "lib".canonize($name).".a"; + } else { + $name = canonize($name).".exe"; + } + $targets{$name}=1; + } + } + + # Ask confirmation to the user if he wishes so + if ($opt_is_interactive == $OPT_ASK_YES) { + my $target_list=join " ",keys %targets; + print "\n*** In ",($path?$path:"./"),"\n"; + print "* winemaker found the following list of (potential) targets\n"; + print "* $target_list\n"; + print "* Type enter to use it as is, your own comma-separated list of\n"; + print "* targets, 'none' to assign the source files to a parent directory,\n"; + print "* or 'ignore' to ignore everything in this directory tree.\n"; + print "* Target list:\n"; + $target_list=; + chomp $target_list; + if ($target_list eq "") { + # Keep the target list as is, i.e. do nothing + } elsif ($target_list eq "none") { + # Empty the target list + undef %targets; + } elsif ($target_list eq "ignore") { + # Ignore this subtree altogether + return; + } else { + undef %targets; + foreach my $target (split /,/,$target_list) { + $target =~ s+^\s*++; + $target =~ s+\s*$++; + $targets{$target}=1; + } + } + } + } + + # If we have no project at this level, then transfer all + # the sources to the parent project + $target_count=keys %targets; + if ($target_count == 0) { + if ($project!=$parent_project) { + my $parent_settings=@$parent_project[$P_SETTINGS]; + push @{@$parent_settings[$T_SOURCES_C]},map "$dirname$_",@sources_c; + push @{@$parent_settings[$T_SOURCES_CXX]},map "$dirname$_",@sources_cxx; + push @{@$parent_settings[$T_SOURCES_RC]},map "$dirname$_",@sources_rc; + push @{@$parent_settings[$T_SOURCES_MISC]},map "$dirname$_",@sources_misc; + push @{@$parent_settings[$T_SOURCES_MISC]},map "$dirname$_",@{@$project_settings[$T_SOURCES_MISC]}; + } + return; + } + + # Otherwise add this project to the project list, except for + # the main project which is already in the list. + if ($dirname ne "") { + push @projects,$project; + } + + # Ask for project-wide options + if ($opt_ask_project_options == $OPT_ASK_YES) { + my $flag_desc=""; + if ((@$project_settings[$T_FLAGS] & $TF_MFC)!=0) { + $flag_desc="mfc"; + } + print "* Type any project-wide options (-D/-I/-P/-i/-L/-l/--mfc),\n"; + if (defined $flag_desc) { + print "* (currently $flag_desc)\n"; + } + print "* or 'skip' to skip the target specific options,\n"; + print "* or 'never' to not be asked this question again:\n"; + while (1) { + my $options=; + chomp $options; + if ($options eq "skip") { + $opt_ask_target_options=$OPT_ASK_SKIP; + last; + } elsif ($options eq "never") { + $opt_ask_project_options=$OPT_ASK_NO; + last; + } elsif (source_set_options($project_settings,$options)) { + last; + } + print "Please re-enter the options:\n"; + } + } + + # - Create the targets + # - Check if we have both libraries and programs + # - Match each target with source files (sort in reverse + # alphabetical order to get the longest matches first) + my @local_dlls=(); + my @local_libs=(); + my @local_depends=(); + my @exe_list=(); + foreach my $target_name (map (lc, (sort { $b cmp $a } keys %targets))) { + # Create the target... + my $target=[]; + target_init($target); + @$target[$T_NAME]=$target_name; + @$target[$T_FLAGS]|=@$project_settings[$T_FLAGS]; + if ($target_name =~ /\.dll$/) { + @$target[$T_TYPE]=$TT_DLL; + push @local_depends,"$target_name.so"; + push @local_dlls,$target_name; + my $canon=canonize($target_name); + if (@$project_settings[$T_FLAGS] & $TF_HASDEF) { + push @{@$target[$T_LDFLAGS]},("-shared","\$(${canon}_MODULE:.dll=.def)"); + } else { + push @{@$target[$T_LDFLAGS]},("-shared","\$(${canon}_MODULE:.dll=.spec)"); + } + } elsif ($target_name =~ /\.lib$/) { + $target_name =~ s/(.*)\.lib/lib$1.a/; + @$target[$T_NAME]=$target_name; + @$target[$T_TYPE]=$TT_LIB; + push @local_depends,"$target_name"; + push @local_libs,$target_name; + push @{@$target[$T_ARFLAGS]},("rc"); + } elsif ($target_name =~ /\.a$/) { + @$target[$T_NAME]=$target_name; + @$target[$T_TYPE]=$TT_LIB; + push @local_depends,"$target_name"; + push @local_libs,$target_name; + push @{@$target[$T_ARFLAGS]},("rc"); + } else { + @$target[$T_TYPE]=$opt_target_type; + push @exe_list,$target; + push @{@$target[$T_LDFLAGS]},(@$target[$T_TYPE] == $TT_CUIEXE ? "-mconsole" : "-mwindows"); + } + my $basename=$target_name; + $basename=~ s/\.(dll|exe)$//i; + # This is the default link list of Visual Studio + my @std_imports=qw(odbc32 ole32 oleaut32 winspool odbccp32); + my @std_libraries=qw(uuid); + if ((@$target[$T_FLAGS] & $TF_NODLLS) == 0) { + @$target[$T_DLLS]=\@std_imports; + @$target[$T_LIBRARIES]=\@std_libraries; + } else { + @$target[$T_DLLS]=[]; + @$target[$T_LIBRARIES]=[]; + } + if ((@$target[$T_FLAGS] & $TF_NOMSVCRT) == 0) { + push @{@$target[$T_LDFLAGS]},"-mno-cygwin"; + if ($opt_arch != $OPT_ARCH_DEFAULT) { + push @{@$target[$T_LDFLAGS]},"-m$opt_arch"; + } + } + push @{@$project[$P_TARGETS]},$target; + + # Ask for target-specific options + if ($opt_ask_target_options == $OPT_ASK_YES) { + my $flag_desc=""; + if ((@$target[$T_FLAGS] & $TF_MFC)!=0) { + $flag_desc=" (mfc"; + } + if ($flag_desc ne "") { + $flag_desc.=")"; + } + print "* Specify any link option (-P/-i/-L/-l/--mfc) specific to the target\n"; + print "* \"$target_name\"$flag_desc or 'never' to not be asked this question again:\n"; + while (1) { + my $options=; + chomp $options; + if ($options eq "never") { + $opt_ask_target_options=$OPT_ASK_NO; + last; + } elsif (source_set_options($target,$options)) { + last; + } + print "Please re-enter the options:\n"; + } + } + if (@$target[$T_FLAGS] & $TF_MFC) { + @$project_settings[$T_FLAGS]|=$TF_MFC; + push @{@$target[$T_DLL_PATH]},"\$(MFC_LIBRARY_PATH)"; + push @{@$target[$T_DLLS]},"mfc.dll"; + # FIXME: Link with the MFC in the Unix sense, until we + # start exporting the functions properly. + push @{@$target[$T_LIBRARY_PATH]},"\$(MFC_LIBRARY_PATH)"; + push @{@$target[$T_LIBRARIES]},"mfc"; + } + + # Match sources... + if ($target_count == 1) { + push @{@$target[$T_SOURCES_C]},@{@$project_settings[$T_SOURCES_C]},@sources_c; + @$project_settings[$T_SOURCES_C]=[]; + @sources_c=(); + + push @{@$target[$T_SOURCES_CXX]},@{@$project_settings[$T_SOURCES_CXX]},@sources_cxx; + @$project_settings[$T_SOURCES_CXX]=[]; + @sources_cxx=(); + + push @{@$target[$T_SOURCES_RC]},@{@$project_settings[$T_SOURCES_RC]},@sources_rc; + @$project_settings[$T_SOURCES_RC]=[]; + @sources_rc=(); + + push @{@$target[$T_SOURCES_MISC]},@{@$project_settings[$T_SOURCES_MISC]},@sources_misc; + # No need for sorting these sources + @$project_settings[$T_SOURCES_MISC]=[]; + @sources_misc=(); + } else { + foreach my $source (@sources_c) { + if ($source =~ /^$basename/i) { + push @{@$target[$T_SOURCES_C]},$source; + $source=""; + } + } + foreach my $source (@sources_cxx) { + if ($source =~ /^$basename/i) { + push @{@$target[$T_SOURCES_CXX]},$source; + $source=""; + } + } + foreach my $source (@sources_rc) { + if ($source =~ /^$basename/i) { + push @{@$target[$T_SOURCES_RC]},$source; + $source=""; + } + } + foreach my $source (@sources_misc) { + if ($source =~ /^$basename/i) { + push @{@$target[$T_SOURCES_MISC]},$source; + $source=""; + } + } + } + @$target[$T_SOURCES_C]=[sort @{@$target[$T_SOURCES_C]}]; + @$target[$T_SOURCES_CXX]=[sort @{@$target[$T_SOURCES_CXX]}]; + @$target[$T_SOURCES_RC]=[sort @{@$target[$T_SOURCES_RC]}]; + @$target[$T_SOURCES_MISC]=[sort @{@$target[$T_SOURCES_MISC]}]; + } + if ($opt_ask_target_options == $OPT_ASK_SKIP) { + $opt_ask_target_options=$OPT_ASK_YES; + } + + if ((@$project_settings[$T_FLAGS] & $TF_NOMSVCRT) == 0) { + push @{@$project_settings[$T_CEXTRA]},"-mno-cygwin"; + if ($opt_arch != $OPT_ARCH_DEFAULT) { + push @{@$project_settings[$T_CEXTRA]},"-m$opt_arch"; + push @{@$project_settings[$T_CXXEXTRA]},"-m$opt_arch"; + } + } + + if (@$project_settings[$T_FLAGS] & $TF_MFC) { + push @{@$project_settings[$T_INCLUDE_PATH]},"\$(MFC_INCLUDE_PATH)"; + } + # The sources that did not match, if any, go to the extra + # source list of the project settings + foreach my $source (@sources_c) { + if ($source ne "") { + push @{@$project_settings[$T_SOURCES_C]},$source; + } + } + @$project_settings[$T_SOURCES_C]=[sort @{@$project_settings[$T_SOURCES_C]}]; + foreach my $source (@sources_cxx) { + if ($source ne "") { + push @{@$project_settings[$T_SOURCES_CXX]},$source; + } + } + @$project_settings[$T_SOURCES_CXX]=[sort @{@$project_settings[$T_SOURCES_CXX]}]; + foreach my $source (@sources_rc) { + if ($source ne "") { + push @{@$project_settings[$T_SOURCES_RC]},$source; + } + } + @$project_settings[$T_SOURCES_RC]=[sort @{@$project_settings[$T_SOURCES_RC]}]; + foreach my $source (@sources_misc) { + if ($source ne "") { + push @{@$project_settings[$T_SOURCES_MISC]},$source; + } + } + @$project_settings[$T_SOURCES_MISC]=[sort @{@$project_settings[$T_SOURCES_MISC]}]; + + # Finally if we are building both libraries and programs in + # this directory, then the programs should be linked with all + # the libraries + if (@local_dlls > 0 and @exe_list > 0) { + foreach my $target (@exe_list) { + push @{@$target[$T_DLL_PATH]},"-L."; + push @{@$target[$T_DLLS]},@local_dlls; + } + } + if (@local_libs > 0 and @exe_list > 0) { + foreach my $target (@exe_list) { + push @{@$target[$T_LIBRARY_PATH]},"-L."; + push @{@$target[$T_LIBRARIES]},@local_libs; + } + } +} + +## +# Scan the source directories in search of things to build +sub source_scan() +{ + # If there's a single target then this is going to be the default target + if (defined $opt_single_target) { + # Create the main target + my $main_target=[]; + target_init($main_target); + @$main_target[$T_NAME]=$opt_single_target; + @$main_target[$T_TYPE]=$opt_target_type; + + # Add it to the list + push @{$main_project[$P_TARGETS]},$main_target; + } + + # The main directory is always going to be there + push @projects,\@main_project; + + if (defined $opt_work_dir) { + # Now scan the directory tree looking for source files and, maybe, targets + print "Scanning the source directories...\n"; + source_scan_directory(\@main_project,"","",0); + @projects=sort { @$a[$P_PATH] cmp @$b[$P_PATH] } @projects; + } elsif (defined $opt_work_file) { + if ($opt_work_file =~ /.dsp$/i or $opt_work_file =~ /.vcproj$/i) { + source_scan_project_file(\@main_project,0,$opt_work_file); + } elsif ($opt_work_file =~ /.dsw$/i or $opt_work_file =~ /.sln$/i) { + source_scan_workspace_file($opt_work_file); + } + } +} + +##### +# +# Source search +# +##### + +## +# Performs a directory traversal and renames the files so that: +# - they have the case desired by the user +# - their extension is of the appropriate case +# - they don't contain annoying characters like ' ', '$', '#', ... +# But only perform these changes for source files and directories. +sub fix_file_and_directory_names($); +sub fix_file_and_directory_names($) +{ + my $dirname=$_[0]; + + my $directory=get_directory_contents($dirname); + foreach my $dentry (@$directory) + { + if ($dentry =~ /^\./ or $dentry eq "CVS") { + next; + } + # Set $warn to 1 if the user should be warned of the renaming + my $warn; + my $new_name=$dentry; + + if (-f "$dirname/$dentry") + { + # Don't rename Winemaker's makefiles + next if ($dentry eq "Makefile" and + `head -n 1 "$dirname/$dentry"` =~ /Generated by Winemaker/); + + # Leave non-source files alone + next if ($new_name !~ /(^makefile|\.(c|cpp|h|rc|spec|def))$/i); + + # Only all lowercase extensions are supported (because of + # rules like '.c.o:'). + $new_name =~ s/\.C$/.c/; + $new_name =~ s/\.cpp$/.cpp/i; + $warn=1 if ($new_name =~ s/\.cxx$/.cpp/i); + $new_name =~ s/\.rc$/.rc/i; + # And this last one is to avoid confusion when running make + $warn=1 if ($new_name =~ s/^makefile$/makefile.win/i); + } + + # Adjust the case to the user's preferences + if (($opt_lower == $OPT_LOWER_ALL and $dentry =~ /[A-Z]/) or + ($opt_lower == $OPT_LOWER_UPPERCASE and $dentry !~ /[a-z]/) + ) { + $new_name=lc $new_name; + } + + # make doesn't support these characters well + $new_name =~ s/[ \$]/_/g; + + # And finally, perform the renaming + if ($new_name ne $dentry) + { + if ($warn) { + print STDERR "warning: in \"$dirname\", renaming \"$dentry\" to \"$new_name\"\n"; + } + if (!rename("$dirname/$dentry","$dirname/$new_name")) { + print STDERR "error: in \"$dirname\", unable to rename \"$dentry\" to \"$new_name\"\n"; + print STDERR " $!\n"; + $new_name=$dentry; + } + else + { + clear_directory_cache($dirname); + } + } + if (-d "$dirname/$new_name") { + fix_file_and_directory_names("$dirname/$new_name"); + } + } +} + + + +##### +# +# Source fixup +# +##### + +## +# Try to find a file for the specified filename. The attempt is +# case-insensitive which is why it's not trivial. If a match is +# found then we return the pathname with the correct case. +sub search_from($$) +{ + my $dirname=$_[0]; + my $path=$_[1]; + my $real_path=""; + + if ($dirname eq "" or $dirname eq "." or $dirname eq "./") { + $dirname=cwd; + } elsif ($dirname !~ m+^/+) { + $dirname=cwd . "/" . $dirname; + } + if ($dirname !~ m+/$+) { + $dirname.="/"; + } + + foreach my $component (@$path) { + $component=~s/^\"//; + $component=~s/\"$//; + #print " looking for $component in \"$dirname\"\n"; + if ($component eq ".") { + # Pass it as is + $real_path.="./"; + } elsif ($component eq "..") { + # Go up one level + if ($dirname =~ /\.\.\/$/) { + $dirname.="../"; + } else { + $dirname=dirname($dirname) . "/"; + } + $real_path.="../"; + } else { + # The file/directory may have been renamed before. Also try to + # match the renamed file. + my $renamed=$component; + $renamed =~ s/[ \$]/_/g; + if ($renamed eq $component) { + undef $renamed; + } + + my $directory=get_directory_contents $dirname; + my $found; + foreach my $dentry (@$directory) { + if ($dentry =~ /^\Q$component\E$/i or + (defined $renamed and $dentry =~ /^$renamed$/i) + ) { + $dirname.="$dentry/"; + $real_path.="$dentry/"; + $found=1; + last; + } + } + if (!defined $found) { + # Give up + #print " could not find $component in $dirname\n"; + return; + } + } + } + $real_path=~ s+/$++; + #print " -> found $real_path\n"; + return $real_path; +} + +## +# Performs a case-insensitive search for the specified file in the +# include path. +# $line is the line number that should be referenced when an error occurs +# $filename is the file we are looking for +# $dirname is the directory of the file containing the '#include' directive +# if '"' was used, it is an empty string otherwise +# $project and $target specify part of the include path +sub get_real_include_name($$$$$) +{ + my $line=$_[0]; + my $filename=$_[1]; + my $dirname=$_[2]; + my $project=$_[3]; + my $target=$_[4]; + + if ($filename =~ /^([a-zA-Z]:)?[\/\\]/ or $filename =~ /^[a-zA-Z]:[\/\\]?/) { + # This is not a relative path, we cannot make any check + my $warning="path:$filename"; + if (!defined $warnings{$warning}) { + $warnings{$warning}="1"; + print STDERR "warning: cannot check the case of absolute pathnames:\n"; + print STDERR "$line: $filename\n"; + } + } else { + # Here's how we proceed: + # - split the filename we look for into its components + # - then for each directory in the include path + # - trace the directory components starting from that directory + # - if we fail to find a match at any point then continue with + # the next directory in the include path + # - otherwise, rejoice, our quest is over. + my @file_components=split /[\/\\]+/, $filename; + #print " Searching for $filename from @$project[$P_PATH]\n"; + + my $real_filename; + if ($dirname ne "") { + # This is an 'include ""' -> look in dirname first. + #print " in $dirname (include \"\")\n"; + $real_filename=search_from($dirname,\@file_components); + if (defined $real_filename) { + return $real_filename; + } + } + my $project_settings=@$project[$P_SETTINGS]; + foreach my $include (@{@$target[$T_INCLUDE_PATH]}, @{@$project_settings[$T_INCLUDE_PATH]}) { + my $dirname=$include; + $dirname=~ s+^-I++; + $dirname=~ s+\s$++; + if (!is_absolute($dirname)) { + $dirname="@$project[$P_PATH]$dirname"; + } else { + $dirname=~ s+^\$\(TOPSRCDIR\)/++; + $dirname=~ s+^\$\(SRCDIR\)/+@$project[$P_PATH]+; + } + #print " in $dirname\n"; + $real_filename=search_from("$dirname",\@file_components); + if (defined $real_filename) { + return $real_filename; + } + } + my $dotdotpath=@$project[$P_PATH]; + $dotdotpath =~ s/[^\/]+/../g; + foreach my $include (@{$global_settings[$T_INCLUDE_PATH]}) { + my $dirname=$include; + $dirname=~ s+^-I++; + $dirname=~ s+^\$\(TOPSRCDIR\)\/++; + $dirname=~ s+^\$\(SRCDIR\)\/+@$project[$P_PATH]+; + #print " in $dirname (global setting)\n"; + $real_filename=search_from("$dirname",\@file_components); + if (defined $real_filename) { + return $real_filename; + } + } + } + $filename =~ s+\\\\+/+g; # in include "" + $filename =~ s+\\+/+g; # in include <> ! + if ($opt_lower_include) { + return lc "$filename"; + } + return $filename; +} + +sub print_pack($$$) +{ + my $indent=$_[0]; + my $size=$_[1]; + my $trailer=$_[2]; + + if ($size =~ /^(1|2|4|8)$/) { + print FILEO "$indent#include $trailer"; + } else { + print FILEO "$indent/* winemaker:warning: Unknown size \"$size\". Defaulting to 4 */\n"; + print FILEO "$indent#include $trailer"; + } +} + +## +# 'Parses' a source file and fixes constructs that would not work with +# Winelib. The parsing is rather simple and not all non-portable features +# are corrected. The most important feature that is corrected is the case +# and path separator of '#include' directives. This requires that each +# source file be associated to a project & target so that the proper +# include path is used. +# Also note that the include path is relative to the directory in which the +# compiler is run, i.e. that of the project, not to that of the file. +sub fix_file($$$) +{ + my $filename=$_[0]; + my $project=$_[1]; + my $target=$_[2]; + $filename="@$project[$P_PATH]$filename"; + if (! -e $filename) { + return; + } + + my $is_rc=($filename =~ /\.(rc2?|dlg)$/i); + my $dirname=dirname($filename); + my $is_mfc=0; + if (defined $target and (@$target[$T_FLAGS] & $TF_MFC)) { + $is_mfc=1; + } + + print " $filename\n"; + if (! -e "$filename.bak") { + if (!copy("$filename","$filename.bak")) { + print STDERR "error: unable to make a backup of $filename:\n"; + print STDERR " $!\n"; + return; + } + } + if (!open(FILEI,"$filename.bak")) { + print STDERR "error: unable to open $filename.bak for reading:\n"; + print STDERR " $!\n"; + return; + } + if (!open(FILEO,">$filename")) { + print STDERR "error: unable to open $filename for writing:\n"; + print STDERR " $!\n"; + return; + } + my $line=0; + my $modified=0; + my $rc_block_depth=0; + my $rc_textinclude_state=0; + my @pack_stack; + while () { + # Remove any trailing CtrlZ, which isn't strictly in the file + if (/\x1A/) { + s/\x1A//; + last if (/^$/) + } + $line++; + s/\r\n$/\n/; + if (!/\n$/) { + # Make sure all files are '\n' terminated + $_ .= "\n"; + } + if ($is_rc and !$is_mfc and /^(\s*)(\#\s*include\s*)\"afxres\.h\"/) { + # VC6 automatically includes 'afxres.h', an MFC specific header, in + # the RC files it generates (even in non-MFC projects). So we replace + # it with 'winresrc.h' its very close standard cousin so that non MFC + # projects can compile in Wine without the MFC sources. + my $warning="mfc:afxres.h"; + if (!defined $warnings{$warning}) { + $warnings{$warning}="1"; + print STDERR "warning: In non-MFC projects, winemaker replaces the MFC specific header 'afxres.h' with 'winresrc.h'\n"; + print STDERR "warning: the above warning is issued only once\n"; + } + print FILEO "$1/* winemaker: $2\"afxres.h\" */\n"; + print FILEO "$1/* winemaker:warning: 'afxres.h' is an MFC specific header. Replacing it with 'winresrc.h' */\n"; + print FILEO "$1$2\"winresrc.h\"$'"; + $modified=1; + + } elsif (/^(\s*\#\s*include\s*)([\"<])([^\"]+)([\">])/) { + my $from_file=($2 eq "<"?"":$dirname); + my $real_include_name=get_real_include_name($line,$3,$from_file,$project,$target); + print FILEO "$1$2$real_include_name$4$'"; + $modified|=($real_include_name ne $3); + + } elsif (/^(\s*)\#\s*pragma\s+comment\s*\(\s*lib\s*,\s*\"(\w+)\.lib\"\s*\)/) { + my $pragma_indent=$1; + my $pragma_lib=$2; + push @{@$target[$T_LIBRARIES]},$pragma_lib; + print FILEO "$pragma_indent/* winemaker: Added -l$pragma_lib to the libraries */\n"; + } elsif (s/^(\s*)(\#\s*pragma\s+pack\s*\(\s*)//) { + # Pragma pack handling + # + # pack_stack is an array of references describing the stack of + # pack directives currently in effect. Each directive if described + # by a reference to an array containing: + # - "push" for pack(push,...) directives, "" otherwise + # - the directive's identifier at index 1 + # - the directive's alignment value at index 2 + # + # Don't believe a word of what the documentation says: it's all wrong. + # The code below is based on the actual behavior of Visual C/C++ 6. + my $pack_indent=$1; + my $pack_header=$2; + if (/^(\))/) { + # pragma pack() + # Pushes the default stack alignment + print FILEO "$pack_indent/* winemaker: $pack_header$1 */\n"; + print FILEO "$pack_indent/* winemaker:warning: Using 4 as the default alignment */\n"; + print_pack($pack_indent,4,$'); + push @pack_stack, [ "", "", 4 ]; + + } elsif (/^(pop\s*(,\s*\d+\s*)?\))/) { + # pragma pack(pop) + # pragma pack(pop,n) + # Goes up the stack until it finds a pack(push,...), and pops it + # Ignores any pack(n) entry + # Issues a warning if the pack is of the form pack(push,label) + print FILEO "$pack_indent/* winemaker: $pack_header$1 */\n"; + my $pack_comment=$'; + $pack_comment =~ s/^\s*//; + if ($pack_comment ne "") { + print FILEO "$pack_indent$pack_comment"; + } + while (1) { + my $alignment=pop @pack_stack; + if (!defined $alignment) { + print FILEO "$pack_indent/* winemaker:warning: No pack(push,...) found. All the stack has been popped */\n"; + last; + } + if (@$alignment[1]) { + print FILEO "$pack_indent/* winemaker:warning: Anonymous pop of pack(push,@$alignment[1]) (@$alignment[2]) */\n"; + } + print FILEO "$pack_indent#include \n"; + if (@$alignment[0]) { + last; + } + } + + } elsif (/^(pop\s*,\s*(\w+)\s*(,\s*\d+\s*)?\))/) { + # pragma pack(pop,label[,n]) + # Goes up the stack until finding a pack(push,...) and pops it. + # 'n', if specified, is ignored. + # Ignores any pack(n) entry + # Issues a warning if the label of the pack does not match, + # or if it is in fact a pack(push,n) + my $label=$2; + print FILEO "$pack_indent/* winemaker: $pack_header$1 */\n"; + my $pack_comment=$'; + $pack_comment =~ s/^\s*//; + if ($pack_comment ne "") { + print FILEO "$pack_indent$pack_comment"; + } + while (1) { + my $alignment=pop @pack_stack; + if (!defined $alignment) { + print FILEO "$pack_indent/* winemaker:warning: No pack(push,$label) found. All the stack has been popped */\n"; + last; + } + if (@$alignment[1] and @$alignment[1] ne $label) { + print FILEO "$pack_indent/* winemaker:warning: Push/pop mismatch: \"@$alignment[1]\" (@$alignment[2]) != \"$label\" */\n"; + } + print FILEO "$pack_indent#include \n"; + if (@$alignment[0]) { + last; + } + } + + } elsif (/^(push\s*\))/) { + # pragma pack(push) + # Push the current alignment + print FILEO "$pack_indent/* winemaker: $pack_header$1 */\n"; + if (@pack_stack > 0) { + my $alignment=$pack_stack[$#pack_stack]; + print_pack($pack_indent,@$alignment[2],$'); + push @pack_stack, [ "push", "", @$alignment[2] ]; + } else { + print FILEO "$pack_indent/* winemaker:warning: Using 4 as the default alignment */\n"; + print_pack($pack_indent,4,$'); + push @pack_stack, [ "push", "", 4 ]; + } + + } elsif (/^((push\s*,\s*)?(\d+)\s*\))/) { + # pragma pack([push,]n) + # Push new alignment n + print FILEO "$pack_indent/* winemaker: $pack_header$1 */\n"; + print_pack($pack_indent,$3,"$'"); + push @pack_stack, [ ($2 ? "push" : ""), "", $3 ]; + + } elsif (/^((\w+)\s*\))/) { + # pragma pack(label) + # label must in fact be a macro that resolves to an integer + # Then behaves like 'pragma pack(n)' + print FILEO "$pack_indent/* winemaker: $pack_header$1 */\n"; + print FILEO "$pack_indent/* winemaker:warning: Assuming $2 == 4 */\n"; + print_pack($pack_indent,4,$'); + push @pack_stack, [ "", "", 4 ]; + + } elsif (/^(push\s*,\s*(\w+)\s*(,\s*(\d+)\s*)?\))/) { + # pragma pack(push,label[,n]) + # Pushes a new label on the stack. It is possible to push the same + # label multiple times. If 'n' is omitted then the alignment is + # unchanged. Otherwise it becomes 'n'. + print FILEO "$pack_indent/* winemaker: $pack_header$1 */\n"; + my $size; + if (defined $4) { + $size=$4; + } elsif (@pack_stack > 0) { + my $alignment=$pack_stack[$#pack_stack]; + $size=@$alignment[2]; + } else { + print FILEO "$pack_indent/* winemaker:warning: Using 4 as the default alignment */\n"; + $size=4; + } + print_pack($pack_indent,$size,$'); + push @pack_stack, [ "push", $2, $size ]; + + } else { + # pragma pack(??? -> What's that? + print FILEO "$pack_indent/* winemaker:warning: Unknown type of pragma pack directive */\n"; + print FILEO "$pack_indent$pack_header$_"; + + } + $modified=1; + + } elsif ($is_rc) { + if ($rc_block_depth == 0 and /^(\w+\s+(BITMAP|CURSOR|FONT|FONTDIR|ICON|MESSAGETABLE|TEXT|RTF)\s+((DISCARDABLE|FIXED|IMPURE|LOADONCALL|MOVEABLE|PRELOAD|PURE)\s+)*)([\"<]?)([^\">\r\n]+)([\">]?)/) { + my $from_file=($5 eq "<"?"":$dirname); + my $real_include_name=get_real_include_name($line,$6,$from_file,$project,$target); + print FILEO "$1$5$real_include_name$7$'"; + $modified|=($real_include_name ne $6); + + } elsif (/^(\s*RCINCLUDE\s*)([\"<]?)([^\">\r\n]+)([\">]?)/) { + my $from_file=($2 eq "<"?"":$dirname); + my $real_include_name=get_real_include_name($line,$3,$from_file,$project,$target); + print FILEO "$1$2$real_include_name$4$'"; + $modified|=($real_include_name ne $3); + + } elsif ($is_rc and !$is_mfc and $rc_block_depth == 0 and /^\s*\d+\s+TEXTINCLUDE\s*/) { + $rc_textinclude_state=1; + print FILEO; + + } elsif ($rc_textinclude_state == 3 and /^(\s*\"\#\s*include\s*\"\")afxres\.h(\"\"\\r\\n\")/) { + print FILEO "$1winresrc.h$2$'"; + $modified=1; + + } elsif (/^\s*BEGIN(\W.*)?$/) { + $rc_textinclude_state|=2; + $rc_block_depth++; + print FILEO; + + } elsif (/^\s*END(\W.*)?$/) { + $rc_textinclude_state=0; + if ($rc_block_depth>0) { + $rc_block_depth--; + } + print FILEO; + + } else { + print FILEO; + } + + } else { + print FILEO; + } + } + + close(FILEI); + close(FILEO); + if ($opt_backup == 0 or $modified == 0) { + if (!unlink("$filename.bak")) { + print STDERR "error: unable to delete $filename.bak:\n"; + print STDERR " $!\n"; + } + } +} + +## +# Analyzes each source file in turn to find and correct issues +# that would cause it not to compile. +sub fix_source() +{ + print "Fixing the source files...\n"; + foreach my $project (@projects) { + foreach my $target (@$project[$P_SETTINGS],@{@$project[$P_TARGETS]}) { + foreach my $source (@{@$target[$T_SOURCES_C]}, @{@$target[$T_SOURCES_CXX]}, @{@$target[$T_SOURCES_RC]}, @{@$target[$T_SOURCES_MISC]}) { + fix_file($source,$project,$target); + } + } + } +} + + + +##### +# +# File generation +# +##### + +## +# A convenience function to generate all the lists (defines, +# C sources, C++ source, etc.) in the Makefile +sub generate_list($$$;$) +{ + my $name=$_[0]; + my $last=$_[1]; + my $list=$_[2]; + my $data=$_[3]; + my $first=$name; + + if ($name) { + printf FILEO "%-22s=",$name; + } + if (defined $list) { + foreach my $item (@$list) { + my $value; + if (defined $data) { + $value=&$data($item); + } else { + if (defined $item) { + $value=$item; + } else { + $value=""; + } + } + if ($value ne "") { + if ($first) { + print FILEO " $value"; + $first=0; + } else { + print FILEO " \\\n\t\t\t$value"; + } + } + } + } + if ($last) { + print FILEO "\n"; + } +} + +## +# Generates a project's Makefile and all the target files +sub generate_project_files($) +{ + my $project=$_[0]; + my $project_settings=@$project[$P_SETTINGS]; + my @dll_list=(); + my @lib_list=(); + my @exe_list=(); + + # Then sort the targets and separate the libraries from the programs + foreach my $target (sort { @$a[$T_NAME] cmp @$b[$T_NAME] } @{@$project[$P_TARGETS]}) { + if (@$target[$T_TYPE] == $TT_DLL) { + push @dll_list,$target; + } elsif (@$target[$T_TYPE] == $TT_LIB) { + push @lib_list,$target; + } else { + push @exe_list,$target; + } + } + @$project[$P_TARGETS]=[]; + push @{@$project[$P_TARGETS]}, @dll_list; + push @{@$project[$P_TARGETS]}, @lib_list; + push @{@$project[$P_TARGETS]}, @exe_list; + + if (!open(FILEO,">@$project[$P_PATH]Makefile")) { + print STDERR "error: could not open \"@$project[$P_PATH]/Makefile\" for writing\n"; + print STDERR " $!\n"; + return; + } + binmode( FILEO, ':utf8' ); + + my $cpp_to_object; + if (@$project_settings[$T_FLAGS] & $TF_HASCXX) { + $cpp_to_object=".cxx=.o"; + } else { + $cpp_to_object=".cpp=.o"; + } + + print FILEO "### Generated by Winemaker $version\n"; + print FILEO "###\n"; + print FILEO "### Invocation command line was\n"; + print FILEO "### $0"; + foreach(@ARGV) { + print FILEO " $_"; + } + print FILEO "\n\n\n"; + + generate_list("SRCDIR",1,[ "." ]); + if (@$project[$P_PATH] eq "") { + # This is the main project. It is also responsible for recursively + # calling the other projects + generate_list("SUBDIRS",1,\@projects,sub + { + if ($_[0] != \@main_project) { + my $subdir=@{$_[0]}[$P_PATH]; + $subdir =~ s+/$++; + return $subdir; + } + # Eliminating the main project by returning undefined! + }); + } + if (@{@$project[$P_TARGETS]} > 0) { + generate_list("DLLS",1,\@dll_list,sub + { + return @{$_[0]}[$T_NAME]; + }); + generate_list("LIBS",1,\@lib_list,sub + { + return @{$_[0]}[$T_NAME]; + }); + generate_list("EXES",1,\@exe_list,sub + { + return "@{$_[0]}[$T_NAME]"; + }); + print FILEO "\n\n\n"; + + print FILEO "### Common settings\n\n"; + # Make it so that the project-wide settings override the global settings + generate_list("CEXTRA",1,@$project_settings[$T_CEXTRA]); + generate_list("CXXEXTRA",1,@$project_settings[$T_CXXEXTRA]); + generate_list("RCEXTRA",1,@$project_settings[$T_RCEXTRA]); + generate_list("DEFINES",1,@$project_settings[$T_DEFINES]); + generate_list("INCLUDE_PATH",1,@$project_settings[$T_INCLUDE_PATH]); + generate_list("DLL_PATH",1,@$project_settings[$T_DLL_PATH]); + generate_list("DLL_IMPORTS",1,@$project_settings[$T_DLLS]); + generate_list("LIBRARY_PATH",1,@$project_settings[$T_LIBRARY_PATH]); + generate_list("LIBRARIES",1,@$project_settings[$T_LIBRARIES]); + print FILEO "\n\n"; + + my $extra_source_count=@{@$project_settings[$T_SOURCES_C]}+ + @{@$project_settings[$T_SOURCES_CXX]}+ + @{@$project_settings[$T_SOURCES_RC]}; + my $no_extra=($extra_source_count == 0); + if (!$no_extra) { + print FILEO "### Extra source lists\n\n"; + generate_list("EXTRA_C_SRCS",1,@$project_settings[$T_SOURCES_C]); + generate_list("EXTRA_CXX_SRCS",1,@$project_settings[$T_SOURCES_CXX]); + generate_list("EXTRA_RC_SRCS",1,@$project_settings[$T_SOURCES_RC]); + print FILEO "\n"; + generate_list("EXTRA_OBJS",1,["\$(EXTRA_C_SRCS:.c=.o)","\$(EXTRA_CXX_SRCS:$cpp_to_object)"]); + print FILEO "\n\n\n"; + } + + # Iterate over all the targets... + foreach my $target (@{@$project[$P_TARGETS]}) { + print FILEO "### @$target[$T_NAME] sources and settings\n\n"; + my $canon=canonize("@$target[$T_NAME]"); + $canon =~ s+_so$++; + + generate_list("${canon}_MODULE",1,[@$target[$T_NAME]]); + generate_list("${canon}_C_SRCS",1,@$target[$T_SOURCES_C]); + generate_list("${canon}_CXX_SRCS",1,@$target[$T_SOURCES_CXX]); + generate_list("${canon}_RC_SRCS",1,@$target[$T_SOURCES_RC]); + generate_list("${canon}_LDFLAGS",1,@$target[$T_LDFLAGS]); + generate_list("${canon}_ARFLAGS",1,@$target[$T_ARFLAGS]); + generate_list("${canon}_DLL_PATH",1,@$target[$T_DLL_PATH]); + generate_list("${canon}_DLLS",1,@$target[$T_DLLS]); + generate_list("${canon}_LIBRARY_PATH",1,@$target[$T_LIBRARY_PATH]); + generate_list("${canon}_LIBRARIES",1,@$target[$T_LIBRARIES]); + print FILEO "\n"; + generate_list("${canon}_OBJS",1,["\$(${canon}_C_SRCS:.c=.o)","\$(${canon}_CXX_SRCS:$cpp_to_object)","\$(${canon}_RC_SRCS:.rc=.res)"]); + print FILEO "\n\n\n"; + } + print FILEO "### Global source lists\n\n"; + generate_list("C_SRCS",$no_extra,@$project[$P_TARGETS],sub + { + my $canon=canonize(@{$_[0]}[$T_NAME]); + $canon =~ s+_so$++; + return "\$(${canon}_C_SRCS)"; + }); + if (!$no_extra) { + generate_list("",1,[ "\$(EXTRA_C_SRCS)" ]); + } + generate_list("CXX_SRCS",$no_extra,@$project[$P_TARGETS],sub + { + my $canon=canonize(@{$_[0]}[$T_NAME]); + $canon =~ s+_so$++; + return "\$(${canon}_CXX_SRCS)"; + }); + if (!$no_extra) { + generate_list("",1,[ "\$(EXTRA_CXX_SRCS)" ]); + } + generate_list("RC_SRCS",$no_extra,@$project[$P_TARGETS],sub + { + my $canon=canonize(@{$_[0]}[$T_NAME]); + $canon =~ s+_so$++; + return "\$(${canon}_RC_SRCS)"; + }); + if (!$no_extra) { + generate_list("",1,[ "\$(EXTRA_RC_SRCS)" ]); + } + } + print FILEO "\n\n"; + print FILEO "### Tools\n\n"; + print FILEO "CC = winegcc\n"; + print FILEO "CXX = wineg++\n"; + print FILEO "RC = wrc\n"; + print FILEO "AR = ar\n"; + print FILEO "\n\n"; + + print FILEO "### Generic targets\n\n"; + print FILEO "all:"; + if (@$project[$P_PATH] eq "") { + print FILEO " \$(SUBDIRS)"; + } + if (@{@$project[$P_TARGETS]} > 0) { + print FILEO " \$(DLLS:%=%.so) \$(LIBS) \$(EXES)"; + } + print FILEO "\n\n"; + print FILEO "### Build rules\n"; + print FILEO "\n"; + print FILEO ".PHONY: all clean dummy\n"; + print FILEO "\n"; + print FILEO "\$(SUBDIRS): dummy\n"; + print FILEO "\t\@cd \$\@ && \$(MAKE)\n"; + print FILEO "\n"; + print FILEO "# Implicit rules\n"; + print FILEO "\n"; + print FILEO ".SUFFIXES: .cpp .cxx .rc .res\n"; + print FILEO "DEFINCL = \$(INCLUDE_PATH) \$(DEFINES) \$(OPTIONS)\n"; + print FILEO "\n"; + print FILEO ".c.o:\n"; + print FILEO "\t\$(CC) -c \$(CFLAGS) \$(CEXTRA) \$(DEFINCL) -o \$\@ \$<\n"; + print FILEO "\n"; + print FILEO ".cpp.o:\n"; + print FILEO "\t\$(CXX) -c \$(CXXFLAGS) \$(CXXEXTRA) \$(DEFINCL) -o \$\@ \$<\n"; + print FILEO "\n"; + print FILEO ".cxx.o:\n"; + print FILEO "\t\$(CXX) -c \$(CXXFLAGS) \$(CXXEXTRA) \$(DEFINCL) -o \$\@ \$<\n"; + print FILEO "\n"; + print FILEO ".rc.res:\n"; + print FILEO "\t\$(RC) \$(RCFLAGS) \$(RCEXTRA) \$(DEFINCL) -fo\$@ \$<\n"; + print FILEO "\n"; + print FILEO "# Rules for cleaning\n"; + print FILEO "\n"; + print FILEO "CLEAN_FILES = y.tab.c y.tab.h lex.yy.c core *.orig *.rej \\\n"; + print FILEO " \\\\\\#*\\\\\\# *~ *% .\\\\\\#*\n"; + print FILEO "\n"; + print FILEO "clean:: \$(SUBDIRS:%=%/__clean__) \$(EXTRASUBDIRS:%=%/__clean__)\n"; + print FILEO "\t\$(RM) \$(CLEAN_FILES) \$(RC_SRCS:.rc=.res) \$(C_SRCS:.c=.o) \$(CXX_SRCS:$cpp_to_object)\n"; + print FILEO "\t\$(RM) \$(DLLS:%=%.so) \$(LIBS) \$(EXES) \$(EXES:%=%.so)\n"; + print FILEO "\n"; + print FILEO "\$(SUBDIRS:%=%/__clean__): dummy\n"; + print FILEO "\tcd `dirname \$\@` && \$(MAKE) clean\n"; + print FILEO "\n"; + print FILEO "\$(EXTRASUBDIRS:%=%/__clean__): dummy\n"; + print FILEO "\t-cd `dirname \$\@` && \$(RM) \$(CLEAN_FILES)\n"; + print FILEO "\n"; + + if (@{@$project[$P_TARGETS]} > 0) { + print FILEO "### Target specific build rules\n"; + print FILEO "DEFLIB = \$(LIBRARY_PATH) \$(LIBRARIES) \$(DLL_PATH) \$(DLL_IMPORTS:%=-l%)\n\n"; + foreach my $target (@{@$project[$P_TARGETS]}) { + my $canon=canonize("@$target[$T_NAME]"); + $canon =~ s/_so$//; + + if (@$target[$T_TYPE] == $TT_DLL && (@$project_settings[$T_FLAGS] & $TF_HASDEF)) { + print FILEO "\$(${canon}_MODULE).so: \$(${canon}_OBJS) \$(${canon}_MODULE:.dll=.def)\n"; + } elsif (@$target[$T_TYPE] == $TT_DLL) { + print FILEO "\$(${canon}_MODULE).so: \$(${canon}_OBJS) \$(${canon}_MODULE:.dll=.spec)\n"; + } else { + print FILEO "\$(${canon}_MODULE): \$(${canon}_OBJS)\n"; + } + + if (@$target[$T_TYPE] == $TT_LIB) { + print FILEO "\t\$(AR) \$(${canon}_ARFLAGS) \$\@ \$(${canon}_OBJS)\n"; + } else { + if (@{@$target[$T_SOURCES_CXX]} > 0 or @{@$project_settings[$T_SOURCES_CXX]} > 0) { + print FILEO "\t\$(CXX)"; + } else { + print FILEO "\t\$(CC)"; + } + print FILEO " \$(${canon}_LDFLAGS) -o \$\@ \$(${canon}_OBJS) \$(${canon}_LIBRARY_PATH) \$(${canon}_DLL_PATH) \$(DEFLIB) \$(${canon}_DLLS:%=-l%) \$(${canon}_LIBRARIES:%=-l%)\n"; + } + print FILEO "\n\n"; + } + } + close(FILEO); + +} + + +## +# This is where we finally generate files. In fact this method does not +# do anything itself but calls the methods that do the actual work. +sub generate() +{ + print "Generating project files...\n"; + + foreach my $project (@projects) { + my $path=@$project[$P_PATH]; + if ($path eq "") { + $path="."; + } else { + $path =~ s+/$++; + } + print " $path\n"; + generate_project_files($project); + } +} + + + +##### +# +# Option defaults +# +##### + +$opt_backup=1; +$opt_lower=$OPT_LOWER_UPPERCASE; +$opt_lower_include=1; + +$opt_work_dir=undef; +$opt_single_target=undef; +$opt_target_type=$TT_GUIEXE; +$opt_flags=0; +$opt_arch=$OPT_ARCH_DEFAULT; +$opt_is_interactive=$OPT_ASK_NO; +$opt_ask_project_options=$OPT_ASK_NO; +$opt_ask_target_options=$OPT_ASK_NO; +$opt_no_generated_files=0; +$opt_no_source_fix=0; +$opt_no_banner=0; + + + +##### +# +# Main +# +##### + +sub print_banner() +{ + print "Winemaker $version\n"; + print "Copyright 2000-2004 François Gouget for CodeWeavers\n"; + print "Copyright 2004 Dimitrie O. Paun\n"; + print "Copyright 2009-2012 André Hentschel\n"; +} + +sub usage() +{ + print_banner(); + print STDERR "Usage: winemaker [--nobanner] [--backup|--nobackup] [--nosource-fix]\n"; + print STDERR " [--lower-none|--lower-all|--lower-uppercase]\n"; + print STDERR " [--lower-include|--nolower-include] [--mfc|--nomfc]\n"; + print STDERR " [--guiexe|--windows|--cuiexe|--console|--dll|--lib]\n"; + print STDERR " [-Dmacro[=defn]] [-Idir] [-Pdir] [-idll] [-Ldir] [-llibrary]\n"; + print STDERR " [--nodlls] [--nomsvcrt] [--interactive] [--single-target name]\n"; + print STDERR " [--generated-files|--nogenerated-files]\n"; + print STDERR " [--wine32]\n"; + print STDERR " work_directory|project_file|workspace_file\n"; + print STDERR "\nWinemaker is designed to recursively convert all the Windows sources found in\n"; + print STDERR "the specified directory or project-file, so that they can be compiled with Winelib.\n"; + print STDERR "During this process it will modify and rename some of the corresponding files.\n"; + print STDERR "\tPlease read the manual page before use.\n"; + exit (2); +} + +binmode(STDOUT, ":utf8"); + +target_init(\@global_settings); + +my @args = @ARGV; +while (@args>0) { + my $arg=shift @args; + # General options + if ($arg eq "--nobanner") { + $opt_no_banner=1; + } elsif ($arg eq "--backup") { + $opt_backup=1; + } elsif ($arg eq "--nobackup") { + $opt_backup=0; + } elsif ($arg eq "--single-target") { + $opt_single_target=shift @args; + } elsif ($arg eq "--lower-none") { + $opt_lower=$OPT_LOWER_NONE; + } elsif ($arg eq "--lower-all") { + $opt_lower=$OPT_LOWER_ALL; + } elsif ($arg eq "--lower-uppercase") { + $opt_lower=$OPT_LOWER_UPPERCASE; + } elsif ($arg eq "--lower-include") { + $opt_lower_include=1; + } elsif ($arg eq "--nolower-include") { + $opt_lower_include=0; + } elsif ($arg eq "--nosource-fix") { + $opt_no_source_fix=1; + } elsif ($arg eq "--generated-files") { + $opt_no_generated_files=0; + } elsif ($arg eq "--nogenerated-files") { + $opt_no_generated_files=1; + } elsif ($arg eq "--wine32") { + $opt_arch=$OPT_ARCH_32; + } elsif ($arg =~ /^-D/) { + push @{$global_settings[$T_DEFINES]},$arg; + } elsif ($arg =~ /^-I/) { + push @{$global_settings[$T_INCLUDE_PATH]},$arg; + } elsif ($arg =~ /^-P/) { + push @{$global_settings[$T_DLL_PATH]},"-L$'"; + } elsif ($arg =~ /^-i/) { + push @{$global_settings[$T_DLLS]},$'; + } elsif ($arg =~ /^-L/) { + push @{$global_settings[$T_LIBRARY_PATH]},$arg; + } elsif ($arg =~ /^-l/) { + push @{$global_settings[$T_LIBRARIES]},$arg; + + # 'Source'-based method options + } elsif ($arg eq "--dll") { + $opt_target_type=$TT_DLL; + } elsif ($arg eq "--lib") { + $opt_target_type=$TT_LIB; + } elsif ($arg eq "--guiexe" or $arg eq "--windows") { + $opt_target_type=$TT_GUIEXE; + } elsif ($arg eq "--cuiexe" or $arg eq "--console") { + $opt_target_type=$TT_CUIEXE; + } elsif ($arg eq "--interactive") { + $opt_is_interactive=$OPT_ASK_YES; + $opt_ask_project_options=$OPT_ASK_YES; + $opt_ask_target_options=$OPT_ASK_YES; + } elsif ($arg eq "--mfc") { + $opt_flags|=$TF_MFC; + } elsif ($arg eq "--nomfc") { + $opt_flags&=~$TF_MFC; + $opt_flags|=$TF_NOMFC; + } elsif ($arg eq "--nodlls") { + $opt_flags|=$TF_NODLLS; + } elsif ($arg eq "--nomsvcrt") { + $opt_flags|=$TF_NOMSVCRT; + + # Catch errors + } else { + if ($arg ne "--help" and $arg ne "-h" and $arg ne "-?") { + if (!defined $opt_work_dir and !defined $opt_work_file) { + if (-f $arg) { + $opt_work_file=$arg; + } + else { + $opt_work_dir=$arg; + } + } else { + print STDERR "error: the work directory, \"$arg\", has already been specified (was \"$opt_work_dir\")\n"; + usage(); + } + } else { + usage(); + } + } +} + +if (!defined $opt_work_dir and !defined $opt_work_file) { + print STDERR "error: you must specify the directory or project file containing the sources to be converted\n"; + usage(); +} elsif (defined $opt_work_dir and !chdir $opt_work_dir) { + print STDERR "error: could not chdir to the work directory\n"; + print STDERR " $!\n"; + usage(); +} + +if ($opt_no_banner == 0) { + print_banner(); +} + +project_init(\@main_project, "", \@global_settings); + +# Fix the file and directory names +fix_file_and_directory_names("."); + +# Scan the sources to identify the projects and targets +source_scan(); + +# Fix the source files +if (! $opt_no_source_fix) { + fix_source(); +} + +# Generate the Makefile and the spec file +if (! $opt_no_generated_files) { + generate(); +} diff --git a/bin/winemine b/bin/winemine new file mode 100755 index 0000000..d9b6412 --- /dev/null +++ b/bin/winemine @@ -0,0 +1,64 @@ +#!/bin/sh +# +# Wrapper script to start a Winelib application once it is installed +# +# Copyright (C) 2002 Alexandre Julliard +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# + +# determine the app Winelib library name +appname=`basename "$0" .exe`.exe + +# first try explicit WINELOADER +if [ -x "$WINELOADER" ]; then exec "$WINELOADER" "$appname" "$@"; fi + +# now try the directory containing $0 +appdir="" +case "$0" in + */*) + # $0 contains a path, use it + appdir=`dirname "$0"` + ;; + *) + # no directory in $0, search in PATH + saved_ifs=$IFS + IFS=: + for d in $PATH + do + IFS=$saved_ifs + if [ -x "$d/$0" ]; then appdir="$d"; break; fi + done + ;; +esac +if [ -x "$appdir/wine" ]; then exec "$appdir/wine" "$appname" "$@"; fi +if [ -x "$appdir/wine64" ]; then exec "$appdir/wine64" "$appname" "$@"; fi + +# now look in PATH +saved_ifs=$IFS +IFS=: +for d in $PATH +do + IFS=$saved_ifs + if [ -x "$d/wine" ]; then exec "$d/wine" "$appname" "$@"; fi + if [ -x "$d/wine64" ]; then exec "$d/wine64" "$appname" "$@"; fi +done + +# finally, the default bin directory +if [ -x "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine" ]; then exec "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine" "$appname" "$@"; fi +if [ -x "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine64" ]; then exec "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine64" "$appname" "$@"; fi + +echo "$0: the Wine loader is missing" +exit 1 diff --git a/bin/winepath b/bin/winepath new file mode 100755 index 0000000..d9b6412 --- /dev/null +++ b/bin/winepath @@ -0,0 +1,64 @@ +#!/bin/sh +# +# Wrapper script to start a Winelib application once it is installed +# +# Copyright (C) 2002 Alexandre Julliard +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# + +# determine the app Winelib library name +appname=`basename "$0" .exe`.exe + +# first try explicit WINELOADER +if [ -x "$WINELOADER" ]; then exec "$WINELOADER" "$appname" "$@"; fi + +# now try the directory containing $0 +appdir="" +case "$0" in + */*) + # $0 contains a path, use it + appdir=`dirname "$0"` + ;; + *) + # no directory in $0, search in PATH + saved_ifs=$IFS + IFS=: + for d in $PATH + do + IFS=$saved_ifs + if [ -x "$d/$0" ]; then appdir="$d"; break; fi + done + ;; +esac +if [ -x "$appdir/wine" ]; then exec "$appdir/wine" "$appname" "$@"; fi +if [ -x "$appdir/wine64" ]; then exec "$appdir/wine64" "$appname" "$@"; fi + +# now look in PATH +saved_ifs=$IFS +IFS=: +for d in $PATH +do + IFS=$saved_ifs + if [ -x "$d/wine" ]; then exec "$d/wine" "$appname" "$@"; fi + if [ -x "$d/wine64" ]; then exec "$d/wine64" "$appname" "$@"; fi +done + +# finally, the default bin directory +if [ -x "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine" ]; then exec "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine" "$appname" "$@"; fi +if [ -x "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine64" ]; then exec "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine64" "$appname" "$@"; fi + +echo "$0: the Wine loader is missing" +exit 1 diff --git a/bin/wineserver b/bin/wineserver new file mode 100755 index 0000000..5b469d5 Binary files /dev/null and b/bin/wineserver differ diff --git a/bin/wmc b/bin/wmc new file mode 100755 index 0000000..794d204 Binary files /dev/null and b/bin/wmc differ diff --git a/bin/wrc b/bin/wrc new file mode 100755 index 0000000..b50916a Binary files /dev/null and b/bin/wrc differ diff --git a/lib/libwine.so b/lib/libwine.so new file mode 120000 index 0000000..04dfc5d --- /dev/null +++ b/lib/libwine.so @@ -0,0 +1 @@ +libwine.so.1 \ No newline at end of file diff --git a/lib/libwine.so.1 b/lib/libwine.so.1 new file mode 120000 index 0000000..ad96648 --- /dev/null +++ b/lib/libwine.so.1 @@ -0,0 +1 @@ +libwine.so.1.0 \ No newline at end of file diff --git a/lib/libwine.so.1.0 b/lib/libwine.so.1.0 new file mode 100755 index 0000000..7bc80e2 Binary files /dev/null and b/lib/libwine.so.1.0 differ diff --git a/lib/wine/acledit.dll.so b/lib/wine/acledit.dll.so new file mode 100755 index 0000000..697e46b Binary files /dev/null and b/lib/wine/acledit.dll.so differ diff --git a/lib/wine/aclui.dll.so b/lib/wine/aclui.dll.so new file mode 100755 index 0000000..e4337fa Binary files /dev/null and b/lib/wine/aclui.dll.so differ diff --git a/lib/wine/activeds.dll.so b/lib/wine/activeds.dll.so new file mode 100755 index 0000000..b212c48 Binary files /dev/null and b/lib/wine/activeds.dll.so differ diff --git a/lib/wine/actxprxy.dll.so b/lib/wine/actxprxy.dll.so new file mode 100755 index 0000000..f2023c6 Binary files /dev/null and b/lib/wine/actxprxy.dll.so differ diff --git a/lib/wine/adsldp.dll.so b/lib/wine/adsldp.dll.so new file mode 100755 index 0000000..20543f3 Binary files /dev/null and b/lib/wine/adsldp.dll.so differ diff --git a/lib/wine/adsldpc.dll.so b/lib/wine/adsldpc.dll.so new file mode 100755 index 0000000..c861986 Binary files /dev/null and b/lib/wine/adsldpc.dll.so differ diff --git a/lib/wine/advapi32.dll.so b/lib/wine/advapi32.dll.so new file mode 100755 index 0000000..3bd586c Binary files /dev/null and b/lib/wine/advapi32.dll.so differ diff --git a/lib/wine/advpack.dll.so b/lib/wine/advpack.dll.so new file mode 100755 index 0000000..954dbf7 Binary files /dev/null and b/lib/wine/advpack.dll.so differ diff --git a/lib/wine/amd_ags_x64.dll.so b/lib/wine/amd_ags_x64.dll.so new file mode 100755 index 0000000..bd645c9 Binary files /dev/null and b/lib/wine/amd_ags_x64.dll.so differ diff --git a/lib/wine/amsi.dll.so b/lib/wine/amsi.dll.so new file mode 100755 index 0000000..64d8f62 Binary files /dev/null and b/lib/wine/amsi.dll.so differ diff --git a/lib/wine/amstream.dll.so b/lib/wine/amstream.dll.so new file mode 100755 index 0000000..10c8540 Binary files /dev/null and b/lib/wine/amstream.dll.so differ diff --git a/lib/wine/api-ms-win-appmodel-identity-l1-1-0.dll.so b/lib/wine/api-ms-win-appmodel-identity-l1-1-0.dll.so new file mode 100755 index 0000000..273aaf7 Binary files /dev/null and b/lib/wine/api-ms-win-appmodel-identity-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-appmodel-runtime-l1-1-1.dll.so b/lib/wine/api-ms-win-appmodel-runtime-l1-1-1.dll.so new file mode 100755 index 0000000..b77a80a Binary files /dev/null and b/lib/wine/api-ms-win-appmodel-runtime-l1-1-1.dll.so differ diff --git a/lib/wine/api-ms-win-appmodel-runtime-l1-1-2.dll.so b/lib/wine/api-ms-win-appmodel-runtime-l1-1-2.dll.so new file mode 100755 index 0000000..c620720 Binary files /dev/null and b/lib/wine/api-ms-win-appmodel-runtime-l1-1-2.dll.so differ diff --git a/lib/wine/api-ms-win-core-apiquery-l1-1-0.dll.so b/lib/wine/api-ms-win-core-apiquery-l1-1-0.dll.so new file mode 100755 index 0000000..9f116c2 Binary files /dev/null and b/lib/wine/api-ms-win-core-apiquery-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-appcompat-l1-1-1.dll.so b/lib/wine/api-ms-win-core-appcompat-l1-1-1.dll.so new file mode 100755 index 0000000..f399318 Binary files /dev/null and b/lib/wine/api-ms-win-core-appcompat-l1-1-1.dll.so differ diff --git a/lib/wine/api-ms-win-core-appinit-l1-1-0.dll.so b/lib/wine/api-ms-win-core-appinit-l1-1-0.dll.so new file mode 100755 index 0000000..4d1bfd1 Binary files /dev/null and b/lib/wine/api-ms-win-core-appinit-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-atoms-l1-1-0.dll.so b/lib/wine/api-ms-win-core-atoms-l1-1-0.dll.so new file mode 100755 index 0000000..2e53763 Binary files /dev/null and b/lib/wine/api-ms-win-core-atoms-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-bem-l1-1-0.dll.so b/lib/wine/api-ms-win-core-bem-l1-1-0.dll.so new file mode 100755 index 0000000..05f2d45 Binary files /dev/null and b/lib/wine/api-ms-win-core-bem-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-com-l1-1-0.dll.so b/lib/wine/api-ms-win-core-com-l1-1-0.dll.so new file mode 100755 index 0000000..5d794c3 Binary files /dev/null and b/lib/wine/api-ms-win-core-com-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-com-l1-1-1.dll.so b/lib/wine/api-ms-win-core-com-l1-1-1.dll.so new file mode 100755 index 0000000..b648c1b Binary files /dev/null and b/lib/wine/api-ms-win-core-com-l1-1-1.dll.so differ diff --git a/lib/wine/api-ms-win-core-com-private-l1-1-0.dll.so b/lib/wine/api-ms-win-core-com-private-l1-1-0.dll.so new file mode 100755 index 0000000..c2cfce8 Binary files /dev/null and b/lib/wine/api-ms-win-core-com-private-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-comm-l1-1-0.dll.so b/lib/wine/api-ms-win-core-comm-l1-1-0.dll.so new file mode 100755 index 0000000..285b093 Binary files /dev/null and b/lib/wine/api-ms-win-core-comm-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-console-l1-1-0.dll.so b/lib/wine/api-ms-win-core-console-l1-1-0.dll.so new file mode 100755 index 0000000..497f525 Binary files /dev/null and b/lib/wine/api-ms-win-core-console-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-console-l2-1-0.dll.so b/lib/wine/api-ms-win-core-console-l2-1-0.dll.so new file mode 100755 index 0000000..d0f7215 Binary files /dev/null and b/lib/wine/api-ms-win-core-console-l2-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-crt-l1-1-0.dll.so b/lib/wine/api-ms-win-core-crt-l1-1-0.dll.so new file mode 100755 index 0000000..be72313 Binary files /dev/null and b/lib/wine/api-ms-win-core-crt-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-crt-l2-1-0.dll.so b/lib/wine/api-ms-win-core-crt-l2-1-0.dll.so new file mode 100755 index 0000000..b8ad7d9 Binary files /dev/null and b/lib/wine/api-ms-win-core-crt-l2-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-datetime-l1-1-0.dll.so b/lib/wine/api-ms-win-core-datetime-l1-1-0.dll.so new file mode 100755 index 0000000..cd5f579 Binary files /dev/null and b/lib/wine/api-ms-win-core-datetime-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-datetime-l1-1-1.dll.so b/lib/wine/api-ms-win-core-datetime-l1-1-1.dll.so new file mode 100755 index 0000000..d1da28f Binary files /dev/null and b/lib/wine/api-ms-win-core-datetime-l1-1-1.dll.so differ diff --git a/lib/wine/api-ms-win-core-debug-l1-1-0.dll.so b/lib/wine/api-ms-win-core-debug-l1-1-0.dll.so new file mode 100755 index 0000000..2417a03 Binary files /dev/null and b/lib/wine/api-ms-win-core-debug-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-debug-l1-1-1.dll.so b/lib/wine/api-ms-win-core-debug-l1-1-1.dll.so new file mode 100755 index 0000000..90beab1 Binary files /dev/null and b/lib/wine/api-ms-win-core-debug-l1-1-1.dll.so differ diff --git a/lib/wine/api-ms-win-core-delayload-l1-1-0.dll.so b/lib/wine/api-ms-win-core-delayload-l1-1-0.dll.so new file mode 100755 index 0000000..4a3300c Binary files /dev/null and b/lib/wine/api-ms-win-core-delayload-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-delayload-l1-1-1.dll.so b/lib/wine/api-ms-win-core-delayload-l1-1-1.dll.so new file mode 100755 index 0000000..91ec403 Binary files /dev/null and b/lib/wine/api-ms-win-core-delayload-l1-1-1.dll.so differ diff --git a/lib/wine/api-ms-win-core-errorhandling-l1-1-0.dll.so b/lib/wine/api-ms-win-core-errorhandling-l1-1-0.dll.so new file mode 100755 index 0000000..61a7da2 Binary files /dev/null and b/lib/wine/api-ms-win-core-errorhandling-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-errorhandling-l1-1-1.dll.so b/lib/wine/api-ms-win-core-errorhandling-l1-1-1.dll.so new file mode 100755 index 0000000..78b45dc Binary files /dev/null and b/lib/wine/api-ms-win-core-errorhandling-l1-1-1.dll.so differ diff --git a/lib/wine/api-ms-win-core-errorhandling-l1-1-2.dll.so b/lib/wine/api-ms-win-core-errorhandling-l1-1-2.dll.so new file mode 100755 index 0000000..3bc8d07 Binary files /dev/null and b/lib/wine/api-ms-win-core-errorhandling-l1-1-2.dll.so differ diff --git a/lib/wine/api-ms-win-core-errorhandling-l1-1-3.dll.so b/lib/wine/api-ms-win-core-errorhandling-l1-1-3.dll.so new file mode 100755 index 0000000..b8211fd Binary files /dev/null and b/lib/wine/api-ms-win-core-errorhandling-l1-1-3.dll.so differ diff --git a/lib/wine/api-ms-win-core-fibers-l1-1-0.dll.so b/lib/wine/api-ms-win-core-fibers-l1-1-0.dll.so new file mode 100755 index 0000000..b19f82e Binary files /dev/null and b/lib/wine/api-ms-win-core-fibers-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-fibers-l1-1-1.dll.so b/lib/wine/api-ms-win-core-fibers-l1-1-1.dll.so new file mode 100755 index 0000000..08117b9 Binary files /dev/null and b/lib/wine/api-ms-win-core-fibers-l1-1-1.dll.so differ diff --git a/lib/wine/api-ms-win-core-file-l1-1-0.dll.so b/lib/wine/api-ms-win-core-file-l1-1-0.dll.so new file mode 100755 index 0000000..37dfc8b Binary files /dev/null and b/lib/wine/api-ms-win-core-file-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-file-l1-2-0.dll.so b/lib/wine/api-ms-win-core-file-l1-2-0.dll.so new file mode 100755 index 0000000..7059ec9 Binary files /dev/null and b/lib/wine/api-ms-win-core-file-l1-2-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-file-l1-2-1.dll.so b/lib/wine/api-ms-win-core-file-l1-2-1.dll.so new file mode 100755 index 0000000..be71e92 Binary files /dev/null and b/lib/wine/api-ms-win-core-file-l1-2-1.dll.so differ diff --git a/lib/wine/api-ms-win-core-file-l1-2-2.dll.so b/lib/wine/api-ms-win-core-file-l1-2-2.dll.so new file mode 100755 index 0000000..d00f5b9 Binary files /dev/null and b/lib/wine/api-ms-win-core-file-l1-2-2.dll.so differ diff --git a/lib/wine/api-ms-win-core-file-l2-1-0.dll.so b/lib/wine/api-ms-win-core-file-l2-1-0.dll.so new file mode 100755 index 0000000..b2bb9c0 Binary files /dev/null and b/lib/wine/api-ms-win-core-file-l2-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-file-l2-1-1.dll.so b/lib/wine/api-ms-win-core-file-l2-1-1.dll.so new file mode 100755 index 0000000..8409bd5 Binary files /dev/null and b/lib/wine/api-ms-win-core-file-l2-1-1.dll.so differ diff --git a/lib/wine/api-ms-win-core-file-l2-1-2.dll.so b/lib/wine/api-ms-win-core-file-l2-1-2.dll.so new file mode 100755 index 0000000..173edea Binary files /dev/null and b/lib/wine/api-ms-win-core-file-l2-1-2.dll.so differ diff --git a/lib/wine/api-ms-win-core-handle-l1-1-0.dll.so b/lib/wine/api-ms-win-core-handle-l1-1-0.dll.so new file mode 100755 index 0000000..6fe6fa4 Binary files /dev/null and b/lib/wine/api-ms-win-core-handle-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-heap-l1-1-0.dll.so b/lib/wine/api-ms-win-core-heap-l1-1-0.dll.so new file mode 100755 index 0000000..8ae2b31 Binary files /dev/null and b/lib/wine/api-ms-win-core-heap-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-heap-l1-2-0.dll.so b/lib/wine/api-ms-win-core-heap-l1-2-0.dll.so new file mode 100755 index 0000000..0652582 Binary files /dev/null and b/lib/wine/api-ms-win-core-heap-l1-2-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-heap-l2-1-0.dll.so b/lib/wine/api-ms-win-core-heap-l2-1-0.dll.so new file mode 100755 index 0000000..008646d Binary files /dev/null and b/lib/wine/api-ms-win-core-heap-l2-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-heap-obsolete-l1-1-0.dll.so b/lib/wine/api-ms-win-core-heap-obsolete-l1-1-0.dll.so new file mode 100755 index 0000000..dbf547e Binary files /dev/null and b/lib/wine/api-ms-win-core-heap-obsolete-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-interlocked-l1-1-0.dll.so b/lib/wine/api-ms-win-core-interlocked-l1-1-0.dll.so new file mode 100755 index 0000000..8d9a8fd Binary files /dev/null and b/lib/wine/api-ms-win-core-interlocked-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-interlocked-l1-2-0.dll.so b/lib/wine/api-ms-win-core-interlocked-l1-2-0.dll.so new file mode 100755 index 0000000..1f7a251 Binary files /dev/null and b/lib/wine/api-ms-win-core-interlocked-l1-2-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-io-l1-1-0.dll.so b/lib/wine/api-ms-win-core-io-l1-1-0.dll.so new file mode 100755 index 0000000..24cee75 Binary files /dev/null and b/lib/wine/api-ms-win-core-io-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-io-l1-1-1.dll.so b/lib/wine/api-ms-win-core-io-l1-1-1.dll.so new file mode 100755 index 0000000..92c462a Binary files /dev/null and b/lib/wine/api-ms-win-core-io-l1-1-1.dll.so differ diff --git a/lib/wine/api-ms-win-core-job-l1-1-0.dll.so b/lib/wine/api-ms-win-core-job-l1-1-0.dll.so new file mode 100755 index 0000000..ff11f44 Binary files /dev/null and b/lib/wine/api-ms-win-core-job-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-job-l2-1-0.dll.so b/lib/wine/api-ms-win-core-job-l2-1-0.dll.so new file mode 100755 index 0000000..42189a0 Binary files /dev/null and b/lib/wine/api-ms-win-core-job-l2-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-kernel32-legacy-l1-1-0.dll.so b/lib/wine/api-ms-win-core-kernel32-legacy-l1-1-0.dll.so new file mode 100755 index 0000000..38d6273 Binary files /dev/null and b/lib/wine/api-ms-win-core-kernel32-legacy-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-kernel32-legacy-l1-1-1.dll.so b/lib/wine/api-ms-win-core-kernel32-legacy-l1-1-1.dll.so new file mode 100755 index 0000000..0946247 Binary files /dev/null and b/lib/wine/api-ms-win-core-kernel32-legacy-l1-1-1.dll.so differ diff --git a/lib/wine/api-ms-win-core-kernel32-private-l1-1-1.dll.so b/lib/wine/api-ms-win-core-kernel32-private-l1-1-1.dll.so new file mode 100755 index 0000000..7f282d8 Binary files /dev/null and b/lib/wine/api-ms-win-core-kernel32-private-l1-1-1.dll.so differ diff --git a/lib/wine/api-ms-win-core-largeinteger-l1-1-0.dll.so b/lib/wine/api-ms-win-core-largeinteger-l1-1-0.dll.so new file mode 100755 index 0000000..1a31578 Binary files /dev/null and b/lib/wine/api-ms-win-core-largeinteger-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-libraryloader-l1-1-0.dll.so b/lib/wine/api-ms-win-core-libraryloader-l1-1-0.dll.so new file mode 100755 index 0000000..2026f1b Binary files /dev/null and b/lib/wine/api-ms-win-core-libraryloader-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-libraryloader-l1-1-1.dll.so b/lib/wine/api-ms-win-core-libraryloader-l1-1-1.dll.so new file mode 100755 index 0000000..35482d9 Binary files /dev/null and b/lib/wine/api-ms-win-core-libraryloader-l1-1-1.dll.so differ diff --git a/lib/wine/api-ms-win-core-libraryloader-l1-2-0.dll.so b/lib/wine/api-ms-win-core-libraryloader-l1-2-0.dll.so new file mode 100755 index 0000000..261be24 Binary files /dev/null and b/lib/wine/api-ms-win-core-libraryloader-l1-2-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-libraryloader-l1-2-1.dll.so b/lib/wine/api-ms-win-core-libraryloader-l1-2-1.dll.so new file mode 100755 index 0000000..a5b2425 Binary files /dev/null and b/lib/wine/api-ms-win-core-libraryloader-l1-2-1.dll.so differ diff --git a/lib/wine/api-ms-win-core-libraryloader-l1-2-2.dll.so b/lib/wine/api-ms-win-core-libraryloader-l1-2-2.dll.so new file mode 100755 index 0000000..f00835e Binary files /dev/null and b/lib/wine/api-ms-win-core-libraryloader-l1-2-2.dll.so differ diff --git a/lib/wine/api-ms-win-core-localization-l1-1-0.dll.so b/lib/wine/api-ms-win-core-localization-l1-1-0.dll.so new file mode 100755 index 0000000..bf74d30 Binary files /dev/null and b/lib/wine/api-ms-win-core-localization-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-localization-l1-2-0.dll.so b/lib/wine/api-ms-win-core-localization-l1-2-0.dll.so new file mode 100755 index 0000000..4e870cb Binary files /dev/null and b/lib/wine/api-ms-win-core-localization-l1-2-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-localization-l1-2-1.dll.so b/lib/wine/api-ms-win-core-localization-l1-2-1.dll.so new file mode 100755 index 0000000..7d4073c Binary files /dev/null and b/lib/wine/api-ms-win-core-localization-l1-2-1.dll.so differ diff --git a/lib/wine/api-ms-win-core-localization-l2-1-0.dll.so b/lib/wine/api-ms-win-core-localization-l2-1-0.dll.so new file mode 100755 index 0000000..fdf3512 Binary files /dev/null and b/lib/wine/api-ms-win-core-localization-l2-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-localization-obsolete-l1-1-0.dll.so b/lib/wine/api-ms-win-core-localization-obsolete-l1-1-0.dll.so new file mode 100755 index 0000000..630b68e Binary files /dev/null and b/lib/wine/api-ms-win-core-localization-obsolete-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-localization-obsolete-l1-2-0.dll.so b/lib/wine/api-ms-win-core-localization-obsolete-l1-2-0.dll.so new file mode 100755 index 0000000..ccefd59 Binary files /dev/null and b/lib/wine/api-ms-win-core-localization-obsolete-l1-2-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-localization-obsolete-l1-3-0.dll.so b/lib/wine/api-ms-win-core-localization-obsolete-l1-3-0.dll.so new file mode 100755 index 0000000..350f31f Binary files /dev/null and b/lib/wine/api-ms-win-core-localization-obsolete-l1-3-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-localization-private-l1-1-0.dll.so b/lib/wine/api-ms-win-core-localization-private-l1-1-0.dll.so new file mode 100755 index 0000000..0ebf4bf Binary files /dev/null and b/lib/wine/api-ms-win-core-localization-private-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-localregistry-l1-1-0.dll.so b/lib/wine/api-ms-win-core-localregistry-l1-1-0.dll.so new file mode 100755 index 0000000..3f5d0c1 Binary files /dev/null and b/lib/wine/api-ms-win-core-localregistry-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-memory-l1-1-0.dll.so b/lib/wine/api-ms-win-core-memory-l1-1-0.dll.so new file mode 100755 index 0000000..16c955b Binary files /dev/null and b/lib/wine/api-ms-win-core-memory-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-memory-l1-1-1.dll.so b/lib/wine/api-ms-win-core-memory-l1-1-1.dll.so new file mode 100755 index 0000000..08cab6b Binary files /dev/null and b/lib/wine/api-ms-win-core-memory-l1-1-1.dll.so differ diff --git a/lib/wine/api-ms-win-core-memory-l1-1-2.dll.so b/lib/wine/api-ms-win-core-memory-l1-1-2.dll.so new file mode 100755 index 0000000..bf64fdf Binary files /dev/null and b/lib/wine/api-ms-win-core-memory-l1-1-2.dll.so differ diff --git a/lib/wine/api-ms-win-core-misc-l1-1-0.dll.so b/lib/wine/api-ms-win-core-misc-l1-1-0.dll.so new file mode 100755 index 0000000..6f0a359 Binary files /dev/null and b/lib/wine/api-ms-win-core-misc-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-namedpipe-l1-1-0.dll.so b/lib/wine/api-ms-win-core-namedpipe-l1-1-0.dll.so new file mode 100755 index 0000000..9e9616d Binary files /dev/null and b/lib/wine/api-ms-win-core-namedpipe-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-namedpipe-l1-2-0.dll.so b/lib/wine/api-ms-win-core-namedpipe-l1-2-0.dll.so new file mode 100755 index 0000000..0eb52b2 Binary files /dev/null and b/lib/wine/api-ms-win-core-namedpipe-l1-2-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-namespace-l1-1-0.dll.so b/lib/wine/api-ms-win-core-namespace-l1-1-0.dll.so new file mode 100755 index 0000000..f134959 Binary files /dev/null and b/lib/wine/api-ms-win-core-namespace-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-normalization-l1-1-0.dll.so b/lib/wine/api-ms-win-core-normalization-l1-1-0.dll.so new file mode 100755 index 0000000..fd5902f Binary files /dev/null and b/lib/wine/api-ms-win-core-normalization-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-path-l1-1-0.dll.so b/lib/wine/api-ms-win-core-path-l1-1-0.dll.so new file mode 100755 index 0000000..2b1cfd8 Binary files /dev/null and b/lib/wine/api-ms-win-core-path-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-privateprofile-l1-1-1.dll.so b/lib/wine/api-ms-win-core-privateprofile-l1-1-1.dll.so new file mode 100755 index 0000000..297d73d Binary files /dev/null and b/lib/wine/api-ms-win-core-privateprofile-l1-1-1.dll.so differ diff --git a/lib/wine/api-ms-win-core-processenvironment-l1-1-0.dll.so b/lib/wine/api-ms-win-core-processenvironment-l1-1-0.dll.so new file mode 100755 index 0000000..894bdd5 Binary files /dev/null and b/lib/wine/api-ms-win-core-processenvironment-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-processenvironment-l1-2-0.dll.so b/lib/wine/api-ms-win-core-processenvironment-l1-2-0.dll.so new file mode 100755 index 0000000..fcfc72f Binary files /dev/null and b/lib/wine/api-ms-win-core-processenvironment-l1-2-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-processthreads-l1-1-0.dll.so b/lib/wine/api-ms-win-core-processthreads-l1-1-0.dll.so new file mode 100755 index 0000000..08a4ac1 Binary files /dev/null and b/lib/wine/api-ms-win-core-processthreads-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-processthreads-l1-1-1.dll.so b/lib/wine/api-ms-win-core-processthreads-l1-1-1.dll.so new file mode 100755 index 0000000..9218305 Binary files /dev/null and b/lib/wine/api-ms-win-core-processthreads-l1-1-1.dll.so differ diff --git a/lib/wine/api-ms-win-core-processthreads-l1-1-2.dll.so b/lib/wine/api-ms-win-core-processthreads-l1-1-2.dll.so new file mode 100755 index 0000000..44e8fad Binary files /dev/null and b/lib/wine/api-ms-win-core-processthreads-l1-1-2.dll.so differ diff --git a/lib/wine/api-ms-win-core-processthreads-l1-1-3.dll.so b/lib/wine/api-ms-win-core-processthreads-l1-1-3.dll.so new file mode 100755 index 0000000..327e8cd Binary files /dev/null and b/lib/wine/api-ms-win-core-processthreads-l1-1-3.dll.so differ diff --git a/lib/wine/api-ms-win-core-processtopology-obsolete-l1-1-0.dll.so b/lib/wine/api-ms-win-core-processtopology-obsolete-l1-1-0.dll.so new file mode 100755 index 0000000..8d0c88f Binary files /dev/null and b/lib/wine/api-ms-win-core-processtopology-obsolete-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-profile-l1-1-0.dll.so b/lib/wine/api-ms-win-core-profile-l1-1-0.dll.so new file mode 100755 index 0000000..2cd1a88 Binary files /dev/null and b/lib/wine/api-ms-win-core-profile-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-psapi-ansi-l1-1-0.dll.so b/lib/wine/api-ms-win-core-psapi-ansi-l1-1-0.dll.so new file mode 100755 index 0000000..0b70413 Binary files /dev/null and b/lib/wine/api-ms-win-core-psapi-ansi-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-psapi-l1-1-0.dll.so b/lib/wine/api-ms-win-core-psapi-l1-1-0.dll.so new file mode 100755 index 0000000..c1708a5 Binary files /dev/null and b/lib/wine/api-ms-win-core-psapi-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-psapi-obsolete-l1-1-0.dll.so b/lib/wine/api-ms-win-core-psapi-obsolete-l1-1-0.dll.so new file mode 100755 index 0000000..00d4a2b Binary files /dev/null and b/lib/wine/api-ms-win-core-psapi-obsolete-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-quirks-l1-1-0.dll.so b/lib/wine/api-ms-win-core-quirks-l1-1-0.dll.so new file mode 100755 index 0000000..5b38c10 Binary files /dev/null and b/lib/wine/api-ms-win-core-quirks-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-realtime-l1-1-0.dll.so b/lib/wine/api-ms-win-core-realtime-l1-1-0.dll.so new file mode 100755 index 0000000..7998fe1 Binary files /dev/null and b/lib/wine/api-ms-win-core-realtime-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-registry-l1-1-0.dll.so b/lib/wine/api-ms-win-core-registry-l1-1-0.dll.so new file mode 100755 index 0000000..266b115 Binary files /dev/null and b/lib/wine/api-ms-win-core-registry-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-registry-l2-1-0.dll.so b/lib/wine/api-ms-win-core-registry-l2-1-0.dll.so new file mode 100755 index 0000000..3271a3b Binary files /dev/null and b/lib/wine/api-ms-win-core-registry-l2-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-registryuserspecific-l1-1-0.dll.so b/lib/wine/api-ms-win-core-registryuserspecific-l1-1-0.dll.so new file mode 100755 index 0000000..e51a6fb Binary files /dev/null and b/lib/wine/api-ms-win-core-registryuserspecific-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-rtlsupport-l1-1-0.dll.so b/lib/wine/api-ms-win-core-rtlsupport-l1-1-0.dll.so new file mode 100755 index 0000000..3be1395 Binary files /dev/null and b/lib/wine/api-ms-win-core-rtlsupport-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-rtlsupport-l1-2-0.dll.so b/lib/wine/api-ms-win-core-rtlsupport-l1-2-0.dll.so new file mode 100755 index 0000000..8e700dc Binary files /dev/null and b/lib/wine/api-ms-win-core-rtlsupport-l1-2-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-shlwapi-legacy-l1-1-0.dll.so b/lib/wine/api-ms-win-core-shlwapi-legacy-l1-1-0.dll.so new file mode 100755 index 0000000..a4f1fcf Binary files /dev/null and b/lib/wine/api-ms-win-core-shlwapi-legacy-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-shlwapi-obsolete-l1-1-0.dll.so b/lib/wine/api-ms-win-core-shlwapi-obsolete-l1-1-0.dll.so new file mode 100755 index 0000000..608a7b0 Binary files /dev/null and b/lib/wine/api-ms-win-core-shlwapi-obsolete-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-shlwapi-obsolete-l1-2-0.dll.so b/lib/wine/api-ms-win-core-shlwapi-obsolete-l1-2-0.dll.so new file mode 100755 index 0000000..641d78c Binary files /dev/null and b/lib/wine/api-ms-win-core-shlwapi-obsolete-l1-2-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-shutdown-l1-1-0.dll.so b/lib/wine/api-ms-win-core-shutdown-l1-1-0.dll.so new file mode 100755 index 0000000..d0776f6 Binary files /dev/null and b/lib/wine/api-ms-win-core-shutdown-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-sidebyside-l1-1-0.dll.so b/lib/wine/api-ms-win-core-sidebyside-l1-1-0.dll.so new file mode 100755 index 0000000..281afde Binary files /dev/null and b/lib/wine/api-ms-win-core-sidebyside-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-string-l1-1-0.dll.so b/lib/wine/api-ms-win-core-string-l1-1-0.dll.so new file mode 100755 index 0000000..6cb7712 Binary files /dev/null and b/lib/wine/api-ms-win-core-string-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-string-l2-1-0.dll.so b/lib/wine/api-ms-win-core-string-l2-1-0.dll.so new file mode 100755 index 0000000..e5ba6af Binary files /dev/null and b/lib/wine/api-ms-win-core-string-l2-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-string-obsolete-l1-1-0.dll.so b/lib/wine/api-ms-win-core-string-obsolete-l1-1-0.dll.so new file mode 100755 index 0000000..1d711c1 Binary files /dev/null and b/lib/wine/api-ms-win-core-string-obsolete-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-stringansi-l1-1-0.dll.so b/lib/wine/api-ms-win-core-stringansi-l1-1-0.dll.so new file mode 100755 index 0000000..5abfed7 Binary files /dev/null and b/lib/wine/api-ms-win-core-stringansi-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-stringloader-l1-1-1.dll.so b/lib/wine/api-ms-win-core-stringloader-l1-1-1.dll.so new file mode 100755 index 0000000..65dd6c2 Binary files /dev/null and b/lib/wine/api-ms-win-core-stringloader-l1-1-1.dll.so differ diff --git a/lib/wine/api-ms-win-core-synch-ansi-l1-1-0.dll.so b/lib/wine/api-ms-win-core-synch-ansi-l1-1-0.dll.so new file mode 100755 index 0000000..3f51e39 Binary files /dev/null and b/lib/wine/api-ms-win-core-synch-ansi-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-synch-l1-1-0.dll.so b/lib/wine/api-ms-win-core-synch-l1-1-0.dll.so new file mode 100755 index 0000000..b1d926e Binary files /dev/null and b/lib/wine/api-ms-win-core-synch-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-synch-l1-2-0.dll.so b/lib/wine/api-ms-win-core-synch-l1-2-0.dll.so new file mode 100755 index 0000000..12c6637 Binary files /dev/null and b/lib/wine/api-ms-win-core-synch-l1-2-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-synch-l1-2-1.dll.so b/lib/wine/api-ms-win-core-synch-l1-2-1.dll.so new file mode 100755 index 0000000..be9075a Binary files /dev/null and b/lib/wine/api-ms-win-core-synch-l1-2-1.dll.so differ diff --git a/lib/wine/api-ms-win-core-sysinfo-l1-1-0.dll.so b/lib/wine/api-ms-win-core-sysinfo-l1-1-0.dll.so new file mode 100755 index 0000000..2f5796c Binary files /dev/null and b/lib/wine/api-ms-win-core-sysinfo-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-sysinfo-l1-2-0.dll.so b/lib/wine/api-ms-win-core-sysinfo-l1-2-0.dll.so new file mode 100755 index 0000000..be8a94a Binary files /dev/null and b/lib/wine/api-ms-win-core-sysinfo-l1-2-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-sysinfo-l1-2-1.dll.so b/lib/wine/api-ms-win-core-sysinfo-l1-2-1.dll.so new file mode 100755 index 0000000..797ac97 Binary files /dev/null and b/lib/wine/api-ms-win-core-sysinfo-l1-2-1.dll.so differ diff --git a/lib/wine/api-ms-win-core-threadpool-l1-1-0.dll.so b/lib/wine/api-ms-win-core-threadpool-l1-1-0.dll.so new file mode 100755 index 0000000..bb4e667 Binary files /dev/null and b/lib/wine/api-ms-win-core-threadpool-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-threadpool-l1-2-0.dll.so b/lib/wine/api-ms-win-core-threadpool-l1-2-0.dll.so new file mode 100755 index 0000000..3788fe5 Binary files /dev/null and b/lib/wine/api-ms-win-core-threadpool-l1-2-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-threadpool-legacy-l1-1-0.dll.so b/lib/wine/api-ms-win-core-threadpool-legacy-l1-1-0.dll.so new file mode 100755 index 0000000..ce50ef5 Binary files /dev/null and b/lib/wine/api-ms-win-core-threadpool-legacy-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-threadpool-private-l1-1-0.dll.so b/lib/wine/api-ms-win-core-threadpool-private-l1-1-0.dll.so new file mode 100755 index 0000000..945957e Binary files /dev/null and b/lib/wine/api-ms-win-core-threadpool-private-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-timezone-l1-1-0.dll.so b/lib/wine/api-ms-win-core-timezone-l1-1-0.dll.so new file mode 100755 index 0000000..57d6413 Binary files /dev/null and b/lib/wine/api-ms-win-core-timezone-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-toolhelp-l1-1-0.dll.so b/lib/wine/api-ms-win-core-toolhelp-l1-1-0.dll.so new file mode 100755 index 0000000..5bae1b1 Binary files /dev/null and b/lib/wine/api-ms-win-core-toolhelp-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-url-l1-1-0.dll.so b/lib/wine/api-ms-win-core-url-l1-1-0.dll.so new file mode 100755 index 0000000..05f76ed Binary files /dev/null and b/lib/wine/api-ms-win-core-url-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-util-l1-1-0.dll.so b/lib/wine/api-ms-win-core-util-l1-1-0.dll.so new file mode 100755 index 0000000..78c12de Binary files /dev/null and b/lib/wine/api-ms-win-core-util-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-version-l1-1-0.dll.so b/lib/wine/api-ms-win-core-version-l1-1-0.dll.so new file mode 100755 index 0000000..14dd077 Binary files /dev/null and b/lib/wine/api-ms-win-core-version-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-version-l1-1-1.dll.so b/lib/wine/api-ms-win-core-version-l1-1-1.dll.so new file mode 100755 index 0000000..25a89cb Binary files /dev/null and b/lib/wine/api-ms-win-core-version-l1-1-1.dll.so differ diff --git a/lib/wine/api-ms-win-core-version-private-l1-1-0.dll.so b/lib/wine/api-ms-win-core-version-private-l1-1-0.dll.so new file mode 100755 index 0000000..78bbf2f Binary files /dev/null and b/lib/wine/api-ms-win-core-version-private-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-versionansi-l1-1-0.dll.so b/lib/wine/api-ms-win-core-versionansi-l1-1-0.dll.so new file mode 100755 index 0000000..f4b5b36 Binary files /dev/null and b/lib/wine/api-ms-win-core-versionansi-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-windowserrorreporting-l1-1-0.dll.so b/lib/wine/api-ms-win-core-windowserrorreporting-l1-1-0.dll.so new file mode 100755 index 0000000..11762d1 Binary files /dev/null and b/lib/wine/api-ms-win-core-windowserrorreporting-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-winrt-error-l1-1-0.dll.so b/lib/wine/api-ms-win-core-winrt-error-l1-1-0.dll.so new file mode 100755 index 0000000..85dec99 Binary files /dev/null and b/lib/wine/api-ms-win-core-winrt-error-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-winrt-error-l1-1-1.dll.so b/lib/wine/api-ms-win-core-winrt-error-l1-1-1.dll.so new file mode 100755 index 0000000..ce5753f Binary files /dev/null and b/lib/wine/api-ms-win-core-winrt-error-l1-1-1.dll.so differ diff --git a/lib/wine/api-ms-win-core-winrt-errorprivate-l1-1-1.dll.so b/lib/wine/api-ms-win-core-winrt-errorprivate-l1-1-1.dll.so new file mode 100755 index 0000000..8828a70 Binary files /dev/null and b/lib/wine/api-ms-win-core-winrt-errorprivate-l1-1-1.dll.so differ diff --git a/lib/wine/api-ms-win-core-winrt-l1-1-0.dll.so b/lib/wine/api-ms-win-core-winrt-l1-1-0.dll.so new file mode 100755 index 0000000..0f1cb0f Binary files /dev/null and b/lib/wine/api-ms-win-core-winrt-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-winrt-registration-l1-1-0.dll.so b/lib/wine/api-ms-win-core-winrt-registration-l1-1-0.dll.so new file mode 100755 index 0000000..c5b857b Binary files /dev/null and b/lib/wine/api-ms-win-core-winrt-registration-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-winrt-roparameterizediid-l1-1-0.dll.so b/lib/wine/api-ms-win-core-winrt-roparameterizediid-l1-1-0.dll.so new file mode 100755 index 0000000..b1a7384 Binary files /dev/null and b/lib/wine/api-ms-win-core-winrt-roparameterizediid-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-winrt-string-l1-1-0.dll.so b/lib/wine/api-ms-win-core-winrt-string-l1-1-0.dll.so new file mode 100755 index 0000000..d465081 Binary files /dev/null and b/lib/wine/api-ms-win-core-winrt-string-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-winrt-string-l1-1-1.dll.so b/lib/wine/api-ms-win-core-winrt-string-l1-1-1.dll.so new file mode 100755 index 0000000..d34d9b5 Binary files /dev/null and b/lib/wine/api-ms-win-core-winrt-string-l1-1-1.dll.so differ diff --git a/lib/wine/api-ms-win-core-wow64-l1-1-0.dll.so b/lib/wine/api-ms-win-core-wow64-l1-1-0.dll.so new file mode 100755 index 0000000..003f6c2 Binary files /dev/null and b/lib/wine/api-ms-win-core-wow64-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-wow64-l1-1-1.dll.so b/lib/wine/api-ms-win-core-wow64-l1-1-1.dll.so new file mode 100755 index 0000000..25bb3da Binary files /dev/null and b/lib/wine/api-ms-win-core-wow64-l1-1-1.dll.so differ diff --git a/lib/wine/api-ms-win-core-xstate-l1-1-0.dll.so b/lib/wine/api-ms-win-core-xstate-l1-1-0.dll.so new file mode 100755 index 0000000..cedf037 Binary files /dev/null and b/lib/wine/api-ms-win-core-xstate-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-core-xstate-l2-1-0.dll.so b/lib/wine/api-ms-win-core-xstate-l2-1-0.dll.so new file mode 100755 index 0000000..3370653 Binary files /dev/null and b/lib/wine/api-ms-win-core-xstate-l2-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-crt-conio-l1-1-0.dll.so b/lib/wine/api-ms-win-crt-conio-l1-1-0.dll.so new file mode 100755 index 0000000..ede0317 Binary files /dev/null and b/lib/wine/api-ms-win-crt-conio-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-crt-convert-l1-1-0.dll.so b/lib/wine/api-ms-win-crt-convert-l1-1-0.dll.so new file mode 100755 index 0000000..d91ced6 Binary files /dev/null and b/lib/wine/api-ms-win-crt-convert-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-crt-environment-l1-1-0.dll.so b/lib/wine/api-ms-win-crt-environment-l1-1-0.dll.so new file mode 100755 index 0000000..a15ab76 Binary files /dev/null and b/lib/wine/api-ms-win-crt-environment-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-crt-filesystem-l1-1-0.dll.so b/lib/wine/api-ms-win-crt-filesystem-l1-1-0.dll.so new file mode 100755 index 0000000..d6b2dfc Binary files /dev/null and b/lib/wine/api-ms-win-crt-filesystem-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-crt-heap-l1-1-0.dll.so b/lib/wine/api-ms-win-crt-heap-l1-1-0.dll.so new file mode 100755 index 0000000..465fa21 Binary files /dev/null and b/lib/wine/api-ms-win-crt-heap-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-crt-locale-l1-1-0.dll.so b/lib/wine/api-ms-win-crt-locale-l1-1-0.dll.so new file mode 100755 index 0000000..ec16b80 Binary files /dev/null and b/lib/wine/api-ms-win-crt-locale-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-crt-math-l1-1-0.dll.so b/lib/wine/api-ms-win-crt-math-l1-1-0.dll.so new file mode 100755 index 0000000..cd39ede Binary files /dev/null and b/lib/wine/api-ms-win-crt-math-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-crt-multibyte-l1-1-0.dll.so b/lib/wine/api-ms-win-crt-multibyte-l1-1-0.dll.so new file mode 100755 index 0000000..e0dcf9b Binary files /dev/null and b/lib/wine/api-ms-win-crt-multibyte-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-crt-private-l1-1-0.dll.so b/lib/wine/api-ms-win-crt-private-l1-1-0.dll.so new file mode 100755 index 0000000..bbbc1e1 Binary files /dev/null and b/lib/wine/api-ms-win-crt-private-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-crt-process-l1-1-0.dll.so b/lib/wine/api-ms-win-crt-process-l1-1-0.dll.so new file mode 100755 index 0000000..2b8932b Binary files /dev/null and b/lib/wine/api-ms-win-crt-process-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-crt-runtime-l1-1-0.dll.so b/lib/wine/api-ms-win-crt-runtime-l1-1-0.dll.so new file mode 100755 index 0000000..03438c6 Binary files /dev/null and b/lib/wine/api-ms-win-crt-runtime-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-crt-stdio-l1-1-0.dll.so b/lib/wine/api-ms-win-crt-stdio-l1-1-0.dll.so new file mode 100755 index 0000000..745fe0f Binary files /dev/null and b/lib/wine/api-ms-win-crt-stdio-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-crt-string-l1-1-0.dll.so b/lib/wine/api-ms-win-crt-string-l1-1-0.dll.so new file mode 100755 index 0000000..d7285e5 Binary files /dev/null and b/lib/wine/api-ms-win-crt-string-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-crt-time-l1-1-0.dll.so b/lib/wine/api-ms-win-crt-time-l1-1-0.dll.so new file mode 100755 index 0000000..659f42e Binary files /dev/null and b/lib/wine/api-ms-win-crt-time-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-crt-utility-l1-1-0.dll.so b/lib/wine/api-ms-win-crt-utility-l1-1-0.dll.so new file mode 100755 index 0000000..1d94205 Binary files /dev/null and b/lib/wine/api-ms-win-crt-utility-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-devices-config-l1-1-0.dll.so b/lib/wine/api-ms-win-devices-config-l1-1-0.dll.so new file mode 100755 index 0000000..9a8a166 Binary files /dev/null and b/lib/wine/api-ms-win-devices-config-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-devices-config-l1-1-1.dll.so b/lib/wine/api-ms-win-devices-config-l1-1-1.dll.so new file mode 100755 index 0000000..9a44ae8 Binary files /dev/null and b/lib/wine/api-ms-win-devices-config-l1-1-1.dll.so differ diff --git a/lib/wine/api-ms-win-devices-query-l1-1-1.dll.so b/lib/wine/api-ms-win-devices-query-l1-1-1.dll.so new file mode 100755 index 0000000..3e98fae Binary files /dev/null and b/lib/wine/api-ms-win-devices-query-l1-1-1.dll.so differ diff --git a/lib/wine/api-ms-win-downlevel-advapi32-l1-1-0.dll.so b/lib/wine/api-ms-win-downlevel-advapi32-l1-1-0.dll.so new file mode 100755 index 0000000..56ef60f Binary files /dev/null and b/lib/wine/api-ms-win-downlevel-advapi32-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-downlevel-advapi32-l2-1-0.dll.so b/lib/wine/api-ms-win-downlevel-advapi32-l2-1-0.dll.so new file mode 100755 index 0000000..f2808e8 Binary files /dev/null and b/lib/wine/api-ms-win-downlevel-advapi32-l2-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-downlevel-normaliz-l1-1-0.dll.so b/lib/wine/api-ms-win-downlevel-normaliz-l1-1-0.dll.so new file mode 100755 index 0000000..367584f Binary files /dev/null and b/lib/wine/api-ms-win-downlevel-normaliz-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-downlevel-ole32-l1-1-0.dll.so b/lib/wine/api-ms-win-downlevel-ole32-l1-1-0.dll.so new file mode 100755 index 0000000..ddc67b0 Binary files /dev/null and b/lib/wine/api-ms-win-downlevel-ole32-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-downlevel-shell32-l1-1-0.dll.so b/lib/wine/api-ms-win-downlevel-shell32-l1-1-0.dll.so new file mode 100755 index 0000000..932bfbf Binary files /dev/null and b/lib/wine/api-ms-win-downlevel-shell32-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-downlevel-shlwapi-l1-1-0.dll.so b/lib/wine/api-ms-win-downlevel-shlwapi-l1-1-0.dll.so new file mode 100755 index 0000000..66e022f Binary files /dev/null and b/lib/wine/api-ms-win-downlevel-shlwapi-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-downlevel-shlwapi-l2-1-0.dll.so b/lib/wine/api-ms-win-downlevel-shlwapi-l2-1-0.dll.so new file mode 100755 index 0000000..6d972f5 Binary files /dev/null and b/lib/wine/api-ms-win-downlevel-shlwapi-l2-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-downlevel-user32-l1-1-0.dll.so b/lib/wine/api-ms-win-downlevel-user32-l1-1-0.dll.so new file mode 100755 index 0000000..85d3673 Binary files /dev/null and b/lib/wine/api-ms-win-downlevel-user32-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-downlevel-version-l1-1-0.dll.so b/lib/wine/api-ms-win-downlevel-version-l1-1-0.dll.so new file mode 100755 index 0000000..919d445 Binary files /dev/null and b/lib/wine/api-ms-win-downlevel-version-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-dx-d3dkmt-l1-1-0.dll.so b/lib/wine/api-ms-win-dx-d3dkmt-l1-1-0.dll.so new file mode 100755 index 0000000..6fbf3f8 Binary files /dev/null and b/lib/wine/api-ms-win-dx-d3dkmt-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-eventing-classicprovider-l1-1-0.dll.so b/lib/wine/api-ms-win-eventing-classicprovider-l1-1-0.dll.so new file mode 100755 index 0000000..a7d23c6 Binary files /dev/null and b/lib/wine/api-ms-win-eventing-classicprovider-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-eventing-consumer-l1-1-0.dll.so b/lib/wine/api-ms-win-eventing-consumer-l1-1-0.dll.so new file mode 100755 index 0000000..8a74720 Binary files /dev/null and b/lib/wine/api-ms-win-eventing-consumer-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-eventing-controller-l1-1-0.dll.so b/lib/wine/api-ms-win-eventing-controller-l1-1-0.dll.so new file mode 100755 index 0000000..7deef57 Binary files /dev/null and b/lib/wine/api-ms-win-eventing-controller-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-eventing-legacy-l1-1-0.dll.so b/lib/wine/api-ms-win-eventing-legacy-l1-1-0.dll.so new file mode 100755 index 0000000..ce44326 Binary files /dev/null and b/lib/wine/api-ms-win-eventing-legacy-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-eventing-provider-l1-1-0.dll.so b/lib/wine/api-ms-win-eventing-provider-l1-1-0.dll.so new file mode 100755 index 0000000..8c00825 Binary files /dev/null and b/lib/wine/api-ms-win-eventing-provider-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-eventlog-legacy-l1-1-0.dll.so b/lib/wine/api-ms-win-eventlog-legacy-l1-1-0.dll.so new file mode 100755 index 0000000..080cf8a Binary files /dev/null and b/lib/wine/api-ms-win-eventlog-legacy-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-gdi-dpiinfo-l1-1-0.dll.so b/lib/wine/api-ms-win-gdi-dpiinfo-l1-1-0.dll.so new file mode 100755 index 0000000..c7f678b Binary files /dev/null and b/lib/wine/api-ms-win-gdi-dpiinfo-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-mm-joystick-l1-1-0.dll.so b/lib/wine/api-ms-win-mm-joystick-l1-1-0.dll.so new file mode 100755 index 0000000..3b3b263 Binary files /dev/null and b/lib/wine/api-ms-win-mm-joystick-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-mm-misc-l1-1-1.dll.so b/lib/wine/api-ms-win-mm-misc-l1-1-1.dll.so new file mode 100755 index 0000000..6c69afd Binary files /dev/null and b/lib/wine/api-ms-win-mm-misc-l1-1-1.dll.so differ diff --git a/lib/wine/api-ms-win-mm-mme-l1-1-0.dll.so b/lib/wine/api-ms-win-mm-mme-l1-1-0.dll.so new file mode 100755 index 0000000..44e63cc Binary files /dev/null and b/lib/wine/api-ms-win-mm-mme-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-mm-time-l1-1-0.dll.so b/lib/wine/api-ms-win-mm-time-l1-1-0.dll.so new file mode 100755 index 0000000..9ef71a6 Binary files /dev/null and b/lib/wine/api-ms-win-mm-time-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-ntuser-dc-access-l1-1-0.dll.so b/lib/wine/api-ms-win-ntuser-dc-access-l1-1-0.dll.so new file mode 100755 index 0000000..1752563 Binary files /dev/null and b/lib/wine/api-ms-win-ntuser-dc-access-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-ntuser-rectangle-l1-1-0.dll.so b/lib/wine/api-ms-win-ntuser-rectangle-l1-1-0.dll.so new file mode 100755 index 0000000..521ea1d Binary files /dev/null and b/lib/wine/api-ms-win-ntuser-rectangle-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-ntuser-sysparams-l1-1-0.dll.so b/lib/wine/api-ms-win-ntuser-sysparams-l1-1-0.dll.so new file mode 100755 index 0000000..c1d0534 Binary files /dev/null and b/lib/wine/api-ms-win-ntuser-sysparams-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-perf-legacy-l1-1-0.dll.so b/lib/wine/api-ms-win-perf-legacy-l1-1-0.dll.so new file mode 100755 index 0000000..a024578 Binary files /dev/null and b/lib/wine/api-ms-win-perf-legacy-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-power-base-l1-1-0.dll.so b/lib/wine/api-ms-win-power-base-l1-1-0.dll.so new file mode 100755 index 0000000..3ff1367 Binary files /dev/null and b/lib/wine/api-ms-win-power-base-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-power-setting-l1-1-0.dll.so b/lib/wine/api-ms-win-power-setting-l1-1-0.dll.so new file mode 100755 index 0000000..be60f80 Binary files /dev/null and b/lib/wine/api-ms-win-power-setting-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-rtcore-ntuser-draw-l1-1-0.dll.so b/lib/wine/api-ms-win-rtcore-ntuser-draw-l1-1-0.dll.so new file mode 100755 index 0000000..dbfaf42 Binary files /dev/null and b/lib/wine/api-ms-win-rtcore-ntuser-draw-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-rtcore-ntuser-private-l1-1-0.dll.so b/lib/wine/api-ms-win-rtcore-ntuser-private-l1-1-0.dll.so new file mode 100755 index 0000000..20f3d44 Binary files /dev/null and b/lib/wine/api-ms-win-rtcore-ntuser-private-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-rtcore-ntuser-private-l1-1-4.dll.so b/lib/wine/api-ms-win-rtcore-ntuser-private-l1-1-4.dll.so new file mode 100755 index 0000000..341448e Binary files /dev/null and b/lib/wine/api-ms-win-rtcore-ntuser-private-l1-1-4.dll.so differ diff --git a/lib/wine/api-ms-win-rtcore-ntuser-window-l1-1-0.dll.so b/lib/wine/api-ms-win-rtcore-ntuser-window-l1-1-0.dll.so new file mode 100755 index 0000000..dc1527b Binary files /dev/null and b/lib/wine/api-ms-win-rtcore-ntuser-window-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-rtcore-ntuser-winevent-l1-1-0.dll.so b/lib/wine/api-ms-win-rtcore-ntuser-winevent-l1-1-0.dll.so new file mode 100755 index 0000000..c4bc054 Binary files /dev/null and b/lib/wine/api-ms-win-rtcore-ntuser-winevent-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-rtcore-ntuser-wmpointer-l1-1-0.dll.so b/lib/wine/api-ms-win-rtcore-ntuser-wmpointer-l1-1-0.dll.so new file mode 100755 index 0000000..30f9d3f Binary files /dev/null and b/lib/wine/api-ms-win-rtcore-ntuser-wmpointer-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-rtcore-ntuser-wmpointer-l1-1-3.dll.so b/lib/wine/api-ms-win-rtcore-ntuser-wmpointer-l1-1-3.dll.so new file mode 100755 index 0000000..3810e1f Binary files /dev/null and b/lib/wine/api-ms-win-rtcore-ntuser-wmpointer-l1-1-3.dll.so differ diff --git a/lib/wine/api-ms-win-security-activedirectoryclient-l1-1-0.dll.so b/lib/wine/api-ms-win-security-activedirectoryclient-l1-1-0.dll.so new file mode 100755 index 0000000..84d48a9 Binary files /dev/null and b/lib/wine/api-ms-win-security-activedirectoryclient-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-security-audit-l1-1-1.dll.so b/lib/wine/api-ms-win-security-audit-l1-1-1.dll.so new file mode 100755 index 0000000..9ec7bfc Binary files /dev/null and b/lib/wine/api-ms-win-security-audit-l1-1-1.dll.so differ diff --git a/lib/wine/api-ms-win-security-base-l1-1-0.dll.so b/lib/wine/api-ms-win-security-base-l1-1-0.dll.so new file mode 100755 index 0000000..f2d00e5 Binary files /dev/null and b/lib/wine/api-ms-win-security-base-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-security-base-l1-2-0.dll.so b/lib/wine/api-ms-win-security-base-l1-2-0.dll.so new file mode 100755 index 0000000..6b11956 Binary files /dev/null and b/lib/wine/api-ms-win-security-base-l1-2-0.dll.so differ diff --git a/lib/wine/api-ms-win-security-base-private-l1-1-1.dll.so b/lib/wine/api-ms-win-security-base-private-l1-1-1.dll.so new file mode 100755 index 0000000..5682759 Binary files /dev/null and b/lib/wine/api-ms-win-security-base-private-l1-1-1.dll.so differ diff --git a/lib/wine/api-ms-win-security-credentials-l1-1-0.dll.so b/lib/wine/api-ms-win-security-credentials-l1-1-0.dll.so new file mode 100755 index 0000000..cff31ec Binary files /dev/null and b/lib/wine/api-ms-win-security-credentials-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-security-cryptoapi-l1-1-0.dll.so b/lib/wine/api-ms-win-security-cryptoapi-l1-1-0.dll.so new file mode 100755 index 0000000..810e91f Binary files /dev/null and b/lib/wine/api-ms-win-security-cryptoapi-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-security-grouppolicy-l1-1-0.dll.so b/lib/wine/api-ms-win-security-grouppolicy-l1-1-0.dll.so new file mode 100755 index 0000000..707ae00 Binary files /dev/null and b/lib/wine/api-ms-win-security-grouppolicy-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-security-lsalookup-l1-1-0.dll.so b/lib/wine/api-ms-win-security-lsalookup-l1-1-0.dll.so new file mode 100755 index 0000000..95651c2 Binary files /dev/null and b/lib/wine/api-ms-win-security-lsalookup-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-security-lsalookup-l1-1-1.dll.so b/lib/wine/api-ms-win-security-lsalookup-l1-1-1.dll.so new file mode 100755 index 0000000..b90d729 Binary files /dev/null and b/lib/wine/api-ms-win-security-lsalookup-l1-1-1.dll.so differ diff --git a/lib/wine/api-ms-win-security-lsalookup-l2-1-0.dll.so b/lib/wine/api-ms-win-security-lsalookup-l2-1-0.dll.so new file mode 100755 index 0000000..3ffa1a6 Binary files /dev/null and b/lib/wine/api-ms-win-security-lsalookup-l2-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-security-lsalookup-l2-1-1.dll.so b/lib/wine/api-ms-win-security-lsalookup-l2-1-1.dll.so new file mode 100755 index 0000000..8f261c5 Binary files /dev/null and b/lib/wine/api-ms-win-security-lsalookup-l2-1-1.dll.so differ diff --git a/lib/wine/api-ms-win-security-lsapolicy-l1-1-0.dll.so b/lib/wine/api-ms-win-security-lsapolicy-l1-1-0.dll.so new file mode 100755 index 0000000..c34c69c Binary files /dev/null and b/lib/wine/api-ms-win-security-lsapolicy-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-security-provider-l1-1-0.dll.so b/lib/wine/api-ms-win-security-provider-l1-1-0.dll.so new file mode 100755 index 0000000..980e1b0 Binary files /dev/null and b/lib/wine/api-ms-win-security-provider-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-security-sddl-l1-1-0.dll.so b/lib/wine/api-ms-win-security-sddl-l1-1-0.dll.so new file mode 100755 index 0000000..a7a6129 Binary files /dev/null and b/lib/wine/api-ms-win-security-sddl-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-security-systemfunctions-l1-1-0.dll.so b/lib/wine/api-ms-win-security-systemfunctions-l1-1-0.dll.so new file mode 100755 index 0000000..7d28f53 Binary files /dev/null and b/lib/wine/api-ms-win-security-systemfunctions-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-service-core-l1-1-0.dll.so b/lib/wine/api-ms-win-service-core-l1-1-0.dll.so new file mode 100755 index 0000000..bb3b642 Binary files /dev/null and b/lib/wine/api-ms-win-service-core-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-service-core-l1-1-1.dll.so b/lib/wine/api-ms-win-service-core-l1-1-1.dll.so new file mode 100755 index 0000000..36b9184 Binary files /dev/null and b/lib/wine/api-ms-win-service-core-l1-1-1.dll.so differ diff --git a/lib/wine/api-ms-win-service-management-l1-1-0.dll.so b/lib/wine/api-ms-win-service-management-l1-1-0.dll.so new file mode 100755 index 0000000..103d42b Binary files /dev/null and b/lib/wine/api-ms-win-service-management-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-service-management-l2-1-0.dll.so b/lib/wine/api-ms-win-service-management-l2-1-0.dll.so new file mode 100755 index 0000000..09a61ec Binary files /dev/null and b/lib/wine/api-ms-win-service-management-l2-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-service-private-l1-1-1.dll.so b/lib/wine/api-ms-win-service-private-l1-1-1.dll.so new file mode 100755 index 0000000..ffe1612 Binary files /dev/null and b/lib/wine/api-ms-win-service-private-l1-1-1.dll.so differ diff --git a/lib/wine/api-ms-win-service-winsvc-l1-1-0.dll.so b/lib/wine/api-ms-win-service-winsvc-l1-1-0.dll.so new file mode 100755 index 0000000..7c33f70 Binary files /dev/null and b/lib/wine/api-ms-win-service-winsvc-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-service-winsvc-l1-2-0.dll.so b/lib/wine/api-ms-win-service-winsvc-l1-2-0.dll.so new file mode 100755 index 0000000..3a4987e Binary files /dev/null and b/lib/wine/api-ms-win-service-winsvc-l1-2-0.dll.so differ diff --git a/lib/wine/api-ms-win-shcore-obsolete-l1-1-0.dll.so b/lib/wine/api-ms-win-shcore-obsolete-l1-1-0.dll.so new file mode 100755 index 0000000..b6d8891 Binary files /dev/null and b/lib/wine/api-ms-win-shcore-obsolete-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-shcore-scaling-l1-1-1.dll.so b/lib/wine/api-ms-win-shcore-scaling-l1-1-1.dll.so new file mode 100755 index 0000000..f2df9e5 Binary files /dev/null and b/lib/wine/api-ms-win-shcore-scaling-l1-1-1.dll.so differ diff --git a/lib/wine/api-ms-win-shcore-stream-l1-1-0.dll.so b/lib/wine/api-ms-win-shcore-stream-l1-1-0.dll.so new file mode 100755 index 0000000..919c34e Binary files /dev/null and b/lib/wine/api-ms-win-shcore-stream-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-shcore-thread-l1-1-0.dll.so b/lib/wine/api-ms-win-shcore-thread-l1-1-0.dll.so new file mode 100755 index 0000000..166eeb3 Binary files /dev/null and b/lib/wine/api-ms-win-shcore-thread-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-shell-shellcom-l1-1-0.dll.so b/lib/wine/api-ms-win-shell-shellcom-l1-1-0.dll.so new file mode 100755 index 0000000..d9556a3 Binary files /dev/null and b/lib/wine/api-ms-win-shell-shellcom-l1-1-0.dll.so differ diff --git a/lib/wine/api-ms-win-shell-shellfolders-l1-1-0.dll.so b/lib/wine/api-ms-win-shell-shellfolders-l1-1-0.dll.so new file mode 100755 index 0000000..3b2521e Binary files /dev/null and b/lib/wine/api-ms-win-shell-shellfolders-l1-1-0.dll.so differ diff --git a/lib/wine/apphelp.dll.so b/lib/wine/apphelp.dll.so new file mode 100755 index 0000000..7ae920d Binary files /dev/null and b/lib/wine/apphelp.dll.so differ diff --git a/lib/wine/appwiz.cpl.so b/lib/wine/appwiz.cpl.so new file mode 100755 index 0000000..32ab1c1 Binary files /dev/null and b/lib/wine/appwiz.cpl.so differ diff --git a/lib/wine/arp.exe.so b/lib/wine/arp.exe.so new file mode 100755 index 0000000..72c8dd5 Binary files /dev/null and b/lib/wine/arp.exe.so differ diff --git a/lib/wine/aspnet_regiis.exe.so b/lib/wine/aspnet_regiis.exe.so new file mode 100755 index 0000000..1b35b0d Binary files /dev/null and b/lib/wine/aspnet_regiis.exe.so differ diff --git a/lib/wine/atl.dll.so b/lib/wine/atl.dll.so new file mode 100755 index 0000000..8bdabfe Binary files /dev/null and b/lib/wine/atl.dll.so differ diff --git a/lib/wine/atl100.dll.so b/lib/wine/atl100.dll.so new file mode 100755 index 0000000..c1c6644 Binary files /dev/null and b/lib/wine/atl100.dll.so differ diff --git a/lib/wine/atl110.dll.so b/lib/wine/atl110.dll.so new file mode 100755 index 0000000..40f31e6 Binary files /dev/null and b/lib/wine/atl110.dll.so differ diff --git a/lib/wine/atl80.dll.so b/lib/wine/atl80.dll.so new file mode 100755 index 0000000..9fadedf Binary files /dev/null and b/lib/wine/atl80.dll.so differ diff --git a/lib/wine/atl90.dll.so b/lib/wine/atl90.dll.so new file mode 100755 index 0000000..3c73dc0 Binary files /dev/null and b/lib/wine/atl90.dll.so differ diff --git a/lib/wine/atlthunk.dll.so b/lib/wine/atlthunk.dll.so new file mode 100755 index 0000000..4018749 Binary files /dev/null and b/lib/wine/atlthunk.dll.so differ diff --git a/lib/wine/atmlib.dll.so b/lib/wine/atmlib.dll.so new file mode 100755 index 0000000..9550519 Binary files /dev/null and b/lib/wine/atmlib.dll.so differ diff --git a/lib/wine/attrib.exe.so b/lib/wine/attrib.exe.so new file mode 100755 index 0000000..4bd447a Binary files /dev/null and b/lib/wine/attrib.exe.so differ diff --git a/lib/wine/authz.dll.so b/lib/wine/authz.dll.so new file mode 100755 index 0000000..f1aab5e Binary files /dev/null and b/lib/wine/authz.dll.so differ diff --git a/lib/wine/avicap32.dll.so b/lib/wine/avicap32.dll.so new file mode 100755 index 0000000..3fe75c5 Binary files /dev/null and b/lib/wine/avicap32.dll.so differ diff --git a/lib/wine/avifil32.dll.so b/lib/wine/avifil32.dll.so new file mode 100755 index 0000000..67caed4 Binary files /dev/null and b/lib/wine/avifil32.dll.so differ diff --git a/lib/wine/avifile.dll16.so b/lib/wine/avifile.dll16.so new file mode 100755 index 0000000..048d68a Binary files /dev/null and b/lib/wine/avifile.dll16.so differ diff --git a/lib/wine/avrt.dll.so b/lib/wine/avrt.dll.so new file mode 100755 index 0000000..0161a88 Binary files /dev/null and b/lib/wine/avrt.dll.so differ diff --git a/lib/wine/bcrypt.dll.so b/lib/wine/bcrypt.dll.so new file mode 100755 index 0000000..f689d33 Binary files /dev/null and b/lib/wine/bcrypt.dll.so differ diff --git a/lib/wine/bluetoothapis.dll.so b/lib/wine/bluetoothapis.dll.so new file mode 100755 index 0000000..505d550 Binary files /dev/null and b/lib/wine/bluetoothapis.dll.so differ diff --git a/lib/wine/browseui.dll.so b/lib/wine/browseui.dll.so new file mode 100755 index 0000000..f83cd10 Binary files /dev/null and b/lib/wine/browseui.dll.so differ diff --git a/lib/wine/bthprops.cpl.so b/lib/wine/bthprops.cpl.so new file mode 100755 index 0000000..3781b2d Binary files /dev/null and b/lib/wine/bthprops.cpl.so differ diff --git a/lib/wine/cabarc.exe.so b/lib/wine/cabarc.exe.so new file mode 100755 index 0000000..af9d24e Binary files /dev/null and b/lib/wine/cabarc.exe.so differ diff --git a/lib/wine/cabinet.dll.so b/lib/wine/cabinet.dll.so new file mode 100755 index 0000000..e8b3032 Binary files /dev/null and b/lib/wine/cabinet.dll.so differ diff --git a/lib/wine/cacls.exe.so b/lib/wine/cacls.exe.so new file mode 100755 index 0000000..e9b1e79 Binary files /dev/null and b/lib/wine/cacls.exe.so differ diff --git a/lib/wine/capi2032.dll.so b/lib/wine/capi2032.dll.so new file mode 100755 index 0000000..c29a3b1 Binary files /dev/null and b/lib/wine/capi2032.dll.so differ diff --git a/lib/wine/cards.dll.so b/lib/wine/cards.dll.so new file mode 100755 index 0000000..a2e9622 Binary files /dev/null and b/lib/wine/cards.dll.so differ diff --git a/lib/wine/cdosys.dll.so b/lib/wine/cdosys.dll.so new file mode 100755 index 0000000..941b968 Binary files /dev/null and b/lib/wine/cdosys.dll.so differ diff --git a/lib/wine/cfgmgr32.dll.so b/lib/wine/cfgmgr32.dll.so new file mode 100755 index 0000000..550c165 Binary files /dev/null and b/lib/wine/cfgmgr32.dll.so differ diff --git a/lib/wine/clock.exe.so b/lib/wine/clock.exe.so new file mode 100755 index 0000000..a41a27f Binary files /dev/null and b/lib/wine/clock.exe.so differ diff --git a/lib/wine/clusapi.dll.so b/lib/wine/clusapi.dll.so new file mode 100755 index 0000000..56ba93c Binary files /dev/null and b/lib/wine/clusapi.dll.so differ diff --git a/lib/wine/cmd.exe.so b/lib/wine/cmd.exe.so new file mode 100755 index 0000000..0421240 Binary files /dev/null and b/lib/wine/cmd.exe.so differ diff --git a/lib/wine/combase.dll.so b/lib/wine/combase.dll.so new file mode 100755 index 0000000..188f82d Binary files /dev/null and b/lib/wine/combase.dll.so differ diff --git a/lib/wine/comcat.dll.so b/lib/wine/comcat.dll.so new file mode 100755 index 0000000..078affc Binary files /dev/null and b/lib/wine/comcat.dll.so differ diff --git a/lib/wine/comctl32.dll.so b/lib/wine/comctl32.dll.so new file mode 100755 index 0000000..eb223ab Binary files /dev/null and b/lib/wine/comctl32.dll.so differ diff --git a/lib/wine/comdlg32.dll.so b/lib/wine/comdlg32.dll.so new file mode 100755 index 0000000..82ffdd5 Binary files /dev/null and b/lib/wine/comdlg32.dll.so differ diff --git a/lib/wine/comm.drv16.so b/lib/wine/comm.drv16.so new file mode 100755 index 0000000..ee5da9d Binary files /dev/null and b/lib/wine/comm.drv16.so differ diff --git a/lib/wine/commdlg.dll16.so b/lib/wine/commdlg.dll16.so new file mode 100755 index 0000000..2d33f2f Binary files /dev/null and b/lib/wine/commdlg.dll16.so differ diff --git a/lib/wine/compobj.dll16.so b/lib/wine/compobj.dll16.so new file mode 100755 index 0000000..b56773d Binary files /dev/null and b/lib/wine/compobj.dll16.so differ diff --git a/lib/wine/compstui.dll.so b/lib/wine/compstui.dll.so new file mode 100755 index 0000000..6676fa0 Binary files /dev/null and b/lib/wine/compstui.dll.so differ diff --git a/lib/wine/comsvcs.dll.so b/lib/wine/comsvcs.dll.so new file mode 100755 index 0000000..c83df21 Binary files /dev/null and b/lib/wine/comsvcs.dll.so differ diff --git a/lib/wine/concrt140.dll.so b/lib/wine/concrt140.dll.so new file mode 100755 index 0000000..ae848c5 Binary files /dev/null and b/lib/wine/concrt140.dll.so differ diff --git a/lib/wine/conhost.exe.so b/lib/wine/conhost.exe.so new file mode 100755 index 0000000..0abae6a Binary files /dev/null and b/lib/wine/conhost.exe.so differ diff --git a/lib/wine/connect.dll.so b/lib/wine/connect.dll.so new file mode 100755 index 0000000..5f3fb5b Binary files /dev/null and b/lib/wine/connect.dll.so differ diff --git a/lib/wine/control.exe.so b/lib/wine/control.exe.so new file mode 100755 index 0000000..0e9612e Binary files /dev/null and b/lib/wine/control.exe.so differ diff --git a/lib/wine/credui.dll.so b/lib/wine/credui.dll.so new file mode 100755 index 0000000..9288e96 Binary files /dev/null and b/lib/wine/credui.dll.so differ diff --git a/lib/wine/crtdll.dll.so b/lib/wine/crtdll.dll.so new file mode 100755 index 0000000..f560cd3 Binary files /dev/null and b/lib/wine/crtdll.dll.so differ diff --git a/lib/wine/crypt32.dll.so b/lib/wine/crypt32.dll.so new file mode 100755 index 0000000..c5ca8c0 Binary files /dev/null and b/lib/wine/crypt32.dll.so differ diff --git a/lib/wine/cryptdlg.dll.so b/lib/wine/cryptdlg.dll.so new file mode 100755 index 0000000..dfb7219 Binary files /dev/null and b/lib/wine/cryptdlg.dll.so differ diff --git a/lib/wine/cryptdll.dll.so b/lib/wine/cryptdll.dll.so new file mode 100755 index 0000000..02d6b83 Binary files /dev/null and b/lib/wine/cryptdll.dll.so differ diff --git a/lib/wine/cryptext.dll.so b/lib/wine/cryptext.dll.so new file mode 100755 index 0000000..d86f3f5 Binary files /dev/null and b/lib/wine/cryptext.dll.so differ diff --git a/lib/wine/cryptnet.dll.so b/lib/wine/cryptnet.dll.so new file mode 100755 index 0000000..e4fbb24 Binary files /dev/null and b/lib/wine/cryptnet.dll.so differ diff --git a/lib/wine/cryptui.dll.so b/lib/wine/cryptui.dll.so new file mode 100755 index 0000000..4963eed Binary files /dev/null and b/lib/wine/cryptui.dll.so differ diff --git a/lib/wine/cscript.exe.so b/lib/wine/cscript.exe.so new file mode 100755 index 0000000..3a23eb0 Binary files /dev/null and b/lib/wine/cscript.exe.so differ diff --git a/lib/wine/ctapi32.dll.so b/lib/wine/ctapi32.dll.so new file mode 100755 index 0000000..1b2f0f8 Binary files /dev/null and b/lib/wine/ctapi32.dll.so differ diff --git a/lib/wine/ctl3d.dll16.so b/lib/wine/ctl3d.dll16.so new file mode 100755 index 0000000..6ec12a1 Binary files /dev/null and b/lib/wine/ctl3d.dll16.so differ diff --git a/lib/wine/ctl3d32.dll.so b/lib/wine/ctl3d32.dll.so new file mode 100755 index 0000000..401ef85 Binary files /dev/null and b/lib/wine/ctl3d32.dll.so differ diff --git a/lib/wine/ctl3dv2.dll16.so b/lib/wine/ctl3dv2.dll16.so new file mode 100755 index 0000000..a93ab6b Binary files /dev/null and b/lib/wine/ctl3dv2.dll16.so differ diff --git a/lib/wine/d2d1.dll.so b/lib/wine/d2d1.dll.so new file mode 100755 index 0000000..876dbb7 Binary files /dev/null and b/lib/wine/d2d1.dll.so differ diff --git a/lib/wine/d3d10.dll.so b/lib/wine/d3d10.dll.so new file mode 100755 index 0000000..3372fef Binary files /dev/null and b/lib/wine/d3d10.dll.so differ diff --git a/lib/wine/d3d10_1.dll.so b/lib/wine/d3d10_1.dll.so new file mode 100755 index 0000000..5469c58 Binary files /dev/null and b/lib/wine/d3d10_1.dll.so differ diff --git a/lib/wine/d3d10core.dll.so b/lib/wine/d3d10core.dll.so new file mode 100755 index 0000000..6c02738 Binary files /dev/null and b/lib/wine/d3d10core.dll.so differ diff --git a/lib/wine/d3d11.dll.so b/lib/wine/d3d11.dll.so new file mode 100755 index 0000000..4ae8ab5 Binary files /dev/null and b/lib/wine/d3d11.dll.so differ diff --git a/lib/wine/d3d8.dll.so b/lib/wine/d3d8.dll.so new file mode 100755 index 0000000..888a8f4 Binary files /dev/null and b/lib/wine/d3d8.dll.so differ diff --git a/lib/wine/d3d9.dll.so b/lib/wine/d3d9.dll.so new file mode 100755 index 0000000..475643f Binary files /dev/null and b/lib/wine/d3d9.dll.so differ diff --git a/lib/wine/d3dcompiler_33.dll.so b/lib/wine/d3dcompiler_33.dll.so new file mode 100755 index 0000000..0aa438f Binary files /dev/null and b/lib/wine/d3dcompiler_33.dll.so differ diff --git a/lib/wine/d3dcompiler_34.dll.so b/lib/wine/d3dcompiler_34.dll.so new file mode 100755 index 0000000..ee1fde2 Binary files /dev/null and b/lib/wine/d3dcompiler_34.dll.so differ diff --git a/lib/wine/d3dcompiler_35.dll.so b/lib/wine/d3dcompiler_35.dll.so new file mode 100755 index 0000000..44bd810 Binary files /dev/null and b/lib/wine/d3dcompiler_35.dll.so differ diff --git a/lib/wine/d3dcompiler_36.dll.so b/lib/wine/d3dcompiler_36.dll.so new file mode 100755 index 0000000..98219d5 Binary files /dev/null and b/lib/wine/d3dcompiler_36.dll.so differ diff --git a/lib/wine/d3dcompiler_37.dll.so b/lib/wine/d3dcompiler_37.dll.so new file mode 100755 index 0000000..6b23282 Binary files /dev/null and b/lib/wine/d3dcompiler_37.dll.so differ diff --git a/lib/wine/d3dcompiler_38.dll.so b/lib/wine/d3dcompiler_38.dll.so new file mode 100755 index 0000000..c769b1f Binary files /dev/null and b/lib/wine/d3dcompiler_38.dll.so differ diff --git a/lib/wine/d3dcompiler_39.dll.so b/lib/wine/d3dcompiler_39.dll.so new file mode 100755 index 0000000..7c93840 Binary files /dev/null and b/lib/wine/d3dcompiler_39.dll.so differ diff --git a/lib/wine/d3dcompiler_40.dll.so b/lib/wine/d3dcompiler_40.dll.so new file mode 100755 index 0000000..e28a7c0 Binary files /dev/null and b/lib/wine/d3dcompiler_40.dll.so differ diff --git a/lib/wine/d3dcompiler_41.dll.so b/lib/wine/d3dcompiler_41.dll.so new file mode 100755 index 0000000..fc31ca4 Binary files /dev/null and b/lib/wine/d3dcompiler_41.dll.so differ diff --git a/lib/wine/d3dcompiler_42.dll.so b/lib/wine/d3dcompiler_42.dll.so new file mode 100755 index 0000000..ee57104 Binary files /dev/null and b/lib/wine/d3dcompiler_42.dll.so differ diff --git a/lib/wine/d3dcompiler_43.dll.so b/lib/wine/d3dcompiler_43.dll.so new file mode 100755 index 0000000..cf34e67 Binary files /dev/null and b/lib/wine/d3dcompiler_43.dll.so differ diff --git a/lib/wine/d3dcompiler_46.dll.so b/lib/wine/d3dcompiler_46.dll.so new file mode 100755 index 0000000..e8ef144 Binary files /dev/null and b/lib/wine/d3dcompiler_46.dll.so differ diff --git a/lib/wine/d3dcompiler_47.dll.so b/lib/wine/d3dcompiler_47.dll.so new file mode 100755 index 0000000..5daf2f6 Binary files /dev/null and b/lib/wine/d3dcompiler_47.dll.so differ diff --git a/lib/wine/d3dim.dll.so b/lib/wine/d3dim.dll.so new file mode 100755 index 0000000..4593216 Binary files /dev/null and b/lib/wine/d3dim.dll.so differ diff --git a/lib/wine/d3drm.dll.so b/lib/wine/d3drm.dll.so new file mode 100755 index 0000000..94f4639 Binary files /dev/null and b/lib/wine/d3drm.dll.so differ diff --git a/lib/wine/d3dx10_33.dll.so b/lib/wine/d3dx10_33.dll.so new file mode 100755 index 0000000..ac070e1 Binary files /dev/null and b/lib/wine/d3dx10_33.dll.so differ diff --git a/lib/wine/d3dx10_34.dll.so b/lib/wine/d3dx10_34.dll.so new file mode 100755 index 0000000..da2c8cb Binary files /dev/null and b/lib/wine/d3dx10_34.dll.so differ diff --git a/lib/wine/d3dx10_35.dll.so b/lib/wine/d3dx10_35.dll.so new file mode 100755 index 0000000..7d4347e Binary files /dev/null and b/lib/wine/d3dx10_35.dll.so differ diff --git a/lib/wine/d3dx10_36.dll.so b/lib/wine/d3dx10_36.dll.so new file mode 100755 index 0000000..63cd284 Binary files /dev/null and b/lib/wine/d3dx10_36.dll.so differ diff --git a/lib/wine/d3dx10_37.dll.so b/lib/wine/d3dx10_37.dll.so new file mode 100755 index 0000000..2036e52 Binary files /dev/null and b/lib/wine/d3dx10_37.dll.so differ diff --git a/lib/wine/d3dx10_38.dll.so b/lib/wine/d3dx10_38.dll.so new file mode 100755 index 0000000..b2c2430 Binary files /dev/null and b/lib/wine/d3dx10_38.dll.so differ diff --git a/lib/wine/d3dx10_39.dll.so b/lib/wine/d3dx10_39.dll.so new file mode 100755 index 0000000..c95c625 Binary files /dev/null and b/lib/wine/d3dx10_39.dll.so differ diff --git a/lib/wine/d3dx10_40.dll.so b/lib/wine/d3dx10_40.dll.so new file mode 100755 index 0000000..e127ed8 Binary files /dev/null and b/lib/wine/d3dx10_40.dll.so differ diff --git a/lib/wine/d3dx10_41.dll.so b/lib/wine/d3dx10_41.dll.so new file mode 100755 index 0000000..5ae727b Binary files /dev/null and b/lib/wine/d3dx10_41.dll.so differ diff --git a/lib/wine/d3dx10_42.dll.so b/lib/wine/d3dx10_42.dll.so new file mode 100755 index 0000000..c7ddc52 Binary files /dev/null and b/lib/wine/d3dx10_42.dll.so differ diff --git a/lib/wine/d3dx10_43.dll.so b/lib/wine/d3dx10_43.dll.so new file mode 100755 index 0000000..edef5ba Binary files /dev/null and b/lib/wine/d3dx10_43.dll.so differ diff --git a/lib/wine/d3dx11_42.dll.so b/lib/wine/d3dx11_42.dll.so new file mode 100755 index 0000000..3cec1d6 Binary files /dev/null and b/lib/wine/d3dx11_42.dll.so differ diff --git a/lib/wine/d3dx11_43.dll.so b/lib/wine/d3dx11_43.dll.so new file mode 100755 index 0000000..cf0b945 Binary files /dev/null and b/lib/wine/d3dx11_43.dll.so differ diff --git a/lib/wine/d3dx9_24.dll.so b/lib/wine/d3dx9_24.dll.so new file mode 100755 index 0000000..a620dbe Binary files /dev/null and b/lib/wine/d3dx9_24.dll.so differ diff --git a/lib/wine/d3dx9_25.dll.so b/lib/wine/d3dx9_25.dll.so new file mode 100755 index 0000000..8b05ebb Binary files /dev/null and b/lib/wine/d3dx9_25.dll.so differ diff --git a/lib/wine/d3dx9_26.dll.so b/lib/wine/d3dx9_26.dll.so new file mode 100755 index 0000000..6ad9acf Binary files /dev/null and b/lib/wine/d3dx9_26.dll.so differ diff --git a/lib/wine/d3dx9_27.dll.so b/lib/wine/d3dx9_27.dll.so new file mode 100755 index 0000000..fa9a506 Binary files /dev/null and b/lib/wine/d3dx9_27.dll.so differ diff --git a/lib/wine/d3dx9_28.dll.so b/lib/wine/d3dx9_28.dll.so new file mode 100755 index 0000000..3bd97bc Binary files /dev/null and b/lib/wine/d3dx9_28.dll.so differ diff --git a/lib/wine/d3dx9_29.dll.so b/lib/wine/d3dx9_29.dll.so new file mode 100755 index 0000000..0106980 Binary files /dev/null and b/lib/wine/d3dx9_29.dll.so differ diff --git a/lib/wine/d3dx9_30.dll.so b/lib/wine/d3dx9_30.dll.so new file mode 100755 index 0000000..94e7f82 Binary files /dev/null and b/lib/wine/d3dx9_30.dll.so differ diff --git a/lib/wine/d3dx9_31.dll.so b/lib/wine/d3dx9_31.dll.so new file mode 100755 index 0000000..9b3a6ba Binary files /dev/null and b/lib/wine/d3dx9_31.dll.so differ diff --git a/lib/wine/d3dx9_32.dll.so b/lib/wine/d3dx9_32.dll.so new file mode 100755 index 0000000..0d5ef63 Binary files /dev/null and b/lib/wine/d3dx9_32.dll.so differ diff --git a/lib/wine/d3dx9_33.dll.so b/lib/wine/d3dx9_33.dll.so new file mode 100755 index 0000000..a0cb7e0 Binary files /dev/null and b/lib/wine/d3dx9_33.dll.so differ diff --git a/lib/wine/d3dx9_34.dll.so b/lib/wine/d3dx9_34.dll.so new file mode 100755 index 0000000..7a43d15 Binary files /dev/null and b/lib/wine/d3dx9_34.dll.so differ diff --git a/lib/wine/d3dx9_35.dll.so b/lib/wine/d3dx9_35.dll.so new file mode 100755 index 0000000..7c1fe18 Binary files /dev/null and b/lib/wine/d3dx9_35.dll.so differ diff --git a/lib/wine/d3dx9_36.dll.so b/lib/wine/d3dx9_36.dll.so new file mode 100755 index 0000000..5902a2b Binary files /dev/null and b/lib/wine/d3dx9_36.dll.so differ diff --git a/lib/wine/d3dx9_37.dll.so b/lib/wine/d3dx9_37.dll.so new file mode 100755 index 0000000..4d771d1 Binary files /dev/null and b/lib/wine/d3dx9_37.dll.so differ diff --git a/lib/wine/d3dx9_38.dll.so b/lib/wine/d3dx9_38.dll.so new file mode 100755 index 0000000..b220f39 Binary files /dev/null and b/lib/wine/d3dx9_38.dll.so differ diff --git a/lib/wine/d3dx9_39.dll.so b/lib/wine/d3dx9_39.dll.so new file mode 100755 index 0000000..70fd79a Binary files /dev/null and b/lib/wine/d3dx9_39.dll.so differ diff --git a/lib/wine/d3dx9_40.dll.so b/lib/wine/d3dx9_40.dll.so new file mode 100755 index 0000000..8a23bab Binary files /dev/null and b/lib/wine/d3dx9_40.dll.so differ diff --git a/lib/wine/d3dx9_41.dll.so b/lib/wine/d3dx9_41.dll.so new file mode 100755 index 0000000..c4c1853 Binary files /dev/null and b/lib/wine/d3dx9_41.dll.so differ diff --git a/lib/wine/d3dx9_42.dll.so b/lib/wine/d3dx9_42.dll.so new file mode 100755 index 0000000..5c6a29f Binary files /dev/null and b/lib/wine/d3dx9_42.dll.so differ diff --git a/lib/wine/d3dx9_43.dll.so b/lib/wine/d3dx9_43.dll.so new file mode 100755 index 0000000..c9ab62b Binary files /dev/null and b/lib/wine/d3dx9_43.dll.so differ diff --git a/lib/wine/d3dxof.dll.so b/lib/wine/d3dxof.dll.so new file mode 100755 index 0000000..2514c41 Binary files /dev/null and b/lib/wine/d3dxof.dll.so differ diff --git a/lib/wine/davclnt.dll.so b/lib/wine/davclnt.dll.so new file mode 100755 index 0000000..e9acf24 Binary files /dev/null and b/lib/wine/davclnt.dll.so differ diff --git a/lib/wine/dbgeng.dll.so b/lib/wine/dbgeng.dll.so new file mode 100755 index 0000000..dd8bd7d Binary files /dev/null and b/lib/wine/dbgeng.dll.so differ diff --git a/lib/wine/dbghelp.dll.so b/lib/wine/dbghelp.dll.so new file mode 100755 index 0000000..b14a838 Binary files /dev/null and b/lib/wine/dbghelp.dll.so differ diff --git a/lib/wine/dciman32.dll.so b/lib/wine/dciman32.dll.so new file mode 100755 index 0000000..17ffc6d Binary files /dev/null and b/lib/wine/dciman32.dll.so differ diff --git a/lib/wine/ddeml.dll16.so b/lib/wine/ddeml.dll16.so new file mode 100755 index 0000000..cd3b805 Binary files /dev/null and b/lib/wine/ddeml.dll16.so differ diff --git a/lib/wine/ddraw.dll.so b/lib/wine/ddraw.dll.so new file mode 100755 index 0000000..e21084f Binary files /dev/null and b/lib/wine/ddraw.dll.so differ diff --git a/lib/wine/ddrawex.dll.so b/lib/wine/ddrawex.dll.so new file mode 100755 index 0000000..db68c9b Binary files /dev/null and b/lib/wine/ddrawex.dll.so differ diff --git a/lib/wine/devenum.dll.so b/lib/wine/devenum.dll.so new file mode 100755 index 0000000..6a0e7cc Binary files /dev/null and b/lib/wine/devenum.dll.so differ diff --git a/lib/wine/dhcpcsvc.dll.so b/lib/wine/dhcpcsvc.dll.so new file mode 100755 index 0000000..907f7a4 Binary files /dev/null and b/lib/wine/dhcpcsvc.dll.so differ diff --git a/lib/wine/dhtmled.ocx.so b/lib/wine/dhtmled.ocx.so new file mode 100755 index 0000000..6fba0d3 Binary files /dev/null and b/lib/wine/dhtmled.ocx.so differ diff --git a/lib/wine/difxapi.dll.so b/lib/wine/difxapi.dll.so new file mode 100755 index 0000000..57e9fd7 Binary files /dev/null and b/lib/wine/difxapi.dll.so differ diff --git a/lib/wine/dinput.dll.so b/lib/wine/dinput.dll.so new file mode 100755 index 0000000..aedbf6d Binary files /dev/null and b/lib/wine/dinput.dll.so differ diff --git a/lib/wine/dinput8.dll.so b/lib/wine/dinput8.dll.so new file mode 100755 index 0000000..da7b355 Binary files /dev/null and b/lib/wine/dinput8.dll.so differ diff --git a/lib/wine/dism.exe.so b/lib/wine/dism.exe.so new file mode 100755 index 0000000..19739e5 Binary files /dev/null and b/lib/wine/dism.exe.so differ diff --git a/lib/wine/dispdib.dll16.so b/lib/wine/dispdib.dll16.so new file mode 100755 index 0000000..9c5d4f8 Binary files /dev/null and b/lib/wine/dispdib.dll16.so differ diff --git a/lib/wine/dispex.dll.so b/lib/wine/dispex.dll.so new file mode 100755 index 0000000..beeb8d3 Binary files /dev/null and b/lib/wine/dispex.dll.so differ diff --git a/lib/wine/display.drv16.so b/lib/wine/display.drv16.so new file mode 100755 index 0000000..a81705d Binary files /dev/null and b/lib/wine/display.drv16.so differ diff --git a/lib/wine/dmband.dll.so b/lib/wine/dmband.dll.so new file mode 100755 index 0000000..01b4585 Binary files /dev/null and b/lib/wine/dmband.dll.so differ diff --git a/lib/wine/dmcompos.dll.so b/lib/wine/dmcompos.dll.so new file mode 100755 index 0000000..467b238 Binary files /dev/null and b/lib/wine/dmcompos.dll.so differ diff --git a/lib/wine/dmime.dll.so b/lib/wine/dmime.dll.so new file mode 100755 index 0000000..f2f75fc Binary files /dev/null and b/lib/wine/dmime.dll.so differ diff --git a/lib/wine/dmloader.dll.so b/lib/wine/dmloader.dll.so new file mode 100755 index 0000000..aaa082f Binary files /dev/null and b/lib/wine/dmloader.dll.so differ diff --git a/lib/wine/dmscript.dll.so b/lib/wine/dmscript.dll.so new file mode 100755 index 0000000..df7434d Binary files /dev/null and b/lib/wine/dmscript.dll.so differ diff --git a/lib/wine/dmstyle.dll.so b/lib/wine/dmstyle.dll.so new file mode 100755 index 0000000..32f7e10 Binary files /dev/null and b/lib/wine/dmstyle.dll.so differ diff --git a/lib/wine/dmsynth.dll.so b/lib/wine/dmsynth.dll.so new file mode 100755 index 0000000..e7b618a Binary files /dev/null and b/lib/wine/dmsynth.dll.so differ diff --git a/lib/wine/dmusic.dll.so b/lib/wine/dmusic.dll.so new file mode 100755 index 0000000..bd9bd24 Binary files /dev/null and b/lib/wine/dmusic.dll.so differ diff --git a/lib/wine/dmusic32.dll.so b/lib/wine/dmusic32.dll.so new file mode 100755 index 0000000..5c753df Binary files /dev/null and b/lib/wine/dmusic32.dll.so differ diff --git a/lib/wine/dnsapi.dll.so b/lib/wine/dnsapi.dll.so new file mode 100755 index 0000000..27f7f1e Binary files /dev/null and b/lib/wine/dnsapi.dll.so differ diff --git a/lib/wine/dplay.dll.so b/lib/wine/dplay.dll.so new file mode 100755 index 0000000..58a9b74 Binary files /dev/null and b/lib/wine/dplay.dll.so differ diff --git a/lib/wine/dplayx.dll.so b/lib/wine/dplayx.dll.so new file mode 100755 index 0000000..99dc5fd Binary files /dev/null and b/lib/wine/dplayx.dll.so differ diff --git a/lib/wine/dpnaddr.dll.so b/lib/wine/dpnaddr.dll.so new file mode 100755 index 0000000..172a843 Binary files /dev/null and b/lib/wine/dpnaddr.dll.so differ diff --git a/lib/wine/dpnet.dll.so b/lib/wine/dpnet.dll.so new file mode 100755 index 0000000..6a2df25 Binary files /dev/null and b/lib/wine/dpnet.dll.so differ diff --git a/lib/wine/dpnhpast.dll.so b/lib/wine/dpnhpast.dll.so new file mode 100755 index 0000000..a852ff4 Binary files /dev/null and b/lib/wine/dpnhpast.dll.so differ diff --git a/lib/wine/dpnlobby.dll.so b/lib/wine/dpnlobby.dll.so new file mode 100755 index 0000000..80e38e2 Binary files /dev/null and b/lib/wine/dpnlobby.dll.so differ diff --git a/lib/wine/dpnsvr.exe.so b/lib/wine/dpnsvr.exe.so new file mode 100755 index 0000000..d0f209a Binary files /dev/null and b/lib/wine/dpnsvr.exe.so differ diff --git a/lib/wine/dpvoice.dll.so b/lib/wine/dpvoice.dll.so new file mode 100755 index 0000000..c22c9c0 Binary files /dev/null and b/lib/wine/dpvoice.dll.so differ diff --git a/lib/wine/dpwsockx.dll.so b/lib/wine/dpwsockx.dll.so new file mode 100755 index 0000000..a7619ba Binary files /dev/null and b/lib/wine/dpwsockx.dll.so differ diff --git a/lib/wine/drmclien.dll.so b/lib/wine/drmclien.dll.so new file mode 100755 index 0000000..606f03c Binary files /dev/null and b/lib/wine/drmclien.dll.so differ diff --git a/lib/wine/dsound.dll.so b/lib/wine/dsound.dll.so new file mode 100755 index 0000000..0f4ba8c Binary files /dev/null and b/lib/wine/dsound.dll.so differ diff --git a/lib/wine/dsquery.dll.so b/lib/wine/dsquery.dll.so new file mode 100755 index 0000000..6d715a5 Binary files /dev/null and b/lib/wine/dsquery.dll.so differ diff --git a/lib/wine/dssenh.dll.so b/lib/wine/dssenh.dll.so new file mode 100755 index 0000000..d38e68b Binary files /dev/null and b/lib/wine/dssenh.dll.so differ diff --git a/lib/wine/dswave.dll.so b/lib/wine/dswave.dll.so new file mode 100755 index 0000000..f78c464 Binary files /dev/null and b/lib/wine/dswave.dll.so differ diff --git a/lib/wine/dwmapi.dll.so b/lib/wine/dwmapi.dll.so new file mode 100755 index 0000000..4b42242 Binary files /dev/null and b/lib/wine/dwmapi.dll.so differ diff --git a/lib/wine/dwrite.dll.so b/lib/wine/dwrite.dll.so new file mode 100755 index 0000000..265c8f4 Binary files /dev/null and b/lib/wine/dwrite.dll.so differ diff --git a/lib/wine/dx8vb.dll.so b/lib/wine/dx8vb.dll.so new file mode 100755 index 0000000..d7b3802 Binary files /dev/null and b/lib/wine/dx8vb.dll.so differ diff --git a/lib/wine/dxdiag.exe.so b/lib/wine/dxdiag.exe.so new file mode 100755 index 0000000..18b4a48 Binary files /dev/null and b/lib/wine/dxdiag.exe.so differ diff --git a/lib/wine/dxdiagn.dll.so b/lib/wine/dxdiagn.dll.so new file mode 100755 index 0000000..66ee827 Binary files /dev/null and b/lib/wine/dxdiagn.dll.so differ diff --git a/lib/wine/dxgi.dll.so b/lib/wine/dxgi.dll.so new file mode 100755 index 0000000..009cbec Binary files /dev/null and b/lib/wine/dxgi.dll.so differ diff --git a/lib/wine/dxgkrnl.sys.so b/lib/wine/dxgkrnl.sys.so new file mode 100755 index 0000000..450c234 Binary files /dev/null and b/lib/wine/dxgkrnl.sys.so differ diff --git a/lib/wine/dxgmms1.sys.so b/lib/wine/dxgmms1.sys.so new file mode 100755 index 0000000..0cc5864 Binary files /dev/null and b/lib/wine/dxgmms1.sys.so differ diff --git a/lib/wine/dxva2.dll.so b/lib/wine/dxva2.dll.so new file mode 100755 index 0000000..bb754f6 Binary files /dev/null and b/lib/wine/dxva2.dll.so differ diff --git a/lib/wine/eject.exe.so b/lib/wine/eject.exe.so new file mode 100755 index 0000000..889eb0b Binary files /dev/null and b/lib/wine/eject.exe.so differ diff --git a/lib/wine/esent.dll.so b/lib/wine/esent.dll.so new file mode 100755 index 0000000..0c0f3a3 Binary files /dev/null and b/lib/wine/esent.dll.so differ diff --git a/lib/wine/evr.dll.so b/lib/wine/evr.dll.so new file mode 100755 index 0000000..32d57d1 Binary files /dev/null and b/lib/wine/evr.dll.so differ diff --git a/lib/wine/expand.exe.so b/lib/wine/expand.exe.so new file mode 100755 index 0000000..40dc738 Binary files /dev/null and b/lib/wine/expand.exe.so differ diff --git a/lib/wine/explorer.exe.so b/lib/wine/explorer.exe.so new file mode 100755 index 0000000..d4b94a5 Binary files /dev/null and b/lib/wine/explorer.exe.so differ diff --git a/lib/wine/explorerframe.dll.so b/lib/wine/explorerframe.dll.so new file mode 100755 index 0000000..354ab25 Binary files /dev/null and b/lib/wine/explorerframe.dll.so differ diff --git a/lib/wine/ext-ms-win-appmodel-usercontext-l1-1-0.dll.so b/lib/wine/ext-ms-win-appmodel-usercontext-l1-1-0.dll.so new file mode 100755 index 0000000..903b42f Binary files /dev/null and b/lib/wine/ext-ms-win-appmodel-usercontext-l1-1-0.dll.so differ diff --git a/lib/wine/ext-ms-win-authz-context-l1-1-0.dll.so b/lib/wine/ext-ms-win-authz-context-l1-1-0.dll.so new file mode 100755 index 0000000..f66a162 Binary files /dev/null and b/lib/wine/ext-ms-win-authz-context-l1-1-0.dll.so differ diff --git a/lib/wine/ext-ms-win-domainjoin-netjoin-l1-1-0.dll.so b/lib/wine/ext-ms-win-domainjoin-netjoin-l1-1-0.dll.so new file mode 100755 index 0000000..f563b39 Binary files /dev/null and b/lib/wine/ext-ms-win-domainjoin-netjoin-l1-1-0.dll.so differ diff --git a/lib/wine/ext-ms-win-dwmapi-ext-l1-1-0.dll.so b/lib/wine/ext-ms-win-dwmapi-ext-l1-1-0.dll.so new file mode 100755 index 0000000..e273dda Binary files /dev/null and b/lib/wine/ext-ms-win-dwmapi-ext-l1-1-0.dll.so differ diff --git a/lib/wine/ext-ms-win-gdi-dc-create-l1-1-0.dll.so b/lib/wine/ext-ms-win-gdi-dc-create-l1-1-0.dll.so new file mode 100755 index 0000000..614cf3e Binary files /dev/null and b/lib/wine/ext-ms-win-gdi-dc-create-l1-1-0.dll.so differ diff --git a/lib/wine/ext-ms-win-gdi-dc-create-l1-1-1.dll.so b/lib/wine/ext-ms-win-gdi-dc-create-l1-1-1.dll.so new file mode 100755 index 0000000..956236f Binary files /dev/null and b/lib/wine/ext-ms-win-gdi-dc-create-l1-1-1.dll.so differ diff --git a/lib/wine/ext-ms-win-gdi-dc-l1-2-0.dll.so b/lib/wine/ext-ms-win-gdi-dc-l1-2-0.dll.so new file mode 100755 index 0000000..a4d0793 Binary files /dev/null and b/lib/wine/ext-ms-win-gdi-dc-l1-2-0.dll.so differ diff --git a/lib/wine/ext-ms-win-gdi-devcaps-l1-1-0.dll.so b/lib/wine/ext-ms-win-gdi-devcaps-l1-1-0.dll.so new file mode 100755 index 0000000..f6a0b98 Binary files /dev/null and b/lib/wine/ext-ms-win-gdi-devcaps-l1-1-0.dll.so differ diff --git a/lib/wine/ext-ms-win-gdi-draw-l1-1-0.dll.so b/lib/wine/ext-ms-win-gdi-draw-l1-1-0.dll.so new file mode 100755 index 0000000..e2a2858 Binary files /dev/null and b/lib/wine/ext-ms-win-gdi-draw-l1-1-0.dll.so differ diff --git a/lib/wine/ext-ms-win-gdi-draw-l1-1-1.dll.so b/lib/wine/ext-ms-win-gdi-draw-l1-1-1.dll.so new file mode 100755 index 0000000..e8ae9e8 Binary files /dev/null and b/lib/wine/ext-ms-win-gdi-draw-l1-1-1.dll.so differ diff --git a/lib/wine/ext-ms-win-gdi-font-l1-1-0.dll.so b/lib/wine/ext-ms-win-gdi-font-l1-1-0.dll.so new file mode 100755 index 0000000..189300f Binary files /dev/null and b/lib/wine/ext-ms-win-gdi-font-l1-1-0.dll.so differ diff --git a/lib/wine/ext-ms-win-gdi-font-l1-1-1.dll.so b/lib/wine/ext-ms-win-gdi-font-l1-1-1.dll.so new file mode 100755 index 0000000..cd72368 Binary files /dev/null and b/lib/wine/ext-ms-win-gdi-font-l1-1-1.dll.so differ diff --git a/lib/wine/ext-ms-win-gdi-render-l1-1-0.dll.so b/lib/wine/ext-ms-win-gdi-render-l1-1-0.dll.so new file mode 100755 index 0000000..14c43b1 Binary files /dev/null and b/lib/wine/ext-ms-win-gdi-render-l1-1-0.dll.so differ diff --git a/lib/wine/ext-ms-win-kernel32-package-current-l1-1-0.dll.so b/lib/wine/ext-ms-win-kernel32-package-current-l1-1-0.dll.so new file mode 100755 index 0000000..ab6466d Binary files /dev/null and b/lib/wine/ext-ms-win-kernel32-package-current-l1-1-0.dll.so differ diff --git a/lib/wine/ext-ms-win-kernel32-package-l1-1-1.dll.so b/lib/wine/ext-ms-win-kernel32-package-l1-1-1.dll.so new file mode 100755 index 0000000..253fafc Binary files /dev/null and b/lib/wine/ext-ms-win-kernel32-package-l1-1-1.dll.so differ diff --git a/lib/wine/ext-ms-win-ntuser-dialogbox-l1-1-0.dll.so b/lib/wine/ext-ms-win-ntuser-dialogbox-l1-1-0.dll.so new file mode 100755 index 0000000..f2661d3 Binary files /dev/null and b/lib/wine/ext-ms-win-ntuser-dialogbox-l1-1-0.dll.so differ diff --git a/lib/wine/ext-ms-win-ntuser-draw-l1-1-0.dll.so b/lib/wine/ext-ms-win-ntuser-draw-l1-1-0.dll.so new file mode 100755 index 0000000..232fedc Binary files /dev/null and b/lib/wine/ext-ms-win-ntuser-draw-l1-1-0.dll.so differ diff --git a/lib/wine/ext-ms-win-ntuser-gui-l1-1-0.dll.so b/lib/wine/ext-ms-win-ntuser-gui-l1-1-0.dll.so new file mode 100755 index 0000000..2b381af Binary files /dev/null and b/lib/wine/ext-ms-win-ntuser-gui-l1-1-0.dll.so differ diff --git a/lib/wine/ext-ms-win-ntuser-gui-l1-3-0.dll.so b/lib/wine/ext-ms-win-ntuser-gui-l1-3-0.dll.so new file mode 100755 index 0000000..ab492a4 Binary files /dev/null and b/lib/wine/ext-ms-win-ntuser-gui-l1-3-0.dll.so differ diff --git a/lib/wine/ext-ms-win-ntuser-keyboard-l1-3-0.dll.so b/lib/wine/ext-ms-win-ntuser-keyboard-l1-3-0.dll.so new file mode 100755 index 0000000..b744878 Binary files /dev/null and b/lib/wine/ext-ms-win-ntuser-keyboard-l1-3-0.dll.so differ diff --git a/lib/wine/ext-ms-win-ntuser-message-l1-1-0.dll.so b/lib/wine/ext-ms-win-ntuser-message-l1-1-0.dll.so new file mode 100755 index 0000000..151f6cf Binary files /dev/null and b/lib/wine/ext-ms-win-ntuser-message-l1-1-0.dll.so differ diff --git a/lib/wine/ext-ms-win-ntuser-message-l1-1-1.dll.so b/lib/wine/ext-ms-win-ntuser-message-l1-1-1.dll.so new file mode 100755 index 0000000..1d4313c Binary files /dev/null and b/lib/wine/ext-ms-win-ntuser-message-l1-1-1.dll.so differ diff --git a/lib/wine/ext-ms-win-ntuser-misc-l1-1-0.dll.so b/lib/wine/ext-ms-win-ntuser-misc-l1-1-0.dll.so new file mode 100755 index 0000000..2c8c443 Binary files /dev/null and b/lib/wine/ext-ms-win-ntuser-misc-l1-1-0.dll.so differ diff --git a/lib/wine/ext-ms-win-ntuser-misc-l1-2-0.dll.so b/lib/wine/ext-ms-win-ntuser-misc-l1-2-0.dll.so new file mode 100755 index 0000000..e127c94 Binary files /dev/null and b/lib/wine/ext-ms-win-ntuser-misc-l1-2-0.dll.so differ diff --git a/lib/wine/ext-ms-win-ntuser-misc-l1-5-1.dll.so b/lib/wine/ext-ms-win-ntuser-misc-l1-5-1.dll.so new file mode 100755 index 0000000..d386db6 Binary files /dev/null and b/lib/wine/ext-ms-win-ntuser-misc-l1-5-1.dll.so differ diff --git a/lib/wine/ext-ms-win-ntuser-mouse-l1-1-0.dll.so b/lib/wine/ext-ms-win-ntuser-mouse-l1-1-0.dll.so new file mode 100755 index 0000000..c498d77 Binary files /dev/null and b/lib/wine/ext-ms-win-ntuser-mouse-l1-1-0.dll.so differ diff --git a/lib/wine/ext-ms-win-ntuser-private-l1-1-1.dll.so b/lib/wine/ext-ms-win-ntuser-private-l1-1-1.dll.so new file mode 100755 index 0000000..1b20490 Binary files /dev/null and b/lib/wine/ext-ms-win-ntuser-private-l1-1-1.dll.so differ diff --git a/lib/wine/ext-ms-win-ntuser-private-l1-3-1.dll.so b/lib/wine/ext-ms-win-ntuser-private-l1-3-1.dll.so new file mode 100755 index 0000000..0e7c666 Binary files /dev/null and b/lib/wine/ext-ms-win-ntuser-private-l1-3-1.dll.so differ diff --git a/lib/wine/ext-ms-win-ntuser-rectangle-ext-l1-1-0.dll.so b/lib/wine/ext-ms-win-ntuser-rectangle-ext-l1-1-0.dll.so new file mode 100755 index 0000000..ca2ee68 Binary files /dev/null and b/lib/wine/ext-ms-win-ntuser-rectangle-ext-l1-1-0.dll.so differ diff --git a/lib/wine/ext-ms-win-ntuser-uicontext-ext-l1-1-0.dll.so b/lib/wine/ext-ms-win-ntuser-uicontext-ext-l1-1-0.dll.so new file mode 100755 index 0000000..1b14b83 Binary files /dev/null and b/lib/wine/ext-ms-win-ntuser-uicontext-ext-l1-1-0.dll.so differ diff --git a/lib/wine/ext-ms-win-ntuser-window-l1-1-0.dll.so b/lib/wine/ext-ms-win-ntuser-window-l1-1-0.dll.so new file mode 100755 index 0000000..db4eb12 Binary files /dev/null and b/lib/wine/ext-ms-win-ntuser-window-l1-1-0.dll.so differ diff --git a/lib/wine/ext-ms-win-ntuser-window-l1-1-1.dll.so b/lib/wine/ext-ms-win-ntuser-window-l1-1-1.dll.so new file mode 100755 index 0000000..deb7ab5 Binary files /dev/null and b/lib/wine/ext-ms-win-ntuser-window-l1-1-1.dll.so differ diff --git a/lib/wine/ext-ms-win-ntuser-window-l1-1-4.dll.so b/lib/wine/ext-ms-win-ntuser-window-l1-1-4.dll.so new file mode 100755 index 0000000..dcfec84 Binary files /dev/null and b/lib/wine/ext-ms-win-ntuser-window-l1-1-4.dll.so differ diff --git a/lib/wine/ext-ms-win-ntuser-windowclass-l1-1-0.dll.so b/lib/wine/ext-ms-win-ntuser-windowclass-l1-1-0.dll.so new file mode 100755 index 0000000..8273588 Binary files /dev/null and b/lib/wine/ext-ms-win-ntuser-windowclass-l1-1-0.dll.so differ diff --git a/lib/wine/ext-ms-win-ntuser-windowclass-l1-1-1.dll.so b/lib/wine/ext-ms-win-ntuser-windowclass-l1-1-1.dll.so new file mode 100755 index 0000000..2a14e4f Binary files /dev/null and b/lib/wine/ext-ms-win-ntuser-windowclass-l1-1-1.dll.so differ diff --git a/lib/wine/ext-ms-win-oleacc-l1-1-0.dll.so b/lib/wine/ext-ms-win-oleacc-l1-1-0.dll.so new file mode 100755 index 0000000..3dfab79 Binary files /dev/null and b/lib/wine/ext-ms-win-oleacc-l1-1-0.dll.so differ diff --git a/lib/wine/ext-ms-win-ras-rasapi32-l1-1-0.dll.so b/lib/wine/ext-ms-win-ras-rasapi32-l1-1-0.dll.so new file mode 100755 index 0000000..91c8e57 Binary files /dev/null and b/lib/wine/ext-ms-win-ras-rasapi32-l1-1-0.dll.so differ diff --git a/lib/wine/ext-ms-win-rtcore-gdi-devcaps-l1-1-0.dll.so b/lib/wine/ext-ms-win-rtcore-gdi-devcaps-l1-1-0.dll.so new file mode 100755 index 0000000..b5b23c2 Binary files /dev/null and b/lib/wine/ext-ms-win-rtcore-gdi-devcaps-l1-1-0.dll.so differ diff --git a/lib/wine/ext-ms-win-rtcore-gdi-object-l1-1-0.dll.so b/lib/wine/ext-ms-win-rtcore-gdi-object-l1-1-0.dll.so new file mode 100755 index 0000000..91ca11a Binary files /dev/null and b/lib/wine/ext-ms-win-rtcore-gdi-object-l1-1-0.dll.so differ diff --git a/lib/wine/ext-ms-win-rtcore-gdi-rgn-l1-1-0.dll.so b/lib/wine/ext-ms-win-rtcore-gdi-rgn-l1-1-0.dll.so new file mode 100755 index 0000000..d19af08 Binary files /dev/null and b/lib/wine/ext-ms-win-rtcore-gdi-rgn-l1-1-0.dll.so differ diff --git a/lib/wine/ext-ms-win-rtcore-ntuser-cursor-l1-1-0.dll.so b/lib/wine/ext-ms-win-rtcore-ntuser-cursor-l1-1-0.dll.so new file mode 100755 index 0000000..ed74472 Binary files /dev/null and b/lib/wine/ext-ms-win-rtcore-ntuser-cursor-l1-1-0.dll.so differ diff --git a/lib/wine/ext-ms-win-rtcore-ntuser-dc-access-l1-1-0.dll.so b/lib/wine/ext-ms-win-rtcore-ntuser-dc-access-l1-1-0.dll.so new file mode 100755 index 0000000..8149327 Binary files /dev/null and b/lib/wine/ext-ms-win-rtcore-ntuser-dc-access-l1-1-0.dll.so differ diff --git a/lib/wine/ext-ms-win-rtcore-ntuser-dpi-l1-1-0.dll.so b/lib/wine/ext-ms-win-rtcore-ntuser-dpi-l1-1-0.dll.so new file mode 100755 index 0000000..5f69a78 Binary files /dev/null and b/lib/wine/ext-ms-win-rtcore-ntuser-dpi-l1-1-0.dll.so differ diff --git a/lib/wine/ext-ms-win-rtcore-ntuser-dpi-l1-2-0.dll.so b/lib/wine/ext-ms-win-rtcore-ntuser-dpi-l1-2-0.dll.so new file mode 100755 index 0000000..9271b76 Binary files /dev/null and b/lib/wine/ext-ms-win-rtcore-ntuser-dpi-l1-2-0.dll.so differ diff --git a/lib/wine/ext-ms-win-rtcore-ntuser-rawinput-l1-1-0.dll.so b/lib/wine/ext-ms-win-rtcore-ntuser-rawinput-l1-1-0.dll.so new file mode 100755 index 0000000..283f55f Binary files /dev/null and b/lib/wine/ext-ms-win-rtcore-ntuser-rawinput-l1-1-0.dll.so differ diff --git a/lib/wine/ext-ms-win-rtcore-ntuser-syscolors-l1-1-0.dll.so b/lib/wine/ext-ms-win-rtcore-ntuser-syscolors-l1-1-0.dll.so new file mode 100755 index 0000000..ecbb965 Binary files /dev/null and b/lib/wine/ext-ms-win-rtcore-ntuser-syscolors-l1-1-0.dll.so differ diff --git a/lib/wine/ext-ms-win-rtcore-ntuser-sysparams-l1-1-0.dll.so b/lib/wine/ext-ms-win-rtcore-ntuser-sysparams-l1-1-0.dll.so new file mode 100755 index 0000000..fb4d29f Binary files /dev/null and b/lib/wine/ext-ms-win-rtcore-ntuser-sysparams-l1-1-0.dll.so differ diff --git a/lib/wine/ext-ms-win-security-credui-l1-1-0.dll.so b/lib/wine/ext-ms-win-security-credui-l1-1-0.dll.so new file mode 100755 index 0000000..b30a57d Binary files /dev/null and b/lib/wine/ext-ms-win-security-credui-l1-1-0.dll.so differ diff --git a/lib/wine/ext-ms-win-security-cryptui-l1-1-0.dll.so b/lib/wine/ext-ms-win-security-cryptui-l1-1-0.dll.so new file mode 100755 index 0000000..1259cc9 Binary files /dev/null and b/lib/wine/ext-ms-win-security-cryptui-l1-1-0.dll.so differ diff --git a/lib/wine/ext-ms-win-uxtheme-themes-l1-1-0.dll.so b/lib/wine/ext-ms-win-uxtheme-themes-l1-1-0.dll.so new file mode 100755 index 0000000..876976c Binary files /dev/null and b/lib/wine/ext-ms-win-uxtheme-themes-l1-1-0.dll.so differ diff --git a/lib/wine/ext-ms-win-xaml-pal-l1-1-0.dll.so b/lib/wine/ext-ms-win-xaml-pal-l1-1-0.dll.so new file mode 100755 index 0000000..f193f9d Binary files /dev/null and b/lib/wine/ext-ms-win-xaml-pal-l1-1-0.dll.so differ diff --git a/lib/wine/extrac32.exe.so b/lib/wine/extrac32.exe.so new file mode 100755 index 0000000..2471814 Binary files /dev/null and b/lib/wine/extrac32.exe.so differ diff --git a/lib/wine/fakedlls/acledit.dll b/lib/wine/fakedlls/acledit.dll new file mode 100644 index 0000000..f37c2a2 Binary files /dev/null and b/lib/wine/fakedlls/acledit.dll differ diff --git a/lib/wine/fakedlls/aclui.dll b/lib/wine/fakedlls/aclui.dll new file mode 100644 index 0000000..7229299 Binary files /dev/null and b/lib/wine/fakedlls/aclui.dll differ diff --git a/lib/wine/fakedlls/activeds.dll b/lib/wine/fakedlls/activeds.dll new file mode 100644 index 0000000..5c1cc61 Binary files /dev/null and b/lib/wine/fakedlls/activeds.dll differ diff --git a/lib/wine/fakedlls/actxprxy.dll b/lib/wine/fakedlls/actxprxy.dll new file mode 100644 index 0000000..7a1ffa3 Binary files /dev/null and b/lib/wine/fakedlls/actxprxy.dll differ diff --git a/lib/wine/fakedlls/adsldp.dll b/lib/wine/fakedlls/adsldp.dll new file mode 100644 index 0000000..23b74f8 Binary files /dev/null and b/lib/wine/fakedlls/adsldp.dll differ diff --git a/lib/wine/fakedlls/adsldpc.dll b/lib/wine/fakedlls/adsldpc.dll new file mode 100644 index 0000000..c27243f Binary files /dev/null and b/lib/wine/fakedlls/adsldpc.dll differ diff --git a/lib/wine/fakedlls/advapi32.dll b/lib/wine/fakedlls/advapi32.dll new file mode 100644 index 0000000..95b9ae7 Binary files /dev/null and b/lib/wine/fakedlls/advapi32.dll differ diff --git a/lib/wine/fakedlls/advpack.dll b/lib/wine/fakedlls/advpack.dll new file mode 100644 index 0000000..97df395 Binary files /dev/null and b/lib/wine/fakedlls/advpack.dll differ diff --git a/lib/wine/fakedlls/amd_ags_x64.dll b/lib/wine/fakedlls/amd_ags_x64.dll new file mode 100644 index 0000000..baed119 Binary files /dev/null and b/lib/wine/fakedlls/amd_ags_x64.dll differ diff --git a/lib/wine/fakedlls/amsi.dll b/lib/wine/fakedlls/amsi.dll new file mode 100644 index 0000000..25a2964 Binary files /dev/null and b/lib/wine/fakedlls/amsi.dll differ diff --git a/lib/wine/fakedlls/amstream.dll b/lib/wine/fakedlls/amstream.dll new file mode 100644 index 0000000..5e096f8 Binary files /dev/null and b/lib/wine/fakedlls/amstream.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-appmodel-identity-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-appmodel-identity-l1-1-0.dll new file mode 100644 index 0000000..c8d2539 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-appmodel-identity-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-appmodel-runtime-l1-1-1.dll b/lib/wine/fakedlls/api-ms-win-appmodel-runtime-l1-1-1.dll new file mode 100644 index 0000000..f283f21 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-appmodel-runtime-l1-1-1.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-appmodel-runtime-l1-1-2.dll b/lib/wine/fakedlls/api-ms-win-appmodel-runtime-l1-1-2.dll new file mode 100644 index 0000000..5eebc29 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-appmodel-runtime-l1-1-2.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-apiquery-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-apiquery-l1-1-0.dll new file mode 100644 index 0000000..6dc706e Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-apiquery-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-appcompat-l1-1-1.dll b/lib/wine/fakedlls/api-ms-win-core-appcompat-l1-1-1.dll new file mode 100644 index 0000000..32703d9 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-appcompat-l1-1-1.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-appinit-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-appinit-l1-1-0.dll new file mode 100644 index 0000000..b188eb5 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-appinit-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-atoms-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-atoms-l1-1-0.dll new file mode 100644 index 0000000..9bf0429 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-atoms-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-bem-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-bem-l1-1-0.dll new file mode 100644 index 0000000..df4e872 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-bem-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-com-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-com-l1-1-0.dll new file mode 100644 index 0000000..8720507 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-com-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-com-l1-1-1.dll b/lib/wine/fakedlls/api-ms-win-core-com-l1-1-1.dll new file mode 100644 index 0000000..914eb6e Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-com-l1-1-1.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-com-private-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-com-private-l1-1-0.dll new file mode 100644 index 0000000..3149220 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-com-private-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-comm-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-comm-l1-1-0.dll new file mode 100644 index 0000000..6baecbe Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-comm-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-console-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-console-l1-1-0.dll new file mode 100644 index 0000000..363d619 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-console-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-console-l2-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-console-l2-1-0.dll new file mode 100644 index 0000000..4eafbe3 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-console-l2-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-crt-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-crt-l1-1-0.dll new file mode 100644 index 0000000..86776e5 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-crt-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-crt-l2-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-crt-l2-1-0.dll new file mode 100644 index 0000000..ca433b2 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-crt-l2-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-datetime-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-datetime-l1-1-0.dll new file mode 100644 index 0000000..c845a97 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-datetime-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-datetime-l1-1-1.dll b/lib/wine/fakedlls/api-ms-win-core-datetime-l1-1-1.dll new file mode 100644 index 0000000..d0ba5d6 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-datetime-l1-1-1.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-debug-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-debug-l1-1-0.dll new file mode 100644 index 0000000..c2b7334 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-debug-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-debug-l1-1-1.dll b/lib/wine/fakedlls/api-ms-win-core-debug-l1-1-1.dll new file mode 100644 index 0000000..f779c52 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-debug-l1-1-1.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-delayload-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-delayload-l1-1-0.dll new file mode 100644 index 0000000..86641e1 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-delayload-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-delayload-l1-1-1.dll b/lib/wine/fakedlls/api-ms-win-core-delayload-l1-1-1.dll new file mode 100644 index 0000000..0a3d0a2 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-delayload-l1-1-1.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-errorhandling-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-errorhandling-l1-1-0.dll new file mode 100644 index 0000000..25db849 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-errorhandling-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-errorhandling-l1-1-1.dll b/lib/wine/fakedlls/api-ms-win-core-errorhandling-l1-1-1.dll new file mode 100644 index 0000000..251ad80 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-errorhandling-l1-1-1.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-errorhandling-l1-1-2.dll b/lib/wine/fakedlls/api-ms-win-core-errorhandling-l1-1-2.dll new file mode 100644 index 0000000..acda3ab Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-errorhandling-l1-1-2.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-errorhandling-l1-1-3.dll b/lib/wine/fakedlls/api-ms-win-core-errorhandling-l1-1-3.dll new file mode 100644 index 0000000..246dede Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-errorhandling-l1-1-3.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-fibers-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-fibers-l1-1-0.dll new file mode 100644 index 0000000..8dcd831 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-fibers-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-fibers-l1-1-1.dll b/lib/wine/fakedlls/api-ms-win-core-fibers-l1-1-1.dll new file mode 100644 index 0000000..72149eb Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-fibers-l1-1-1.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-file-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-file-l1-1-0.dll new file mode 100644 index 0000000..01e0e34 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-file-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-file-l1-2-0.dll b/lib/wine/fakedlls/api-ms-win-core-file-l1-2-0.dll new file mode 100644 index 0000000..ef7ce64 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-file-l1-2-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-file-l1-2-1.dll b/lib/wine/fakedlls/api-ms-win-core-file-l1-2-1.dll new file mode 100644 index 0000000..8c6f526 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-file-l1-2-1.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-file-l1-2-2.dll b/lib/wine/fakedlls/api-ms-win-core-file-l1-2-2.dll new file mode 100644 index 0000000..0b82ebd Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-file-l1-2-2.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-file-l2-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-file-l2-1-0.dll new file mode 100644 index 0000000..70c371b Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-file-l2-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-file-l2-1-1.dll b/lib/wine/fakedlls/api-ms-win-core-file-l2-1-1.dll new file mode 100644 index 0000000..6b6fa52 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-file-l2-1-1.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-file-l2-1-2.dll b/lib/wine/fakedlls/api-ms-win-core-file-l2-1-2.dll new file mode 100644 index 0000000..3257ac0 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-file-l2-1-2.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-handle-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-handle-l1-1-0.dll new file mode 100644 index 0000000..8a0bb10 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-handle-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-heap-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-heap-l1-1-0.dll new file mode 100644 index 0000000..4655f91 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-heap-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-heap-l1-2-0.dll b/lib/wine/fakedlls/api-ms-win-core-heap-l1-2-0.dll new file mode 100644 index 0000000..d46ca6a Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-heap-l1-2-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-heap-l2-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-heap-l2-1-0.dll new file mode 100644 index 0000000..1c83899 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-heap-l2-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-heap-obsolete-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-heap-obsolete-l1-1-0.dll new file mode 100644 index 0000000..79b3f00 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-heap-obsolete-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-interlocked-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-interlocked-l1-1-0.dll new file mode 100644 index 0000000..f66747d Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-interlocked-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-interlocked-l1-2-0.dll b/lib/wine/fakedlls/api-ms-win-core-interlocked-l1-2-0.dll new file mode 100644 index 0000000..02d6cea Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-interlocked-l1-2-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-io-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-io-l1-1-0.dll new file mode 100644 index 0000000..8f703c8 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-io-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-io-l1-1-1.dll b/lib/wine/fakedlls/api-ms-win-core-io-l1-1-1.dll new file mode 100644 index 0000000..0bf022d Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-io-l1-1-1.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-job-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-job-l1-1-0.dll new file mode 100644 index 0000000..8851a34 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-job-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-job-l2-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-job-l2-1-0.dll new file mode 100644 index 0000000..de69e69 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-job-l2-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-kernel32-legacy-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-kernel32-legacy-l1-1-0.dll new file mode 100644 index 0000000..63e0e94 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-kernel32-legacy-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-kernel32-legacy-l1-1-1.dll b/lib/wine/fakedlls/api-ms-win-core-kernel32-legacy-l1-1-1.dll new file mode 100644 index 0000000..15c3765 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-kernel32-legacy-l1-1-1.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-kernel32-private-l1-1-1.dll b/lib/wine/fakedlls/api-ms-win-core-kernel32-private-l1-1-1.dll new file mode 100644 index 0000000..8573112 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-kernel32-private-l1-1-1.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-largeinteger-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-largeinteger-l1-1-0.dll new file mode 100644 index 0000000..dfd3096 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-largeinteger-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-libraryloader-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-libraryloader-l1-1-0.dll new file mode 100644 index 0000000..2884f07 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-libraryloader-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-libraryloader-l1-1-1.dll b/lib/wine/fakedlls/api-ms-win-core-libraryloader-l1-1-1.dll new file mode 100644 index 0000000..4c3ebb9 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-libraryloader-l1-1-1.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-libraryloader-l1-2-0.dll b/lib/wine/fakedlls/api-ms-win-core-libraryloader-l1-2-0.dll new file mode 100644 index 0000000..16507db Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-libraryloader-l1-2-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-libraryloader-l1-2-1.dll b/lib/wine/fakedlls/api-ms-win-core-libraryloader-l1-2-1.dll new file mode 100644 index 0000000..97d887d Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-libraryloader-l1-2-1.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-libraryloader-l1-2-2.dll b/lib/wine/fakedlls/api-ms-win-core-libraryloader-l1-2-2.dll new file mode 100644 index 0000000..14ae94a Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-libraryloader-l1-2-2.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-localization-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-localization-l1-1-0.dll new file mode 100644 index 0000000..3a0a823 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-localization-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-localization-l1-2-0.dll b/lib/wine/fakedlls/api-ms-win-core-localization-l1-2-0.dll new file mode 100644 index 0000000..587abbd Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-localization-l1-2-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-localization-l1-2-1.dll b/lib/wine/fakedlls/api-ms-win-core-localization-l1-2-1.dll new file mode 100644 index 0000000..1e515b8 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-localization-l1-2-1.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-localization-l2-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-localization-l2-1-0.dll new file mode 100644 index 0000000..d091156 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-localization-l2-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-localization-obsolete-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-localization-obsolete-l1-1-0.dll new file mode 100644 index 0000000..1118c5e Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-localization-obsolete-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-localization-obsolete-l1-2-0.dll b/lib/wine/fakedlls/api-ms-win-core-localization-obsolete-l1-2-0.dll new file mode 100644 index 0000000..c3b5262 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-localization-obsolete-l1-2-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-localization-obsolete-l1-3-0.dll b/lib/wine/fakedlls/api-ms-win-core-localization-obsolete-l1-3-0.dll new file mode 100644 index 0000000..6915d0f Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-localization-obsolete-l1-3-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-localization-private-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-localization-private-l1-1-0.dll new file mode 100644 index 0000000..eb1509e Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-localization-private-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-localregistry-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-localregistry-l1-1-0.dll new file mode 100644 index 0000000..11962be Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-localregistry-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-memory-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-memory-l1-1-0.dll new file mode 100644 index 0000000..d75fdc6 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-memory-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-memory-l1-1-1.dll b/lib/wine/fakedlls/api-ms-win-core-memory-l1-1-1.dll new file mode 100644 index 0000000..b281eed Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-memory-l1-1-1.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-memory-l1-1-2.dll b/lib/wine/fakedlls/api-ms-win-core-memory-l1-1-2.dll new file mode 100644 index 0000000..33653d4 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-memory-l1-1-2.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-misc-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-misc-l1-1-0.dll new file mode 100644 index 0000000..44aa6c3 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-misc-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-namedpipe-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-namedpipe-l1-1-0.dll new file mode 100644 index 0000000..7b3d3de Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-namedpipe-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-namedpipe-l1-2-0.dll b/lib/wine/fakedlls/api-ms-win-core-namedpipe-l1-2-0.dll new file mode 100644 index 0000000..3a272b1 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-namedpipe-l1-2-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-namespace-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-namespace-l1-1-0.dll new file mode 100644 index 0000000..c6b3b3d Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-namespace-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-normalization-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-normalization-l1-1-0.dll new file mode 100644 index 0000000..796b804 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-normalization-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-path-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-path-l1-1-0.dll new file mode 100644 index 0000000..a239899 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-path-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-privateprofile-l1-1-1.dll b/lib/wine/fakedlls/api-ms-win-core-privateprofile-l1-1-1.dll new file mode 100644 index 0000000..eb29505 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-privateprofile-l1-1-1.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-processenvironment-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-processenvironment-l1-1-0.dll new file mode 100644 index 0000000..421c104 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-processenvironment-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-processenvironment-l1-2-0.dll b/lib/wine/fakedlls/api-ms-win-core-processenvironment-l1-2-0.dll new file mode 100644 index 0000000..29ca842 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-processenvironment-l1-2-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-processthreads-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-processthreads-l1-1-0.dll new file mode 100644 index 0000000..1f67020 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-processthreads-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-processthreads-l1-1-1.dll b/lib/wine/fakedlls/api-ms-win-core-processthreads-l1-1-1.dll new file mode 100644 index 0000000..f773101 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-processthreads-l1-1-1.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-processthreads-l1-1-2.dll b/lib/wine/fakedlls/api-ms-win-core-processthreads-l1-1-2.dll new file mode 100644 index 0000000..cf2ba0f Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-processthreads-l1-1-2.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-processthreads-l1-1-3.dll b/lib/wine/fakedlls/api-ms-win-core-processthreads-l1-1-3.dll new file mode 100644 index 0000000..0b2564a Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-processthreads-l1-1-3.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-processtopology-obsolete-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-processtopology-obsolete-l1-1-0.dll new file mode 100644 index 0000000..2939bd5 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-processtopology-obsolete-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-profile-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-profile-l1-1-0.dll new file mode 100644 index 0000000..e8feacf Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-profile-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-psapi-ansi-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-psapi-ansi-l1-1-0.dll new file mode 100644 index 0000000..baa99df Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-psapi-ansi-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-psapi-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-psapi-l1-1-0.dll new file mode 100644 index 0000000..5bd4300 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-psapi-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-psapi-obsolete-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-psapi-obsolete-l1-1-0.dll new file mode 100644 index 0000000..b4182a0 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-psapi-obsolete-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-quirks-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-quirks-l1-1-0.dll new file mode 100644 index 0000000..46dc598 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-quirks-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-realtime-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-realtime-l1-1-0.dll new file mode 100644 index 0000000..f0f5e4a Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-realtime-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-registry-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-registry-l1-1-0.dll new file mode 100644 index 0000000..959d5ad Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-registry-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-registry-l2-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-registry-l2-1-0.dll new file mode 100644 index 0000000..a818271 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-registry-l2-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-registryuserspecific-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-registryuserspecific-l1-1-0.dll new file mode 100644 index 0000000..16963d5 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-registryuserspecific-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-rtlsupport-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-rtlsupport-l1-1-0.dll new file mode 100644 index 0000000..c6f910d Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-rtlsupport-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-rtlsupport-l1-2-0.dll b/lib/wine/fakedlls/api-ms-win-core-rtlsupport-l1-2-0.dll new file mode 100644 index 0000000..6b8d311 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-rtlsupport-l1-2-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-shlwapi-legacy-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-shlwapi-legacy-l1-1-0.dll new file mode 100644 index 0000000..71022b2 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-shlwapi-legacy-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-shlwapi-obsolete-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-shlwapi-obsolete-l1-1-0.dll new file mode 100644 index 0000000..63b6534 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-shlwapi-obsolete-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-shlwapi-obsolete-l1-2-0.dll b/lib/wine/fakedlls/api-ms-win-core-shlwapi-obsolete-l1-2-0.dll new file mode 100644 index 0000000..81b90c3 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-shlwapi-obsolete-l1-2-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-shutdown-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-shutdown-l1-1-0.dll new file mode 100644 index 0000000..3a7b20e Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-shutdown-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-sidebyside-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-sidebyside-l1-1-0.dll new file mode 100644 index 0000000..788dabb Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-sidebyside-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-string-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-string-l1-1-0.dll new file mode 100644 index 0000000..75e0907 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-string-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-string-l2-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-string-l2-1-0.dll new file mode 100644 index 0000000..1dbf904 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-string-l2-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-string-obsolete-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-string-obsolete-l1-1-0.dll new file mode 100644 index 0000000..2ea2f65 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-string-obsolete-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-stringansi-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-stringansi-l1-1-0.dll new file mode 100644 index 0000000..5498aca Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-stringansi-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-stringloader-l1-1-1.dll b/lib/wine/fakedlls/api-ms-win-core-stringloader-l1-1-1.dll new file mode 100644 index 0000000..3f2a3d0 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-stringloader-l1-1-1.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-synch-ansi-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-synch-ansi-l1-1-0.dll new file mode 100644 index 0000000..78a5aa2 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-synch-ansi-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-synch-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-synch-l1-1-0.dll new file mode 100644 index 0000000..cd19c9f Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-synch-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-synch-l1-2-0.dll b/lib/wine/fakedlls/api-ms-win-core-synch-l1-2-0.dll new file mode 100644 index 0000000..990d104 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-synch-l1-2-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-synch-l1-2-1.dll b/lib/wine/fakedlls/api-ms-win-core-synch-l1-2-1.dll new file mode 100644 index 0000000..2c53287 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-synch-l1-2-1.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-sysinfo-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-sysinfo-l1-1-0.dll new file mode 100644 index 0000000..5613aa4 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-sysinfo-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-sysinfo-l1-2-0.dll b/lib/wine/fakedlls/api-ms-win-core-sysinfo-l1-2-0.dll new file mode 100644 index 0000000..01f0b0d Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-sysinfo-l1-2-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-sysinfo-l1-2-1.dll b/lib/wine/fakedlls/api-ms-win-core-sysinfo-l1-2-1.dll new file mode 100644 index 0000000..3f70ddb Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-sysinfo-l1-2-1.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-threadpool-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-threadpool-l1-1-0.dll new file mode 100644 index 0000000..3e9a4cf Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-threadpool-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-threadpool-l1-2-0.dll b/lib/wine/fakedlls/api-ms-win-core-threadpool-l1-2-0.dll new file mode 100644 index 0000000..f9b32e5 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-threadpool-l1-2-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-threadpool-legacy-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-threadpool-legacy-l1-1-0.dll new file mode 100644 index 0000000..59200db Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-threadpool-legacy-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-threadpool-private-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-threadpool-private-l1-1-0.dll new file mode 100644 index 0000000..96ae98b Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-threadpool-private-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-timezone-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-timezone-l1-1-0.dll new file mode 100644 index 0000000..60647ee Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-timezone-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-toolhelp-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-toolhelp-l1-1-0.dll new file mode 100644 index 0000000..ba82107 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-toolhelp-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-url-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-url-l1-1-0.dll new file mode 100644 index 0000000..d75aa84 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-url-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-util-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-util-l1-1-0.dll new file mode 100644 index 0000000..fb81b50 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-util-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-version-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-version-l1-1-0.dll new file mode 100644 index 0000000..d962ccd Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-version-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-version-l1-1-1.dll b/lib/wine/fakedlls/api-ms-win-core-version-l1-1-1.dll new file mode 100644 index 0000000..26eca57 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-version-l1-1-1.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-version-private-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-version-private-l1-1-0.dll new file mode 100644 index 0000000..4a190e8 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-version-private-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-versionansi-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-versionansi-l1-1-0.dll new file mode 100644 index 0000000..84a39d9 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-versionansi-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-windowserrorreporting-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-windowserrorreporting-l1-1-0.dll new file mode 100644 index 0000000..5b1a0b5 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-windowserrorreporting-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-winrt-error-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-winrt-error-l1-1-0.dll new file mode 100644 index 0000000..9d07655 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-winrt-error-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-winrt-error-l1-1-1.dll b/lib/wine/fakedlls/api-ms-win-core-winrt-error-l1-1-1.dll new file mode 100644 index 0000000..0c4cd9d Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-winrt-error-l1-1-1.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-winrt-errorprivate-l1-1-1.dll b/lib/wine/fakedlls/api-ms-win-core-winrt-errorprivate-l1-1-1.dll new file mode 100644 index 0000000..edae54d Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-winrt-errorprivate-l1-1-1.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-winrt-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-winrt-l1-1-0.dll new file mode 100644 index 0000000..ab989b5 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-winrt-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-winrt-registration-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-winrt-registration-l1-1-0.dll new file mode 100644 index 0000000..e04ad34 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-winrt-registration-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-winrt-roparameterizediid-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-winrt-roparameterizediid-l1-1-0.dll new file mode 100644 index 0000000..40d7a76 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-winrt-roparameterizediid-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-winrt-string-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-winrt-string-l1-1-0.dll new file mode 100644 index 0000000..68845fd Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-winrt-string-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-winrt-string-l1-1-1.dll b/lib/wine/fakedlls/api-ms-win-core-winrt-string-l1-1-1.dll new file mode 100644 index 0000000..e0fb906 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-winrt-string-l1-1-1.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-wow64-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-wow64-l1-1-0.dll new file mode 100644 index 0000000..948d676 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-wow64-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-wow64-l1-1-1.dll b/lib/wine/fakedlls/api-ms-win-core-wow64-l1-1-1.dll new file mode 100644 index 0000000..71da72e Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-wow64-l1-1-1.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-xstate-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-xstate-l1-1-0.dll new file mode 100644 index 0000000..47883a9 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-xstate-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-core-xstate-l2-1-0.dll b/lib/wine/fakedlls/api-ms-win-core-xstate-l2-1-0.dll new file mode 100644 index 0000000..160e5cb Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-core-xstate-l2-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-crt-conio-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-crt-conio-l1-1-0.dll new file mode 100644 index 0000000..b4c6024 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-crt-conio-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-crt-convert-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-crt-convert-l1-1-0.dll new file mode 100644 index 0000000..b2a6c7a Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-crt-convert-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-crt-environment-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-crt-environment-l1-1-0.dll new file mode 100644 index 0000000..f4dc1e3 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-crt-environment-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-crt-filesystem-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-crt-filesystem-l1-1-0.dll new file mode 100644 index 0000000..08e1442 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-crt-filesystem-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-crt-heap-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-crt-heap-l1-1-0.dll new file mode 100644 index 0000000..8ee2384 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-crt-heap-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-crt-locale-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-crt-locale-l1-1-0.dll new file mode 100644 index 0000000..0b769db Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-crt-locale-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-crt-math-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-crt-math-l1-1-0.dll new file mode 100644 index 0000000..12646c3 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-crt-math-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-crt-multibyte-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-crt-multibyte-l1-1-0.dll new file mode 100644 index 0000000..790755f Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-crt-multibyte-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-crt-private-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-crt-private-l1-1-0.dll new file mode 100644 index 0000000..82224b9 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-crt-private-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-crt-process-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-crt-process-l1-1-0.dll new file mode 100644 index 0000000..9b31d1c Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-crt-process-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-crt-runtime-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-crt-runtime-l1-1-0.dll new file mode 100644 index 0000000..d4e22cc Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-crt-runtime-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-crt-stdio-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-crt-stdio-l1-1-0.dll new file mode 100644 index 0000000..710faaa Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-crt-stdio-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-crt-string-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-crt-string-l1-1-0.dll new file mode 100644 index 0000000..e240528 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-crt-string-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-crt-time-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-crt-time-l1-1-0.dll new file mode 100644 index 0000000..c477c03 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-crt-time-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-crt-utility-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-crt-utility-l1-1-0.dll new file mode 100644 index 0000000..754663c Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-crt-utility-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-devices-config-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-devices-config-l1-1-0.dll new file mode 100644 index 0000000..759c52c Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-devices-config-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-devices-config-l1-1-1.dll b/lib/wine/fakedlls/api-ms-win-devices-config-l1-1-1.dll new file mode 100644 index 0000000..1a9f910 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-devices-config-l1-1-1.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-devices-query-l1-1-1.dll b/lib/wine/fakedlls/api-ms-win-devices-query-l1-1-1.dll new file mode 100644 index 0000000..191862e Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-devices-query-l1-1-1.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-downlevel-advapi32-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-downlevel-advapi32-l1-1-0.dll new file mode 100644 index 0000000..352078e Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-downlevel-advapi32-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-downlevel-advapi32-l2-1-0.dll b/lib/wine/fakedlls/api-ms-win-downlevel-advapi32-l2-1-0.dll new file mode 100644 index 0000000..80a117b Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-downlevel-advapi32-l2-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-downlevel-normaliz-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-downlevel-normaliz-l1-1-0.dll new file mode 100644 index 0000000..77fd5bb Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-downlevel-normaliz-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-downlevel-ole32-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-downlevel-ole32-l1-1-0.dll new file mode 100644 index 0000000..536f16b Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-downlevel-ole32-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-downlevel-shell32-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-downlevel-shell32-l1-1-0.dll new file mode 100644 index 0000000..16bf92d Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-downlevel-shell32-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-downlevel-shlwapi-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-downlevel-shlwapi-l1-1-0.dll new file mode 100644 index 0000000..c0153e5 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-downlevel-shlwapi-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-downlevel-shlwapi-l2-1-0.dll b/lib/wine/fakedlls/api-ms-win-downlevel-shlwapi-l2-1-0.dll new file mode 100644 index 0000000..57c2ad2 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-downlevel-shlwapi-l2-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-downlevel-user32-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-downlevel-user32-l1-1-0.dll new file mode 100644 index 0000000..f5c2e17 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-downlevel-user32-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-downlevel-version-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-downlevel-version-l1-1-0.dll new file mode 100644 index 0000000..d9257f0 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-downlevel-version-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-dx-d3dkmt-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-dx-d3dkmt-l1-1-0.dll new file mode 100644 index 0000000..7ab0136 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-dx-d3dkmt-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-eventing-classicprovider-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-eventing-classicprovider-l1-1-0.dll new file mode 100644 index 0000000..6dc5179 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-eventing-classicprovider-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-eventing-consumer-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-eventing-consumer-l1-1-0.dll new file mode 100644 index 0000000..2723d02 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-eventing-consumer-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-eventing-controller-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-eventing-controller-l1-1-0.dll new file mode 100644 index 0000000..94896d0 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-eventing-controller-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-eventing-legacy-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-eventing-legacy-l1-1-0.dll new file mode 100644 index 0000000..ce403e5 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-eventing-legacy-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-eventing-provider-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-eventing-provider-l1-1-0.dll new file mode 100644 index 0000000..188ba30 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-eventing-provider-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-eventlog-legacy-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-eventlog-legacy-l1-1-0.dll new file mode 100644 index 0000000..b0b351c Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-eventlog-legacy-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-gdi-dpiinfo-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-gdi-dpiinfo-l1-1-0.dll new file mode 100644 index 0000000..55b2a71 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-gdi-dpiinfo-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-mm-joystick-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-mm-joystick-l1-1-0.dll new file mode 100644 index 0000000..be5abc6 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-mm-joystick-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-mm-misc-l1-1-1.dll b/lib/wine/fakedlls/api-ms-win-mm-misc-l1-1-1.dll new file mode 100644 index 0000000..5d586b7 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-mm-misc-l1-1-1.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-mm-mme-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-mm-mme-l1-1-0.dll new file mode 100644 index 0000000..4e020e5 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-mm-mme-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-mm-time-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-mm-time-l1-1-0.dll new file mode 100644 index 0000000..50fab2b Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-mm-time-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-ntuser-dc-access-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-ntuser-dc-access-l1-1-0.dll new file mode 100644 index 0000000..6b7573a Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-ntuser-dc-access-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-ntuser-rectangle-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-ntuser-rectangle-l1-1-0.dll new file mode 100644 index 0000000..4edc17d Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-ntuser-rectangle-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-ntuser-sysparams-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-ntuser-sysparams-l1-1-0.dll new file mode 100644 index 0000000..a9a9459 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-ntuser-sysparams-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-perf-legacy-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-perf-legacy-l1-1-0.dll new file mode 100644 index 0000000..0785827 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-perf-legacy-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-power-base-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-power-base-l1-1-0.dll new file mode 100644 index 0000000..127ec80 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-power-base-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-power-setting-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-power-setting-l1-1-0.dll new file mode 100644 index 0000000..964c7d9 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-power-setting-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-rtcore-ntuser-draw-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-rtcore-ntuser-draw-l1-1-0.dll new file mode 100644 index 0000000..31b42fa Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-rtcore-ntuser-draw-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-rtcore-ntuser-private-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-rtcore-ntuser-private-l1-1-0.dll new file mode 100644 index 0000000..50625be Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-rtcore-ntuser-private-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-rtcore-ntuser-private-l1-1-4.dll b/lib/wine/fakedlls/api-ms-win-rtcore-ntuser-private-l1-1-4.dll new file mode 100644 index 0000000..efc937b Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-rtcore-ntuser-private-l1-1-4.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-rtcore-ntuser-window-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-rtcore-ntuser-window-l1-1-0.dll new file mode 100644 index 0000000..cc7cb45 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-rtcore-ntuser-window-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-rtcore-ntuser-winevent-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-rtcore-ntuser-winevent-l1-1-0.dll new file mode 100644 index 0000000..0694cbb Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-rtcore-ntuser-winevent-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-rtcore-ntuser-wmpointer-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-rtcore-ntuser-wmpointer-l1-1-0.dll new file mode 100644 index 0000000..8852295 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-rtcore-ntuser-wmpointer-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-rtcore-ntuser-wmpointer-l1-1-3.dll b/lib/wine/fakedlls/api-ms-win-rtcore-ntuser-wmpointer-l1-1-3.dll new file mode 100644 index 0000000..5a1cfab Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-rtcore-ntuser-wmpointer-l1-1-3.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-security-activedirectoryclient-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-security-activedirectoryclient-l1-1-0.dll new file mode 100644 index 0000000..3968bfb Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-security-activedirectoryclient-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-security-audit-l1-1-1.dll b/lib/wine/fakedlls/api-ms-win-security-audit-l1-1-1.dll new file mode 100644 index 0000000..51b9687 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-security-audit-l1-1-1.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-security-base-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-security-base-l1-1-0.dll new file mode 100644 index 0000000..79c0816 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-security-base-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-security-base-l1-2-0.dll b/lib/wine/fakedlls/api-ms-win-security-base-l1-2-0.dll new file mode 100644 index 0000000..2cb0b04 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-security-base-l1-2-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-security-base-private-l1-1-1.dll b/lib/wine/fakedlls/api-ms-win-security-base-private-l1-1-1.dll new file mode 100644 index 0000000..f553aa6 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-security-base-private-l1-1-1.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-security-credentials-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-security-credentials-l1-1-0.dll new file mode 100644 index 0000000..02793ae Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-security-credentials-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-security-cryptoapi-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-security-cryptoapi-l1-1-0.dll new file mode 100644 index 0000000..a9276a1 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-security-cryptoapi-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-security-grouppolicy-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-security-grouppolicy-l1-1-0.dll new file mode 100644 index 0000000..3223216 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-security-grouppolicy-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-security-lsalookup-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-security-lsalookup-l1-1-0.dll new file mode 100644 index 0000000..bf9bd25 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-security-lsalookup-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-security-lsalookup-l1-1-1.dll b/lib/wine/fakedlls/api-ms-win-security-lsalookup-l1-1-1.dll new file mode 100644 index 0000000..beafd6d Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-security-lsalookup-l1-1-1.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-security-lsalookup-l2-1-0.dll b/lib/wine/fakedlls/api-ms-win-security-lsalookup-l2-1-0.dll new file mode 100644 index 0000000..4efda2d Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-security-lsalookup-l2-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-security-lsalookup-l2-1-1.dll b/lib/wine/fakedlls/api-ms-win-security-lsalookup-l2-1-1.dll new file mode 100644 index 0000000..68e16ad Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-security-lsalookup-l2-1-1.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-security-lsapolicy-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-security-lsapolicy-l1-1-0.dll new file mode 100644 index 0000000..429f311 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-security-lsapolicy-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-security-provider-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-security-provider-l1-1-0.dll new file mode 100644 index 0000000..bea379f Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-security-provider-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-security-sddl-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-security-sddl-l1-1-0.dll new file mode 100644 index 0000000..45915e5 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-security-sddl-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-security-systemfunctions-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-security-systemfunctions-l1-1-0.dll new file mode 100644 index 0000000..420eba8 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-security-systemfunctions-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-service-core-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-service-core-l1-1-0.dll new file mode 100644 index 0000000..cb07d81 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-service-core-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-service-core-l1-1-1.dll b/lib/wine/fakedlls/api-ms-win-service-core-l1-1-1.dll new file mode 100644 index 0000000..08537f0 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-service-core-l1-1-1.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-service-management-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-service-management-l1-1-0.dll new file mode 100644 index 0000000..0454a6c Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-service-management-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-service-management-l2-1-0.dll b/lib/wine/fakedlls/api-ms-win-service-management-l2-1-0.dll new file mode 100644 index 0000000..cb268fd Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-service-management-l2-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-service-private-l1-1-1.dll b/lib/wine/fakedlls/api-ms-win-service-private-l1-1-1.dll new file mode 100644 index 0000000..28d2b95 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-service-private-l1-1-1.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-service-winsvc-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-service-winsvc-l1-1-0.dll new file mode 100644 index 0000000..14c4428 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-service-winsvc-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-service-winsvc-l1-2-0.dll b/lib/wine/fakedlls/api-ms-win-service-winsvc-l1-2-0.dll new file mode 100644 index 0000000..7a64101 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-service-winsvc-l1-2-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-shcore-obsolete-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-shcore-obsolete-l1-1-0.dll new file mode 100644 index 0000000..7aff605 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-shcore-obsolete-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-shcore-scaling-l1-1-1.dll b/lib/wine/fakedlls/api-ms-win-shcore-scaling-l1-1-1.dll new file mode 100644 index 0000000..bde5872 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-shcore-scaling-l1-1-1.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-shcore-stream-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-shcore-stream-l1-1-0.dll new file mode 100644 index 0000000..b2a28e7 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-shcore-stream-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-shcore-thread-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-shcore-thread-l1-1-0.dll new file mode 100644 index 0000000..f877095 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-shcore-thread-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-shell-shellcom-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-shell-shellcom-l1-1-0.dll new file mode 100644 index 0000000..3ce5c47 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-shell-shellcom-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/api-ms-win-shell-shellfolders-l1-1-0.dll b/lib/wine/fakedlls/api-ms-win-shell-shellfolders-l1-1-0.dll new file mode 100644 index 0000000..40dc3d1 Binary files /dev/null and b/lib/wine/fakedlls/api-ms-win-shell-shellfolders-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/apphelp.dll b/lib/wine/fakedlls/apphelp.dll new file mode 100644 index 0000000..4fd117f Binary files /dev/null and b/lib/wine/fakedlls/apphelp.dll differ diff --git a/lib/wine/fakedlls/appwiz.cpl b/lib/wine/fakedlls/appwiz.cpl new file mode 100644 index 0000000..952d578 Binary files /dev/null and b/lib/wine/fakedlls/appwiz.cpl differ diff --git a/lib/wine/fakedlls/arp.exe b/lib/wine/fakedlls/arp.exe new file mode 100644 index 0000000..448bbff Binary files /dev/null and b/lib/wine/fakedlls/arp.exe differ diff --git a/lib/wine/fakedlls/aspnet_regiis.exe b/lib/wine/fakedlls/aspnet_regiis.exe new file mode 100644 index 0000000..448bbff Binary files /dev/null and b/lib/wine/fakedlls/aspnet_regiis.exe differ diff --git a/lib/wine/fakedlls/atl.dll b/lib/wine/fakedlls/atl.dll new file mode 100644 index 0000000..74b847a Binary files /dev/null and b/lib/wine/fakedlls/atl.dll differ diff --git a/lib/wine/fakedlls/atl100.dll b/lib/wine/fakedlls/atl100.dll new file mode 100644 index 0000000..6e08bd3 Binary files /dev/null and b/lib/wine/fakedlls/atl100.dll differ diff --git a/lib/wine/fakedlls/atl110.dll b/lib/wine/fakedlls/atl110.dll new file mode 100644 index 0000000..01a6c5b Binary files /dev/null and b/lib/wine/fakedlls/atl110.dll differ diff --git a/lib/wine/fakedlls/atl80.dll b/lib/wine/fakedlls/atl80.dll new file mode 100644 index 0000000..d7a9b7f Binary files /dev/null and b/lib/wine/fakedlls/atl80.dll differ diff --git a/lib/wine/fakedlls/atl90.dll b/lib/wine/fakedlls/atl90.dll new file mode 100644 index 0000000..fbdae2d Binary files /dev/null and b/lib/wine/fakedlls/atl90.dll differ diff --git a/lib/wine/fakedlls/atlthunk.dll b/lib/wine/fakedlls/atlthunk.dll new file mode 100644 index 0000000..1f6cf3a Binary files /dev/null and b/lib/wine/fakedlls/atlthunk.dll differ diff --git a/lib/wine/fakedlls/atmlib.dll b/lib/wine/fakedlls/atmlib.dll new file mode 100644 index 0000000..22f9840 Binary files /dev/null and b/lib/wine/fakedlls/atmlib.dll differ diff --git a/lib/wine/fakedlls/attrib.exe b/lib/wine/fakedlls/attrib.exe new file mode 100644 index 0000000..1e88f7c Binary files /dev/null and b/lib/wine/fakedlls/attrib.exe differ diff --git a/lib/wine/fakedlls/authz.dll b/lib/wine/fakedlls/authz.dll new file mode 100644 index 0000000..68e34a2 Binary files /dev/null and b/lib/wine/fakedlls/authz.dll differ diff --git a/lib/wine/fakedlls/avicap32.dll b/lib/wine/fakedlls/avicap32.dll new file mode 100644 index 0000000..c93820f Binary files /dev/null and b/lib/wine/fakedlls/avicap32.dll differ diff --git a/lib/wine/fakedlls/avifil32.dll b/lib/wine/fakedlls/avifil32.dll new file mode 100644 index 0000000..ad7068f Binary files /dev/null and b/lib/wine/fakedlls/avifil32.dll differ diff --git a/lib/wine/fakedlls/avifile.dll16 b/lib/wine/fakedlls/avifile.dll16 new file mode 100644 index 0000000..0d9596a Binary files /dev/null and b/lib/wine/fakedlls/avifile.dll16 differ diff --git a/lib/wine/fakedlls/avrt.dll b/lib/wine/fakedlls/avrt.dll new file mode 100644 index 0000000..744e514 Binary files /dev/null and b/lib/wine/fakedlls/avrt.dll differ diff --git a/lib/wine/fakedlls/bcrypt.dll b/lib/wine/fakedlls/bcrypt.dll new file mode 100644 index 0000000..461eec9 Binary files /dev/null and b/lib/wine/fakedlls/bcrypt.dll differ diff --git a/lib/wine/fakedlls/bluetoothapis.dll b/lib/wine/fakedlls/bluetoothapis.dll new file mode 100644 index 0000000..66ff7e4 Binary files /dev/null and b/lib/wine/fakedlls/bluetoothapis.dll differ diff --git a/lib/wine/fakedlls/browseui.dll b/lib/wine/fakedlls/browseui.dll new file mode 100644 index 0000000..e7785ed Binary files /dev/null and b/lib/wine/fakedlls/browseui.dll differ diff --git a/lib/wine/fakedlls/bthprops.cpl b/lib/wine/fakedlls/bthprops.cpl new file mode 100644 index 0000000..27ef85f Binary files /dev/null and b/lib/wine/fakedlls/bthprops.cpl differ diff --git a/lib/wine/fakedlls/cabarc.exe b/lib/wine/fakedlls/cabarc.exe new file mode 100644 index 0000000..448bbff Binary files /dev/null and b/lib/wine/fakedlls/cabarc.exe differ diff --git a/lib/wine/fakedlls/cabinet.dll b/lib/wine/fakedlls/cabinet.dll new file mode 100644 index 0000000..19fde39 Binary files /dev/null and b/lib/wine/fakedlls/cabinet.dll differ diff --git a/lib/wine/fakedlls/cacls.exe b/lib/wine/fakedlls/cacls.exe new file mode 100644 index 0000000..448bbff Binary files /dev/null and b/lib/wine/fakedlls/cacls.exe differ diff --git a/lib/wine/fakedlls/capi2032.dll b/lib/wine/fakedlls/capi2032.dll new file mode 100644 index 0000000..b49e2d1 Binary files /dev/null and b/lib/wine/fakedlls/capi2032.dll differ diff --git a/lib/wine/fakedlls/cards.dll b/lib/wine/fakedlls/cards.dll new file mode 100644 index 0000000..33b1e99 Binary files /dev/null and b/lib/wine/fakedlls/cards.dll differ diff --git a/lib/wine/fakedlls/cdosys.dll b/lib/wine/fakedlls/cdosys.dll new file mode 100644 index 0000000..cefd131 Binary files /dev/null and b/lib/wine/fakedlls/cdosys.dll differ diff --git a/lib/wine/fakedlls/cfgmgr32.dll b/lib/wine/fakedlls/cfgmgr32.dll new file mode 100644 index 0000000..60ac30f Binary files /dev/null and b/lib/wine/fakedlls/cfgmgr32.dll differ diff --git a/lib/wine/fakedlls/clock.exe b/lib/wine/fakedlls/clock.exe new file mode 100644 index 0000000..2060aa6 Binary files /dev/null and b/lib/wine/fakedlls/clock.exe differ diff --git a/lib/wine/fakedlls/clusapi.dll b/lib/wine/fakedlls/clusapi.dll new file mode 100644 index 0000000..1f5371f Binary files /dev/null and b/lib/wine/fakedlls/clusapi.dll differ diff --git a/lib/wine/fakedlls/cmd.exe b/lib/wine/fakedlls/cmd.exe new file mode 100644 index 0000000..92e988b Binary files /dev/null and b/lib/wine/fakedlls/cmd.exe differ diff --git a/lib/wine/fakedlls/combase.dll b/lib/wine/fakedlls/combase.dll new file mode 100644 index 0000000..cadd0fd Binary files /dev/null and b/lib/wine/fakedlls/combase.dll differ diff --git a/lib/wine/fakedlls/comcat.dll b/lib/wine/fakedlls/comcat.dll new file mode 100644 index 0000000..2e831b4 Binary files /dev/null and b/lib/wine/fakedlls/comcat.dll differ diff --git a/lib/wine/fakedlls/comctl32.dll b/lib/wine/fakedlls/comctl32.dll new file mode 100644 index 0000000..17ca20b Binary files /dev/null and b/lib/wine/fakedlls/comctl32.dll differ diff --git a/lib/wine/fakedlls/comdlg32.dll b/lib/wine/fakedlls/comdlg32.dll new file mode 100644 index 0000000..dfbe5c0 Binary files /dev/null and b/lib/wine/fakedlls/comdlg32.dll differ diff --git a/lib/wine/fakedlls/comm.drv16 b/lib/wine/fakedlls/comm.drv16 new file mode 100644 index 0000000..df1c751 Binary files /dev/null and b/lib/wine/fakedlls/comm.drv16 differ diff --git a/lib/wine/fakedlls/commdlg.dll16 b/lib/wine/fakedlls/commdlg.dll16 new file mode 100644 index 0000000..d9626a3 Binary files /dev/null and b/lib/wine/fakedlls/commdlg.dll16 differ diff --git a/lib/wine/fakedlls/compobj.dll16 b/lib/wine/fakedlls/compobj.dll16 new file mode 100644 index 0000000..16b5016 Binary files /dev/null and b/lib/wine/fakedlls/compobj.dll16 differ diff --git a/lib/wine/fakedlls/compstui.dll b/lib/wine/fakedlls/compstui.dll new file mode 100644 index 0000000..baa0e28 Binary files /dev/null and b/lib/wine/fakedlls/compstui.dll differ diff --git a/lib/wine/fakedlls/comsvcs.dll b/lib/wine/fakedlls/comsvcs.dll new file mode 100644 index 0000000..e70966f Binary files /dev/null and b/lib/wine/fakedlls/comsvcs.dll differ diff --git a/lib/wine/fakedlls/concrt140.dll b/lib/wine/fakedlls/concrt140.dll new file mode 100644 index 0000000..bbf5b3f Binary files /dev/null and b/lib/wine/fakedlls/concrt140.dll differ diff --git a/lib/wine/fakedlls/conhost.exe b/lib/wine/fakedlls/conhost.exe new file mode 100644 index 0000000..57d94c6 Binary files /dev/null and b/lib/wine/fakedlls/conhost.exe differ diff --git a/lib/wine/fakedlls/connect.dll b/lib/wine/fakedlls/connect.dll new file mode 100644 index 0000000..24e6a99 Binary files /dev/null and b/lib/wine/fakedlls/connect.dll differ diff --git a/lib/wine/fakedlls/control.exe b/lib/wine/fakedlls/control.exe new file mode 100644 index 0000000..532d4a1 Binary files /dev/null and b/lib/wine/fakedlls/control.exe differ diff --git a/lib/wine/fakedlls/credui.dll b/lib/wine/fakedlls/credui.dll new file mode 100644 index 0000000..51b0386 Binary files /dev/null and b/lib/wine/fakedlls/credui.dll differ diff --git a/lib/wine/fakedlls/crtdll.dll b/lib/wine/fakedlls/crtdll.dll new file mode 100644 index 0000000..ce747f3 Binary files /dev/null and b/lib/wine/fakedlls/crtdll.dll differ diff --git a/lib/wine/fakedlls/crypt32.dll b/lib/wine/fakedlls/crypt32.dll new file mode 100644 index 0000000..c5c784c Binary files /dev/null and b/lib/wine/fakedlls/crypt32.dll differ diff --git a/lib/wine/fakedlls/cryptdlg.dll b/lib/wine/fakedlls/cryptdlg.dll new file mode 100644 index 0000000..8299499 Binary files /dev/null and b/lib/wine/fakedlls/cryptdlg.dll differ diff --git a/lib/wine/fakedlls/cryptdll.dll b/lib/wine/fakedlls/cryptdll.dll new file mode 100644 index 0000000..d7e6160 Binary files /dev/null and b/lib/wine/fakedlls/cryptdll.dll differ diff --git a/lib/wine/fakedlls/cryptext.dll b/lib/wine/fakedlls/cryptext.dll new file mode 100644 index 0000000..8639fe5 Binary files /dev/null and b/lib/wine/fakedlls/cryptext.dll differ diff --git a/lib/wine/fakedlls/cryptnet.dll b/lib/wine/fakedlls/cryptnet.dll new file mode 100644 index 0000000..61469fd Binary files /dev/null and b/lib/wine/fakedlls/cryptnet.dll differ diff --git a/lib/wine/fakedlls/cryptui.dll b/lib/wine/fakedlls/cryptui.dll new file mode 100644 index 0000000..76a4ba3 Binary files /dev/null and b/lib/wine/fakedlls/cryptui.dll differ diff --git a/lib/wine/fakedlls/cscript.exe b/lib/wine/fakedlls/cscript.exe new file mode 100644 index 0000000..532d4a1 Binary files /dev/null and b/lib/wine/fakedlls/cscript.exe differ diff --git a/lib/wine/fakedlls/ctapi32.dll b/lib/wine/fakedlls/ctapi32.dll new file mode 100644 index 0000000..20b5b35 Binary files /dev/null and b/lib/wine/fakedlls/ctapi32.dll differ diff --git a/lib/wine/fakedlls/ctl3d.dll16 b/lib/wine/fakedlls/ctl3d.dll16 new file mode 100644 index 0000000..22bb140 Binary files /dev/null and b/lib/wine/fakedlls/ctl3d.dll16 differ diff --git a/lib/wine/fakedlls/ctl3d32.dll b/lib/wine/fakedlls/ctl3d32.dll new file mode 100644 index 0000000..1c38408 Binary files /dev/null and b/lib/wine/fakedlls/ctl3d32.dll differ diff --git a/lib/wine/fakedlls/ctl3dv2.dll16 b/lib/wine/fakedlls/ctl3dv2.dll16 new file mode 100644 index 0000000..07d7acf Binary files /dev/null and b/lib/wine/fakedlls/ctl3dv2.dll16 differ diff --git a/lib/wine/fakedlls/d2d1.dll b/lib/wine/fakedlls/d2d1.dll new file mode 100644 index 0000000..037d8d1 Binary files /dev/null and b/lib/wine/fakedlls/d2d1.dll differ diff --git a/lib/wine/fakedlls/d3d10.dll b/lib/wine/fakedlls/d3d10.dll new file mode 100644 index 0000000..55d20dc Binary files /dev/null and b/lib/wine/fakedlls/d3d10.dll differ diff --git a/lib/wine/fakedlls/d3d10_1.dll b/lib/wine/fakedlls/d3d10_1.dll new file mode 100644 index 0000000..986df59 Binary files /dev/null and b/lib/wine/fakedlls/d3d10_1.dll differ diff --git a/lib/wine/fakedlls/d3d10core.dll b/lib/wine/fakedlls/d3d10core.dll new file mode 100644 index 0000000..9172927 Binary files /dev/null and b/lib/wine/fakedlls/d3d10core.dll differ diff --git a/lib/wine/fakedlls/d3d11.dll b/lib/wine/fakedlls/d3d11.dll new file mode 100644 index 0000000..6c78044 Binary files /dev/null and b/lib/wine/fakedlls/d3d11.dll differ diff --git a/lib/wine/fakedlls/d3d8.dll b/lib/wine/fakedlls/d3d8.dll new file mode 100644 index 0000000..2748bea Binary files /dev/null and b/lib/wine/fakedlls/d3d8.dll differ diff --git a/lib/wine/fakedlls/d3d9.dll b/lib/wine/fakedlls/d3d9.dll new file mode 100644 index 0000000..1b7c72d Binary files /dev/null and b/lib/wine/fakedlls/d3d9.dll differ diff --git a/lib/wine/fakedlls/d3dcompiler_33.dll b/lib/wine/fakedlls/d3dcompiler_33.dll new file mode 100644 index 0000000..742a600 Binary files /dev/null and b/lib/wine/fakedlls/d3dcompiler_33.dll differ diff --git a/lib/wine/fakedlls/d3dcompiler_34.dll b/lib/wine/fakedlls/d3dcompiler_34.dll new file mode 100644 index 0000000..0b03300 Binary files /dev/null and b/lib/wine/fakedlls/d3dcompiler_34.dll differ diff --git a/lib/wine/fakedlls/d3dcompiler_35.dll b/lib/wine/fakedlls/d3dcompiler_35.dll new file mode 100644 index 0000000..69ff584 Binary files /dev/null and b/lib/wine/fakedlls/d3dcompiler_35.dll differ diff --git a/lib/wine/fakedlls/d3dcompiler_36.dll b/lib/wine/fakedlls/d3dcompiler_36.dll new file mode 100644 index 0000000..31764a7 Binary files /dev/null and b/lib/wine/fakedlls/d3dcompiler_36.dll differ diff --git a/lib/wine/fakedlls/d3dcompiler_37.dll b/lib/wine/fakedlls/d3dcompiler_37.dll new file mode 100644 index 0000000..59d1b46 Binary files /dev/null and b/lib/wine/fakedlls/d3dcompiler_37.dll differ diff --git a/lib/wine/fakedlls/d3dcompiler_38.dll b/lib/wine/fakedlls/d3dcompiler_38.dll new file mode 100644 index 0000000..dbf9a58 Binary files /dev/null and b/lib/wine/fakedlls/d3dcompiler_38.dll differ diff --git a/lib/wine/fakedlls/d3dcompiler_39.dll b/lib/wine/fakedlls/d3dcompiler_39.dll new file mode 100644 index 0000000..077df66 Binary files /dev/null and b/lib/wine/fakedlls/d3dcompiler_39.dll differ diff --git a/lib/wine/fakedlls/d3dcompiler_40.dll b/lib/wine/fakedlls/d3dcompiler_40.dll new file mode 100644 index 0000000..84995d1 Binary files /dev/null and b/lib/wine/fakedlls/d3dcompiler_40.dll differ diff --git a/lib/wine/fakedlls/d3dcompiler_41.dll b/lib/wine/fakedlls/d3dcompiler_41.dll new file mode 100644 index 0000000..40a4db3 Binary files /dev/null and b/lib/wine/fakedlls/d3dcompiler_41.dll differ diff --git a/lib/wine/fakedlls/d3dcompiler_42.dll b/lib/wine/fakedlls/d3dcompiler_42.dll new file mode 100644 index 0000000..d9aefb2 Binary files /dev/null and b/lib/wine/fakedlls/d3dcompiler_42.dll differ diff --git a/lib/wine/fakedlls/d3dcompiler_43.dll b/lib/wine/fakedlls/d3dcompiler_43.dll new file mode 100644 index 0000000..be13e25 Binary files /dev/null and b/lib/wine/fakedlls/d3dcompiler_43.dll differ diff --git a/lib/wine/fakedlls/d3dcompiler_46.dll b/lib/wine/fakedlls/d3dcompiler_46.dll new file mode 100644 index 0000000..7e8b00f Binary files /dev/null and b/lib/wine/fakedlls/d3dcompiler_46.dll differ diff --git a/lib/wine/fakedlls/d3dcompiler_47.dll b/lib/wine/fakedlls/d3dcompiler_47.dll new file mode 100644 index 0000000..f84b248 Binary files /dev/null and b/lib/wine/fakedlls/d3dcompiler_47.dll differ diff --git a/lib/wine/fakedlls/d3dim.dll b/lib/wine/fakedlls/d3dim.dll new file mode 100644 index 0000000..a34aa7f Binary files /dev/null and b/lib/wine/fakedlls/d3dim.dll differ diff --git a/lib/wine/fakedlls/d3drm.dll b/lib/wine/fakedlls/d3drm.dll new file mode 100644 index 0000000..a959f16 Binary files /dev/null and b/lib/wine/fakedlls/d3drm.dll differ diff --git a/lib/wine/fakedlls/d3dx10_33.dll b/lib/wine/fakedlls/d3dx10_33.dll new file mode 100644 index 0000000..e37b94b Binary files /dev/null and b/lib/wine/fakedlls/d3dx10_33.dll differ diff --git a/lib/wine/fakedlls/d3dx10_34.dll b/lib/wine/fakedlls/d3dx10_34.dll new file mode 100644 index 0000000..bd15289 Binary files /dev/null and b/lib/wine/fakedlls/d3dx10_34.dll differ diff --git a/lib/wine/fakedlls/d3dx10_35.dll b/lib/wine/fakedlls/d3dx10_35.dll new file mode 100644 index 0000000..83999e3 Binary files /dev/null and b/lib/wine/fakedlls/d3dx10_35.dll differ diff --git a/lib/wine/fakedlls/d3dx10_36.dll b/lib/wine/fakedlls/d3dx10_36.dll new file mode 100644 index 0000000..fa95643 Binary files /dev/null and b/lib/wine/fakedlls/d3dx10_36.dll differ diff --git a/lib/wine/fakedlls/d3dx10_37.dll b/lib/wine/fakedlls/d3dx10_37.dll new file mode 100644 index 0000000..1402f4c Binary files /dev/null and b/lib/wine/fakedlls/d3dx10_37.dll differ diff --git a/lib/wine/fakedlls/d3dx10_38.dll b/lib/wine/fakedlls/d3dx10_38.dll new file mode 100644 index 0000000..084e66b Binary files /dev/null and b/lib/wine/fakedlls/d3dx10_38.dll differ diff --git a/lib/wine/fakedlls/d3dx10_39.dll b/lib/wine/fakedlls/d3dx10_39.dll new file mode 100644 index 0000000..54aedf3 Binary files /dev/null and b/lib/wine/fakedlls/d3dx10_39.dll differ diff --git a/lib/wine/fakedlls/d3dx10_40.dll b/lib/wine/fakedlls/d3dx10_40.dll new file mode 100644 index 0000000..3bf6ab6 Binary files /dev/null and b/lib/wine/fakedlls/d3dx10_40.dll differ diff --git a/lib/wine/fakedlls/d3dx10_41.dll b/lib/wine/fakedlls/d3dx10_41.dll new file mode 100644 index 0000000..4be18cd Binary files /dev/null and b/lib/wine/fakedlls/d3dx10_41.dll differ diff --git a/lib/wine/fakedlls/d3dx10_42.dll b/lib/wine/fakedlls/d3dx10_42.dll new file mode 100644 index 0000000..5ed5f57 Binary files /dev/null and b/lib/wine/fakedlls/d3dx10_42.dll differ diff --git a/lib/wine/fakedlls/d3dx10_43.dll b/lib/wine/fakedlls/d3dx10_43.dll new file mode 100644 index 0000000..2fa93ba Binary files /dev/null and b/lib/wine/fakedlls/d3dx10_43.dll differ diff --git a/lib/wine/fakedlls/d3dx11_42.dll b/lib/wine/fakedlls/d3dx11_42.dll new file mode 100644 index 0000000..03d73b1 Binary files /dev/null and b/lib/wine/fakedlls/d3dx11_42.dll differ diff --git a/lib/wine/fakedlls/d3dx11_43.dll b/lib/wine/fakedlls/d3dx11_43.dll new file mode 100644 index 0000000..b2ce750 Binary files /dev/null and b/lib/wine/fakedlls/d3dx11_43.dll differ diff --git a/lib/wine/fakedlls/d3dx9_24.dll b/lib/wine/fakedlls/d3dx9_24.dll new file mode 100644 index 0000000..c3ca8c0 Binary files /dev/null and b/lib/wine/fakedlls/d3dx9_24.dll differ diff --git a/lib/wine/fakedlls/d3dx9_25.dll b/lib/wine/fakedlls/d3dx9_25.dll new file mode 100644 index 0000000..2c45c4c Binary files /dev/null and b/lib/wine/fakedlls/d3dx9_25.dll differ diff --git a/lib/wine/fakedlls/d3dx9_26.dll b/lib/wine/fakedlls/d3dx9_26.dll new file mode 100644 index 0000000..10085c6 Binary files /dev/null and b/lib/wine/fakedlls/d3dx9_26.dll differ diff --git a/lib/wine/fakedlls/d3dx9_27.dll b/lib/wine/fakedlls/d3dx9_27.dll new file mode 100644 index 0000000..7f5fa34 Binary files /dev/null and b/lib/wine/fakedlls/d3dx9_27.dll differ diff --git a/lib/wine/fakedlls/d3dx9_28.dll b/lib/wine/fakedlls/d3dx9_28.dll new file mode 100644 index 0000000..b46b187 Binary files /dev/null and b/lib/wine/fakedlls/d3dx9_28.dll differ diff --git a/lib/wine/fakedlls/d3dx9_29.dll b/lib/wine/fakedlls/d3dx9_29.dll new file mode 100644 index 0000000..11ebc1d Binary files /dev/null and b/lib/wine/fakedlls/d3dx9_29.dll differ diff --git a/lib/wine/fakedlls/d3dx9_30.dll b/lib/wine/fakedlls/d3dx9_30.dll new file mode 100644 index 0000000..a384424 Binary files /dev/null and b/lib/wine/fakedlls/d3dx9_30.dll differ diff --git a/lib/wine/fakedlls/d3dx9_31.dll b/lib/wine/fakedlls/d3dx9_31.dll new file mode 100644 index 0000000..0024dd9 Binary files /dev/null and b/lib/wine/fakedlls/d3dx9_31.dll differ diff --git a/lib/wine/fakedlls/d3dx9_32.dll b/lib/wine/fakedlls/d3dx9_32.dll new file mode 100644 index 0000000..65b7ba8 Binary files /dev/null and b/lib/wine/fakedlls/d3dx9_32.dll differ diff --git a/lib/wine/fakedlls/d3dx9_33.dll b/lib/wine/fakedlls/d3dx9_33.dll new file mode 100644 index 0000000..210bb82 Binary files /dev/null and b/lib/wine/fakedlls/d3dx9_33.dll differ diff --git a/lib/wine/fakedlls/d3dx9_34.dll b/lib/wine/fakedlls/d3dx9_34.dll new file mode 100644 index 0000000..e95b472 Binary files /dev/null and b/lib/wine/fakedlls/d3dx9_34.dll differ diff --git a/lib/wine/fakedlls/d3dx9_35.dll b/lib/wine/fakedlls/d3dx9_35.dll new file mode 100644 index 0000000..82309a0 Binary files /dev/null and b/lib/wine/fakedlls/d3dx9_35.dll differ diff --git a/lib/wine/fakedlls/d3dx9_36.dll b/lib/wine/fakedlls/d3dx9_36.dll new file mode 100644 index 0000000..a3f7f0b Binary files /dev/null and b/lib/wine/fakedlls/d3dx9_36.dll differ diff --git a/lib/wine/fakedlls/d3dx9_37.dll b/lib/wine/fakedlls/d3dx9_37.dll new file mode 100644 index 0000000..51af06d Binary files /dev/null and b/lib/wine/fakedlls/d3dx9_37.dll differ diff --git a/lib/wine/fakedlls/d3dx9_38.dll b/lib/wine/fakedlls/d3dx9_38.dll new file mode 100644 index 0000000..d293194 Binary files /dev/null and b/lib/wine/fakedlls/d3dx9_38.dll differ diff --git a/lib/wine/fakedlls/d3dx9_39.dll b/lib/wine/fakedlls/d3dx9_39.dll new file mode 100644 index 0000000..2c6ff98 Binary files /dev/null and b/lib/wine/fakedlls/d3dx9_39.dll differ diff --git a/lib/wine/fakedlls/d3dx9_40.dll b/lib/wine/fakedlls/d3dx9_40.dll new file mode 100644 index 0000000..3bdf1a8 Binary files /dev/null and b/lib/wine/fakedlls/d3dx9_40.dll differ diff --git a/lib/wine/fakedlls/d3dx9_41.dll b/lib/wine/fakedlls/d3dx9_41.dll new file mode 100644 index 0000000..8c6c658 Binary files /dev/null and b/lib/wine/fakedlls/d3dx9_41.dll differ diff --git a/lib/wine/fakedlls/d3dx9_42.dll b/lib/wine/fakedlls/d3dx9_42.dll new file mode 100644 index 0000000..41bd84d Binary files /dev/null and b/lib/wine/fakedlls/d3dx9_42.dll differ diff --git a/lib/wine/fakedlls/d3dx9_43.dll b/lib/wine/fakedlls/d3dx9_43.dll new file mode 100644 index 0000000..817c963 Binary files /dev/null and b/lib/wine/fakedlls/d3dx9_43.dll differ diff --git a/lib/wine/fakedlls/d3dxof.dll b/lib/wine/fakedlls/d3dxof.dll new file mode 100644 index 0000000..91402c8 Binary files /dev/null and b/lib/wine/fakedlls/d3dxof.dll differ diff --git a/lib/wine/fakedlls/davclnt.dll b/lib/wine/fakedlls/davclnt.dll new file mode 100644 index 0000000..8a49dbf Binary files /dev/null and b/lib/wine/fakedlls/davclnt.dll differ diff --git a/lib/wine/fakedlls/dbgeng.dll b/lib/wine/fakedlls/dbgeng.dll new file mode 100644 index 0000000..68e8b2d Binary files /dev/null and b/lib/wine/fakedlls/dbgeng.dll differ diff --git a/lib/wine/fakedlls/dbghelp.dll b/lib/wine/fakedlls/dbghelp.dll new file mode 100644 index 0000000..a6b9feb Binary files /dev/null and b/lib/wine/fakedlls/dbghelp.dll differ diff --git a/lib/wine/fakedlls/dciman32.dll b/lib/wine/fakedlls/dciman32.dll new file mode 100644 index 0000000..cbd1098 Binary files /dev/null and b/lib/wine/fakedlls/dciman32.dll differ diff --git a/lib/wine/fakedlls/ddeml.dll16 b/lib/wine/fakedlls/ddeml.dll16 new file mode 100644 index 0000000..2b7fa3d Binary files /dev/null and b/lib/wine/fakedlls/ddeml.dll16 differ diff --git a/lib/wine/fakedlls/ddraw.dll b/lib/wine/fakedlls/ddraw.dll new file mode 100644 index 0000000..4ea2b1e Binary files /dev/null and b/lib/wine/fakedlls/ddraw.dll differ diff --git a/lib/wine/fakedlls/ddrawex.dll b/lib/wine/fakedlls/ddrawex.dll new file mode 100644 index 0000000..868ee12 Binary files /dev/null and b/lib/wine/fakedlls/ddrawex.dll differ diff --git a/lib/wine/fakedlls/devenum.dll b/lib/wine/fakedlls/devenum.dll new file mode 100644 index 0000000..a2d20f3 Binary files /dev/null and b/lib/wine/fakedlls/devenum.dll differ diff --git a/lib/wine/fakedlls/dhcpcsvc.dll b/lib/wine/fakedlls/dhcpcsvc.dll new file mode 100644 index 0000000..8754396 Binary files /dev/null and b/lib/wine/fakedlls/dhcpcsvc.dll differ diff --git a/lib/wine/fakedlls/dhtmled.ocx b/lib/wine/fakedlls/dhtmled.ocx new file mode 100644 index 0000000..1d1504c Binary files /dev/null and b/lib/wine/fakedlls/dhtmled.ocx differ diff --git a/lib/wine/fakedlls/difxapi.dll b/lib/wine/fakedlls/difxapi.dll new file mode 100644 index 0000000..dde4521 Binary files /dev/null and b/lib/wine/fakedlls/difxapi.dll differ diff --git a/lib/wine/fakedlls/dinput.dll b/lib/wine/fakedlls/dinput.dll new file mode 100644 index 0000000..08dfb6d Binary files /dev/null and b/lib/wine/fakedlls/dinput.dll differ diff --git a/lib/wine/fakedlls/dinput8.dll b/lib/wine/fakedlls/dinput8.dll new file mode 100644 index 0000000..ccaa6c6 Binary files /dev/null and b/lib/wine/fakedlls/dinput8.dll differ diff --git a/lib/wine/fakedlls/dism.exe b/lib/wine/fakedlls/dism.exe new file mode 100644 index 0000000..448bbff Binary files /dev/null and b/lib/wine/fakedlls/dism.exe differ diff --git a/lib/wine/fakedlls/dispdib.dll16 b/lib/wine/fakedlls/dispdib.dll16 new file mode 100644 index 0000000..a15b671 Binary files /dev/null and b/lib/wine/fakedlls/dispdib.dll16 differ diff --git a/lib/wine/fakedlls/dispex.dll b/lib/wine/fakedlls/dispex.dll new file mode 100644 index 0000000..332aff5 Binary files /dev/null and b/lib/wine/fakedlls/dispex.dll differ diff --git a/lib/wine/fakedlls/display.drv16 b/lib/wine/fakedlls/display.drv16 new file mode 100644 index 0000000..402682e Binary files /dev/null and b/lib/wine/fakedlls/display.drv16 differ diff --git a/lib/wine/fakedlls/dmband.dll b/lib/wine/fakedlls/dmband.dll new file mode 100644 index 0000000..aac3f88 Binary files /dev/null and b/lib/wine/fakedlls/dmband.dll differ diff --git a/lib/wine/fakedlls/dmcompos.dll b/lib/wine/fakedlls/dmcompos.dll new file mode 100644 index 0000000..6449c58 Binary files /dev/null and b/lib/wine/fakedlls/dmcompos.dll differ diff --git a/lib/wine/fakedlls/dmime.dll b/lib/wine/fakedlls/dmime.dll new file mode 100644 index 0000000..6fb05b1 Binary files /dev/null and b/lib/wine/fakedlls/dmime.dll differ diff --git a/lib/wine/fakedlls/dmloader.dll b/lib/wine/fakedlls/dmloader.dll new file mode 100644 index 0000000..99594fa Binary files /dev/null and b/lib/wine/fakedlls/dmloader.dll differ diff --git a/lib/wine/fakedlls/dmscript.dll b/lib/wine/fakedlls/dmscript.dll new file mode 100644 index 0000000..2c4f29d Binary files /dev/null and b/lib/wine/fakedlls/dmscript.dll differ diff --git a/lib/wine/fakedlls/dmstyle.dll b/lib/wine/fakedlls/dmstyle.dll new file mode 100644 index 0000000..5cb25fa Binary files /dev/null and b/lib/wine/fakedlls/dmstyle.dll differ diff --git a/lib/wine/fakedlls/dmsynth.dll b/lib/wine/fakedlls/dmsynth.dll new file mode 100644 index 0000000..78ca630 Binary files /dev/null and b/lib/wine/fakedlls/dmsynth.dll differ diff --git a/lib/wine/fakedlls/dmusic.dll b/lib/wine/fakedlls/dmusic.dll new file mode 100644 index 0000000..687ecb6 Binary files /dev/null and b/lib/wine/fakedlls/dmusic.dll differ diff --git a/lib/wine/fakedlls/dmusic32.dll b/lib/wine/fakedlls/dmusic32.dll new file mode 100644 index 0000000..c0b1dd3 Binary files /dev/null and b/lib/wine/fakedlls/dmusic32.dll differ diff --git a/lib/wine/fakedlls/dnsapi.dll b/lib/wine/fakedlls/dnsapi.dll new file mode 100644 index 0000000..402e717 Binary files /dev/null and b/lib/wine/fakedlls/dnsapi.dll differ diff --git a/lib/wine/fakedlls/dplay.dll b/lib/wine/fakedlls/dplay.dll new file mode 100644 index 0000000..a9fd7a1 Binary files /dev/null and b/lib/wine/fakedlls/dplay.dll differ diff --git a/lib/wine/fakedlls/dplayx.dll b/lib/wine/fakedlls/dplayx.dll new file mode 100644 index 0000000..9379908 Binary files /dev/null and b/lib/wine/fakedlls/dplayx.dll differ diff --git a/lib/wine/fakedlls/dpnaddr.dll b/lib/wine/fakedlls/dpnaddr.dll new file mode 100644 index 0000000..c468a70 Binary files /dev/null and b/lib/wine/fakedlls/dpnaddr.dll differ diff --git a/lib/wine/fakedlls/dpnet.dll b/lib/wine/fakedlls/dpnet.dll new file mode 100644 index 0000000..6d10c5e Binary files /dev/null and b/lib/wine/fakedlls/dpnet.dll differ diff --git a/lib/wine/fakedlls/dpnhpast.dll b/lib/wine/fakedlls/dpnhpast.dll new file mode 100644 index 0000000..5342931 Binary files /dev/null and b/lib/wine/fakedlls/dpnhpast.dll differ diff --git a/lib/wine/fakedlls/dpnlobby.dll b/lib/wine/fakedlls/dpnlobby.dll new file mode 100644 index 0000000..52a3462 Binary files /dev/null and b/lib/wine/fakedlls/dpnlobby.dll differ diff --git a/lib/wine/fakedlls/dpnsvr.exe b/lib/wine/fakedlls/dpnsvr.exe new file mode 100644 index 0000000..448bbff Binary files /dev/null and b/lib/wine/fakedlls/dpnsvr.exe differ diff --git a/lib/wine/fakedlls/dpvoice.dll b/lib/wine/fakedlls/dpvoice.dll new file mode 100644 index 0000000..d59cb64 Binary files /dev/null and b/lib/wine/fakedlls/dpvoice.dll differ diff --git a/lib/wine/fakedlls/dpwsockx.dll b/lib/wine/fakedlls/dpwsockx.dll new file mode 100644 index 0000000..68db78e Binary files /dev/null and b/lib/wine/fakedlls/dpwsockx.dll differ diff --git a/lib/wine/fakedlls/drmclien.dll b/lib/wine/fakedlls/drmclien.dll new file mode 100644 index 0000000..2d70fdb Binary files /dev/null and b/lib/wine/fakedlls/drmclien.dll differ diff --git a/lib/wine/fakedlls/dsound.dll b/lib/wine/fakedlls/dsound.dll new file mode 100644 index 0000000..0879de4 Binary files /dev/null and b/lib/wine/fakedlls/dsound.dll differ diff --git a/lib/wine/fakedlls/dsquery.dll b/lib/wine/fakedlls/dsquery.dll new file mode 100644 index 0000000..f9df297 Binary files /dev/null and b/lib/wine/fakedlls/dsquery.dll differ diff --git a/lib/wine/fakedlls/dssenh.dll b/lib/wine/fakedlls/dssenh.dll new file mode 100644 index 0000000..695554e Binary files /dev/null and b/lib/wine/fakedlls/dssenh.dll differ diff --git a/lib/wine/fakedlls/dswave.dll b/lib/wine/fakedlls/dswave.dll new file mode 100644 index 0000000..fc3d9df Binary files /dev/null and b/lib/wine/fakedlls/dswave.dll differ diff --git a/lib/wine/fakedlls/dwmapi.dll b/lib/wine/fakedlls/dwmapi.dll new file mode 100644 index 0000000..c43a281 Binary files /dev/null and b/lib/wine/fakedlls/dwmapi.dll differ diff --git a/lib/wine/fakedlls/dwrite.dll b/lib/wine/fakedlls/dwrite.dll new file mode 100644 index 0000000..282c059 Binary files /dev/null and b/lib/wine/fakedlls/dwrite.dll differ diff --git a/lib/wine/fakedlls/dx8vb.dll b/lib/wine/fakedlls/dx8vb.dll new file mode 100644 index 0000000..407282e Binary files /dev/null and b/lib/wine/fakedlls/dx8vb.dll differ diff --git a/lib/wine/fakedlls/dxdiag.exe b/lib/wine/fakedlls/dxdiag.exe new file mode 100644 index 0000000..f622d91 Binary files /dev/null and b/lib/wine/fakedlls/dxdiag.exe differ diff --git a/lib/wine/fakedlls/dxdiagn.dll b/lib/wine/fakedlls/dxdiagn.dll new file mode 100644 index 0000000..d95fdc5 Binary files /dev/null and b/lib/wine/fakedlls/dxdiagn.dll differ diff --git a/lib/wine/fakedlls/dxgi.dll b/lib/wine/fakedlls/dxgi.dll new file mode 100644 index 0000000..d8b8fee Binary files /dev/null and b/lib/wine/fakedlls/dxgi.dll differ diff --git a/lib/wine/fakedlls/dxgkrnl.sys b/lib/wine/fakedlls/dxgkrnl.sys new file mode 100644 index 0000000..9fa4489 Binary files /dev/null and b/lib/wine/fakedlls/dxgkrnl.sys differ diff --git a/lib/wine/fakedlls/dxgmms1.sys b/lib/wine/fakedlls/dxgmms1.sys new file mode 100644 index 0000000..9fa4489 Binary files /dev/null and b/lib/wine/fakedlls/dxgmms1.sys differ diff --git a/lib/wine/fakedlls/dxva2.dll b/lib/wine/fakedlls/dxva2.dll new file mode 100644 index 0000000..158dce0 Binary files /dev/null and b/lib/wine/fakedlls/dxva2.dll differ diff --git a/lib/wine/fakedlls/eject.exe b/lib/wine/fakedlls/eject.exe new file mode 100644 index 0000000..448bbff Binary files /dev/null and b/lib/wine/fakedlls/eject.exe differ diff --git a/lib/wine/fakedlls/esent.dll b/lib/wine/fakedlls/esent.dll new file mode 100644 index 0000000..7bafb4a Binary files /dev/null and b/lib/wine/fakedlls/esent.dll differ diff --git a/lib/wine/fakedlls/evr.dll b/lib/wine/fakedlls/evr.dll new file mode 100644 index 0000000..4471775 Binary files /dev/null and b/lib/wine/fakedlls/evr.dll differ diff --git a/lib/wine/fakedlls/expand.exe b/lib/wine/fakedlls/expand.exe new file mode 100644 index 0000000..448bbff Binary files /dev/null and b/lib/wine/fakedlls/expand.exe differ diff --git a/lib/wine/fakedlls/explorer.exe b/lib/wine/fakedlls/explorer.exe new file mode 100644 index 0000000..d211cd0 Binary files /dev/null and b/lib/wine/fakedlls/explorer.exe differ diff --git a/lib/wine/fakedlls/explorerframe.dll b/lib/wine/fakedlls/explorerframe.dll new file mode 100644 index 0000000..17bb7b8 Binary files /dev/null and b/lib/wine/fakedlls/explorerframe.dll differ diff --git a/lib/wine/fakedlls/ext-ms-win-appmodel-usercontext-l1-1-0.dll b/lib/wine/fakedlls/ext-ms-win-appmodel-usercontext-l1-1-0.dll new file mode 100644 index 0000000..7b46345 Binary files /dev/null and b/lib/wine/fakedlls/ext-ms-win-appmodel-usercontext-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/ext-ms-win-authz-context-l1-1-0.dll b/lib/wine/fakedlls/ext-ms-win-authz-context-l1-1-0.dll new file mode 100644 index 0000000..0000b8b Binary files /dev/null and b/lib/wine/fakedlls/ext-ms-win-authz-context-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/ext-ms-win-domainjoin-netjoin-l1-1-0.dll b/lib/wine/fakedlls/ext-ms-win-domainjoin-netjoin-l1-1-0.dll new file mode 100644 index 0000000..13f8e62 Binary files /dev/null and b/lib/wine/fakedlls/ext-ms-win-domainjoin-netjoin-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/ext-ms-win-dwmapi-ext-l1-1-0.dll b/lib/wine/fakedlls/ext-ms-win-dwmapi-ext-l1-1-0.dll new file mode 100644 index 0000000..0bb6131 Binary files /dev/null and b/lib/wine/fakedlls/ext-ms-win-dwmapi-ext-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/ext-ms-win-gdi-dc-create-l1-1-0.dll b/lib/wine/fakedlls/ext-ms-win-gdi-dc-create-l1-1-0.dll new file mode 100644 index 0000000..f5659af Binary files /dev/null and b/lib/wine/fakedlls/ext-ms-win-gdi-dc-create-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/ext-ms-win-gdi-dc-create-l1-1-1.dll b/lib/wine/fakedlls/ext-ms-win-gdi-dc-create-l1-1-1.dll new file mode 100644 index 0000000..69afadc Binary files /dev/null and b/lib/wine/fakedlls/ext-ms-win-gdi-dc-create-l1-1-1.dll differ diff --git a/lib/wine/fakedlls/ext-ms-win-gdi-dc-l1-2-0.dll b/lib/wine/fakedlls/ext-ms-win-gdi-dc-l1-2-0.dll new file mode 100644 index 0000000..7e3ba9e Binary files /dev/null and b/lib/wine/fakedlls/ext-ms-win-gdi-dc-l1-2-0.dll differ diff --git a/lib/wine/fakedlls/ext-ms-win-gdi-devcaps-l1-1-0.dll b/lib/wine/fakedlls/ext-ms-win-gdi-devcaps-l1-1-0.dll new file mode 100644 index 0000000..46adb33 Binary files /dev/null and b/lib/wine/fakedlls/ext-ms-win-gdi-devcaps-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/ext-ms-win-gdi-draw-l1-1-0.dll b/lib/wine/fakedlls/ext-ms-win-gdi-draw-l1-1-0.dll new file mode 100644 index 0000000..afdad7a Binary files /dev/null and b/lib/wine/fakedlls/ext-ms-win-gdi-draw-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/ext-ms-win-gdi-draw-l1-1-1.dll b/lib/wine/fakedlls/ext-ms-win-gdi-draw-l1-1-1.dll new file mode 100644 index 0000000..e7dd7c5 Binary files /dev/null and b/lib/wine/fakedlls/ext-ms-win-gdi-draw-l1-1-1.dll differ diff --git a/lib/wine/fakedlls/ext-ms-win-gdi-font-l1-1-0.dll b/lib/wine/fakedlls/ext-ms-win-gdi-font-l1-1-0.dll new file mode 100644 index 0000000..1075df3 Binary files /dev/null and b/lib/wine/fakedlls/ext-ms-win-gdi-font-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/ext-ms-win-gdi-font-l1-1-1.dll b/lib/wine/fakedlls/ext-ms-win-gdi-font-l1-1-1.dll new file mode 100644 index 0000000..11cd360 Binary files /dev/null and b/lib/wine/fakedlls/ext-ms-win-gdi-font-l1-1-1.dll differ diff --git a/lib/wine/fakedlls/ext-ms-win-gdi-render-l1-1-0.dll b/lib/wine/fakedlls/ext-ms-win-gdi-render-l1-1-0.dll new file mode 100644 index 0000000..5717141 Binary files /dev/null and b/lib/wine/fakedlls/ext-ms-win-gdi-render-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/ext-ms-win-kernel32-package-current-l1-1-0.dll b/lib/wine/fakedlls/ext-ms-win-kernel32-package-current-l1-1-0.dll new file mode 100644 index 0000000..75c91b5 Binary files /dev/null and b/lib/wine/fakedlls/ext-ms-win-kernel32-package-current-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/ext-ms-win-kernel32-package-l1-1-1.dll b/lib/wine/fakedlls/ext-ms-win-kernel32-package-l1-1-1.dll new file mode 100644 index 0000000..0c36d52 Binary files /dev/null and b/lib/wine/fakedlls/ext-ms-win-kernel32-package-l1-1-1.dll differ diff --git a/lib/wine/fakedlls/ext-ms-win-ntuser-dialogbox-l1-1-0.dll b/lib/wine/fakedlls/ext-ms-win-ntuser-dialogbox-l1-1-0.dll new file mode 100644 index 0000000..842416f Binary files /dev/null and b/lib/wine/fakedlls/ext-ms-win-ntuser-dialogbox-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/ext-ms-win-ntuser-draw-l1-1-0.dll b/lib/wine/fakedlls/ext-ms-win-ntuser-draw-l1-1-0.dll new file mode 100644 index 0000000..9ead90b Binary files /dev/null and b/lib/wine/fakedlls/ext-ms-win-ntuser-draw-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/ext-ms-win-ntuser-gui-l1-1-0.dll b/lib/wine/fakedlls/ext-ms-win-ntuser-gui-l1-1-0.dll new file mode 100644 index 0000000..1e85bca Binary files /dev/null and b/lib/wine/fakedlls/ext-ms-win-ntuser-gui-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/ext-ms-win-ntuser-gui-l1-3-0.dll b/lib/wine/fakedlls/ext-ms-win-ntuser-gui-l1-3-0.dll new file mode 100644 index 0000000..78e8533 Binary files /dev/null and b/lib/wine/fakedlls/ext-ms-win-ntuser-gui-l1-3-0.dll differ diff --git a/lib/wine/fakedlls/ext-ms-win-ntuser-keyboard-l1-3-0.dll b/lib/wine/fakedlls/ext-ms-win-ntuser-keyboard-l1-3-0.dll new file mode 100644 index 0000000..c88b720 Binary files /dev/null and b/lib/wine/fakedlls/ext-ms-win-ntuser-keyboard-l1-3-0.dll differ diff --git a/lib/wine/fakedlls/ext-ms-win-ntuser-message-l1-1-0.dll b/lib/wine/fakedlls/ext-ms-win-ntuser-message-l1-1-0.dll new file mode 100644 index 0000000..6463a3b Binary files /dev/null and b/lib/wine/fakedlls/ext-ms-win-ntuser-message-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/ext-ms-win-ntuser-message-l1-1-1.dll b/lib/wine/fakedlls/ext-ms-win-ntuser-message-l1-1-1.dll new file mode 100644 index 0000000..f7cb552 Binary files /dev/null and b/lib/wine/fakedlls/ext-ms-win-ntuser-message-l1-1-1.dll differ diff --git a/lib/wine/fakedlls/ext-ms-win-ntuser-misc-l1-1-0.dll b/lib/wine/fakedlls/ext-ms-win-ntuser-misc-l1-1-0.dll new file mode 100644 index 0000000..d63f076 Binary files /dev/null and b/lib/wine/fakedlls/ext-ms-win-ntuser-misc-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/ext-ms-win-ntuser-misc-l1-2-0.dll b/lib/wine/fakedlls/ext-ms-win-ntuser-misc-l1-2-0.dll new file mode 100644 index 0000000..041aff5 Binary files /dev/null and b/lib/wine/fakedlls/ext-ms-win-ntuser-misc-l1-2-0.dll differ diff --git a/lib/wine/fakedlls/ext-ms-win-ntuser-misc-l1-5-1.dll b/lib/wine/fakedlls/ext-ms-win-ntuser-misc-l1-5-1.dll new file mode 100644 index 0000000..6f60c95 Binary files /dev/null and b/lib/wine/fakedlls/ext-ms-win-ntuser-misc-l1-5-1.dll differ diff --git a/lib/wine/fakedlls/ext-ms-win-ntuser-mouse-l1-1-0.dll b/lib/wine/fakedlls/ext-ms-win-ntuser-mouse-l1-1-0.dll new file mode 100644 index 0000000..ecea175 Binary files /dev/null and b/lib/wine/fakedlls/ext-ms-win-ntuser-mouse-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/ext-ms-win-ntuser-private-l1-1-1.dll b/lib/wine/fakedlls/ext-ms-win-ntuser-private-l1-1-1.dll new file mode 100644 index 0000000..3cd1ba3 Binary files /dev/null and b/lib/wine/fakedlls/ext-ms-win-ntuser-private-l1-1-1.dll differ diff --git a/lib/wine/fakedlls/ext-ms-win-ntuser-private-l1-3-1.dll b/lib/wine/fakedlls/ext-ms-win-ntuser-private-l1-3-1.dll new file mode 100644 index 0000000..ebb3964 Binary files /dev/null and b/lib/wine/fakedlls/ext-ms-win-ntuser-private-l1-3-1.dll differ diff --git a/lib/wine/fakedlls/ext-ms-win-ntuser-rectangle-ext-l1-1-0.dll b/lib/wine/fakedlls/ext-ms-win-ntuser-rectangle-ext-l1-1-0.dll new file mode 100644 index 0000000..0d80526 Binary files /dev/null and b/lib/wine/fakedlls/ext-ms-win-ntuser-rectangle-ext-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/ext-ms-win-ntuser-uicontext-ext-l1-1-0.dll b/lib/wine/fakedlls/ext-ms-win-ntuser-uicontext-ext-l1-1-0.dll new file mode 100644 index 0000000..7c1868d Binary files /dev/null and b/lib/wine/fakedlls/ext-ms-win-ntuser-uicontext-ext-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/ext-ms-win-ntuser-window-l1-1-0.dll b/lib/wine/fakedlls/ext-ms-win-ntuser-window-l1-1-0.dll new file mode 100644 index 0000000..70b4890 Binary files /dev/null and b/lib/wine/fakedlls/ext-ms-win-ntuser-window-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/ext-ms-win-ntuser-window-l1-1-1.dll b/lib/wine/fakedlls/ext-ms-win-ntuser-window-l1-1-1.dll new file mode 100644 index 0000000..589f5e0 Binary files /dev/null and b/lib/wine/fakedlls/ext-ms-win-ntuser-window-l1-1-1.dll differ diff --git a/lib/wine/fakedlls/ext-ms-win-ntuser-window-l1-1-4.dll b/lib/wine/fakedlls/ext-ms-win-ntuser-window-l1-1-4.dll new file mode 100644 index 0000000..1a28b33 Binary files /dev/null and b/lib/wine/fakedlls/ext-ms-win-ntuser-window-l1-1-4.dll differ diff --git a/lib/wine/fakedlls/ext-ms-win-ntuser-windowclass-l1-1-0.dll b/lib/wine/fakedlls/ext-ms-win-ntuser-windowclass-l1-1-0.dll new file mode 100644 index 0000000..f863a24 Binary files /dev/null and b/lib/wine/fakedlls/ext-ms-win-ntuser-windowclass-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/ext-ms-win-ntuser-windowclass-l1-1-1.dll b/lib/wine/fakedlls/ext-ms-win-ntuser-windowclass-l1-1-1.dll new file mode 100644 index 0000000..f79f447 Binary files /dev/null and b/lib/wine/fakedlls/ext-ms-win-ntuser-windowclass-l1-1-1.dll differ diff --git a/lib/wine/fakedlls/ext-ms-win-oleacc-l1-1-0.dll b/lib/wine/fakedlls/ext-ms-win-oleacc-l1-1-0.dll new file mode 100644 index 0000000..d5f7983 Binary files /dev/null and b/lib/wine/fakedlls/ext-ms-win-oleacc-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/ext-ms-win-ras-rasapi32-l1-1-0.dll b/lib/wine/fakedlls/ext-ms-win-ras-rasapi32-l1-1-0.dll new file mode 100644 index 0000000..95ae884 Binary files /dev/null and b/lib/wine/fakedlls/ext-ms-win-ras-rasapi32-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/ext-ms-win-rtcore-gdi-devcaps-l1-1-0.dll b/lib/wine/fakedlls/ext-ms-win-rtcore-gdi-devcaps-l1-1-0.dll new file mode 100644 index 0000000..8e6f5c3 Binary files /dev/null and b/lib/wine/fakedlls/ext-ms-win-rtcore-gdi-devcaps-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/ext-ms-win-rtcore-gdi-object-l1-1-0.dll b/lib/wine/fakedlls/ext-ms-win-rtcore-gdi-object-l1-1-0.dll new file mode 100644 index 0000000..8a62472 Binary files /dev/null and b/lib/wine/fakedlls/ext-ms-win-rtcore-gdi-object-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/ext-ms-win-rtcore-gdi-rgn-l1-1-0.dll b/lib/wine/fakedlls/ext-ms-win-rtcore-gdi-rgn-l1-1-0.dll new file mode 100644 index 0000000..33d99cd Binary files /dev/null and b/lib/wine/fakedlls/ext-ms-win-rtcore-gdi-rgn-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/ext-ms-win-rtcore-ntuser-cursor-l1-1-0.dll b/lib/wine/fakedlls/ext-ms-win-rtcore-ntuser-cursor-l1-1-0.dll new file mode 100644 index 0000000..7ad05cd Binary files /dev/null and b/lib/wine/fakedlls/ext-ms-win-rtcore-ntuser-cursor-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/ext-ms-win-rtcore-ntuser-dc-access-l1-1-0.dll b/lib/wine/fakedlls/ext-ms-win-rtcore-ntuser-dc-access-l1-1-0.dll new file mode 100644 index 0000000..13ee99e Binary files /dev/null and b/lib/wine/fakedlls/ext-ms-win-rtcore-ntuser-dc-access-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/ext-ms-win-rtcore-ntuser-dpi-l1-1-0.dll b/lib/wine/fakedlls/ext-ms-win-rtcore-ntuser-dpi-l1-1-0.dll new file mode 100644 index 0000000..5423411 Binary files /dev/null and b/lib/wine/fakedlls/ext-ms-win-rtcore-ntuser-dpi-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/ext-ms-win-rtcore-ntuser-dpi-l1-2-0.dll b/lib/wine/fakedlls/ext-ms-win-rtcore-ntuser-dpi-l1-2-0.dll new file mode 100644 index 0000000..c541c1a Binary files /dev/null and b/lib/wine/fakedlls/ext-ms-win-rtcore-ntuser-dpi-l1-2-0.dll differ diff --git a/lib/wine/fakedlls/ext-ms-win-rtcore-ntuser-rawinput-l1-1-0.dll b/lib/wine/fakedlls/ext-ms-win-rtcore-ntuser-rawinput-l1-1-0.dll new file mode 100644 index 0000000..1f39d11 Binary files /dev/null and b/lib/wine/fakedlls/ext-ms-win-rtcore-ntuser-rawinput-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/ext-ms-win-rtcore-ntuser-syscolors-l1-1-0.dll b/lib/wine/fakedlls/ext-ms-win-rtcore-ntuser-syscolors-l1-1-0.dll new file mode 100644 index 0000000..d5d36e7 Binary files /dev/null and b/lib/wine/fakedlls/ext-ms-win-rtcore-ntuser-syscolors-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/ext-ms-win-rtcore-ntuser-sysparams-l1-1-0.dll b/lib/wine/fakedlls/ext-ms-win-rtcore-ntuser-sysparams-l1-1-0.dll new file mode 100644 index 0000000..679ad58 Binary files /dev/null and b/lib/wine/fakedlls/ext-ms-win-rtcore-ntuser-sysparams-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/ext-ms-win-security-credui-l1-1-0.dll b/lib/wine/fakedlls/ext-ms-win-security-credui-l1-1-0.dll new file mode 100644 index 0000000..2e6d68e Binary files /dev/null and b/lib/wine/fakedlls/ext-ms-win-security-credui-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/ext-ms-win-security-cryptui-l1-1-0.dll b/lib/wine/fakedlls/ext-ms-win-security-cryptui-l1-1-0.dll new file mode 100644 index 0000000..831c88b Binary files /dev/null and b/lib/wine/fakedlls/ext-ms-win-security-cryptui-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/ext-ms-win-uxtheme-themes-l1-1-0.dll b/lib/wine/fakedlls/ext-ms-win-uxtheme-themes-l1-1-0.dll new file mode 100644 index 0000000..4b2995a Binary files /dev/null and b/lib/wine/fakedlls/ext-ms-win-uxtheme-themes-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/ext-ms-win-xaml-pal-l1-1-0.dll b/lib/wine/fakedlls/ext-ms-win-xaml-pal-l1-1-0.dll new file mode 100644 index 0000000..25e37b3 Binary files /dev/null and b/lib/wine/fakedlls/ext-ms-win-xaml-pal-l1-1-0.dll differ diff --git a/lib/wine/fakedlls/extrac32.exe b/lib/wine/fakedlls/extrac32.exe new file mode 100644 index 0000000..532d4a1 Binary files /dev/null and b/lib/wine/fakedlls/extrac32.exe differ diff --git a/lib/wine/fakedlls/faultrep.dll b/lib/wine/fakedlls/faultrep.dll new file mode 100644 index 0000000..d1627a1 Binary files /dev/null and b/lib/wine/fakedlls/faultrep.dll differ diff --git a/lib/wine/fakedlls/fc.exe b/lib/wine/fakedlls/fc.exe new file mode 100644 index 0000000..448bbff Binary files /dev/null and b/lib/wine/fakedlls/fc.exe differ diff --git a/lib/wine/fakedlls/feclient.dll b/lib/wine/fakedlls/feclient.dll new file mode 100644 index 0000000..a10409b Binary files /dev/null and b/lib/wine/fakedlls/feclient.dll differ diff --git a/lib/wine/fakedlls/find.exe b/lib/wine/fakedlls/find.exe new file mode 100644 index 0000000..448bbff Binary files /dev/null and b/lib/wine/fakedlls/find.exe differ diff --git a/lib/wine/fakedlls/findstr.exe b/lib/wine/fakedlls/findstr.exe new file mode 100644 index 0000000..448bbff Binary files /dev/null and b/lib/wine/fakedlls/findstr.exe differ diff --git a/lib/wine/fakedlls/fltlib.dll b/lib/wine/fakedlls/fltlib.dll new file mode 100644 index 0000000..fc7db9a Binary files /dev/null and b/lib/wine/fakedlls/fltlib.dll differ diff --git a/lib/wine/fakedlls/fltmgr.sys b/lib/wine/fakedlls/fltmgr.sys new file mode 100644 index 0000000..9fa4489 Binary files /dev/null and b/lib/wine/fakedlls/fltmgr.sys differ diff --git a/lib/wine/fakedlls/fntcache.dll b/lib/wine/fakedlls/fntcache.dll new file mode 100644 index 0000000..6c1a883 Binary files /dev/null and b/lib/wine/fakedlls/fntcache.dll differ diff --git a/lib/wine/fakedlls/fontsub.dll b/lib/wine/fakedlls/fontsub.dll new file mode 100644 index 0000000..4afa0b6 Binary files /dev/null and b/lib/wine/fakedlls/fontsub.dll differ diff --git a/lib/wine/fakedlls/fsutil.exe b/lib/wine/fakedlls/fsutil.exe new file mode 100644 index 0000000..a326927 Binary files /dev/null and b/lib/wine/fakedlls/fsutil.exe differ diff --git a/lib/wine/fakedlls/fusion.dll b/lib/wine/fakedlls/fusion.dll new file mode 100644 index 0000000..87d0ecb Binary files /dev/null and b/lib/wine/fakedlls/fusion.dll differ diff --git a/lib/wine/fakedlls/fwpuclnt.dll b/lib/wine/fakedlls/fwpuclnt.dll new file mode 100644 index 0000000..f7594fb Binary files /dev/null and b/lib/wine/fakedlls/fwpuclnt.dll differ diff --git a/lib/wine/fakedlls/gameux.dll b/lib/wine/fakedlls/gameux.dll new file mode 100644 index 0000000..ab17cd8 Binary files /dev/null and b/lib/wine/fakedlls/gameux.dll differ diff --git a/lib/wine/fakedlls/gdi.exe16 b/lib/wine/fakedlls/gdi.exe16 new file mode 100644 index 0000000..8b7fdbd Binary files /dev/null and b/lib/wine/fakedlls/gdi.exe16 differ diff --git a/lib/wine/fakedlls/gdi32.dll b/lib/wine/fakedlls/gdi32.dll new file mode 100644 index 0000000..2a8934e Binary files /dev/null and b/lib/wine/fakedlls/gdi32.dll differ diff --git a/lib/wine/fakedlls/gdiplus.dll b/lib/wine/fakedlls/gdiplus.dll new file mode 100644 index 0000000..dbf854e Binary files /dev/null and b/lib/wine/fakedlls/gdiplus.dll differ diff --git a/lib/wine/fakedlls/glu32.dll b/lib/wine/fakedlls/glu32.dll new file mode 100644 index 0000000..026c22f Binary files /dev/null and b/lib/wine/fakedlls/glu32.dll differ diff --git a/lib/wine/fakedlls/gphoto2.ds b/lib/wine/fakedlls/gphoto2.ds new file mode 100644 index 0000000..1306f39 Binary files /dev/null and b/lib/wine/fakedlls/gphoto2.ds differ diff --git a/lib/wine/fakedlls/gpkcsp.dll b/lib/wine/fakedlls/gpkcsp.dll new file mode 100644 index 0000000..ca40563 Binary files /dev/null and b/lib/wine/fakedlls/gpkcsp.dll differ diff --git a/lib/wine/fakedlls/hal.dll b/lib/wine/fakedlls/hal.dll new file mode 100644 index 0000000..8e87db4 Binary files /dev/null and b/lib/wine/fakedlls/hal.dll differ diff --git a/lib/wine/fakedlls/hh.exe b/lib/wine/fakedlls/hh.exe new file mode 100644 index 0000000..7fb5175 Binary files /dev/null and b/lib/wine/fakedlls/hh.exe differ diff --git a/lib/wine/fakedlls/hhctrl.ocx b/lib/wine/fakedlls/hhctrl.ocx new file mode 100644 index 0000000..05cbe57 Binary files /dev/null and b/lib/wine/fakedlls/hhctrl.ocx differ diff --git a/lib/wine/fakedlls/hid.dll b/lib/wine/fakedlls/hid.dll new file mode 100644 index 0000000..75a5d2d Binary files /dev/null and b/lib/wine/fakedlls/hid.dll differ diff --git a/lib/wine/fakedlls/hidclass.sys b/lib/wine/fakedlls/hidclass.sys new file mode 100644 index 0000000..27a5465 Binary files /dev/null and b/lib/wine/fakedlls/hidclass.sys differ diff --git a/lib/wine/fakedlls/hlink.dll b/lib/wine/fakedlls/hlink.dll new file mode 100644 index 0000000..080275c Binary files /dev/null and b/lib/wine/fakedlls/hlink.dll differ diff --git a/lib/wine/fakedlls/hnetcfg.dll b/lib/wine/fakedlls/hnetcfg.dll new file mode 100644 index 0000000..f9f1099 Binary files /dev/null and b/lib/wine/fakedlls/hnetcfg.dll differ diff --git a/lib/wine/fakedlls/hostname.exe b/lib/wine/fakedlls/hostname.exe new file mode 100644 index 0000000..e0c0c56 Binary files /dev/null and b/lib/wine/fakedlls/hostname.exe differ diff --git a/lib/wine/fakedlls/httpapi.dll b/lib/wine/fakedlls/httpapi.dll new file mode 100644 index 0000000..e93e932 Binary files /dev/null and b/lib/wine/fakedlls/httpapi.dll differ diff --git a/lib/wine/fakedlls/icacls.exe b/lib/wine/fakedlls/icacls.exe new file mode 100644 index 0000000..448bbff Binary files /dev/null and b/lib/wine/fakedlls/icacls.exe differ diff --git a/lib/wine/fakedlls/iccvid.dll b/lib/wine/fakedlls/iccvid.dll new file mode 100644 index 0000000..29428bc Binary files /dev/null and b/lib/wine/fakedlls/iccvid.dll differ diff --git a/lib/wine/fakedlls/icinfo.exe b/lib/wine/fakedlls/icinfo.exe new file mode 100644 index 0000000..448bbff Binary files /dev/null and b/lib/wine/fakedlls/icinfo.exe differ diff --git a/lib/wine/fakedlls/icmp.dll b/lib/wine/fakedlls/icmp.dll new file mode 100644 index 0000000..fc15327 Binary files /dev/null and b/lib/wine/fakedlls/icmp.dll differ diff --git a/lib/wine/fakedlls/ieframe.dll b/lib/wine/fakedlls/ieframe.dll new file mode 100644 index 0000000..d49d32e Binary files /dev/null and b/lib/wine/fakedlls/ieframe.dll differ diff --git a/lib/wine/fakedlls/ieproxy.dll b/lib/wine/fakedlls/ieproxy.dll new file mode 100644 index 0000000..561054d Binary files /dev/null and b/lib/wine/fakedlls/ieproxy.dll differ diff --git a/lib/wine/fakedlls/iertutil.dll b/lib/wine/fakedlls/iertutil.dll new file mode 100644 index 0000000..a0bb3fd Binary files /dev/null and b/lib/wine/fakedlls/iertutil.dll differ diff --git a/lib/wine/fakedlls/iexplore.exe b/lib/wine/fakedlls/iexplore.exe new file mode 100644 index 0000000..ba98faf Binary files /dev/null and b/lib/wine/fakedlls/iexplore.exe differ diff --git a/lib/wine/fakedlls/ifsmgr.vxd b/lib/wine/fakedlls/ifsmgr.vxd new file mode 100644 index 0000000..6232707 Binary files /dev/null and b/lib/wine/fakedlls/ifsmgr.vxd differ diff --git a/lib/wine/fakedlls/imaadp32.acm b/lib/wine/fakedlls/imaadp32.acm new file mode 100644 index 0000000..4f9e836 Binary files /dev/null and b/lib/wine/fakedlls/imaadp32.acm differ diff --git a/lib/wine/fakedlls/imagehlp.dll b/lib/wine/fakedlls/imagehlp.dll new file mode 100644 index 0000000..6a66b81 Binary files /dev/null and b/lib/wine/fakedlls/imagehlp.dll differ diff --git a/lib/wine/fakedlls/imm.dll16 b/lib/wine/fakedlls/imm.dll16 new file mode 100644 index 0000000..dc56e0a Binary files /dev/null and b/lib/wine/fakedlls/imm.dll16 differ diff --git a/lib/wine/fakedlls/imm32.dll b/lib/wine/fakedlls/imm32.dll new file mode 100644 index 0000000..bd43586 Binary files /dev/null and b/lib/wine/fakedlls/imm32.dll differ diff --git a/lib/wine/fakedlls/inetcomm.dll b/lib/wine/fakedlls/inetcomm.dll new file mode 100644 index 0000000..b12677b Binary files /dev/null and b/lib/wine/fakedlls/inetcomm.dll differ diff --git a/lib/wine/fakedlls/inetcpl.cpl b/lib/wine/fakedlls/inetcpl.cpl new file mode 100644 index 0000000..2dd7062 Binary files /dev/null and b/lib/wine/fakedlls/inetcpl.cpl differ diff --git a/lib/wine/fakedlls/inetmib1.dll b/lib/wine/fakedlls/inetmib1.dll new file mode 100644 index 0000000..aa1d202 Binary files /dev/null and b/lib/wine/fakedlls/inetmib1.dll differ diff --git a/lib/wine/fakedlls/infosoft.dll b/lib/wine/fakedlls/infosoft.dll new file mode 100644 index 0000000..2f357c2 Binary files /dev/null and b/lib/wine/fakedlls/infosoft.dll differ diff --git a/lib/wine/fakedlls/initpki.dll b/lib/wine/fakedlls/initpki.dll new file mode 100644 index 0000000..aec364c Binary files /dev/null and b/lib/wine/fakedlls/initpki.dll differ diff --git a/lib/wine/fakedlls/inkobj.dll b/lib/wine/fakedlls/inkobj.dll new file mode 100644 index 0000000..a7cd83b Binary files /dev/null and b/lib/wine/fakedlls/inkobj.dll differ diff --git a/lib/wine/fakedlls/inseng.dll b/lib/wine/fakedlls/inseng.dll new file mode 100644 index 0000000..6034523 Binary files /dev/null and b/lib/wine/fakedlls/inseng.dll differ diff --git a/lib/wine/fakedlls/ipconfig.exe b/lib/wine/fakedlls/ipconfig.exe new file mode 100644 index 0000000..15d86f0 Binary files /dev/null and b/lib/wine/fakedlls/ipconfig.exe differ diff --git a/lib/wine/fakedlls/iphlpapi.dll b/lib/wine/fakedlls/iphlpapi.dll new file mode 100644 index 0000000..439356a Binary files /dev/null and b/lib/wine/fakedlls/iphlpapi.dll differ diff --git a/lib/wine/fakedlls/iprop.dll b/lib/wine/fakedlls/iprop.dll new file mode 100644 index 0000000..379fb6d Binary files /dev/null and b/lib/wine/fakedlls/iprop.dll differ diff --git a/lib/wine/fakedlls/irprops.cpl b/lib/wine/fakedlls/irprops.cpl new file mode 100644 index 0000000..e2ea6e8 Binary files /dev/null and b/lib/wine/fakedlls/irprops.cpl differ diff --git a/lib/wine/fakedlls/itircl.dll b/lib/wine/fakedlls/itircl.dll new file mode 100644 index 0000000..90ffb2f Binary files /dev/null and b/lib/wine/fakedlls/itircl.dll differ diff --git a/lib/wine/fakedlls/itss.dll b/lib/wine/fakedlls/itss.dll new file mode 100644 index 0000000..00561f2 Binary files /dev/null and b/lib/wine/fakedlls/itss.dll differ diff --git a/lib/wine/fakedlls/joy.cpl b/lib/wine/fakedlls/joy.cpl new file mode 100644 index 0000000..c443b42 Binary files /dev/null and b/lib/wine/fakedlls/joy.cpl differ diff --git a/lib/wine/fakedlls/jscript.dll b/lib/wine/fakedlls/jscript.dll new file mode 100644 index 0000000..1f17983 Binary files /dev/null and b/lib/wine/fakedlls/jscript.dll differ diff --git a/lib/wine/fakedlls/jsproxy.dll b/lib/wine/fakedlls/jsproxy.dll new file mode 100644 index 0000000..cb90dd1 Binary files /dev/null and b/lib/wine/fakedlls/jsproxy.dll differ diff --git a/lib/wine/fakedlls/kerberos.dll b/lib/wine/fakedlls/kerberos.dll new file mode 100644 index 0000000..c0f7f3d Binary files /dev/null and b/lib/wine/fakedlls/kerberos.dll differ diff --git a/lib/wine/fakedlls/kernel32.dll b/lib/wine/fakedlls/kernel32.dll new file mode 100644 index 0000000..6ebd6b5 Binary files /dev/null and b/lib/wine/fakedlls/kernel32.dll differ diff --git a/lib/wine/fakedlls/kernelbase.dll b/lib/wine/fakedlls/kernelbase.dll new file mode 100644 index 0000000..9f9ae8c Binary files /dev/null and b/lib/wine/fakedlls/kernelbase.dll differ diff --git a/lib/wine/fakedlls/keyboard.drv16 b/lib/wine/fakedlls/keyboard.drv16 new file mode 100644 index 0000000..a4c13b0 Binary files /dev/null and b/lib/wine/fakedlls/keyboard.drv16 differ diff --git a/lib/wine/fakedlls/krnl386.exe16 b/lib/wine/fakedlls/krnl386.exe16 new file mode 100644 index 0000000..36a60ed Binary files /dev/null and b/lib/wine/fakedlls/krnl386.exe16 differ diff --git a/lib/wine/fakedlls/ksecdd.sys b/lib/wine/fakedlls/ksecdd.sys new file mode 100644 index 0000000..4fe5f83 Binary files /dev/null and b/lib/wine/fakedlls/ksecdd.sys differ diff --git a/lib/wine/fakedlls/ksuser.dll b/lib/wine/fakedlls/ksuser.dll new file mode 100644 index 0000000..b566bbf Binary files /dev/null and b/lib/wine/fakedlls/ksuser.dll differ diff --git a/lib/wine/fakedlls/ktmw32.dll b/lib/wine/fakedlls/ktmw32.dll new file mode 100644 index 0000000..51623bd Binary files /dev/null and b/lib/wine/fakedlls/ktmw32.dll differ diff --git a/lib/wine/fakedlls/l3codeca.acm b/lib/wine/fakedlls/l3codeca.acm new file mode 100644 index 0000000..377e895 Binary files /dev/null and b/lib/wine/fakedlls/l3codeca.acm differ diff --git a/lib/wine/fakedlls/loadperf.dll b/lib/wine/fakedlls/loadperf.dll new file mode 100644 index 0000000..7f01bc6 Binary files /dev/null and b/lib/wine/fakedlls/loadperf.dll differ diff --git a/lib/wine/fakedlls/localspl.dll b/lib/wine/fakedlls/localspl.dll new file mode 100644 index 0000000..54847b9 Binary files /dev/null and b/lib/wine/fakedlls/localspl.dll differ diff --git a/lib/wine/fakedlls/localui.dll b/lib/wine/fakedlls/localui.dll new file mode 100644 index 0000000..cefec50 Binary files /dev/null and b/lib/wine/fakedlls/localui.dll differ diff --git a/lib/wine/fakedlls/lodctr.exe b/lib/wine/fakedlls/lodctr.exe new file mode 100644 index 0000000..448bbff Binary files /dev/null and b/lib/wine/fakedlls/lodctr.exe differ diff --git a/lib/wine/fakedlls/lz32.dll b/lib/wine/fakedlls/lz32.dll new file mode 100644 index 0000000..6d5cf6d Binary files /dev/null and b/lib/wine/fakedlls/lz32.dll differ diff --git a/lib/wine/fakedlls/lzexpand.dll16 b/lib/wine/fakedlls/lzexpand.dll16 new file mode 100644 index 0000000..73743db Binary files /dev/null and b/lib/wine/fakedlls/lzexpand.dll16 differ diff --git a/lib/wine/fakedlls/mapi32.dll b/lib/wine/fakedlls/mapi32.dll new file mode 100644 index 0000000..57c48b4 Binary files /dev/null and b/lib/wine/fakedlls/mapi32.dll differ diff --git a/lib/wine/fakedlls/mapistub.dll b/lib/wine/fakedlls/mapistub.dll new file mode 100644 index 0000000..e388df0 Binary files /dev/null and b/lib/wine/fakedlls/mapistub.dll differ diff --git a/lib/wine/fakedlls/mciavi32.dll b/lib/wine/fakedlls/mciavi32.dll new file mode 100644 index 0000000..11a0ee4 Binary files /dev/null and b/lib/wine/fakedlls/mciavi32.dll differ diff --git a/lib/wine/fakedlls/mcicda.dll b/lib/wine/fakedlls/mcicda.dll new file mode 100644 index 0000000..083e95d Binary files /dev/null and b/lib/wine/fakedlls/mcicda.dll differ diff --git a/lib/wine/fakedlls/mciqtz32.dll b/lib/wine/fakedlls/mciqtz32.dll new file mode 100644 index 0000000..0d91fb6 Binary files /dev/null and b/lib/wine/fakedlls/mciqtz32.dll differ diff --git a/lib/wine/fakedlls/mciseq.dll b/lib/wine/fakedlls/mciseq.dll new file mode 100644 index 0000000..5eff6d9 Binary files /dev/null and b/lib/wine/fakedlls/mciseq.dll differ diff --git a/lib/wine/fakedlls/mciwave.dll b/lib/wine/fakedlls/mciwave.dll new file mode 100644 index 0000000..3097672 Binary files /dev/null and b/lib/wine/fakedlls/mciwave.dll differ diff --git a/lib/wine/fakedlls/mf.dll b/lib/wine/fakedlls/mf.dll new file mode 100644 index 0000000..73f762b Binary files /dev/null and b/lib/wine/fakedlls/mf.dll differ diff --git a/lib/wine/fakedlls/mf3216.dll b/lib/wine/fakedlls/mf3216.dll new file mode 100644 index 0000000..155d6eb Binary files /dev/null and b/lib/wine/fakedlls/mf3216.dll differ diff --git a/lib/wine/fakedlls/mferror.dll b/lib/wine/fakedlls/mferror.dll new file mode 100644 index 0000000..d1e1a53 Binary files /dev/null and b/lib/wine/fakedlls/mferror.dll differ diff --git a/lib/wine/fakedlls/mfplat.dll b/lib/wine/fakedlls/mfplat.dll new file mode 100644 index 0000000..a71214e Binary files /dev/null and b/lib/wine/fakedlls/mfplat.dll differ diff --git a/lib/wine/fakedlls/mfplay.dll b/lib/wine/fakedlls/mfplay.dll new file mode 100644 index 0000000..5cc8437 Binary files /dev/null and b/lib/wine/fakedlls/mfplay.dll differ diff --git a/lib/wine/fakedlls/mfreadwrite.dll b/lib/wine/fakedlls/mfreadwrite.dll new file mode 100644 index 0000000..d8239e8 Binary files /dev/null and b/lib/wine/fakedlls/mfreadwrite.dll differ diff --git a/lib/wine/fakedlls/mgmtapi.dll b/lib/wine/fakedlls/mgmtapi.dll new file mode 100644 index 0000000..20e6b96 Binary files /dev/null and b/lib/wine/fakedlls/mgmtapi.dll differ diff --git a/lib/wine/fakedlls/midimap.dll b/lib/wine/fakedlls/midimap.dll new file mode 100644 index 0000000..485969c Binary files /dev/null and b/lib/wine/fakedlls/midimap.dll differ diff --git a/lib/wine/fakedlls/mlang.dll b/lib/wine/fakedlls/mlang.dll new file mode 100644 index 0000000..3b6c408 Binary files /dev/null and b/lib/wine/fakedlls/mlang.dll differ diff --git a/lib/wine/fakedlls/mmcndmgr.dll b/lib/wine/fakedlls/mmcndmgr.dll new file mode 100644 index 0000000..02823bc Binary files /dev/null and b/lib/wine/fakedlls/mmcndmgr.dll differ diff --git a/lib/wine/fakedlls/mmdevapi.dll b/lib/wine/fakedlls/mmdevapi.dll new file mode 100644 index 0000000..745fef4 Binary files /dev/null and b/lib/wine/fakedlls/mmdevapi.dll differ diff --git a/lib/wine/fakedlls/mmdevldr.vxd b/lib/wine/fakedlls/mmdevldr.vxd new file mode 100644 index 0000000..b8b6809 Binary files /dev/null and b/lib/wine/fakedlls/mmdevldr.vxd differ diff --git a/lib/wine/fakedlls/mmsystem.dll16 b/lib/wine/fakedlls/mmsystem.dll16 new file mode 100644 index 0000000..439f8dd Binary files /dev/null and b/lib/wine/fakedlls/mmsystem.dll16 differ diff --git a/lib/wine/fakedlls/mofcomp.exe b/lib/wine/fakedlls/mofcomp.exe new file mode 100644 index 0000000..448bbff Binary files /dev/null and b/lib/wine/fakedlls/mofcomp.exe differ diff --git a/lib/wine/fakedlls/monodebg.vxd b/lib/wine/fakedlls/monodebg.vxd new file mode 100644 index 0000000..f02b2d1 Binary files /dev/null and b/lib/wine/fakedlls/monodebg.vxd differ diff --git a/lib/wine/fakedlls/mountmgr.sys b/lib/wine/fakedlls/mountmgr.sys new file mode 100644 index 0000000..9fa4489 Binary files /dev/null and b/lib/wine/fakedlls/mountmgr.sys differ diff --git a/lib/wine/fakedlls/mouse.drv16 b/lib/wine/fakedlls/mouse.drv16 new file mode 100644 index 0000000..86930c7 Binary files /dev/null and b/lib/wine/fakedlls/mouse.drv16 differ diff --git a/lib/wine/fakedlls/mp3dmod.dll b/lib/wine/fakedlls/mp3dmod.dll new file mode 100644 index 0000000..ed9e193 Binary files /dev/null and b/lib/wine/fakedlls/mp3dmod.dll differ diff --git a/lib/wine/fakedlls/mpr.dll b/lib/wine/fakedlls/mpr.dll new file mode 100644 index 0000000..25a1c97 Binary files /dev/null and b/lib/wine/fakedlls/mpr.dll differ diff --git a/lib/wine/fakedlls/mprapi.dll b/lib/wine/fakedlls/mprapi.dll new file mode 100644 index 0000000..00c5f62 Binary files /dev/null and b/lib/wine/fakedlls/mprapi.dll differ diff --git a/lib/wine/fakedlls/msacm.dll16 b/lib/wine/fakedlls/msacm.dll16 new file mode 100644 index 0000000..53e49c2 Binary files /dev/null and b/lib/wine/fakedlls/msacm.dll16 differ diff --git a/lib/wine/fakedlls/msacm32.dll b/lib/wine/fakedlls/msacm32.dll new file mode 100644 index 0000000..a36c2e4 Binary files /dev/null and b/lib/wine/fakedlls/msacm32.dll differ diff --git a/lib/wine/fakedlls/msacm32.drv b/lib/wine/fakedlls/msacm32.drv new file mode 100644 index 0000000..5aa0be9 Binary files /dev/null and b/lib/wine/fakedlls/msacm32.drv differ diff --git a/lib/wine/fakedlls/msadp32.acm b/lib/wine/fakedlls/msadp32.acm new file mode 100644 index 0000000..d83940a Binary files /dev/null and b/lib/wine/fakedlls/msadp32.acm differ diff --git a/lib/wine/fakedlls/msasn1.dll b/lib/wine/fakedlls/msasn1.dll new file mode 100644 index 0000000..b28ce61 Binary files /dev/null and b/lib/wine/fakedlls/msasn1.dll differ diff --git a/lib/wine/fakedlls/mscat32.dll b/lib/wine/fakedlls/mscat32.dll new file mode 100644 index 0000000..1f1ec19 Binary files /dev/null and b/lib/wine/fakedlls/mscat32.dll differ diff --git a/lib/wine/fakedlls/mscms.dll b/lib/wine/fakedlls/mscms.dll new file mode 100644 index 0000000..4271a5c Binary files /dev/null and b/lib/wine/fakedlls/mscms.dll differ diff --git a/lib/wine/fakedlls/mscoree.dll b/lib/wine/fakedlls/mscoree.dll new file mode 100644 index 0000000..3da5e31 Binary files /dev/null and b/lib/wine/fakedlls/mscoree.dll differ diff --git a/lib/wine/fakedlls/msctf.dll b/lib/wine/fakedlls/msctf.dll new file mode 100644 index 0000000..201c32e Binary files /dev/null and b/lib/wine/fakedlls/msctf.dll differ diff --git a/lib/wine/fakedlls/msctfp.dll b/lib/wine/fakedlls/msctfp.dll new file mode 100644 index 0000000..01f1f65 Binary files /dev/null and b/lib/wine/fakedlls/msctfp.dll differ diff --git a/lib/wine/fakedlls/msdaps.dll b/lib/wine/fakedlls/msdaps.dll new file mode 100644 index 0000000..770d347 Binary files /dev/null and b/lib/wine/fakedlls/msdaps.dll differ diff --git a/lib/wine/fakedlls/msdelta.dll b/lib/wine/fakedlls/msdelta.dll new file mode 100644 index 0000000..7d8a159 Binary files /dev/null and b/lib/wine/fakedlls/msdelta.dll differ diff --git a/lib/wine/fakedlls/msdmo.dll b/lib/wine/fakedlls/msdmo.dll new file mode 100644 index 0000000..a425c49 Binary files /dev/null and b/lib/wine/fakedlls/msdmo.dll differ diff --git a/lib/wine/fakedlls/msdrm.dll b/lib/wine/fakedlls/msdrm.dll new file mode 100644 index 0000000..cfa8942 Binary files /dev/null and b/lib/wine/fakedlls/msdrm.dll differ diff --git a/lib/wine/fakedlls/msftedit.dll b/lib/wine/fakedlls/msftedit.dll new file mode 100644 index 0000000..6948b78 Binary files /dev/null and b/lib/wine/fakedlls/msftedit.dll differ diff --git a/lib/wine/fakedlls/msg711.acm b/lib/wine/fakedlls/msg711.acm new file mode 100644 index 0000000..8a25dcf Binary files /dev/null and b/lib/wine/fakedlls/msg711.acm differ diff --git a/lib/wine/fakedlls/msgsm32.acm b/lib/wine/fakedlls/msgsm32.acm new file mode 100644 index 0000000..fe4edf7 Binary files /dev/null and b/lib/wine/fakedlls/msgsm32.acm differ diff --git a/lib/wine/fakedlls/mshta.exe b/lib/wine/fakedlls/mshta.exe new file mode 100644 index 0000000..532d4a1 Binary files /dev/null and b/lib/wine/fakedlls/mshta.exe differ diff --git a/lib/wine/fakedlls/mshtml.dll b/lib/wine/fakedlls/mshtml.dll new file mode 100644 index 0000000..d5651ae Binary files /dev/null and b/lib/wine/fakedlls/mshtml.dll differ diff --git a/lib/wine/fakedlls/mshtml.tlb b/lib/wine/fakedlls/mshtml.tlb new file mode 100644 index 0000000..da73c8a Binary files /dev/null and b/lib/wine/fakedlls/mshtml.tlb differ diff --git a/lib/wine/fakedlls/msi.dll b/lib/wine/fakedlls/msi.dll new file mode 100644 index 0000000..e259fc2 Binary files /dev/null and b/lib/wine/fakedlls/msi.dll differ diff --git a/lib/wine/fakedlls/msidb.exe b/lib/wine/fakedlls/msidb.exe new file mode 100644 index 0000000..448bbff Binary files /dev/null and b/lib/wine/fakedlls/msidb.exe differ diff --git a/lib/wine/fakedlls/msident.dll b/lib/wine/fakedlls/msident.dll new file mode 100644 index 0000000..3236f37 Binary files /dev/null and b/lib/wine/fakedlls/msident.dll differ diff --git a/lib/wine/fakedlls/msiexec.exe b/lib/wine/fakedlls/msiexec.exe new file mode 100644 index 0000000..cf6db3f Binary files /dev/null and b/lib/wine/fakedlls/msiexec.exe differ diff --git a/lib/wine/fakedlls/msimg32.dll b/lib/wine/fakedlls/msimg32.dll new file mode 100644 index 0000000..c9400fb Binary files /dev/null and b/lib/wine/fakedlls/msimg32.dll differ diff --git a/lib/wine/fakedlls/msimsg.dll b/lib/wine/fakedlls/msimsg.dll new file mode 100644 index 0000000..bd691c1 Binary files /dev/null and b/lib/wine/fakedlls/msimsg.dll differ diff --git a/lib/wine/fakedlls/msimtf.dll b/lib/wine/fakedlls/msimtf.dll new file mode 100644 index 0000000..ff7cef4 Binary files /dev/null and b/lib/wine/fakedlls/msimtf.dll differ diff --git a/lib/wine/fakedlls/msinfo32.exe b/lib/wine/fakedlls/msinfo32.exe new file mode 100644 index 0000000..fe8bdca Binary files /dev/null and b/lib/wine/fakedlls/msinfo32.exe differ diff --git a/lib/wine/fakedlls/msisip.dll b/lib/wine/fakedlls/msisip.dll new file mode 100644 index 0000000..52c5898 Binary files /dev/null and b/lib/wine/fakedlls/msisip.dll differ diff --git a/lib/wine/fakedlls/msisys.ocx b/lib/wine/fakedlls/msisys.ocx new file mode 100644 index 0000000..199945c Binary files /dev/null and b/lib/wine/fakedlls/msisys.ocx differ diff --git a/lib/wine/fakedlls/msls31.dll b/lib/wine/fakedlls/msls31.dll new file mode 100644 index 0000000..6c15769 Binary files /dev/null and b/lib/wine/fakedlls/msls31.dll differ diff --git a/lib/wine/fakedlls/msnet32.dll b/lib/wine/fakedlls/msnet32.dll new file mode 100644 index 0000000..c3ec2c7 Binary files /dev/null and b/lib/wine/fakedlls/msnet32.dll differ diff --git a/lib/wine/fakedlls/mspatcha.dll b/lib/wine/fakedlls/mspatcha.dll new file mode 100644 index 0000000..ed9292e Binary files /dev/null and b/lib/wine/fakedlls/mspatcha.dll differ diff --git a/lib/wine/fakedlls/msports.dll b/lib/wine/fakedlls/msports.dll new file mode 100644 index 0000000..2f1d4a5 Binary files /dev/null and b/lib/wine/fakedlls/msports.dll differ diff --git a/lib/wine/fakedlls/msrle32.dll b/lib/wine/fakedlls/msrle32.dll new file mode 100644 index 0000000..ad54c45 Binary files /dev/null and b/lib/wine/fakedlls/msrle32.dll differ diff --git a/lib/wine/fakedlls/msscript.ocx b/lib/wine/fakedlls/msscript.ocx new file mode 100644 index 0000000..55f4443 Binary files /dev/null and b/lib/wine/fakedlls/msscript.ocx differ diff --git a/lib/wine/fakedlls/mssign32.dll b/lib/wine/fakedlls/mssign32.dll new file mode 100644 index 0000000..0c6d263 Binary files /dev/null and b/lib/wine/fakedlls/mssign32.dll differ diff --git a/lib/wine/fakedlls/mssip32.dll b/lib/wine/fakedlls/mssip32.dll new file mode 100644 index 0000000..c280201 Binary files /dev/null and b/lib/wine/fakedlls/mssip32.dll differ diff --git a/lib/wine/fakedlls/mstask.dll b/lib/wine/fakedlls/mstask.dll new file mode 100644 index 0000000..9de6e24 Binary files /dev/null and b/lib/wine/fakedlls/mstask.dll differ diff --git a/lib/wine/fakedlls/msvcirt.dll b/lib/wine/fakedlls/msvcirt.dll new file mode 100644 index 0000000..ecce13f Binary files /dev/null and b/lib/wine/fakedlls/msvcirt.dll differ diff --git a/lib/wine/fakedlls/msvcm80.dll b/lib/wine/fakedlls/msvcm80.dll new file mode 100644 index 0000000..df30ed2 Binary files /dev/null and b/lib/wine/fakedlls/msvcm80.dll differ diff --git a/lib/wine/fakedlls/msvcm90.dll b/lib/wine/fakedlls/msvcm90.dll new file mode 100644 index 0000000..4fbab6e Binary files /dev/null and b/lib/wine/fakedlls/msvcm90.dll differ diff --git a/lib/wine/fakedlls/msvcp100.dll b/lib/wine/fakedlls/msvcp100.dll new file mode 100644 index 0000000..b2180f0 Binary files /dev/null and b/lib/wine/fakedlls/msvcp100.dll differ diff --git a/lib/wine/fakedlls/msvcp110.dll b/lib/wine/fakedlls/msvcp110.dll new file mode 100644 index 0000000..0803a66 Binary files /dev/null and b/lib/wine/fakedlls/msvcp110.dll differ diff --git a/lib/wine/fakedlls/msvcp120.dll b/lib/wine/fakedlls/msvcp120.dll new file mode 100644 index 0000000..91c5714 Binary files /dev/null and b/lib/wine/fakedlls/msvcp120.dll differ diff --git a/lib/wine/fakedlls/msvcp120_app.dll b/lib/wine/fakedlls/msvcp120_app.dll new file mode 100644 index 0000000..1664711 Binary files /dev/null and b/lib/wine/fakedlls/msvcp120_app.dll differ diff --git a/lib/wine/fakedlls/msvcp140.dll b/lib/wine/fakedlls/msvcp140.dll new file mode 100644 index 0000000..f607db3 Binary files /dev/null and b/lib/wine/fakedlls/msvcp140.dll differ diff --git a/lib/wine/fakedlls/msvcp60.dll b/lib/wine/fakedlls/msvcp60.dll new file mode 100644 index 0000000..ff74a6b Binary files /dev/null and b/lib/wine/fakedlls/msvcp60.dll differ diff --git a/lib/wine/fakedlls/msvcp70.dll b/lib/wine/fakedlls/msvcp70.dll new file mode 100644 index 0000000..5b6b7e3 Binary files /dev/null and b/lib/wine/fakedlls/msvcp70.dll differ diff --git a/lib/wine/fakedlls/msvcp71.dll b/lib/wine/fakedlls/msvcp71.dll new file mode 100644 index 0000000..58f5fd3 Binary files /dev/null and b/lib/wine/fakedlls/msvcp71.dll differ diff --git a/lib/wine/fakedlls/msvcp80.dll b/lib/wine/fakedlls/msvcp80.dll new file mode 100644 index 0000000..b60ff51 Binary files /dev/null and b/lib/wine/fakedlls/msvcp80.dll differ diff --git a/lib/wine/fakedlls/msvcp90.dll b/lib/wine/fakedlls/msvcp90.dll new file mode 100644 index 0000000..4bbaac6 Binary files /dev/null and b/lib/wine/fakedlls/msvcp90.dll differ diff --git a/lib/wine/fakedlls/msvcr100.dll b/lib/wine/fakedlls/msvcr100.dll new file mode 100644 index 0000000..9bfa41e Binary files /dev/null and b/lib/wine/fakedlls/msvcr100.dll differ diff --git a/lib/wine/fakedlls/msvcr110.dll b/lib/wine/fakedlls/msvcr110.dll new file mode 100644 index 0000000..147955e Binary files /dev/null and b/lib/wine/fakedlls/msvcr110.dll differ diff --git a/lib/wine/fakedlls/msvcr120.dll b/lib/wine/fakedlls/msvcr120.dll new file mode 100644 index 0000000..6301e91 Binary files /dev/null and b/lib/wine/fakedlls/msvcr120.dll differ diff --git a/lib/wine/fakedlls/msvcr120_app.dll b/lib/wine/fakedlls/msvcr120_app.dll new file mode 100644 index 0000000..58addb0 Binary files /dev/null and b/lib/wine/fakedlls/msvcr120_app.dll differ diff --git a/lib/wine/fakedlls/msvcr70.dll b/lib/wine/fakedlls/msvcr70.dll new file mode 100644 index 0000000..9414c5b Binary files /dev/null and b/lib/wine/fakedlls/msvcr70.dll differ diff --git a/lib/wine/fakedlls/msvcr71.dll b/lib/wine/fakedlls/msvcr71.dll new file mode 100644 index 0000000..2658f4f Binary files /dev/null and b/lib/wine/fakedlls/msvcr71.dll differ diff --git a/lib/wine/fakedlls/msvcr80.dll b/lib/wine/fakedlls/msvcr80.dll new file mode 100644 index 0000000..55c8b3a Binary files /dev/null and b/lib/wine/fakedlls/msvcr80.dll differ diff --git a/lib/wine/fakedlls/msvcr90.dll b/lib/wine/fakedlls/msvcr90.dll new file mode 100644 index 0000000..67126a6 Binary files /dev/null and b/lib/wine/fakedlls/msvcr90.dll differ diff --git a/lib/wine/fakedlls/msvcrt.dll b/lib/wine/fakedlls/msvcrt.dll new file mode 100644 index 0000000..436ac26 Binary files /dev/null and b/lib/wine/fakedlls/msvcrt.dll differ diff --git a/lib/wine/fakedlls/msvcrt20.dll b/lib/wine/fakedlls/msvcrt20.dll new file mode 100644 index 0000000..3adb6f4 Binary files /dev/null and b/lib/wine/fakedlls/msvcrt20.dll differ diff --git a/lib/wine/fakedlls/msvcrt40.dll b/lib/wine/fakedlls/msvcrt40.dll new file mode 100644 index 0000000..18d1381 Binary files /dev/null and b/lib/wine/fakedlls/msvcrt40.dll differ diff --git a/lib/wine/fakedlls/msvcrtd.dll b/lib/wine/fakedlls/msvcrtd.dll new file mode 100644 index 0000000..d3354e5 Binary files /dev/null and b/lib/wine/fakedlls/msvcrtd.dll differ diff --git a/lib/wine/fakedlls/msvfw32.dll b/lib/wine/fakedlls/msvfw32.dll new file mode 100644 index 0000000..7adf63d Binary files /dev/null and b/lib/wine/fakedlls/msvfw32.dll differ diff --git a/lib/wine/fakedlls/msvidc32.dll b/lib/wine/fakedlls/msvidc32.dll new file mode 100644 index 0000000..45c92ea Binary files /dev/null and b/lib/wine/fakedlls/msvidc32.dll differ diff --git a/lib/wine/fakedlls/msvideo.dll16 b/lib/wine/fakedlls/msvideo.dll16 new file mode 100644 index 0000000..b2acf52 Binary files /dev/null and b/lib/wine/fakedlls/msvideo.dll16 differ diff --git a/lib/wine/fakedlls/mswsock.dll b/lib/wine/fakedlls/mswsock.dll new file mode 100644 index 0000000..6f80bfd Binary files /dev/null and b/lib/wine/fakedlls/mswsock.dll differ diff --git a/lib/wine/fakedlls/msxml.dll b/lib/wine/fakedlls/msxml.dll new file mode 100644 index 0000000..c2ed797 Binary files /dev/null and b/lib/wine/fakedlls/msxml.dll differ diff --git a/lib/wine/fakedlls/msxml2.dll b/lib/wine/fakedlls/msxml2.dll new file mode 100644 index 0000000..d949e21 Binary files /dev/null and b/lib/wine/fakedlls/msxml2.dll differ diff --git a/lib/wine/fakedlls/msxml3.dll b/lib/wine/fakedlls/msxml3.dll new file mode 100644 index 0000000..ef72df0 Binary files /dev/null and b/lib/wine/fakedlls/msxml3.dll differ diff --git a/lib/wine/fakedlls/msxml4.dll b/lib/wine/fakedlls/msxml4.dll new file mode 100644 index 0000000..c4e66c4 Binary files /dev/null and b/lib/wine/fakedlls/msxml4.dll differ diff --git a/lib/wine/fakedlls/msxml6.dll b/lib/wine/fakedlls/msxml6.dll new file mode 100644 index 0000000..db23add Binary files /dev/null and b/lib/wine/fakedlls/msxml6.dll differ diff --git a/lib/wine/fakedlls/mtxdm.dll b/lib/wine/fakedlls/mtxdm.dll new file mode 100644 index 0000000..8e97f9a Binary files /dev/null and b/lib/wine/fakedlls/mtxdm.dll differ diff --git a/lib/wine/fakedlls/ncrypt.dll b/lib/wine/fakedlls/ncrypt.dll new file mode 100644 index 0000000..e9848ad Binary files /dev/null and b/lib/wine/fakedlls/ncrypt.dll differ diff --git a/lib/wine/fakedlls/nddeapi.dll b/lib/wine/fakedlls/nddeapi.dll new file mode 100644 index 0000000..cfb6bcb Binary files /dev/null and b/lib/wine/fakedlls/nddeapi.dll differ diff --git a/lib/wine/fakedlls/ndis.sys b/lib/wine/fakedlls/ndis.sys new file mode 100644 index 0000000..9fa4489 Binary files /dev/null and b/lib/wine/fakedlls/ndis.sys differ diff --git a/lib/wine/fakedlls/net.exe b/lib/wine/fakedlls/net.exe new file mode 100644 index 0000000..47840e3 Binary files /dev/null and b/lib/wine/fakedlls/net.exe differ diff --git a/lib/wine/fakedlls/netapi32.dll b/lib/wine/fakedlls/netapi32.dll new file mode 100644 index 0000000..690fd87 Binary files /dev/null and b/lib/wine/fakedlls/netapi32.dll differ diff --git a/lib/wine/fakedlls/netcfgx.dll b/lib/wine/fakedlls/netcfgx.dll new file mode 100644 index 0000000..2e15339 Binary files /dev/null and b/lib/wine/fakedlls/netcfgx.dll differ diff --git a/lib/wine/fakedlls/netprofm.dll b/lib/wine/fakedlls/netprofm.dll new file mode 100644 index 0000000..e485afe Binary files /dev/null and b/lib/wine/fakedlls/netprofm.dll differ diff --git a/lib/wine/fakedlls/netsh.exe b/lib/wine/fakedlls/netsh.exe new file mode 100644 index 0000000..448bbff Binary files /dev/null and b/lib/wine/fakedlls/netsh.exe differ diff --git a/lib/wine/fakedlls/netstat.exe b/lib/wine/fakedlls/netstat.exe new file mode 100644 index 0000000..8041695 Binary files /dev/null and b/lib/wine/fakedlls/netstat.exe differ diff --git a/lib/wine/fakedlls/newdev.dll b/lib/wine/fakedlls/newdev.dll new file mode 100644 index 0000000..a4d7e5b Binary files /dev/null and b/lib/wine/fakedlls/newdev.dll differ diff --git a/lib/wine/fakedlls/ngen.exe b/lib/wine/fakedlls/ngen.exe new file mode 100644 index 0000000..448bbff Binary files /dev/null and b/lib/wine/fakedlls/ngen.exe differ diff --git a/lib/wine/fakedlls/ninput.dll b/lib/wine/fakedlls/ninput.dll new file mode 100644 index 0000000..d88b389 Binary files /dev/null and b/lib/wine/fakedlls/ninput.dll differ diff --git a/lib/wine/fakedlls/normaliz.dll b/lib/wine/fakedlls/normaliz.dll new file mode 100644 index 0000000..bbdd90f Binary files /dev/null and b/lib/wine/fakedlls/normaliz.dll differ diff --git a/lib/wine/fakedlls/notepad.exe b/lib/wine/fakedlls/notepad.exe new file mode 100644 index 0000000..cb18e93 Binary files /dev/null and b/lib/wine/fakedlls/notepad.exe differ diff --git a/lib/wine/fakedlls/npmshtml.dll b/lib/wine/fakedlls/npmshtml.dll new file mode 100644 index 0000000..8cc7232 Binary files /dev/null and b/lib/wine/fakedlls/npmshtml.dll differ diff --git a/lib/wine/fakedlls/npptools.dll b/lib/wine/fakedlls/npptools.dll new file mode 100644 index 0000000..ce490bd Binary files /dev/null and b/lib/wine/fakedlls/npptools.dll differ diff --git a/lib/wine/fakedlls/ntdll.dll b/lib/wine/fakedlls/ntdll.dll new file mode 100644 index 0000000..a55a75b Binary files /dev/null and b/lib/wine/fakedlls/ntdll.dll differ diff --git a/lib/wine/fakedlls/ntdsapi.dll b/lib/wine/fakedlls/ntdsapi.dll new file mode 100644 index 0000000..cb62a1c Binary files /dev/null and b/lib/wine/fakedlls/ntdsapi.dll differ diff --git a/lib/wine/fakedlls/ntoskrnl.exe b/lib/wine/fakedlls/ntoskrnl.exe new file mode 100644 index 0000000..66d4de9 Binary files /dev/null and b/lib/wine/fakedlls/ntoskrnl.exe differ diff --git a/lib/wine/fakedlls/ntprint.dll b/lib/wine/fakedlls/ntprint.dll new file mode 100644 index 0000000..a81affb Binary files /dev/null and b/lib/wine/fakedlls/ntprint.dll differ diff --git a/lib/wine/fakedlls/nvapi.dll b/lib/wine/fakedlls/nvapi.dll new file mode 100644 index 0000000..e3af473 Binary files /dev/null and b/lib/wine/fakedlls/nvapi.dll differ diff --git a/lib/wine/fakedlls/nvcuda.dll b/lib/wine/fakedlls/nvcuda.dll new file mode 100644 index 0000000..8ef94d7 Binary files /dev/null and b/lib/wine/fakedlls/nvcuda.dll differ diff --git a/lib/wine/fakedlls/nvcuvid.dll b/lib/wine/fakedlls/nvcuvid.dll new file mode 100644 index 0000000..2f74a90 Binary files /dev/null and b/lib/wine/fakedlls/nvcuvid.dll differ diff --git a/lib/wine/fakedlls/nvencodeapi.dll b/lib/wine/fakedlls/nvencodeapi.dll new file mode 100644 index 0000000..f5db38f Binary files /dev/null and b/lib/wine/fakedlls/nvencodeapi.dll differ diff --git a/lib/wine/fakedlls/objsel.dll b/lib/wine/fakedlls/objsel.dll new file mode 100644 index 0000000..128c3a2 Binary files /dev/null and b/lib/wine/fakedlls/objsel.dll differ diff --git a/lib/wine/fakedlls/odbc32.dll b/lib/wine/fakedlls/odbc32.dll new file mode 100644 index 0000000..4ff9d7f Binary files /dev/null and b/lib/wine/fakedlls/odbc32.dll differ diff --git a/lib/wine/fakedlls/odbccp32.dll b/lib/wine/fakedlls/odbccp32.dll new file mode 100644 index 0000000..397bc07 Binary files /dev/null and b/lib/wine/fakedlls/odbccp32.dll differ diff --git a/lib/wine/fakedlls/odbccu32.dll b/lib/wine/fakedlls/odbccu32.dll new file mode 100644 index 0000000..75e3902 Binary files /dev/null and b/lib/wine/fakedlls/odbccu32.dll differ diff --git a/lib/wine/fakedlls/ole2.dll16 b/lib/wine/fakedlls/ole2.dll16 new file mode 100644 index 0000000..58494b6 Binary files /dev/null and b/lib/wine/fakedlls/ole2.dll16 differ diff --git a/lib/wine/fakedlls/ole2conv.dll16 b/lib/wine/fakedlls/ole2conv.dll16 new file mode 100644 index 0000000..ad6205d Binary files /dev/null and b/lib/wine/fakedlls/ole2conv.dll16 differ diff --git a/lib/wine/fakedlls/ole2disp.dll16 b/lib/wine/fakedlls/ole2disp.dll16 new file mode 100644 index 0000000..02e8988 Binary files /dev/null and b/lib/wine/fakedlls/ole2disp.dll16 differ diff --git a/lib/wine/fakedlls/ole2nls.dll16 b/lib/wine/fakedlls/ole2nls.dll16 new file mode 100644 index 0000000..70d7763 Binary files /dev/null and b/lib/wine/fakedlls/ole2nls.dll16 differ diff --git a/lib/wine/fakedlls/ole2prox.dll16 b/lib/wine/fakedlls/ole2prox.dll16 new file mode 100644 index 0000000..46b7f3d Binary files /dev/null and b/lib/wine/fakedlls/ole2prox.dll16 differ diff --git a/lib/wine/fakedlls/ole2thk.dll16 b/lib/wine/fakedlls/ole2thk.dll16 new file mode 100644 index 0000000..5dfd8ad Binary files /dev/null and b/lib/wine/fakedlls/ole2thk.dll16 differ diff --git a/lib/wine/fakedlls/ole32.dll b/lib/wine/fakedlls/ole32.dll new file mode 100644 index 0000000..8b81889 Binary files /dev/null and b/lib/wine/fakedlls/ole32.dll differ diff --git a/lib/wine/fakedlls/oleacc.dll b/lib/wine/fakedlls/oleacc.dll new file mode 100644 index 0000000..aa0de17 Binary files /dev/null and b/lib/wine/fakedlls/oleacc.dll differ diff --git a/lib/wine/fakedlls/oleaut32.dll b/lib/wine/fakedlls/oleaut32.dll new file mode 100644 index 0000000..04671be Binary files /dev/null and b/lib/wine/fakedlls/oleaut32.dll differ diff --git a/lib/wine/fakedlls/olecli.dll16 b/lib/wine/fakedlls/olecli.dll16 new file mode 100644 index 0000000..d3172d4 Binary files /dev/null and b/lib/wine/fakedlls/olecli.dll16 differ diff --git a/lib/wine/fakedlls/olecli32.dll b/lib/wine/fakedlls/olecli32.dll new file mode 100644 index 0000000..b1a0107 Binary files /dev/null and b/lib/wine/fakedlls/olecli32.dll differ diff --git a/lib/wine/fakedlls/oledb32.dll b/lib/wine/fakedlls/oledb32.dll new file mode 100644 index 0000000..57749e5 Binary files /dev/null and b/lib/wine/fakedlls/oledb32.dll differ diff --git a/lib/wine/fakedlls/oledlg.dll b/lib/wine/fakedlls/oledlg.dll new file mode 100644 index 0000000..0423257 Binary files /dev/null and b/lib/wine/fakedlls/oledlg.dll differ diff --git a/lib/wine/fakedlls/olepro32.dll b/lib/wine/fakedlls/olepro32.dll new file mode 100644 index 0000000..92a3fa5 Binary files /dev/null and b/lib/wine/fakedlls/olepro32.dll differ diff --git a/lib/wine/fakedlls/olesvr.dll16 b/lib/wine/fakedlls/olesvr.dll16 new file mode 100644 index 0000000..9963fa5 Binary files /dev/null and b/lib/wine/fakedlls/olesvr.dll16 differ diff --git a/lib/wine/fakedlls/olesvr32.dll b/lib/wine/fakedlls/olesvr32.dll new file mode 100644 index 0000000..fee2fd8 Binary files /dev/null and b/lib/wine/fakedlls/olesvr32.dll differ diff --git a/lib/wine/fakedlls/olethk32.dll b/lib/wine/fakedlls/olethk32.dll new file mode 100644 index 0000000..f898905 Binary files /dev/null and b/lib/wine/fakedlls/olethk32.dll differ diff --git a/lib/wine/fakedlls/oleview.exe b/lib/wine/fakedlls/oleview.exe new file mode 100644 index 0000000..c30ff78 Binary files /dev/null and b/lib/wine/fakedlls/oleview.exe differ diff --git a/lib/wine/fakedlls/opcservices.dll b/lib/wine/fakedlls/opcservices.dll new file mode 100644 index 0000000..6e812e7 Binary files /dev/null and b/lib/wine/fakedlls/opcservices.dll differ diff --git a/lib/wine/fakedlls/openal32.dll b/lib/wine/fakedlls/openal32.dll new file mode 100644 index 0000000..0aaec0d Binary files /dev/null and b/lib/wine/fakedlls/openal32.dll differ diff --git a/lib/wine/fakedlls/opencl.dll b/lib/wine/fakedlls/opencl.dll new file mode 100644 index 0000000..8b38a42 Binary files /dev/null and b/lib/wine/fakedlls/opencl.dll differ diff --git a/lib/wine/fakedlls/opengl32.dll b/lib/wine/fakedlls/opengl32.dll new file mode 100644 index 0000000..2fd5f8c Binary files /dev/null and b/lib/wine/fakedlls/opengl32.dll differ diff --git a/lib/wine/fakedlls/packager.dll b/lib/wine/fakedlls/packager.dll new file mode 100644 index 0000000..7129a90 Binary files /dev/null and b/lib/wine/fakedlls/packager.dll differ diff --git a/lib/wine/fakedlls/pdh.dll b/lib/wine/fakedlls/pdh.dll new file mode 100644 index 0000000..bea3244 Binary files /dev/null and b/lib/wine/fakedlls/pdh.dll differ diff --git a/lib/wine/fakedlls/photometadatahandler.dll b/lib/wine/fakedlls/photometadatahandler.dll new file mode 100644 index 0000000..1cdf534 Binary files /dev/null and b/lib/wine/fakedlls/photometadatahandler.dll differ diff --git a/lib/wine/fakedlls/pidgen.dll b/lib/wine/fakedlls/pidgen.dll new file mode 100644 index 0000000..abade4b Binary files /dev/null and b/lib/wine/fakedlls/pidgen.dll differ diff --git a/lib/wine/fakedlls/ping.exe b/lib/wine/fakedlls/ping.exe new file mode 100644 index 0000000..448bbff Binary files /dev/null and b/lib/wine/fakedlls/ping.exe differ diff --git a/lib/wine/fakedlls/plugplay.exe b/lib/wine/fakedlls/plugplay.exe new file mode 100644 index 0000000..448bbff Binary files /dev/null and b/lib/wine/fakedlls/plugplay.exe differ diff --git a/lib/wine/fakedlls/powershell.exe b/lib/wine/fakedlls/powershell.exe new file mode 100644 index 0000000..448bbff Binary files /dev/null and b/lib/wine/fakedlls/powershell.exe differ diff --git a/lib/wine/fakedlls/powrprof.dll b/lib/wine/fakedlls/powrprof.dll new file mode 100644 index 0000000..f72ac91 Binary files /dev/null and b/lib/wine/fakedlls/powrprof.dll differ diff --git a/lib/wine/fakedlls/presentationfontcache.exe b/lib/wine/fakedlls/presentationfontcache.exe new file mode 100644 index 0000000..448bbff Binary files /dev/null and b/lib/wine/fakedlls/presentationfontcache.exe differ diff --git a/lib/wine/fakedlls/printui.dll b/lib/wine/fakedlls/printui.dll new file mode 100644 index 0000000..45339e2 Binary files /dev/null and b/lib/wine/fakedlls/printui.dll differ diff --git a/lib/wine/fakedlls/prntvpt.dll b/lib/wine/fakedlls/prntvpt.dll new file mode 100644 index 0000000..6eb20fe Binary files /dev/null and b/lib/wine/fakedlls/prntvpt.dll differ diff --git a/lib/wine/fakedlls/progman.exe b/lib/wine/fakedlls/progman.exe new file mode 100644 index 0000000..1a2bc74 Binary files /dev/null and b/lib/wine/fakedlls/progman.exe differ diff --git a/lib/wine/fakedlls/propsys.dll b/lib/wine/fakedlls/propsys.dll new file mode 100644 index 0000000..b8ce5a3 Binary files /dev/null and b/lib/wine/fakedlls/propsys.dll differ diff --git a/lib/wine/fakedlls/psapi.dll b/lib/wine/fakedlls/psapi.dll new file mode 100644 index 0000000..0039fe3 Binary files /dev/null and b/lib/wine/fakedlls/psapi.dll differ diff --git a/lib/wine/fakedlls/pstorec.dll b/lib/wine/fakedlls/pstorec.dll new file mode 100644 index 0000000..57c725d Binary files /dev/null and b/lib/wine/fakedlls/pstorec.dll differ diff --git a/lib/wine/fakedlls/qcap.dll b/lib/wine/fakedlls/qcap.dll new file mode 100644 index 0000000..87ab902 Binary files /dev/null and b/lib/wine/fakedlls/qcap.dll differ diff --git a/lib/wine/fakedlls/qedit.dll b/lib/wine/fakedlls/qedit.dll new file mode 100644 index 0000000..313db91 Binary files /dev/null and b/lib/wine/fakedlls/qedit.dll differ diff --git a/lib/wine/fakedlls/qmgr.dll b/lib/wine/fakedlls/qmgr.dll new file mode 100644 index 0000000..e2c785d Binary files /dev/null and b/lib/wine/fakedlls/qmgr.dll differ diff --git a/lib/wine/fakedlls/qmgrprxy.dll b/lib/wine/fakedlls/qmgrprxy.dll new file mode 100644 index 0000000..7a9a13f Binary files /dev/null and b/lib/wine/fakedlls/qmgrprxy.dll differ diff --git a/lib/wine/fakedlls/quartz.dll b/lib/wine/fakedlls/quartz.dll new file mode 100644 index 0000000..aa72b70 Binary files /dev/null and b/lib/wine/fakedlls/quartz.dll differ diff --git a/lib/wine/fakedlls/query.dll b/lib/wine/fakedlls/query.dll new file mode 100644 index 0000000..32ed899 Binary files /dev/null and b/lib/wine/fakedlls/query.dll differ diff --git a/lib/wine/fakedlls/qwave.dll b/lib/wine/fakedlls/qwave.dll new file mode 100644 index 0000000..bfa368f Binary files /dev/null and b/lib/wine/fakedlls/qwave.dll differ diff --git a/lib/wine/fakedlls/rasapi16.dll16 b/lib/wine/fakedlls/rasapi16.dll16 new file mode 100644 index 0000000..074e003 Binary files /dev/null and b/lib/wine/fakedlls/rasapi16.dll16 differ diff --git a/lib/wine/fakedlls/rasapi32.dll b/lib/wine/fakedlls/rasapi32.dll new file mode 100644 index 0000000..7429645 Binary files /dev/null and b/lib/wine/fakedlls/rasapi32.dll differ diff --git a/lib/wine/fakedlls/rasdlg.dll b/lib/wine/fakedlls/rasdlg.dll new file mode 100644 index 0000000..8069a10 Binary files /dev/null and b/lib/wine/fakedlls/rasdlg.dll differ diff --git a/lib/wine/fakedlls/reg.exe b/lib/wine/fakedlls/reg.exe new file mode 100644 index 0000000..46a7193 Binary files /dev/null and b/lib/wine/fakedlls/reg.exe differ diff --git a/lib/wine/fakedlls/regapi.dll b/lib/wine/fakedlls/regapi.dll new file mode 100644 index 0000000..28e92da Binary files /dev/null and b/lib/wine/fakedlls/regapi.dll differ diff --git a/lib/wine/fakedlls/regasm.exe b/lib/wine/fakedlls/regasm.exe new file mode 100644 index 0000000..448bbff Binary files /dev/null and b/lib/wine/fakedlls/regasm.exe differ diff --git a/lib/wine/fakedlls/regedit.exe b/lib/wine/fakedlls/regedit.exe new file mode 100644 index 0000000..a4e8a75 Binary files /dev/null and b/lib/wine/fakedlls/regedit.exe differ diff --git a/lib/wine/fakedlls/regsvcs.exe b/lib/wine/fakedlls/regsvcs.exe new file mode 100644 index 0000000..448bbff Binary files /dev/null and b/lib/wine/fakedlls/regsvcs.exe differ diff --git a/lib/wine/fakedlls/regsvr32.exe b/lib/wine/fakedlls/regsvr32.exe new file mode 100644 index 0000000..19a1c39 Binary files /dev/null and b/lib/wine/fakedlls/regsvr32.exe differ diff --git a/lib/wine/fakedlls/resutils.dll b/lib/wine/fakedlls/resutils.dll new file mode 100644 index 0000000..b11079b Binary files /dev/null and b/lib/wine/fakedlls/resutils.dll differ diff --git a/lib/wine/fakedlls/riched20.dll b/lib/wine/fakedlls/riched20.dll new file mode 100644 index 0000000..2a43743 Binary files /dev/null and b/lib/wine/fakedlls/riched20.dll differ diff --git a/lib/wine/fakedlls/riched32.dll b/lib/wine/fakedlls/riched32.dll new file mode 100644 index 0000000..ec145de Binary files /dev/null and b/lib/wine/fakedlls/riched32.dll differ diff --git a/lib/wine/fakedlls/rpcrt4.dll b/lib/wine/fakedlls/rpcrt4.dll new file mode 100644 index 0000000..d511cda Binary files /dev/null and b/lib/wine/fakedlls/rpcrt4.dll differ diff --git a/lib/wine/fakedlls/rpcss.exe b/lib/wine/fakedlls/rpcss.exe new file mode 100644 index 0000000..448bbff Binary files /dev/null and b/lib/wine/fakedlls/rpcss.exe differ diff --git a/lib/wine/fakedlls/rsabase.dll b/lib/wine/fakedlls/rsabase.dll new file mode 100644 index 0000000..2e424b6 Binary files /dev/null and b/lib/wine/fakedlls/rsabase.dll differ diff --git a/lib/wine/fakedlls/rsaenh.dll b/lib/wine/fakedlls/rsaenh.dll new file mode 100644 index 0000000..663d0bb Binary files /dev/null and b/lib/wine/fakedlls/rsaenh.dll differ diff --git a/lib/wine/fakedlls/rstrtmgr.dll b/lib/wine/fakedlls/rstrtmgr.dll new file mode 100644 index 0000000..e46e8b8 Binary files /dev/null and b/lib/wine/fakedlls/rstrtmgr.dll differ diff --git a/lib/wine/fakedlls/rtutils.dll b/lib/wine/fakedlls/rtutils.dll new file mode 100644 index 0000000..75b1f70 Binary files /dev/null and b/lib/wine/fakedlls/rtutils.dll differ diff --git a/lib/wine/fakedlls/runas.exe b/lib/wine/fakedlls/runas.exe new file mode 100644 index 0000000..2a3594e Binary files /dev/null and b/lib/wine/fakedlls/runas.exe differ diff --git a/lib/wine/fakedlls/rundll.exe16 b/lib/wine/fakedlls/rundll.exe16 new file mode 100644 index 0000000..33c393e Binary files /dev/null and b/lib/wine/fakedlls/rundll.exe16 differ diff --git a/lib/wine/fakedlls/rundll32.exe b/lib/wine/fakedlls/rundll32.exe new file mode 100644 index 0000000..532d4a1 Binary files /dev/null and b/lib/wine/fakedlls/rundll32.exe differ diff --git a/lib/wine/fakedlls/samlib.dll b/lib/wine/fakedlls/samlib.dll new file mode 100644 index 0000000..b81c00f Binary files /dev/null and b/lib/wine/fakedlls/samlib.dll differ diff --git a/lib/wine/fakedlls/sane.ds b/lib/wine/fakedlls/sane.ds new file mode 100644 index 0000000..b10054d Binary files /dev/null and b/lib/wine/fakedlls/sane.ds differ diff --git a/lib/wine/fakedlls/sapi.dll b/lib/wine/fakedlls/sapi.dll new file mode 100644 index 0000000..bd27476 Binary files /dev/null and b/lib/wine/fakedlls/sapi.dll differ diff --git a/lib/wine/fakedlls/sas.dll b/lib/wine/fakedlls/sas.dll new file mode 100644 index 0000000..d7a464b Binary files /dev/null and b/lib/wine/fakedlls/sas.dll differ diff --git a/lib/wine/fakedlls/sc.exe b/lib/wine/fakedlls/sc.exe new file mode 100644 index 0000000..448bbff Binary files /dev/null and b/lib/wine/fakedlls/sc.exe differ diff --git a/lib/wine/fakedlls/scarddlg.dll b/lib/wine/fakedlls/scarddlg.dll new file mode 100644 index 0000000..e7fdb4d Binary files /dev/null and b/lib/wine/fakedlls/scarddlg.dll differ diff --git a/lib/wine/fakedlls/sccbase.dll b/lib/wine/fakedlls/sccbase.dll new file mode 100644 index 0000000..3227e17 Binary files /dev/null and b/lib/wine/fakedlls/sccbase.dll differ diff --git a/lib/wine/fakedlls/schannel.dll b/lib/wine/fakedlls/schannel.dll new file mode 100644 index 0000000..9e00f3c Binary files /dev/null and b/lib/wine/fakedlls/schannel.dll differ diff --git a/lib/wine/fakedlls/schedsvc.dll b/lib/wine/fakedlls/schedsvc.dll new file mode 100644 index 0000000..6b98c4c Binary files /dev/null and b/lib/wine/fakedlls/schedsvc.dll differ diff --git a/lib/wine/fakedlls/schtasks.exe b/lib/wine/fakedlls/schtasks.exe new file mode 100644 index 0000000..448bbff Binary files /dev/null and b/lib/wine/fakedlls/schtasks.exe differ diff --git a/lib/wine/fakedlls/scrobj.dll b/lib/wine/fakedlls/scrobj.dll new file mode 100644 index 0000000..ed6a781 Binary files /dev/null and b/lib/wine/fakedlls/scrobj.dll differ diff --git a/lib/wine/fakedlls/scrrun.dll b/lib/wine/fakedlls/scrrun.dll new file mode 100644 index 0000000..be0a02b Binary files /dev/null and b/lib/wine/fakedlls/scrrun.dll differ diff --git a/lib/wine/fakedlls/scsiport.sys b/lib/wine/fakedlls/scsiport.sys new file mode 100644 index 0000000..9fa4489 Binary files /dev/null and b/lib/wine/fakedlls/scsiport.sys differ diff --git a/lib/wine/fakedlls/sdbinst.exe b/lib/wine/fakedlls/sdbinst.exe new file mode 100644 index 0000000..448bbff Binary files /dev/null and b/lib/wine/fakedlls/sdbinst.exe differ diff --git a/lib/wine/fakedlls/secedit.exe b/lib/wine/fakedlls/secedit.exe new file mode 100644 index 0000000..448bbff Binary files /dev/null and b/lib/wine/fakedlls/secedit.exe differ diff --git a/lib/wine/fakedlls/secur32.dll b/lib/wine/fakedlls/secur32.dll new file mode 100644 index 0000000..2eaf2fe Binary files /dev/null and b/lib/wine/fakedlls/secur32.dll differ diff --git a/lib/wine/fakedlls/security.dll b/lib/wine/fakedlls/security.dll new file mode 100644 index 0000000..2239dc8 Binary files /dev/null and b/lib/wine/fakedlls/security.dll differ diff --git a/lib/wine/fakedlls/sensapi.dll b/lib/wine/fakedlls/sensapi.dll new file mode 100644 index 0000000..4274217 Binary files /dev/null and b/lib/wine/fakedlls/sensapi.dll differ diff --git a/lib/wine/fakedlls/serialui.dll b/lib/wine/fakedlls/serialui.dll new file mode 100644 index 0000000..c09d203 Binary files /dev/null and b/lib/wine/fakedlls/serialui.dll differ diff --git a/lib/wine/fakedlls/servicemodelreg.exe b/lib/wine/fakedlls/servicemodelreg.exe new file mode 100644 index 0000000..448bbff Binary files /dev/null and b/lib/wine/fakedlls/servicemodelreg.exe differ diff --git a/lib/wine/fakedlls/services.exe b/lib/wine/fakedlls/services.exe new file mode 100644 index 0000000..448bbff Binary files /dev/null and b/lib/wine/fakedlls/services.exe differ diff --git a/lib/wine/fakedlls/setupapi.dll b/lib/wine/fakedlls/setupapi.dll new file mode 100644 index 0000000..730d6f9 Binary files /dev/null and b/lib/wine/fakedlls/setupapi.dll differ diff --git a/lib/wine/fakedlls/setupx.dll16 b/lib/wine/fakedlls/setupx.dll16 new file mode 100644 index 0000000..cd6e825 Binary files /dev/null and b/lib/wine/fakedlls/setupx.dll16 differ diff --git a/lib/wine/fakedlls/sfc.dll b/lib/wine/fakedlls/sfc.dll new file mode 100644 index 0000000..e68cf9d Binary files /dev/null and b/lib/wine/fakedlls/sfc.dll differ diff --git a/lib/wine/fakedlls/sfc_os.dll b/lib/wine/fakedlls/sfc_os.dll new file mode 100644 index 0000000..538832e Binary files /dev/null and b/lib/wine/fakedlls/sfc_os.dll differ diff --git a/lib/wine/fakedlls/shcore.dll b/lib/wine/fakedlls/shcore.dll new file mode 100644 index 0000000..0abc497 Binary files /dev/null and b/lib/wine/fakedlls/shcore.dll differ diff --git a/lib/wine/fakedlls/shdoclc.dll b/lib/wine/fakedlls/shdoclc.dll new file mode 100644 index 0000000..6b47a47 Binary files /dev/null and b/lib/wine/fakedlls/shdoclc.dll differ diff --git a/lib/wine/fakedlls/shdocvw.dll b/lib/wine/fakedlls/shdocvw.dll new file mode 100644 index 0000000..681624a Binary files /dev/null and b/lib/wine/fakedlls/shdocvw.dll differ diff --git a/lib/wine/fakedlls/shell.dll16 b/lib/wine/fakedlls/shell.dll16 new file mode 100644 index 0000000..44d5358 Binary files /dev/null and b/lib/wine/fakedlls/shell.dll16 differ diff --git a/lib/wine/fakedlls/shell32.dll b/lib/wine/fakedlls/shell32.dll new file mode 100644 index 0000000..79abf6b Binary files /dev/null and b/lib/wine/fakedlls/shell32.dll differ diff --git a/lib/wine/fakedlls/shfolder.dll b/lib/wine/fakedlls/shfolder.dll new file mode 100644 index 0000000..a42ef1a Binary files /dev/null and b/lib/wine/fakedlls/shfolder.dll differ diff --git a/lib/wine/fakedlls/shlwapi.dll b/lib/wine/fakedlls/shlwapi.dll new file mode 100644 index 0000000..b64b47d Binary files /dev/null and b/lib/wine/fakedlls/shlwapi.dll differ diff --git a/lib/wine/fakedlls/shutdown.exe b/lib/wine/fakedlls/shutdown.exe new file mode 100644 index 0000000..448bbff Binary files /dev/null and b/lib/wine/fakedlls/shutdown.exe differ diff --git a/lib/wine/fakedlls/slbcsp.dll b/lib/wine/fakedlls/slbcsp.dll new file mode 100644 index 0000000..69dc81c Binary files /dev/null and b/lib/wine/fakedlls/slbcsp.dll differ diff --git a/lib/wine/fakedlls/slc.dll b/lib/wine/fakedlls/slc.dll new file mode 100644 index 0000000..058f065 Binary files /dev/null and b/lib/wine/fakedlls/slc.dll differ diff --git a/lib/wine/fakedlls/snmpapi.dll b/lib/wine/fakedlls/snmpapi.dll new file mode 100644 index 0000000..2f5acf5 Binary files /dev/null and b/lib/wine/fakedlls/snmpapi.dll differ diff --git a/lib/wine/fakedlls/softpub.dll b/lib/wine/fakedlls/softpub.dll new file mode 100644 index 0000000..7fe40f3 Binary files /dev/null and b/lib/wine/fakedlls/softpub.dll differ diff --git a/lib/wine/fakedlls/sound.drv16 b/lib/wine/fakedlls/sound.drv16 new file mode 100644 index 0000000..31f573f Binary files /dev/null and b/lib/wine/fakedlls/sound.drv16 differ diff --git a/lib/wine/fakedlls/spoolss.dll b/lib/wine/fakedlls/spoolss.dll new file mode 100644 index 0000000..2a501d2 Binary files /dev/null and b/lib/wine/fakedlls/spoolss.dll differ diff --git a/lib/wine/fakedlls/spoolsv.exe b/lib/wine/fakedlls/spoolsv.exe new file mode 100644 index 0000000..448bbff Binary files /dev/null and b/lib/wine/fakedlls/spoolsv.exe differ diff --git a/lib/wine/fakedlls/srclient.dll b/lib/wine/fakedlls/srclient.dll new file mode 100644 index 0000000..8869e0c Binary files /dev/null and b/lib/wine/fakedlls/srclient.dll differ diff --git a/lib/wine/fakedlls/sspicli.dll b/lib/wine/fakedlls/sspicli.dll new file mode 100644 index 0000000..d82bf56 Binary files /dev/null and b/lib/wine/fakedlls/sspicli.dll differ diff --git a/lib/wine/fakedlls/start.exe b/lib/wine/fakedlls/start.exe new file mode 100644 index 0000000..66537b6 Binary files /dev/null and b/lib/wine/fakedlls/start.exe differ diff --git a/lib/wine/fakedlls/stdole2.tlb b/lib/wine/fakedlls/stdole2.tlb new file mode 100644 index 0000000..54a2a70 Binary files /dev/null and b/lib/wine/fakedlls/stdole2.tlb differ diff --git a/lib/wine/fakedlls/stdole32.tlb b/lib/wine/fakedlls/stdole32.tlb new file mode 100644 index 0000000..0c99ed2 Binary files /dev/null and b/lib/wine/fakedlls/stdole32.tlb differ diff --git a/lib/wine/fakedlls/sti.dll b/lib/wine/fakedlls/sti.dll new file mode 100644 index 0000000..5d25e6b Binary files /dev/null and b/lib/wine/fakedlls/sti.dll differ diff --git a/lib/wine/fakedlls/storage.dll16 b/lib/wine/fakedlls/storage.dll16 new file mode 100644 index 0000000..d8ff6b1 Binary files /dev/null and b/lib/wine/fakedlls/storage.dll16 differ diff --git a/lib/wine/fakedlls/stress.dll16 b/lib/wine/fakedlls/stress.dll16 new file mode 100644 index 0000000..7470a67 Binary files /dev/null and b/lib/wine/fakedlls/stress.dll16 differ diff --git a/lib/wine/fakedlls/strmdll.dll b/lib/wine/fakedlls/strmdll.dll new file mode 100644 index 0000000..a67df1f Binary files /dev/null and b/lib/wine/fakedlls/strmdll.dll differ diff --git a/lib/wine/fakedlls/subst.exe b/lib/wine/fakedlls/subst.exe new file mode 100644 index 0000000..448bbff Binary files /dev/null and b/lib/wine/fakedlls/subst.exe differ diff --git a/lib/wine/fakedlls/svchost.exe b/lib/wine/fakedlls/svchost.exe new file mode 100644 index 0000000..448bbff Binary files /dev/null and b/lib/wine/fakedlls/svchost.exe differ diff --git a/lib/wine/fakedlls/svrapi.dll b/lib/wine/fakedlls/svrapi.dll new file mode 100644 index 0000000..c8a84a0 Binary files /dev/null and b/lib/wine/fakedlls/svrapi.dll differ diff --git a/lib/wine/fakedlls/sxs.dll b/lib/wine/fakedlls/sxs.dll new file mode 100644 index 0000000..74e4d11 Binary files /dev/null and b/lib/wine/fakedlls/sxs.dll differ diff --git a/lib/wine/fakedlls/system.drv16 b/lib/wine/fakedlls/system.drv16 new file mode 100644 index 0000000..7ebebeb Binary files /dev/null and b/lib/wine/fakedlls/system.drv16 differ diff --git a/lib/wine/fakedlls/systeminfo.exe b/lib/wine/fakedlls/systeminfo.exe new file mode 100644 index 0000000..448bbff Binary files /dev/null and b/lib/wine/fakedlls/systeminfo.exe differ diff --git a/lib/wine/fakedlls/t2embed.dll b/lib/wine/fakedlls/t2embed.dll new file mode 100644 index 0000000..1bd4251 Binary files /dev/null and b/lib/wine/fakedlls/t2embed.dll differ diff --git a/lib/wine/fakedlls/tapi32.dll b/lib/wine/fakedlls/tapi32.dll new file mode 100644 index 0000000..75a0eb7 Binary files /dev/null and b/lib/wine/fakedlls/tapi32.dll differ diff --git a/lib/wine/fakedlls/taskkill.exe b/lib/wine/fakedlls/taskkill.exe new file mode 100644 index 0000000..754eaa8 Binary files /dev/null and b/lib/wine/fakedlls/taskkill.exe differ diff --git a/lib/wine/fakedlls/tasklist.exe b/lib/wine/fakedlls/tasklist.exe new file mode 100644 index 0000000..5db0975 Binary files /dev/null and b/lib/wine/fakedlls/tasklist.exe differ diff --git a/lib/wine/fakedlls/taskmgr.exe b/lib/wine/fakedlls/taskmgr.exe new file mode 100644 index 0000000..00fb6cb Binary files /dev/null and b/lib/wine/fakedlls/taskmgr.exe differ diff --git a/lib/wine/fakedlls/taskschd.dll b/lib/wine/fakedlls/taskschd.dll new file mode 100644 index 0000000..6c6fb61 Binary files /dev/null and b/lib/wine/fakedlls/taskschd.dll differ diff --git a/lib/wine/fakedlls/tdh.dll b/lib/wine/fakedlls/tdh.dll new file mode 100644 index 0000000..9677ead Binary files /dev/null and b/lib/wine/fakedlls/tdh.dll differ diff --git a/lib/wine/fakedlls/tdi.sys b/lib/wine/fakedlls/tdi.sys new file mode 100644 index 0000000..9fa4489 Binary files /dev/null and b/lib/wine/fakedlls/tdi.sys differ diff --git a/lib/wine/fakedlls/termsv.exe b/lib/wine/fakedlls/termsv.exe new file mode 100644 index 0000000..448bbff Binary files /dev/null and b/lib/wine/fakedlls/termsv.exe differ diff --git a/lib/wine/fakedlls/toolhelp.dll16 b/lib/wine/fakedlls/toolhelp.dll16 new file mode 100644 index 0000000..69e93a9 Binary files /dev/null and b/lib/wine/fakedlls/toolhelp.dll16 differ diff --git a/lib/wine/fakedlls/traffic.dll b/lib/wine/fakedlls/traffic.dll new file mode 100644 index 0000000..48db7c0 Binary files /dev/null and b/lib/wine/fakedlls/traffic.dll differ diff --git a/lib/wine/fakedlls/twain.dll16 b/lib/wine/fakedlls/twain.dll16 new file mode 100644 index 0000000..3ecb916 Binary files /dev/null and b/lib/wine/fakedlls/twain.dll16 differ diff --git a/lib/wine/fakedlls/twain_32.dll b/lib/wine/fakedlls/twain_32.dll new file mode 100644 index 0000000..8575475 Binary files /dev/null and b/lib/wine/fakedlls/twain_32.dll differ diff --git a/lib/wine/fakedlls/typelib.dll16 b/lib/wine/fakedlls/typelib.dll16 new file mode 100644 index 0000000..9ea360d Binary files /dev/null and b/lib/wine/fakedlls/typelib.dll16 differ diff --git a/lib/wine/fakedlls/tzres.dll b/lib/wine/fakedlls/tzres.dll new file mode 100644 index 0000000..ec610d4 Binary files /dev/null and b/lib/wine/fakedlls/tzres.dll differ diff --git a/lib/wine/fakedlls/ucrtbase.dll b/lib/wine/fakedlls/ucrtbase.dll new file mode 100644 index 0000000..580a73e Binary files /dev/null and b/lib/wine/fakedlls/ucrtbase.dll differ diff --git a/lib/wine/fakedlls/uianimation.dll b/lib/wine/fakedlls/uianimation.dll new file mode 100644 index 0000000..4fbf216 Binary files /dev/null and b/lib/wine/fakedlls/uianimation.dll differ diff --git a/lib/wine/fakedlls/uiautomationcore.dll b/lib/wine/fakedlls/uiautomationcore.dll new file mode 100644 index 0000000..e6ca3a1 Binary files /dev/null and b/lib/wine/fakedlls/uiautomationcore.dll differ diff --git a/lib/wine/fakedlls/uiribbon.dll b/lib/wine/fakedlls/uiribbon.dll new file mode 100644 index 0000000..f81f5c9 Binary files /dev/null and b/lib/wine/fakedlls/uiribbon.dll differ diff --git a/lib/wine/fakedlls/unicows.dll b/lib/wine/fakedlls/unicows.dll new file mode 100644 index 0000000..a770fb9 Binary files /dev/null and b/lib/wine/fakedlls/unicows.dll differ diff --git a/lib/wine/fakedlls/uninstaller.exe b/lib/wine/fakedlls/uninstaller.exe new file mode 100644 index 0000000..64a53f2 Binary files /dev/null and b/lib/wine/fakedlls/uninstaller.exe differ diff --git a/lib/wine/fakedlls/unlodctr.exe b/lib/wine/fakedlls/unlodctr.exe new file mode 100644 index 0000000..448bbff Binary files /dev/null and b/lib/wine/fakedlls/unlodctr.exe differ diff --git a/lib/wine/fakedlls/updspapi.dll b/lib/wine/fakedlls/updspapi.dll new file mode 100644 index 0000000..4eaa015 Binary files /dev/null and b/lib/wine/fakedlls/updspapi.dll differ diff --git a/lib/wine/fakedlls/url.dll b/lib/wine/fakedlls/url.dll new file mode 100644 index 0000000..a2e1e28 Binary files /dev/null and b/lib/wine/fakedlls/url.dll differ diff --git a/lib/wine/fakedlls/urlmon.dll b/lib/wine/fakedlls/urlmon.dll new file mode 100644 index 0000000..c80f5a3 Binary files /dev/null and b/lib/wine/fakedlls/urlmon.dll differ diff --git a/lib/wine/fakedlls/usbd.sys b/lib/wine/fakedlls/usbd.sys new file mode 100644 index 0000000..9fa4489 Binary files /dev/null and b/lib/wine/fakedlls/usbd.sys differ diff --git a/lib/wine/fakedlls/user.exe16 b/lib/wine/fakedlls/user.exe16 new file mode 100644 index 0000000..5e99c95 Binary files /dev/null and b/lib/wine/fakedlls/user.exe16 differ diff --git a/lib/wine/fakedlls/user32.dll b/lib/wine/fakedlls/user32.dll new file mode 100644 index 0000000..4fe3693 Binary files /dev/null and b/lib/wine/fakedlls/user32.dll differ diff --git a/lib/wine/fakedlls/userenv.dll b/lib/wine/fakedlls/userenv.dll new file mode 100644 index 0000000..4675c42 Binary files /dev/null and b/lib/wine/fakedlls/userenv.dll differ diff --git a/lib/wine/fakedlls/usp10.dll b/lib/wine/fakedlls/usp10.dll new file mode 100644 index 0000000..7ecc7e5 Binary files /dev/null and b/lib/wine/fakedlls/usp10.dll differ diff --git a/lib/wine/fakedlls/uxtheme.dll b/lib/wine/fakedlls/uxtheme.dll new file mode 100644 index 0000000..4d0d184 Binary files /dev/null and b/lib/wine/fakedlls/uxtheme.dll differ diff --git a/lib/wine/fakedlls/vbscript.dll b/lib/wine/fakedlls/vbscript.dll new file mode 100644 index 0000000..e6ee6a0 Binary files /dev/null and b/lib/wine/fakedlls/vbscript.dll differ diff --git a/lib/wine/fakedlls/vcomp.dll b/lib/wine/fakedlls/vcomp.dll new file mode 100644 index 0000000..857d702 Binary files /dev/null and b/lib/wine/fakedlls/vcomp.dll differ diff --git a/lib/wine/fakedlls/vcomp100.dll b/lib/wine/fakedlls/vcomp100.dll new file mode 100644 index 0000000..cefe134 Binary files /dev/null and b/lib/wine/fakedlls/vcomp100.dll differ diff --git a/lib/wine/fakedlls/vcomp110.dll b/lib/wine/fakedlls/vcomp110.dll new file mode 100644 index 0000000..544a574 Binary files /dev/null and b/lib/wine/fakedlls/vcomp110.dll differ diff --git a/lib/wine/fakedlls/vcomp120.dll b/lib/wine/fakedlls/vcomp120.dll new file mode 100644 index 0000000..3a37806 Binary files /dev/null and b/lib/wine/fakedlls/vcomp120.dll differ diff --git a/lib/wine/fakedlls/vcomp140.dll b/lib/wine/fakedlls/vcomp140.dll new file mode 100644 index 0000000..4d5ee5e Binary files /dev/null and b/lib/wine/fakedlls/vcomp140.dll differ diff --git a/lib/wine/fakedlls/vcomp90.dll b/lib/wine/fakedlls/vcomp90.dll new file mode 100644 index 0000000..7ce0293 Binary files /dev/null and b/lib/wine/fakedlls/vcomp90.dll differ diff --git a/lib/wine/fakedlls/vcruntime140.dll b/lib/wine/fakedlls/vcruntime140.dll new file mode 100644 index 0000000..d427db9 Binary files /dev/null and b/lib/wine/fakedlls/vcruntime140.dll differ diff --git a/lib/wine/fakedlls/vdhcp.vxd b/lib/wine/fakedlls/vdhcp.vxd new file mode 100644 index 0000000..414d67a Binary files /dev/null and b/lib/wine/fakedlls/vdhcp.vxd differ diff --git a/lib/wine/fakedlls/vdmdbg.dll b/lib/wine/fakedlls/vdmdbg.dll new file mode 100644 index 0000000..d58d949 Binary files /dev/null and b/lib/wine/fakedlls/vdmdbg.dll differ diff --git a/lib/wine/fakedlls/ver.dll16 b/lib/wine/fakedlls/ver.dll16 new file mode 100644 index 0000000..b2b6ac3 Binary files /dev/null and b/lib/wine/fakedlls/ver.dll16 differ diff --git a/lib/wine/fakedlls/version.dll b/lib/wine/fakedlls/version.dll new file mode 100644 index 0000000..440c933 Binary files /dev/null and b/lib/wine/fakedlls/version.dll differ diff --git a/lib/wine/fakedlls/view.exe b/lib/wine/fakedlls/view.exe new file mode 100644 index 0000000..3de4f88 Binary files /dev/null and b/lib/wine/fakedlls/view.exe differ diff --git a/lib/wine/fakedlls/virtdisk.dll b/lib/wine/fakedlls/virtdisk.dll new file mode 100644 index 0000000..f3fde7f Binary files /dev/null and b/lib/wine/fakedlls/virtdisk.dll differ diff --git a/lib/wine/fakedlls/vmm.vxd b/lib/wine/fakedlls/vmm.vxd new file mode 100644 index 0000000..9568e61 Binary files /dev/null and b/lib/wine/fakedlls/vmm.vxd differ diff --git a/lib/wine/fakedlls/vnbt.vxd b/lib/wine/fakedlls/vnbt.vxd new file mode 100644 index 0000000..75e3b7b Binary files /dev/null and b/lib/wine/fakedlls/vnbt.vxd differ diff --git a/lib/wine/fakedlls/vnetbios.vxd b/lib/wine/fakedlls/vnetbios.vxd new file mode 100644 index 0000000..397f4c6 Binary files /dev/null and b/lib/wine/fakedlls/vnetbios.vxd differ diff --git a/lib/wine/fakedlls/vssapi.dll b/lib/wine/fakedlls/vssapi.dll new file mode 100644 index 0000000..4ffec47 Binary files /dev/null and b/lib/wine/fakedlls/vssapi.dll differ diff --git a/lib/wine/fakedlls/vtdapi.vxd b/lib/wine/fakedlls/vtdapi.vxd new file mode 100644 index 0000000..ea554c1 Binary files /dev/null and b/lib/wine/fakedlls/vtdapi.vxd differ diff --git a/lib/wine/fakedlls/vulkan-1.dll b/lib/wine/fakedlls/vulkan-1.dll new file mode 100644 index 0000000..31cc4b4 Binary files /dev/null and b/lib/wine/fakedlls/vulkan-1.dll differ diff --git a/lib/wine/fakedlls/vwin32.vxd b/lib/wine/fakedlls/vwin32.vxd new file mode 100644 index 0000000..a03dead Binary files /dev/null and b/lib/wine/fakedlls/vwin32.vxd differ diff --git a/lib/wine/fakedlls/w32skrnl.dll b/lib/wine/fakedlls/w32skrnl.dll new file mode 100644 index 0000000..87c954b Binary files /dev/null and b/lib/wine/fakedlls/w32skrnl.dll differ diff --git a/lib/wine/fakedlls/w32sys.dll16 b/lib/wine/fakedlls/w32sys.dll16 new file mode 100644 index 0000000..2d4fcf2 Binary files /dev/null and b/lib/wine/fakedlls/w32sys.dll16 differ diff --git a/lib/wine/fakedlls/wbemdisp.dll b/lib/wine/fakedlls/wbemdisp.dll new file mode 100644 index 0000000..bc00834 Binary files /dev/null and b/lib/wine/fakedlls/wbemdisp.dll differ diff --git a/lib/wine/fakedlls/wbemprox.dll b/lib/wine/fakedlls/wbemprox.dll new file mode 100644 index 0000000..da8ae33 Binary files /dev/null and b/lib/wine/fakedlls/wbemprox.dll differ diff --git a/lib/wine/fakedlls/wdscore.dll b/lib/wine/fakedlls/wdscore.dll new file mode 100644 index 0000000..349e052 Binary files /dev/null and b/lib/wine/fakedlls/wdscore.dll differ diff --git a/lib/wine/fakedlls/webservices.dll b/lib/wine/fakedlls/webservices.dll new file mode 100644 index 0000000..c7dcf2f Binary files /dev/null and b/lib/wine/fakedlls/webservices.dll differ diff --git a/lib/wine/fakedlls/wer.dll b/lib/wine/fakedlls/wer.dll new file mode 100644 index 0000000..bead989 Binary files /dev/null and b/lib/wine/fakedlls/wer.dll differ diff --git a/lib/wine/fakedlls/wevtapi.dll b/lib/wine/fakedlls/wevtapi.dll new file mode 100644 index 0000000..d9e79bc Binary files /dev/null and b/lib/wine/fakedlls/wevtapi.dll differ diff --git a/lib/wine/fakedlls/wevtutil.exe b/lib/wine/fakedlls/wevtutil.exe new file mode 100644 index 0000000..448bbff Binary files /dev/null and b/lib/wine/fakedlls/wevtutil.exe differ diff --git a/lib/wine/fakedlls/wiaservc.dll b/lib/wine/fakedlls/wiaservc.dll new file mode 100644 index 0000000..130b31d Binary files /dev/null and b/lib/wine/fakedlls/wiaservc.dll differ diff --git a/lib/wine/fakedlls/wimgapi.dll b/lib/wine/fakedlls/wimgapi.dll new file mode 100644 index 0000000..d58ae5c Binary files /dev/null and b/lib/wine/fakedlls/wimgapi.dll differ diff --git a/lib/wine/fakedlls/win32k.sys b/lib/wine/fakedlls/win32k.sys new file mode 100644 index 0000000..9fa4489 Binary files /dev/null and b/lib/wine/fakedlls/win32k.sys differ diff --git a/lib/wine/fakedlls/win32s16.dll16 b/lib/wine/fakedlls/win32s16.dll16 new file mode 100644 index 0000000..23b8ef1 Binary files /dev/null and b/lib/wine/fakedlls/win32s16.dll16 differ diff --git a/lib/wine/fakedlls/win87em.dll16 b/lib/wine/fakedlls/win87em.dll16 new file mode 100644 index 0000000..230f026 Binary files /dev/null and b/lib/wine/fakedlls/win87em.dll16 differ diff --git a/lib/wine/fakedlls/winaspi.dll16 b/lib/wine/fakedlls/winaspi.dll16 new file mode 100644 index 0000000..1977f48 Binary files /dev/null and b/lib/wine/fakedlls/winaspi.dll16 differ diff --git a/lib/wine/fakedlls/windebug.dll16 b/lib/wine/fakedlls/windebug.dll16 new file mode 100644 index 0000000..0cfe7f2 Binary files /dev/null and b/lib/wine/fakedlls/windebug.dll16 differ diff --git a/lib/wine/fakedlls/windowscodecs.dll b/lib/wine/fakedlls/windowscodecs.dll new file mode 100644 index 0000000..32aea2a Binary files /dev/null and b/lib/wine/fakedlls/windowscodecs.dll differ diff --git a/lib/wine/fakedlls/windowscodecsext.dll b/lib/wine/fakedlls/windowscodecsext.dll new file mode 100644 index 0000000..749810e Binary files /dev/null and b/lib/wine/fakedlls/windowscodecsext.dll differ diff --git a/lib/wine/fakedlls/winealsa.drv b/lib/wine/fakedlls/winealsa.drv new file mode 100644 index 0000000..fbf122b Binary files /dev/null and b/lib/wine/fakedlls/winealsa.drv differ diff --git a/lib/wine/fakedlls/wineboot.exe b/lib/wine/fakedlls/wineboot.exe new file mode 100644 index 0000000..c23178f Binary files /dev/null and b/lib/wine/fakedlls/wineboot.exe differ diff --git a/lib/wine/fakedlls/winebrowser.exe b/lib/wine/fakedlls/winebrowser.exe new file mode 100644 index 0000000..532d4a1 Binary files /dev/null and b/lib/wine/fakedlls/winebrowser.exe differ diff --git a/lib/wine/fakedlls/winebus.sys b/lib/wine/fakedlls/winebus.sys new file mode 100644 index 0000000..9fa4489 Binary files /dev/null and b/lib/wine/fakedlls/winebus.sys differ diff --git a/lib/wine/fakedlls/winecfg.exe b/lib/wine/fakedlls/winecfg.exe new file mode 100644 index 0000000..1cd55be Binary files /dev/null and b/lib/wine/fakedlls/winecfg.exe differ diff --git a/lib/wine/fakedlls/wineconsole.exe b/lib/wine/fakedlls/wineconsole.exe new file mode 100644 index 0000000..5babee5 Binary files /dev/null and b/lib/wine/fakedlls/wineconsole.exe differ diff --git a/lib/wine/fakedlls/wined3d.dll b/lib/wine/fakedlls/wined3d.dll new file mode 100644 index 0000000..947bbab Binary files /dev/null and b/lib/wine/fakedlls/wined3d.dll differ diff --git a/lib/wine/fakedlls/winedbg.exe b/lib/wine/fakedlls/winedbg.exe new file mode 100644 index 0000000..69f5cba Binary files /dev/null and b/lib/wine/fakedlls/winedbg.exe differ diff --git a/lib/wine/fakedlls/winedevice.exe b/lib/wine/fakedlls/winedevice.exe new file mode 100644 index 0000000..532d4a1 Binary files /dev/null and b/lib/wine/fakedlls/winedevice.exe differ diff --git a/lib/wine/fakedlls/winefile.exe b/lib/wine/fakedlls/winefile.exe new file mode 100644 index 0000000..b4e44b9 Binary files /dev/null and b/lib/wine/fakedlls/winefile.exe differ diff --git a/lib/wine/fakedlls/winegstreamer.dll b/lib/wine/fakedlls/winegstreamer.dll new file mode 100644 index 0000000..e9e0acc Binary files /dev/null and b/lib/wine/fakedlls/winegstreamer.dll differ diff --git a/lib/wine/fakedlls/winehid.sys b/lib/wine/fakedlls/winehid.sys new file mode 100644 index 0000000..9fa4489 Binary files /dev/null and b/lib/wine/fakedlls/winehid.sys differ diff --git a/lib/wine/fakedlls/winejoystick.drv b/lib/wine/fakedlls/winejoystick.drv new file mode 100644 index 0000000..83ab43e Binary files /dev/null and b/lib/wine/fakedlls/winejoystick.drv differ diff --git a/lib/wine/fakedlls/winemapi.dll b/lib/wine/fakedlls/winemapi.dll new file mode 100644 index 0000000..d6463a0 Binary files /dev/null and b/lib/wine/fakedlls/winemapi.dll differ diff --git a/lib/wine/fakedlls/winemenubuilder.exe b/lib/wine/fakedlls/winemenubuilder.exe new file mode 100644 index 0000000..532d4a1 Binary files /dev/null and b/lib/wine/fakedlls/winemenubuilder.exe differ diff --git a/lib/wine/fakedlls/winemine.exe b/lib/wine/fakedlls/winemine.exe new file mode 100644 index 0000000..966715f Binary files /dev/null and b/lib/wine/fakedlls/winemine.exe differ diff --git a/lib/wine/fakedlls/winemsibuilder.exe b/lib/wine/fakedlls/winemsibuilder.exe new file mode 100644 index 0000000..448bbff Binary files /dev/null and b/lib/wine/fakedlls/winemsibuilder.exe differ diff --git a/lib/wine/fakedlls/wineoss.drv b/lib/wine/fakedlls/wineoss.drv new file mode 100644 index 0000000..33c4162 Binary files /dev/null and b/lib/wine/fakedlls/wineoss.drv differ diff --git a/lib/wine/fakedlls/winepath.exe b/lib/wine/fakedlls/winepath.exe new file mode 100644 index 0000000..448bbff Binary files /dev/null and b/lib/wine/fakedlls/winepath.exe differ diff --git a/lib/wine/fakedlls/wineps.drv b/lib/wine/fakedlls/wineps.drv new file mode 100644 index 0000000..0386c13 Binary files /dev/null and b/lib/wine/fakedlls/wineps.drv differ diff --git a/lib/wine/fakedlls/wineps16.drv16 b/lib/wine/fakedlls/wineps16.drv16 new file mode 100644 index 0000000..2f8460b Binary files /dev/null and b/lib/wine/fakedlls/wineps16.drv16 differ diff --git a/lib/wine/fakedlls/winepulse.drv b/lib/wine/fakedlls/winepulse.drv new file mode 100644 index 0000000..ac2f3da Binary files /dev/null and b/lib/wine/fakedlls/winepulse.drv differ diff --git a/lib/wine/fakedlls/winevdm.exe b/lib/wine/fakedlls/winevdm.exe new file mode 100644 index 0000000..532d4a1 Binary files /dev/null and b/lib/wine/fakedlls/winevdm.exe differ diff --git a/lib/wine/fakedlls/winevulkan.dll b/lib/wine/fakedlls/winevulkan.dll new file mode 100644 index 0000000..c915a33 Binary files /dev/null and b/lib/wine/fakedlls/winevulkan.dll differ diff --git a/lib/wine/fakedlls/winex11.drv b/lib/wine/fakedlls/winex11.drv new file mode 100644 index 0000000..3d35e66 Binary files /dev/null and b/lib/wine/fakedlls/winex11.drv differ diff --git a/lib/wine/fakedlls/wing.dll16 b/lib/wine/fakedlls/wing.dll16 new file mode 100644 index 0000000..1dbd77c Binary files /dev/null and b/lib/wine/fakedlls/wing.dll16 differ diff --git a/lib/wine/fakedlls/wing32.dll b/lib/wine/fakedlls/wing32.dll new file mode 100644 index 0000000..234b912 Binary files /dev/null and b/lib/wine/fakedlls/wing32.dll differ diff --git a/lib/wine/fakedlls/winhelp.exe16 b/lib/wine/fakedlls/winhelp.exe16 new file mode 100644 index 0000000..68389c0 Binary files /dev/null and b/lib/wine/fakedlls/winhelp.exe16 differ diff --git a/lib/wine/fakedlls/winhlp32.exe b/lib/wine/fakedlls/winhlp32.exe new file mode 100644 index 0000000..ee44942 Binary files /dev/null and b/lib/wine/fakedlls/winhlp32.exe differ diff --git a/lib/wine/fakedlls/winhttp.dll b/lib/wine/fakedlls/winhttp.dll new file mode 100644 index 0000000..0847007 Binary files /dev/null and b/lib/wine/fakedlls/winhttp.dll differ diff --git a/lib/wine/fakedlls/wininet.dll b/lib/wine/fakedlls/wininet.dll new file mode 100644 index 0000000..7980779 Binary files /dev/null and b/lib/wine/fakedlls/wininet.dll differ diff --git a/lib/wine/fakedlls/winmgmt.exe b/lib/wine/fakedlls/winmgmt.exe new file mode 100644 index 0000000..448bbff Binary files /dev/null and b/lib/wine/fakedlls/winmgmt.exe differ diff --git a/lib/wine/fakedlls/winmm.dll b/lib/wine/fakedlls/winmm.dll new file mode 100644 index 0000000..6d4662e Binary files /dev/null and b/lib/wine/fakedlls/winmm.dll differ diff --git a/lib/wine/fakedlls/winnls.dll16 b/lib/wine/fakedlls/winnls.dll16 new file mode 100644 index 0000000..e897ba7 Binary files /dev/null and b/lib/wine/fakedlls/winnls.dll16 differ diff --git a/lib/wine/fakedlls/winnls32.dll b/lib/wine/fakedlls/winnls32.dll new file mode 100644 index 0000000..e8e6328 Binary files /dev/null and b/lib/wine/fakedlls/winnls32.dll differ diff --git a/lib/wine/fakedlls/winoldap.mod16 b/lib/wine/fakedlls/winoldap.mod16 new file mode 100644 index 0000000..87f7e36 Binary files /dev/null and b/lib/wine/fakedlls/winoldap.mod16 differ diff --git a/lib/wine/fakedlls/winscard.dll b/lib/wine/fakedlls/winscard.dll new file mode 100644 index 0000000..71f991e Binary files /dev/null and b/lib/wine/fakedlls/winscard.dll differ diff --git a/lib/wine/fakedlls/winsock.dll16 b/lib/wine/fakedlls/winsock.dll16 new file mode 100644 index 0000000..680ccca Binary files /dev/null and b/lib/wine/fakedlls/winsock.dll16 differ diff --git a/lib/wine/fakedlls/winspool.drv b/lib/wine/fakedlls/winspool.drv new file mode 100644 index 0000000..3b22f8f Binary files /dev/null and b/lib/wine/fakedlls/winspool.drv differ diff --git a/lib/wine/fakedlls/winsta.dll b/lib/wine/fakedlls/winsta.dll new file mode 100644 index 0000000..ec3139a Binary files /dev/null and b/lib/wine/fakedlls/winsta.dll differ diff --git a/lib/wine/fakedlls/wintab.dll16 b/lib/wine/fakedlls/wintab.dll16 new file mode 100644 index 0000000..6cf88e7 Binary files /dev/null and b/lib/wine/fakedlls/wintab.dll16 differ diff --git a/lib/wine/fakedlls/wintab32.dll b/lib/wine/fakedlls/wintab32.dll new file mode 100644 index 0000000..fa1f22c Binary files /dev/null and b/lib/wine/fakedlls/wintab32.dll differ diff --git a/lib/wine/fakedlls/wintrust.dll b/lib/wine/fakedlls/wintrust.dll new file mode 100644 index 0000000..fbbbae6 Binary files /dev/null and b/lib/wine/fakedlls/wintrust.dll differ diff --git a/lib/wine/fakedlls/winusb.dll b/lib/wine/fakedlls/winusb.dll new file mode 100644 index 0000000..6086172 Binary files /dev/null and b/lib/wine/fakedlls/winusb.dll differ diff --git a/lib/wine/fakedlls/winver.exe b/lib/wine/fakedlls/winver.exe new file mode 100644 index 0000000..aaed187 Binary files /dev/null and b/lib/wine/fakedlls/winver.exe differ diff --git a/lib/wine/fakedlls/wlanapi.dll b/lib/wine/fakedlls/wlanapi.dll new file mode 100644 index 0000000..860e126 Binary files /dev/null and b/lib/wine/fakedlls/wlanapi.dll differ diff --git a/lib/wine/fakedlls/wldap32.dll b/lib/wine/fakedlls/wldap32.dll new file mode 100644 index 0000000..bee9dca Binary files /dev/null and b/lib/wine/fakedlls/wldap32.dll differ diff --git a/lib/wine/fakedlls/wmasf.dll b/lib/wine/fakedlls/wmasf.dll new file mode 100644 index 0000000..1648ae6 Binary files /dev/null and b/lib/wine/fakedlls/wmasf.dll differ diff --git a/lib/wine/fakedlls/wmi.dll b/lib/wine/fakedlls/wmi.dll new file mode 100644 index 0000000..dadb80a Binary files /dev/null and b/lib/wine/fakedlls/wmi.dll differ diff --git a/lib/wine/fakedlls/wmic.exe b/lib/wine/fakedlls/wmic.exe new file mode 100644 index 0000000..284d25f Binary files /dev/null and b/lib/wine/fakedlls/wmic.exe differ diff --git a/lib/wine/fakedlls/wmiutils.dll b/lib/wine/fakedlls/wmiutils.dll new file mode 100644 index 0000000..3a06bac Binary files /dev/null and b/lib/wine/fakedlls/wmiutils.dll differ diff --git a/lib/wine/fakedlls/wmp.dll b/lib/wine/fakedlls/wmp.dll new file mode 100644 index 0000000..17f9257 Binary files /dev/null and b/lib/wine/fakedlls/wmp.dll differ diff --git a/lib/wine/fakedlls/wmphoto.dll b/lib/wine/fakedlls/wmphoto.dll new file mode 100644 index 0000000..e3fa432 Binary files /dev/null and b/lib/wine/fakedlls/wmphoto.dll differ diff --git a/lib/wine/fakedlls/wmplayer.exe b/lib/wine/fakedlls/wmplayer.exe new file mode 100644 index 0000000..265cae5 Binary files /dev/null and b/lib/wine/fakedlls/wmplayer.exe differ diff --git a/lib/wine/fakedlls/wmvcore.dll b/lib/wine/fakedlls/wmvcore.dll new file mode 100644 index 0000000..827a99d Binary files /dev/null and b/lib/wine/fakedlls/wmvcore.dll differ diff --git a/lib/wine/fakedlls/wnaspi32.dll b/lib/wine/fakedlls/wnaspi32.dll new file mode 100644 index 0000000..d3e1519 Binary files /dev/null and b/lib/wine/fakedlls/wnaspi32.dll differ diff --git a/lib/wine/fakedlls/wordpad.exe b/lib/wine/fakedlls/wordpad.exe new file mode 100644 index 0000000..8c9768a Binary files /dev/null and b/lib/wine/fakedlls/wordpad.exe differ diff --git a/lib/wine/fakedlls/wow32.dll b/lib/wine/fakedlls/wow32.dll new file mode 100644 index 0000000..dc7059e Binary files /dev/null and b/lib/wine/fakedlls/wow32.dll differ diff --git a/lib/wine/fakedlls/wow64cpu.dll b/lib/wine/fakedlls/wow64cpu.dll new file mode 100644 index 0000000..2f461c4 Binary files /dev/null and b/lib/wine/fakedlls/wow64cpu.dll differ diff --git a/lib/wine/fakedlls/wpc.dll b/lib/wine/fakedlls/wpc.dll new file mode 100644 index 0000000..00546b7 Binary files /dev/null and b/lib/wine/fakedlls/wpc.dll differ diff --git a/lib/wine/fakedlls/wpcap.dll b/lib/wine/fakedlls/wpcap.dll new file mode 100644 index 0000000..e24f9ee Binary files /dev/null and b/lib/wine/fakedlls/wpcap.dll differ diff --git a/lib/wine/fakedlls/write.exe b/lib/wine/fakedlls/write.exe new file mode 100644 index 0000000..a652dc9 Binary files /dev/null and b/lib/wine/fakedlls/write.exe differ diff --git a/lib/wine/fakedlls/ws2_32.dll b/lib/wine/fakedlls/ws2_32.dll new file mode 100644 index 0000000..6c465a6 Binary files /dev/null and b/lib/wine/fakedlls/ws2_32.dll differ diff --git a/lib/wine/fakedlls/wscript.exe b/lib/wine/fakedlls/wscript.exe new file mode 100644 index 0000000..85b40c1 Binary files /dev/null and b/lib/wine/fakedlls/wscript.exe differ diff --git a/lib/wine/fakedlls/wsdapi.dll b/lib/wine/fakedlls/wsdapi.dll new file mode 100644 index 0000000..e9048b4 Binary files /dev/null and b/lib/wine/fakedlls/wsdapi.dll differ diff --git a/lib/wine/fakedlls/wshom.ocx b/lib/wine/fakedlls/wshom.ocx new file mode 100644 index 0000000..30844e0 Binary files /dev/null and b/lib/wine/fakedlls/wshom.ocx differ diff --git a/lib/wine/fakedlls/wsnmp32.dll b/lib/wine/fakedlls/wsnmp32.dll new file mode 100644 index 0000000..115c6b2 Binary files /dev/null and b/lib/wine/fakedlls/wsnmp32.dll differ diff --git a/lib/wine/fakedlls/wsock32.dll b/lib/wine/fakedlls/wsock32.dll new file mode 100644 index 0000000..7ad38a7 Binary files /dev/null and b/lib/wine/fakedlls/wsock32.dll differ diff --git a/lib/wine/fakedlls/wtsapi32.dll b/lib/wine/fakedlls/wtsapi32.dll new file mode 100644 index 0000000..e609f1e Binary files /dev/null and b/lib/wine/fakedlls/wtsapi32.dll differ diff --git a/lib/wine/fakedlls/wuapi.dll b/lib/wine/fakedlls/wuapi.dll new file mode 100644 index 0000000..a98aa5b Binary files /dev/null and b/lib/wine/fakedlls/wuapi.dll differ diff --git a/lib/wine/fakedlls/wuaueng.dll b/lib/wine/fakedlls/wuaueng.dll new file mode 100644 index 0000000..3f973a3 Binary files /dev/null and b/lib/wine/fakedlls/wuaueng.dll differ diff --git a/lib/wine/fakedlls/wuauserv.exe b/lib/wine/fakedlls/wuauserv.exe new file mode 100644 index 0000000..448bbff Binary files /dev/null and b/lib/wine/fakedlls/wuauserv.exe differ diff --git a/lib/wine/fakedlls/wusa.exe b/lib/wine/fakedlls/wusa.exe new file mode 100644 index 0000000..448bbff Binary files /dev/null and b/lib/wine/fakedlls/wusa.exe differ diff --git a/lib/wine/fakedlls/x3daudio1_0.dll b/lib/wine/fakedlls/x3daudio1_0.dll new file mode 100644 index 0000000..e0a0091 Binary files /dev/null and b/lib/wine/fakedlls/x3daudio1_0.dll differ diff --git a/lib/wine/fakedlls/x3daudio1_1.dll b/lib/wine/fakedlls/x3daudio1_1.dll new file mode 100644 index 0000000..58c60ec Binary files /dev/null and b/lib/wine/fakedlls/x3daudio1_1.dll differ diff --git a/lib/wine/fakedlls/x3daudio1_2.dll b/lib/wine/fakedlls/x3daudio1_2.dll new file mode 100644 index 0000000..b175f20 Binary files /dev/null and b/lib/wine/fakedlls/x3daudio1_2.dll differ diff --git a/lib/wine/fakedlls/x3daudio1_3.dll b/lib/wine/fakedlls/x3daudio1_3.dll new file mode 100644 index 0000000..0154b6a Binary files /dev/null and b/lib/wine/fakedlls/x3daudio1_3.dll differ diff --git a/lib/wine/fakedlls/x3daudio1_4.dll b/lib/wine/fakedlls/x3daudio1_4.dll new file mode 100644 index 0000000..0dd4e94 Binary files /dev/null and b/lib/wine/fakedlls/x3daudio1_4.dll differ diff --git a/lib/wine/fakedlls/x3daudio1_5.dll b/lib/wine/fakedlls/x3daudio1_5.dll new file mode 100644 index 0000000..ed1fcfc Binary files /dev/null and b/lib/wine/fakedlls/x3daudio1_5.dll differ diff --git a/lib/wine/fakedlls/x3daudio1_6.dll b/lib/wine/fakedlls/x3daudio1_6.dll new file mode 100644 index 0000000..7c82f21 Binary files /dev/null and b/lib/wine/fakedlls/x3daudio1_6.dll differ diff --git a/lib/wine/fakedlls/x3daudio1_7.dll b/lib/wine/fakedlls/x3daudio1_7.dll new file mode 100644 index 0000000..dee60e5 Binary files /dev/null and b/lib/wine/fakedlls/x3daudio1_7.dll differ diff --git a/lib/wine/fakedlls/xapofx1_1.dll b/lib/wine/fakedlls/xapofx1_1.dll new file mode 100644 index 0000000..6b85b36 Binary files /dev/null and b/lib/wine/fakedlls/xapofx1_1.dll differ diff --git a/lib/wine/fakedlls/xapofx1_2.dll b/lib/wine/fakedlls/xapofx1_2.dll new file mode 100644 index 0000000..4dbaf1b Binary files /dev/null and b/lib/wine/fakedlls/xapofx1_2.dll differ diff --git a/lib/wine/fakedlls/xapofx1_3.dll b/lib/wine/fakedlls/xapofx1_3.dll new file mode 100644 index 0000000..e3666bc Binary files /dev/null and b/lib/wine/fakedlls/xapofx1_3.dll differ diff --git a/lib/wine/fakedlls/xapofx1_4.dll b/lib/wine/fakedlls/xapofx1_4.dll new file mode 100644 index 0000000..27a64de Binary files /dev/null and b/lib/wine/fakedlls/xapofx1_4.dll differ diff --git a/lib/wine/fakedlls/xapofx1_5.dll b/lib/wine/fakedlls/xapofx1_5.dll new file mode 100644 index 0000000..3a51af9 Binary files /dev/null and b/lib/wine/fakedlls/xapofx1_5.dll differ diff --git a/lib/wine/fakedlls/xaudio2_0.dll b/lib/wine/fakedlls/xaudio2_0.dll new file mode 100644 index 0000000..d4ef077 Binary files /dev/null and b/lib/wine/fakedlls/xaudio2_0.dll differ diff --git a/lib/wine/fakedlls/xaudio2_1.dll b/lib/wine/fakedlls/xaudio2_1.dll new file mode 100644 index 0000000..3b07e1e Binary files /dev/null and b/lib/wine/fakedlls/xaudio2_1.dll differ diff --git a/lib/wine/fakedlls/xaudio2_2.dll b/lib/wine/fakedlls/xaudio2_2.dll new file mode 100644 index 0000000..1738f8a Binary files /dev/null and b/lib/wine/fakedlls/xaudio2_2.dll differ diff --git a/lib/wine/fakedlls/xaudio2_3.dll b/lib/wine/fakedlls/xaudio2_3.dll new file mode 100644 index 0000000..7b55d2e Binary files /dev/null and b/lib/wine/fakedlls/xaudio2_3.dll differ diff --git a/lib/wine/fakedlls/xaudio2_4.dll b/lib/wine/fakedlls/xaudio2_4.dll new file mode 100644 index 0000000..7d9107e Binary files /dev/null and b/lib/wine/fakedlls/xaudio2_4.dll differ diff --git a/lib/wine/fakedlls/xaudio2_5.dll b/lib/wine/fakedlls/xaudio2_5.dll new file mode 100644 index 0000000..3eedfd6 Binary files /dev/null and b/lib/wine/fakedlls/xaudio2_5.dll differ diff --git a/lib/wine/fakedlls/xaudio2_6.dll b/lib/wine/fakedlls/xaudio2_6.dll new file mode 100644 index 0000000..92e652a Binary files /dev/null and b/lib/wine/fakedlls/xaudio2_6.dll differ diff --git a/lib/wine/fakedlls/xaudio2_7.dll b/lib/wine/fakedlls/xaudio2_7.dll new file mode 100644 index 0000000..63f218b Binary files /dev/null and b/lib/wine/fakedlls/xaudio2_7.dll differ diff --git a/lib/wine/fakedlls/xaudio2_8.dll b/lib/wine/fakedlls/xaudio2_8.dll new file mode 100644 index 0000000..518d943 Binary files /dev/null and b/lib/wine/fakedlls/xaudio2_8.dll differ diff --git a/lib/wine/fakedlls/xaudio2_9.dll b/lib/wine/fakedlls/xaudio2_9.dll new file mode 100644 index 0000000..8e72798 Binary files /dev/null and b/lib/wine/fakedlls/xaudio2_9.dll differ diff --git a/lib/wine/fakedlls/xcopy.exe b/lib/wine/fakedlls/xcopy.exe new file mode 100644 index 0000000..65f718d Binary files /dev/null and b/lib/wine/fakedlls/xcopy.exe differ diff --git a/lib/wine/fakedlls/xinput1_1.dll b/lib/wine/fakedlls/xinput1_1.dll new file mode 100644 index 0000000..ec3a851 Binary files /dev/null and b/lib/wine/fakedlls/xinput1_1.dll differ diff --git a/lib/wine/fakedlls/xinput1_2.dll b/lib/wine/fakedlls/xinput1_2.dll new file mode 100644 index 0000000..bd66b95 Binary files /dev/null and b/lib/wine/fakedlls/xinput1_2.dll differ diff --git a/lib/wine/fakedlls/xinput1_3.dll b/lib/wine/fakedlls/xinput1_3.dll new file mode 100644 index 0000000..7722cfd Binary files /dev/null and b/lib/wine/fakedlls/xinput1_3.dll differ diff --git a/lib/wine/fakedlls/xinput1_4.dll b/lib/wine/fakedlls/xinput1_4.dll new file mode 100644 index 0000000..ecc2dd9 Binary files /dev/null and b/lib/wine/fakedlls/xinput1_4.dll differ diff --git a/lib/wine/fakedlls/xinput9_1_0.dll b/lib/wine/fakedlls/xinput9_1_0.dll new file mode 100644 index 0000000..cfaed7c Binary files /dev/null and b/lib/wine/fakedlls/xinput9_1_0.dll differ diff --git a/lib/wine/fakedlls/xmllite.dll b/lib/wine/fakedlls/xmllite.dll new file mode 100644 index 0000000..07132d8 Binary files /dev/null and b/lib/wine/fakedlls/xmllite.dll differ diff --git a/lib/wine/fakedlls/xolehlp.dll b/lib/wine/fakedlls/xolehlp.dll new file mode 100644 index 0000000..416d079 Binary files /dev/null and b/lib/wine/fakedlls/xolehlp.dll differ diff --git a/lib/wine/fakedlls/xpsprint.dll b/lib/wine/fakedlls/xpsprint.dll new file mode 100644 index 0000000..a9b5875 Binary files /dev/null and b/lib/wine/fakedlls/xpsprint.dll differ diff --git a/lib/wine/fakedlls/xpssvcs.dll b/lib/wine/fakedlls/xpssvcs.dll new file mode 100644 index 0000000..9b72752 Binary files /dev/null and b/lib/wine/fakedlls/xpssvcs.dll differ diff --git a/lib/wine/faultrep.dll.so b/lib/wine/faultrep.dll.so new file mode 100755 index 0000000..b784b5f Binary files /dev/null and b/lib/wine/faultrep.dll.so differ diff --git a/lib/wine/fc.exe.so b/lib/wine/fc.exe.so new file mode 100755 index 0000000..6699d70 Binary files /dev/null and b/lib/wine/fc.exe.so differ diff --git a/lib/wine/feclient.dll.so b/lib/wine/feclient.dll.so new file mode 100755 index 0000000..0e4bfb7 Binary files /dev/null and b/lib/wine/feclient.dll.so differ diff --git a/lib/wine/find.exe.so b/lib/wine/find.exe.so new file mode 100755 index 0000000..9176b69 Binary files /dev/null and b/lib/wine/find.exe.so differ diff --git a/lib/wine/findstr.exe.so b/lib/wine/findstr.exe.so new file mode 100755 index 0000000..54ba189 Binary files /dev/null and b/lib/wine/findstr.exe.so differ diff --git a/lib/wine/fltlib.dll.so b/lib/wine/fltlib.dll.so new file mode 100755 index 0000000..828e72f Binary files /dev/null and b/lib/wine/fltlib.dll.so differ diff --git a/lib/wine/fltmgr.sys.so b/lib/wine/fltmgr.sys.so new file mode 100755 index 0000000..4bb6e4c Binary files /dev/null and b/lib/wine/fltmgr.sys.so differ diff --git a/lib/wine/fntcache.dll.so b/lib/wine/fntcache.dll.so new file mode 100755 index 0000000..66f8369 Binary files /dev/null and b/lib/wine/fntcache.dll.so differ diff --git a/lib/wine/fontsub.dll.so b/lib/wine/fontsub.dll.so new file mode 100755 index 0000000..dfe6985 Binary files /dev/null and b/lib/wine/fontsub.dll.so differ diff --git a/lib/wine/fsutil.exe.so b/lib/wine/fsutil.exe.so new file mode 100755 index 0000000..a7516bb Binary files /dev/null and b/lib/wine/fsutil.exe.so differ diff --git a/lib/wine/fusion.dll.so b/lib/wine/fusion.dll.so new file mode 100755 index 0000000..a1e1ab6 Binary files /dev/null and b/lib/wine/fusion.dll.so differ diff --git a/lib/wine/fwpuclnt.dll.so b/lib/wine/fwpuclnt.dll.so new file mode 100755 index 0000000..69cdd63 Binary files /dev/null and b/lib/wine/fwpuclnt.dll.so differ diff --git a/lib/wine/gameux.dll.so b/lib/wine/gameux.dll.so new file mode 100755 index 0000000..0bf9758 Binary files /dev/null and b/lib/wine/gameux.dll.so differ diff --git a/lib/wine/gdi.exe16.so b/lib/wine/gdi.exe16.so new file mode 100755 index 0000000..fa7dfa1 Binary files /dev/null and b/lib/wine/gdi.exe16.so differ diff --git a/lib/wine/gdi32.dll.so b/lib/wine/gdi32.dll.so new file mode 100755 index 0000000..a165b55 Binary files /dev/null and b/lib/wine/gdi32.dll.so differ diff --git a/lib/wine/gdiplus.dll.so b/lib/wine/gdiplus.dll.so new file mode 100755 index 0000000..6402b6b Binary files /dev/null and b/lib/wine/gdiplus.dll.so differ diff --git a/lib/wine/glu32.dll.so b/lib/wine/glu32.dll.so new file mode 100755 index 0000000..f06ae86 Binary files /dev/null and b/lib/wine/glu32.dll.so differ diff --git a/lib/wine/gphoto2.ds.so b/lib/wine/gphoto2.ds.so new file mode 100755 index 0000000..793ea49 Binary files /dev/null and b/lib/wine/gphoto2.ds.so differ diff --git a/lib/wine/gpkcsp.dll.so b/lib/wine/gpkcsp.dll.so new file mode 100755 index 0000000..cc528e3 Binary files /dev/null and b/lib/wine/gpkcsp.dll.so differ diff --git a/lib/wine/hal.dll.so b/lib/wine/hal.dll.so new file mode 100755 index 0000000..cc892d4 Binary files /dev/null and b/lib/wine/hal.dll.so differ diff --git a/lib/wine/hh.exe.so b/lib/wine/hh.exe.so new file mode 100755 index 0000000..78d1e7b Binary files /dev/null and b/lib/wine/hh.exe.so differ diff --git a/lib/wine/hhctrl.ocx.so b/lib/wine/hhctrl.ocx.so new file mode 100755 index 0000000..9c2852b Binary files /dev/null and b/lib/wine/hhctrl.ocx.so differ diff --git a/lib/wine/hid.dll.so b/lib/wine/hid.dll.so new file mode 100755 index 0000000..ceed048 Binary files /dev/null and b/lib/wine/hid.dll.so differ diff --git a/lib/wine/hidclass.sys.so b/lib/wine/hidclass.sys.so new file mode 100755 index 0000000..93c87f8 Binary files /dev/null and b/lib/wine/hidclass.sys.so differ diff --git a/lib/wine/hlink.dll.so b/lib/wine/hlink.dll.so new file mode 100755 index 0000000..de17142 Binary files /dev/null and b/lib/wine/hlink.dll.so differ diff --git a/lib/wine/hnetcfg.dll.so b/lib/wine/hnetcfg.dll.so new file mode 100755 index 0000000..f74376f Binary files /dev/null and b/lib/wine/hnetcfg.dll.so differ diff --git a/lib/wine/hostname.exe.so b/lib/wine/hostname.exe.so new file mode 100755 index 0000000..7504ab3 Binary files /dev/null and b/lib/wine/hostname.exe.so differ diff --git a/lib/wine/httpapi.dll.so b/lib/wine/httpapi.dll.so new file mode 100755 index 0000000..2120876 Binary files /dev/null and b/lib/wine/httpapi.dll.so differ diff --git a/lib/wine/icacls.exe.so b/lib/wine/icacls.exe.so new file mode 100755 index 0000000..91e6a4a Binary files /dev/null and b/lib/wine/icacls.exe.so differ diff --git a/lib/wine/iccvid.dll.so b/lib/wine/iccvid.dll.so new file mode 100755 index 0000000..c2d1c81 Binary files /dev/null and b/lib/wine/iccvid.dll.so differ diff --git a/lib/wine/icinfo.exe.so b/lib/wine/icinfo.exe.so new file mode 100755 index 0000000..d7c7f05 Binary files /dev/null and b/lib/wine/icinfo.exe.so differ diff --git a/lib/wine/icmp.dll.so b/lib/wine/icmp.dll.so new file mode 100755 index 0000000..f9801b4 Binary files /dev/null and b/lib/wine/icmp.dll.so differ diff --git a/lib/wine/ieframe.dll.so b/lib/wine/ieframe.dll.so new file mode 100755 index 0000000..58d1b84 Binary files /dev/null and b/lib/wine/ieframe.dll.so differ diff --git a/lib/wine/ieproxy.dll.so b/lib/wine/ieproxy.dll.so new file mode 100755 index 0000000..6a352d7 Binary files /dev/null and b/lib/wine/ieproxy.dll.so differ diff --git a/lib/wine/iertutil.dll.so b/lib/wine/iertutil.dll.so new file mode 100755 index 0000000..9c55504 Binary files /dev/null and b/lib/wine/iertutil.dll.so differ diff --git a/lib/wine/iexplore.exe.so b/lib/wine/iexplore.exe.so new file mode 100755 index 0000000..1eab2c6 Binary files /dev/null and b/lib/wine/iexplore.exe.so differ diff --git a/lib/wine/ifsmgr.vxd.so b/lib/wine/ifsmgr.vxd.so new file mode 100755 index 0000000..0ef6d66 Binary files /dev/null and b/lib/wine/ifsmgr.vxd.so differ diff --git a/lib/wine/imaadp32.acm.so b/lib/wine/imaadp32.acm.so new file mode 100755 index 0000000..9b3ee04 Binary files /dev/null and b/lib/wine/imaadp32.acm.so differ diff --git a/lib/wine/imagehlp.dll.so b/lib/wine/imagehlp.dll.so new file mode 100755 index 0000000..d527482 Binary files /dev/null and b/lib/wine/imagehlp.dll.so differ diff --git a/lib/wine/imm.dll16.so b/lib/wine/imm.dll16.so new file mode 100755 index 0000000..d8a75d5 Binary files /dev/null and b/lib/wine/imm.dll16.so differ diff --git a/lib/wine/imm32.dll.so b/lib/wine/imm32.dll.so new file mode 100755 index 0000000..adc0d4a Binary files /dev/null and b/lib/wine/imm32.dll.so differ diff --git a/lib/wine/inetcomm.dll.so b/lib/wine/inetcomm.dll.so new file mode 100755 index 0000000..97cec3b Binary files /dev/null and b/lib/wine/inetcomm.dll.so differ diff --git a/lib/wine/inetcpl.cpl.so b/lib/wine/inetcpl.cpl.so new file mode 100755 index 0000000..989012e Binary files /dev/null and b/lib/wine/inetcpl.cpl.so differ diff --git a/lib/wine/inetmib1.dll.so b/lib/wine/inetmib1.dll.so new file mode 100755 index 0000000..fe0bf66 Binary files /dev/null and b/lib/wine/inetmib1.dll.so differ diff --git a/lib/wine/infosoft.dll.so b/lib/wine/infosoft.dll.so new file mode 100755 index 0000000..1eaebe7 Binary files /dev/null and b/lib/wine/infosoft.dll.so differ diff --git a/lib/wine/initpki.dll.so b/lib/wine/initpki.dll.so new file mode 100755 index 0000000..aea1f9e Binary files /dev/null and b/lib/wine/initpki.dll.so differ diff --git a/lib/wine/inkobj.dll.so b/lib/wine/inkobj.dll.so new file mode 100755 index 0000000..8d32d23 Binary files /dev/null and b/lib/wine/inkobj.dll.so differ diff --git a/lib/wine/inseng.dll.so b/lib/wine/inseng.dll.so new file mode 100755 index 0000000..f8c486f Binary files /dev/null and b/lib/wine/inseng.dll.so differ diff --git a/lib/wine/ipconfig.exe.so b/lib/wine/ipconfig.exe.so new file mode 100755 index 0000000..45a08fe Binary files /dev/null and b/lib/wine/ipconfig.exe.so differ diff --git a/lib/wine/iphlpapi.dll.so b/lib/wine/iphlpapi.dll.so new file mode 100755 index 0000000..35d20fc Binary files /dev/null and b/lib/wine/iphlpapi.dll.so differ diff --git a/lib/wine/iprop.dll.so b/lib/wine/iprop.dll.so new file mode 100755 index 0000000..e842e43 Binary files /dev/null and b/lib/wine/iprop.dll.so differ diff --git a/lib/wine/irprops.cpl.so b/lib/wine/irprops.cpl.so new file mode 100755 index 0000000..c3e5010 Binary files /dev/null and b/lib/wine/irprops.cpl.so differ diff --git a/lib/wine/itircl.dll.so b/lib/wine/itircl.dll.so new file mode 100755 index 0000000..f03249a Binary files /dev/null and b/lib/wine/itircl.dll.so differ diff --git a/lib/wine/itss.dll.so b/lib/wine/itss.dll.so new file mode 100755 index 0000000..eff77a9 Binary files /dev/null and b/lib/wine/itss.dll.so differ diff --git a/lib/wine/joy.cpl.so b/lib/wine/joy.cpl.so new file mode 100755 index 0000000..b183576 Binary files /dev/null and b/lib/wine/joy.cpl.so differ diff --git a/lib/wine/jscript.dll.so b/lib/wine/jscript.dll.so new file mode 100755 index 0000000..dbef561 Binary files /dev/null and b/lib/wine/jscript.dll.so differ diff --git a/lib/wine/jsproxy.dll.so b/lib/wine/jsproxy.dll.so new file mode 100755 index 0000000..0cdf16b Binary files /dev/null and b/lib/wine/jsproxy.dll.so differ diff --git a/lib/wine/kerberos.dll.so b/lib/wine/kerberos.dll.so new file mode 100755 index 0000000..a807142 Binary files /dev/null and b/lib/wine/kerberos.dll.so differ diff --git a/lib/wine/kernel32.dll.so b/lib/wine/kernel32.dll.so new file mode 100755 index 0000000..16c685d Binary files /dev/null and b/lib/wine/kernel32.dll.so differ diff --git a/lib/wine/kernelbase.dll.so b/lib/wine/kernelbase.dll.so new file mode 100755 index 0000000..a36cabf Binary files /dev/null and b/lib/wine/kernelbase.dll.so differ diff --git a/lib/wine/keyboard.drv16.so b/lib/wine/keyboard.drv16.so new file mode 100755 index 0000000..c3b58c2 Binary files /dev/null and b/lib/wine/keyboard.drv16.so differ diff --git a/lib/wine/krnl386.exe16.so b/lib/wine/krnl386.exe16.so new file mode 100755 index 0000000..63aa474 Binary files /dev/null and b/lib/wine/krnl386.exe16.so differ diff --git a/lib/wine/ksecdd.sys.so b/lib/wine/ksecdd.sys.so new file mode 100755 index 0000000..df68ee4 Binary files /dev/null and b/lib/wine/ksecdd.sys.so differ diff --git a/lib/wine/ksuser.dll.so b/lib/wine/ksuser.dll.so new file mode 100755 index 0000000..0d47a99 Binary files /dev/null and b/lib/wine/ksuser.dll.so differ diff --git a/lib/wine/ktmw32.dll.so b/lib/wine/ktmw32.dll.so new file mode 100755 index 0000000..8480eb3 Binary files /dev/null and b/lib/wine/ktmw32.dll.so differ diff --git a/lib/wine/l3codeca.acm.so b/lib/wine/l3codeca.acm.so new file mode 100755 index 0000000..3302a23 Binary files /dev/null and b/lib/wine/l3codeca.acm.so differ diff --git a/lib/wine/libaclui.def b/lib/wine/libaclui.def new file mode 100644 index 0000000..62b2e43 --- /dev/null +++ b/lib/wine/libaclui.def @@ -0,0 +1,8 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/aclui/aclui.spec; do not edit! + +LIBRARY aclui.dll + +EXPORTS + CreateSecurityPage@4 @1 + EditSecurity@8 @2 + IID_ISecurityInformation @3 DATA diff --git a/lib/wine/libactiveds.def b/lib/wine/libactiveds.def new file mode 100644 index 0000000..7caa698 --- /dev/null +++ b/lib/wine/libactiveds.def @@ -0,0 +1,29 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/activeds/activeds.spec; do not edit! + +LIBRARY activeds.dll + +EXPORTS + ADsGetObject@12 @3 + ADsBuildEnumerator@8 @4 + ADsFreeEnumerator@4 @5 + ADsEnumerateNext@16 @6 + ADsBuildVarArrayStr@12 @7 + ADsBuildVarArrayInt@12 @8 + ADsOpenObject@24 @9 + ADsSetLastError@12 @12 + ADsGetLastError@20 @13 + AllocADsMem@4 @14 + FreeADsMem@4 @15 + ReallocADsMem@12 @16 + AllocADsStr@4 @17 + FreeADsStr@4 @18 + ReallocADsStr@8 @19 + ADsEncodeBinaryData@12 @20 + PropVariantToAdsType@0 @21 PRIVATE + AdsTypeToPropVariant@0 @22 PRIVATE + AdsFreeAdsValues@0 @23 PRIVATE + ADsDecodeBinaryData@0 @24 PRIVATE + AdsTypeToPropVariant2@0 @25 PRIVATE + PropVariantToAdsType2@0 @26 PRIVATE + ConvertSecDescriptorToVariant@0 @27 PRIVATE + ConvertSecurityDescriptorToSecDes@0 @28 PRIVATE diff --git a/lib/wine/libadsiid.a b/lib/wine/libadsiid.a new file mode 100644 index 0000000..53077c1 Binary files /dev/null and b/lib/wine/libadsiid.a differ diff --git a/lib/wine/libadvapi32.def b/lib/wine/libadvapi32.def new file mode 100644 index 0000000..d7bf55a --- /dev/null +++ b/lib/wine/libadvapi32.def @@ -0,0 +1,569 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/advapi32/advapi32.spec; do not edit! + +LIBRARY advapi32.dll + +EXPORTS + A_SHAFinal@8 @1 + A_SHAInit@4 @2 + A_SHAUpdate@12 @3 + AbortSystemShutdownA@4 @4 + AbortSystemShutdownW@4 @5 + AccessCheck@32 @6 + AccessCheckAndAuditAlarmA@44 @7 + AccessCheckAndAuditAlarmW@44 @8 + AccessCheckByType@44 @9 + AddAccessAllowedAce@16 @10 + AddAccessAllowedAceEx@20 @11 + AddAccessAllowedObjectAce@28 @12 + AddAccessDeniedAce@16 @13 + AddAccessDeniedAceEx@20 @14 + AddAccessDeniedObjectAce@28 @15 + AddAce@20 @16 + AddAuditAccessAce@24 @17 + AddAuditAccessAceEx@28 @18 + AddAuditAccessObjectAce@36 @19 + AddMandatoryAce@20 @20 + AdjustTokenGroups@24 @21 + AdjustTokenPrivileges@24 @22 + AllocateAndInitializeSid@44 @23 + AllocateLocallyUniqueId@4 @24 + AreAllAccessesGranted@8 @25 + AreAnyAccessesGranted@8 @26 + AuditQuerySystemPolicy@12 @27 + BackupEventLogA@8 @28 + BackupEventLogW@8 @29 + BuildExplicitAccessWithNameA@20 @30 + BuildExplicitAccessWithNameW@20 @31 + BuildSecurityDescriptorA@36 @32 + BuildSecurityDescriptorW@36 @33 + BuildTrusteeWithNameA@8 @34 + BuildTrusteeWithNameW@8 @35 + BuildTrusteeWithObjectsAndNameA@24 @36 + BuildTrusteeWithObjectsAndNameW@24 @37 + BuildTrusteeWithObjectsAndSidA@20 @38 + BuildTrusteeWithObjectsAndSidW@20 @39 + BuildTrusteeWithSidA@8 @40 + BuildTrusteeWithSidW@8 @41 + ChangeServiceConfig2A@12 @42 + ChangeServiceConfig2W@12 @43 + ChangeServiceConfigA@44 @44 + ChangeServiceConfigW@44 @45 + CheckTokenMembership@12 @46 + ClearEventLogA@8 @47 + ClearEventLogW@8 @48 + CloseEncryptedFileRaw@4 @49 + CloseEventLog@4 @50 + CloseServiceHandle@4 @51 + CloseTrace@8 @52 + CommandLineFromMsiDescriptor@12 @53 + ControlService@12 @54 + ControlTraceA@20 @55 + ControlTraceW@20 @56 + ConvertSecurityDescriptorToStringSecurityDescriptorA@20 @57 + ConvertSecurityDescriptorToStringSecurityDescriptorW@20 @58 + ConvertSidToStringSidA@8 @59 + ConvertSidToStringSidW@8 @60 + ConvertStringSecurityDescriptorToSecurityDescriptorA@16 @61 + ConvertStringSecurityDescriptorToSecurityDescriptorW@16 @62 + ConvertStringSidToSidA@8 @63 + ConvertStringSidToSidW@8 @64 + ConvertToAutoInheritPrivateObjectSecurity@24 @65 + CopySid@12 @66 + CreatePrivateObjectSecurity@24 @67 + CreatePrivateObjectSecurityEx@32 @68 + CreatePrivateObjectSecurityWithMultipleInheritance@36 @69 + CreateProcessAsUserA@44=kernel32.CreateProcessAsUserA @70 + CreateProcessAsUserW@44=kernel32.CreateProcessAsUserW @71 + CreateProcessWithLogonW@44 @72 + CreateProcessWithTokenW@36 @73 + CreateRestrictedToken@36 @74 + CreateServiceA@52 @75 + CreateServiceW@52 @76 + CreateWellKnownSid@16 @77 + CredDeleteA@12 @78 + CredDeleteW@12 @79 + CredEnumerateA@16 @80 + CredEnumerateW@16 @81 + CredFree@4 @82 + CredGetSessionTypes@8 @83 + CredIsMarshaledCredentialA@4 @84 + CredIsMarshaledCredentialW@4 @85 + CredMarshalCredentialA@12 @86 + CredMarshalCredentialW@12 @87 + CredProfileLoaded@0 @88 PRIVATE + CredReadA@16 @89 + CredReadDomainCredentialsA@16 @90 + CredReadDomainCredentialsW@16 @91 + CredReadW@16 @92 + CredUnmarshalCredentialA@12 @93 + CredUnmarshalCredentialW@12 @94 + CredWriteA@8 @95 + CredWriteW@8 @96 + CryptAcquireContextA@20 @97 + CryptAcquireContextW@20 @98 + CryptContextAddRef@12 @99 + CryptCreateHash@20 @100 + CryptDecrypt@24 @101 + CryptDeriveKey@20 @102 + CryptDestroyHash@4 @103 + CryptDestroyKey@4 @104 + CryptDuplicateHash@16 @105 + CryptDuplicateKey@16 @106 + CryptEncrypt@28 @107 + CryptEnumProviderTypesA@24 @108 + CryptEnumProviderTypesW@24 @109 + CryptEnumProvidersA@24 @110 + CryptEnumProvidersW@24 @111 + CryptExportKey@24 @112 + CryptGenKey@16 @113 + CryptGenRandom@12 @114 + CryptGetDefaultProviderA@20 @115 + CryptGetDefaultProviderW@20 @116 + CryptGetHashParam@20 @117 + CryptGetKeyParam@20 @118 + CryptGetProvParam@20 @119 + CryptGetUserKey@12 @120 + CryptHashData@16 @121 + CryptHashSessionKey@12 @122 + CryptImportKey@24 @123 + CryptReleaseContext@8 @124 + CryptSetHashParam@16 @125 + CryptSetKeyParam@16 @126 + CryptSetProvParam@16 @127 + CryptSetProviderA@8 @128 + CryptSetProviderExA@16 @129 + CryptSetProviderExW@16 @130 + CryptSetProviderW@8 @131 + CryptSignHashA@24 @132 + CryptSignHashW@24 @133 + CryptVerifySignatureA@24 @134 + CryptVerifySignatureW@24 @135 + DecryptFileA@8 @136 + DecryptFileW@8 @137 + DeleteAce@8 @138 + DeleteService@4 @139 + DeregisterEventSource@4 @140 + DestroyPrivateObjectSecurity@4 @141 + DuplicateToken@12 @142 + DuplicateTokenEx@24 @143 + ElfDeregisterEventSource@0 @144 PRIVATE + ElfDeregisterEventSourceW@0 @145 PRIVATE + ElfRegisterEventSourceW@0 @146 PRIVATE + ElfReportEventW@0 @147 PRIVATE + EnableTrace@24 @148 + EnableTraceEx@48 @149 + EnableTraceEx2@44 @150 + EncryptFileA@4 @151 + EncryptFileW@4 @152 + EnumDependentServicesA@24 @153 + EnumDependentServicesW@24 @154 + EnumServiceGroupA@0 @155 PRIVATE + EnumServiceGroupW@0 @156 PRIVATE + EnumServicesStatusA@32 @157 + EnumServicesStatusExA@40 @158 + EnumServicesStatusExW@40 @159 + EnumServicesStatusW@32 @160 + EnumerateTraceGuids@12 @161 + EqualPrefixSid@8 @162 + EqualSid@8 @163 + EventActivityIdControl@8 @164 + EventEnabled@12=ntdll.EtwEventEnabled @165 + EventProviderEnabled@20 @166 + EventRegister@16=ntdll.EtwEventRegister @167 + EventSetInformation@20=ntdll.EtwEventSetInformation @168 + EventUnregister@8=ntdll.EtwEventUnregister @169 + EventWrite@20=ntdll.EtwEventWrite @170 + EventWriteTransfer@28 @171 + FileEncryptionStatusA@8 @172 + FileEncryptionStatusW@8 @173 + FindFirstFreeAce@8 @174 + FlushTraceA@16 @175 + FlushTraceW@16 @176 + FreeSid@4 @177 + GetAce@12 @178 + GetAclInformation@16 @179 + GetAuditedPermissionsFromAclA@16 @180 + GetAuditedPermissionsFromAclW@16 @181 + GetCurrentHwProfileA@4 @182 + GetCurrentHwProfileW@4 @183 + GetDynamicTimeZoneInformationEffectiveYears@12=kernel32.GetDynamicTimeZoneInformationEffectiveYears @184 + GetEffectiveRightsFromAclA@12 @185 + GetEffectiveRightsFromAclW@12 @186 + GetEventLogInformation@20 @187 + GetExplicitEntriesFromAclA@12 @188 + GetExplicitEntriesFromAclW@12 @189 + GetFileSecurityA@20 @190 + GetFileSecurityW@20 @191 + GetKernelObjectSecurity@20 @192 + GetLengthSid@4 @193 + GetMangledSiteSid@0 @194 PRIVATE + GetNamedSecurityInfoA@32 @195 + GetNamedSecurityInfoExA@36 @196 + GetNamedSecurityInfoExW@36 @197 + GetNamedSecurityInfoW@32 @198 + GetNumberOfEventLogRecords@8 @199 + GetOldestEventLogRecord@8 @200 + GetPrivateObjectSecurity@20 @201 + GetSecurityDescriptorControl@12 @202 + GetSecurityDescriptorDacl@16 @203 + GetSecurityDescriptorGroup@12 @204 + GetSecurityDescriptorLength@4 @205 + GetSecurityDescriptorOwner@12 @206 + GetSecurityDescriptorSacl@16 @207 + GetSecurityInfo@32 @208 + GetSecurityInfoExA@36 @209 + GetSecurityInfoExW@36 @210 + GetServiceDisplayNameA@16 @211 + GetServiceDisplayNameW@16 @212 + GetServiceKeyNameA@16 @213 + GetServiceKeyNameW@16 @214 + GetSidIdentifierAuthority@4 @215 + GetSidLengthRequired@4 @216 + GetSidSubAuthority@8 @217 + GetSidSubAuthorityCount@4 @218 + GetSiteSidFromToken@0 @219 PRIVATE + GetTokenInformation@20 @220 + GetTraceEnableFlags@8 @221 + GetTraceEnableLevel@8 @222 + GetTraceLoggerHandle@4 @223 + GetTrusteeFormA@4 @224 + GetTrusteeFormW@4 @225 + GetTrusteeNameA@4 @226 + GetTrusteeNameW@4 @227 + GetTrusteeTypeA@4 @228 + GetTrusteeTypeW@4 @229 + GetUserNameA@8 @230 + GetUserNameW@8 @231 + GetWindowsAccountDomainSid@12 @232 + I_ScSetServiceBit@0 @233 PRIVATE + I_ScSetServiceBitsA@0 @234 PRIVATE + ImpersonateAnonymousToken@4 @235 + ImpersonateLoggedOnUser@4 @236 + ImpersonateNamedPipeClient@4 @237 + ImpersonateSelf@4 @238 + InitializeAcl@12 @239 + InitializeSecurityDescriptor@8 @240 + InitializeSid@12 @241 + InitiateSystemShutdownA@20 @242 + InitiateSystemShutdownExA@24 @243 + InitiateSystemShutdownExW@24 @244 + InitiateSystemShutdownW@20 @245 + InstallApplication@0 @246 PRIVATE + IsProcessRestricted@0 @247 PRIVATE + IsTextUnicode@12 @248 + IsTokenRestricted@4 @249 + IsValidAcl@4 @250 + IsValidSecurityDescriptor@4 @251 + IsValidSid@4 @252 + IsWellKnownSid@8 @253 + LockServiceDatabase@4 @254 + LogonUserA@24 @255 + LogonUserW@24 @256 + LookupAccountNameA@28 @257 + LookupAccountNameW@28 @258 + LookupAccountSidA@28 @259 + LookupAccountSidW@28 @260 + LookupPrivilegeDisplayNameA@20 @261 + LookupPrivilegeDisplayNameW@20 @262 + LookupPrivilegeNameA@16 @263 + LookupPrivilegeNameW@16 @264 + LookupPrivilegeValueA@12 @265 + LookupPrivilegeValueW@12 @266 + LookupSecurityDescriptorPartsA@28 @267 + LookupSecurityDescriptorPartsW@28 @268 + LsaAddAccountRights@16 @269 + LsaAddPrivilegesToAccount@0 @270 PRIVATE + LsaClose@4 @271 + LsaCreateAccount@0 @272 PRIVATE + LsaCreateSecret@0 @273 PRIVATE + LsaCreateTrustedDomain@0 @274 PRIVATE + LsaCreateTrustedDomainEx@20 @275 + LsaDelete@0 @276 PRIVATE + LsaDeleteTrustedDomain@8 @277 + LsaEnumerateAccountRights@16 @278 + LsaEnumerateAccounts@0 @279 PRIVATE + LsaEnumerateAccountsWithUserRight@16 @280 + LsaEnumeratePrivileges@0 @281 PRIVATE + LsaEnumeratePrivilegesOfAccount@0 @282 PRIVATE + LsaEnumerateTrustedDomains@20 @283 + LsaEnumerateTrustedDomainsEx@20 @284 + LsaFreeMemory@4 @285 + LsaGetSystemAccessAccount@0 @286 PRIVATE + LsaICLookupNames@0 @287 PRIVATE + LsaICLookupSids@0 @288 PRIVATE + LsaLookupNames@20 @289 + LsaLookupNames2@24 @290 + LsaLookupPrivilegeDisplayName@16 @291 + LsaLookupPrivilegeName@12 @292 + LsaLookupSids@20 @293 + LsaNtStatusToWinError@4 @294 + LsaOpenAccount@0 @295 PRIVATE + LsaOpenPolicy@16 @296 + LsaOpenSecret@0 @297 PRIVATE + LsaOpenTrustedDomain@0 @298 PRIVATE + LsaOpenTrustedDomainByName@16 @299 + LsaQueryInfoTrustedDomain@0 @300 PRIVATE + LsaQueryInformationPolicy@12 @301 + LsaQuerySecret@0 @302 PRIVATE + LsaQueryTrustedDomainInfo@16 @303 + LsaQueryTrustedDomainInfoByName@16 @304 + LsaRegisterPolicyChangeNotification@8 @305 + LsaRemoveAccountRights@20 @306 + LsaRemovePrivilegesFromAccount@0 @307 PRIVATE + LsaRetrievePrivateData@12 @308 + LsaSetInformationPolicy@12 @309 + LsaSetInformationTrustedDomain@0 @310 PRIVATE + LsaSetSecret@12 @311 + LsaSetSystemAccessAccount@0 @312 PRIVATE + LsaSetTrustedDomainInfoByName@16 @313 + LsaSetTrustedDomainInformation@16 @314 + LsaStorePrivateData@12 @315 + LsaUnregisterPolicyChangeNotification@8 @316 + MD4Final@4 @317 + MD4Init@4 @318 + MD4Update@12 @319 + MD5Final@4 @320 + MD5Init@4 @321 + MD5Update@12 @322 + MakeAbsoluteSD@44 @323 + MakeSelfRelativeSD@12 @324 + MapGenericMask@8 @325 + NotifyBootConfigStatus@4 @326 + NotifyChangeEventLog@8 @327 + NotifyServiceStatusChangeW@12 @328 + ObjectCloseAuditAlarmA@12 @329 + ObjectCloseAuditAlarmW@12 @330 + ObjectDeleteAuditAlarmW@12 @331 + ObjectOpenAuditAlarmA@48 @332 + ObjectOpenAuditAlarmW@48 @333 + ObjectPrivilegeAuditAlarmA@24 @334 + ObjectPrivilegeAuditAlarmW@24 @335 + OpenBackupEventLogA@8 @336 + OpenBackupEventLogW@8 @337 + OpenEncryptedFileRawA@12 @338 + OpenEncryptedFileRawW@12 @339 + OpenEventLogA@8 @340 + OpenEventLogW@8 @341 + OpenProcessToken@12 @342 + OpenSCManagerA@12 @343 + OpenSCManagerW@12 @344 + OpenServiceA@12 @345 + OpenServiceW@12 @346 + OpenThreadToken@16 @347 + OpenTraceA@4 @348 + OpenTraceW@4 @349 + PerfCreateInstance@16 @350 + PerfDeleteInstance@8 @351 + PerfSetCounterRefValue@16 @352 + PerfSetCounterSetInfo@12 @353 + PerfStartProvider@12 @354 + PerfStartProviderEx@12 @355 + PerfStopProvider@4 @356 + PrivilegeCheck@12 @357 + PrivilegedServiceAuditAlarmA@20 @358 + PrivilegedServiceAuditAlarmW@20 @359 + ProcessTrace@16 @360 + QueryAllTracesA@12 @361 + QueryAllTracesW@12 @362 + QueryServiceConfig2A@20 @363 + QueryServiceConfig2W@20 @364 + QueryServiceConfigA@16 @365 + QueryServiceConfigW@16 @366 + QueryServiceLockStatusA@16 @367 + QueryServiceLockStatusW@16 @368 + QueryServiceObjectSecurity@20 @369 + QueryServiceStatus@8 @370 + QueryServiceStatusEx@20 @371 + QueryTraceW@16 @372 + QueryWindows31FilesMigration@4 @373 + ReadEncryptedFileRaw@12 @374 + ReadEventLogA@28 @375 + ReadEventLogW@28 @376 + RegCloseKey@4 @377 + RegConnectRegistryA@12 @378 + RegConnectRegistryW@12 @379 + RegCopyTreeA@12 @380 + RegCopyTreeW@12 @381 + RegCreateKeyA@12 @382 + RegCreateKeyExA@36 @383 + RegCreateKeyExW@36 @384 + RegCreateKeyTransactedA@44 @385 + RegCreateKeyTransactedW@44 @386 + RegCreateKeyW@12 @387 + RegDeleteKeyA@8 @388 + RegDeleteKeyExA@16 @389 + RegDeleteKeyExW@16 @390 + RegDeleteKeyValueA@12 @391 + RegDeleteKeyValueW@12 @392 + RegDeleteKeyW@8 @393 + RegDeleteTreeA@8 @394 + RegDeleteTreeW@8 @395 + RegDeleteValueA@8 @396 + RegDeleteValueW@8 @397 + RegDisablePredefinedCache@0 @398 + RegDisableReflectionKey@4 @399 + RegEnumKeyA@16 @400 + RegEnumKeyExA@32 @401 + RegEnumKeyExW@32 @402 + RegEnumKeyW@16 @403 + RegEnumValueA@32 @404 + RegEnumValueW@32 @405 + RegFlushKey@4 @406 + RegGetKeySecurity@16 @407 + RegGetValueA@28 @408 + RegGetValueW@28 @409 + RegLoadAppKeyA@20 @410 + RegLoadAppKeyW@20 @411 + RegLoadKeyA@12 @412 + RegLoadKeyW@12 @413 + RegLoadMUIStringA@28 @414 + RegLoadMUIStringW@28 @415 + RegNotifyChangeKeyValue@20 @416 + RegOpenCurrentUser@8 @417 + RegOpenKeyA@12 @418 + RegOpenKeyExA@20 @419 + RegOpenKeyExW@20 @420 + RegOpenKeyW@12 @421 + RegOpenUserClassesRoot@16 @422 + RegOverridePredefKey@8 @423 + RegQueryInfoKeyA@48 @424 + RegQueryInfoKeyW@48 @425 + RegQueryMultipleValuesA@20 @426 + RegQueryMultipleValuesW@20 @427 + RegQueryReflectionKey@8 @428 + RegQueryValueA@16 @429 + RegQueryValueExA@24 @430 + RegQueryValueExW@24 @431 + RegQueryValueW@16 @432 + RegRemapPreDefKey@0 @433 PRIVATE + RegReplaceKeyA@16 @434 + RegReplaceKeyW@16 @435 + RegRestoreKeyA@12 @436 + RegRestoreKeyW@12 @437 + RegSaveKeyA@12 @438 + RegSaveKeyExA@16 @439 + RegSaveKeyExW@16 @440 + RegSaveKeyW@12 @441 + RegSetKeySecurity@12 @442 + RegSetKeyValueA@24 @443 + RegSetKeyValueW@24 @444 + RegSetValueA@20 @445 + RegSetValueExA@24 @446 + RegSetValueExW@24 @447 + RegSetValueW@20 @448 + RegUnLoadKeyA@8 @449 + RegUnLoadKeyW@8 @450 + RegisterEventSourceA@8 @451 + RegisterEventSourceW@8 @452 + RegisterServiceCtrlHandlerA@8 @453 + RegisterServiceCtrlHandlerExA@12 @454 + RegisterServiceCtrlHandlerExW@12 @455 + RegisterServiceCtrlHandlerW@8 @456 + RegisterTraceGuidsA@32=ntdll.EtwRegisterTraceGuidsA @457 + RegisterTraceGuidsW@32=ntdll.EtwRegisterTraceGuidsW @458 + RegisterWaitChainCOMCallback@8 @459 + ReportEventA@36 @460 + ReportEventW@36 @461 + RevertToSelf@0 @462 + SaferCloseLevel@4 @463 + SaferComputeTokenFromLevel@20 @464 + SaferCreateLevel@20 @465 + SaferGetPolicyInformation@24 @466 + SaferIdentifyLevel@16 @467 + SaferSetLevelInformation@16 @468 + SetAclInformation@16 @469 + SetEntriesInAclA@16 @470 + SetEntriesInAclW@16 @471 + SetFileSecurityA@12 @472 + SetFileSecurityW@12 @473 + SetKernelObjectSecurity@12 @474 + SetNamedSecurityInfoA@28 @475 + SetNamedSecurityInfoW@28 @476 + SetPrivateObjectSecurity@20 @477 + SetSecurityDescriptorControl@12 @478 + SetSecurityDescriptorDacl@16 @479 + SetSecurityDescriptorGroup@12 @480 + SetSecurityDescriptorOwner@12 @481 + SetSecurityDescriptorSacl@16 @482 + SetSecurityInfo@28 @483 + SetServiceBits@16 @484 + SetServiceObjectSecurity@12 @485 + SetServiceStatus@8 @486 + SetThreadToken@8 @487 + SetTokenInformation@16 @488 + StartServiceA@12 @489 + StartServiceCtrlDispatcherA@4 @490 + StartServiceCtrlDispatcherW@4 @491 + StartServiceW@12 @492 + StartTraceA@12 @493 + StartTraceW@12 @494 + StopTraceA@16 @495 + StopTraceW@16 @496 + SynchronizeWindows31FilesAndWindowsNTRegistry@16 @497 + SystemFunction001@12 @498 + SystemFunction002@12 @499 + SystemFunction003@8 @500 + SystemFunction004@12 @501 + SystemFunction005@12 @502 + SystemFunction006@8 @503 + SystemFunction007@8 @504 + SystemFunction008@12 @505 + SystemFunction009@12 @506 + SystemFunction010@12 @507 + SystemFunction011@12=SystemFunction010 @508 + SystemFunction012@12 @509 + SystemFunction013@12 @510 + SystemFunction014@12=SystemFunction012 @511 + SystemFunction015@12=SystemFunction013 @512 + SystemFunction016@12=SystemFunction012 @513 + SystemFunction017@12=SystemFunction013 @514 + SystemFunction018@12=SystemFunction012 @515 + SystemFunction019@12=SystemFunction013 @516 + SystemFunction020@12=SystemFunction012 @517 + SystemFunction021@12=SystemFunction013 @518 + SystemFunction022@12=SystemFunction012 @519 + SystemFunction023@12=SystemFunction013 @520 + SystemFunction024@12 @521 + SystemFunction025@12 @522 + SystemFunction026@12=SystemFunction024 @523 + SystemFunction027@12=SystemFunction025 @524 + SystemFunction028@0 @525 PRIVATE + SystemFunction029@0 @526 PRIVATE + SystemFunction030@8 @527 + SystemFunction031@8=SystemFunction030 @528 + SystemFunction032@8 @529 + SystemFunction033@0 @530 PRIVATE + SystemFunction034@0 @531 PRIVATE + SystemFunction035@4 @532 + SystemFunction036@8 @533 + SystemFunction040@12 @534 + SystemFunction041@12 @535 + TraceEvent@12 @536 + TraceEventInstance@0 @537 PRIVATE + TraceMessage @538 + TraceMessageVa@24 @539 + TraceSetInformation@20 @540 + TreeResetNamedSecurityInfoW@44 @541 + UnlockServiceDatabase@4 @542 + UnregisterTraceGuids@8=ntdll.EtwUnregisterTraceGuids @543 + UpdateTraceA@0 @544 PRIVATE + UpdateTraceW@0 @545 PRIVATE + WdmWmiServiceMain@0 @546 PRIVATE + WmiCloseBlock@0 @547 PRIVATE + WmiExecuteMethodA@28 @548 + WmiExecuteMethodW@28 @549 + WmiFreeBuffer@4 @550 + WmiMofEnumerateResourcesA@12 @551 + WmiMofEnumerateResourcesW@12 @552 + WmiNotificationRegistrationA@20 @553 + WmiNotificationRegistrationW@20 @554 + WmiOpenBlock@12 @555 + WmiQueryAllDataA@12 @556 + WmiQueryAllDataW@12 @557 + WmiQueryGuidInformation@8 @558 + WmiQuerySingleInstanceW@0 @559 PRIVATE + WmiSetSingleInstanceA@20 @560 + WmiSetSingleInstanceW@20 @561 + WmiSetSingleItemA@24 @562 + WmiSetSingleItemW@24 @563 + WriteEncryptedFileRaw@12 @564 diff --git a/lib/wine/libadvpack.def b/lib/wine/libadvpack.def new file mode 100644 index 0000000..11b322c --- /dev/null +++ b/lib/wine/libadvpack.def @@ -0,0 +1,87 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/advpack/advpack.spec; do not edit! + +LIBRARY advpack.dll + +EXPORTS + AddDelBackupEntry@16=AddDelBackupEntryA @1 + AddDelBackupEntryA@16 @2 + AddDelBackupEntryW@16 @3 + AdvInstallFile@28=AdvInstallFileA @4 + AdvInstallFileA@28 @5 + AdvInstallFileW@28 @6 + CloseINFEngine@4 @7 + DelNode@8=DelNodeA @8 + DelNodeA@8 @9 + DelNodeRunDLL32@16=DelNodeRunDLL32A @10 + DelNodeRunDLL32A@16 @11 + DelNodeRunDLL32W@16 @12 + DelNodeW@8 @13 + DllMain@12 @14 PRIVATE + DoInfInstall@4 @15 + ExecuteCab@12=ExecuteCabA @16 + ExecuteCabA@12 @17 + ExecuteCabW@12 @18 + ExtractFiles@24=ExtractFilesA @19 + ExtractFilesA@24 @20 + ExtractFilesW@24 @21 + FileSaveMarkNotExist@12=FileSaveMarkNotExistA @22 + FileSaveMarkNotExistA@12 @23 + FileSaveMarkNotExistW@12 @24 + FileSaveRestore@20=FileSaveRestoreA @25 + FileSaveRestoreA@20 @26 + FileSaveRestoreOnINF@28=FileSaveRestoreOnINFA @27 + FileSaveRestoreOnINFA@28 @28 + FileSaveRestoreOnINFW@28 @29 + FileSaveRestoreW@20 @30 + GetVersionFromFile@16=GetVersionFromFileA @31 + GetVersionFromFileA@16 @32 + GetVersionFromFileEx@16=GetVersionFromFileExA @33 + GetVersionFromFileExA@16 @34 + GetVersionFromFileExW@16 @35 + GetVersionFromFileW@16 @36 + IsNTAdmin@8 @37 + LaunchINFSection@16=LaunchINFSectionA @38 + LaunchINFSectionA@16 @39 + LaunchINFSectionEx@16=LaunchINFSectionExA @40 + LaunchINFSectionExA@16 @41 + LaunchINFSectionExW@16 @42 + LaunchINFSectionW@16 @43 + NeedReboot@4 @44 + NeedRebootInit@0 @45 + OpenINFEngine@20=OpenINFEngineA @46 + OpenINFEngineA@20 @47 + OpenINFEngineW@20 @48 + RebootCheckOnInstall@16=RebootCheckOnInstallA @49 + RebootCheckOnInstallA@16 @50 + RebootCheckOnInstallW@16 @51 + RegInstall@12=RegInstallA @52 + RegInstallA@12 @53 + RegInstallW@12 @54 + RegRestoreAll@12=RegRestoreAllA @55 + RegRestoreAllA@12 @56 + RegRestoreAllW@12 @57 + RegSaveRestore@28=RegSaveRestoreA @58 + RegSaveRestoreA@28 @59 + RegSaveRestoreOnINF@28=RegSaveRestoreOnINFA @60 + RegSaveRestoreOnINFA@28 @61 + RegSaveRestoreOnINFW@28 @62 + RegSaveRestoreW@28 @63 + RegisterOCX@16 @64 + RunSetupCommand@32=RunSetupCommandA @65 + RunSetupCommandA@32 @66 + RunSetupCommandW@32 @67 + SetPerUserSecValues@4=SetPerUserSecValuesA @68 + SetPerUserSecValuesA@4 @69 + SetPerUserSecValuesW@4 @70 + TranslateInfString@32=TranslateInfStringA @71 + TranslateInfStringA@32 @72 + TranslateInfStringEx@32=TranslateInfStringExA @73 + TranslateInfStringExA@32 @74 + TranslateInfStringExW@32 @75 + TranslateInfStringW@32 @76 + UserInstStubWrapper@16=UserInstStubWrapperA @77 + UserInstStubWrapperA@16 @78 + UserInstStubWrapperW@16 @79 + UserUnInstStubWrapper@16=UserUnInstStubWrapperA @80 + UserUnInstStubWrapperA@16 @81 + UserUnInstStubWrapperW@16 @82 diff --git a/lib/wine/libamd_ags_x64.def b/lib/wine/libamd_ags_x64.def new file mode 100644 index 0000000..f5bd4a7 --- /dev/null +++ b/lib/wine/libamd_ags_x64.def @@ -0,0 +1,34 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/amd_ags_x64/amd_ags_x64.spec; do not edit! + +LIBRARY amd_ags_x64.dll + +EXPORTS + agsDeInit@4 @1 + agsDriverExtensionsDX11_BeginUAVOverlap@0 @2 PRIVATE + agsDriverExtensionsDX11_CreateBuffer@0 @3 PRIVATE + agsDriverExtensionsDX11_CreateTexture1D@0 @4 PRIVATE + agsDriverExtensionsDX11_CreateTexture2D@0 @5 PRIVATE + agsDriverExtensionsDX11_CreateTexture3D@0 @6 PRIVATE + agsDriverExtensionsDX11_DeInit@0 @7 PRIVATE + agsDriverExtensionsDX11_EndUAVOverlap@0 @8 PRIVATE + agsDriverExtensionsDX11_GetMaxClipRects@0 @9 PRIVATE + agsDriverExtensionsDX11_IASetPrimitiveTopology@0 @10 PRIVATE + agsDriverExtensionsDX11_Init@0 @11 PRIVATE + agsDriverExtensionsDX11_MultiDrawIndexedInstancedIndirect@0 @12 PRIVATE + agsDriverExtensionsDX11_MultiDrawIndexedInstancedIndirectCountIndirect@0 @13 PRIVATE + agsDriverExtensionsDX11_MultiDrawInstancedIndirect@0 @14 PRIVATE + agsDriverExtensionsDX11_MultiDrawInstancedIndirectCountIndirect@0 @15 PRIVATE + agsDriverExtensionsDX11_NotifyResourceBeginAllAccess@0 @16 PRIVATE + agsDriverExtensionsDX11_NotifyResourceEndAllAccess@0 @17 PRIVATE + agsDriverExtensionsDX11_NotifyResourceEndWrites@0 @18 PRIVATE + agsDriverExtensionsDX11_NumPendingAsyncCompileJobs@0 @19 PRIVATE + agsDriverExtensionsDX11_SetClipRects@0 @20 PRIVATE + agsDriverExtensionsDX11_SetDepthBounds@0 @21 PRIVATE + agsDriverExtensionsDX11_SetDiskShaderCacheEnabled@0 @22 PRIVATE + agsDriverExtensionsDX11_SetMaxAsyncCompileThreadCount@0 @23 PRIVATE + agsDriverExtensionsDX11_SetViewBroadcastMasks@0 @24 PRIVATE + agsDriverExtensionsDX12_DeInit@0 @25 PRIVATE + agsDriverExtensionsDX12_Init@0 @26 PRIVATE + agsGetCrossfireGPUCount@0 @27 PRIVATE + agsInit@12 @28 + agsSetDisplayMode@0 @29 PRIVATE diff --git a/lib/wine/libatl.def b/lib/wine/libatl.def new file mode 100644 index 0000000..3dd95ef --- /dev/null +++ b/lib/wine/libatl.def @@ -0,0 +1,57 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/atl/atl.spec; do not edit! + +LIBRARY atl.dll + +EXPORTS + DllCanUnloadNow@0 @1 PRIVATE + DllGetClassObject@12 @2 PRIVATE + DllRegisterServer@0 @3 PRIVATE + DllUnregisterServer@0 @4 PRIVATE + AtlAdvise@16 @10 + AtlUnadvise@12 @11 + AtlFreeMarshalStream@4 @12 + AtlMarshalPtrInProc@12 @13 + AtlUnmarshalPtr@12 @14 + AtlModuleGetClassObject@16 @15 + AtlModuleInit@12 @16 + AtlModuleRegisterClassObjects@12 @17 + AtlModuleRegisterServer@12 @18 + AtlModuleRegisterTypeLib@8 @19 + AtlModuleRevokeClassObjects@4 @20 + AtlModuleTerm@4 @21 + AtlModuleUnregisterServer@8 @22 + AtlModuleUpdateRegistryFromResourceD@20 @23 + AtlWaitWithMessageLoop@4 @24 + AtlSetErrorInfo@0 @25 PRIVATE + AtlCreateTargetDC@8 @26 + AtlHiMetricToPixel@8 @27 + AtlPixelToHiMetric@8 @28 + AtlDevModeW2A@0 @29 PRIVATE + AtlComPtrAssign@8 @30 + AtlComQIPtrAssign@12 @31 + AtlInternalQueryInterface@16 @32 + AtlGetVersion@4 @34 + AtlAxDialogBoxW@20 @35 + AtlAxDialogBoxA@20 @36 + AtlAxCreateDialogW@20 @37 + AtlAxCreateDialogA@20 @38 + AtlAxCreateControl@16 @39 + AtlAxCreateControlEx@28 @40 + AtlAxAttachControl@12 @41 + AtlAxWinInit@0 @42 + AtlModuleAddCreateWndData@12 @43 + AtlModuleExtractCreateWndData@4 @44 + AtlModuleRegisterWndClassInfoW@12 @45 + AtlModuleRegisterWndClassInfoA@12 @46 + AtlAxGetControl@8 @47 + AtlAxGetHost@8 @48 + AtlRegisterClassCategoriesHelper@12 @49 + AtlIPersistStreamInit_Load@16 @50 + AtlIPersistStreamInit_Save@20 @51 + AtlIPersistPropertyBag_Load@20 @52 + AtlIPersistPropertyBag_Save@24 @53 + AtlGetObjectSourceInterface@20 @54 + AtlModuleUnRegisterTypeLib@0 @55 PRIVATE + AtlModuleLoadTypeLib@16 @56 + AtlModuleUnregisterServerEx@12 @57 + AtlModuleAddTermFunc@12 @58 diff --git a/lib/wine/libatl100.def b/lib/wine/libatl100.def new file mode 100644 index 0000000..b16af08 --- /dev/null +++ b/lib/wine/libatl100.def @@ -0,0 +1,57 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/atl100/atl100.spec; do not edit! + +LIBRARY atl100.dll + +EXPORTS + AtlAdvise@16 @10 + AtlUnadvise@12 @11 + AtlFreeMarshalStream@4 @12 + AtlMarshalPtrInProc@12 @13 + AtlUnmarshalPtr@12 @14 + AtlComModuleGetClassObject@16 @15 + AtlComModuleRegisterClassObjects@12 @17 + AtlComModuleRevokeClassObjects@4 @20 + AtlComModuleUnregisterServer@12 @22 + AtlUpdateRegistryFromResourceD@20 @23 + AtlWaitWithMessageLoop@4 @24 + AtlSetErrorInfo@0 @25 PRIVATE + AtlCreateTargetDC@8 @26 + AtlHiMetricToPixel@8 @27 + AtlPixelToHiMetric@8 @28 + AtlDevModeW2A@0 @29 PRIVATE + AtlComPtrAssign@8 @30 + AtlComQIPtrAssign@12 @31 + AtlInternalQueryInterface@16 @32 + AtlGetVersion@4 @34 + AtlAxDialogBoxW@20 @35 + AtlAxDialogBoxA@20 @36 + AtlAxCreateDialogW@20 @37 + AtlAxCreateDialogA@20 @38 + AtlAxCreateControl@16 @39 + AtlAxCreateControlEx@28 @40 + AtlAxAttachControl@12 @41 + AtlAxWinInit@0 @42 + AtlWinModuleAddCreateWndData@12 @43 + AtlWinModuleExtractCreateWndData@4 @44 + AtlWinModuleRegisterWndClassInfoW@0 @45 PRIVATE + AtlWinModuleRegisterWndClassInfoA@0 @46 PRIVATE + AtlAxGetControl@8 @47 + AtlAxGetHost@8 @48 + AtlRegisterClassCategoriesHelper@12 @49 + AtlIPersistStreamInit_Load@16 @50 + AtlIPersistStreamInit_Save@20 @51 + AtlIPersistPropertyBag_Load@20 @52 + AtlIPersistPropertyBag_Save@24 @53 + AtlGetObjectSourceInterface@20 @54 + AtlLoadTypeLib@16 @56 + AtlModuleAddTermFunc@12 @58 + AtlAxCreateControlLic@20 @59 + AtlAxCreateControlLicEx@32 @60 + AtlCreateRegistrar@4 @61 + AtlWinModuleRegisterClassExW@0 @62 PRIVATE + AtlWinModuleRegisterClassExA@0 @63 PRIVATE + AtlCallTermFunc@4 @64 + AtlWinModuleInit@4 @65 + AtlWinModuleTerm@0 @66 PRIVATE + AtlSetPerUserRegistration@4 @67 + AtlGetPerUserRegistration@4 @68 diff --git a/lib/wine/libatl80.def b/lib/wine/libatl80.def new file mode 100644 index 0000000..85c6727 --- /dev/null +++ b/lib/wine/libatl80.def @@ -0,0 +1,58 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/atl80/atl80.spec; do not edit! + +LIBRARY atl80.dll + +EXPORTS + AtlAdvise@16 @10 + AtlUnadvise@12 @11 + AtlFreeMarshalStream@4 @12 + AtlMarshalPtrInProc@12 @13 + AtlUnmarshalPtr@12 @14 + AtlComModuleGetClassObject@16 @15 + AtlComModuleRegisterClassObjects@12 @17 + AtlComModuleRegisterServer@12 @18 + AtlRegisterTypeLib@8 @19 + AtlComModuleRevokeClassObjects@4 @20 + AtlComModuleUnregisterServer@12 @22 + AtlUpdateRegistryFromResourceD@20 @23 + AtlWaitWithMessageLoop@4 @24 + AtlSetErrorInfo@0 @25 PRIVATE + AtlCreateTargetDC@8 @26 + AtlHiMetricToPixel@8 @27 + AtlPixelToHiMetric@8 @28 + AtlDevModeW2A@0 @29 PRIVATE + AtlComPtrAssign@8 @30 + AtlComQIPtrAssign@12 @31 + AtlInternalQueryInterface@16 @32 + AtlGetVersion@4 @34 + AtlAxDialogBoxW@20 @35 + AtlAxDialogBoxA@20 @36 + AtlAxCreateDialogW@20 @37 + AtlAxCreateDialogA@20 @38 + AtlAxCreateControl@16 @39 + AtlAxCreateControlEx@28 @40 + AtlAxAttachControl@12 @41 + AtlAxWinInit@0 @42 + AtlWinModuleAddCreateWndData@12 @43 + AtlWinModuleExtractCreateWndData@4 @44 + AtlWinModuleRegisterWndClassInfoW@0 @45 PRIVATE + AtlWinModuleRegisterWndClassInfoA@0 @46 PRIVATE + AtlAxGetControl@8 @47 + AtlAxGetHost@8 @48 + AtlRegisterClassCategoriesHelper@12 @49 + AtlIPersistStreamInit_Load@16 @50 + AtlIPersistStreamInit_Save@20 @51 + AtlIPersistPropertyBag_Load@20 @52 + AtlIPersistPropertyBag_Save@24 @53 + AtlGetObjectSourceInterface@20 @54 + AtlUnRegisterTypeLib@0 @55 PRIVATE + AtlLoadTypeLib@16 @56 + AtlModuleAddTermFunc@12 @58 + AtlAxCreateControlLic@20 @59 + AtlAxCreateControlLicEx@32 @60 + AtlCreateRegistrar@4 @61 + AtlWinModuleRegisterClassExW@0 @62 PRIVATE + AtlWinModuleRegisterClassExA@0 @63 PRIVATE + AtlCallTermFunc@4 @64 + AtlWinModuleInit@4 @65 + AtlWinModuleTerm@0 @66 PRIVATE diff --git a/lib/wine/libatlthunk.def b/lib/wine/libatlthunk.def new file mode 100644 index 0000000..70c13ee --- /dev/null +++ b/lib/wine/libatlthunk.def @@ -0,0 +1,9 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/atlthunk/atlthunk.spec; do not edit! + +LIBRARY atlthunk.dll + +EXPORTS + AtlThunk_AllocateData@0 @1 + AtlThunk_DataToCode@4 @2 + AtlThunk_FreeData@4 @3 + AtlThunk_InitData@12 @4 diff --git a/lib/wine/libavicap32.def b/lib/wine/libavicap32.def new file mode 100644 index 0000000..2dd21ef --- /dev/null +++ b/lib/wine/libavicap32.def @@ -0,0 +1,9 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/avicap32/avicap32.spec; do not edit! + +LIBRARY avicap32.dll + +EXPORTS + capCreateCaptureWindowA@32 @1 + capCreateCaptureWindowW@32 @2 + capGetDriverDescriptionA@20 @3 + capGetDriverDescriptionW@20 @4 diff --git a/lib/wine/libavifil32.def b/lib/wine/libavifil32.def new file mode 100644 index 0000000..552fa99 --- /dev/null +++ b/lib/wine/libavifil32.def @@ -0,0 +1,84 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/avifil32/avifil32.spec; do not edit! + +LIBRARY avifil32.dll + +EXPORTS + AVIBuildFilter@12=AVIBuildFilterA @1 + AVIBuildFilterA@12 @2 + AVIBuildFilterW@12 @3 + AVIClearClipboard@0 @4 + AVIFileAddRef@4 @5 + AVIFileCreateStream@12=AVIFileCreateStreamA @6 + AVIFileCreateStreamA@12 @7 + AVIFileCreateStreamW@12 @8 + AVIFileEndRecord@4 @9 + AVIFileExit@0 @10 + AVIFileGetStream@16 @11 + AVIFileInfo@12=AVIFileInfoA @12 + AVIFileInfoA@12 @13 + AVIFileInfoW@12 @14 + AVIFileInit@0 @15 + AVIFileOpen@16=AVIFileOpenA @16 + AVIFileOpenA@16 @17 + AVIFileOpenW@16 @18 + AVIFileReadData@16 @19 + AVIFileRelease@4 @20 + AVIFileWriteData@16 @21 + AVIGetFromClipboard@4 @22 + AVIMakeCompressedStream@16 @23 + AVIMakeFileFromStreams@12 @24 + AVIMakeStreamFromClipboard@12 @25 + AVIPutFileOnClipboard@4 @26 + AVISave=AVISaveA @27 + AVISaveA @28 + AVISaveOptions@20 @29 + AVISaveOptionsFree@8 @30 + AVISaveV@24=AVISaveVA @31 + AVISaveVA@24 @32 + AVISaveVW@24 @33 + AVISaveW @34 + AVIStreamAddRef@4 @35 + AVIStreamBeginStreaming@16 @36 + AVIStreamCreate@16 @37 + AVIStreamEndStreaming@4 @38 + AVIStreamFindSample@12 @39 + AVIStreamGetFrame@8 @40 + AVIStreamGetFrameClose@4 @41 + AVIStreamGetFrameOpen@8 @42 + AVIStreamInfo@12=AVIStreamInfoA @43 + AVIStreamInfoA@12 @44 + AVIStreamInfoW@12 @45 + AVIStreamLength@4 @46 + AVIStreamOpenFromFile@24=AVIStreamOpenFromFileA @47 + AVIStreamOpenFromFileA@24 @48 + AVIStreamOpenFromFileW@24 @49 + AVIStreamRead@28 @50 + AVIStreamReadData@16 @51 + AVIStreamReadFormat@16 @52 + AVIStreamRelease@4 @53 + AVIStreamSampleToTime@8 @54 + AVIStreamSetFormat@16 @55 + AVIStreamStart@4 @56 + AVIStreamTimeToSample@8 @57 + AVIStreamWrite@32 @58 + AVIStreamWriteData@16 @59 + CLSID_AVISimpleUnMarshal @60 DATA + CreateEditableStream@8 @61 + DllCanUnloadNow@0 @62 PRIVATE + DllGetClassObject@12 @63 PRIVATE + DllRegisterServer@0 @64 PRIVATE + DllUnregisterServer@0 @65 PRIVATE + EditStreamClone@8 @66 + EditStreamCopy@16 @67 + EditStreamCut@16 @68 + EditStreamPaste@24 @69 + EditStreamSetInfo@12=EditStreamSetInfoA @70 + EditStreamSetInfoA@12 @71 + EditStreamSetInfoW@12 @72 + EditStreamSetName@8=EditStreamSetNameA @73 + EditStreamSetNameA@8 @74 + EditStreamSetNameW@8 @75 + IID_IAVIEditStream @76 DATA + IID_IAVIFile @77 DATA + IID_IAVIStream @78 DATA + IID_IGetFrame @79 DATA diff --git a/lib/wine/libavrt.def b/lib/wine/libavrt.def new file mode 100644 index 0000000..aa52191 --- /dev/null +++ b/lib/wine/libavrt.def @@ -0,0 +1,19 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/avrt/avrt.spec; do not edit! + +LIBRARY avrt.dll + +EXPORTS + AvQuerySystemResponsiveness@8 @1 + AvRevertMmThreadCharacteristics@4 @2 + AvRtCreateThreadOrderingGroup@0 @3 PRIVATE + AvRtCreateThreadOrderingGroupExA@0 @4 PRIVATE + AvRtCreateThreadOrderingGroupExW@0 @5 PRIVATE + AvRtDeleteThreadOrderingGroup@0 @6 PRIVATE + AvRtJoinThreadOrderingGroup@0 @7 PRIVATE + AvRtLeaveThreadOrderingGroup@0 @8 PRIVATE + AvRtWaitOnThreadOrderingGroup@0 @9 PRIVATE + AvSetMmMaxThreadCharacteristicsA@0 @10 PRIVATE + AvSetMmMaxThreadCharacteristicsW@0 @11 PRIVATE + AvSetMmThreadCharacteristicsA@8 @12 + AvSetMmThreadCharacteristicsW@8 @13 + AvSetMmThreadPriority@8 @14 diff --git a/lib/wine/libbcrypt.def b/lib/wine/libbcrypt.def new file mode 100644 index 0000000..15db208 --- /dev/null +++ b/lib/wine/libbcrypt.def @@ -0,0 +1,65 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/bcrypt/bcrypt.spec; do not edit! + +LIBRARY bcrypt.dll + +EXPORTS + BCryptAddContextFunction@20 @1 + BCryptAddContextFunctionProvider@24 @2 + BCryptCloseAlgorithmProvider@8 @3 + BCryptConfigureContext@0 @4 PRIVATE + BCryptConfigureContextFunction@0 @5 PRIVATE + BCryptCreateContext@0 @6 PRIVATE + BCryptCreateHash@28 @7 + BCryptDecrypt@40 @8 + BCryptDeleteContext@0 @9 PRIVATE + BCryptDeriveKey@28 @10 + BCryptDeriveKeyPBKDF2@40 @11 + BCryptDestroyHash@4 @12 + BCryptDestroyKey@4 @13 + BCryptDestroySecret@4 @14 + BCryptDuplicateHash@20 @15 + BCryptDuplicateKey@20 @16 + BCryptEncrypt@40 @17 + BCryptEnumAlgorithms@16 @18 + BCryptEnumContextFunctionProviders@0 @19 PRIVATE + BCryptEnumContextFunctions@0 @20 PRIVATE + BCryptEnumContexts@0 @21 PRIVATE + BCryptEnumProviders@0 @22 PRIVATE + BCryptEnumRegisteredProviders@0 @23 PRIVATE + BCryptExportKey@28 @24 + BCryptFinalizeKeyPair@8 @25 + BCryptFinishHash@16 @26 + BCryptFreeBuffer@0 @27 PRIVATE + BCryptGenRandom@16 @28 + BCryptGenerateKeyPair@16 @29 + BCryptGenerateSymmetricKey@28 @30 + BCryptGetFipsAlgorithmMode@4 @31 + BCryptGetProperty@24 @32 + BCryptHash@28 @33 + BCryptHashData@16 @34 + BCryptImportKey@36 @35 + BCryptImportKeyPair@28 @36 + BCryptOpenAlgorithmProvider@16 @37 + BCryptQueryContextConfiguration@0 @38 PRIVATE + BCryptQueryContextFunctionConfiguration@0 @39 PRIVATE + BCryptQueryContextFunctionProperty@0 @40 PRIVATE + BCryptQueryProviderRegistration@0 @41 PRIVATE + BCryptRegisterConfigChangeNotify@0 @42 PRIVATE + BCryptRegisterProvider@12 @43 + BCryptRemoveContextFunction@16 @44 + BCryptRemoveContextFunctionProvider@20 @45 + BCryptResolveProviders@0 @46 PRIVATE + BCryptSecretAgreement@16 @47 + BCryptSetAuditingInterface@0 @48 PRIVATE + BCryptSetContextFunctionProperty@0 @49 PRIVATE + BCryptSetProperty@20 @50 + BCryptSignHash@0 @51 PRIVATE + BCryptUnregisterConfigChangeNotify@0 @52 PRIVATE + BCryptUnregisterProvider@4 @53 + BCryptVerifySignature@28 @54 + GetAsymmetricEncryptionInterface@0 @55 PRIVATE + GetCipherInterface@0 @56 PRIVATE + GetHashInterface@0 @57 PRIVATE + GetRngInterface@0 @58 PRIVATE + GetSecretAgreementInterface@0 @59 PRIVATE + GetSignatureInterface@0 @60 PRIVATE diff --git a/lib/wine/libcabinet.def b/lib/wine/libcabinet.def new file mode 100644 index 0000000..30a962e --- /dev/null +++ b/lib/wine/libcabinet.def @@ -0,0 +1,19 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/cabinet/cabinet.spec; do not edit! + +LIBRARY cabinet.dll + +EXPORTS + GetDllVersion@0 @1 PRIVATE + DllGetVersion@4 @2 PRIVATE + Extract@8 @3 + DeleteExtractedFiles@0 @4 PRIVATE + FCICreate @10 + FCIAddFile @11 + FCIFlushFolder @12 + FCIFlushCabinet @13 + FCIDestroy @14 + FDICreate @20 + FDIIsCabinet @21 + FDICopy @22 + FDIDestroy @23 + FDITruncateCabinet @24 diff --git a/lib/wine/libcapi2032.def b/lib/wine/libcapi2032.def new file mode 100644 index 0000000..37ba82d --- /dev/null +++ b/lib/wine/libcapi2032.def @@ -0,0 +1,16 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/capi2032/capi2032.spec; do not edit! + +LIBRARY capi2032.dll + +EXPORTS + CAPI_REGISTER@20=wrapCAPI_REGISTER @1 + CAPI_RELEASE@4=wrapCAPI_RELEASE @2 + CAPI_PUT_MESSAGE@8=wrapCAPI_PUT_MESSAGE @3 + CAPI_GET_MESSAGE@8=wrapCAPI_GET_MESSAGE @4 + CAPI_WAIT_FOR_SIGNAL@4=wrapCAPI_WAIT_FOR_SIGNAL @5 + CAPI_GET_MANUFACTURER@4=wrapCAPI_GET_MANUFACTURER @6 + CAPI_GET_VERSION@16=wrapCAPI_GET_VERSION @7 + CAPI_GET_SERIAL_NUMBER@4=wrapCAPI_GET_SERIAL_NUMBER @8 + CAPI_GET_PROFILE@8=wrapCAPI_GET_PROFILE @9 + CAPI_INSTALLED@0=wrapCAPI_INSTALLED @10 + CAPI_MANUFACTURER@20=wrapCAPI_MANUFACTURER @99 diff --git a/lib/wine/libcards.def b/lib/wine/libcards.def new file mode 100644 index 0000000..123aae1 --- /dev/null +++ b/lib/wine/libcards.def @@ -0,0 +1,10 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/cards/cards.spec; do not edit! + +LIBRARY cards.dll + +EXPORTS + cdtAnimate@20 @1 + cdtDraw@24 @2 + cdtDrawExt@32 @3 + cdtInit@8 @4 + cdtTerm@0 @5 diff --git a/lib/wine/libcfgmgr32.def b/lib/wine/libcfgmgr32.def new file mode 100644 index 0000000..61a2804 --- /dev/null +++ b/lib/wine/libcfgmgr32.def @@ -0,0 +1,189 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/cfgmgr32/cfgmgr32.spec; do not edit! + +LIBRARY cfgmgr32.dll + +EXPORTS + CMP_WaitNoPendingInstallEvents@4=setupapi.CMP_WaitNoPendingInstallEvents @1 + CM_Add_Empty_Log_Conf@0 @2 PRIVATE + CM_Add_Empty_Log_Conf_Ex@0 @3 PRIVATE + CM_Add_IDA@0 @4 PRIVATE + CM_Add_IDW@0 @5 PRIVATE + CM_Add_ID_ExA@0 @6 PRIVATE + CM_Add_ID_ExW@0 @7 PRIVATE + CM_Add_Range@0 @8 PRIVATE + CM_Add_Res_Des@0 @9 PRIVATE + CM_Add_Res_Des_Ex@0 @10 PRIVATE + CM_Connect_MachineA@8=setupapi.CM_Connect_MachineA @11 + CM_Connect_MachineW@8=setupapi.CM_Connect_MachineW @12 + CM_Create_DevNodeA@16=setupapi.CM_Create_DevNodeA @13 + CM_Create_DevNodeW@16=setupapi.CM_Create_DevNodeW @14 + CM_Create_DevNode_ExA@0 @15 PRIVATE + CM_Create_DevNode_ExW@0 @16 PRIVATE + CM_Create_Range_List@0 @17 PRIVATE + CM_Delete_Class_Key@0 @18 PRIVATE + CM_Delete_Class_Key_Ex@0 @19 PRIVATE + CM_Delete_DevNode_Key@0 @20 PRIVATE + CM_Delete_DevNode_Key_Ex@0 @21 PRIVATE + CM_Delete_Range@0 @22 PRIVATE + CM_Detect_Resource_Conflict@0 @23 PRIVATE + CM_Detect_Resource_Conflict_Ex@0 @24 PRIVATE + CM_Disable_DevNode@0 @25 PRIVATE + CM_Disable_DevNode_Ex@0 @26 PRIVATE + CM_Disconnect_Machine@4=setupapi.CM_Disconnect_Machine @27 + CM_Dup_Range_List@0 @28 PRIVATE + CM_Enable_DevNode@0 @29 PRIVATE + CM_Enable_DevNode_Ex@0 @30 PRIVATE + CM_Enumerate_Classes@12=setupapi.CM_Enumerate_Classes @31 + CM_Enumerate_Classes_Ex@0 @32 PRIVATE + CM_Enumerate_EnumeratorsA@0 @33 PRIVATE + CM_Enumerate_EnumeratorsW@0 @34 PRIVATE + CM_Enumerate_Enumerators_ExA@0 @35 PRIVATE + CM_Enumerate_Enumerators_ExW@0 @36 PRIVATE + CM_Find_Range@0 @37 PRIVATE + CM_First_Range@0 @38 PRIVATE + CM_Free_Log_Conf@0 @39 PRIVATE + CM_Free_Log_Conf_Ex@0 @40 PRIVATE + CM_Free_Log_Conf_Handle@0 @41 PRIVATE + CM_Free_Range_List@0 @42 PRIVATE + CM_Free_Res_Des@0 @43 PRIVATE + CM_Free_Res_Des_Ex@0 @44 PRIVATE + CM_Free_Res_Des_Handle@0 @45 PRIVATE + CM_Get_Child@12=setupapi.CM_Get_Child @46 + CM_Get_Child_Ex@16=setupapi.CM_Get_Child_Ex @47 + CM_Get_Class_Key_NameA@0 @48 PRIVATE + CM_Get_Class_Key_NameW@0 @49 PRIVATE + CM_Get_Class_Key_Name_ExA@0 @50 PRIVATE + CM_Get_Class_Key_Name_ExW@0 @51 PRIVATE + CM_Get_Class_NameA@0 @52 PRIVATE + CM_Get_Class_NameW@0 @53 PRIVATE + CM_Get_Class_Name_ExA@0 @54 PRIVATE + CM_Get_Class_Name_ExW@0 @55 PRIVATE + CM_Get_Class_Registry_PropertyA@28=setupapi.CM_Get_Class_Registry_PropertyA @56 + CM_Get_Class_Registry_PropertyW@28=setupapi.CM_Get_Class_Registry_PropertyW @57 + CM_Get_Depth@0 @58 PRIVATE + CM_Get_Depth_Ex@0 @59 PRIVATE + CM_Get_DevNode_Registry_PropertyA@24=setupapi.CM_Get_DevNode_Registry_PropertyA @60 + CM_Get_DevNode_Registry_PropertyW@24=setupapi.CM_Get_DevNode_Registry_PropertyW @61 + CM_Get_DevNode_Registry_Property_ExA@28=setupapi.CM_Get_DevNode_Registry_Property_ExA @62 + CM_Get_DevNode_Registry_Property_ExW@28=setupapi.CM_Get_DevNode_Registry_Property_ExW @63 + CM_Get_DevNode_Status@16=setupapi.CM_Get_DevNode_Status @64 + CM_Get_DevNode_Status_Ex@20=setupapi.CM_Get_DevNode_Status_Ex @65 + CM_Get_Device_IDA@16=setupapi.CM_Get_Device_IDA @66 + CM_Get_Device_IDW@16=setupapi.CM_Get_Device_IDW @67 + CM_Get_Device_ID_ExA@20=setupapi.CM_Get_Device_ID_ExA @68 + CM_Get_Device_ID_ExW@20=setupapi.CM_Get_Device_ID_ExW @69 + CM_Get_Device_ID_ListA@16=setupapi.CM_Get_Device_ID_ListA @70 + CM_Get_Device_ID_ListW@16=setupapi.CM_Get_Device_ID_ListW @71 + CM_Get_Device_ID_List_ExA@0 @72 PRIVATE + CM_Get_Device_ID_List_ExW@0 @73 PRIVATE + CM_Get_Device_ID_List_SizeA@12=setupapi.CM_Get_Device_ID_List_SizeA @74 + CM_Get_Device_ID_List_SizeW@12=setupapi.CM_Get_Device_ID_List_SizeW @75 + CM_Get_Device_ID_List_Size_ExA@0 @76 PRIVATE + CM_Get_Device_ID_List_Size_ExW@0 @77 PRIVATE + CM_Get_Device_ID_Size@12=setupapi.CM_Get_Device_ID_Size @78 + CM_Get_Device_ID_Size_Ex@0 @79 PRIVATE + CM_Get_Device_Interface_AliasA@0 @80 PRIVATE + CM_Get_Device_Interface_AliasW@0 @81 PRIVATE + CM_Get_Device_Interface_Alias_ExA@0 @82 PRIVATE + CM_Get_Device_Interface_Alias_ExW@0 @83 PRIVATE + CM_Get_Device_Interface_ListA@0 @84 PRIVATE + CM_Get_Device_Interface_ListW@0 @85 PRIVATE + CM_Get_Device_Interface_List_ExA@0 @86 PRIVATE + CM_Get_Device_Interface_List_ExW@0 @87 PRIVATE + CM_Get_Device_Interface_List_SizeA@16=setupapi.CM_Get_Device_Interface_List_SizeA @88 + CM_Get_Device_Interface_List_SizeW@16=setupapi.CM_Get_Device_Interface_List_SizeW @89 + CM_Get_Device_Interface_List_Size_ExA@20=setupapi.CM_Get_Device_Interface_List_Size_ExA @90 + CM_Get_Device_Interface_List_Size_ExW@20=setupapi.CM_Get_Device_Interface_List_Size_ExW @91 + CM_Get_First_Log_Conf@0 @92 PRIVATE + CM_Get_First_Log_Conf_Ex@0 @93 PRIVATE + CM_Get_Global_State@0 @94 PRIVATE + CM_Get_Global_State_Ex@0 @95 PRIVATE + CM_Get_HW_Prof_FlagsA@0 @96 PRIVATE + CM_Get_HW_Prof_FlagsW@0 @97 PRIVATE + CM_Get_HW_Prof_Flags_ExA@0 @98 PRIVATE + CM_Get_HW_Prof_Flags_ExW@0 @99 PRIVATE + CM_Get_Hardware_Profile_InfoA@0 @100 PRIVATE + CM_Get_Hardware_Profile_InfoW@0 @101 PRIVATE + CM_Get_Hardware_Profile_Info_ExA@0 @102 PRIVATE + CM_Get_Hardware_Profile_Info_ExW@0 @103 PRIVATE + CM_Get_Log_Conf_Priority@0 @104 PRIVATE + CM_Get_Log_Conf_Priority_Ex@0 @105 PRIVATE + CM_Get_Next_Log_Conf@0 @106 PRIVATE + CM_Get_Next_Log_Conf_Ex@0 @107 PRIVATE + CM_Get_Next_Res_Des@0 @108 PRIVATE + CM_Get_Next_Res_Des_Ex@0 @109 PRIVATE + CM_Get_Parent@12=setupapi.CM_Get_Parent @110 + CM_Get_Parent_Ex@0 @111 PRIVATE + CM_Get_Res_Des_Data@0 @112 PRIVATE + CM_Get_Res_Des_Data_Ex@0 @113 PRIVATE + CM_Get_Res_Des_Data_Size@0 @114 PRIVATE + CM_Get_Res_Des_Data_Size_Ex@0 @115 PRIVATE + CM_Get_Sibling@12=setupapi.CM_Get_Sibling @116 + CM_Get_Sibling_Ex@16=setupapi.CM_Get_Sibling_Ex @117 + CM_Get_Version@0=setupapi.CM_Get_Version @118 + CM_Get_Version_Ex@0 @119 PRIVATE + CM_Intersect_Range_List@0 @120 PRIVATE + CM_Invert_Range_List@0 @121 PRIVATE + CM_Is_Dock_Station_Present@0 @122 PRIVATE + CM_Locate_DevNodeA@12=setupapi.CM_Locate_DevNodeA @123 + CM_Locate_DevNodeW@12=setupapi.CM_Locate_DevNodeW @124 + CM_Locate_DevNode_ExA@16=setupapi.CM_Locate_DevNode_ExA @125 + CM_Locate_DevNode_ExW@16=setupapi.CM_Locate_DevNode_ExW @126 + CM_Merge_Range_List@0 @127 PRIVATE + CM_Modify_Res_Des@0 @128 PRIVATE + CM_Modify_Res_Des_Ex@0 @129 PRIVATE + CM_Move_DevNode@0 @130 PRIVATE + CM_Move_DevNode_Ex@0 @131 PRIVATE + CM_Next_Range@0 @132 PRIVATE + CM_Open_Class_KeyA@0 @133 PRIVATE + CM_Open_Class_KeyW@0 @134 PRIVATE + CM_Open_Class_Key_ExA@0 @135 PRIVATE + CM_Open_Class_Key_ExW@0 @136 PRIVATE + CM_Open_DevNode_Key@24=setupapi.CM_Open_DevNode_Key @137 + CM_Open_DevNode_Key_Ex@0 @138 PRIVATE + CM_Query_Arbitrator_Free_Data@0 @139 PRIVATE + CM_Query_Arbitrator_Free_Data_Ex@0 @140 PRIVATE + CM_Query_Arbitrator_Free_Size@0 @141 PRIVATE + CM_Query_Arbitrator_Free_Size_Ex@0 @142 PRIVATE + CM_Query_Remove_SubTree@0 @143 PRIVATE + CM_Query_Remove_SubTree_Ex@0 @144 PRIVATE + CM_Reenumerate_DevNode@8=setupapi.CM_Reenumerate_DevNode @145 + CM_Reenumerate_DevNode_Ex@12=setupapi.CM_Reenumerate_DevNode_Ex @146 + CM_Register_Device_Driver@0 @147 PRIVATE + CM_Register_Device_Driver_Ex@0 @148 PRIVATE + CM_Register_Device_InterfaceA@0 @149 PRIVATE + CM_Register_Device_InterfaceW@0 @150 PRIVATE + CM_Register_Device_Interface_ExA@0 @151 PRIVATE + CM_Register_Device_Interface_ExW@0 @152 PRIVATE + CM_Remove_SubTree@0 @153 PRIVATE + CM_Remove_SubTree_Ex@0 @154 PRIVATE + CM_Remove_Unmarked_Children@0 @155 PRIVATE + CM_Remove_Unmarked_Children_Ex@0 @156 PRIVATE + CM_Request_Eject_PC@0 @157 PRIVATE + CM_Reset_Children_Marks@0 @158 PRIVATE + CM_Reset_Children_Marks_Ex@0 @159 PRIVATE + CM_Run_Detection@0 @160 PRIVATE + CM_Run_Detection_Ex@0 @161 PRIVATE + CM_Set_Class_Registry_PropertyA@24=setupapi.CM_Set_Class_Registry_PropertyA @162 + CM_Set_Class_Registry_PropertyW@24=setupapi.CM_Set_Class_Registry_PropertyW @163 + CM_Set_DevNode_Problem@0 @164 PRIVATE + CM_Set_DevNode_Problem_Ex@0 @165 PRIVATE + CM_Set_DevNode_Registry_PropertyA@0 @166 PRIVATE + CM_Set_DevNode_Registry_PropertyW@0 @167 PRIVATE + CM_Set_DevNode_Registry_Property_ExA@0 @168 PRIVATE + CM_Set_DevNode_Registry_Property_ExW@0 @169 PRIVATE + CM_Set_HW_Prof@0 @170 PRIVATE + CM_Set_HW_Prof_Ex@0 @171 PRIVATE + CM_Set_HW_Prof_FlagsA@0 @172 PRIVATE + CM_Set_HW_Prof_FlagsW@0 @173 PRIVATE + CM_Set_HW_Prof_Flags_ExA@0 @174 PRIVATE + CM_Set_HW_Prof_Flags_ExW@0 @175 PRIVATE + CM_Setup_DevNode@0 @176 PRIVATE + CM_Setup_DevNode_Ex@0 @177 PRIVATE + CM_Test_Range_Available@0 @178 PRIVATE + CM_Uninstall_DevNode@0 @179 PRIVATE + CM_Uninstall_DevNode_Ex@0 @180 PRIVATE + CM_Unregister_Device_InterfaceA@0 @181 PRIVATE + CM_Unregister_Device_InterfaceW@0 @182 PRIVATE + CM_Unregister_Device_Interface_ExA@0 @183 PRIVATE + CM_Unregister_Device_Interface_ExW@0 @184 PRIVATE diff --git a/lib/wine/libclusapi.def b/lib/wine/libclusapi.def new file mode 100644 index 0000000..2a674a7 --- /dev/null +++ b/lib/wine/libclusapi.def @@ -0,0 +1,120 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/clusapi/clusapi.spec; do not edit! + +LIBRARY clusapi.dll + +EXPORTS + AddClusterResourceDependency@0 @1 PRIVATE + AddClusterResourceNode@0 @2 PRIVATE + BackupClusterDatabase@0 @3 PRIVATE + CanResourceBeDependent@0 @4 PRIVATE + ChangeClusterResourceGroup@0 @5 PRIVATE + CloseCluster@4 @6 + CloseClusterGroup@0 @7 PRIVATE + CloseClusterNetInterface@0 @8 PRIVATE + CloseClusterNetwork@0 @9 PRIVATE + CloseClusterNode@0 @10 PRIVATE + CloseClusterNotifyPort@0 @11 PRIVATE + CloseClusterResource@0 @12 PRIVATE + ClusterCloseEnum@4 @13 + ClusterControl@0 @14 PRIVATE + ClusterEnum@20 @15 + ClusterGetEnumCount@0 @16 PRIVATE + ClusterGroupCloseEnum@0 @17 PRIVATE + ClusterGroupControl@0 @18 PRIVATE + ClusterGroupEnum@0 @19 PRIVATE + ClusterGroupGetEnumCount@0 @20 PRIVATE + ClusterGroupOpenEnum@0 @21 PRIVATE + ClusterNetInterfaceControl@0 @22 PRIVATE + ClusterNetworkCloseEnum@0 @23 PRIVATE + ClusterNetworkControl@0 @24 PRIVATE + ClusterNetworkEnum@0 @25 PRIVATE + ClusterNetworkGetEnumCount@0 @26 PRIVATE + ClusterNetworkOpenEnum@0 @27 PRIVATE + ClusterNodeCloseEnum@0 @28 PRIVATE + ClusterNodeControl@0 @29 PRIVATE + ClusterNodeEnum@0 @30 PRIVATE + ClusterNodeGetEnumCount@0 @31 PRIVATE + ClusterNodeOpenEnum@0 @32 PRIVATE + ClusterOpenEnum@8 @33 + ClusterRegCloseKey@0 @34 PRIVATE + ClusterRegCreateKey@0 @35 PRIVATE + ClusterRegDeleteKey@0 @36 PRIVATE + ClusterRegDeleteValue@0 @37 PRIVATE + ClusterRegEnumKey@0 @38 PRIVATE + ClusterRegEnumValue@0 @39 PRIVATE + ClusterRegGetKeySecurity@0 @40 PRIVATE + ClusterRegOpenKey@0 @41 PRIVATE + ClusterRegQueryInfoKey@0 @42 PRIVATE + ClusterRegQueryValue@0 @43 PRIVATE + ClusterRegSetKeySecurity@0 @44 PRIVATE + ClusterRegSetValue@0 @45 PRIVATE + ClusterResourceCloseEnum@0 @46 PRIVATE + ClusterResourceControl@0 @47 PRIVATE + ClusterResourceEnum@0 @48 PRIVATE + ClusterResourceGetEnumCount@0 @49 PRIVATE + ClusterResourceOpenEnum@0 @50 PRIVATE + ClusterResourceTypeCloseEnum@0 @51 PRIVATE + ClusterResourceTypeControl@0 @52 PRIVATE + ClusterResourceTypeEnum@0 @53 PRIVATE + ClusterResourceTypeGetEnumCount@0 @54 PRIVATE + ClusterResourceTypeOpenEnum@0 @55 PRIVATE + CreateClusterGroup@0 @56 PRIVATE + CreateClusterNotifyPort@0 @57 PRIVATE + CreateClusterResource@0 @58 PRIVATE + CreateClusterResourceType@0 @59 PRIVATE + DeleteClusterGroup@0 @60 PRIVATE + DeleteClusterResource@0 @61 PRIVATE + DeleteClusterResourceType@0 @62 PRIVATE + EvictClusterNode@0 @63 PRIVATE + EvictClusterNodeEx@0 @64 PRIVATE + FailClusterResource@0 @65 PRIVATE + GetClusterFromGroup@0 @66 PRIVATE + GetClusterFromNetInterface@0 @67 PRIVATE + GetClusterFromNetwork@0 @68 PRIVATE + GetClusterFromNode@0 @69 PRIVATE + GetClusterFromResource@0 @70 PRIVATE + GetClusterGroupKey@0 @71 PRIVATE + GetClusterGroupState@0 @72 PRIVATE + GetClusterInformation@16 @73 + GetClusterKey@0 @74 PRIVATE + GetClusterNetInterface@0 @75 PRIVATE + GetClusterNetInterfaceKey@0 @76 PRIVATE + GetClusterNetInterfaceState@0 @77 PRIVATE + GetClusterNetworkId@0 @78 PRIVATE + GetClusterNetworkKey@0 @79 PRIVATE + GetClusterNetworkState@0 @80 PRIVATE + GetClusterNodeId@0 @81 PRIVATE + GetClusterNodeKey@0 @82 PRIVATE + GetClusterNodeState@0 @83 PRIVATE + GetClusterNotify@0 @84 PRIVATE + GetClusterQuorumResource@0 @85 PRIVATE + GetClusterResourceKey@0 @86 PRIVATE + GetClusterResourceNetworkName@0 @87 PRIVATE + GetClusterResourceState@0 @88 PRIVATE + GetClusterResourceTypeKey@0 @89 PRIVATE + GetNodeClusterState@8 @90 + MoveClusterGroup@0 @91 PRIVATE + OfflineClusterGroup@0 @92 PRIVATE + OfflineClusterResource@0 @93 PRIVATE + OnlineClusterGroup@0 @94 PRIVATE + OnlineClusterResource@0 @95 PRIVATE + OpenCluster@4 @96 + OpenClusterGroup@0 @97 PRIVATE + OpenClusterNetInterface@0 @98 PRIVATE + OpenClusterNetwork@0 @99 PRIVATE + OpenClusterNode@0 @100 PRIVATE + OpenClusterResource@0 @101 PRIVATE + PauseClusterNode@0 @102 PRIVATE + RegisterClusterNotify@0 @103 PRIVATE + RemoveClusterResourceDependency@0 @104 PRIVATE + RemoveClusterResourceNode@0 @105 PRIVATE + RestoreClusterDatabase@0 @106 PRIVATE + ResumeClusterNode@0 @107 PRIVATE + SetClusterGroupName@0 @108 PRIVATE + SetClusterGroupNodeList@0 @109 PRIVATE + SetClusterName@0 @110 PRIVATE + SetClusterNetworkName@0 @111 PRIVATE + SetClusterNetworkPriorityOrder@0 @112 PRIVATE + SetClusterQuorumResource@0 @113 PRIVATE + SetClusterResourceName@0 @114 PRIVATE + SetClusterServiceAccountPassword@0 @115 PRIVATE diff --git a/lib/wine/libcomctl32.def b/lib/wine/libcomctl32.def new file mode 100644 index 0000000..eeda46d --- /dev/null +++ b/lib/wine/libcomctl32.def @@ -0,0 +1,195 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/comctl32/comctl32.spec; do not edit! + +LIBRARY comctl32.dll + +EXPORTS + MenuHelp@28 @2 + ShowHideMenuCtl@12 @3 + GetEffectiveClientRect@12 @4 + DrawStatusTextA@16 @5 + CreateStatusWindowA@16 @6 + CreateToolbar@32 @7 + CreateMappedBitmap@20 @8 + DPA_LoadStream@16 @9 NONAME + DPA_SaveStream@16 @10 NONAME + DPA_Merge@24 @11 NONAME + MakeDragList@4 @13 + LBItemFromPt@16 @14 + DrawInsert@12 @15 + CreateUpDownControl@48 @16 + InitCommonControls@0 @17 + Alloc@4 @71 NONAME + ReAlloc@8 @72 NONAME + Free@4 @73 NONAME + GetSize@4 @74 NONAME + CreateMRUListA@4 @151 NONAME + FreeMRUList@4 @152 NONAME + AddMRUStringA@8 @153 NONAME + EnumMRUListA@16 @154 NONAME + FindMRUStringA@12 @155 NONAME + DelMRUString@8 @156 NONAME + CreateMRUListLazyA@16 @157 NONAME + CreatePage@0 @163 NONAME PRIVATE + CreateProxyPage@0 @164 NONAME PRIVATE + AddMRUData@12 @167 NONAME + FindMRUData@16 @169 NONAME + Str_GetPtrA@12 @233 NONAME + Str_SetPtrA@8 @234 NONAME + Str_GetPtrW@12 @235 NONAME + Str_SetPtrW@8 @236 NONAME + DSA_Create@8 @320 NONAME + DSA_Destroy@4 @321 NONAME + DSA_GetItem@12 @322 NONAME + DSA_GetItemPtr@8 @323 NONAME + DSA_InsertItem@12 @324 NONAME + DSA_SetItem@12 @325 NONAME + DSA_DeleteItem@8 @326 NONAME + DSA_DeleteAllItems@4 @327 NONAME + DPA_Create@4 @328 NONAME + DPA_Destroy@4 @329 NONAME + DPA_Grow@8 @330 NONAME + DPA_Clone@8 @331 NONAME + DPA_GetPtr@8 @332 NONAME + DPA_GetPtrIndex@8 @333 NONAME + DPA_InsertPtr@12 @334 NONAME + DPA_SetPtr@12 @335 NONAME + DPA_DeletePtr@8 @336 NONAME + DPA_DeleteAllPtrs@4 @337 NONAME + DPA_Sort@12 @338 NONAME + DPA_Search@24 @339 NONAME + DPA_CreateEx@8 @340 NONAME + SendNotify@16 @341 NONAME + SendNotifyEx@20 @342 NONAME + TaskDialog@32 @344 NONAME + TaskDialogIndirect@16 @345 NONAME + StrChrA@8 @350 NONAME PRIVATE + StrRChrA@12 @351 NONAME PRIVATE + StrCmpNA@12 @352 NONAME PRIVATE + StrCmpNIA@12 @353 NONAME PRIVATE + StrStrA@8 @354 NONAME PRIVATE + StrStrIA@8 @355 NONAME PRIVATE + StrCSpnA@8 @356 NONAME PRIVATE + StrToIntA@4 @357 NONAME PRIVATE + StrChrW@8 @358 NONAME PRIVATE + StrRChrW@12 @359 NONAME PRIVATE + StrCmpNW@12 @360 NONAME PRIVATE + StrCmpNIW@12 @361 NONAME PRIVATE + StrStrW@8 @362 NONAME PRIVATE + StrStrIW@8 @363 NONAME PRIVATE + StrCSpnW@8 @364 NONAME PRIVATE + StrToIntW@4 @365 NONAME PRIVATE + StrChrIA@8 @366 NONAME PRIVATE + StrChrIW@8 @367 NONAME PRIVATE + StrRChrIA@12 @368 NONAME PRIVATE + StrRChrIW@12 @369 NONAME PRIVATE + StrRStrIA@12 @372 NONAME PRIVATE + StrRStrIW@12 @373 NONAME PRIVATE + StrCSpnIA@8 @374 NONAME PRIVATE + StrCSpnIW@8 @375 NONAME PRIVATE + IntlStrEqWorkerA@16 @376 NONAME PRIVATE + IntlStrEqWorkerW@16 @377 NONAME PRIVATE + LoadIconMetric@16 @380 NONAME + LoadIconWithScaleDown@20 @381 NONAME + SmoothScrollWindow@4 @382 NONAME + DoReaderMode@0 @383 NONAME PRIVATE + SetPathWordBreakProc@8 @384 NONAME + DPA_EnumCallback@12 @385 NONAME + DPA_DestroyCallback@12 @386 NONAME + DSA_EnumCallback@12 @387 NONAME + DSA_DestroyCallback@12 @388 NONAME + SHGetProcessDword@0 @389 NONAME PRIVATE + ImageList_SetColorTable@16 @390 NONAME + CreateMRUListW@4 @400 NONAME + AddMRUStringW@8 @401 NONAME + FindMRUStringW@12 @402 NONAME + EnumMRUListW@16 @403 NONAME + CreateMRUListLazyW@16 @404 NONAME + SetWindowSubclass@16 @410 NONAME + GetWindowSubclass@16 @411 NONAME + RemoveWindowSubclass@12 @412 NONAME + DefSubclassProc@16 @413 NONAME + MirrorIcon@8 @414 NONAME + DrawTextWrap@20=user32.DrawTextW @415 NONAME + DrawTextExPrivWrap@24=user32.DrawTextExW @416 NONAME + ExtTextOutWrap@32=gdi32.ExtTextOutW @417 NONAME + GetCharWidthWrap@16=gdi32.GetCharWidthW @418 NONAME + GetTextExtentPointWrap@16=gdi32.GetTextExtentPointW @419 NONAME + GetTextExtentPoint32Wrap@16=gdi32.GetTextExtentPoint32W @420 NONAME + TextOutWrap@20=gdi32.TextOutW @421 NONAME + CreatePropertySheetPage@4=CreatePropertySheetPageA @12 + CreatePropertySheetPageA@4 @18 + CreatePropertySheetPageW@4 @19 + CreateStatusWindow@16=CreateStatusWindowA @20 + CreateStatusWindowW@16 @21 + CreateToolbarEx@52 @22 + DestroyPropertySheetPage@4 @23 + DllGetVersion@4 @24 PRIVATE + DllInstall@8 @25 PRIVATE + DPA_GetSize@4 @26 + DrawShadowText@36 @27 + DrawStatusText@16=DrawStatusTextA @28 + DrawStatusTextW@16 @29 + DSA_Clone@4 @30 + DSA_GetSize@4 @31 + FlatSB_EnableScrollBar@12 @32 + FlatSB_GetScrollInfo@12 @33 + FlatSB_GetScrollPos@8 @34 + FlatSB_GetScrollProp@12 @35 + FlatSB_GetScrollRange@16 @36 + FlatSB_SetScrollInfo@16 @37 + FlatSB_SetScrollPos@16 @38 + FlatSB_SetScrollProp@16 @39 + FlatSB_SetScrollRange@20 @40 + FlatSB_ShowScrollBar@12 @41 + GetMUILanguage@0 @42 + HIMAGELIST_QueryInterface@12 @43 + ImageList_Add@12 @44 + ImageList_AddIcon@8 @45 + ImageList_AddMasked@12 @46 + ImageList_BeginDrag@16 @47 + ImageList_CoCreateInstance@16 @48 + ImageList_Copy@20 @49 + ImageList_Create@20 @50 + ImageList_Destroy@4 @51 + ImageList_DragEnter@12 @52 + ImageList_DragLeave@4 @53 + ImageList_DragMove@8 @54 + ImageList_DragShowNolock@4 @55 + ImageList_Draw@24 @56 + ImageList_DrawEx@40 @57 + ImageList_DrawIndirect@4 @58 + ImageList_Duplicate@4 @59 + ImageList_EndDrag@0 @60 + ImageList_GetBkColor@4 @61 + ImageList_GetDragImage@8 @62 + ImageList_GetFlags@4 @63 + ImageList_GetIcon@12 @64 + ImageList_GetIconSize@12 @65 + ImageList_GetImageCount@4 @66 + ImageList_GetImageInfo@12 @67 + ImageList_GetImageRect@12 @68 + ImageList_LoadImage@28=ImageList_LoadImageA @69 + ImageList_LoadImageA@28 @70 + ImageList_LoadImageW@28 @75 + ImageList_Merge@24 @76 + ImageList_Read@4 @77 + ImageList_Remove@8 @78 + ImageList_Replace@16 @79 + ImageList_ReplaceIcon@12 @80 + ImageList_SetBkColor@8 @81 + ImageList_SetDragCursorImage@16 @82 + ImageList_SetFilter@12 @83 + ImageList_SetFlags@8 @84 + ImageList_SetIconSize@12 @85 + ImageList_SetImageCount@8 @86 + ImageList_SetOverlayImage@12 @87 + ImageList_Write@8 @88 + InitCommonControlsEx@4 @89 + InitMUILanguage@4 @90 + InitializeFlatSB@4 @91 + PropertySheet@4=PropertySheetA @92 + PropertySheetA@4 @93 + PropertySheetW@4 @94 + RegisterClassNameW@4 @95 + UninitializeFlatSB@4 @96 + _TrackMouseEvent@4 @97 diff --git a/lib/wine/libcomdlg32.def b/lib/wine/libcomdlg32.def new file mode 100644 index 0000000..ed263f3 --- /dev/null +++ b/lib/wine/libcomdlg32.def @@ -0,0 +1,33 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/comdlg32/comdlg32.spec; do not edit! + +LIBRARY comdlg32.dll + +EXPORTS + ChooseColorA@4 @1 + ChooseColorW@4 @2 + ChooseFontA@4 @3 + ChooseFontW@4 @4 + CommDlgExtendedError@0 @5 + DllGetClassObject@12 @6 PRIVATE + DllRegisterServer@0 @7 PRIVATE + DllUnregisterServer@0 @8 PRIVATE + FindTextA@4 @9 + FindTextW@4 @10 + GetFileTitleA@12 @11 + GetFileTitleW@12 @12 + GetOpenFileNameA@4 @13 + GetOpenFileNameW@4 @14 + GetSaveFileNameA@4 @15 + GetSaveFileNameW@4 @16 + LoadAlterBitmap@0 @17 PRIVATE + PageSetupDlgA@4 @18 + PageSetupDlgW@4 @19 + PrintDlgA@4 @20 + PrintDlgExA@4 @21 + PrintDlgExW@4 @22 + PrintDlgW@4 @23 + ReplaceTextA@4 @24 + ReplaceTextW@4 @25 + WantArrows@0 @26 PRIVATE + dwLBSubclass@0 @27 PRIVATE + dwOKSubclass@0 @28 PRIVATE diff --git a/lib/wine/libcompstui.def b/lib/wine/libcompstui.def new file mode 100644 index 0000000..c701d13 --- /dev/null +++ b/lib/wine/libcompstui.def @@ -0,0 +1,9 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/compstui/compstui.spec; do not edit! + +LIBRARY compstui.dll + +EXPORTS + CommonPropertySheetUIA@16 @1 + CommonPropertySheetUIW@16 @2 + GetCPSUIUserData@4 @3 + SetCPSUIUserData@8 @4 diff --git a/lib/wine/libcomsvcs.def b/lib/wine/libcomsvcs.def new file mode 100644 index 0000000..1ffed96 --- /dev/null +++ b/lib/wine/libcomsvcs.def @@ -0,0 +1,25 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/comsvcs/comsvcs.spec; do not edit! + +LIBRARY comsvcs.dll + +EXPORTS + CosGetCallContext@0 @5 PRIVATE + CoCreateActivity@0 @6 PRIVATE + CoEnterServiceDomain@0 @7 PRIVATE + CoLeaveServiceDomain@0 @8 PRIVATE + CoLoadServices@0 @9 PRIVATE + ComSvcsExceptionFilter@0 @10 PRIVATE + ComSvcsLogError@0 @11 PRIVATE + DispManGetContext@0 @12 PRIVATE + DllCanUnloadNow@0 @13 PRIVATE + DllGetClassObject@12 @14 PRIVATE + DllRegisterServer@0 @15 PRIVATE + DllUnregisterServer@0 @16 PRIVATE + GetMTAThreadPoolMetrics@0 @17 PRIVATE + GetManagedExtensions@0 @18 PRIVATE + GetObjectContext@0 @19 PRIVATE + GetTrkSvrObject@0 @20 PRIVATE + MTSCreateActivity@0 @21 PRIVATE + MiniDumpW@0 @22 PRIVATE + RecycleSurrogate@0 @23 PRIVATE + SafeRef@0 @24 PRIVATE diff --git a/lib/wine/libcredui.def b/lib/wine/libcredui.def new file mode 100644 index 0000000..2165b0f --- /dev/null +++ b/lib/wine/libcredui.def @@ -0,0 +1,26 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/credui/credui.spec; do not edit! + +LIBRARY credui.dll + +EXPORTS + CredPackAuthenticationBufferW@20 @1 + CredUICmdLinePromptForCredentialsA@0 @2 PRIVATE + CredUICmdLinePromptForCredentialsW@0 @3 PRIVATE + CredUIConfirmCredentialsA@0 @4 PRIVATE + CredUIConfirmCredentialsW@8 @5 + CredUIInitControls@0 @6 + CredUIParseUserNameA@0 @7 PRIVATE + CredUIParseUserNameW@20 @8 + CredUIPromptForCredentialsA@0 @9 PRIVATE + CredUIPromptForCredentialsW@40 @10 + CredUIPromptForWindowsCredentialsW@36 @11 + CredUIReadSSOCredA@8 @12 + CredUIReadSSOCredW@8 @13 + CredUIStoreSSOCredA@16 @14 + CredUIStoreSSOCredW@16 @15 + CredUnPackAuthenticationBufferW@36 @16 + DllCanUnloadNow@0 @17 PRIVATE + DllGetClassObject@0 @18 PRIVATE + DllRegisterServer@0 @19 PRIVATE + DllUnregisterServer@0 @20 PRIVATE + SspiPromptForCredentialsW@32 @21 diff --git a/lib/wine/libcrypt32.def b/lib/wine/libcrypt32.def new file mode 100644 index 0000000..102ba8c --- /dev/null +++ b/lib/wine/libcrypt32.def @@ -0,0 +1,251 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/crypt32/crypt32.spec; do not edit! + +LIBRARY crypt32.dll + +EXPORTS + CertAddCRLContextToStore@16 @1 + CertAddCTLContextToStore@16 @2 + CertAddCertificateContextToStore@16 @3 + CertAddCertificateLinkToStore@16 @4 + CertAddEncodedCRLToStore@24 @5 + CertAddEncodedCTLToStore@24 @6 + CertAddEncodedCertificateToStore@24 @7 + CertAddEncodedCertificateToSystemStoreA@12 @8 + CertAddEncodedCertificateToSystemStoreW@12 @9 + CertAddEnhancedKeyUsageIdentifier@8 @10 + CertAddSerializedElementToStore@32 @11 + CertAddStoreToCollection@16 @12 + CertAlgIdToOID@4 @13 + CertCloseStore@8 @14 + CertCompareCertificate@12 @15 + CertCompareCertificateName@12 @16 + CertCompareIntegerBlob@8 @17 + CertComparePublicKeyInfo@12 @18 + CertControlStore@16 @19 + CertCreateCRLContext@12 @20 + CertCreateCTLContext@12 @21 + CertCreateCertificateChainEngine@8 @22 + CertCreateCertificateContext@12 @23 + CertCreateContext@24 @24 + CertCreateSelfSignCertificate@32 @25 + CertDeleteCRLFromStore@4 @26 + CertDeleteCTLFromStore@4 @27 + CertDeleteCertificateFromStore@4 @28 + CertDuplicateCRLContext@4 @29 + CertDuplicateCTLContext@4 @30 + CertDuplicateCertificateChain@4 @31 + CertDuplicateCertificateContext@4 @32 + CertDuplicateStore@4 @33 + CertEnumCRLContextProperties@8 @34 + CertEnumCRLsInStore@8 @35 + CertEnumCTLContextProperties@8 @36 + CertEnumCTLsInStore@8 @37 + CertEnumCertificateContextProperties@8 @38 + CertEnumCertificatesInStore@8 @39 + CertEnumPhysicalStore@16 @40 + CertEnumSystemStore@16 @41 + CertFindAttribute@12 @42 + CertFindCRLInStore@24 @43 + CertFindCTLInStore@24 @44 + CertFindCertificateInCRL@20 @45 + CertFindCertificateInStore@24 @46 + CertFindChainInStore@24 @47 + CertFindExtension@12 @48 + CertFindRDNAttr@8 @49 + CertFindSubjectInCTL@0 @50 PRIVATE + CertFreeCRLContext@4 @51 + CertFreeCTLContext@4 @52 + CertFreeCertificateChain@4 @53 + CertFreeCertificateChainEngine@4 @54 + CertFreeCertificateContext@4 @55 + CertGetCRLContextProperty@16 @56 + CertGetCRLFromStore@16 @57 + CertGetCTLContextProperty@16 @58 + CertGetCertificateChain@32 @59 + CertGetCertificateContextProperty@16 @60 + CertGetEnhancedKeyUsage@16 @61 + CertGetIntendedKeyUsage@16 @62 + CertGetIssuerCertificateFromStore@16 @63 + CertGetNameStringA@24 @64 + CertGetNameStringW@24 @65 + CertGetPublicKeyLength@8 @66 + CertGetStoreProperty@16 @67 + CertGetSubjectCertificateFromStore@12 @68 + CertGetValidUsages@20 @69 + CertIsRDNAttrsInCertificateName@16 @70 + CertIsValidCRLForCertificate@16 @71 + CertNameToStrA@20 @72 + CertNameToStrW@20 @73 + CertOIDToAlgId@4 @74 + CertOpenStore@20 @75 + CertOpenSystemStoreA@8 @76 + CertOpenSystemStoreW@8 @77 + CertRDNValueToStrA@16 @78 + CertRDNValueToStrW@16 @79 + CertRegisterPhysicalStore@20 @80 + CertRegisterSystemStore@16 @81 + CertRemoveEnhancedKeyUsageIdentifier@8 @82 + CertRemoveStoreFromCollection@8 @83 + CertSaveStore@24 @84 + CertSerializeCRLStoreElement@16 @85 + CertSerializeCTLStoreElement@16 @86 + CertSerializeCertificateStoreElement@16 @87 + CertSetCRLContextProperty@16 @88 + CertSetCTLContextProperty@16 @89 + CertSetCertificateContextProperty@16 @90 + CertSetEnhancedKeyUsage@8 @91 + CertSetStoreProperty@16 @92 + CertStrToNameA@28 @93 + CertStrToNameW@28 @94 + CertUnregisterPhysicalStore@12 @95 + CertUnregisterSystemStore@8 @96 + CertVerifyCRLRevocation@16 @97 + CertVerifyCRLTimeValidity@8 @98 + CertVerifyCTLUsage@28 @99 + CertVerifyCertificateChainPolicy@16 @100 + CertVerifyRevocation@28 @101 + CertVerifySubjectCertificateContext@12 @102 + CertVerifyTimeValidity@8 @103 + CertVerifyValidityNesting@8 @104 + CreateFileU@28=kernel32.CreateFileW @105 + CryptAcquireCertificatePrivateKey@24 @106 + CryptAcquireContextU@20=advapi32.CryptAcquireContextW @107 + CryptBinaryToStringA@20 @108 + CryptBinaryToStringW@20 @109 + CryptCloseAsyncHandle@0 @110 PRIVATE + CryptCreateAsyncHandle@0 @111 PRIVATE + CryptDecodeMessage@0 @112 PRIVATE + CryptDecodeObject@28 @113 + CryptDecodeObjectEx@32 @114 + CryptDecryptAndVerifyMessageSignature@0 @115 PRIVATE + CryptDecryptMessage@0 @116 PRIVATE + CryptEncodeObject@20 @117 + CryptEncodeObjectEx@28 @118 + CryptEncryptMessage@28 @119 + CryptEnumOIDFunction@0 @120 PRIVATE + CryptEnumOIDInfo@16 @121 + CryptEnumProvidersU@0 @122 PRIVATE + CryptExportPKCS8@0 @123 PRIVATE + CryptExportPublicKeyInfo@20 @124 + CryptExportPublicKeyInfoEx@32 @125 + CryptFindCertificateKeyProvInfo@12 @126 + CryptFindLocalizedName@4 @127 + CryptFindOIDInfo@12 @128 + CryptFormatObject@36 @129 + CryptFreeOIDFunctionAddress@8 @130 + CryptGetAsyncParam@0 @131 PRIVATE + CryptGetDefaultOIDDllList@16 @132 + CryptGetDefaultOIDFunctionAddress@24 @133 + CryptGetMessageCertificates@20 @134 + CryptGetMessageSignerCount@12 @135 + CryptGetOIDFunctionAddress@24 @136 + CryptGetOIDFunctionValue@28 @137 + CryptHashCertificate@28 @138 + CryptHashCertificate2@28 @139 + CryptHashMessage@36 @140 + CryptHashPublicKeyInfo@28 @141 + CryptHashToBeSigned@24 @142 + CryptImportPKCS8@0 @143 PRIVATE + CryptImportPublicKeyInfo@16 @144 + CryptImportPublicKeyInfoEx@28 @145 + CryptImportPublicKeyInfoEx2@20 @146 + CryptInitOIDFunctionSet@8 @147 + CryptInstallOIDFunctionAddress@24 @148 + CryptLoadSip@0 @149 PRIVATE + CryptMemAlloc@4 @150 + CryptMemFree@4 @151 + CryptMemRealloc@8 @152 + CryptMsgCalculateEncodedLength@0 @153 PRIVATE + CryptMsgClose@4 @154 + CryptMsgControl@16 @155 + CryptMsgCountersign@0 @156 PRIVATE + CryptMsgCountersignEncoded@0 @157 PRIVATE + CryptMsgDuplicate@4 @158 + CryptMsgEncodeAndSignCTL@24 @159 + CryptMsgGetAndVerifySigner@24 @160 + CryptMsgGetParam@20 @161 + CryptMsgOpenToDecode@24 @162 + CryptMsgOpenToEncode@24 @163 + CryptMsgSignCTL@28 @164 + CryptMsgUpdate@16 @165 + CryptMsgVerifyCountersignatureEncoded@28 @166 + CryptMsgVerifyCountersignatureEncodedEx@40 @167 + CryptProtectData@28 @168 + CryptProtectMemory@12 @169 + CryptQueryObject@44 @170 + CryptRegisterDefaultOIDFunction@16 @171 + CryptRegisterOIDFunction@20 @172 + CryptRegisterOIDInfo@8 @173 + CryptSIPAddProvider@4 @174 + CryptSIPCreateIndirectData@12 @175 + CryptSIPGetSignedDataMsg@20 @176 + CryptSIPLoad@12 @177 + CryptSIPPutSignedDataMsg@20 @178 + CryptSIPRemoveProvider@4 @179 + CryptSIPRemoveSignedDataMsg@8 @180 + CryptSIPRetrieveSubjectGuid@12 @181 + CryptSIPRetrieveSubjectGuidForCatalogFile@12 @182 + CryptSIPVerifyIndirectData@8 @183 + CryptSetAsyncParam@0 @184 PRIVATE + CryptSetKeyIdentifierProperty@24 @185 + CryptSetOIDFunctionValue@28 @186 + CryptSetProviderU@0 @187 PRIVATE + CryptSignAndEncodeCertificate@36 @188 + CryptSignAndEncryptMessage@0 @189 PRIVATE + CryptSignCertificate@36 @190 + CryptSignHashU@0 @191 PRIVATE + CryptSignMessage@28 @192 + CryptSignMessageWithKey@0 @193 PRIVATE + CryptStringToBinaryA@28 @194 + CryptStringToBinaryW@28 @195 + CryptUnprotectData@28 @196 + CryptUnprotectMemory@12 @197 + CryptUnregisterDefaultOIDFunction@12 @198 + CryptUnregisterOIDFunction@12 @199 + CryptUnregisterOIDInfo@4 @200 + CryptVerifyCertificateSignature@20 @201 + CryptVerifyCertificateSignatureEx@32 @202 + CryptVerifyDetachedMessageHash@32 @203 + CryptVerifyDetachedMessageSignature@32 @204 + CryptVerifyMessageHash@28 @205 + CryptVerifyMessageSignature@28 @206 + CryptVerifyMessageSignatureWithKey@0 @207 PRIVATE + CryptVerifySignatureU@0 @208 PRIVATE + I_CertUpdateStore@16 @209 + I_CryptAllocTls@0 @210 + I_CryptCreateLruCache@8 @211 + I_CryptCreateLruEntry@12 @212 + I_CryptDetachTls@4 @213 + I_CryptFindLruEntry@8 @214 + I_CryptFindLruEntryData@12 @215 + I_CryptFlushLruCache@12 @216 + I_CryptFreeLruCache@12 @217 + I_CryptFreeTls@8 @218 + I_CryptGetAsn1Decoder@4 @219 + I_CryptGetAsn1Encoder@4 @220 + I_CryptGetDefaultCryptProv@4 @221 + I_CryptGetDefaultCryptProvForEncrypt@0 @222 PRIVATE + I_CryptGetOssGlobal@4 @223 + I_CryptGetTls@4 @224 + I_CryptInsertLruEntry@0 @225 PRIVATE + I_CryptInstallAsn1Module@12 @226 + I_CryptInstallOssGlobal@12 @227 + I_CryptReadTrustedPublisherDWORDValueFromRegistry@8 @228 + I_CryptReleaseLruEntry@0 @229 PRIVATE + I_CryptSetTls@8 @230 + I_CryptUninstallAsn1Module@4 @231 + I_CryptUninstallOssGlobal@0 @232 PRIVATE + PFXExportCertStore@16 @233 + PFXExportCertStoreEx@20 @234 + PFXImportCertStore@12 @235 + PFXIsPFXBlob@4 @236 + PFXVerifyPassword@12 @237 + RegCreateHKCUKeyExU@0 @238 PRIVATE + RegCreateKeyExU@0 @239 PRIVATE + RegDeleteValueU@0 @240 PRIVATE + RegEnumValueU@0 @241 PRIVATE + RegOpenHKCUKeyExU@0 @242 PRIVATE + RegOpenKeyExU@0 @243 PRIVATE + RegQueryInfoKeyU@0 @244 PRIVATE + RegQueryValueExU@0 @245 PRIVATE + RegSetValueExU@0 @246 PRIVATE diff --git a/lib/wine/libcryptdll.def b/lib/wine/libcryptdll.def new file mode 100644 index 0000000..bfcebb7 --- /dev/null +++ b/lib/wine/libcryptdll.def @@ -0,0 +1,19 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/cryptdll/cryptdll.spec; do not edit! + +LIBRARY cryptdll.dll + +EXPORTS + CDBuildIntegrityVect@0 @1 PRIVATE + CDBuildVect@0 @2 PRIVATE + CDFindCommonCSystem@0 @3 PRIVATE + CDFindCommonCSystemWithKey@0 @4 PRIVATE + CDGenerateRandomBits@0 @5 PRIVATE + CDLocateCSystem@0 @6 PRIVATE + CDLocateCheckSum@0 @7 PRIVATE + CDLocateRng@0 @8 PRIVATE + CDRegisterCSystem@0 @9 PRIVATE + CDRegisterCheckSum@0 @10 PRIVATE + CDRegisterRng@0 @11 PRIVATE + MD5Final@4=advapi32.MD5Final @12 + MD5Init@4=advapi32.MD5Init @13 + MD5Update@12=advapi32.MD5Update @14 diff --git a/lib/wine/libcryptnet.def b/lib/wine/libcryptnet.def new file mode 100644 index 0000000..1fdadd5 --- /dev/null +++ b/lib/wine/libcryptnet.def @@ -0,0 +1,23 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/cryptnet/cryptnet.spec; do not edit! + +LIBRARY cryptnet.dll + +EXPORTS + CertDllVerifyCTLUsage@0 @1 PRIVATE + CertDllVerifyRevocation@28 @2 + CryptnetWlxLogoffEvent@0 @3 PRIVATE + LdapProvOpenStore@0 @4 PRIVATE + CryptCancelAsyncRetrieval@0 @5 PRIVATE + CryptFlushTimeValidObject@0 @6 PRIVATE + CryptGetObjectUrl@32 @7 + CryptGetTimeValidObject@0 @8 PRIVATE + CryptInstallCancelRetrieval@0 @9 PRIVATE + CryptRetrieveObjectByUrlA@36 @10 + CryptRetrieveObjectByUrlW@36 @11 + CryptUninstallCancelRetrieval@0 @12 PRIVATE + DllRegisterServer@0 @13 PRIVATE + DllUnregisterServer@0 @14 PRIVATE + I_CryptNetEnumUrlCacheEntry@0 @15 PRIVATE + I_CryptNetGetHostNameFromUrl@0 @16 PRIVATE + I_CryptNetGetUserDsStoreUrl@0 @17 PRIVATE + I_CryptNetIsConnected@0 @18 PRIVATE diff --git a/lib/wine/libcryptui.def b/lib/wine/libcryptui.def new file mode 100644 index 0000000..b42ccec --- /dev/null +++ b/lib/wine/libcryptui.def @@ -0,0 +1,53 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/cryptui/cryptui.spec; do not edit! + +LIBRARY cryptui.dll + +EXPORTS + ACUIProviderInvokeUI@0 @1 PRIVATE + CryptUIDlgCertMgr@4 @2 + CryptUIDlgFreeCAContext@0 @3 PRIVATE + CryptUIDlgSelectCA@0 @4 PRIVATE + CryptUIDlgSelectCertificateA@4 @5 + CryptUIDlgSelectCertificateFromStore@28 @6 + CryptUIDlgSelectCertificateW@4 @7 + CryptUIDlgSelectStoreA@4 @8 + CryptUIDlgSelectStoreW@4 @9 + CryptUIDlgViewCRLA@0 @10 PRIVATE + CryptUIDlgViewCRLW@0 @11 PRIVATE + CryptUIDlgViewCTLA@0 @12 PRIVATE + CryptUIDlgViewCTLW@0 @13 PRIVATE + CryptUIDlgViewCertificateA@8 @14 + CryptUIDlgViewCertificatePropertiesA@0 @15 PRIVATE + CryptUIDlgViewCertificatePropertiesW@0 @16 PRIVATE + CryptUIDlgViewCertificateW@8 @17 + CryptUIDlgViewContext@24 @18 + CryptUIDlgViewSignerInfoA@4 @19 + CryptUIDlgViewSignerInfoW@0 @20 PRIVATE + CryptUIFreeCertificatePropertiesPagesA@0 @21 PRIVATE + CryptUIFreeCertificatePropertiesPagesW@0 @22 PRIVATE + CryptUIFreeViewSignaturesPagesA@0 @23 PRIVATE + CryptUIFreeViewSignaturesPagesW@0 @24 PRIVATE + CryptUIGetCertificatePropertiesPagesA@0 @25 PRIVATE + CryptUIGetCertificatePropertiesPagesW@0 @26 PRIVATE + CryptUIGetViewSignaturesPagesA@0 @27 PRIVATE + CryptUIGetViewSignaturesPagesW@0 @28 PRIVATE + CryptUIStartCertMgr@0 @29 PRIVATE + CryptUIWizBuildCTL@0 @30 PRIVATE + CryptUIWizCertRequest@0 @31 PRIVATE + CryptUIWizCreateCertRequestNoDS@0 @32 PRIVATE + CryptUIWizDigitalSign@20 @33 + CryptUIWizExport@20 @34 + CryptUIWizFreeCertRequestNoDS@0 @35 PRIVATE + CryptUIWizFreeDigitalSignContext@0 @36 PRIVATE + CryptUIWizImport@20 @37 + CryptUIWizQueryCertRequestNoDS@0 @38 PRIVATE + CryptUIWizSubmitCertRequestNoDS@0 @39 PRIVATE + DllRegisterServer@0 @40 PRIVATE + DllUnregisterServer@0 @41 PRIVATE + EnrollmentCOMObjectFactory_getInstance@0 @42 PRIVATE + I_CryptUIProtect@0 @43 PRIVATE + I_CryptUIProtectFailure@0 @44 PRIVATE + LocalEnroll@0 @45 PRIVATE + LocalEnrollNoDS@0 @46 PRIVATE + RetrievePKCS7FromCA@0 @47 PRIVATE + WizardFree@0 @48 PRIVATE diff --git a/lib/wine/libd2d1.def b/lib/wine/libd2d1.def new file mode 100644 index 0000000..a58623e --- /dev/null +++ b/lib/wine/libd2d1.def @@ -0,0 +1,16 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/d2d1/d2d1.spec; do not edit! + +LIBRARY d2d1.dll + +EXPORTS + D2D1CreateFactory@16 @1 + D2D1MakeRotateMatrix@16 @2 + D2D1MakeSkewMatrix@20 @3 + D2D1IsMatrixInvertible@4 @4 + D2D1InvertMatrix@4 @5 + D2D1ConvertColorSpace@0 @6 PRIVATE + D2D1CreateDevice@0 @7 PRIVATE + D2D1CreateDeviceContext@0 @8 PRIVATE + D2D1SinCos@0 @9 PRIVATE + D2D1Tan@0 @10 PRIVATE + D2D1Vec3Length@0 @11 PRIVATE diff --git a/lib/wine/libd3d10.def b/lib/wine/libd3d10.def new file mode 100644 index 0000000..9379a84 --- /dev/null +++ b/lib/wine/libd3d10.def @@ -0,0 +1,34 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/d3d10/d3d10.spec; do not edit! + +LIBRARY d3d10.dll + +EXPORTS + D3D10CompileEffectFromMemory@36 @1 + D3D10CompileShader@40 @2 + D3D10CreateBlob@8=d3dcompiler_43.D3DCreateBlob @3 + D3D10CreateDevice@24 @4 + D3D10CreateDeviceAndSwapChain@32 @5 + D3D10CreateEffectFromMemory@24 @6 + D3D10CreateEffectPoolFromMemory@20 @7 + D3D10CreateStateBlock@12 @8 + D3D10DisassembleEffect@0 @9 PRIVATE + D3D10DisassembleShader@20 @10 + D3D10GetGeometryShaderProfile@4 @11 + D3D10GetInputAndOutputSignatureBlob@12=d3dcompiler_43.D3DGetInputAndOutputSignatureBlob @12 + D3D10GetInputSignatureBlob@12=d3dcompiler_43.D3DGetInputSignatureBlob @13 + D3D10GetOutputSignatureBlob@12=d3dcompiler_43.D3DGetOutputSignatureBlob @14 + D3D10GetPixelShaderProfile@4 @15 + D3D10GetShaderDebugInfo@12=d3dcompiler_43.D3DGetDebugInfo @16 + D3D10GetVersion@0 @17 PRIVATE + D3D10GetVertexShaderProfile@4 @18 + D3D10PreprocessShader@0 @19 PRIVATE + D3D10ReflectShader@12 @20 + D3D10RegisterLayers@0 @21 PRIVATE + D3D10StateBlockMaskDifference@12 @22 + D3D10StateBlockMaskDisableAll@4 @23 + D3D10StateBlockMaskDisableCapture@16 @24 + D3D10StateBlockMaskEnableAll@4 @25 + D3D10StateBlockMaskEnableCapture@16 @26 + D3D10StateBlockMaskGetSetting@12 @27 + D3D10StateBlockMaskIntersect@12 @28 + D3D10StateBlockMaskUnion@12 @29 diff --git a/lib/wine/libd3d10_1.def b/lib/wine/libd3d10_1.def new file mode 100644 index 0000000..01ea8cc --- /dev/null +++ b/lib/wine/libd3d10_1.def @@ -0,0 +1,35 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/d3d10_1/d3d10_1.spec; do not edit! + +LIBRARY d3d10_1.dll + +EXPORTS + RevertToOldImplementation@0 @1 PRIVATE + D3D10CompileEffectFromMemory@36=d3d10.D3D10CompileEffectFromMemory @2 + D3D10CompileShader@40=d3d10.D3D10CompileShader @3 + D3D10CreateBlob@8=d3d10.D3D10CreateBlob @4 + D3D10CreateDevice1@28 @5 + D3D10CreateDeviceAndSwapChain1@36 @6 + D3D10CreateEffectFromMemory@24=d3d10.D3D10CreateEffectFromMemory @7 + D3D10CreateEffectPoolFromMemory@20=d3d10.D3D10CreateEffectPoolFromMemory @8 + D3D10CreateStateBlock@12=d3d10.D3D10CreateStateBlock @9 + D3D10DisassembleEffect@0 @10 PRIVATE + D3D10DisassembleShader@20=d3d10.D3D10DisassembleShader @11 + D3D10GetGeometryShaderProfile@4=d3d10.D3D10GetGeometryShaderProfile @12 + D3D10GetInputAndOutputSignatureBlob@12=d3d10.D3D10GetInputAndOutputSignatureBlob @13 + D3D10GetInputSignatureBlob@12=d3d10.D3D10GetInputSignatureBlob @14 + D3D10GetOutputSignatureBlob@12=d3d10.D3D10GetOutputSignatureBlob @15 + D3D10GetPixelShaderProfile@4=d3d10.D3D10GetPixelShaderProfile @16 + D3D10GetShaderDebugInfo@12=d3d10.D3D10GetShaderDebugInfo @17 + D3D10GetVersion@0 @18 PRIVATE + D3D10GetVertexShaderProfile@4=d3d10.D3D10GetVertexShaderProfile @19 + D3D10PreprocessShader@0 @20 PRIVATE + D3D10ReflectShader@12=d3d10.D3D10ReflectShader @21 + D3D10RegisterLayers@0 @22 PRIVATE + D3D10StateBlockMaskDifference@12=d3d10.D3D10StateBlockMaskDifference @23 + D3D10StateBlockMaskDisableAll@4=d3d10.D3D10StateBlockMaskDisableAll @24 + D3D10StateBlockMaskDisableCapture@16=d3d10.D3D10StateBlockMaskDisableCapture @25 + D3D10StateBlockMaskEnableAll@4=d3d10.D3D10StateBlockMaskEnableAll @26 + D3D10StateBlockMaskEnableCapture@16=d3d10.D3D10StateBlockMaskEnableCapture @27 + D3D10StateBlockMaskGetSetting@12=d3d10.D3D10StateBlockMaskGetSetting @28 + D3D10StateBlockMaskIntersect@12=d3d10.D3D10StateBlockMaskIntersect @29 + D3D10StateBlockMaskUnion@12=d3d10.D3D10StateBlockMaskUnion @30 diff --git a/lib/wine/libd3d10core.def b/lib/wine/libd3d10core.def new file mode 100644 index 0000000..384a9e6 --- /dev/null +++ b/lib/wine/libd3d10core.def @@ -0,0 +1,7 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/d3d10core/d3d10core.spec; do not edit! + +LIBRARY d3d10core.dll + +EXPORTS + D3D10CoreCreateDevice@20 @1 + D3D10CoreRegisterLayers@0 @2 diff --git a/lib/wine/libd3d11.def b/lib/wine/libd3d11.def new file mode 100644 index 0000000..319a1cb --- /dev/null +++ b/lib/wine/libd3d11.def @@ -0,0 +1,48 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/d3d11/d3d11.spec; do not edit! + +LIBRARY d3d11.dll + +EXPORTS + D3D11CoreCreateDevice@24 @1 + D3D11CoreCreateLayeredDevice@0 @2 PRIVATE + D3D11CoreGetLayeredDeviceSize@0 @3 PRIVATE + D3D11CoreRegisterLayers@0 @4 + D3D11CreateDevice@40 @5 + D3D11CreateDeviceAndSwapChain@48 @6 + D3D11On12CreateDevice@40 @7 + D3DKMTCloseAdapter@0 @8 PRIVATE + D3DKMTCreateAllocation@0 @9 PRIVATE + D3DKMTCreateContext@0 @10 PRIVATE + D3DKMTCreateDevice@0 @11 PRIVATE + D3DKMTCreateSynchronizationObject@0 @12 PRIVATE + D3DKMTDestroyAllocation@0 @13 PRIVATE + D3DKMTDestroyContext@0 @14 PRIVATE + D3DKMTDestroyDevice@0 @15 PRIVATE + D3DKMTDestroySynchronizationObject@0 @16 PRIVATE + D3DKMTEscape@0 @17 PRIVATE + D3DKMTGetContextSchedulingPriority@0 @18 PRIVATE + D3DKMTGetDeviceState@0 @19 PRIVATE + D3DKMTGetDisplayModeList@0 @20 PRIVATE + D3DKMTGetMultisampleMethodList@0 @21 PRIVATE + D3DKMTGetRuntimeData@0 @22 PRIVATE + D3DKMTGetSharedPrimaryHandle@0 @23 PRIVATE + D3DKMTLock@0 @24 PRIVATE + D3DKMTOpenAdapterFromHdc@0 @25 PRIVATE + D3DKMTOpenResource@0 @26 PRIVATE + D3DKMTPresent@0 @27 PRIVATE + D3DKMTQueryAdapterInfo@0 @28 PRIVATE + D3DKMTQueryAllocationResidency@0 @29 PRIVATE + D3DKMTQueryResourceInfo@0 @30 PRIVATE + D3DKMTRender@0 @31 PRIVATE + D3DKMTSetAllocationPriority@0 @32 PRIVATE + D3DKMTSetContextSchedulingPriority@0 @33 PRIVATE + D3DKMTSetDisplayMode@0 @34 PRIVATE + D3DKMTSetDisplayPrivateDriverFormat@0 @35 PRIVATE + D3DKMTSetGammaRamp@0 @36 PRIVATE + D3DKMTSetVidPnSourceOwner@0 @37 PRIVATE + D3DKMTSignalSynchronizationObject@0 @38 PRIVATE + D3DKMTUnlock@0 @39 PRIVATE + D3DKMTWaitForSynchronizationObject@0 @40 PRIVATE + D3DKMTWaitForVerticalBlankEvent@0 @41 PRIVATE + OpenAdapter10@0 @42 PRIVATE + OpenAdapter10_2@0 @43 PRIVATE diff --git a/lib/wine/libd3d8.def b/lib/wine/libd3d8.def new file mode 100644 index 0000000..456e4ef --- /dev/null +++ b/lib/wine/libd3d8.def @@ -0,0 +1,10 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/d3d8/d3d8.spec; do not edit! + +LIBRARY d3d8.dll + +EXPORTS + D3D8GetSWInfo@0 @1 + DebugSetMute@0 @2 + Direct3DCreate8@4 @3 + ValidatePixelShader@16 @4 + ValidateVertexShader@20 @5 diff --git a/lib/wine/libd3d9.def b/lib/wine/libd3d9.def new file mode 100644 index 0000000..1295d7b --- /dev/null +++ b/lib/wine/libd3d9.def @@ -0,0 +1,19 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/d3d9/d3d9.spec; do not edit! + +LIBRARY d3d9.dll + +EXPORTS + Direct3DShaderValidatorCreate9@0 @1 + PSGPError@0 @2 PRIVATE + PSGPSampleTexture@0 @3 PRIVATE + D3DPERF_BeginEvent@8 @4 + D3DPERF_EndEvent@0 @5 + D3DPERF_GetStatus@0 @6 + D3DPERF_QueryRepeatFrame@0 @7 + D3DPERF_SetMarker@8 @8 + D3DPERF_SetOptions@4 @9 + D3DPERF_SetRegion@8 @10 + DebugSetLevel@0 @11 PRIVATE + DebugSetMute@0 @12 + Direct3DCreate9@4 @13 + Direct3DCreate9Ex@8 @14 diff --git a/lib/wine/libd3dcompiler.def b/lib/wine/libd3dcompiler.def new file mode 100644 index 0000000..32d6df0 --- /dev/null +++ b/lib/wine/libd3dcompiler.def @@ -0,0 +1,34 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/d3dcompiler_47/d3dcompiler_47.spec; do not edit! + +LIBRARY d3dcompiler_47.dll + +EXPORTS + D3DAssemble@32 @1 + D3DCompile@44 @2 + D3DCompile2@56 @3 + D3DCompileFromFile@36 @4 + D3DCompressShaders@0 @5 PRIVATE + D3DCreateBlob@8 @6 + D3DCreateFunctionLinkingGraph@0 @7 PRIVATE + D3DCreateLinker@0 @8 PRIVATE + D3DDecompressShaders@0 @9 PRIVATE + D3DDisassemble@20 @10 + D3DDisassemble10Effect@12 @11 PRIVATE + D3DDisassemble11Trace@0 @12 PRIVATE + D3DDisassembleRegion@0 @13 PRIVATE + D3DGetBlobPart@20 @14 + D3DGetDebugInfo@12 @15 + D3DGetInputAndOutputSignatureBlob@12 @16 + D3DGetInputSignatureBlob@12 @17 + D3DGetOutputSignatureBlob@12 @18 + D3DGetTraceInstructionOffsets@0 @19 PRIVATE + D3DLoadModule@12 @20 + D3DPreprocess@28 @21 + D3DReadFileToBlob@8 @22 + D3DReflect@16 @23 + D3DReflectLibrary@0 @24 PRIVATE + D3DReturnFailure1@0 @25 PRIVATE + D3DSetBlobPart@0 @26 PRIVATE + D3DStripShader@16 @27 + D3DWriteBlobToFile@12 @28 + DebugSetMute@0 @29 PRIVATE diff --git a/lib/wine/libd3drm.def b/lib/wine/libd3drm.def new file mode 100644 index 0000000..3ca6f2b --- /dev/null +++ b/lib/wine/libd3drm.def @@ -0,0 +1,28 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/d3drm/d3drm.spec; do not edit! + +LIBRARY d3drm.dll + +EXPORTS + D3DRMColorGetAlpha@4 @1 + D3DRMColorGetBlue@4 @2 + D3DRMColorGetGreen@4 @3 + D3DRMColorGetRed@4 @4 + D3DRMCreateColorRGB@12 @5 + D3DRMCreateColorRGBA@16 @6 + D3DRMMatrixFromQuaternion@8 @7 + D3DRMQuaternionFromRotation@12 @8 + D3DRMQuaternionMultiply@12 @9 + D3DRMQuaternionSlerp@16 @10 + D3DRMVectorAdd@12 @11 + D3DRMVectorCrossProduct@12 @12 + D3DRMVectorDotProduct@8 @13 + D3DRMVectorModulus@4 @14 + D3DRMVectorNormalize@4 @15 + D3DRMVectorRandom@4 @16 + D3DRMVectorReflect@12 @17 + D3DRMVectorRotate@16 @18 + D3DRMVectorScale@12 @19 + D3DRMVectorSubtract@12 @20 + Direct3DRMCreate@4 @21 + DllCanUnloadNow@0 @22 PRIVATE + DllGetClassObject@12 @23 PRIVATE diff --git a/lib/wine/libd3dx10.def b/lib/wine/libd3dx10.def new file mode 100644 index 0000000..a0562be --- /dev/null +++ b/lib/wine/libd3dx10.def @@ -0,0 +1,181 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/d3dx10_43/d3dx10_43.spec; do not edit! + +LIBRARY d3dx10_43.dll + +EXPORTS + D3DX10CreateThreadPump@12 @1 PRIVATE + D3DX10CheckVersion@8 @2 + D3DX10CompileFromFileA@44 @3 PRIVATE + D3DX10CompileFromFileW@44 @4 PRIVATE + D3DX10CompileFromMemory@52 @5 + D3DX10CompileFromResourceA@52 @6 PRIVATE + D3DX10CompileFromResourceW@52 @7 PRIVATE + D3DX10ComputeNormalMap@20 @8 PRIVATE + D3DX10CreateAsyncCompilerProcessor@40 @9 PRIVATE + D3DX10CreateAsyncEffectCreateProcessor@40 @10 PRIVATE + D3DX10CreateAsyncEffectPoolCreateProcessor@36 @11 PRIVATE + D3DX10CreateAsyncFileLoaderA@8 @12 + D3DX10CreateAsyncFileLoaderW@8 @13 + D3DX10CreateAsyncMemoryLoader@12 @14 + D3DX10CreateAsyncResourceLoaderA@12 @15 + D3DX10CreateAsyncResourceLoaderW@12 @16 + D3DX10CreateAsyncShaderPreprocessProcessor@24 @17 PRIVATE + D3DX10CreateAsyncShaderResourceViewProcessor@12 @18 PRIVATE + D3DX10CreateAsyncTextureInfoProcessor@8 @19 PRIVATE + D3DX10CreateAsyncTextureProcessor@12 @20 PRIVATE + D3DX10CreateDevice@20 @21 + D3DX10CreateDeviceAndSwapChain@28 @22 + D3DX10CreateEffectFromFileA@48 @23 + D3DX10CreateEffectFromFileW@48 @24 + D3DX10CreateEffectFromMemory@56 @25 + D3DX10CreateEffectFromResourceA@56 @26 PRIVATE + D3DX10CreateEffectFromResourceW@56 @27 PRIVATE + D3DX10CreateEffectPoolFromFileA@44 @28 + D3DX10CreateEffectPoolFromFileW@44 @29 + D3DX10CreateEffectPoolFromMemory@52 @30 + D3DX10CreateEffectPoolFromResourceA@52 @31 PRIVATE + D3DX10CreateEffectPoolFromResourceW@52 @32 PRIVATE + D3DX10CreateFontA@48 @33 PRIVATE + D3DX10CreateFontIndirectA@12 @34 PRIVATE + D3DX10CreateFontIndirectW@12 @35 PRIVATE + D3DX10CreateFontW@48 @36 PRIVATE + D3DX10CreateMesh@32 @37 PRIVATE + D3DX10CreateShaderResourceViewFromFileA@24 @38 PRIVATE + D3DX10CreateShaderResourceViewFromFileW@24 @39 PRIVATE + D3DX10CreateShaderResourceViewFromMemory@28 @40 PRIVATE + D3DX10CreateShaderResourceViewFromResourceA@28 @41 PRIVATE + D3DX10CreateShaderResourceViewFromResourceW@28 @42 PRIVATE + D3DX10CreateSkinInfo@4 @43 PRIVATE + D3DX10CreateSprite@12 @44 PRIVATE + D3DX10CreateTextureFromFileA@24 @45 PRIVATE + D3DX10CreateTextureFromFileW@24 @46 PRIVATE + D3DX10CreateTextureFromMemory@28 @47 + D3DX10CreateTextureFromResourceA@28 @48 PRIVATE + D3DX10CreateTextureFromResourceW@28 @49 PRIVATE + D3DX10FilterTexture@12 @50 + D3DX10GetFeatureLevel1@8 @51 + D3DX10GetImageInfoFromFileA@16 @52 PRIVATE + D3DX10GetImageInfoFromFileW@16 @53 PRIVATE + D3DX10GetImageInfoFromMemory@20 @54 + D3DX10GetImageInfoFromResourceA@20 @55 PRIVATE + D3DX10GetImageInfoFromResourceW@20 @56 PRIVATE + D3DX10LoadTextureFromTexture@12 @57 PRIVATE + D3DX10PreprocessShaderFromFileA@24 @58 PRIVATE + D3DX10PreprocessShaderFromFileW@24 @59 PRIVATE + D3DX10PreprocessShaderFromMemory@36 @60 + D3DX10PreprocessShaderFromResourceA@32 @61 PRIVATE + D3DX10PreprocessShaderFromResourceW@32 @62 PRIVATE + D3DX10SHProjectCubeMap@20 @63 PRIVATE + D3DX10SaveTextureToFileA@12 @64 PRIVATE + D3DX10SaveTextureToFileW@12 @65 PRIVATE + D3DX10SaveTextureToMemory@16 @66 PRIVATE + D3DX10UnsetAllDeviceObjects@4 @67 + D3DXBoxBoundProbe@16=d3dx9_36.D3DXBoxBoundProbe @68 + D3DXColorAdjustContrast@12=d3dx9_36.D3DXColorAdjustContrast @69 + D3DXColorAdjustSaturation@12=d3dx9_36.D3DXColorAdjustSaturation @70 + D3DXComputeBoundingBox@20=d3dx9_36.D3DXComputeBoundingBox @71 + D3DXComputeBoundingSphere@20=d3dx9_36.D3DXComputeBoundingSphere @72 + D3DXCpuOptimizations@4 @73 + D3DXCreateMatrixStack@8=d3dx9_36.D3DXCreateMatrixStack @74 + D3DXFloat16To32Array@12=d3dx9_36.D3DXFloat16To32Array @75 + D3DXFloat32To16Array@12=d3dx9_36.D3DXFloat32To16Array @76 + D3DXFresnelTerm@8=d3dx9_36.D3DXFresnelTerm @77 + D3DXIntersectTri@32=d3dx9_36.D3DXIntersectTri @78 + D3DXMatrixAffineTransformation2D@20=d3dx9_36.D3DXMatrixAffineTransformation2D @79 + D3DXMatrixAffineTransformation@20=d3dx9_36.D3DXMatrixAffineTransformation @80 + D3DXMatrixDecompose@16=d3dx9_36.D3DXMatrixDecompose @81 + D3DXMatrixDeterminant@4=d3dx9_36.D3DXMatrixDeterminant @82 + D3DXMatrixInverse@12=d3dx9_36.D3DXMatrixInverse @83 + D3DXMatrixLookAtLH@16=d3dx9_36.D3DXMatrixLookAtLH @84 + D3DXMatrixLookAtRH@16=d3dx9_36.D3DXMatrixLookAtRH @85 + D3DXMatrixMultiply@12=d3dx9_36.D3DXMatrixMultiply @86 + D3DXMatrixMultiplyTranspose@12=d3dx9_36.D3DXMatrixMultiplyTranspose @87 + D3DXMatrixOrthoLH@20=d3dx9_36.D3DXMatrixOrthoLH @88 + D3DXMatrixOrthoOffCenterLH@28=d3dx9_36.D3DXMatrixOrthoOffCenterLH @89 + D3DXMatrixOrthoOffCenterRH@28=d3dx9_36.D3DXMatrixOrthoOffCenterRH @90 + D3DXMatrixOrthoRH@20=d3dx9_36.D3DXMatrixOrthoRH @91 + D3DXMatrixPerspectiveFovLH@20=d3dx9_36.D3DXMatrixPerspectiveFovLH @92 + D3DXMatrixPerspectiveFovRH@20=d3dx9_36.D3DXMatrixPerspectiveFovRH @93 + D3DXMatrixPerspectiveLH@20=d3dx9_36.D3DXMatrixPerspectiveLH @94 + D3DXMatrixPerspectiveOffCenterLH@28=d3dx9_36.D3DXMatrixPerspectiveOffCenterLH @95 + D3DXMatrixPerspectiveOffCenterRH@28=d3dx9_36.D3DXMatrixPerspectiveOffCenterRH @96 + D3DXMatrixPerspectiveRH@20=d3dx9_36.D3DXMatrixPerspectiveRH @97 + D3DXMatrixReflect@8=d3dx9_36.D3DXMatrixReflect @98 + D3DXMatrixRotationAxis@12=d3dx9_36.D3DXMatrixRotationAxis @99 + D3DXMatrixRotationQuaternion@8=d3dx9_36.D3DXMatrixRotationQuaternion @100 + D3DXMatrixRotationX@8=d3dx9_36.D3DXMatrixRotationX @101 + D3DXMatrixRotationY@8=d3dx9_36.D3DXMatrixRotationY @102 + D3DXMatrixRotationYawPitchRoll@16=d3dx9_36.D3DXMatrixRotationYawPitchRoll @103 + D3DXMatrixRotationZ@8=d3dx9_36.D3DXMatrixRotationZ @104 + D3DXMatrixScaling@16=d3dx9_36.D3DXMatrixScaling @105 + D3DXMatrixShadow@12=d3dx9_36.D3DXMatrixShadow @106 + D3DXMatrixTransformation2D@28=d3dx9_36.D3DXMatrixTransformation2D @107 + D3DXMatrixTransformation@28=d3dx9_36.D3DXMatrixTransformation @108 + D3DXMatrixTranslation@16=d3dx9_36.D3DXMatrixTranslation @109 + D3DXMatrixTranspose@8=d3dx9_36.D3DXMatrixTranspose @110 + D3DXPlaneFromPointNormal@12=d3dx9_36.D3DXPlaneFromPointNormal @111 + D3DXPlaneFromPoints@16=d3dx9_36.D3DXPlaneFromPoints @112 + D3DXPlaneIntersectLine@16=d3dx9_36.D3DXPlaneIntersectLine @113 + D3DXPlaneNormalize@8=d3dx9_36.D3DXPlaneNormalize @114 + D3DXPlaneTransform@12=d3dx9_36.D3DXPlaneTransform @115 + D3DXPlaneTransformArray@24=d3dx9_36.D3DXPlaneTransformArray @116 + D3DXQuaternionBaryCentric@24=d3dx9_36.D3DXQuaternionBaryCentric @117 + D3DXQuaternionExp@8=d3dx9_36.D3DXQuaternionExp @118 + D3DXQuaternionInverse@8=d3dx9_36.D3DXQuaternionInverse @119 + D3DXQuaternionLn@8=d3dx9_36.D3DXQuaternionLn @120 + D3DXQuaternionMultiply@12=d3dx9_36.D3DXQuaternionMultiply @121 + D3DXQuaternionNormalize@8=d3dx9_36.D3DXQuaternionNormalize @122 + D3DXQuaternionRotationAxis@12=d3dx9_36.D3DXQuaternionRotationAxis @123 + D3DXQuaternionRotationMatrix@8=d3dx9_36.D3DXQuaternionRotationMatrix @124 + D3DXQuaternionRotationYawPitchRoll@16=d3dx9_36.D3DXQuaternionRotationYawPitchRoll @125 + D3DXQuaternionSlerp@16=d3dx9_36.D3DXQuaternionSlerp @126 + D3DXQuaternionSquad@24=d3dx9_36.D3DXQuaternionSquad @127 + D3DXQuaternionSquadSetup@28=d3dx9_36.D3DXQuaternionSquadSetup @128 + D3DXQuaternionToAxisAngle@12=d3dx9_36.D3DXQuaternionToAxisAngle @129 + D3DXSHAdd@16=d3dx9_36.D3DXSHAdd @130 + D3DXSHDot@12=d3dx9_36.D3DXSHDot @131 + D3DXSHEvalConeLight@36=d3dx9_36.D3DXSHEvalConeLight @132 + D3DXSHEvalDirection@12=d3dx9_36.D3DXSHEvalDirection @133 + D3DXSHEvalDirectionalLight@32=d3dx9_36.D3DXSHEvalDirectionalLight @134 + D3DXSHEvalHemisphereLight@28=d3dx9_36.D3DXSHEvalHemisphereLight @135 + D3DXSHEvalSphericalLight@36=d3dx9_36.D3DXSHEvalSphericalLight @136 + D3DXSHMultiply2@12=d3dx9_36.D3DXSHMultiply2 @137 + D3DXSHMultiply3@12=d3dx9_36.D3DXSHMultiply3 @138 + D3DXSHMultiply4@12=d3dx9_36.D3DXSHMultiply4 @139 + D3DXSHMultiply5@12=d3dx9_36.D3DXSHMultiply5 @140 + D3DXSHMultiply6@12=d3dx9_36.D3DXSHMultiply6 @141 + D3DXSHRotate@16=d3dx9_36.D3DXSHRotate @142 + D3DXSHRotateZ@16=d3dx9_36.D3DXSHRotateZ @143 + D3DXSHScale@16=d3dx9_36.D3DXSHScale @144 + D3DXSphereBoundProbe@16=d3dx9_36.D3DXSphereBoundProbe @145 + D3DXVec2BaryCentric@24=d3dx9_36.D3DXVec2BaryCentric @146 + D3DXVec2CatmullRom@24=d3dx9_36.D3DXVec2CatmullRom @147 + D3DXVec2Hermite@24=d3dx9_36.D3DXVec2Hermite @148 + D3DXVec2Normalize@8=d3dx9_36.D3DXVec2Normalize @149 + D3DXVec2Transform@12=d3dx9_36.D3DXVec2Transform @150 + D3DXVec2TransformArray@24=d3dx9_36.D3DXVec2TransformArray @151 + D3DXVec2TransformCoord@12=d3dx9_36.D3DXVec2TransformCoord @152 + D3DXVec2TransformCoordArray@24=d3dx9_36.D3DXVec2TransformCoordArray @153 + D3DXVec2TransformNormal@12=d3dx9_36.D3DXVec2TransformNormal @154 + D3DXVec2TransformNormalArray@24=d3dx9_36.D3DXVec2TransformNormalArray @155 + D3DXVec3BaryCentric@24=d3dx9_36.D3DXVec3BaryCentric @156 + D3DXVec3CatmullRom@24=d3dx9_36.D3DXVec3CatmullRom @157 + D3DXVec3Hermite@24=d3dx9_36.D3DXVec3Hermite @158 + D3DXVec3Normalize@8=d3dx9_36.D3DXVec3Normalize @159 + D3DXVec3Project@24=d3dx9_36.D3DXVec3Project @160 + D3DXVec3ProjectArray@36=d3dx9_36.D3DXVec3ProjectArray @161 + D3DXVec3Transform@12=d3dx9_36.D3DXVec3Transform @162 + D3DXVec3TransformArray@24=d3dx9_36.D3DXVec3TransformArray @163 + D3DXVec3TransformCoord@12=d3dx9_36.D3DXVec3TransformCoord @164 + D3DXVec3TransformCoordArray@24=d3dx9_36.D3DXVec3TransformCoordArray @165 + D3DXVec3TransformNormal@12=d3dx9_36.D3DXVec3TransformNormal @166 + D3DXVec3TransformNormalArray@24=d3dx9_36.D3DXVec3TransformNormalArray @167 + D3DXVec3Unproject@24=d3dx9_36.D3DXVec3Unproject @168 + D3DXVec3UnprojectArray@36=d3dx9_36.D3DXVec3UnprojectArray @169 + D3DXVec4BaryCentric@24=d3dx9_36.D3DXVec4BaryCentric @170 + D3DXVec4CatmullRom@24=d3dx9_36.D3DXVec4CatmullRom @171 + D3DXVec4Cross@16=d3dx9_36.D3DXVec4Cross @172 + D3DXVec4Hermite@24=d3dx9_36.D3DXVec4Hermite @173 + D3DXVec4Normalize@8=d3dx9_36.D3DXVec4Normalize @174 + D3DXVec4Transform@12=d3dx9_36.D3DXVec4Transform @175 + D3DXVec4TransformArray@24=d3dx9_36.D3DXVec4TransformArray @176 diff --git a/lib/wine/libd3dx11.def b/lib/wine/libd3dx11.def new file mode 100644 index 0000000..98877ff --- /dev/null +++ b/lib/wine/libd3dx11.def @@ -0,0 +1,49 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/d3dx11_43/d3dx11_43.spec; do not edit! + +LIBRARY d3dx11_43.dll + +EXPORTS + D3DX11CheckVersion@8 @1 + D3DX11CompileFromFileA@44 @2 + D3DX11CompileFromFileW@44 @3 + D3DX11CompileFromMemory@52 @4 + D3DX11CompileFromResourceA@0 @5 PRIVATE + D3DX11CompileFromResourceW@0 @6 PRIVATE + D3DX11ComputeNormalMap@0 @7 PRIVATE + D3DX11CreateAsyncCompilerProcessor@0 @8 PRIVATE + D3DX11CreateAsyncFileLoaderA@8 @9 + D3DX11CreateAsyncFileLoaderW@8 @10 + D3DX11CreateAsyncMemoryLoader@12 @11 + D3DX11CreateAsyncResourceLoaderA@12 @12 + D3DX11CreateAsyncResourceLoaderW@12 @13 + D3DX11CreateAsyncShaderPreprocessProcessor@0 @14 PRIVATE + D3DX11CreateAsyncShaderResourceViewProcessor@0 @15 PRIVATE + D3DX11CreateAsyncTextureInfoProcessor@0 @16 PRIVATE + D3DX11CreateAsyncTextureProcessor@0 @17 PRIVATE + D3DX11CreateShaderResourceViewFromFileA@0 @18 PRIVATE + D3DX11CreateShaderResourceViewFromFileW@0 @19 PRIVATE + D3DX11CreateShaderResourceViewFromMemory@28 @20 + D3DX11CreateShaderResourceViewFromResourceA@0 @21 PRIVATE + D3DX11CreateShaderResourceViewFromResourceW@0 @22 PRIVATE + D3DX11CreateTextureFromFileA@24 @23 + D3DX11CreateTextureFromFileW@24 @24 + D3DX11CreateTextureFromMemory@28 @25 + D3DX11CreateTextureFromResourceA@0 @26 PRIVATE + D3DX11CreateTextureFromResourceW@0 @27 PRIVATE + D3DX11CreateThreadPump@0 @28 PRIVATE + D3DX11FilterTexture@16 @29 + D3DX11GetImageInfoFromFileA@0 @30 PRIVATE + D3DX11GetImageInfoFromFileW@0 @31 PRIVATE + D3DX11GetImageInfoFromMemory@20 @32 + D3DX11GetImageInfoFromResourceA@0 @33 PRIVATE + D3DX11GetImageInfoFromResourceW@0 @34 PRIVATE + D3DX11LoadTextureFromTexture@0 @35 PRIVATE + D3DX11PreprocessShaderFromFileA@0 @36 PRIVATE + D3DX11PreprocessShaderFromFileW@0 @37 PRIVATE + D3DX11PreprocessShaderFromMemory@0 @38 PRIVATE + D3DX11PreprocessShaderFromResourceA@0 @39 PRIVATE + D3DX11PreprocessShaderFromResourceW@0 @40 PRIVATE + D3DX11SHProjectCubeMap@0 @41 PRIVATE + D3DX11SaveTextureToFileA@0 @42 PRIVATE + D3DX11SaveTextureToFileW@0 @43 PRIVATE + D3DX11SaveTextureToMemory@20 @44 diff --git a/lib/wine/libd3dx9.def b/lib/wine/libd3dx9.def new file mode 100644 index 0000000..45e6920 --- /dev/null +++ b/lib/wine/libd3dx9.def @@ -0,0 +1,341 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/d3dx9_36/d3dx9_36.spec; do not edit! + +LIBRARY d3dx9_36.dll + +EXPORTS + D3DXAssembleShader@28 @1 + D3DXAssembleShaderFromFileA@24 @2 + D3DXAssembleShaderFromFileW@24 @3 + D3DXAssembleShaderFromResourceA@28 @4 + D3DXAssembleShaderFromResourceW@28 @5 + D3DXBoxBoundProbe@16 @6 + D3DXCheckCubeTextureRequirements@24 @7 + D3DXCheckTextureRequirements@28 @8 + D3DXCheckVersion@8 @9 + D3DXCheckVolumeTextureRequirements@32 @10 + D3DXCleanMesh@24 @11 + D3DXColorAdjustContrast@12 @12 + D3DXColorAdjustSaturation@12 @13 + D3DXCompileShader@40 @14 + D3DXCompileShaderFromFileA@36 @15 + D3DXCompileShaderFromFileW@36 @16 + D3DXCompileShaderFromResourceA@40 @17 + D3DXCompileShaderFromResourceW@40 @18 + D3DXComputeBoundingBox@20 @19 + D3DXComputeBoundingSphere@20 @20 + D3DXComputeIMTFromPerTexelSignal@44 @21 PRIVATE + D3DXComputeIMTFromPerVertexSignal@32 @22 PRIVATE + D3DXComputeIMTFromSignal@40 @23 PRIVATE + D3DXComputeIMTFromTexture@28 @24 PRIVATE + D3DXComputeNormalMap@24 @25 + D3DXComputeNormals@8 @26 + D3DXComputeTangent@24 @27 + D3DXComputeTangentFrame@8 @28 PRIVATE + D3DXComputeTangentFrameEx@64 @29 + D3DXConcatenateMeshes@32 @30 PRIVATE + D3DXConvertMeshSubsetToSingleStrip@20 @31 + D3DXConvertMeshSubsetToStrips@28 @32 PRIVATE + D3DXCreateAnimationController@20 @33 + D3DXCreateBox@24 @34 + D3DXCreateBuffer@8 @35 + D3DXCreateCompressedAnimationSet@28 @36 PRIVATE + D3DXCreateCubeTexture@28 @37 + D3DXCreateCubeTextureFromFileA@12 @38 + D3DXCreateCubeTextureFromFileExA@52 @39 + D3DXCreateCubeTextureFromFileExW@52 @40 + D3DXCreateCubeTextureFromFileInMemory@16 @41 + D3DXCreateCubeTextureFromFileInMemoryEx@56 @42 + D3DXCreateCubeTextureFromFileW@12 @43 + D3DXCreateCubeTextureFromResourceA@16 @44 PRIVATE + D3DXCreateCubeTextureFromResourceExA@56 @45 PRIVATE + D3DXCreateCubeTextureFromResourceExW@56 @46 PRIVATE + D3DXCreateCubeTextureFromResourceW@16 @47 PRIVATE + D3DXCreateCylinder@32 @48 + D3DXCreateEffect@36 @49 + D3DXCreateEffectCompiler@28 @50 + D3DXCreateEffectCompilerFromFileA@24 @51 + D3DXCreateEffectCompilerFromFileW@24 @52 + D3DXCreateEffectCompilerFromResourceA@28 @53 + D3DXCreateEffectCompilerFromResourceW@28 @54 + D3DXCreateEffectEx@40 @55 + D3DXCreateEffectFromFileA@32 @56 + D3DXCreateEffectFromFileExA@36 @57 + D3DXCreateEffectFromFileExW@36 @58 + D3DXCreateEffectFromFileW@32 @59 + D3DXCreateEffectFromResourceA@36 @60 + D3DXCreateEffectFromResourceExA@40 @61 + D3DXCreateEffectFromResourceExW@40 @62 + D3DXCreateEffectFromResourceW@36 @63 + D3DXCreateEffectPool@4 @64 + D3DXCreateFontA@48 @65 + D3DXCreateFontIndirectA@12 @66 + D3DXCreateFontIndirectW@12 @67 + D3DXCreateFontW@48 @68 + D3DXCreateFragmentLinker@12 @69 + D3DXCreateFragmentLinkerEx@16 @70 + D3DXCreateKeyframedAnimationSet@32 @71 + D3DXCreateLine@8 @72 + D3DXCreateMatrixStack@8 @73 + D3DXCreateMesh@24 @74 + D3DXCreateMeshFVF@24 @75 + D3DXCreateNPatchMesh@8 @76 PRIVATE + D3DXCreatePMeshFromStream@28 @77 PRIVATE + D3DXCreatePRTBuffer@16 @78 PRIVATE + D3DXCreatePRTBufferTex@20 @79 PRIVATE + D3DXCreatePRTCompBuffer@28 @80 PRIVATE + D3DXCreatePRTEngine@20 @81 PRIVATE + D3DXCreatePatchMesh@28 @82 PRIVATE + D3DXCreatePolygon@20 @83 + D3DXCreateRenderToEnvMap@28 @84 + D3DXCreateRenderToSurface@28 @85 + D3DXCreateSPMesh@20 @86 PRIVATE + D3DXCreateSkinInfo@16 @87 + D3DXCreateSkinInfoFVF@16 @88 + D3DXCreateSkinInfoFromBlendedMesh@16 @89 PRIVATE + D3DXCreateSphere@24 @90 + D3DXCreateSprite@8 @91 + D3DXCreateTeapot@12 @92 + D3DXCreateTextA@32 @93 + D3DXCreateTextW@32 @94 + D3DXCreateTexture@32 @95 + D3DXCreateTextureFromFileA@12 @96 + D3DXCreateTextureFromFileExA@56 @97 + D3DXCreateTextureFromFileExW@56 @98 + D3DXCreateTextureFromFileInMemory@16 @99 + D3DXCreateTextureFromFileInMemoryEx@60 @100 + D3DXCreateTextureFromFileW@12 @101 + D3DXCreateTextureFromResourceA@16 @102 + D3DXCreateTextureFromResourceExA@60 @103 + D3DXCreateTextureFromResourceExW@60 @104 + D3DXCreateTextureFromResourceW@16 @105 + D3DXCreateTextureGutterHelper@20 @106 PRIVATE + D3DXCreateTextureShader@8 @107 + D3DXCreateTorus@28 @108 + D3DXCreateVolumeTexture@36 @109 + D3DXCreateVolumeTextureFromFileA@12 @110 + D3DXCreateVolumeTextureFromFileExA@60 @111 + D3DXCreateVolumeTextureFromFileExW@60 @112 + D3DXCreateVolumeTextureFromFileInMemory@16 @113 + D3DXCreateVolumeTextureFromFileInMemoryEx@64 @114 + D3DXCreateVolumeTextureFromFileW@12 @115 + D3DXCreateVolumeTextureFromResourceA@16 @116 PRIVATE + D3DXCreateVolumeTextureFromResourceExA@64 @117 PRIVATE + D3DXCreateVolumeTextureFromResourceExW@64 @118 PRIVATE + D3DXCreateVolumeTextureFromResourceW@16 @119 PRIVATE + D3DXDebugMute@4 @120 + D3DXDeclaratorFromFVF@8 @121 + D3DXDisassembleEffect@12 @122 + D3DXDisassembleShader@16 @123 + D3DXFVFFromDeclarator@8 @124 + D3DXFileCreate@4 @125 + D3DXFillCubeTexture@12 @126 + D3DXFillCubeTextureTX@8 @127 + D3DXFillTexture@12 @128 + D3DXFillTextureTX@8 @129 + D3DXFillVolumeTexture@12 @130 + D3DXFillVolumeTextureTX@8 @131 + D3DXFilterTexture@16 @132 + D3DXFindShaderComment@16 @133 + D3DXFloat16To32Array@12 @134 + D3DXFloat32To16Array@12 @135 + D3DXFrameAppendChild@8 @136 PRIVATE + D3DXFrameCalculateBoundingSphere@12 @137 PRIVATE + D3DXFrameDestroy@8 @138 + D3DXFrameFind@8 @139 + D3DXFrameNumNamedMatrices@4 @140 PRIVATE + D3DXFrameRegisterNamedMatrices@8 @141 PRIVATE + D3DXFresnelTerm@8 @142 + D3DXGatherFragments@28 @143 PRIVATE + D3DXGatherFragmentsFromFileA@24 @144 PRIVATE + D3DXGatherFragmentsFromFileW@24 @145 PRIVATE + D3DXGatherFragmentsFromResourceA@28 @146 PRIVATE + D3DXGatherFragmentsFromResourceW@28 @147 PRIVATE + D3DXGenerateOutputDecl@8 @148 PRIVATE + D3DXGeneratePMesh@28 @149 PRIVATE + D3DXGetDeclLength@4 @150 + D3DXGetDeclVertexSize@8 @151 + D3DXGetDriverLevel@4 @152 + D3DXGetFVFVertexSize@4 @153 + D3DXGetImageInfoFromFileA@8 @154 + D3DXGetImageInfoFromFileInMemory@12 @155 + D3DXGetImageInfoFromFileW@8 @156 + D3DXGetImageInfoFromResourceA@12 @157 + D3DXGetImageInfoFromResourceW@12 @158 + D3DXGetPixelShaderProfile@4 @159 + D3DXGetShaderConstantTable@8 @160 + D3DXGetShaderConstantTableEx@12 @161 + D3DXGetShaderInputSemantics@12 @162 + D3DXGetShaderOutputSemantics@12 @163 + D3DXGetShaderSamplers@12 @164 + D3DXGetShaderSize@4 @165 + D3DXGetShaderVersion@4 @166 + D3DXGetVertexShaderProfile@4 @167 + D3DXIntersect@40 @168 + D3DXIntersectSubset@44 @169 PRIVATE + D3DXIntersectTri@32 @170 + D3DXLoadMeshFromXA@32 @171 + D3DXLoadMeshFromXInMemory@36 @172 + D3DXLoadMeshFromXResource@40 @173 + D3DXLoadMeshFromXW@32 @174 + D3DXLoadMeshFromXof@32 @175 PRIVATE + D3DXLoadMeshHierarchyFromXA@28 @176 + D3DXLoadMeshHierarchyFromXInMemory@32 @177 + D3DXLoadMeshHierarchyFromXW@28 @178 + D3DXLoadPRTBufferFromFileA@8 @179 PRIVATE + D3DXLoadPRTBufferFromFileW@8 @180 PRIVATE + D3DXLoadPRTCompBufferFromFileA@8 @181 PRIVATE + D3DXLoadPRTCompBufferFromFileW@8 @182 PRIVATE + D3DXLoadPatchMeshFromXof@28 @183 PRIVATE + D3DXLoadSkinMeshFromXof@36 @184 + D3DXLoadSurfaceFromFileA@32 @185 + D3DXLoadSurfaceFromFileInMemory@36 @186 + D3DXLoadSurfaceFromFileW@32 @187 + D3DXLoadSurfaceFromMemory@40 @188 + D3DXLoadSurfaceFromResourceA@36 @189 + D3DXLoadSurfaceFromResourceW@36 @190 + D3DXLoadSurfaceFromSurface@32 @191 + D3DXLoadVolumeFromFileA@32 @192 + D3DXLoadVolumeFromFileInMemory@36 @193 + D3DXLoadVolumeFromFileW@32 @194 + D3DXLoadVolumeFromMemory@44 @195 + D3DXLoadVolumeFromResourceA@36 @196 PRIVATE + D3DXLoadVolumeFromResourceW@36 @197 PRIVATE + D3DXLoadVolumeFromVolume@32 @198 + D3DXMatrixAffineTransformation@20 @199 + D3DXMatrixAffineTransformation2D@20 @200 + D3DXMatrixDecompose@16 @201 + D3DXMatrixDeterminant@4 @202 + D3DXMatrixInverse@12 @203 + D3DXMatrixLookAtLH@16 @204 + D3DXMatrixLookAtRH@16 @205 + D3DXMatrixMultiply@12 @206 + D3DXMatrixMultiplyTranspose@12 @207 + D3DXMatrixOrthoLH@20 @208 + D3DXMatrixOrthoOffCenterLH@28 @209 + D3DXMatrixOrthoOffCenterRH@28 @210 + D3DXMatrixOrthoRH@20 @211 + D3DXMatrixPerspectiveFovLH@20 @212 + D3DXMatrixPerspectiveFovRH@20 @213 + D3DXMatrixPerspectiveLH@20 @214 + D3DXMatrixPerspectiveOffCenterLH@28 @215 + D3DXMatrixPerspectiveOffCenterRH@28 @216 + D3DXMatrixPerspectiveRH@20 @217 + D3DXMatrixReflect@8 @218 + D3DXMatrixRotationAxis@12 @219 + D3DXMatrixRotationQuaternion@8 @220 + D3DXMatrixRotationX@8 @221 + D3DXMatrixRotationY@8 @222 + D3DXMatrixRotationYawPitchRoll@16 @223 + D3DXMatrixRotationZ@8 @224 + D3DXMatrixScaling@16 @225 + D3DXMatrixShadow@12 @226 + D3DXMatrixTransformation@28 @227 + D3DXMatrixTransformation2D@28 @228 + D3DXMatrixTranslation@16 @229 + D3DXMatrixTranspose@8 @230 + D3DXOptimizeFaces@20 @231 + D3DXOptimizeVertices@20 @232 + D3DXPlaneFromPointNormal@12 @233 + D3DXPlaneFromPoints@16 @234 + D3DXPlaneIntersectLine@16 @235 + D3DXPlaneNormalize@8 @236 + D3DXPlaneTransform@12 @237 + D3DXPlaneTransformArray@24 @238 + D3DXPreprocessShader@24 @239 + D3DXPreprocessShaderFromFileA@20 @240 + D3DXPreprocessShaderFromFileW@20 @241 + D3DXPreprocessShaderFromResourceA@24 @242 + D3DXPreprocessShaderFromResourceW@24 @243 + D3DXQuaternionBaryCentric@24 @244 + D3DXQuaternionExp@8 @245 + D3DXQuaternionInverse@8 @246 + D3DXQuaternionLn@8 @247 + D3DXQuaternionMultiply@12 @248 + D3DXQuaternionNormalize@8 @249 + D3DXQuaternionRotationAxis@12 @250 + D3DXQuaternionRotationMatrix@8 @251 + D3DXQuaternionRotationYawPitchRoll@16 @252 + D3DXQuaternionSlerp@16 @253 + D3DXQuaternionSquad@24 @254 + D3DXQuaternionSquadSetup@28 @255 + D3DXQuaternionToAxisAngle@12 @256 + D3DXRectPatchSize@12 @257 PRIVATE + D3DXSHAdd@16 @258 + D3DXSHDot@12 @259 + D3DXSHEvalConeLight@36 @260 + D3DXSHEvalDirection@12 @261 + D3DXSHEvalDirectionalLight@32 @262 + D3DXSHEvalHemisphereLight@52 @263 + D3DXSHEvalSphericalLight@36 @264 + D3DXSHMultiply2@12 @265 + D3DXSHMultiply3@12 @266 + D3DXSHMultiply4@12 @267 + D3DXSHMultiply5@12 @268 PRIVATE + D3DXSHMultiply6@12 @269 PRIVATE + D3DXSHPRTCompSplitMeshSC@64 @270 PRIVATE + D3DXSHPRTCompSuperCluster@24 @271 PRIVATE + D3DXSHProjectCubeMap@20 @272 PRIVATE + D3DXSHRotate@16 @273 + D3DXSHRotateZ@16 @274 + D3DXSHScale@16 @275 + D3DXSaveMeshHierarchyToFileA@20 @276 PRIVATE + D3DXSaveMeshHierarchyToFileW@20 @277 PRIVATE + D3DXSaveMeshToXA@28 @278 PRIVATE + D3DXSaveMeshToXW@28 @279 PRIVATE + D3DXSavePRTBufferToFileA@8 @280 PRIVATE + D3DXSavePRTBufferToFileW@8 @281 PRIVATE + D3DXSavePRTCompBufferToFileA@8 @282 PRIVATE + D3DXSavePRTCompBufferToFileW@8 @283 PRIVATE + D3DXSaveSurfaceToFileA@20 @284 + D3DXSaveSurfaceToFileInMemory@20 @285 + D3DXSaveSurfaceToFileW@20 @286 + D3DXSaveTextureToFileA@16 @287 + D3DXSaveTextureToFileInMemory@16 @288 + D3DXSaveTextureToFileW@16 @289 + D3DXSaveVolumeToFileA@20 @290 PRIVATE + D3DXSaveVolumeToFileInMemory@20 @291 PRIVATE + D3DXSaveVolumeToFileW@20 @292 PRIVATE + D3DXSimplifyMesh@28 @293 PRIVATE + D3DXSphereBoundProbe@16 @294 + D3DXSplitMesh@36 @295 PRIVATE + D3DXTessellateNPatches@24 @296 + D3DXTessellateRectPatch@20 @297 PRIVATE + D3DXTessellateTriPatch@20 @298 PRIVATE + D3DXTriPatchSize@12 @299 PRIVATE + D3DXUVAtlasCreate@76 @300 PRIVATE + D3DXUVAtlasPack@44 @301 PRIVATE + D3DXUVAtlasPartition@68 @302 PRIVATE + D3DXValidMesh@12 @303 + D3DXValidPatchMesh@16 @304 PRIVATE + D3DXVec2BaryCentric@24 @305 + D3DXVec2CatmullRom@24 @306 + D3DXVec2Hermite@24 @307 + D3DXVec2Normalize@8 @308 + D3DXVec2Transform@12 @309 + D3DXVec2TransformArray@24 @310 + D3DXVec2TransformCoord@12 @311 + D3DXVec2TransformCoordArray@24 @312 + D3DXVec2TransformNormal@12 @313 + D3DXVec2TransformNormalArray@24 @314 + D3DXVec3BaryCentric@24 @315 + D3DXVec3CatmullRom@24 @316 + D3DXVec3Hermite@24 @317 + D3DXVec3Normalize@8 @318 + D3DXVec3Project@24 @319 + D3DXVec3ProjectArray@36 @320 + D3DXVec3Transform@12 @321 + D3DXVec3TransformArray@24 @322 + D3DXVec3TransformCoord@12 @323 + D3DXVec3TransformCoordArray@24 @324 + D3DXVec3TransformNormal@12 @325 + D3DXVec3TransformNormalArray@24 @326 + D3DXVec3Unproject@24 @327 + D3DXVec3UnprojectArray@36 @328 + D3DXVec4BaryCentric@24 @329 + D3DXVec4CatmullRom@24 @330 + D3DXVec4Cross@16 @331 + D3DXVec4Hermite@24 @332 + D3DXVec4Normalize@8 @333 + D3DXVec4Transform@12 @334 + D3DXVec4TransformArray@24 @335 + D3DXWeldVertices@28 @336 diff --git a/lib/wine/libd3dxof.def b/lib/wine/libd3dxof.def new file mode 100644 index 0000000..6be9207 --- /dev/null +++ b/lib/wine/libd3dxof.def @@ -0,0 +1,10 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/d3dxof/d3dxof.spec; do not edit! + +LIBRARY d3dxof.dll + +EXPORTS + DirectXFileCreate@4 @1 + DllCanUnloadNow@0 @2 PRIVATE + DllGetClassObject@12 @3 PRIVATE + DllRegisterServer@0 @4 PRIVATE + DllUnregisterServer@0 @5 PRIVATE diff --git a/lib/wine/libdbgeng.def b/lib/wine/libdbgeng.def new file mode 100644 index 0000000..8e9b570 --- /dev/null +++ b/lib/wine/libdbgeng.def @@ -0,0 +1,10 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/dbgeng/dbgeng.spec; do not edit! + +LIBRARY dbgeng.dll + +EXPORTS + DebugConnect@12 @328 + DebugConnectWide@0 @329 PRIVATE + DebugCreate@8 @330 + DebugCreateEx@12 @331 + DebugExtensionInitialize@8 @332 diff --git a/lib/wine/libdbghelp.def b/lib/wine/libdbghelp.def new file mode 100644 index 0000000..347e022 --- /dev/null +++ b/lib/wine/libdbghelp.def @@ -0,0 +1,193 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/dbghelp/dbghelp.spec; do not edit! + +LIBRARY dbghelp.dll + +EXPORTS + DbgHelpCreateUserDump@0 @1 PRIVATE + DbgHelpCreateUserDumpW@0 @2 PRIVATE + EnumDirTree@24 @3 + EnumDirTreeW@24 @4 + EnumerateLoadedModules@12 @5 + EnumerateLoadedModules64@12 @6 + EnumerateLoadedModulesEx@12=EnumerateLoadedModules64 @7 + EnumerateLoadedModulesExW@12=EnumerateLoadedModulesW64 @8 + EnumerateLoadedModulesW64@12 @9 + ExtensionApiVersion@0 @10 + FindDebugInfoFile@12 @11 + FindDebugInfoFileEx@20 @12 + FindDebugInfoFileExW@0 @13 PRIVATE + FindExecutableImage@12 @14 + FindExecutableImageEx@20 @15 + FindExecutableImageExW@20 @16 + FindFileInPath@0 @17 PRIVATE + FindFileInSearchPath@0 @18 PRIVATE + GetTimestampForLoadedLibrary@4 @19 + ImageDirectoryEntryToData@16 @20 + ImageDirectoryEntryToDataEx@20 @21 + ImageNtHeader@4=ntdll.RtlImageNtHeader @22 + ImageRvaToSection@12=ntdll.RtlImageRvaToSection @23 + ImageRvaToVa@16=ntdll.RtlImageRvaToVa @24 + ImagehlpApiVersion@0 @25 + ImagehlpApiVersionEx@4 @26 + MakeSureDirectoryPathExists@4 @27 + MapDebugInformation@16 @28 + MiniDumpReadDumpStream@20 @29 + MiniDumpWriteDump@28 @30 + SearchTreeForFile@12 @31 + SearchTreeForFileW@12 @32 + StackWalk@36 @33 + StackWalk64@36 @34 + SymAddSourceStream@0 @35 PRIVATE + SymAddSourceStreamA@0 @36 PRIVATE + SymAddSourceStreamW@0 @37 PRIVATE + SymAddSymbol@32 @38 + SymAddSymbolW@32 @39 + SymCleanup@4 @40 + SymDeleteSymbol@0 @41 PRIVATE + SymDeleteSymbolW@0 @42 PRIVATE + SymEnumLines@28 @43 + SymEnumLinesW@0 @44 PRIVATE + SymEnumProcesses@0 @45 PRIVATE + SymEnumSourceFileTokens@0 @46 PRIVATE + SymEnumSourceFiles@24 @47 + SymEnumSourceFilesW@24 @48 + SymEnumSourceLines@36 @49 + SymEnumSourceLinesW@36 @50 + SymEnumSym@0 @51 PRIVATE + SymEnumSymbols@24 @52 + SymEnumSymbolsForAddr@0 @53 PRIVATE + SymEnumSymbolsForAddrW@0 @54 PRIVATE + SymEnumSymbolsW@24 @55 + SymEnumTypes@20 @56 + SymEnumTypesByName@0 @57 PRIVATE + SymEnumTypesByNameW@0 @58 PRIVATE + SymEnumTypesW@20 @59 + SymEnumerateModules@12 @60 + SymEnumerateModules64@12 @61 + SymEnumerateModulesW64@12 @62 + SymEnumerateSymbols@16 @63 + SymEnumerateSymbols64@20 @64 + SymEnumerateSymbolsW@0 @65 PRIVATE + SymEnumerateSymbolsW64@0 @66 PRIVATE + SymFindDebugInfoFile@0 @67 PRIVATE + SymFindDebugInfoFileW@0 @68 PRIVATE + SymFindExecutableImage@0 @69 PRIVATE + SymFindExecutableImageW@0 @70 PRIVATE + SymFindFileInPath@40 @71 + SymFindFileInPathW@40 @72 + SymFromAddr@20 @73 + SymFromAddrW@20 @74 + SymFromIndex@20 @75 + SymFromIndexW@20 @76 + SymFromName@12 @77 + SymFromNameW@0 @78 PRIVATE + SymFromToken@0 @79 PRIVATE + SymFromTokenW@0 @80 PRIVATE + SymFunctionTableAccess@8 @81 + SymFunctionTableAccess64@12 @82 + SymGetFileLineOffsets64@0 @83 PRIVATE + SymGetHomeDirectory@0 @84 PRIVATE + SymGetHomeDirectoryW@0 @85 PRIVATE + SymGetLineFromAddr@16 @86 + SymGetLineFromAddr64@20 @87 + SymGetLineFromAddrW64@20 @88 + SymGetLineFromName@24 @89 + SymGetLineFromName64@24 @90 + SymGetLineFromNameW64@24 @91 + SymGetLineNext@8 @92 + SymGetLineNext64@8 @93 + SymGetLineNextW64@0 @94 PRIVATE + SymGetLinePrev@8 @95 + SymGetLinePrev64@8 @96 + SymGetLinePrevW64@0 @97 PRIVATE + SymGetModuleBase@8 @98 + SymGetModuleBase64@12 @99 + SymGetModuleInfo@12 @100 + SymGetModuleInfo64@16 @101 + SymGetModuleInfoW@12 @102 + SymGetModuleInfoW64@16 @103 + SymGetOmapBlockBase@0 @104 PRIVATE + SymGetOptions@0 @105 + SymGetScope@0 @106 PRIVATE + SymGetScopeW@0 @107 PRIVATE + SymGetSearchPath@12 @108 + SymGetSearchPathW@12 @109 + SymGetSourceFile@0 @110 PRIVATE + SymGetSourceFileFromToken@0 @111 PRIVATE + SymGetSourceFileFromTokenW@0 @112 PRIVATE + SymGetSourceFileToken@24 @113 + SymGetSourceFileTokenW@24 @114 + SymGetSourceFileW@0 @115 PRIVATE + SymGetSourceVarFromToken@0 @116 PRIVATE + SymGetSourceVarFromTokenW@0 @117 PRIVATE + SymGetSymFromAddr@16 @118 + SymGetSymFromAddr64@20 @119 + SymGetSymFromName@12 @120 + SymGetSymFromName64@12 @121 + SymGetSymNext@8 @122 + SymGetSymNext64@8 @123 + SymGetSymPrev@8 @124 + SymGetSymPrev64@8 @125 + SymGetSymbolFile@0 @126 PRIVATE + SymGetSymbolFileW@0 @127 PRIVATE + SymGetTypeFromName@20 @128 + SymGetTypeFromNameW@0 @129 PRIVATE + SymGetTypeInfo@24 @130 + SymGetTypeInfoEx@0 @131 PRIVATE + SymInitialize@12 @132 + SymInitializeW@12 @133 + SymLoadModule@24 @134 + SymLoadModule64@28 @135 + SymLoadModuleEx@36 @136 + SymLoadModuleExW@36 @137 + SymMatchFileName@16 @138 + SymMatchFileNameW@16 @139 + SymMatchString@12=SymMatchStringA @140 + SymMatchStringA@12 @141 + SymMatchStringW@12 @142 + SymNext@0 @143 PRIVATE + SymNextW@0 @144 PRIVATE + SymPrev@0 @145 PRIVATE + SymPrevW@0 @146 PRIVATE + SymRefreshModuleList@4 @147 + SymRegisterCallback@12 @148 + SymRegisterCallback64@16 @149 + SymRegisterCallbackW64@16 @150 + SymRegisterFunctionEntryCallback@12 @151 + SymRegisterFunctionEntryCallback64@16 @152 + SymSearch@44 @153 + SymSearchW@44 @154 + SymSetContext@12 @155 + SymSetHomeDirectory@8 @156 + SymSetHomeDirectoryW@8 @157 + SymSetOptions@4 @158 + SymSetParentWindow@4 @159 + SymSetScopeFromAddr@12 @160 + SymSetScopeFromIndex@0 @161 PRIVATE + SymSetSearchPath@8 @162 + SymSetSearchPathW@8 @163 + SymSrvDeltaName@0 @164 PRIVATE + SymSrvDeltaNameW@0 @165 PRIVATE + SymSrvGetFileIndexInfo@0 @166 PRIVATE + SymSrvGetFileIndexInfoW@0 @167 PRIVATE + SymSrvGetFileIndexString@0 @168 PRIVATE + SymSrvGetFileIndexStringW@0 @169 PRIVATE + SymSrvGetFileIndexes@0 @170 PRIVATE + SymSrvGetFileIndexesW@0 @171 PRIVATE + SymSrvGetSupplement@0 @172 PRIVATE + SymSrvGetSupplementW@0 @173 PRIVATE + SymSrvIsStore@0 @174 PRIVATE + SymSrvIsStoreW@0 @175 PRIVATE + SymSrvStoreFile@0 @176 PRIVATE + SymSrvStoreFileW@0 @177 PRIVATE + SymSrvStoreSupplement@0 @178 PRIVATE + SymSrvStoreSupplementW@0 @179 PRIVATE + SymSetSymWithAddr64@0 @180 PRIVATE + SymUnDName@12 @181 + SymUnDName64@12 @182 + SymUnloadModule@8 @183 + SymUnloadModule64@12 @184 + UnDecorateSymbolName@16 @185 + UnDecorateSymbolNameW@16 @186 + UnmapDebugInformation@4 @187 + WinDbgExtensionDllInit@12 @188 diff --git a/lib/wine/libdciman32.def b/lib/wine/libdciman32.def new file mode 100644 index 0000000..437e2ca --- /dev/null +++ b/lib/wine/libdciman32.def @@ -0,0 +1,26 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/dciman32/dciman32.spec; do not edit! + +LIBRARY dciman32.dll + +EXPORTS + DCIBeginAccess@0 @1 PRIVATE + DCICloseProvider@4 @2 + DCICreateOffscreen@0 @3 PRIVATE + DCICreateOverlay@0 @4 PRIVATE + DCICreatePrimary@8 @5 + DCIDestroy@0 @6 PRIVATE + DCIDraw@0 @7 PRIVATE + DCIEndAccess@0 @8 PRIVATE + DCIEnum@0 @9 PRIVATE + DCIOpenProvider@0 @10 + DCISetClipList@0 @11 PRIVATE + DCISetDestination@0 @12 PRIVATE + DCISetSrcDestClip@0 @13 PRIVATE + DllEntryPoint@12=DllMain @14 PRIVATE + GetDCRegionData@0 @15 PRIVATE + GetWindowRegionData@0 @16 PRIVATE + WinWatchClose@0 @17 PRIVATE + WinWatchDidStatusChange@0 @18 PRIVATE + WinWatchGetClipList@0 @19 PRIVATE + WinWatchNotify@0 @20 PRIVATE + WinWatchOpen@0 @21 PRIVATE diff --git a/lib/wine/libddraw.def b/lib/wine/libddraw.def new file mode 100644 index 0000000..6730b70 --- /dev/null +++ b/lib/wine/libddraw.def @@ -0,0 +1,33 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/ddraw/ddraw.spec; do not edit! + +LIBRARY ddraw.dll + +EXPORTS + DDHAL32_VidMemAlloc@0 @1 PRIVATE + DDHAL32_VidMemFree@0 @2 PRIVATE + DDInternalLock@0 @3 PRIVATE + DDInternalUnlock@0 @4 PRIVATE + DSoundHelp@0 @5 PRIVATE + DirectDrawCreate@12 @6 + DirectDrawCreateClipper@12 @7 + DirectDrawCreateEx@16 @8 + DirectDrawEnumerateA@8 @9 + DirectDrawEnumerateExA@12 @10 + DirectDrawEnumerateExW@12 @11 + DirectDrawEnumerateW@8 @12 + DllCanUnloadNow@0 @13 PRIVATE + DllGetClassObject@12 @14 PRIVATE + DllRegisterServer@0 @15 PRIVATE + DllUnregisterServer@0 @16 PRIVATE + GetNextMipMap@0 @17 PRIVATE + GetSurfaceFromDC@12 @18 + HeapVidMemAllocAligned@0 @19 PRIVATE + InternalLock@0 @20 PRIVATE + InternalUnlock@0 @21 PRIVATE + LateAllocateSurfaceMem@0 @22 PRIVATE + VidMemAlloc@0 @23 PRIVATE + VidMemAmountFree@0 @24 PRIVATE + VidMemFini@0 @25 PRIVATE + VidMemFree@0 @26 PRIVATE + VidMemInit@0 @27 PRIVATE + VidMemLargestFree@0 @28 PRIVATE diff --git a/lib/wine/libdinput.a b/lib/wine/libdinput.a new file mode 100644 index 0000000..5e1a0b5 Binary files /dev/null and b/lib/wine/libdinput.a differ diff --git a/lib/wine/libdinput8.a b/lib/wine/libdinput8.a new file mode 100644 index 0000000..c834d20 Binary files /dev/null and b/lib/wine/libdinput8.a differ diff --git a/lib/wine/libdmoguids.a b/lib/wine/libdmoguids.a new file mode 100644 index 0000000..8f162e6 Binary files /dev/null and b/lib/wine/libdmoguids.a differ diff --git a/lib/wine/libdnsapi.def b/lib/wine/libdnsapi.def new file mode 100644 index 0000000..1932fdf --- /dev/null +++ b/lib/wine/libdnsapi.def @@ -0,0 +1,135 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/dnsapi/dnsapi.spec; do not edit! + +LIBRARY dnsapi.dll + +EXPORTS + DnsAcquireContextHandle_A@12 @1 + DnsAcquireContextHandle_UTF8@12 @2 + DnsAcquireContextHandle_W@12 @3 + DnsAddRecordSet_A@0 @4 PRIVATE + DnsAddRecordSet_UTF8@0 @5 PRIVATE + DnsAddRecordSet_W@0 @6 PRIVATE + DnsAllocateRecord@0 @7 PRIVATE + DnsApiHeapReset@0 @8 PRIVATE + DnsAsyncRegisterHostAddrs_A@0 @9 PRIVATE + DnsAsyncRegisterHostAddrs_UTF8@0 @10 PRIVATE + DnsAsyncRegisterHostAddrs_W@0 @11 PRIVATE + DnsAsyncRegisterInit@0 @12 PRIVATE + DnsAsyncRegisterTerm@0 @13 PRIVATE + DnsCheckNameCollision_A@0 @14 PRIVATE + DnsCheckNameCollision_UTF8@0 @15 PRIVATE + DnsCheckNameCollision_W@0 @16 PRIVATE + DnsCopyStringEx@0 @17 PRIVATE + DnsCreateReverseNameStringForIpAddress@0 @18 PRIVATE + DnsCreateStandardDnsNameCopy@0 @19 PRIVATE + DnsCreateStringCopy@0 @20 PRIVATE + DnsDhcpSrvRegisterHostName_W@0 @21 PRIVATE + DnsDhcpSrvRegisterInit@0 @22 PRIVATE + DnsDhcpSrvRegisterTerm@0 @23 PRIVATE + DnsDisableAdapterDomainNameRegistration@0 @24 PRIVATE + DnsDisableBNodeResolverThread@0 @25 PRIVATE + DnsDisableDynamicRegistration@0 @26 PRIVATE + DnsDowncaseDnsNameLabel@0 @27 PRIVATE + DnsEnableAdapterDomainNameRegistration@0 @28 PRIVATE + DnsEnableBNodeResolverThread@0 @29 PRIVATE + DnsEnableDynamicRegistration@0 @30 PRIVATE + DnsExtractRecordsFromMessage_UTF8@12 @31 + DnsExtractRecordsFromMessage_W@12 @32 + DnsFindAuthoritativeZone@0 @33 PRIVATE + DnsFlushResolverCache@0 @34 + DnsFlushResolverCacheEntry_A@4 @35 + DnsFlushResolverCacheEntry_UTF8@4 @36 + DnsFlushResolverCacheEntry_W@4 @37 + DnsFree@8 @38 + DnsFreeAdapterInformation@0 @39 PRIVATE + DnsFreeNetworkInformation@0 @40 PRIVATE + DnsFreeSearchInformation@0 @41 PRIVATE + DnsGetBufferLengthForStringCopy@0 @42 PRIVATE + DnsGetCacheDataTable@0 @43 PRIVATE + DnsGetDnsServerList@0 @44 PRIVATE + DnsGetDomainName@0 @45 PRIVATE + DnsGetHostName_A@0 @46 PRIVATE + DnsGetHostName_UTF8@0 @47 PRIVATE + DnsGetHostName_W@0 @48 PRIVATE + DnsGetIpAddressInfoList@0 @49 PRIVATE + DnsGetIpAddressList@0 @50 PRIVATE + DnsGetLastServerUpdateIP@0 @51 PRIVATE + DnsGetMaxNumberOfAddressesToRegister@0 @52 PRIVATE + DnsGetNetworkInformation@0 @53 PRIVATE + DnsGetPrimaryDomainName_A@0 @54 PRIVATE + DnsGetPrimaryDomainName_UTF8@0 @55 PRIVATE + DnsGetPrimaryDomainName_W@0 @56 PRIVATE + DnsGetSearchInformation@0 @57 PRIVATE + DnsIpv6AddressToString@0 @58 PRIVATE + DnsIpv6StringToAddress@0 @59 PRIVATE + DnsIsAdapterDomainNameRegistrationEnabled@0 @60 PRIVATE + DnsIsAMailboxType@0 @61 PRIVATE + DnsIsDynamicRegistrationEnabled@0 @62 PRIVATE + DnsIsStatusRcode@0 @63 PRIVATE + DnsIsStringCountValidForTextType@0 @64 PRIVATE + DnsMapRcodeToStatus@0 @65 PRIVATE + DnsModifyRecordSet_A@0 @66 PRIVATE + DnsModifyRecordSet_UTF8@0 @67 PRIVATE + DnsModifyRecordSet_W@0 @68 PRIVATE + DnsModifyRecordsInSet_A@24 @69 + DnsModifyRecordsInSet_UTF8@24 @70 + DnsModifyRecordsInSet_W@24 @71 + DnsNameCompare_A@8 @72 + DnsNameCompareEx_A@0 @73 PRIVATE + DnsNameCompareEx_UTF8@0 @74 PRIVATE + DnsNameCompareEx_W@0 @75 PRIVATE + DnsNameCompare_W@8 @76 + DnsNameCopy@0 @77 PRIVATE + DnsNameCopyAllocate@0 @78 PRIVATE + DnsNotifyResolver@0 @79 PRIVATE + DnsQuery_A@24 @80 + DnsQueryConfig@24 @81 + DnsQueryEx@12 @82 + DnsQuery_UTF8@24 @83 + DnsQuery_W@24 @84 + DnsRecordBuild_UTF8@0 @85 PRIVATE + DnsRecordBuild_W@0 @86 PRIVATE + DnsRecordCompare@8 @87 + DnsRecordCopyEx@12 @88 + DnsRecordListFree@8 @89 + DnsRecordSetCompare@16 @90 + DnsRecordSetCopyEx@12 @91 + DnsRecordSetDetach@4 @92 + DnsRecordStringForType@0 @93 PRIVATE + DnsRecordStringForWritableType@0 @94 PRIVATE + DnsRecordTypeForName@0 @95 PRIVATE + DnsRelationalCompare_UTF8@0 @96 PRIVATE + DnsRelationalCompare_W@0 @97 PRIVATE + DnsReleaseContextHandle@4 @98 + DnsRemoveRegistrations@0 @99 PRIVATE + DnsReplaceRecordSetA@20 @100 + DnsReplaceRecordSet_A@0 @101 PRIVATE + DnsReplaceRecordSetUTF8@20 @102 + DnsReplaceRecordSet_UTF8@0 @103 PRIVATE + DnsReplaceRecordSetW@20 @104 + DnsReplaceRecordSet_W@0 @105 PRIVATE + DnsServiceNotificationDeregister_A@0 @106 PRIVATE + DnsServiceNotificationDeregister_UTF8@0 @107 PRIVATE + DnsServiceNotificationDeregister_W@0 @108 PRIVATE + DnsServiceNotificationRegister_A@0 @109 PRIVATE + DnsServiceNotificationRegister_UTF8@0 @110 PRIVATE + DnsServiceNotificationRegister_W@0 @111 PRIVATE + DnsSetMaxNumberOfAddressesToRegister@0 @112 PRIVATE + DnsStatusString@0 @113 PRIVATE + DnsStringCopyAllocateEx@0 @114 PRIVATE + DnsUnicodeToUtf8@0 @115 PRIVATE + DnsUpdate@0 @116 PRIVATE + DnsUpdateTest_A@0 @117 PRIVATE + DnsUpdateTest_UTF8@0 @118 PRIVATE + DnsUpdateTest_W@0 @119 PRIVATE + DnsUtf8ToUnicode@0 @120 PRIVATE + DnsValidateName_A@8 @121 + DnsValidateName_UTF8@8 @122 + DnsValidateName_W@8 @123 + DnsValidateUtf8Byte@0 @124 PRIVATE + DnsWinsRecordFlagForString@0 @125 PRIVATE + DnsWinsRecordFlagString@0 @126 PRIVATE + DnsWriteQuestionToBuffer_UTF8@24 @127 + DnsWriteQuestionToBuffer_W@24 @128 + DnsWriteReverseNameStringForIpAddress@0 @129 PRIVATE + GetCurrentTimeInSeconds@0 @130 PRIVATE diff --git a/lib/wine/libdplayx.def b/lib/wine/libdplayx.def new file mode 100644 index 0000000..bd38027 --- /dev/null +++ b/lib/wine/libdplayx.def @@ -0,0 +1,16 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/dplayx/dplayx.spec; do not edit! + +LIBRARY dplayx.dll + +EXPORTS + DirectPlayCreate@12 @1 + DirectPlayEnumerateA@8 @2 + DirectPlayEnumerateW@8 @3 + DirectPlayLobbyCreateA@20 @4 + DirectPlayLobbyCreateW@20 @5 + gdwDPlaySPRefCount @6 DATA + DirectPlayEnumerate@8=DirectPlayEnumerateA @9 + DllCanUnloadNow@0 @7 PRIVATE + DllGetClassObject@12 @8 PRIVATE + DllRegisterServer@0 @10 PRIVATE + DllUnregisterServer@0 @11 PRIVATE diff --git a/lib/wine/libdpnet.def b/lib/wine/libdpnet.def new file mode 100644 index 0000000..d15f55f --- /dev/null +++ b/lib/wine/libdpnet.def @@ -0,0 +1,10 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/dpnet/dpnet.spec; do not edit! + +LIBRARY dpnet.dll + +EXPORTS + DirectPlay8Create@12 @1 + DllCanUnloadNow@0 @2 PRIVATE + DllGetClassObject@12 @3 PRIVATE + DllRegisterServer@0 @4 PRIVATE + DllUnregisterServer@0 @5 PRIVATE diff --git a/lib/wine/libdsound.def b/lib/wine/libdsound.def new file mode 100644 index 0000000..c5c91ce --- /dev/null +++ b/lib/wine/libdsound.def @@ -0,0 +1,19 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/dsound/dsound.spec; do not edit! + +LIBRARY dsound.dll + +EXPORTS + DirectSoundCreate@12 @1 + DirectSoundEnumerateA@8 @2 + DirectSoundEnumerateW@8 @3 + DirectSoundCaptureCreate@12 @6 + DirectSoundCaptureEnumerateA@8 @7 + DirectSoundCaptureEnumerateW@8 @8 + GetDeviceID@8 @9 + DirectSoundFullDuplexCreate@40 @10 + DirectSoundCreate8@12 @11 + DirectSoundCaptureCreate8@12 @12 + DllCanUnloadNow@0 @4 PRIVATE + DllGetClassObject@12 @5 PRIVATE + DllRegisterServer@0 @13 PRIVATE + DllUnregisterServer@0 @14 PRIVATE diff --git a/lib/wine/libdwmapi.def b/lib/wine/libdwmapi.def new file mode 100644 index 0000000..d0da27e --- /dev/null +++ b/lib/wine/libdwmapi.def @@ -0,0 +1,65 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/dwmapi/dwmapi.spec; do not edit! + +LIBRARY dwmapi.dll + +EXPORTS + DwmpDxGetWindowSharedSurface@0 @100 PRIVATE + DwmpDxUpdateWindowSharedSurface@0 @101 PRIVATE + DwmEnableComposition@4 @102 + DwmpRestartComposition@0 @103 NONAME PRIVATE + DwmpSetColorizationColor@0 @104 NONAME PRIVATE + DwmpStartOrStopFlip3D@0 @105 NONAME PRIVATE + DwmpIsCompositionCapable@0 @106 NONAME PRIVATE + DwmpGetGlobalState@0 @107 NONAME PRIVATE + DwmpEnableRedirection@0 @108 NONAME PRIVATE + DwmpOpenGraphicsStream@0 @109 NONAME PRIVATE + DwmpCloseGraphicsStream@0 @110 NONAME PRIVATE + DwmpSetGraphicsStreamTransformHint@0 @112 NONAME PRIVATE + DwmpActivateLivePreview@0 @113 NONAME PRIVATE + DwmpQueryThumbnailType@0 @114 NONAME PRIVATE + DwmpStartupViaUserInit@0 @115 NONAME PRIVATE + DwmpGetAssessment@0 @118 NONAME PRIVATE + DwmpGetAssessmentUsage@0 @119 NONAME PRIVATE + DwmpSetAssessmentUsage@0 @120 NONAME PRIVATE + DwmpIsSessionDWM@0 @121 NONAME PRIVATE + DwmpRegisterThumbnail@0 @124 NONAME PRIVATE + DwmpDxBindSwapChain@0 @125 PRIVATE + DwmpDxUnbindSwapChain@0 @126 PRIVATE + DwmpGetColorizationParameters@4 @127 NONAME + DwmpDxgiIsThreadDesktopComposited@0 @128 PRIVATE + DwmpDxgiDisableRedirection@0 @129 NONAME PRIVATE + DwmpDxgiEnableRedirection@0 @130 NONAME PRIVATE + DwmpSetColorizationParameters@0 @131 NONAME PRIVATE + DwmpGetCompositionTimingInfoEx@0 @132 NONAME PRIVATE + DwmpDxUpdateWindowRedirectionBltSurface@0 @133 PRIVATE + DwmpDxSetContentHostingInformation@0 @134 NONAME PRIVATE + DwmpRenderFlick@0 @135 PRIVATE + DwmpAllocateSecurityDescriptor@0 @136 PRIVATE + DwmpFreeSecurityDescriptor@0 @137 PRIVATE + DwmpEnableDDASupport@0 @143 PRIVATE + DwmTetherTextContact@0 @156 PRIVATE + DwmAttachMilContent@4 @111 + DwmDefWindowProc@20 @116 + DwmDetachMilContent@4 @117 + DwmEnableBlurBehindWindow@8 @122 + DwmEnableMMCSS@4 @123 + DwmExtendFrameIntoClientArea@8 @149 + DwmFlush@0 @165 + DwmGetColorizationColor@8 @166 + DwmGetCompositionTimingInfo@8 @167 + DwmGetGraphicsStreamClient@8 @168 + DwmGetGraphicsStreamTransformHint@8 @169 + DwmGetTransportAttributes@12 @170 + DwmGetWindowAttribute@16 @171 + DwmInvalidateIconicBitmaps@4 @172 + DwmIsCompositionEnabled@4 @173 + DwmModifyPreviousDxFrameDuration@0 @174 PRIVATE + DwmQueryThumbnailSourceSize@0 @175 PRIVATE + DwmRegisterThumbnail@12 @176 + DwmSetDxFrameDuration@0 @177 PRIVATE + DwmSetIconicLivePreviewBitmap@16 @178 + DwmSetIconicThumbnail@12 @179 + DwmSetPresentParameters@8 @180 + DwmSetWindowAttribute@16 @181 + DwmUnregisterThumbnail@4 @182 + DwmUpdateThumbnailProperties@8 @183 diff --git a/lib/wine/libdwrite.def b/lib/wine/libdwrite.def new file mode 100644 index 0000000..716b0dd --- /dev/null +++ b/lib/wine/libdwrite.def @@ -0,0 +1,6 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/dwrite/dwrite.spec; do not edit! + +LIBRARY dwrite.dll + +EXPORTS + DWriteCreateFactory@12 @1 diff --git a/lib/wine/libdxerr8.a b/lib/wine/libdxerr8.a new file mode 100644 index 0000000..a5d45d7 Binary files /dev/null and b/lib/wine/libdxerr8.a differ diff --git a/lib/wine/libdxerr9.a b/lib/wine/libdxerr9.a new file mode 100644 index 0000000..171bee8 Binary files /dev/null and b/lib/wine/libdxerr9.a differ diff --git a/lib/wine/libdxgi.def b/lib/wine/libdxgi.def new file mode 100644 index 0000000..71bb8ad --- /dev/null +++ b/lib/wine/libdxgi.def @@ -0,0 +1,11 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/dxgi/dxgi.spec; do not edit! + +LIBRARY dxgi.dll + +EXPORTS + CreateDXGIFactory@8 @1 + CreateDXGIFactory1@8 @2 + CreateDXGIFactory2@12 @3 + DXGID3D10CreateDevice@28 @4 + DXGID3D10RegisterLayers@8 @5 + DXGIGetDebugInterface1@12 @6 diff --git a/lib/wine/libdxguid.a b/lib/wine/libdxguid.a new file mode 100644 index 0000000..86662d2 Binary files /dev/null and b/lib/wine/libdxguid.a differ diff --git a/lib/wine/libfaultrep.def b/lib/wine/libfaultrep.def new file mode 100644 index 0000000..71b0731 --- /dev/null +++ b/lib/wine/libfaultrep.def @@ -0,0 +1,19 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/faultrep/faultrep.spec; do not edit! + +LIBRARY faultrep.dll + +EXPORTS + AddERExcludedApplicationA@4 @1 + AddERExcludedApplicationW@4 @2 + CreateMinidumpA@0 @3 PRIVATE + CreateMinidumpW@0 @4 PRIVATE + ReportEREvent@0 @5 PRIVATE + ReportEREventDW@0 @6 PRIVATE + ReportFault@8 @7 + ReportFaultDWM@0 @8 PRIVATE + ReportFaultFromQueue@0 @9 PRIVATE + ReportFaultToQueue@0 @10 PRIVATE + ReportHang@0 @11 PRIVATE + ReportKernelFaultA@0 @12 PRIVATE + ReportKernelFaultDWW@0 @13 PRIVATE + ReportKernelFaultW@0 @14 PRIVATE diff --git a/lib/wine/libgdi32.def b/lib/wine/libgdi32.def new file mode 100644 index 0000000..f247398 --- /dev/null +++ b/lib/wine/libgdi32.def @@ -0,0 +1,457 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/gdi32/gdi32.spec; do not edit! + +LIBRARY gdi32.dll + +EXPORTS + AbortDoc@4 @105 + AbortPath@4 @106 + AddFontMemResourceEx@16 @107 + AddFontResourceA@4 @108 + AddFontResourceExA@12 @109 + AddFontResourceExW@12 @110 + AddFontResourceTracking@0 @111 PRIVATE + AddFontResourceW@4 @112 + AngleArc@24 @113 + AnimatePalette@16 @114 + Arc@36 @115 + ArcTo@36 @116 + BeginPath@4 @117 + BitBlt@36 @118 + ByeByeGDI@0 @119 PRIVATE + CancelDC@4 @120 + CheckColorsInGamut@0 @121 PRIVATE + ChoosePixelFormat@8 @122 + Chord@36 @123 + CloseEnhMetaFile@4 @124 + CloseFigure@4 @125 + CloseMetaFile@4 @126 + ColorCorrectPalette@0 @127 PRIVATE + ColorMatchToTarget@0 @128 PRIVATE + CombineRgn@16 @129 + CombineTransform@12 @130 + CopyEnhMetaFileA@8 @131 + CopyEnhMetaFileW@8 @132 + CopyMetaFileA@8 @133 + CopyMetaFileW@8 @134 + CreateBitmap@20 @135 + CreateBitmapIndirect@4 @136 + CreateBrushIndirect@4 @137 + CreateColorSpaceA@4 @138 + CreateColorSpaceW@4 @139 + CreateCompatibleBitmap@12 @140 + CreateCompatibleDC@4 @141 + CreateDCA@16 @142 + CreateDCW@16 @143 + CreateDIBPatternBrush@8 @144 + CreateDIBPatternBrushPt@8 @145 + CreateDIBSection@24 @146 + CreateDIBitmap@24 @147 + CreateDiscardableBitmap@12 @148 + CreateEllipticRgn@16 @149 + CreateEllipticRgnIndirect@4 @150 + CreateEnhMetaFileA@16 @151 + CreateEnhMetaFileW@16 @152 + CreateFontA@56 @153 + CreateFontIndirectA@4 @154 + CreateFontIndirectExA@4 @155 + CreateFontIndirectExW@4 @156 + CreateFontIndirectW@4 @157 + CreateFontW@56 @158 + CreateHalftonePalette@4 @159 + CreateHatchBrush@8 @160 + CreateICA@16 @161 + CreateICW@16 @162 + CreateMetaFileA@4 @163 + CreateMetaFileW@4 @164 + CreatePalette@4 @165 + CreatePatternBrush@4 @166 + CreatePen@12 @167 + CreatePenIndirect@4 @168 + CreatePolyPolygonRgn@16 @169 + CreatePolygonRgn@12 @170 + CreateRectRgn@16 @171 + CreateRectRgnIndirect@4 @172 + CreateRoundRectRgn@24 @173 + CreateScalableFontResourceA@16 @174 + CreateScalableFontResourceW@16 @175 + CreateSolidBrush@4 @176 + D3DKMTCloseAdapter@4 @177 + D3DKMTCreateDCFromMemory@4 @178 + D3DKMTDestroyDCFromMemory@4 @179 + D3DKMTEscape@4 @180 + D3DKMTOpenAdapterFromHdc@4 @181 + DPtoLP@12 @182 + DeleteColorSpace@4 @183 + DeleteDC@4 @184 + DeleteEnhMetaFile@4 @185 + DeleteMetaFile@4 @186 + DeleteObject@4 @187 + DescribePixelFormat@16 @188 + DeviceCapabilitiesEx@0 @189 PRIVATE + DeviceCapabilitiesExA@0 @190 PRIVATE + DeviceCapabilitiesExW@0 @191 PRIVATE + DrawEscape@16 @192 + Ellipse@20 @193 + EnableEUDC@4 @194 + EndDoc@4 @195 + EndPage@4 @196 + EndPath@4 @197 + EnumEnhMetaFile@20 @198 + EnumFontFamiliesA@16 @199 + EnumFontFamiliesExA@20 @200 + EnumFontFamiliesExW@20 @201 + EnumFontFamiliesW@16 @202 + EnumFontsA@16 @203 + EnumFontsW@16 @204 + EnumICMProfilesA@12 @205 + EnumICMProfilesW@12 @206 + EnumMetaFile@16 @207 + EnumObjects@16 @208 + EqualRgn@8 @209 + Escape@20 @210 + ExcludeClipRect@20 @211 + ExtCreatePen@20 @212 + ExtCreateRegion@12 @213 + ExtEscape@24 @214 + ExtFloodFill@20 @215 + ExtSelectClipRgn@12 @216 + ExtTextOutA@32 @217 + ExtTextOutW@32 @218 + FillPath@4 @219 + FillRgn@12 @220 + FixBrushOrgEx@16 @221 + FlattenPath@4 @222 + FloodFill@16 @223 + FontIsLinked@4 @224 + FrameRgn@20 @225 + FreeImageColorMatcher@0 @226 PRIVATE + GdiAlphaBlend@44 @227 + GdiAssociateObject@0 @228 PRIVATE + GdiCleanCacheDC@0 @229 PRIVATE + GdiComment@12 @230 + GdiConvertAndCheckDC@0 @231 PRIVATE + GdiConvertBitmap@0 @232 PRIVATE + GdiConvertBrush@0 @233 PRIVATE + GdiConvertDC@0 @234 PRIVATE + GdiConvertEnhMetaFile@0 @235 PRIVATE + GdiConvertFont@0 @236 PRIVATE + GdiConvertMetaFilePict@0 @237 PRIVATE + GdiConvertPalette@0 @238 PRIVATE + GdiConvertRegion@0 @239 PRIVATE + GdiConvertToDevmodeW@4 @240 + GdiCreateLocalBitmap@0 @241 PRIVATE + GdiCreateLocalBrush@0 @242 PRIVATE + GdiCreateLocalEnhMetaFile@0 @243 PRIVATE + GdiCreateLocalFont@0 @244 PRIVATE + GdiCreateLocalMetaFilePict@0 @245 PRIVATE + GdiCreateLocalPalette@0 @246 PRIVATE + GdiCreateLocalRegion@0 @247 PRIVATE + GdiDciBeginAccess@0 @248 PRIVATE + GdiDciCreateOffscreenSurface@0 @249 PRIVATE + GdiDciCreateOverlaySurface@0 @250 PRIVATE + GdiDciCreatePrimarySurface@0 @251 PRIVATE + GdiDciDestroySurface@0 @252 PRIVATE + GdiDciDrawSurface@0 @253 PRIVATE + GdiDciEndAccess@0 @254 PRIVATE + GdiDciEnumSurface@0 @255 PRIVATE + GdiDciInitialize@0 @256 PRIVATE + GdiDciSetClipList@0 @257 PRIVATE + GdiDciSetDestination@0 @258 PRIVATE + GdiDeleteLocalDC@0 @259 PRIVATE + GdiDeleteLocalObject@0 @260 PRIVATE + GdiDescribePixelFormat@16 @261 + GdiDllInitialize@0 @262 PRIVATE + GdiDrawStream@12 @263 + GdiEntry13@0 @264 + GdiFlush@0 @265 + GdiGetBatchLimit@0 @266 + GdiGetCharDimensions@12 @267 + GdiGetCodePage@4 @268 + GdiGetLocalBitmap@0 @269 PRIVATE + GdiGetLocalBrush@0 @270 PRIVATE + GdiGetLocalDC@0 @271 PRIVATE + GdiGetLocalFont@0 @272 PRIVATE + GdiGetSpoolMessage@16 @273 + GdiGradientFill@24 @274 + GdiInitSpool@0 @275 + GdiInitializeLanguagePack@4 @276 + GdiIsMetaFileDC@4 @277 + GdiIsMetaPrintDC@4 @278 + GdiIsPlayMetafileDC@4 @279 + GdiPlayDCScript@0 @280 PRIVATE + GdiPlayJournal@0 @281 PRIVATE + GdiPlayScript@0 @282 PRIVATE + GdiRealizationInfo@8 @283 + GdiReleaseLocalDC@0 @284 PRIVATE + GdiSetAttrs@0 @285 PRIVATE + GdiSetBatchLimit@4 @286 + GdiSetPixelFormat@12 @287 + GdiSetServerAttr@0 @288 PRIVATE + GdiSwapBuffers@4 @289 + GdiTransparentBlt@44 @290 + GdiWinWatchClose@0 @291 PRIVATE + GdiWinWatchDidStatusChange@0 @292 PRIVATE + GdiWinWatchGetClipList@0 @293 PRIVATE + GdiWinWatchOpen@0 @294 PRIVATE + GetArcDirection@4 @295 + GetAspectRatioFilterEx@8 @296 + GetBitmapBits@12 @297 + GetBitmapDimensionEx@8 @298 + GetBkColor@4 @299 + GetBkMode@4 @300 + GetBoundsRect@12 @301 + GetBrushOrgEx@8 @302 + GetCharABCWidthsA@16 @303 + GetCharABCWidthsFloatA@16 @304 + GetCharABCWidthsFloatW@16 @305 + GetCharABCWidthsI@20 @306 + GetCharABCWidthsW@16 @307 + GetCharWidth32A@16 @308 + GetCharWidth32W@16 @309 + GetCharWidthA@16=GetCharWidth32A @310 + GetCharWidthFloatA@16 @311 + GetCharWidthFloatW@16 @312 + GetCharWidthI@20 @313 + GetCharWidthInfo@8 @314 + GetCharWidthW@16=GetCharWidth32W @315 + GetCharWidthWOW@0 @316 PRIVATE + GetCharacterPlacementA@24 @317 + GetCharacterPlacementW@24 @318 + GetClipBox@8 @319 + GetClipRgn@8 @320 + GetColorAdjustment@8 @321 + GetColorSpace@4 @322 + GetCurrentObject@8 @323 + GetCurrentPositionEx@8 @324 + GetDCBrushColor@4 @325 + GetDCOrgEx@8 @326 + GetDCPenColor@4 @327 + GetDIBColorTable@16 @328 + GetDIBits@28 @329 + GetDeviceCaps@8 @330 + GetDeviceGammaRamp@8 @331 + GetETM@0 @332 PRIVATE + GetEnhMetaFileA@4 @333 + GetEnhMetaFileBits@12 @334 + GetEnhMetaFileDescriptionA@12 @335 + GetEnhMetaFileDescriptionW@12 @336 + GetEnhMetaFileHeader@12 @337 + GetEnhMetaFilePaletteEntries@12 @338 + GetEnhMetaFileW@4 @339 + GetFontData@20 @340 + GetFontFileData@24 @341 + GetFontFileInfo@20 @342 + GetFontLanguageInfo@4 @343 + GetFontRealizationInfo@8 @344 + GetFontResourceInfo@0 @345 PRIVATE + GetFontResourceInfoW@16 @346 + GetFontUnicodeRanges@8 @347 + GetGlyphIndicesA@20 @348 + GetGlyphIndicesW@20 @349 + GetGlyphOutline@28=GetGlyphOutlineA @350 + GetGlyphOutlineA@28 @351 + GetGlyphOutlineW@28 @352 + GetGlyphOutlineWow@0 @353 PRIVATE + GetGraphicsMode@4 @354 + GetICMProfileA@12 @355 + GetICMProfileW@12 @356 + GetKerningPairs@12=GetKerningPairsA @357 + GetKerningPairsA@12 @358 + GetKerningPairsW@12 @359 + GetLayout@4 @360 + GetLogColorSpaceA@12 @361 + GetLogColorSpaceW@12 @362 + GetMapMode@4 @363 + GetMetaFileA@4 @364 + GetMetaFileBitsEx@12 @365 + GetMetaFileW@4 @366 + GetMetaRgn@8 @367 + GetMiterLimit@8 @368 + GetNearestColor@8 @369 + GetNearestPaletteIndex@8 @370 + GetObjectA@12 @371 + GetObjectType@4 @372 + GetObjectW@12 @373 + GetOutlineTextMetricsA@12 @374 + GetOutlineTextMetricsW@12 @375 + GetPaletteEntries@16 @376 + GetPath@16 @377 + GetPixel@12 @378 + GetPixelFormat@4 @379 + GetPolyFillMode@4 @380 + GetROP2@4 @381 + GetRandomRgn@12 @382 + GetRasterizerCaps@8 @383 + GetRegionData@12 @384 + GetRelAbs@8 @385 + GetRgnBox@8 @386 + GetStockObject@4 @387 + GetStretchBltMode@4 @388 + GetSystemPaletteEntries@16 @389 + GetSystemPaletteUse@4 @390 + GetTextAlign@4 @391 + GetTextCharacterExtra@4 @392 + GetTextCharset@4 @393 + GetTextCharsetInfo@12 @394 + GetTextColor@4 @395 + GetTextExtentExPointA@28 @396 + GetTextExtentExPointI@28 @397 + GetTextExtentExPointW@28 @398 + GetTextExtentPoint32A@16 @399 + GetTextExtentPoint32W@16 @400 + GetTextExtentPointA@16 @401 + GetTextExtentPointI@16 @402 + GetTextExtentPointW@16 @403 + GetTextFaceA@12 @404 + GetTextFaceW@12 @405 + GetTextMetricsA@8 @406 + GetTextMetricsW@8 @407 + GetTransform@12 @408 + GetViewportExtEx@8 @409 + GetViewportOrgEx@8 @410 + GetWinMetaFileBits@20 @411 + GetWindowExtEx@8 @412 + GetWindowOrgEx@8 @413 + GetWorldTransform@8 @414 + IntersectClipRect@20 @415 + InvertRgn@8 @416 + LPtoDP@12 @417 + LineDDA@24 @418 + LineTo@12 @419 + LoadImageColorMatcherA@0 @420 PRIVATE + LoadImageColorMatcherW@0 @421 PRIVATE + MaskBlt@48 @422 + MirrorRgn@8 @423 + ModifyWorldTransform@12 @424 + MoveToEx@16 @425 + NamedEscape@28 @426 + OffsetClipRgn@12 @427 + OffsetRgn@12 @428 + OffsetViewportOrgEx@16 @429 + OffsetWindowOrgEx@16 @430 + PaintRgn@8 @431 + PatBlt@24 @432 + PathToRegion@4 @433 + Pie@36 @434 + PlayEnhMetaFile@12 @435 + PlayEnhMetaFileRecord@16 @436 + PlayMetaFile@8 @437 + PlayMetaFileRecord@16 @438 + PlgBlt@40 @439 + PolyBezier@12 @440 + PolyBezierTo@12 @441 + PolyDraw@16 @442 + PolyPolygon@16 @443 + PolyPolyline@16 @444 + PolyTextOutA@12 @445 + PolyTextOutW@12 @446 + Polygon@12 @447 + Polyline@12 @448 + PolylineTo@12 @449 + PtInRegion@12 @450 + PtVisible@12 @451 + RealizePalette@4 @452 + RectInRegion@8 @453 + RectVisible@8 @454 + Rectangle@20 @455 + RemoveFontMemResourceEx@4 @456 + RemoveFontResourceA@4 @457 + RemoveFontResourceExA@12 @458 + RemoveFontResourceExW@12 @459 + RemoveFontResourceTracking@0 @460 PRIVATE + RemoveFontResourceW@4 @461 + ResetDCA@8 @462 + ResetDCW@8 @463 + ResizePalette@8 @464 + RestoreDC@8 @465 + RoundRect@28 @466 + SaveDC@4 @467 + ScaleViewportExtEx@24 @468 + ScaleWindowExtEx@24 @469 + SelectBrushLocal@0 @470 PRIVATE + SelectClipPath@8 @471 + SelectClipRgn@8 @472 + SelectFontLocal@0 @473 PRIVATE + SelectObject@8 @474 + SelectPalette@12 @475 + SetAbortProc@8 @476 + SetArcDirection@8 @477 + SetBitmapBits@12 @478 + SetBitmapDimensionEx@16 @479 + SetBkColor@8 @480 + SetBkMode@8 @481 + SetBoundsRect@12 @482 + SetBrushOrgEx@16 @483 + SetColorAdjustment@8 @484 + SetColorSpace@8 @485 + SetDCBrushColor@8 @486 + SetDCPenColor@8 @487 + SetDIBColorTable@16 @488 + SetDIBits@28 @489 + SetDIBitsToDevice@48 @490 + SetDeviceGammaRamp@8 @491 + SetEnhMetaFileBits@8 @492 + SetFontEnumeration@0 @493 PRIVATE + SetGraphicsMode@8 @494 + SetICMMode@8 @495 + SetICMProfileA@8 @496 + SetICMProfileW@8 @497 + SetLayout@8 @498 + SetMagicColors@12 @499 + SetMapMode@8 @500 + SetMapperFlags@8 @501 + SetMetaFileBitsEx@8 @502 + SetMetaRgn@4 @503 + SetMiterLimit@12 @504 + SetObjectOwner@8 @505 + SetPaletteEntries@16 @506 + SetPixel@16 @507 + SetPixelFormat@12 @508 + SetPixelV@16 @509 + SetPolyFillMode@8 @510 + SetROP2@8 @511 + SetRectRgn@20 @512 + SetRelAbs@8 @513 + SetStretchBltMode@8 @514 + SetSystemPaletteUse@8 @515 + SetTextAlign@8 @516 + SetTextCharacterExtra@8 @517 + SetTextColor@8 @518 + SetTextJustification@12 @519 + SetViewportExtEx@16 @520 + SetViewportOrgEx@16 @521 + SetVirtualResolution@20 @522 + SetWinMetaFileBits@16 @523 + SetWindowExtEx@16 @524 + SetWindowOrgEx@16 @525 + SetWorldTransform@8 @526 + StartDocA@8 @527 + StartDocW@8 @528 + StartPage@4 @529 + StretchBlt@44 @530 + StretchDIBits@52 @531 + StrokeAndFillPath@4 @532 + StrokePath@4 @533 + SwapBuffers@4 @534 + TextOutA@20 @535 + TextOutW@20 @536 + TranslateCharsetInfo@12 @537 + UnloadNetworkFonts@0 @538 PRIVATE + UnrealizeObject@4 @539 + UpdateColors@4 @540 + UpdateICMRegKey@16=UpdateICMRegKeyA @541 + UpdateICMRegKeyA@16 @542 + UpdateICMRegKeyW@16 @543 + WidenPath@4 @544 + gdiPlaySpoolStream@0 @545 PRIVATE + pfnRealizePalette @546 DATA + pfnSelectPalette @547 DATA + pstackConnect@0 @548 PRIVATE + GetDCHook@8 @549 + SetDCHook@12 @550 + SetHookFlags@8 @551 + __wine_make_gdi_object_system @552 + __wine_set_visible_region @553 + __wine_set_display_driver @554 + __wine_get_wgl_driver @555 + __wine_get_vulkan_driver @556 diff --git a/lib/wine/libgdiplus.def b/lib/wine/libgdiplus.def new file mode 100644 index 0000000..0cab7f0 --- /dev/null +++ b/lib/wine/libgdiplus.def @@ -0,0 +1,635 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/gdiplus/gdiplus.spec; do not edit! + +LIBRARY gdiplus.dll + +EXPORTS + GdipAddPathArc@28 @1 + GdipAddPathArcI@28 @2 + GdipAddPathBezier@36 @3 + GdipAddPathBezierI@36 @4 + GdipAddPathBeziers@12 @5 + GdipAddPathBeziersI@12 @6 + GdipAddPathClosedCurve2@16 @7 + GdipAddPathClosedCurve2I@16 @8 + GdipAddPathClosedCurve@12 @9 + GdipAddPathClosedCurveI@12 @10 + GdipAddPathCurve2@16 @11 + GdipAddPathCurve2I@16 @12 + GdipAddPathCurve3@24 @13 + GdipAddPathCurve3I@24 @14 + GdipAddPathCurve@12 @15 + GdipAddPathCurveI@12 @16 + GdipAddPathEllipse@20 @17 + GdipAddPathEllipseI@20 @18 + GdipAddPathLine2@12 @19 + GdipAddPathLine2I@12 @20 + GdipAddPathLine@20 @21 + GdipAddPathLineI@20 @22 + GdipAddPathPath@12 @23 + GdipAddPathPie@28 @24 + GdipAddPathPieI@28 @25 + GdipAddPathPolygon@12 @26 + GdipAddPathPolygonI@12 @27 + GdipAddPathRectangle@20 @28 + GdipAddPathRectangleI@20 @29 + GdipAddPathRectangles@12 @30 + GdipAddPathRectanglesI@12 @31 + GdipAddPathString@32 @32 + GdipAddPathStringI@32 @33 + GdipAlloc@4 @34 + GdipBeginContainer2@8 @35 + GdipBeginContainer@20 @36 + GdipBeginContainerI@20 @37 + GdipBitmapGetPixel@16 @38 + GdipBitmapLockBits@20 @39 + GdipBitmapSetPixel@16 @40 + GdipBitmapSetResolution@12 @41 + GdipBitmapUnlockBits@8 @42 + GdipClearPathMarkers@4 @43 + GdipCloneBitmapArea@28 @44 + GdipCloneBitmapAreaI@28 @45 + GdipCloneBrush@8 @46 + GdipCloneCustomLineCap@8 @47 + GdipCloneFont@8 @48 + GdipCloneFontFamily@8 @49 + GdipCloneImage@8 @50 + GdipCloneImageAttributes@8 @51 + GdipCloneMatrix@8 @52 + GdipClonePath@8 @53 + GdipClonePen@8 @54 + GdipCloneRegion@8 @55 + GdipCloneStringFormat@8 @56 + GdipClosePathFigure@4 @57 + GdipClosePathFigures@4 @58 + GdipCombineRegionPath@12 @59 + GdipCombineRegionRect@12 @60 + GdipCombineRegionRectI@12 @61 + GdipCombineRegionRegion@12 @62 + GdipComment@12 @63 + GdipCreateAdjustableArrowCap@16 @64 + GdipCreateBitmapFromDirectDrawSurface@0 @65 PRIVATE + GdipCreateBitmapFromFile@8 @66 + GdipCreateBitmapFromFileICM@8 @67 + GdipCreateBitmapFromGdiDib@12 @68 + GdipCreateBitmapFromGraphics@16 @69 + GdipCreateBitmapFromHBITMAP@12 @70 + GdipCreateBitmapFromHICON@8 @71 + GdipCreateBitmapFromResource@12 @72 + GdipCreateBitmapFromScan0@24 @73 + GdipCreateBitmapFromStream@8 @74 + GdipCreateBitmapFromStreamICM@8 @75 + GdipCreateCachedBitmap@12 @76 + GdipCreateCustomLineCap@20 @77 + GdipCreateFont@20 @78 + GdipCreateFontFamilyFromName@12 @79 + GdipCreateFontFromDC@8 @80 + GdipCreateFontFromLogfontA@12 @81 + GdipCreateFontFromLogfontW@12 @82 + GdipCreateFromHDC2@12 @83 + GdipCreateFromHDC@8 @84 + GdipCreateFromHWND@8 @85 + GdipCreateFromHWNDICM@8 @86 + GdipCreateHBITMAPFromBitmap@12 @87 + GdipCreateHICONFromBitmap@8 @88 + GdipCreateHalftonePalette@0 @89 + GdipCreateHatchBrush@16 @90 + GdipCreateImageAttributes@4 @91 + GdipCreateLineBrush@24 @92 + GdipCreateLineBrushFromRect@24 @93 + GdipCreateLineBrushFromRectI@24 @94 + GdipCreateLineBrushFromRectWithAngle@28 @95 + GdipCreateLineBrushFromRectWithAngleI@28 @96 + GdipCreateLineBrushI@24 @97 + GdipCreateMatrix2@28 @98 + GdipCreateMatrix3@12 @99 + GdipCreateMatrix3I@12 @100 + GdipCreateMatrix@4 @101 + GdipCreateMetafileFromEmf@12 @102 + GdipCreateMetafileFromFile@8 @103 + GdipCreateMetafileFromStream@8 @104 + GdipCreateMetafileFromWmf@16 @105 + GdipCreateMetafileFromWmfFile@12 @106 + GdipCreatePath2@20 @107 + GdipCreatePath2I@20 @108 + GdipCreatePath@8 @109 + GdipCreatePathGradient@16 @110 + GdipCreatePathGradientFromPath@8 @111 + GdipCreatePathGradientI@16 @112 + GdipCreatePathIter@8 @113 + GdipCreatePen1@16 @114 + GdipCreatePen2@16 @115 + GdipCreateRegion@4 @116 + GdipCreateRegionHrgn@8 @117 + GdipCreateRegionPath@8 @118 + GdipCreateRegionRect@8 @119 + GdipCreateRegionRectI@8 @120 + GdipCreateRegionRgnData@12 @121 + GdipCreateSolidFill@8 @122 + GdipCreateStreamOnFile@12 @123 + GdipCreateStringFormat@12 @124 + GdipCreateTexture2@28 @125 + GdipCreateTexture2I@28 @126 + GdipCreateTexture@12 @127 + GdipCreateTextureIA@28 @128 + GdipCreateTextureIAI@28 @129 + GdipDeleteBrush@4 @130 + GdipDeleteCachedBitmap@4 @131 + GdipDeleteCustomLineCap@4 @132 + GdipDeleteFont@4 @133 + GdipDeleteFontFamily@4 @134 + GdipDeleteGraphics@4 @135 + GdipDeleteMatrix@4 @136 + GdipDeletePath@4 @137 + GdipDeletePathIter@4 @138 + GdipDeletePen@4 @139 + GdipDeletePrivateFontCollection@4 @140 + GdipDeleteRegion@4 @141 + GdipDeleteStringFormat@4 @142 + GdipDisposeImage@4 @143 + GdipDisposeImageAttributes@4 @144 + GdipDrawArc@32 @145 + GdipDrawArcI@32 @146 + GdipDrawBezier@40 @147 + GdipDrawBezierI@40 @148 + GdipDrawBeziers@16 @149 + GdipDrawBeziersI@16 @150 + GdipDrawCachedBitmap@16 @151 + GdipDrawClosedCurve2@20 @152 + GdipDrawClosedCurve2I@20 @153 + GdipDrawClosedCurve@16 @154 + GdipDrawClosedCurveI@16 @155 + GdipDrawCurve2@20 @156 + GdipDrawCurve2I@20 @157 + GdipDrawCurve3@28 @158 + GdipDrawCurve3I@28 @159 + GdipDrawCurve@16 @160 + GdipDrawCurveI@16 @161 + GdipDrawDriverString@32 @162 + GdipDrawEllipse@24 @163 + GdipDrawEllipseI@24 @164 + GdipDrawImage@16 @165 + GdipDrawImageI@16 @166 + GdipDrawImagePointRect@36 @167 + GdipDrawImagePointRectI@36 @168 + GdipDrawImagePoints@16 @169 + GdipDrawImagePointsI@16 @170 + GdipDrawImagePointsRect@48 @171 + GdipDrawImagePointsRectI@48 @172 + GdipDrawImageRect@24 @173 + GdipDrawImageRectI@24 @174 + GdipDrawImageRectRect@56 @175 + GdipDrawImageRectRectI@56 @176 + GdipDrawLine@24 @177 + GdipDrawLineI@24 @178 + GdipDrawLines@16 @179 + GdipDrawLinesI@16 @180 + GdipDrawPath@12 @181 + GdipDrawPie@32 @182 + GdipDrawPieI@32 @183 + GdipDrawPolygon@16 @184 + GdipDrawPolygonI@16 @185 + GdipDrawRectangle@24 @186 + GdipDrawRectangleI@24 @187 + GdipDrawRectangles@16 @188 + GdipDrawRectanglesI@16 @189 + GdipDrawString@28 @190 + GdipEmfToWmfBits@20 @191 + GdipEndContainer@8 @192 + GdipEnumerateMetafileDestPoint@24 @193 + GdipEnumerateMetafileDestPointI@24 @194 + GdipEnumerateMetafileDestPoints@0 @195 PRIVATE + GdipEnumerateMetafileDestPointsI@0 @196 PRIVATE + GdipEnumerateMetafileDestRect@24 @197 + GdipEnumerateMetafileDestRectI@24 @198 + GdipEnumerateMetafileSrcRectDestPoint@0 @199 PRIVATE + GdipEnumerateMetafileSrcRectDestPointI@0 @200 PRIVATE + GdipEnumerateMetafileSrcRectDestPoints@36 @201 + GdipEnumerateMetafileSrcRectDestPointsI@0 @202 PRIVATE + GdipEnumerateMetafileSrcRectDestRect@0 @203 PRIVATE + GdipEnumerateMetafileSrcRectDestRectI@0 @204 PRIVATE + GdipFillClosedCurve2@24 @205 + GdipFillClosedCurve2I@24 @206 + GdipFillClosedCurve@16 @207 + GdipFillClosedCurveI@16 @208 + GdipFillEllipse@24 @209 + GdipFillEllipseI@24 @210 + GdipFillPath@12 @211 + GdipFillPie@32 @212 + GdipFillPieI@32 @213 + GdipFillPolygon2@16 @214 + GdipFillPolygon2I@16 @215 + GdipFillPolygon@20 @216 + GdipFillPolygonI@20 @217 + GdipFillRectangle@24 @218 + GdipFillRectangleI@24 @219 + GdipFillRectangles@16 @220 + GdipFillRectanglesI@16 @221 + GdipFillRegion@12 @222 + GdipFlattenPath@12 @223 + GdipFlush@8 @224 + GdipFree@4 @225 + GdipGetAdjustableArrowCapFillState@8 @226 + GdipGetAdjustableArrowCapHeight@8 @227 + GdipGetAdjustableArrowCapMiddleInset@8 @228 + GdipGetAdjustableArrowCapWidth@8 @229 + GdipGetAllPropertyItems@16 @230 + GdipGetBrushType@8 @231 + GdipGetCellAscent@12 @232 + GdipGetCellDescent@12 @233 + GdipGetClip@8 @234 + GdipGetClipBounds@8 @235 + GdipGetClipBoundsI@8 @236 + GdipGetCompositingMode@8 @237 + GdipGetCompositingQuality@8 @238 + GdipGetCustomLineCapBaseCap@8 @239 + GdipGetCustomLineCapBaseInset@8 @240 + GdipGetCustomLineCapStrokeCaps@0 @241 PRIVATE + GdipGetCustomLineCapStrokeJoin@8 @242 + GdipGetCustomLineCapType@8 @243 + GdipGetCustomLineCapWidthScale@8 @244 + GdipGetDC@8 @245 + GdipGetDpiX@8 @246 + GdipGetDpiY@8 @247 + GdipGetEmHeight@12 @248 + GdipGetEncoderParameterList@0 @249 PRIVATE + GdipGetEncoderParameterListSize@12 @250 + GdipGetFamily@8 @251 + GdipGetFamilyName@12 @252 + GdipGetFontCollectionFamilyCount@8 @253 + GdipGetFontCollectionFamilyList@16 @254 + GdipGetFontHeight@12 @255 + GdipGetFontHeightGivenDPI@12 @256 + GdipGetFontSize@8 @257 + GdipGetFontStyle@8 @258 + GdipGetFontUnit@8 @259 + GdipGetGenericFontFamilyMonospace@4 @260 + GdipGetGenericFontFamilySansSerif@4 @261 + GdipGetGenericFontFamilySerif@4 @262 + GdipGetHatchBackgroundColor@8 @263 + GdipGetHatchForegroundColor@8 @264 + GdipGetHatchStyle@8 @265 + GdipGetHemfFromMetafile@8 @266 + GdipGetImageAttributesAdjustedPalette@12 @267 + GdipGetImageBounds@12 @268 + GdipGetImageDecoders@12 @269 + GdipGetImageDecodersSize@8 @270 + GdipGetImageDimension@12 @271 + GdipGetImageEncoders@12 @272 + GdipGetImageEncodersSize@8 @273 + GdipGetImageFlags@8 @274 + GdipGetImageGraphicsContext@8 @275 + GdipGetImageHeight@8 @276 + GdipGetImageHorizontalResolution@8 @277 + GdipGetImagePalette@12 @278 + GdipGetImagePaletteSize@8 @279 + GdipGetImagePixelFormat@8 @280 + GdipGetImageRawFormat@8 @281 + GdipGetImageThumbnail@24 @282 + GdipGetImageType@8 @283 + GdipGetImageVerticalResolution@8 @284 + GdipGetImageWidth@8 @285 + GdipGetInterpolationMode@8 @286 + GdipGetLineBlend@16 @287 + GdipGetLineBlendCount@8 @288 + GdipGetLineColors@8 @289 + GdipGetLineGammaCorrection@8 @290 + GdipGetLinePresetBlend@16 @291 + GdipGetLinePresetBlendCount@8 @292 + GdipGetLineRect@8 @293 + GdipGetLineRectI@8 @294 + GdipGetLineSpacing@12 @295 + GdipGetLineTransform@8 @296 + GdipGetLineWrapMode@8 @297 + GdipGetLogFontA@12 @298 + GdipGetLogFontW@12 @299 + GdipGetMatrixElements@8 @300 + GdipGetMetafileDownLevelRasterizationLimit@0 @301 PRIVATE + GdipGetMetafileHeaderFromEmf@8 @302 + GdipGetMetafileHeaderFromFile@8 @303 + GdipGetMetafileHeaderFromMetafile@8 @304 + GdipGetMetafileHeaderFromStream@8 @305 + GdipGetMetafileHeaderFromWmf@12 @306 + GdipGetNearestColor@8 @307 + GdipGetPageScale@8 @308 + GdipGetPageUnit@8 @309 + GdipGetPathData@8 @310 + GdipGetPathFillMode@8 @311 + GdipGetPathGradientBlend@16 @312 + GdipGetPathGradientBlendCount@8 @313 + GdipGetPathGradientCenterColor@8 @314 + GdipGetPathGradientCenterPoint@8 @315 + GdipGetPathGradientCenterPointI@8 @316 + GdipGetPathGradientFocusScales@12 @317 + GdipGetPathGradientGammaCorrection@8 @318 + GdipGetPathGradientPath@8 @319 + GdipGetPathGradientPointCount@8 @320 + GdipGetPathGradientPresetBlend@16 @321 + GdipGetPathGradientPresetBlendCount@8 @322 + GdipGetPathGradientRect@8 @323 + GdipGetPathGradientRectI@8 @324 + GdipGetPathGradientSurroundColorCount@8 @325 + GdipGetPathGradientSurroundColorsWithCount@12 @326 + GdipGetPathGradientTransform@8 @327 + GdipGetPathGradientWrapMode@8 @328 + GdipGetPathLastPoint@8 @329 + GdipGetPathPoints@12 @330 + GdipGetPathPointsI@12 @331 + GdipGetPathTypes@12 @332 + GdipGetPathWorldBounds@16 @333 + GdipGetPathWorldBoundsI@16 @334 + GdipGetPenBrushFill@8 @335 + GdipGetPenColor@8 @336 + GdipGetPenCompoundArray@0 @337 PRIVATE + GdipGetPenCompoundCount@8 @338 + GdipGetPenCustomEndCap@8 @339 + GdipGetPenCustomStartCap@8 @340 + GdipGetPenDashArray@12 @341 + GdipGetPenDashCap197819@8 @342 + GdipGetPenDashCount@8 @343 + GdipGetPenDashOffset@8 @344 + GdipGetPenDashStyle@8 @345 + GdipGetPenEndCap@8 @346 + GdipGetPenFillType@8 @347 + GdipGetPenLineJoin@8 @348 + GdipGetPenMiterLimit@8 @349 + GdipGetPenMode@8 @350 + GdipGetPenStartCap@8 @351 + GdipGetPenTransform@8 @352 + GdipGetPenUnit@8 @353 + GdipGetPenWidth@8 @354 + GdipGetPixelOffsetMode@8 @355 + GdipGetPointCount@8 @356 + GdipGetPropertyCount@8 @357 + GdipGetPropertyIdList@12 @358 + GdipGetPropertyItem@16 @359 + GdipGetPropertyItemSize@12 @360 + GdipGetPropertySize@12 @361 + GdipGetRegionBounds@12 @362 + GdipGetRegionBoundsI@12 @363 + GdipGetRegionData@16 @364 + GdipGetRegionDataSize@8 @365 + GdipGetRegionHRgn@12 @366 + GdipGetRegionScans@16 @367 + GdipGetRegionScansCount@12 @368 + GdipGetRegionScansI@16 @369 + GdipGetRenderingOrigin@12 @370 + GdipGetSmoothingMode@8 @371 + GdipGetSolidFillColor@8 @372 + GdipGetStringFormatAlign@8 @373 + GdipGetStringFormatDigitSubstitution@12 @374 + GdipGetStringFormatFlags@8 @375 + GdipGetStringFormatHotkeyPrefix@8 @376 + GdipGetStringFormatLineAlign@8 @377 + GdipGetStringFormatMeasurableCharacterRangeCount@8 @378 + GdipGetStringFormatTabStopCount@8 @379 + GdipGetStringFormatTabStops@16 @380 + GdipGetStringFormatTrimming@8 @381 + GdipGetTextContrast@8 @382 + GdipGetTextRenderingHint@8 @383 + GdipGetTextureImage@8 @384 + GdipGetTextureTransform@8 @385 + GdipGetTextureWrapMode@8 @386 + GdipGetVisibleClipBounds@8 @387 + GdipGetVisibleClipBoundsI@8 @388 + GdipGetWorldTransform@8 @389 + GdipGraphicsClear@8 @390 + GdipImageForceValidation@4 @391 + GdipImageGetFrameCount@12 @392 + GdipImageGetFrameDimensionsCount@8 @393 + GdipImageGetFrameDimensionsList@12 @394 + GdipImageRotateFlip@8 @395 + GdipImageSelectActiveFrame@12 @396 + GdipInvertMatrix@4 @397 + GdipIsClipEmpty@8 @398 + GdipIsEmptyRegion@12 @399 + GdipIsEqualRegion@16 @400 + GdipIsInfiniteRegion@12 @401 + GdipIsMatrixEqual@12 @402 + GdipIsMatrixIdentity@8 @403 + GdipIsMatrixInvertible@8 @404 + GdipIsOutlineVisiblePathPoint@24 @405 + GdipIsOutlineVisiblePathPointI@24 @406 + GdipIsStyleAvailable@12 @407 + GdipIsVisibleClipEmpty@8 @408 + GdipIsVisiblePathPoint@20 @409 + GdipIsVisiblePathPointI@20 @410 + GdipIsVisiblePoint@16 @411 + GdipIsVisiblePointI@16 @412 + GdipIsVisibleRect@24 @413 + GdipIsVisibleRectI@24 @414 + GdipIsVisibleRegionPoint@20 @415 + GdipIsVisibleRegionPointI@20 @416 + GdipIsVisibleRegionRect@28 @417 + GdipIsVisibleRegionRectI@28 @418 + GdipLoadImageFromFile@8 @419 + GdipLoadImageFromFileICM@8 @420 + GdipLoadImageFromStream@8 @421 + GdipLoadImageFromStreamICM@8 @422 + GdipMeasureCharacterRanges@32 @423 + GdipMeasureDriverString@32 @424 + GdipMeasureString@36 @425 + GdipMultiplyLineTransform@12 @426 + GdipMultiplyMatrix@12 @427 + GdipMultiplyPathGradientTransform@12 @428 + GdipMultiplyPenTransform@12 @429 + GdipMultiplyTextureTransform@12 @430 + GdipMultiplyWorldTransform@12 @431 + GdipNewInstalledFontCollection@4 @432 + GdipNewPrivateFontCollection@4 @433 + GdipPathIterCopyData@24 @434 + GdipPathIterEnumerate@20 @435 + GdipPathIterGetCount@8 @436 + GdipPathIterGetSubpathCount@8 @437 + GdipPathIterHasCurve@8 @438 + GdipPathIterIsValid@8 @439 + GdipPathIterNextMarker@16 @440 + GdipPathIterNextMarkerPath@12 @441 + GdipPathIterNextPathType@20 @442 + GdipPathIterNextSubpath@20 @443 + GdipPathIterNextSubpathPath@16 @444 + GdipPathIterRewind@4 @445 + GdipPlayMetafileRecord@20 @446 + GdipPrivateAddFontFile@8 @447 + GdipPrivateAddMemoryFont@12 @448 + GdipRecordMetafile@24 @449 + GdipRecordMetafileFileName@28 @450 + GdipRecordMetafileFileNameI@28 @451 + GdipRecordMetafileI@24 @452 + GdipRecordMetafileStream@28 @453 + GdipRecordMetafileStreamI@0 @454 PRIVATE + GdipReleaseDC@8 @455 + GdipRemovePropertyItem@8 @456 + GdipResetClip@4 @457 + GdipResetImageAttributes@8 @458 + GdipResetLineTransform@4 @459 + GdipResetPageTransform@4 @460 + GdipResetPath@4 @461 + GdipResetPathGradientTransform@4 @462 + GdipResetPenTransform@4 @463 + GdipResetTextureTransform@4 @464 + GdipResetWorldTransform@4 @465 + GdipRestoreGraphics@8 @466 + GdipReversePath@4 @467 + GdipRotateLineTransform@12 @468 + GdipRotateMatrix@12 @469 + GdipRotatePathGradientTransform@12 @470 + GdipRotatePenTransform@12 @471 + GdipRotateTextureTransform@12 @472 + GdipRotateWorldTransform@12 @473 + GdipSaveAdd@8 @474 + GdipSaveAddImage@0 @475 PRIVATE + GdipSaveGraphics@8 @476 + GdipSaveImageToFile@16 @477 + GdipSaveImageToStream@16 @478 + GdipScaleLineTransform@16 @479 + GdipScaleMatrix@16 @480 + GdipScalePathGradientTransform@16 @481 + GdipScalePenTransform@16 @482 + GdipScaleTextureTransform@16 @483 + GdipScaleWorldTransform@16 @484 + GdipSetAdjustableArrowCapFillState@8 @485 + GdipSetAdjustableArrowCapHeight@8 @486 + GdipSetAdjustableArrowCapMiddleInset@8 @487 + GdipSetAdjustableArrowCapWidth@8 @488 + GdipSetClipGraphics@12 @489 + GdipSetClipHrgn@12 @490 + GdipSetClipPath@12 @491 + GdipSetClipRect@24 @492 + GdipSetClipRectI@24 @493 + GdipSetClipRegion@12 @494 + GdipSetCompositingMode@8 @495 + GdipSetCompositingQuality@8 @496 + GdipSetCustomLineCapBaseCap@8 @497 + GdipSetCustomLineCapBaseInset@8 @498 + GdipSetCustomLineCapStrokeCaps@12 @499 + GdipSetCustomLineCapStrokeJoin@8 @500 + GdipSetCustomLineCapWidthScale@8 @501 + GdipSetEmpty@4 @502 + GdipSetImageAttributesCachedBackground@8 @503 + GdipSetImageAttributesColorKeys@20 @504 + GdipSetImageAttributesColorMatrix@24 @505 + GdipSetImageAttributesGamma@16 @506 + GdipSetImageAttributesNoOp@12 @507 + GdipSetImageAttributesOutputChannel@16 @508 + GdipSetImageAttributesOutputChannelColorProfile@16 @509 + GdipSetImageAttributesRemapTable@20 @510 + GdipSetImageAttributesThreshold@16 @511 + GdipSetImageAttributesToIdentity@8 @512 + GdipSetImageAttributesWrapMode@16 @513 + GdipSetImagePalette@8 @514 + GdipSetInfinite@4 @515 + GdipSetInterpolationMode@8 @516 + GdipSetLineBlend@16 @517 + GdipSetLineColors@12 @518 + GdipSetLineGammaCorrection@8 @519 + GdipSetLineLinearBlend@12 @520 + GdipSetLinePresetBlend@16 @521 + GdipSetLineSigmaBlend@12 @522 + GdipSetLineTransform@8 @523 + GdipSetLineWrapMode@8 @524 + GdipSetMatrixElements@28 @525 + GdipSetMetafileDownLevelRasterizationLimit@8 @526 + GdipSetPageScale@8 @527 + GdipSetPageUnit@8 @528 + GdipSetPathFillMode@8 @529 + GdipSetPathGradientBlend@16 @530 + GdipSetPathGradientCenterColor@8 @531 + GdipSetPathGradientCenterPoint@8 @532 + GdipSetPathGradientCenterPointI@8 @533 + GdipSetPathGradientFocusScales@12 @534 + GdipSetPathGradientGammaCorrection@8 @535 + GdipSetPathGradientLinearBlend@12 @536 + GdipSetPathGradientPath@8 @537 + GdipSetPathGradientPresetBlend@16 @538 + GdipSetPathGradientSigmaBlend@12 @539 + GdipSetPathGradientSurroundColorsWithCount@12 @540 + GdipSetPathGradientTransform@8 @541 + GdipSetPathGradientWrapMode@8 @542 + GdipSetPathMarker@4 @543 + GdipSetPenBrushFill@8 @544 + GdipSetPenColor@8 @545 + GdipSetPenCompoundArray@12 @546 + GdipSetPenCustomEndCap@8 @547 + GdipSetPenCustomStartCap@8 @548 + GdipSetPenDashArray@12 @549 + GdipSetPenDashCap197819@8 @550 + GdipSetPenDashOffset@8 @551 + GdipSetPenDashStyle@8 @552 + GdipSetPenEndCap@8 @553 + GdipSetPenLineCap197819@16 @554 + GdipSetPenLineJoin@8 @555 + GdipSetPenMiterLimit@8 @556 + GdipSetPenMode@8 @557 + GdipSetPenStartCap@8 @558 + GdipSetPenTransform@8 @559 + GdipSetPenUnit@0 @560 PRIVATE + GdipSetPenWidth@8 @561 + GdipSetPixelOffsetMode@8 @562 + GdipSetPropertyItem@8 @563 + GdipSetRenderingOrigin@12 @564 + GdipSetSmoothingMode@8 @565 + GdipSetSolidFillColor@8 @566 + GdipSetStringFormatAlign@8 @567 + GdipSetStringFormatDigitSubstitution@12 @568 + GdipSetStringFormatFlags@8 @569 + GdipSetStringFormatHotkeyPrefix@8 @570 + GdipSetStringFormatLineAlign@8 @571 + GdipSetStringFormatMeasurableCharacterRanges@12 @572 + GdipSetStringFormatTabStops@16 @573 + GdipSetStringFormatTrimming@8 @574 + GdipSetTextContrast@8 @575 + GdipSetTextRenderingHint@8 @576 + GdipSetTextureTransform@8 @577 + GdipSetTextureWrapMode@8 @578 + GdipSetWorldTransform@8 @579 + GdipShearMatrix@16 @580 + GdipStartPathFigure@4 @581 + GdipStringFormatGetGenericDefault@4 @582 + GdipStringFormatGetGenericTypographic@4 @583 + GdipTestControl@8 @584 + GdipTransformMatrixPoints@12 @585 + GdipTransformMatrixPointsI@12 @586 + GdipTransformPath@8 @587 + GdipTransformPoints@20 @588 + GdipTransformPointsI@20 @589 + GdipTransformRegion@8 @590 + GdipTranslateClip@12 @591 + GdipTranslateClipI@12 @592 + GdipTranslateLineTransform@16 @593 + GdipTranslateMatrix@16 @594 + GdipTranslatePathGradientTransform@16 @595 + GdipTranslatePenTransform@16 @596 + GdipTranslateRegion@12 @597 + GdipTranslateRegionI@12 @598 + GdipTranslateTextureTransform@16 @599 + GdipTranslateWorldTransform@16 @600 + GdipVectorTransformMatrixPoints@12 @601 + GdipVectorTransformMatrixPointsI@12 @602 + GdipWarpPath@40 @603 + GdipWidenPath@16 @604 + GdipWindingModeOutline@12 @605 + GdiplusNotificationHook@4 @606 + GdiplusNotificationUnhook@4 @607 + GdiplusShutdown@4=GdiplusShutdown_wrapper @608 + GdiplusStartup@12 @609 + GdipFindFirstImageItem@8 @610 + GdipFindNextImageItem@0 @611 PRIVATE + GdipGetImageItemData@8 @612 + GdipCreateEffect@20 @613 + GdipDeleteEffect@4 @614 + GdipGetEffectParameterSize@0 @615 PRIVATE + GdipGetEffectParameters@0 @616 PRIVATE + GdipSetEffectParameters@12 @617 + GdipInitializePalette@20 @618 + GdipBitmapCreateApplyEffect@36 @619 + GdipBitmapApplyEffect@24 @620 + GdipBitmapGetHistogram@28 @621 + GdipBitmapGetHistogramSize@8 @622 + GdipBitmapConvertFormat@24 @623 + GdipImageSetAbort@8 @624 + GdipGraphicsSetAbort@8 @625 + GdipDrawImageFX@0 @626 PRIVATE + GdipConvertToEmfPlus@24 @627 + GdipConvertToEmfPlusToFile@28 @628 + GdipConvertToEmfPlusToStream@0 @629 PRIVATE + GdipPlayTSClientRecord@0 @630 PRIVATE diff --git a/lib/wine/libglu32.def b/lib/wine/libglu32.def new file mode 100644 index 0000000..239657a --- /dev/null +++ b/lib/wine/libglu32.def @@ -0,0 +1,58 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/glu32/glu32.spec; do not edit! + +LIBRARY glu32.dll + +EXPORTS + gluBeginCurve@4=wine_gluBeginCurve @1 + gluBeginPolygon@4 @2 + gluBeginSurface@4=wine_gluBeginSurface @3 + gluBeginTrim@4=wine_gluBeginTrim @4 + gluBuild1DMipmaps@24 @5 + gluBuild2DMipmaps@28 @6 + gluCheckExtension@8=wine_gluCheckExtension @7 + gluCylinder@36 @8 + gluDeleteNurbsRenderer@4=wine_gluDeleteNurbsRenderer @9 + gluDeleteQuadric@4 @10 + gluDeleteTess@4 @11 + gluDisk@28 @12 + gluEndCurve@4=wine_gluEndCurve @13 + gluEndPolygon@4 @14 + gluEndSurface@4=wine_gluEndSurface @15 + gluEndTrim@4=wine_gluEndTrim @16 + gluErrorString@4=wine_gluErrorString @17 + gluErrorUnicodeStringEXT@4=wine_gluErrorUnicodeStringEXT @18 + gluGetNurbsProperty@12=wine_gluGetNurbsProperty @19 + gluGetString@4=wine_gluGetString @20 + gluGetTessProperty@12 @21 + gluLoadSamplingMatrices@16=wine_gluLoadSamplingMatrices @22 + gluLookAt@72 @23 + gluNewNurbsRenderer@0=wine_gluNewNurbsRenderer @24 + gluNewQuadric@0 @25 + gluNewTess@0 @26 + gluNextContour@8 @27 + gluNurbsCallback@12=wine_gluNurbsCallback @28 + gluNurbsCurve@28=wine_gluNurbsCurve @29 + gluNurbsProperty@12=wine_gluNurbsProperty @30 + gluNurbsSurface@44=wine_gluNurbsSurface @31 + gluOrtho2D@32 @32 + gluPartialDisk@44 @33 + gluPerspective@32 @34 + gluPickMatrix@36 @35 + gluProject@48 @36 + gluPwlCurve@20=wine_gluPwlCurve @37 + gluQuadricCallback@12 @38 + gluQuadricDrawStyle@8 @39 + gluQuadricNormals@8 @40 + gluQuadricOrientation@8 @41 + gluQuadricTexture@8 @42 + gluScaleImage@36 @43 + gluSphere@20 @44 + gluTessBeginContour@4 @45 + gluTessBeginPolygon@8 @46 + gluTessCallback@12 @47 + gluTessEndContour@4 @48 + gluTessEndPolygon@4 @49 + gluTessNormal@28 @50 + gluTessProperty@16 @51 + gluTessVertex@12 @52 + gluUnProject@48 @53 diff --git a/lib/wine/libhal.def b/lib/wine/libhal.def new file mode 100644 index 0000000..471793a --- /dev/null +++ b/lib/wine/libhal.def @@ -0,0 +1,97 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/hal/hal.spec; do not edit! + +LIBRARY hal.dll + +EXPORTS + ExAcquireFastMutex@4=__fastcall_ExAcquireFastMutex @1 + ExReleaseFastMutex@4=__fastcall_ExReleaseFastMutex @2 + ExTryToAcquireFastMutex@4=__fastcall_ExTryToAcquireFastMutex @3 + HalClearSoftwareInterrupt@0 @4 PRIVATE + HalRequestSoftwareInterrupt@0 @5 PRIVATE + HalSystemVectorDispatchEntry@0 @6 PRIVATE + KeAcquireInStackQueuedSpinLock@8=__fastcall_KeAcquireInStackQueuedSpinLock @7 + KeAcquireInStackQueuedSpinLockRaiseToSynch@0 @8 PRIVATE + KeAcquireQueuedSpinLock@0 @9 PRIVATE + KeAcquireQueuedSpinLockRaiseToSynch@0 @10 PRIVATE + KeAcquireSpinLockRaiseToSynch@0 @11 PRIVATE + KeReleaseInStackQueuedSpinLock@4=__fastcall_KeReleaseInStackQueuedSpinLock @12 + KeReleaseQueuedSpinLock@0 @13 PRIVATE + KeTryToAcquireQueuedSpinLock@0 @14 PRIVATE + KeTryToAcquireQueuedSpinLockRaiseToSynch@0 @15 PRIVATE + KfAcquireSpinLock@4=__fastcall_KfAcquireSpinLock @16 + KfLowerIrql@4=__fastcall_KfLowerIrql @17 + KfRaiseIrql@4=__fastcall_KfRaiseIrql @18 + KfReleaseSpinLock@8=__fastcall_KfReleaseSpinLock @19 + HalAcquireDisplayOwnership@0 @20 PRIVATE + HalAdjustResourceList@0 @21 PRIVATE + HalAllProcessorsStarted@0 @22 PRIVATE + HalAllocateAdapterChannel@0 @23 PRIVATE + HalAllocateCommonBuffer@0 @24 PRIVATE + HalAllocateCrashDumpRegisters@0 @25 PRIVATE + HalAssignSlotResources@0 @26 PRIVATE + HalBeginSystemInterrupt@0 @27 PRIVATE + HalCalibratePerformanceCounter@0 @28 PRIVATE + HalDisableSystemInterrupt@0 @29 PRIVATE + HalDisplayString@0 @30 PRIVATE + HalEnableSystemInterrupt@0 @31 PRIVATE + HalEndSystemInterrupt@0 @32 PRIVATE + HalFlushCommonBuffer@0 @33 PRIVATE + HalFreeCommonBuffer@0 @34 PRIVATE + HalGetAdapter@0 @35 PRIVATE + HalGetBusData@20 @36 + HalGetBusDataByOffset@24 @37 + HalGetEnvironmentVariable@0 @38 PRIVATE + HalGetInterruptVector@0 @39 PRIVATE + HalHandleNMI@0 @40 PRIVATE + HalInitSystem@0 @41 PRIVATE + HalInitializeProcessor@0 @42 PRIVATE + HalMakeBeep@0 @43 PRIVATE + HalProcessorIdle@0 @44 PRIVATE + HalQueryDisplayParameters@0 @45 PRIVATE + HalQueryRealTimeClock@0 @46 PRIVATE + HalReadDmaCounter@0 @47 PRIVATE + HalReportResourceUsage@0 @48 PRIVATE + HalRequestIpi@0 @49 PRIVATE + HalReturnToFirmware@0 @50 PRIVATE + HalSetBusData@0 @51 PRIVATE + HalSetBusDataByOffset@0 @52 PRIVATE + HalSetDisplayParameters@0 @53 PRIVATE + HalSetEnvironmentVariable@0 @54 PRIVATE + HalSetProfileInterval@0 @55 PRIVATE + HalSetRealTimeClock@0 @56 PRIVATE + HalSetTimeIncrement@0 @57 PRIVATE + HalStartNextProcessor@0 @58 PRIVATE + HalStartProfileInterrupt@0 @59 PRIVATE + HalStopProfileInterrupt@0 @60 PRIVATE + HalTranslateBusAddress@24 @61 + IoAssignDriveLetters@0 @62 PRIVATE + IoFlushAdapterBuffers@0 @63 PRIVATE + IoFreeAdapterChannel@0 @64 PRIVATE + IoFreeMapRegisters@0 @65 PRIVATE + IoMapTransfer@0 @66 PRIVATE + IoReadPartitionTable@0 @67 PRIVATE + IoSetPartitionInformation@0 @68 PRIVATE + IoWritePartitionTable@0 @69 PRIVATE + KdComPortInUse@0 @70 PRIVATE + KeAcquireSpinLock@8 @71 + KeFlushWriteBuffer@0 @72 PRIVATE + KeGetCurrentIrql@0 @73 + KeLowerIrql@0 @74 PRIVATE + KeQueryPerformanceCounter@4 @75 + KeRaiseIrql@0 @76 PRIVATE + KeRaiseIrqlToDpcLevel@0 @77 PRIVATE + KeRaiseIrqlToSynchLevel@0 @78 PRIVATE + KeReleaseSpinLock@8 @79 + KeStallExecutionProcessor@0 @80 PRIVATE + READ_PORT_BUFFER_UCHAR@0 @81 PRIVATE + READ_PORT_BUFFER_ULONG@0 @82 PRIVATE + READ_PORT_BUFFER_USHORT@0 @83 PRIVATE + READ_PORT_UCHAR@4 @84 + READ_PORT_ULONG@4 @85 + READ_PORT_USHORT@0 @86 PRIVATE + WRITE_PORT_BUFFER_UCHAR@0 @87 PRIVATE + WRITE_PORT_BUFFER_ULONG@0 @88 PRIVATE + WRITE_PORT_BUFFER_USHORT@0 @89 PRIVATE + WRITE_PORT_UCHAR@8 @90 + WRITE_PORT_ULONG@8 @91 + WRITE_PORT_USHORT@0 @92 PRIVATE diff --git a/lib/wine/libhid.def b/lib/wine/libhid.def new file mode 100644 index 0000000..ec0df15 --- /dev/null +++ b/lib/wine/libhid.def @@ -0,0 +1,49 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/hid/hid.spec; do not edit! + +LIBRARY hid.dll + +EXPORTS + HidD_FlushQueue@4 @1 + HidD_FreePreparsedData@4 @2 + HidD_GetAttributes@8 @3 + HidD_GetConfiguration@0 @4 PRIVATE + HidD_GetFeature@12 @5 + HidD_GetHidGuid@4 @6 + HidD_GetIndexedString@16 @7 + HidD_GetInputReport@12 @8 + HidD_GetManufacturerString@12 @9 + HidD_GetMsGenreDescriptor@0 @10 PRIVATE + HidD_GetNumInputBuffers@8 @11 + HidD_GetPhysicalDescriptor@0 @12 PRIVATE + HidD_GetPreparsedData@8 @13 + HidD_GetProductString@12 @14 + HidD_GetSerialNumberString@12 @15 + HidD_Hello@0 @16 PRIVATE + HidD_SetConfiguration@0 @17 PRIVATE + HidD_SetFeature@12 @18 + HidD_SetNumInputBuffers@8 @19 + HidD_SetOutputReport@12 @20 + HidP_GetButtonCaps@16 @21 + HidP_GetCaps@8 @22 + HidP_GetData@24 @23 + HidP_GetExtendedAttributes@0 @24 PRIVATE + HidP_GetLinkCollectionNodes@0 @25 PRIVATE + HidP_GetScaledUsageValue@32 @26 + HidP_GetSpecificButtonCaps@28 @27 + HidP_GetSpecificValueCaps@28 @28 + HidP_GetUsageValue@32 @29 + HidP_GetUsageValueArray@0 @30 PRIVATE + HidP_GetUsages@32 @31 + HidP_GetUsagesEx@28 @32 + HidP_GetValueCaps@16 @33 + HidP_InitializeReportForID@20 @34 + HidP_MaxDataListLength@8 @35 + HidP_MaxUsageListLength@12 @36 + HidP_SetData@0 @37 PRIVATE + HidP_SetScaledUsageValue@0 @38 PRIVATE + HidP_SetUsageValue@32 @39 + HidP_SetUsageValueArray@0 @40 PRIVATE + HidP_SetUsages@0 @41 PRIVATE + HidP_TranslateUsagesToI8042ScanCodes@24 @42 + HidP_UnsetUsages@0 @43 PRIVATE + HidP_UsageListDifference@0 @44 PRIVATE diff --git a/lib/wine/libhidclass.def b/lib/wine/libhidclass.def new file mode 100644 index 0000000..cfbd408 --- /dev/null +++ b/lib/wine/libhidclass.def @@ -0,0 +1,6 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/hidclass.sys/hidclass.sys.spec; do not edit! + +LIBRARY hidclass.sys + +EXPORTS + HidRegisterMinidriver@4 @1 diff --git a/lib/wine/libhlink.def b/lib/wine/libhlink.def new file mode 100644 index 0000000..38767bd --- /dev/null +++ b/lib/wine/libhlink.def @@ -0,0 +1,37 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/hlink/hlink.spec; do not edit! + +LIBRARY hlink.dll + +EXPORTS + HlinkCreateFromMoniker@32 @3 + HlinkCreateFromString@32 @4 + HlinkCreateFromData@24 @5 + HlinkCreateBrowseContext@12 @6 + HlinkClone@20 @7 + HlinkNavigateToStringReference@36 @8 + HlinkOnNavigate@28 @9 + HlinkNavigate@24 @10 + HlinkUpdateStackItem@24 @11 + HlinkOnRenameDocument@0 @12 PRIVATE + HlinkResolveMonikerForData@28 @14 + HlinkResolveStringForData@0 @15 PRIVATE + OleSaveToStreamEx@0 @16 PRIVATE + HlinkParseDisplayName@20 @18 + HlinkQueryCreateFromData@4 @20 + HlinkSetSpecialReference@0 @21 PRIVATE + HlinkGetSpecialReference@8 @22 + HlinkCreateShortcut@0 @23 PRIVATE + HlinkResolveShortcut@0 @24 PRIVATE + HlinkIsShortcut@4 @25 + HlinkResolveShortcutToString@0 @26 PRIVATE + HlinkCreateShortcutFromString@0 @27 PRIVATE + HlinkGetValueFromParams@0 @28 PRIVATE + HlinkCreateShortcutFromMoniker@0 @29 PRIVATE + HlinkResolveShortcutToMoniker@0 @30 PRIVATE + HlinkTranslateURL@12 @31 + HlinkCreateExtensionServices@28 @32 + HlinkPreprocessMoniker@0 @33 PRIVATE + DllCanUnloadNow@0 @13 PRIVATE + DllGetClassObject@12 @17 PRIVATE + DllRegisterServer@0 @19 PRIVATE + DllUnregisterServer@0 @34 PRIVATE diff --git a/lib/wine/libhtmlhelp.def b/lib/wine/libhtmlhelp.def new file mode 100644 index 0000000..7453ca4 --- /dev/null +++ b/lib/wine/libhtmlhelp.def @@ -0,0 +1,11 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/hhctrl.ocx/hhctrl.ocx.spec; do not edit! + +LIBRARY hhctrl.ocx + +EXPORTS + doWinMain@8 @13 + HtmlHelpA@16 @14 + HtmlHelpW@16 @15 + DllGetClassObject@12 @16 PRIVATE + DllRegisterServer@0 @17 PRIVATE + DllUnregisterServer@0 @18 PRIVATE diff --git a/lib/wine/libhttpapi.def b/lib/wine/libhttpapi.def new file mode 100644 index 0000000..369a0f6 --- /dev/null +++ b/lib/wine/libhttpapi.def @@ -0,0 +1,64 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/httpapi/httpapi.spec; do not edit! + +LIBRARY httpapi.dll + +EXPORTS + HttpAddFragmentToCache@0 @1 PRIVATE + HttpAddUrl@12 @2 + HttpAddUrlToConfigGroup@0 @3 PRIVATE + HttpAddUrlToUrlGroup@24 @4 + HttpCancelHttpRequest@0 @5 PRIVATE + HttpCreateAppPool@0 @6 PRIVATE + HttpCreateConfigGroup@0 @7 PRIVATE + HttpCreateFilter@0 @8 PRIVATE + HttpCreateHttpHandle@8 @9 + HttpCreateServerSession@12 @10 + HttpCreateRequestQueue@20 @11 + HttpCreateUrlGroup@16 @12 + HttpCloseUrlGroup@8 @13 + HttpCloseServerSession@8 @14 + HttpDeleteConfigGroup@0 @15 PRIVATE + HttpDeleteServiceConfiguration@20 @16 + HttpFilterAccept@0 @17 PRIVATE + HttpFilterAppRead@0 @18 PRIVATE + HttpFilterAppWrite@0 @19 PRIVATE + HttpFilterAppWriteAndRawRead@0 @20 PRIVATE + HttpFilterClose@0 @21 PRIVATE + HttpFilterRawRead@0 @22 PRIVATE + HttpFilterRawWrite@0 @23 PRIVATE + HttpFilterRawWriteAndAppRead@0 @24 PRIVATE + HttpFlushResponseCache@0 @25 PRIVATE + HttpGetCounters@0 @26 PRIVATE + HttpInitialize@12 @27 + HttpInitializeServerContext@0 @28 PRIVATE + HttpOpenAppPool@0 @29 PRIVATE + HttpOpenControlChannel@0 @30 PRIVATE + HttpOpenFilter@0 @31 PRIVATE + HttpQueryAppPoolInformation@0 @32 PRIVATE + HttpQueryConfigGroupInformation@0 @33 PRIVATE + HttpQueryControlChannelInformation@0 @34 PRIVATE + HttpQueryServerContextInformation@0 @35 PRIVATE + HttpQueryServiceConfiguration@32 @36 + HttpReadFragmentFromCache@0 @37 PRIVATE + HttpReceiveClientCertificate@0 @38 PRIVATE + HttpReceiveHttpRequest@0 @39 PRIVATE + HttpReceiveHttpResponse@0 @40 PRIVATE + HttpReceiveRequestEntityBody@0 @41 PRIVATE + HttpRemoveAllUrlsFromConfigGroup@0 @42 PRIVATE + HttpRemoveUrl@0 @43 PRIVATE + HttpRemoveUrlFromConfigGroup@0 @44 PRIVATE + HttpSendHttpRequest@0 @45 PRIVATE + HttpSendHttpResponse@0 @46 PRIVATE + HttpSendRequestEntityBody@0 @47 PRIVATE + HttpSendResponseEntityBody@0 @48 PRIVATE + HttpSetAppPoolInformation@0 @49 PRIVATE + HttpSetConfigGroupInformation@0 @50 PRIVATE + HttpSetControlChannelInformation@0 @51 PRIVATE + HttpSetServerContextInformation@0 @52 PRIVATE + HttpSetServiceConfiguration@20 @53 + HttpSetUrlGroupProperty@20 @54 + HttpShutdownAppPool@0 @55 PRIVATE + HttpShutdownFilter@0 @56 PRIVATE + HttpTerminate@8 @57 + HttpWaitForDemandStart@0 @58 PRIVATE + HttpWaitForDisconnect@0 @59 PRIVATE diff --git a/lib/wine/libieframe.def b/lib/wine/libieframe.def new file mode 100644 index 0000000..4d4ba9d --- /dev/null +++ b/lib/wine/libieframe.def @@ -0,0 +1,12 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/ieframe/ieframe.spec; do not edit! + +LIBRARY ieframe.dll + +EXPORTS + IEWinMain@8 @101 NONAME + DllCanUnloadNow@0 @102 PRIVATE + DllGetClassObject@12 @103 PRIVATE + DllRegisterServer@0 @104 PRIVATE + DllUnregisterServer@0 @105 PRIVATE + IEGetWriteableHKCU@4 @106 + OpenURL@16 @107 diff --git a/lib/wine/libimagehlp.def b/lib/wine/libimagehlp.def new file mode 100644 index 0000000..1174b91 --- /dev/null +++ b/lib/wine/libimagehlp.def @@ -0,0 +1,114 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/imagehlp/imagehlp.spec; do not edit! + +LIBRARY imagehlp.dll + +EXPORTS + BindImage@12 @1 + BindImageEx@20 @2 + CheckSumMappedFile@16 @3 + EnumerateLoadedModules64@12=dbghelp.EnumerateLoadedModules64 @4 + EnumerateLoadedModules@12=dbghelp.EnumerateLoadedModules @5 + FindDebugInfoFile@12=dbghelp.FindDebugInfoFile @6 + FindDebugInfoFileEx@20=dbghelp.FindDebugInfoFileEx @7 + FindExecutableImage@12=dbghelp.FindExecutableImage @8 + FindExecutableImageEx@20=dbghelp.FindExecutableImageEx @9 + FindFileInPath@0 @10 PRIVATE + FindFileInSearchPath@0 @11 PRIVATE + GetImageConfigInformation@8 @12 + GetImageUnusedHeaderBytes@8 @13 + GetTimestampForLoadedLibrary@4=dbghelp.GetTimestampForLoadedLibrary @14 + ImageAddCertificate@12 @15 + ImageDirectoryEntryToData@16=dbghelp.ImageDirectoryEntryToData @16 + ImageDirectoryEntryToDataEx@20=dbghelp.ImageDirectoryEntryToDataEx @17 + ImageEnumerateCertificates@20 @18 + ImageGetCertificateData@16 @19 + ImageGetCertificateHeader@12 @20 + ImageGetDigestStream@16 @21 + ImageLoad@8 @22 + ImageNtHeader@4=ntdll.RtlImageNtHeader @23 + ImageRemoveCertificate@8 @24 + ImageRvaToSection@12=ntdll.RtlImageRvaToSection @25 + ImageRvaToVa@16=ntdll.RtlImageRvaToVa @26 + ImageUnload@4 @27 + ImagehlpApiVersion@0=dbghelp.ImagehlpApiVersion @28 + ImagehlpApiVersionEx@4=dbghelp.ImagehlpApiVersionEx @29 + MakeSureDirectoryPathExists@4=dbghelp.MakeSureDirectoryPathExists @30 + MapAndLoad@20 @31 + MapDebugInformation@16=dbghelp.MapDebugInformation @32 + MapFileAndCheckSumA@12 @33 + MapFileAndCheckSumW@12 @34 + MarkImageAsRunFromSwap@0 @35 PRIVATE + ReBaseImage64@0 @36 PRIVATE + ReBaseImage@44 @37 + RemovePrivateCvSymbolic@12 @38 + RemovePrivateCvSymbolicEx@0 @39 PRIVATE + RemoveRelocations@4 @40 + SearchTreeForFile@12=dbghelp.SearchTreeForFile @41 + SetImageConfigInformation@8 @42 + SplitSymbols@16 @43 + StackWalk64@36=dbghelp.StackWalk64 @44 + StackWalk@36=dbghelp.StackWalk @45 + SymCleanup@4=dbghelp.SymCleanup @46 + SymEnumSourceFiles@24=dbghelp.SymEnumSourceFiles @47 + SymEnumSym@0 @48 PRIVATE + SymEnumSymbols@24=dbghelp.SymEnumSymbols @49 + SymEnumTypes@20=dbghelp.SymEnumTypes @50 + SymEnumerateModules64@12=dbghelp.SymEnumerateModules64 @51 + SymEnumerateModules@12=dbghelp.SymEnumerateModules @52 + SymEnumerateSymbols64@20=dbghelp.SymEnumerateSymbols64 @53 + SymEnumerateSymbols@16=dbghelp.SymEnumerateSymbols @54 + SymEnumerateSymbolsW64@0 @55 PRIVATE + SymEnumerateSymbolsW@0 @56 PRIVATE + SymFindFileInPath@40=dbghelp.SymFindFileInPath @57 + SymFromAddr@20=dbghelp.SymFromAddr @58 + SymFromName@12=dbghelp.SymFromName @59 + SymFunctionTableAccess64@12=dbghelp.SymFunctionTableAccess64 @60 + SymFunctionTableAccess@8=dbghelp.SymFunctionTableAccess @61 + SymGetLineFromAddr64@20=dbghelp.SymGetLineFromAddr64 @62 + SymGetLineFromAddr@16=dbghelp.SymGetLineFromAddr @63 + SymGetLineFromName64@0 @64 PRIVATE + SymGetLineFromName@0 @65 PRIVATE + SymGetLineNext64@8=dbghelp.SymGetLineNext64 @66 + SymGetLineNext@8=dbghelp.SymGetLineNext @67 + SymGetLinePrev64@8=dbghelp.SymGetLinePrev64 @68 + SymGetLinePrev@8=dbghelp.SymGetLinePrev @69 + SymGetModuleBase64@12=dbghelp.SymGetModuleBase64 @70 + SymGetModuleBase@8=dbghelp.SymGetModuleBase @71 + SymGetModuleInfo64@16=dbghelp.SymGetModuleInfo64 @72 + SymGetModuleInfo@12=dbghelp.SymGetModuleInfo @73 + SymGetModuleInfoW64@16=dbghelp.SymGetModuleInfoW64 @74 + SymGetModuleInfoW@12=dbghelp.SymGetModuleInfoW @75 + SymGetOptions@0=dbghelp.SymGetOptions @76 + SymGetSearchPath@12=dbghelp.SymGetSearchPath @77 + SymGetSymFromAddr64@20=dbghelp.SymGetSymFromAddr64 @78 + SymGetSymFromAddr@16=dbghelp.SymGetSymFromAddr @79 + SymGetSymFromName64@12=dbghelp.SymGetSymFromName64 @80 + SymGetSymFromName@12=dbghelp.SymGetSymFromName @81 + SymGetSymNext64@8=dbghelp.SymGetSymNext64 @82 + SymGetSymNext@8=dbghelp.SymGetSymNext @83 + SymGetSymPrev64@8=dbghelp.SymGetSymPrev64 @84 + SymGetSymPrev@8=dbghelp.SymGetSymPrev @85 + SymGetTypeFromName@20=dbghelp.SymGetTypeFromName @86 + SymGetTypeInfo@24=dbghelp.SymGetTypeInfo @87 + SymInitialize@12=dbghelp.SymInitialize @88 + SymLoadModule64@28=dbghelp.SymLoadModule64 @89 + SymLoadModule@24=dbghelp.SymLoadModule @90 + SymMatchFileName@16=dbghelp.SymMatchFileName @91 + SymMatchString@12=dbghelp.SymMatchString @92 + SymRegisterCallback64@16=dbghelp.SymRegisterCallback64 @93 + SymRegisterCallback@12=dbghelp.SymRegisterCallback @94 + SymRegisterFunctionEntryCallback64@16=dbghelp.SymRegisterFunctionEntryCallback64 @95 + SymRegisterFunctionEntryCallback@12=dbghelp.SymRegisterFunctionEntryCallback @96 + SymSetContext@12=dbghelp.SymSetContext @97 + SymSetOptions@4=dbghelp.SymSetOptions @98 + SymSetSearchPath@8=dbghelp.SymSetSearchPath @99 + SymUnDName64@12=dbghelp.SymUnDName64 @100 + SymUnDName@12=dbghelp.SymUnDName @101 + SymUnloadModule64@12=dbghelp.SymUnloadModule64 @102 + SymUnloadModule@8=dbghelp.SymUnloadModule @103 + TouchFileTimes@8 @104 + UnDecorateSymbolName@16=dbghelp.UnDecorateSymbolName @105 + UnMapAndLoad@4 @106 + UnmapDebugInformation@4=dbghelp.UnmapDebugInformation @107 + UpdateDebugInfoFile@16 @108 + UpdateDebugInfoFileEx@20 @109 diff --git a/lib/wine/libimm32.def b/lib/wine/libimm32.def new file mode 100644 index 0000000..c0a3c64 --- /dev/null +++ b/lib/wine/libimm32.def @@ -0,0 +1,120 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/imm32/imm32.spec; do not edit! + +LIBRARY imm32.dll + +EXPORTS + ImmActivateLayout@0 @1 PRIVATE + ImmAssociateContext@8 @2 + ImmAssociateContextEx@12 @3 + ImmConfigureIMEA@16 @4 + ImmConfigureIMEW@16 @5 + ImmCreateContext@0 @6 + ImmCreateIMCC@4 @7 + ImmCreateSoftKeyboard@16 @8 + ImmDestroyContext@4 @9 + ImmDestroyIMCC@4 @10 + ImmDestroySoftKeyboard@4 @11 + ImmDisableIME@4 @12 + ImmDisableIme@4=ImmDisableIME @13 + ImmDisableLegacyIME@0 @14 + ImmDisableTextFrameService@4 @15 + ImmEnumInputContext@12 @16 + ImmEnumRegisterWordA@24 @17 + ImmEnumRegisterWordW@24 @18 + ImmEscapeA@16 @19 + ImmEscapeW@16 @20 + ImmFreeLayout@0 @21 PRIVATE + ImmGenerateMessage@4 @22 + ImmGetCandidateListA@16 @23 + ImmGetCandidateListCountA@8 @24 + ImmGetCandidateListCountW@8 @25 + ImmGetCandidateListW@16 @26 + ImmGetCandidateWindow@12 @27 + ImmGetCompositionFontA@8 @28 + ImmGetCompositionFontW@8 @29 + ImmGetCompositionString@16=ImmGetCompositionStringA @30 + ImmGetCompositionStringA@16 @31 + ImmGetCompositionStringW@16 @32 + ImmGetCompositionWindow@8 @33 + ImmGetContext@4 @34 + ImmGetConversionListA@24 @35 + ImmGetConversionListW@24 @36 + ImmGetConversionStatus@12 @37 + ImmGetDefaultIMEWnd@4 @38 + ImmGetDescriptionA@12 @39 + ImmGetDescriptionW@12 @40 + ImmGetGuideLineA@16 @41 + ImmGetGuideLineW@16 @42 + ImmGetHotKey@16 @43 + ImmGetIMCCLockCount@4 @44 + ImmGetIMCCSize@4 @45 + ImmGetIMCLockCount@4 @46 + ImmGetIMEFileNameA@12 @47 + ImmGetIMEFileNameW@12 @48 + ImmGetImeInfoEx@0 @49 PRIVATE + ImmGetImeMenuItemsA@24 @50 + ImmGetImeMenuItemsW@24 @51 + ImmGetOpenStatus@4 @52 + ImmGetProperty@8 @53 + ImmGetRegisterWordStyleA@12 @54 + ImmGetRegisterWordStyleW@12 @55 + ImmGetStatusWindowPos@8 @56 + ImmGetVirtualKey@4 @57 + ImmIMPGetIMEA@0 @58 PRIVATE + ImmIMPGetIMEW@0 @59 PRIVATE + ImmIMPQueryIMEA@0 @60 PRIVATE + ImmIMPQueryIMEW@0 @61 PRIVATE + ImmIMPSetIMEA@0 @62 PRIVATE + ImmIMPSetIMEW@0 @63 PRIVATE + ImmInstallIMEA@8 @64 + ImmInstallIMEW@8 @65 + ImmIsIME@4 @66 + ImmIsUIMessageA@16 @67 + ImmIsUIMessageW@16 @68 + ImmLoadIME@0 @69 PRIVATE + ImmLoadLayout@0 @70 PRIVATE + ImmLockClientImc@0 @71 PRIVATE + ImmLockIMC@4 @72 + ImmLockIMCC@4 @73 + ImmLockImeDpi@0 @74 PRIVATE + ImmNotifyIME@16 @75 + ImmPenAuxInput@0 @76 PRIVATE + ImmProcessKey@20 @77 + ImmPutImeMenuItemsIntoMappedFile@0 @78 PRIVATE + ImmReSizeIMCC@8 @79 + ImmRegisterClient@0 @80 PRIVATE + ImmRegisterWordA@16 @81 + ImmRegisterWordW@16 @82 + ImmReleaseContext@8 @83 + ImmRequestMessageA@12 @84 + ImmRequestMessageW@12 @85 + ImmSendIMEMessageExA@0 @86 PRIVATE + ImmSendIMEMessageExW@0 @87 PRIVATE + ImmSendMessageToActiveDefImeWndW@0 @88 PRIVATE + ImmSetActiveContext@0 @89 PRIVATE + ImmSetActiveContextConsoleIME@0 @90 PRIVATE + ImmSetCandidateWindow@8 @91 + ImmSetCompositionFontA@8 @92 + ImmSetCompositionFontW@8 @93 + ImmSetCompositionStringA@24 @94 + ImmSetCompositionStringW@24 @95 + ImmSetCompositionWindow@8 @96 + ImmSetConversionStatus@12 @97 + ImmSetOpenStatus@8 @98 + ImmSetStatusWindowPos@8 @99 + ImmShowSoftKeyboard@8 @100 + ImmSimulateHotKey@8 @101 + ImmSystemHandler@0 @102 PRIVATE + ImmTranslateMessage@16 @103 + ImmUnlockClientImc@0 @104 PRIVATE + ImmUnlockIMC@4 @105 + ImmUnlockIMCC@4 @106 + ImmUnlockImeDpi@0 @107 PRIVATE + ImmUnregisterWordA@16 @108 + ImmUnregisterWordW@16 @109 + ImmWINNLSEnableIME@0 @110 PRIVATE + ImmWINNLSGetEnableStatus@0 @111 PRIVATE + ImmWINNLSGetIMEHotkey@0 @112 PRIVATE + __wine_get_ui_window@4 @113 + __wine_register_window@4 @114 + __wine_unregister_window@4 @115 diff --git a/lib/wine/libinetcomm.def b/lib/wine/libinetcomm.def new file mode 100644 index 0000000..dcc680d --- /dev/null +++ b/lib/wine/libinetcomm.def @@ -0,0 +1,111 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/inetcomm/inetcomm.spec; do not edit! + +LIBRARY inetcomm.dll + +EXPORTS + CreateIMAPTransport2@0 @1 PRIVATE + CreateIMAPTransport@4 @2 + CreateNNTPTransport@0 @3 PRIVATE + CreatePOP3Transport@4 @4 + CreateRASTransport@0 @5 PRIVATE + CreateRangeList@0 @6 PRIVATE + CreateSMTPTransport@4 @7 + DllCanUnloadNow@0 @8 PRIVATE + DllGetClassObject@12 @9 PRIVATE + DllRegisterServer@0 @10 PRIVATE + DllUnregisterServer@0 @11 PRIVATE + EssContentHintDecodeEx@0 @12 PRIVATE + EssContentHintEncodeEx@0 @13 PRIVATE + EssKeyExchPreferenceDecodeEx@0 @14 PRIVATE + EssKeyExchPreferenceEncodeEx@0 @15 PRIVATE + EssMLHistoryDecodeEx@0 @16 PRIVATE + EssMLHistoryEncodeEx@0 @17 PRIVATE + EssReceiptDecodeEx@0 @18 PRIVATE + EssReceiptEncodeEx@0 @19 PRIVATE + EssReceiptRequestDecodeEx@0 @20 PRIVATE + EssReceiptRequestEncodeEx@0 @21 PRIVATE + EssSecurityLabelDecodeEx@0 @22 PRIVATE + EssSecurityLabelEncodeEx@0 @23 PRIVATE + EssSignCertificateDecodeEx@0 @24 PRIVATE + EssSignCertificateEncodeEx@0 @25 PRIVATE + GetDllMajorVersion@0 @26 PRIVATE + HrAthGetFileName@0 @27 PRIVATE + HrAthGetFileNameW@0 @28 PRIVATE + HrAttachDataFromBodyPart@0 @29 PRIVATE + HrAttachDataFromFile@0 @30 PRIVATE + HrDoAttachmentVerb@0 @31 PRIVATE + HrFreeAttachData@0 @32 PRIVATE + HrGetAttachIcon@0 @33 PRIVATE + HrGetAttachIconByFile@0 @34 PRIVATE + HrGetDisplayNameWithSizeForFile@0 @35 PRIVATE + HrGetLastOpenFileDirectory@0 @36 PRIVATE + HrGetLastOpenFileDirectoryW@0 @37 PRIVATE + HrSaveAttachToFile@0 @38 PRIVATE + HrSaveAttachmentAs@0 @39 PRIVATE + MimeEditCreateMimeDocument@0 @40 PRIVATE + MimeEditDocumentFromStream@0 @41 PRIVATE + MimeEditGetBackgroundImageUrl@0 @42 PRIVATE + MimeEditIsSafeToRun@0 @43 PRIVATE + MimeEditViewSource@0 @44 PRIVATE + MimeGetAddressFormatW@20 @45 + MimeOleAlgNameFromSMimeCap@0 @46 PRIVATE + MimeOleAlgStrengthFromSMimeCap@0 @47 PRIVATE + MimeOleClearDirtyTree@0 @48 PRIVATE + MimeOleConvertEnrichedToHTML@0 @49 PRIVATE + MimeOleCreateBody@0 @50 PRIVATE + MimeOleCreateByteStream@0 @51 PRIVATE + MimeOleCreateHashTable@0 @52 PRIVATE + MimeOleCreateHeaderTable@0 @53 PRIVATE + MimeOleCreateMessage@8 @54 + MimeOleCreateMessageParts@0 @55 PRIVATE + MimeOleCreatePropertySet@0 @56 PRIVATE + MimeOleCreateSecurity@4 @57 + MimeOleCreateVirtualStream@4 @58 + MimeOleDecodeHeader@0 @59 PRIVATE + MimeOleEncodeHeader@0 @60 PRIVATE + MimeOleFileTimeToInetDate@0 @61 PRIVATE + MimeOleFindCharset@8 @62 + MimeOleGenerateCID@0 @63 PRIVATE + MimeOleGenerateFileName@0 @64 PRIVATE + MimeOleGenerateMID@0 @65 PRIVATE + MimeOleGetAllocator@4 @66 + MimeOleGetBodyPropA@0 @67 PRIVATE + MimeOleGetBodyPropW@0 @68 PRIVATE + MimeOleGetCertsFromThumbprints@0 @69 PRIVATE + MimeOleGetCharsetInfo@8 @70 + MimeOleGetCodePageCharset@0 @71 PRIVATE + MimeOleGetCodePageInfo@0 @72 PRIVATE + MimeOleGetContentTypeExt@0 @73 PRIVATE + MimeOleGetDefaultCharset@4 @74 + MimeOleGetExtContentType@0 @75 PRIVATE + MimeOleGetFileExtension@0 @76 PRIVATE + MimeOleGetFileInfo@0 @77 PRIVATE + MimeOleGetFileInfoW@0 @78 PRIVATE + MimeOleGetInternat@4 @79 + MimeOleGetPropA@0 @80 PRIVATE + MimeOleGetPropW@0 @81 PRIVATE + MimeOleGetPropertySchema@4 @82 + MimeOleGetRelatedSection@0 @83 PRIVATE + MimeOleInetDateToFileTime@0 @84 PRIVATE + MimeOleObjectFromMoniker@24 @85 + MimeOleOpenFileStream@0 @86 PRIVATE + MimeOleParseMhtmlUrl@0 @87 PRIVATE + MimeOleParseRfc822Address@0 @88 PRIVATE + MimeOleParseRfc822AddressW@0 @89 PRIVATE + MimeOleSMimeCapAddCert@0 @90 PRIVATE + MimeOleSMimeCapAddSMimeCap@0 @91 PRIVATE + MimeOleSMimeCapGetEncAlg@0 @92 PRIVATE + MimeOleSMimeCapGetHashAlg@0 @93 PRIVATE + MimeOleSMimeCapInit@0 @94 PRIVATE + MimeOleSMimeCapRelease@0 @95 PRIVATE + MimeOleSMimeCapsFromDlg@0 @96 PRIVATE + MimeOleSMimeCapsFull@0 @97 PRIVATE + MimeOleSMimeCapsToDlg@0 @98 PRIVATE + MimeOleSetBodyPropA@0 @99 PRIVATE + MimeOleSetBodyPropW@0 @100 PRIVATE + MimeOleSetCompatMode@4 @101 + MimeOleSetDefaultCharset@0 @102 PRIVATE + MimeOleSetPropA@0 @103 PRIVATE + MimeOleSetPropW@0 @104 PRIVATE + MimeOleStripHeaders@0 @105 PRIVATE + MimeOleUnEscapeStringInPlace@0 @106 PRIVATE diff --git a/lib/wine/libiphlpapi.def b/lib/wine/libiphlpapi.def new file mode 100644 index 0000000..66e9b15 --- /dev/null +++ b/lib/wine/libiphlpapi.def @@ -0,0 +1,168 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/iphlpapi/iphlpapi.spec; do not edit! + +LIBRARY iphlpapi.dll + +EXPORTS + AddIPAddress@20 @1 + AllocateAndGetArpEntTableFromStack@0 @2 PRIVATE + AllocateAndGetIfTableFromStack@16 @3 + AllocateAndGetIpAddrTableFromStack@16 @4 + AllocateAndGetIpForwardTableFromStack@16 @5 + AllocateAndGetIpNetTableFromStack@16 @6 + AllocateAndGetTcpExTableFromStack@20 @7 + AllocateAndGetTcpTableFromStack@16 @8 + AllocateAndGetUdpTableFromStack@16 @9 + CancelIPChangeNotify@4 @10 + CancelMibChangeNotify2@4 @11 + ConvertInterfaceGuidToLuid@8 @12 + ConvertInterfaceIndexToLuid@8 @13 + ConvertInterfaceLuidToGuid@8 @14 + ConvertInterfaceLuidToIndex@8 @15 + ConvertInterfaceLuidToNameA@12 @16 + ConvertInterfaceLuidToNameW@12 @17 + ConvertInterfaceNameToLuidA@8 @18 + ConvertInterfaceNameToLuidW@8 @19 + ConvertLengthToIpv4Mask@8 @20 + CreateIpForwardEntry@4 @21 + CreateIpNetEntry@4 @22 + CreateProxyArpEntry@12 @23 + CreateSortedAddressPairs@28 @24 + DeleteIPAddress@4 @25 + DeleteIpForwardEntry@4 @26 + DeleteIpNetEntry@4 @27 + DeleteProxyArpEntry@12 @28 + EnableRouter@8 @29 + FlushIpNetTable@4 @30 + FlushIpNetTableFromStack@0 @31 PRIVATE + FreeMibTable@4 @32 + GetAdapterIndex@8 @33 + GetAdapterOrderMap@0 @34 PRIVATE + GetAdaptersAddresses@20 @35 + GetAdaptersInfo@8 @36 + GetBestInterface@8 @37 + GetBestInterfaceEx@8 @38 + GetBestInterfaceFromStack@0 @39 PRIVATE + GetBestRoute@12 @40 + GetBestRoute2@28 @41 + GetBestRouteFromStack@0 @42 PRIVATE + GetExtendedTcpTable@24 @43 + GetExtendedUdpTable@24 @44 + GetFriendlyIfIndex@4 @45 + GetIcmpStatisticsEx@8 @46 + GetIcmpStatistics@4 @47 + GetIcmpStatsFromStack@0 @48 PRIVATE + GetIfEntry@4 @49 + GetIfEntry2@4 @50 + GetIfEntryFromStack@0 @51 PRIVATE + GetIfTable@12 @52 + GetIfTable2@4 @53 + GetIfTable2Ex@8 @54 + GetIfTableFromStack@0 @55 PRIVATE + GetIgmpList@0 @56 PRIVATE + GetInterfaceInfo@8 @57 + GetIpAddrTable@12 @58 + GetIpAddrTableFromStack@0 @59 PRIVATE + GetIpForwardTable@12 @60 + GetIpForwardTable2@8 @61 + GetIpForwardTableFromStack@0 @62 PRIVATE + GetIpInterfaceTable@8 @63 + GetIpNetTable@12 @64 + GetIpNetTable2@8 @65 + GetIpNetTableFromStack@0 @66 PRIVATE + GetIpStatisticsEx@8 @67 + GetIpStatistics@4 @68 + GetIpStatsFromStack@0 @69 PRIVATE + GetNetworkParams@8 @70 + GetNumberOfInterfaces@4 @71 + GetPerAdapterInfo@12 @72 + GetRTTAndHopCount@16 @73 + GetTcp6Table@12 @74 + GetTcp6Table2@12 @75 + GetTcpStatisticsEx@8 @76 + GetTcpStatistics@4 @77 + GetTcpStatsFromStack@0 @78 PRIVATE + GetTcpTable@12 @79 + GetTcpTable2@12 @80 + GetTcpTableFromStack@0 @81 PRIVATE + GetUdp6Table@12 @82 + GetUdpStatisticsEx@8 @83 + GetUdpStatistics@4 @84 + GetUdpStatsFromStack@0 @85 PRIVATE + GetUdpTable@12 @86 + GetUdpTableFromStack@0 @87 PRIVATE + GetUnicastIpAddressEntry@4 @88 + GetUnicastIpAddressTable@8 @89 + GetUniDirectionalAdapterInfo@8 @90 + Icmp6CreateFile@0 @91 + Icmp6SendEcho2@48 @92 + IcmpCloseHandle@4 @93 + IcmpCreateFile@0 @94 + IcmpParseReplies@0 @95 PRIVATE + IcmpSendEcho2Ex@48 @96 + IcmpSendEcho2@44 @97 + IcmpSendEcho@32 @98 + if_indextoname@8=IPHLP_if_indextoname @99 + if_nametoindex@4=IPHLP_if_nametoindex @100 + InternalCreateIpForwardEntry@0 @101 PRIVATE + InternalCreateIpNetEntry@0 @102 PRIVATE + InternalDeleteIpForwardEntry@0 @103 PRIVATE + InternalDeleteIpNetEntry@0 @104 PRIVATE + InternalGetIfTable@0 @105 PRIVATE + InternalGetIpAddrTable@0 @106 PRIVATE + InternalGetIpForwardTable@0 @107 PRIVATE + InternalGetIpNetTable@0 @108 PRIVATE + InternalGetTcpTable@0 @109 PRIVATE + InternalGetUdpTable@0 @110 PRIVATE + InternalSetIfEntry@0 @111 PRIVATE + InternalSetIpForwardEntry@0 @112 PRIVATE + InternalSetIpNetEntry@0 @113 PRIVATE + InternalSetIpStats@0 @114 PRIVATE + InternalSetTcpEntry@0 @115 PRIVATE + IpReleaseAddress@4 @116 + IpRenewAddress@4 @117 + IsLocalAddress@0 @118 PRIVATE + NhGetGuidFromInterfaceName@0 @119 PRIVATE + NhGetInterfaceNameFromGuid@0 @120 PRIVATE + NhpAllocateAndGetInterfaceInfoFromStack@0 @121 PRIVATE + NhpGetInterfaceIndexFromStack@0 @122 PRIVATE + NotifyAddrChange@8 @123 + NotifyIpInterfaceChange@20 @124 + NotifyRouteChange@8 @125 + NotifyRouteChangeEx@0 @126 PRIVATE + NotifyUnicastIpAddressChange@20 @127 + _PfAddFiltersToInterface@24@0 @128 PRIVATE + _PfAddGlobalFilterToInterface@8@0 @129 PRIVATE + _PfBindInterfaceToIPAddress@12@12=PfBindInterfaceToIPAddress @130 + _PfBindInterfaceToIndex@16@0 @131 PRIVATE + _PfCreateInterface@24@24=PfCreateInterface @132 + _PfDeleteInterface@4@4=PfDeleteInterface @133 + _PfDeleteLog@0@0 @134 PRIVATE + _PfGetInterfaceStatistics@16@0 @135 PRIVATE + _PfMakeLog@4@0 @136 PRIVATE + _PfRebindFilters@8@0 @137 PRIVATE + _PfRemoveFilterHandles@12@0 @138 PRIVATE + _PfRemoveFiltersFromInterface@20@0 @139 PRIVATE + _PfRemoveGlobalFilterFromInterface@8@0 @140 PRIVATE + _PfSetLogBuffer@28@0 @141 PRIVATE + _PfTestPacket@20@0 @142 PRIVATE + _PfUnBindInterface@4@4=PfUnBindInterface @143 + SendARP@16 @144 + SetAdapterIpAddress@0 @145 PRIVATE + SetBlockRoutes@0 @146 PRIVATE + SetIfEntry@4 @147 + SetIfEntryToStack@0 @148 PRIVATE + SetIpForwardEntry@4 @149 + SetIpForwardEntryToStack@0 @150 PRIVATE + SetIpMultihopRouteEntryToStack@0 @151 PRIVATE + SetIpNetEntry@4 @152 + SetIpNetEntryToStack@0 @153 PRIVATE + SetIpRouteEntryToStack@0 @154 PRIVATE + SetIpStatistics@4 @155 + SetIpStatsToStack@0 @156 PRIVATE + SetIpTTL@4 @157 + SetPerTcpConnectionEStats@24 @158 + SetProxyArpEntryToStack@0 @159 PRIVATE + SetRouteWithRef@0 @160 PRIVATE + SetTcpEntry@4 @161 + SetTcpEntryToStack@0 @162 PRIVATE + UnenableRouter@8 @163 diff --git a/lib/wine/libjsproxy.def b/lib/wine/libjsproxy.def new file mode 100644 index 0000000..9739b1a --- /dev/null +++ b/lib/wine/libjsproxy.def @@ -0,0 +1,11 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/jsproxy/jsproxy.spec; do not edit! + +LIBRARY jsproxy.dll + +EXPORTS + InternetInitializeAutoProxyDll@20=JSPROXY_InternetInitializeAutoProxyDll @101 + InternetDeInitializeAutoProxyDll@8 @102 + InternetGetProxyInfo@24 @103 + InternetInitializeAutoProxyDllEx@0 @104 PRIVATE + InternetDeInitializeAutoProxyDllEx@0 @105 PRIVATE + InternetGetProxyInfoEx@0 @106 PRIVATE diff --git a/lib/wine/libkernel.def b/lib/wine/libkernel.def new file mode 100644 index 0000000..102b458 --- /dev/null +++ b/lib/wine/libkernel.def @@ -0,0 +1,185 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/krnl386.exe16/krnl386.exe16.spec; do not edit! + +LIBRARY krnl386.exe16 + +EXPORTS + __wine_spec_dos_header=.L__wine_spec_dos_header @1 DATA PRIVATE + VxDCall0@0=VxDCall @2 + VxDCall1@0=VxDCall @3 + VxDCall2@0=VxDCall @4 + VxDCall3@0=VxDCall @5 + VxDCall4@0=VxDCall @6 + VxDCall5@0=VxDCall @7 + VxDCall6@0=VxDCall @8 + VxDCall7@0=VxDCall @9 + VxDCall8@0=VxDCall @10 + k32CharToOemA@8 @11 + k32CharToOemBuffA@12 @12 + k32OemToCharA@8 @13 + k32OemToCharBuffA@12 @14 + k32LoadStringA@16 @15 + k32wsprintfA @16 + k32wvsprintfA@12 @17 + CommonUnimpStub@0 @18 + GetProcessDword@8 @19 + DosFileHandleToWin32Handle@4 @20 + Win32HandleToDosFileHandle@4 @21 + DisposeLZ32Handle@4 @22 + GlobalAlloc16@8 @23 + GlobalLock16@4 @24 + GlobalUnlock16@4 @25 + GlobalFix16@4 @26 + GlobalUnfix16@4 @27 + GlobalWire16@4 @28 + GlobalUnWire16@4 @29 + GlobalFree16@4 @30 + GlobalSize16@4 @31 + HouseCleanLogicallyDeadHandles@0 @32 + GetWin16DOSEnv@0 @33 + LoadLibrary16@4 @34 + FreeLibrary16@4 @35 + GetProcAddress16@8=WIN32_GetProcAddress16 @36 + AllocMappedBuffer@0 @37 + FreeMappedBuffer@0 @38 + OT_32ThkLSF@0 @39 + ThunkInitLSF@20 @40 + LogApiThkLSF@4 @41 + ThunkInitLS@20 @42 + LogApiThkSL@4 @43 + Common32ThkLS@0 @44 + ThunkInitSL@20 @45 + LogCBThkSL@4 @46 + ReleaseThunkLock@4 @47 + RestoreThunkLock@4 @48 + W32S_BackTo32@0 @49 + GetThunkBuff@0 @50 + GetThunkStuff@8 @51 + K32WOWCallback16@8 @52 + K32WOWCallback16Ex@20 @53 + K32WOWGetVDMPointer@12 @54 + K32WOWHandle32@8 @55 + K32WOWHandle16@8 @56 + K32WOWGlobalAlloc16@8 @57 + K32WOWGlobalLock16@4 @58 + K32WOWGlobalUnlock16@4 @59 + K32WOWGlobalFree16@4 @60 + K32WOWGlobalAllocLock16@12 @61 + K32WOWGlobalUnlockFree16@4 @62 + K32WOWGlobalLockSize16@8 @63 + K32WOWYield16@0 @64 + K32WOWDirectedYield16@4 @65 + K32WOWGetVDMPointerFix@12 @66 + K32WOWGetVDMPointerUnfix@4 @67 + K32WOWGetDescriptor@8 @68 + _KERNEL32_86@4 @69 + SSOnBigStack@0 @70 + SSCall @71 + FT_PrologPrime@0 @72 + QT_ThunkPrime@0 @73 + PK16FNF@4 @74 + GetPK16SysVar@0 @75 + GetpWin16Lock@4 @76 + _CheckNotSysLevel@4 @77 + _ConfirmSysLevel@4 @78 + _ConfirmWin16Lock@0 @79 + _EnterSysLevel@4 @80 + _LeaveSysLevel@4 @81 + _KERNEL32_99@4 @82 + _KERNEL32_100@12 @83 + AllocSLCallback@8 @84 + FT_Exit0@0 @85 + FT_Exit12@0 @86 + FT_Exit16@0 @87 + FT_Exit20@0 @88 + FT_Exit24@0 @89 + FT_Exit28@0 @90 + FT_Exit32@0 @91 + FT_Exit36@0 @92 + FT_Exit40@0 @93 + FT_Exit44@0 @94 + FT_Exit48@0 @95 + FT_Exit4@0 @96 + FT_Exit52@0 @97 + FT_Exit56@0 @98 + FT_Exit8@0 @99 + FT_Prolog@0 @100 + FT_Thunk@0 @101 + FreeSLCallback@4 @102 + Get16DLLAddress@8 @103 + K32Thk1632Epilog@0 @104 + K32Thk1632Prolog@0 @105 + MapHInstLS@0 @106 + MapHInstLS_PN@0 @107 + MapHInstSL@0 @108 + MapHInstSL_PN@0 @109 + MapHModuleLS@4 @110 + MapHModuleSL@4 @111 + MapLS@4 @112 + MapSL@4 @113 + MapSLFix@4 @114 + PrivateFreeLibrary@4 @115 + PrivateLoadLibrary@4 @116 + QT_Thunk@0 @117 + SMapLS@0 @118 + SMapLS_IP_EBP_12@0 @119 + SMapLS_IP_EBP_16@0 @120 + SMapLS_IP_EBP_20@0 @121 + SMapLS_IP_EBP_24@0 @122 + SMapLS_IP_EBP_28@0 @123 + SMapLS_IP_EBP_32@0 @124 + SMapLS_IP_EBP_36@0 @125 + SMapLS_IP_EBP_40@0 @126 + SMapLS_IP_EBP_8@0 @127 + SUnMapLS@0 @128 + SUnMapLS_IP_EBP_12@0 @129 + SUnMapLS_IP_EBP_16@0 @130 + SUnMapLS_IP_EBP_20@0 @131 + SUnMapLS_IP_EBP_24@0 @132 + SUnMapLS_IP_EBP_28@0 @133 + SUnMapLS_IP_EBP_32@0 @134 + SUnMapLS_IP_EBP_36@0 @135 + SUnMapLS_IP_EBP_40@0 @136 + SUnMapLS_IP_EBP_8@0 @137 + ThunkConnect32@24 @138 + UTRegister@28 @139 + UTUnRegister@4 @140 + UnMapLS@4 @141 + UnMapSLFixArray@8 @142 + _lclose16@4 @143 + AllocSelectorArray16@4 @144 + FarGetOwner16@4 @145 + FarSetOwner16@8 @146 + FindResource16@12 @147 + FreeResource16@4 @148 + FreeSelector16@4 @149 + GetCurrentPDB16@0 @150 + GetCurrentTask@0 @151 + GetDOSEnvironment16@0 @152 + GetExePtr@4 @153 + GetExeVersion16@0 @154 + GetExpWinVer16@4 @155 + GetModuleHandle16@4 @156 + GlobalReAlloc16@12 @157 + InitTask16@4 @158 + IsBadReadPtr16@8 @159 + IsTask16@4 @160 + LoadModule16@8 @161 + LoadResource16@8 @162 + LocalAlloc16@8 @163 + LocalInit16@12 @164 + LocalLock16@4 @165 + LocalUnlock16@4 @166 + LocalReAlloc16@12 @167 + LocalFree16@4 @168 + LocalSize16@4 @169 + LocalCompact16@4 @170 + LocalCountFree16@0 @171 + LocalHeapSize16@0 @172 + LockResource16@4 @173 + SetSelectorBase@8 @174 + SetSelectorLimit16@8 @175 + SizeofResource16@8 @176 + WinExec16@8 @177 + __wine_call_int_handler @178 + __wine_vxd_open @179 PRIVATE + __wine_vxd_get_proc @180 PRIVATE diff --git a/lib/wine/libkernel32.def b/lib/wine/libkernel32.def new file mode 100644 index 0000000..a0e45fb --- /dev/null +++ b/lib/wine/libkernel32.def @@ -0,0 +1,1382 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/kernel32/kernel32.spec; do not edit! + +LIBRARY kernel32.dll + +EXPORTS + VxDCall0@0=krnl386.exe16.VxDCall0 @1 NONAME PRIVATE + VxDCall1@0=krnl386.exe16.VxDCall1 @2 NONAME PRIVATE + VxDCall2@0=krnl386.exe16.VxDCall2 @3 NONAME PRIVATE + VxDCall3@0=krnl386.exe16.VxDCall3 @4 NONAME PRIVATE + VxDCall4@0=krnl386.exe16.VxDCall4 @5 NONAME PRIVATE + VxDCall5@0=krnl386.exe16.VxDCall5 @6 NONAME PRIVATE + VxDCall6@0=krnl386.exe16.VxDCall6 @7 NONAME PRIVATE + VxDCall7@0=krnl386.exe16.VxDCall7 @8 NONAME PRIVATE + VxDCall8@0=krnl386.exe16.VxDCall8 @9 NONAME PRIVATE + k32CharToOemA@8=krnl386.exe16.k32CharToOemA @10 NONAME PRIVATE + k32CharToOemBuffA@12=krnl386.exe16.k32CharToOemBuffA @11 NONAME PRIVATE + k32OemToCharA@8=krnl386.exe16.k32OemToCharA @12 NONAME PRIVATE + k32OemToCharBuffA@12=krnl386.exe16.k32OemToCharBuffA @13 NONAME PRIVATE + k32LoadStringA@16=krnl386.exe16.k32LoadStringA @14 NONAME PRIVATE + k32wsprintfA=krnl386.exe16.k32wsprintfA @15 NONAME PRIVATE + k32wvsprintfA@12=krnl386.exe16.k32wvsprintfA @16 NONAME PRIVATE + CommonUnimpStub@0=krnl386.exe16.CommonUnimpStub @17 NONAME PRIVATE + GetProcessDword@8=krnl386.exe16.GetProcessDword @18 NONAME PRIVATE + ThunkTheTemplateHandle@0 @19 PRIVATE + DosFileHandleToWin32Handle@4=krnl386.exe16.DosFileHandleToWin32Handle @20 NONAME PRIVATE + Win32HandleToDosFileHandle@4=krnl386.exe16.Win32HandleToDosFileHandle @21 NONAME PRIVATE + DisposeLZ32Handle@4=krnl386.exe16.DisposeLZ32Handle @22 NONAME PRIVATE + GDIReallyCares@0 @23 PRIVATE + GlobalAlloc16@8=krnl386.exe16.GlobalAlloc16 @24 NONAME PRIVATE + GlobalLock16@4=krnl386.exe16.GlobalLock16 @25 NONAME PRIVATE + GlobalUnlock16@4=krnl386.exe16.GlobalUnlock16 @26 NONAME PRIVATE + GlobalFix16@4=krnl386.exe16.GlobalFix16 @27 NONAME PRIVATE + GlobalUnfix16@4=krnl386.exe16.GlobalUnfix16 @28 NONAME PRIVATE + GlobalWire16@4=krnl386.exe16.GlobalWire16 @29 NONAME PRIVATE + GlobalUnWire16@4=krnl386.exe16.GlobalUnWire16 @30 NONAME PRIVATE + GlobalFree16@4=krnl386.exe16.GlobalFree16 @31 NONAME PRIVATE + GlobalSize16@4=krnl386.exe16.GlobalSize16 @32 NONAME PRIVATE + HouseCleanLogicallyDeadHandles@0=krnl386.exe16.HouseCleanLogicallyDeadHandles @33 NONAME PRIVATE + GetWin16DOSEnv@0=krnl386.exe16.GetWin16DOSEnv @34 NONAME PRIVATE + LoadLibrary16@4=krnl386.exe16.LoadLibrary16 @35 NONAME PRIVATE + FreeLibrary16@4=krnl386.exe16.FreeLibrary16 @36 NONAME PRIVATE + GetProcAddress16@8=krnl386.exe16.GetProcAddress16 @37 NONAME PRIVATE + AllocMappedBuffer@0=krnl386.exe16.AllocMappedBuffer @38 NONAME PRIVATE + FreeMappedBuffer@0=krnl386.exe16.FreeMappedBuffer @39 NONAME PRIVATE + OT_32ThkLSF@0=krnl386.exe16.OT_32ThkLSF @40 NONAME PRIVATE + ThunkInitLSF@20=krnl386.exe16.ThunkInitLSF @41 NONAME PRIVATE + LogApiThkLSF@4=krnl386.exe16.LogApiThkLSF @42 NONAME PRIVATE + ThunkInitLS@20=krnl386.exe16.ThunkInitLS @43 NONAME PRIVATE + LogApiThkSL@4=krnl386.exe16.LogApiThkSL @44 NONAME PRIVATE + Common32ThkLS@0=krnl386.exe16.Common32ThkLS @45 NONAME PRIVATE + ThunkInitSL@20=krnl386.exe16.ThunkInitSL @46 NONAME PRIVATE + LogCBThkSL@4=krnl386.exe16.LogCBThkSL @47 NONAME PRIVATE + ReleaseThunkLock@4=krnl386.exe16.ReleaseThunkLock @48 NONAME PRIVATE + RestoreThunkLock@4=krnl386.exe16.RestoreThunkLock @49 NONAME PRIVATE + W32S_BackTo32@0=krnl386.exe16.W32S_BackTo32 @51 NONAME PRIVATE + GetThunkBuff@0=krnl386.exe16.GetThunkBuff @52 NONAME PRIVATE + GetThunkStuff@8=krnl386.exe16.GetThunkStuff @53 NONAME PRIVATE + K32WOWCallback16@8=krnl386.exe16.K32WOWCallback16 @54 NONAME PRIVATE + K32WOWCallback16Ex@20=krnl386.exe16.K32WOWCallback16Ex @55 NONAME PRIVATE + K32WOWGetVDMPointer@12=krnl386.exe16.K32WOWGetVDMPointer @56 NONAME PRIVATE + K32WOWHandle32@8=krnl386.exe16.K32WOWHandle32 @57 NONAME PRIVATE + K32WOWHandle16@8=krnl386.exe16.K32WOWHandle16 @58 NONAME PRIVATE + K32WOWGlobalAlloc16@8=krnl386.exe16.K32WOWGlobalAlloc16 @59 NONAME PRIVATE + K32WOWGlobalLock16@4=krnl386.exe16.K32WOWGlobalLock16 @60 NONAME PRIVATE + K32WOWGlobalUnlock16@4=krnl386.exe16.K32WOWGlobalUnlock16 @61 NONAME PRIVATE + K32WOWGlobalFree16@4=krnl386.exe16.K32WOWGlobalFree16 @62 NONAME PRIVATE + K32WOWGlobalAllocLock16@12=krnl386.exe16.K32WOWGlobalAllocLock16 @63 NONAME PRIVATE + K32WOWGlobalUnlockFree16@4=krnl386.exe16.K32WOWGlobalUnlockFree16 @64 NONAME PRIVATE + K32WOWGlobalLockSize16@8=krnl386.exe16.K32WOWGlobalLockSize16 @65 NONAME PRIVATE + K32WOWYield16@0=krnl386.exe16.K32WOWYield16 @66 NONAME PRIVATE + K32WOWDirectedYield16@4=krnl386.exe16.K32WOWDirectedYield16 @67 NONAME PRIVATE + K32WOWGetVDMPointerFix@12=krnl386.exe16.K32WOWGetVDMPointerFix @68 NONAME PRIVATE + K32WOWGetVDMPointerUnfix@4=krnl386.exe16.K32WOWGetVDMPointerUnfix @69 NONAME PRIVATE + K32WOWGetDescriptor@8=krnl386.exe16.K32WOWGetDescriptor @70 NONAME PRIVATE + IsThreadId@0 @71 PRIVATE + K32RtlLargeIntegerAdd@16=ntdll.RtlLargeIntegerAdd @72 NONAME PRIVATE + K32RtlEnlargedIntegerMultiply@8=ntdll.RtlEnlargedIntegerMultiply @73 NONAME PRIVATE + K32RtlEnlargedUnsignedMultiply@8=ntdll.RtlEnlargedUnsignedMultiply @74 NONAME PRIVATE + K32RtlEnlargedUnsignedDivide@16=ntdll.RtlEnlargedUnsignedDivide @75 NONAME PRIVATE + K32RtlExtendedLargeIntegerDivide@16=ntdll.RtlExtendedLargeIntegerDivide @76 NONAME PRIVATE + K32RtlExtendedMagicDivide@20=ntdll.RtlExtendedMagicDivide @77 NONAME PRIVATE + K32RtlExtendedIntegerMultiply@12=ntdll.RtlExtendedIntegerMultiply @78 NONAME PRIVATE + K32RtlLargeIntegerShiftLeft@12=ntdll.RtlLargeIntegerShiftLeft @79 NONAME PRIVATE + K32RtlLargeIntegerShiftRight@12=ntdll.RtlLargeIntegerShiftRight @80 NONAME PRIVATE + K32RtlLargeIntegerArithmeticShift@12=ntdll.RtlLargeIntegerArithmeticShift @81 NONAME PRIVATE + K32RtlLargeIntegerNegate@8=ntdll.RtlLargeIntegerNegate @82 NONAME PRIVATE + K32RtlLargeIntegerSubtract@16=ntdll.RtlLargeIntegerSubtract @83 NONAME PRIVATE + K32RtlConvertLongToLargeInteger@4=ntdll.RtlConvertLongToLargeInteger @84 NONAME PRIVATE + K32RtlConvertUlongToLargeInteger@4=ntdll.RtlConvertUlongToLargeInteger @85 NONAME PRIVATE + SSOnBigStack@0=krnl386.exe16.SSOnBigStack @87 NONAME PRIVATE + SSCall=krnl386.exe16.SSCall @88 NONAME PRIVATE + FT_PrologPrime@0=krnl386.exe16.FT_PrologPrime @89 NONAME PRIVATE + QT_ThunkPrime@0=krnl386.exe16.QT_ThunkPrime @90 NONAME PRIVATE + PK16FNF@4=krnl386.exe16.PK16FNF @91 NONAME PRIVATE + GetPK16SysVar@0=krnl386.exe16.GetPK16SysVar @92 NONAME PRIVATE + GetpWin16Lock@4=krnl386.exe16.GetpWin16Lock @93 NONAME PRIVATE + _CheckNotSysLevel@4=krnl386.exe16._CheckNotSysLevel @94 NONAME PRIVATE + _ConfirmSysLevel@4=krnl386.exe16._ConfirmSysLevel @95 NONAME PRIVATE + _ConfirmWin16Lock@0=krnl386.exe16._ConfirmWin16Lock @96 NONAME PRIVATE + _EnterSysLevel@4=krnl386.exe16._EnterSysLevel @97 NONAME PRIVATE + _LeaveSysLevel@4=krnl386.exe16._LeaveSysLevel @98 NONAME PRIVATE + AcquireSRWLockExclusive@4=ntdll.RtlAcquireSRWLockExclusive @50 + AcquireSRWLockShared@4=ntdll.RtlAcquireSRWLockShared @118 + ActivateActCtx@8 @123 + AddAtomA@4 @124 + AddAtomW@4 @125 + AddConsoleAliasA@12 @126 + AddConsoleAliasW@12 @127 + AddDllDirectory@4 @128 + AddRefActCtx@4 @129 + AddVectoredContinueHandler@8=ntdll.RtlAddVectoredContinueHandler @130 + AddVectoredExceptionHandler@8=ntdll.RtlAddVectoredExceptionHandler @131 + AllocConsole@0 @132 + AllocLSCallback@0 @133 PRIVATE + AllocSLCallback@8=krnl386.exe16.AllocSLCallback @134 PRIVATE + AllocateUserPhysicalPages@12 @135 + ApplicationRecoveryFinished@4 @136 + ApplicationRecoveryInProgress@4 @137 + AreFileApisANSI@0 @138 + AssignProcessToJobObject@8 @139 + AttachConsole@4 @140 + BackupRead@28 @141 + BackupSeek@24 @142 + BackupWrite@28 @143 + BaseAttachCompleteThunk@0 @144 PRIVATE + BaseCheckAppcompatCache@0 @145 PRIVATE + BaseCleanupAppcompatCache@0 @146 PRIVATE + BaseCleanupAppcompatCacheSupport@0 @147 PRIVATE + BaseDumpAppcompatCache@0 @148 PRIVATE + BaseFlushAppcompatCache@0 @149 + BaseInitAppcompatCache@0 @150 PRIVATE + BaseInitAppcompatCacheSupport@0 @151 PRIVATE + BaseProcessInitPostImport@0 @152 PRIVATE + BaseUpdateAppcompatCache@0 @153 PRIVATE + BasepDebugDump@0 @154 PRIVATE + Beep@8 @155 + BeginUpdateResourceA@8 @156 + BeginUpdateResourceW@8 @157 + BindIoCompletionCallback@12 @158 + BuildCommDCBA@8 @159 + BuildCommDCBAndTimeoutsA@12 @160 + BuildCommDCBAndTimeoutsW@12 @161 + BuildCommDCBW@8 @162 + CallbackMayRunLong@4 @163 + CallNamedPipeA@28 @164 + CallNamedPipeW@28 @165 + CancelDeviceWakeupRequest@0 @166 PRIVATE + CancelIo@4 @167 + CancelIoEx@8 @168 + CancelSynchronousIo@4 @169 + CancelTimerQueueTimer@8 @170 + CancelWaitableTimer@4 @171 + ChangeTimerQueueTimer@16 @172 + CheckNameLegalDOS8Dot3A@20 @173 + CheckNameLegalDOS8Dot3W@20 @174 + CheckRemoteDebuggerPresent@8 @175 + ClearCommBreak@4 @176 + ClearCommError@12 @177 + CloseConsoleHandle@4 @178 + CloseHandle@4 @179 + CloseProfileUserMapping@0 @180 + CloseSystemHandle@0 @181 PRIVATE + CloseThreadpool@4=ntdll.TpReleasePool @182 + CloseThreadpoolCleanupGroup@4=ntdll.TpReleaseCleanupGroup @183 + CloseThreadpoolCleanupGroupMembers@12=ntdll.TpReleaseCleanupGroupMembers @184 + CloseThreadpoolTimer@4=ntdll.TpReleaseTimer @185 + CloseThreadpoolWait@4=ntdll.TpReleaseWait @186 + CloseThreadpoolWork@4=ntdll.TpReleaseWork @187 + CmdBatNotification@4 @188 + CommConfigDialogA@12 @189 + CommConfigDialogW@12 @190 + CompareFileTime@8 @191 + CompareStringA@24 @192 + CompareStringW@24 @193 + CompareStringEx@36 @194 + CompareStringOrdinal@20 @195 + ConnectNamedPipe@8 @196 + ConsoleMenuControl@0 @197 PRIVATE + ConsoleSubst@0 @198 PRIVATE + ContinueDebugEvent@12 @199 + ConvertDefaultLocale@4 @200 + ConvertFiberToThread@0 @201 + ConvertThreadToFiber@4 @202 + ConvertThreadToFiberEx@8 @203 + ConvertToGlobalHandle@4 @204 + CopyFileA@12 @205 + CopyFileExA@24 @206 + CopyFileExW@24 @207 + CopyFileW@12 @208 + CopyLZFile@8=LZCopy @209 + CreateActCtxA@4 @210 + CreateActCtxW@4 @211 + CreateConsoleScreenBuffer@20 @212 + CreateDirectoryA@8 @213 + CreateDirectoryExA@12 @214 + CreateDirectoryExW@12 @215 + CreateDirectoryW@8 @216 + CreateEventA@16 @217 + CreateEventExA@16 @218 + CreateEventExW@16 @219 + CreateEventW@16 @220 + CreateFiber@12 @221 + CreateFiberEx@20 @222 + CreateFile2@20 @223 + CreateFileA@28 @224 + CreateFileMappingA@24 @225 + CreateFileMappingW@24 @226 + CreateFileW@28 @227 + CreateHardLinkA@12 @228 + CreateHardLinkTransactedA@16 @229 + CreateHardLinkTransactedW@16 @230 + CreateHardLinkW@12 @231 + CreateIoCompletionPort@16 @232 + CreateJobObjectA@8 @233 + CreateJobObjectW@8 @234 + CreateKernelThread@0 @235 PRIVATE + CreateMailslotA@16 @236 + CreateMailslotW@16 @237 + CreateMemoryResourceNotification@4 @238 + CreateMutexA@12 @239 + CreateMutexExA@16 @240 + CreateMutexExW@16 @241 + CreateMutexW@12 @242 + CreateNamedPipeA@32 @243 + CreateNamedPipeW@32 @244 + CreatePipe@16 @245 + CreateProcessA@40 @246 + CreateProcessAsUserA@44 @247 + CreateProcessAsUserW@44 @248 + CreateProcessInternalA@48 @249 + CreateProcessInternalW@48 @250 + CreateProcessW@40 @251 + CreateRemoteThread@28 @252 + CreateRemoteThreadEx@32 @253 + CreateSemaphoreA@16 @254 + CreateSemaphoreExA@24 @255 + CreateSemaphoreExW@24 @256 + CreateSemaphoreW@16 @257 + CreateSocketHandle@0 @258 + CreateSymbolicLinkA@12 @259 + CreateSymbolicLinkW@12 @260 + CreateTapePartition@16 @261 + CreateThread@24 @262 + CreateThreadpool@4 @263 + CreateThreadpoolCleanupGroup@0 @264 + CreateThreadpoolIo@16 @265 + CreateThreadpoolTimer@12 @266 + CreateThreadpoolWait@12 @267 + CreateThreadpoolWork@12 @268 + CreateTimerQueue@0 @269 + CreateTimerQueueTimer@28 @270 + CreateToolhelp32Snapshot@8 @271 + CreateVirtualBuffer@0 @272 PRIVATE + CreateWaitableTimerA@12 @273 + CreateWaitableTimerExA@16 @274 + CreateWaitableTimerExW@16 @275 + CreateWaitableTimerW@12 @276 + DeactivateActCtx@8 @277 + DebugActiveProcess@4 @278 + DebugActiveProcessStop@4 @279 + DebugBreak@0 @280 + DebugBreakProcess@4 @281 + DebugSetProcessKillOnExit@4 @282 + DecodePointer@4=ntdll.RtlDecodePointer @283 + DecodeSystemPointer@4=ntdll.RtlDecodeSystemPointer @284 + DefineDosDeviceA@12 @285 + DefineDosDeviceW@12 @286 + DelayLoadFailureHook@8 @287 + DeleteAtom@4 @288 + DeleteCriticalSection@4=ntdll.RtlDeleteCriticalSection @289 + DeleteFiber@4 @290 + DeleteFileA@4 @291 + DeleteFileW@4 @292 + DeleteProcThreadAttributeList@4 @293 + DisassociateCurrentThreadFromCallback@4=ntdll.TpDisassociateCallback @294 + DeleteTimerQueue@4 @295 + DeleteTimerQueueEx@8 @296 + DeleteTimerQueueTimer@12 @297 + DeleteVolumeMountPointA@4 @298 + DeleteVolumeMountPointW@4 @299 + DeviceIoControl@32 @300 + DisableThreadLibraryCalls@4 @301 + DisconnectNamedPipe@4 @302 + DnsHostnameToComputerNameA@12 @303 + DnsHostnameToComputerNameW@12 @304 + DosDateTimeToFileTime@12 @305 + DuplicateConsoleHandle@16 @306 + DuplicateHandle@28 @307 + EncodePointer@4=ntdll.RtlEncodePointer @308 + EncodeSystemPointer@4=ntdll.RtlEncodeSystemPointer @309 + EndUpdateResourceA@8 @310 + EndUpdateResourceW@8 @311 + EnterCriticalSection@4=ntdll.RtlEnterCriticalSection @312 + EnumCalendarInfoA@16 @313 + EnumCalendarInfoExA@16 @314 + EnumCalendarInfoExEx@24 @315 + EnumCalendarInfoExW@16 @316 + EnumCalendarInfoW@16 @317 + EnumDateFormatsA@12 @318 + EnumDateFormatsExA@12 @319 + EnumDateFormatsExEx@16 @320 + EnumDateFormatsExW@12 @321 + EnumDateFormatsW@12 @322 + EnumLanguageGroupLocalesA@16 @323 + EnumLanguageGroupLocalesW@16 @324 + EnumResourceLanguagesA@20 @325 + EnumResourceLanguagesExA@28 @326 + EnumResourceLanguagesExW@28 @327 + EnumResourceLanguagesW@20 @328 + EnumResourceNamesA@16 @329 + EnumResourceNamesW@16 @330 + EnumResourceTypesA@12 @331 + EnumResourceTypesW@12 @332 + EnumSystemCodePagesA@8 @333 + EnumSystemCodePagesW@8 @334 + EnumSystemGeoID@12 @335 + EnumSystemLanguageGroupsA@12 @336 + EnumSystemLanguageGroupsW@12 @337 + EnumSystemLocalesA@8 @338 + EnumSystemLocalesEx@16 @339 + EnumSystemLocalesW@8 @340 + EnumTimeFormatsA@12 @341 + EnumTimeFormatsEx@16 @342 + EnumTimeFormatsW@12 @343 + EnumUILanguagesA@12 @344 + EnumUILanguagesW@12 @345 + EraseTape@12 @346 + EscapeCommFunction@8 @347 + ExitProcess@4 @348 + ExitThread@4 @349 + ExitVDM@0 @350 PRIVATE + ExpandEnvironmentStringsA@12 @351 + ExpandEnvironmentStringsW@12 @352 + ExpungeConsoleCommandHistoryA@4 @353 + ExpungeConsoleCommandHistoryW@4 @354 + ExtendVirtualBuffer@0 @355 PRIVATE + FT_Exit0@0=krnl386.exe16.FT_Exit0 @356 PRIVATE + FT_Exit12@0=krnl386.exe16.FT_Exit12 @357 PRIVATE + FT_Exit16@0=krnl386.exe16.FT_Exit16 @358 PRIVATE + FT_Exit20@0=krnl386.exe16.FT_Exit20 @359 PRIVATE + FT_Exit24@0=krnl386.exe16.FT_Exit24 @360 PRIVATE + FT_Exit28@0=krnl386.exe16.FT_Exit28 @361 PRIVATE + FT_Exit32@0=krnl386.exe16.FT_Exit32 @362 PRIVATE + FT_Exit36@0=krnl386.exe16.FT_Exit36 @363 PRIVATE + FT_Exit40@0=krnl386.exe16.FT_Exit40 @364 PRIVATE + FT_Exit44@0=krnl386.exe16.FT_Exit44 @365 PRIVATE + FT_Exit48@0=krnl386.exe16.FT_Exit48 @366 PRIVATE + FT_Exit4@0=krnl386.exe16.FT_Exit4 @367 PRIVATE + FT_Exit52@0=krnl386.exe16.FT_Exit52 @368 PRIVATE + FT_Exit56@0=krnl386.exe16.FT_Exit56 @369 PRIVATE + FT_Exit8@0=krnl386.exe16.FT_Exit8 @370 PRIVATE + FT_Prolog@0=krnl386.exe16.FT_Prolog @371 PRIVATE + FT_Thunk@0=krnl386.exe16.FT_Thunk @372 PRIVATE + FatalAppExitA@8 @373 + FatalAppExitW@8 @374 + FatalExit@4 @375 + FileTimeToDosDateTime@12 @376 + FileTimeToLocalFileTime@8 @377 + FileTimeToSystemTime@8 @378 + FillConsoleOutputAttribute@20 @379 + FillConsoleOutputCharacterA@20 @380 + FillConsoleOutputCharacterW@20 @381 + FindActCtxSectionGuid@20 @382 + FindActCtxSectionStringA@20 @383 + FindActCtxSectionStringW@20 @384 + FindAtomA@4 @385 + FindAtomW@4 @386 + FindClose@4 @387 + FindCloseChangeNotification@4 @388 + FindFirstChangeNotificationA@12 @389 + FindFirstChangeNotificationW@12 @390 + FindFirstFileA@8 @391 + FindFirstFileExA@24 @392 + FindFirstFileExW@24 @393 + FindFirstFileW@8 @394 + FindFirstVolumeA@8 @395 + FindFirstVolumeMountPointA@12 @396 + FindFirstVolumeMountPointW@12 @397 + FindFirstVolumeW@8 @398 + FindNextChangeNotification@4 @399 + FindNextFileA@8 @400 + FindNextFileW@8 @401 + FindNextVolumeA@12 @402 + FindNextVolumeMountPointA@0 @403 PRIVATE + FindNextVolumeMountPointW@0 @404 PRIVATE + FindNextVolumeW@12 @405 + FindNLSStringEx@40 @406 + FindResourceA@12 @407 + FindResourceExA@16 @408 + FindResourceExW@16 @409 + FindResourceW@12 @410 + FindStringOrdinal@24 @411 + FindVolumeClose@4 @412 + FindVolumeMountPointClose@4 @413 + FlsAlloc@4 @414 + FlsFree@4 @415 + FlsGetValue@4 @416 + FlsSetValue@8 @417 + FlushConsoleInputBuffer@4 @418 + FlushFileBuffers@4 @419 + FlushInstructionCache@12 @420 + FlushProcessWriteBuffers@0 @421 + FlushViewOfFile@8 @422 + FoldStringA@20 @423 + FoldStringW@20 @424 + FormatMessageA@28 @425 + FormatMessageW@28 @426 + FreeConsole@0 @427 + FreeEnvironmentStringsA@4 @428 + FreeEnvironmentStringsW@4 @429 + FreeLSCallback@0 @430 PRIVATE + FreeLibrary@4 @431 + FreeLibraryAndExitThread@8 @432 + FreeLibraryWhenCallbackReturns@8=ntdll.TpCallbackUnloadDllOnCompletion @433 + FreeResource@4 @434 + FreeSLCallback@4=krnl386.exe16.FreeSLCallback @435 PRIVATE + FreeUserPhysicalPages@12 @436 + FreeVirtualBuffer@0 @437 PRIVATE + GenerateConsoleCtrlEvent@8 @438 + Get16DLLAddress@8=krnl386.exe16.Get16DLLAddress @439 PRIVATE + GetACP@0 @440 + GetActiveProcessorCount@4 @441 + GetActiveProcessorGroupCount@0 @442 + GetApplicationRestartSettings@16 @443 + GetAtomNameA@12 @444 + GetAtomNameW@12 @445 + GetBinaryType@8=GetBinaryTypeA @446 + GetBinaryTypeA@8 @447 + GetBinaryTypeW@8 @448 + GetCPInfo@8 @449 + GetCPInfoExA@12 @450 + GetCPInfoExW@12 @451 + GetCalendarInfoA@24 @452 + GetCalendarInfoW@24 @453 + GetCalendarInfoEx@28 @454 + GetCommConfig@12 @455 + GetCommMask@8 @456 + GetCommModemStatus@8 @457 + GetCommProperties@8 @458 + GetCommState@8 @459 + GetCommTimeouts@8 @460 + GetCommandLineA@0 @461 + GetCommandLineW@0 @462 + GetCompressedFileSizeA@8 @463 + GetCompressedFileSizeW@8 @464 + GetComputerNameA@8 @465 + GetComputerNameExA@12 @466 + GetComputerNameExW@12 @467 + GetComputerNameW@8 @468 + GetConsoleAliasA@0 @469 PRIVATE + GetConsoleAliasExesA@0 @470 PRIVATE + GetConsoleAliasExesLengthA@0 @471 + GetConsoleAliasExesLengthW@0 @472 + GetConsoleAliasExesW@0 @473 PRIVATE + GetConsoleAliasW@16 @474 + GetConsoleAliasesA@0 @475 PRIVATE + GetConsoleAliasesLengthA@4 @476 + GetConsoleAliasesLengthW@4 @477 + GetConsoleAliasesW@0 @478 PRIVATE + GetConsoleCP@0 @479 + GetConsoleCharType@0 @480 PRIVATE + GetConsoleCommandHistoryA@12 @481 + GetConsoleCommandHistoryLengthA@4 @482 + GetConsoleCommandHistoryLengthW@4 @483 + GetConsoleCommandHistoryW@12 @484 + GetConsoleCursorInfo@8 @485 + GetConsoleCursorMode@0 @486 PRIVATE + GetConsoleDisplayMode@4 @487 + GetConsoleFontInfo@16 @488 + GetConsoleFontSize@8 @489 + GetConsoleHardwareState@0 @490 PRIVATE + GetConsoleInputExeNameA@8 @491 + GetConsoleInputExeNameW@8 @492 + GetConsoleInputWaitHandle@0 @493 + GetConsoleKeyboardLayoutNameA@4 @494 + GetConsoleKeyboardLayoutNameW@4 @495 + GetConsoleMode@8 @496 + GetConsoleNlsMode@0 @497 PRIVATE + GetConsoleOutputCP@0 @498 + GetConsoleProcessList@8 @499 + GetConsoleScreenBufferInfo@8 @500 + GetConsoleScreenBufferInfoEx@8 @501 + GetConsoleTitleA@8 @502 + GetConsoleTitleW@8 @503 + GetConsoleWindow@0 @504 + GetCurrencyFormatA@24 @505 + GetCurrencyFormatEx@24 @506 + GetCurrencyFormatW@24 @507 + GetCurrentActCtx@4 @508 + GetCurrentConsoleFont@12 @509 + GetCurrentDirectoryA@8 @510 + GetCurrentDirectoryW@8 @511 + GetCurrentPackageFamilyName@8 @512 + GetCurrentPackageFullName@8 @513 + GetCurrentPackageId@8 @514 + GetCurrentProcess@0 @515 + GetCurrentProcessId@0 @516 + GetCurrentProcessorNumber@0=ntdll.NtGetCurrentProcessorNumber @517 + GetCurrentProcessorNumberEx@4=ntdll.RtlGetCurrentProcessorNumberEx @518 + GetCurrentThread@0 @519 + GetCurrentThreadId@0 @520 + GetCurrentThreadStackLimits@8 @521 + GetDateFormatA@24 @522 + GetDateFormatEx@28 @523 + GetDateFormatW@24 @524 + GetDaylightFlag@0 @525 + GetDefaultCommConfigA@12 @526 + GetDefaultCommConfigW@12 @527 + GetDefaultSortkeySize@0 @528 PRIVATE + GetDevicePowerState@8 @529 + GetDiskFreeSpaceA@20 @530 + GetDiskFreeSpaceExA@16 @531 + GetDiskFreeSpaceExW@16 @532 + GetDiskFreeSpaceW@20 @533 + GetDllDirectoryA@8 @534 + GetDllDirectoryW@8 @535 + GetDriveTypeA@4 @536 + GetDriveTypeW@4 @537 + GetDynamicTimeZoneInformation@4 @538 + GetDynamicTimeZoneInformationEffectiveYears@12 @539 + GetEnabledXStateFeatures@0 @540 + GetEnvironmentStrings@0=GetEnvironmentStringsA @541 + GetEnvironmentStringsA@0 @542 + GetEnvironmentStringsW@0 @543 + GetEnvironmentVariableA@12 @544 + GetEnvironmentVariableW@12 @545 + GetErrorMode@0 @546 + GetExitCodeProcess@8 @547 + GetExitCodeThread@8 @548 + GetExpandedNameA@8 @549 + GetExpandedNameW@8 @550 + GetFileAttributesA@4 @551 + GetFileAttributesExA@12 @552 + GetFileAttributesExW@12 @553 + GetFileAttributesW@4 @554 + GetFileInformationByHandle@8 @555 + GetFileInformationByHandleEx@16 @556 + GetFileMUIInfo@16 @557 + GetFileMUIPath@28 @558 + GetFileSize@8 @559 + GetFileSizeEx@8 @560 + GetFileTime@16 @561 + GetFileType@4 @562 + GetFinalPathNameByHandleA@16 @563 + GetFinalPathNameByHandleW@16 @564 + GetFirmwareEnvironmentVariableA@16 @565 + GetFirmwareEnvironmentVariableW@16 @566 + GetFullPathNameA@16 @567 + GetFullPathNameW@16 @568 + GetGeoInfoA@20 @569 + GetGeoInfoW@20 @570 + GetHandleContext@4 @571 + GetHandleInformation@8 @572 + GetLSCallbackTarget@0 @573 PRIVATE + GetLSCallbackTemplate@0 @574 PRIVATE + GetLargePageMinimum@0 @575 + GetLargestConsoleWindowSize@4 @576 + GetLastError@0 @577 + GetLinguistLangSize@0 @578 PRIVATE + GetLocalTime@4 @579 + GetLocaleInfoA@16 @580 + GetLocaleInfoW@16 @581 + GetLocaleInfoEx@16 @582 + GetLogicalDriveStringsA@8 @583 + GetLogicalDriveStringsW@8 @584 + GetLogicalDrives@0 @585 + GetLogicalProcessorInformation@8 @586 + GetLogicalProcessorInformationEx@12 @587 + GetLongPathNameA@12 @588 + GetLongPathNameW@12 @589 + GetMailslotInfo@20 @590 + GetMaximumProcessorCount@4 @591 + GetMaximumProcessorGroupCount@0 @592 + GetModuleFileNameA@12 @593 + GetModuleFileNameW@12 @594 + GetModuleHandleA@4 @595 + GetModuleHandleExA@12 @596 + GetModuleHandleExW@12 @597 + GetModuleHandleW@4 @598 + GetNamedPipeClientProcessId@8 @599 + GetNamedPipeClientSessionId@8 @600 + GetNamedPipeHandleStateA@28 @601 + GetNamedPipeHandleStateW@28 @602 + GetNamedPipeInfo@20 @603 + GetNamedPipeServerProcessId@8 @604 + GetNamedPipeServerSessionId@8 @605 + GetNativeSystemInfo@4 @606 + GetNextVDMCommand@0 @607 PRIVATE + GetNlsSectionName@0 @608 PRIVATE + GetNumaAvailableMemoryNode@8 @609 + GetNumaHighestNodeNumber@4 @610 + GetNumaNodeProcessorMask@8 @611 + GetNumaNodeProcessorMaskEx@8 @612 + GetNumaProcessorNode@8 @613 + GetNumberFormatA@24 @614 + GetNumberFormatEx@24 @615 + GetNumberFormatW@24 @616 + GetNumberOfConsoleFonts@0 @617 + GetNumberOfConsoleInputEvents@8 @618 + GetNumberOfConsoleMouseButtons@4 @619 + GetOEMCP@0 @620 + GetOverlappedResult@16 @621 + GetUserPreferredUILanguages@16 @622 + GetPackageFullName@12 @623 + GetPhysicallyInstalledSystemMemory@4 @624 + GetPriorityClass@4 @625 + GetPrivateProfileIntA@16 @626 + GetPrivateProfileIntW@16 @627 + GetPrivateProfileSectionA@16 @628 + GetPrivateProfileSectionNamesA@12 @629 + GetPrivateProfileSectionNamesW@12 @630 + GetPrivateProfileSectionW@16 @631 + GetPrivateProfileStringA@24 @632 + GetPrivateProfileStringW@24 @633 + GetPrivateProfileStructA@20 @634 + GetPrivateProfileStructW@20 @635 + GetProcAddress@8 @636 + GetProcessAffinityMask@12 @637 + GetProcessDEPPolicy@12 @638 + GetProcessFlags@4 @639 + GetProcessHandleCount@8 @640 + GetProcessHeap@0 @641 + GetProcessHeaps@8 @642 + GetProcessId@4 @643 + GetProcessIdOfThread@4 @644 + GetProcessIoCounters@8 @645 + GetProcessMitigationPolicy@16 @646 + GetProcessPriorityBoost@8 @647 + GetProcessShutdownParameters@8 @648 + GetProcessTimes@20 @649 + GetProcessVersion@4 @650 + GetProcessWorkingSetSize@12 @651 + GetProcessWorkingSetSizeEx@16 @652 + GetProductInfo@20 @653 + GetProductName@0 @654 PRIVATE + GetProfileIntA@12 @655 + GetProfileIntW@12 @656 + GetProfileSectionA@12 @657 + GetProfileSectionW@12 @658 + GetProfileStringA@20 @659 + GetProfileStringW@20 @660 + GetQueuedCompletionStatus@20 @661 + GetQueuedCompletionStatusEx@24 @662 + GetSLCallbackTarget@0 @663 PRIVATE + GetSLCallbackTemplate@0 @664 PRIVATE + GetShortPathNameA@12 @665 + GetShortPathNameW@12 @666 + GetStartupInfoA@4 @667 + GetStartupInfoW@4 @668 + GetStdHandle@4 @669 + GetStringTypeA@20 @670 + GetStringTypeExA@20 @671 + GetStringTypeExW@20 @672 + GetStringTypeW@16 @673 + GetSystemFileCacheSize@12 @674 + GetSystemDefaultLCID@0 @675 + GetSystemDefaultLangID@0 @676 + GetSystemDefaultLocaleName@8 @677 + GetSystemDefaultUILanguage@0 @678 + GetSystemDEPPolicy@0 @679 + GetSystemDirectoryA@8 @680 + GetSystemDirectoryW@8 @681 + GetSystemFirmwareTable@16 @682 + GetSystemInfo@4 @683 + GetSystemPowerStatus@4 @684 + GetSystemPreferredUILanguages@16 @685 + GetSystemRegistryQuota@8 @686 + GetSystemTime@4 @687 + GetSystemTimeAdjustment@12 @688 + GetSystemTimeAsFileTime@4 @689 + GetSystemTimePreciseAsFileTime@4 @690 + GetSystemTimes@12 @691 + GetSystemWindowsDirectoryA@8 @692 + GetSystemWindowsDirectoryW@8 @693 + GetSystemWow64DirectoryA@8 @694 + GetSystemWow64DirectoryW@8 @695 + GetTapeParameters@16 @696 + GetTapePosition@20 @697 + GetTapeStatus@4 @698 + GetTempFileNameA@16 @699 + GetTempFileNameW@16 @700 + GetTempPathA@8 @701 + GetTempPathW@8 @702 + GetThreadContext@8 @703 + GetThreadErrorMode@0 @704 + GetThreadGroupAffinity@8 @705 + GetThreadId@4 @706 + GetThreadIOPendingFlag@8 @707 + GetThreadLocale@0 @708 + GetThreadPreferredUILanguages@16 @709 + GetThreadPriority@4 @710 + GetThreadPriorityBoost@8 @711 + GetThreadSelectorEntry@12 @712 + GetThreadTimes@20 @713 + GetTickCount@0 @714 + GetTickCount64@0 @715 + GetTimeFormatA@24 @716 + GetTimeFormatEx@24 @717 + GetTimeFormatW@24 @718 + GetTimeZoneInformation@4 @719 + GetTimeZoneInformationForYear@12 @720 + GetThreadUILanguage@0 @721 + GetUserDefaultLCID@0 @722 + GetUserDefaultLangID@0 @723 + GetUserDefaultLocaleName@8 @724 + GetUserDefaultUILanguage@0 @725 + GetUserGeoID@4 @726 + GetVDMCurrentDirectories@0 @727 PRIVATE + GetVersion@0 @728 + GetVersionExA@4 @729 + GetVersionExW@4 @730 + GetVolumeInformationA@32 @731 + GetVolumeInformationByHandleW@32 @732 + GetVolumeInformationW@32 @733 + GetVolumeNameForVolumeMountPointA@12 @734 + GetVolumeNameForVolumeMountPointW@12 @735 + GetVolumePathNameA@12 @736 + GetVolumePathNameW@12 @737 + GetVolumePathNamesForVolumeNameA@16 @738 + GetVolumePathNamesForVolumeNameW@16 @739 + GetWindowsDirectoryA@8 @740 + GetWindowsDirectoryW@8 @741 + GetWriteWatch@24 @742 + GlobalAddAtomA@4 @743 + GlobalAddAtomW@4 @744 + GlobalAlloc@8 @745 + GlobalCompact@4 @746 + GlobalDeleteAtom@4 @747 + GlobalFindAtomA@4 @748 + GlobalFindAtomW@4 @749 + GlobalFix@4 @750 + GlobalFlags@4 @751 + GlobalFree@4 @752 + GlobalGetAtomNameA@12 @753 + GlobalGetAtomNameW@12 @754 + GlobalHandle@4 @755 + GlobalLock@4 @756 + GlobalMemoryStatus@4 @757 + GlobalMemoryStatusEx@4 @758 + GlobalReAlloc@12 @759 + GlobalSize@4 @760 + GlobalUnWire@4 @761 + GlobalUnfix@4 @762 + GlobalUnlock@4 @763 + GlobalWire@4 @764 + Heap32First@0 @765 PRIVATE + Heap32ListFirst@8 @766 + Heap32ListNext@0 @767 PRIVATE + Heap32Next@0 @768 PRIVATE + HeapAlloc@12=ntdll.RtlAllocateHeap @769 + HeapCompact@8 @770 + HeapCreate@12 @771 + HeapCreateTagsW@0 @772 PRIVATE + HeapDestroy@4 @773 + HeapExtend@0 @774 PRIVATE + HeapFree@12=ntdll.RtlFreeHeap @775 + HeapLock@4 @776 + HeapQueryInformation@20 @777 + HeapQueryTagW@0 @778 PRIVATE + HeapReAlloc@16=ntdll.RtlReAllocateHeap @779 + HeapSetFlags@0 @780 PRIVATE + HeapSetInformation@16 @781 + HeapSize@12=ntdll.RtlSizeHeap @782 + HeapSummary@0 @783 PRIVATE + HeapUnlock@4 @784 + HeapUsage@0 @785 PRIVATE + HeapValidate@12 @786 + HeapWalk@8 @787 + IdnToAscii@20 @788 + IdnToNameprepUnicode@20 @789 + IdnToUnicode@20 @790 + InitAtomTable@4 @791 + InitOnceBeginInitialize@16 @792 + InitOnceComplete@12 @793 + InitOnceExecuteOnce@16 @794 + InitOnceInitialize@4=ntdll.RtlRunOnceInitialize @795 + InitializeConditionVariable@4=ntdll.RtlInitializeConditionVariable @796 + InitializeCriticalSection@4 @797 + InitializeCriticalSectionAndSpinCount@8 @798 + InitializeCriticalSectionEx@12 @799 + InitializeProcThreadAttributeList@16 @800 + InitializeSListHead@4=ntdll.RtlInitializeSListHead @801 + InitializeSRWLock@4=ntdll.RtlInitializeSRWLock @802 + InterlockedCompareExchange@12 @803 + InterlockedCompareExchange64@20=ntdll.RtlInterlockedCompareExchange64 @804 + InterlockedDecrement@4 @805 + InterlockedExchange@8 @806 + InterlockedExchangeAdd@8 @807 + InterlockedFlushSList@4=ntdll.RtlInterlockedFlushSList @808 + InterlockedIncrement@4 @809 + InterlockedPopEntrySList@4=ntdll.RtlInterlockedPopEntrySList @810 + InterlockedPushEntrySList@8=ntdll.RtlInterlockedPushEntrySList @811 + InterlockedPushListSList@16=ntdll.RtlInterlockedPushListSList @812 + InterlockedPushListSListEx@16=ntdll.RtlInterlockedPushListSListEx @813 + InvalidateConsoleDIBits@0 @814 PRIVATE + InvalidateNLSCache@0 @815 + IsBadCodePtr@4 @816 + IsBadHugeReadPtr@8 @817 + IsBadHugeWritePtr@8 @818 + IsBadReadPtr@8 @819 + IsBadStringPtrA@8 @820 + IsBadStringPtrW@8 @821 + IsBadWritePtr@8 @822 + IsDBCSLeadByte@4 @823 + IsDBCSLeadByteEx@8 @824 + IsDebuggerPresent@0 @825 + IsLSCallback@0 @826 PRIVATE + IsNormalizedString@12 @827 + IsProcessInJob@12 @828 + IsProcessorFeaturePresent@4 @829 + IsSLCallback@0 @830 PRIVATE + IsSystemResumeAutomatic@0 @831 + IsThreadAFiber@0 @832 + IsThreadpoolTimerSet@4=ntdll.TpIsTimerSet @833 + IsValidCodePage@4 @834 + IsValidLanguageGroup@8 @835 + IsValidLocale@8 @836 + IsValidLocaleName@4 @837 + IsWow64Process@8 @838 + K32EmptyWorkingSet@4 @839 + K32EnumDeviceDrivers@12 @840 + K32EnumPageFilesA@8 @841 + K32EnumPageFilesW@8 @842 + K32EnumProcessModules@16 @843 + K32EnumProcessModulesEx@20 @844 + K32EnumProcesses@12 @845 + K32GetDeviceDriverBaseNameA@12 @846 + K32GetDeviceDriverBaseNameW@12 @847 + K32GetDeviceDriverFileNameA@12 @848 + K32GetDeviceDriverFileNameW@12 @849 + K32GetMappedFileNameA@16 @850 + K32GetMappedFileNameW@16 @851 + K32GetModuleBaseNameA@16 @852 + K32GetModuleBaseNameW@16 @853 + K32GetModuleFileNameExA@16 @854 + K32GetModuleFileNameExW@16 @855 + K32GetModuleInformation@16 @856 + K32GetPerformanceInfo@8 @857 + K32GetProcessImageFileNameA@12 @858 + K32GetProcessImageFileNameW@12 @859 + K32GetProcessMemoryInfo@12 @860 + K32GetWsChanges@12 @861 + K32InitializeProcessForWsWatch@4 @862 + K32QueryWorkingSet@12 @863 + K32QueryWorkingSetEx@12 @864 + K32Thk1632Epilog@0=krnl386.exe16.K32Thk1632Epilog @865 PRIVATE + K32Thk1632Prolog@0=krnl386.exe16.K32Thk1632Prolog @866 PRIVATE + LCIDToLocaleName@16 @867 + LCMapStringA@24 @868 + LCMapStringEx@36 @869 + LCMapStringW@24 @870 + LZClose@4 @871 + LZCopy@8 @872 + LZDone@0 @873 + LZInit@4 @874 + LZOpenFileA@12 @875 + LZOpenFileW@12 @876 + LZRead@12 @877 + LZSeek@12 @878 + LZStart@0 @879 + LeaveCriticalSection@4=ntdll.RtlLeaveCriticalSection @880 + LeaveCriticalSectionWhenCallbackReturns@8=ntdll.TpCallbackLeaveCriticalSectionOnCompletion @881 + LoadLibraryA@4 @882 + LoadLibraryExA@12 @883 + LoadLibraryExW@12 @884 + LoadLibraryW@4 @885 + LoadModule@8 @886 + LoadResource@8 @887 + LocalAlloc@8 @888 + LocalCompact@4 @889 + LocalFileTimeToFileTime@8 @890 + LocalFlags@4 @891 + LocalFree@4 @892 + LocalHandle@4 @893 + LocalLock@4 @894 + LocalReAlloc@12 @895 + LocalShrink@8 @896 + LocalSize@4 @897 + LocalUnlock@4 @898 + LocaleNameToLCID@8 @899 + LockFile@20 @900 + LockFileEx@24 @901 + LockResource@4 @902 + MakeCriticalSectionGlobal@4 @903 + MapHInstLS@0=krnl386.exe16.MapHInstLS @904 PRIVATE + MapHInstLS_PN@0=krnl386.exe16.MapHInstLS_PN @905 PRIVATE + MapHInstSL@0=krnl386.exe16.MapHInstSL @906 PRIVATE + MapHInstSL_PN@0=krnl386.exe16.MapHInstSL_PN @907 PRIVATE + MapHModuleLS@4=krnl386.exe16.MapHModuleLS @908 PRIVATE + MapHModuleSL@4=krnl386.exe16.MapHModuleSL @909 PRIVATE + MapLS@4=krnl386.exe16.MapLS @910 PRIVATE + MapSL@4=krnl386.exe16.MapSL @911 PRIVATE + MapSLFix@4=krnl386.exe16.MapSLFix @912 PRIVATE + MapViewOfFile@20 @913 + MapViewOfFileEx@24 @914 + Module32First@8 @915 + Module32FirstW@8 @916 + Module32Next@8 @917 + Module32NextW@8 @918 + MoveFileA@8 @919 + MoveFileExA@12 @920 + MoveFileExW@12 @921 + MoveFileTransactedA@24 @922 + MoveFileTransactedW@24 @923 + MoveFileW@8 @924 + MoveFileWithProgressA@20 @925 + MoveFileWithProgressW@20 @926 + MulDiv@12 @927 + MultiByteToWideChar@24 @928 + NeedCurrentDirectoryForExePathA@4 @929 + NeedCurrentDirectoryForExePathW@4 @930 + NormalizeString@20 @931 + NotifyNLSUserCache@0 @932 PRIVATE + OpenConsoleW@16 @933 + OpenDataFile@0 @934 PRIVATE + OpenEventA@12 @935 + OpenEventW@12 @936 + OpenFile@12 @937 + OpenFileById@24 @938 + OpenFileMappingA@12 @939 + OpenFileMappingW@12 @940 + OpenJobObjectA@12 @941 + OpenJobObjectW@12 @942 + OpenMutexA@12 @943 + OpenMutexW@12 @944 + OpenProcess@12 @945 + OpenProfileUserMapping@0 @946 + OpenSemaphoreA@12 @947 + OpenSemaphoreW@12 @948 + OpenThread@12 @949 + OpenVxDHandle@4 @950 + OpenWaitableTimerA@12 @951 + OpenWaitableTimerW@12 @952 + OutputDebugStringA@4 @953 + OutputDebugStringW@4 @954 + PeekConsoleInputA@16 @955 + PeekConsoleInputW@16 @956 + PeekNamedPipe@24 @957 + PostQueuedCompletionStatus@16 @958 + PowerClearRequest@8 @959 + PowerCreateRequest@4 @960 + PowerSetRequest@8 @961 + PrepareTape@12 @962 + PrivCopyFileExW@0 @963 PRIVATE + PrivMoveFileIdentityW@0 @964 PRIVATE + PrivateFreeLibrary@4=krnl386.exe16.PrivateFreeLibrary @965 PRIVATE + PrivateLoadLibrary@4=krnl386.exe16.PrivateLoadLibrary @966 PRIVATE + Process32First@8 @967 + Process32FirstW@8 @968 + Process32Next@8 @969 + Process32NextW@8 @970 + ProcessIdToSessionId@8 @971 + PulseEvent@4 @972 + PurgeComm@8 @973 + QT_Thunk@0=krnl386.exe16.QT_Thunk @974 PRIVATE + QueryActCtxSettingsW@28 @975 + QueryActCtxW@28 @976 + QueryDepthSList@4=ntdll.RtlQueryDepthSList @977 + QueryDosDeviceA@12 @978 + QueryDosDeviceW@12 @979 + QueryFullProcessImageNameA@16 @980 + QueryFullProcessImageNameW@16 @981 + QueryInformationJobObject@20 @982 + QueryMemoryResourceNotification@8 @983 + QueryNumberOfEventLogRecords@0 @984 PRIVATE + QueryOldestEventLogRecord@0 @985 PRIVATE + QueryPerformanceCounter@4 @986 + QueryPerformanceFrequency@4 @987 + QueryProcessCycleTime@8 @988 + QueryThreadCycleTime@8 @989 + QueryUnbiasedInterruptTime@4 @990 + QueryWin31IniFilesMappedToRegistry@0 @991 PRIVATE + QueueUserAPC@12 @992 + QueueUserWorkItem@12 @993 + RaiseException@16 @994 + ReadConsoleA@20 @995 + ReadConsoleInputA@16 @996 + ReadConsoleInputExA@0 @997 PRIVATE + ReadConsoleInputExW@0 @998 PRIVATE + ReadConsoleInputW@16 @999 + ReadConsoleOutputA@20 @1000 + ReadConsoleOutputAttribute@20 @1001 + ReadConsoleOutputCharacterA@20 @1002 + ReadConsoleOutputCharacterW@20 @1003 + ReadConsoleOutputW@20 @1004 + ReadConsoleW@20 @1005 + ReadDirectoryChangesW@32 @1006 + ReadFile@20 @1007 + ReadFileEx@20 @1008 + ReadFileScatter@20 @1009 + ReadProcessMemory@20 @1010 + RegCloseKey@4=advapi32.RegCloseKey @1011 PRIVATE + RegCreateKeyExA@36=advapi32.RegCreateKeyExA @1012 PRIVATE + RegCreateKeyExW@36=advapi32.RegCreateKeyExW @1013 PRIVATE + RegDeleteKeyExA@16=advapi32.RegDeleteKeyExA @1014 PRIVATE + RegDeleteKeyExW@16=advapi32.RegDeleteKeyExW @1015 PRIVATE + RegDeleteTreeA@8=advapi32.RegDeleteTreeA @1016 PRIVATE + RegDeleteTreeW@8=advapi32.RegDeleteTreeW @1017 PRIVATE + RegDeleteValueA@8=advapi32.RegDeleteValueA @1018 PRIVATE + RegDeleteValueW@8=advapi32.RegDeleteValueW @1019 PRIVATE + RegEnumKeyExA@32=advapi32.RegEnumKeyExA @1020 PRIVATE + RegEnumKeyExW@32=advapi32.RegEnumKeyExW @1021 PRIVATE + RegEnumValueA@32=advapi32.RegEnumValueA @1022 PRIVATE + RegEnumValueW@32=advapi32.RegEnumValueW @1023 PRIVATE + RegFlushKey@4=advapi32.RegFlushKey @1024 PRIVATE + RegGetKeySecurity@16=advapi32.RegGetKeySecurity @1025 PRIVATE + RegGetValueA@28=advapi32.RegGetValueA @1026 PRIVATE + RegGetValueW@28=advapi32.RegGetValueW @1027 PRIVATE + RegLoadKeyA@12=advapi32.RegLoadKeyA @1028 PRIVATE + RegLoadKeyW@12=advapi32.RegLoadKeyW @1029 PRIVATE + RegLoadMUIStringA@28=advapi32.RegLoadMUIStringA @1030 PRIVATE + RegLoadMUIStringW@28=advapi32.RegLoadMUIStringW @1031 PRIVATE + RegNotifyChangeKeyValue@20=advapi32.RegNotifyChangeKeyValue @1032 PRIVATE + RegOpenCurrentUser@8=advapi32.RegOpenCurrentUser @1033 PRIVATE + RegOpenKeyExA@20=advapi32.RegOpenKeyExA @1034 PRIVATE + RegOpenKeyExW@20=advapi32.RegOpenKeyExW @1035 PRIVATE + RegOpenUserClassesRoot@16=advapi32.RegOpenUserClassesRoot @1036 PRIVATE + RegQueryInfoKeyA@48=advapi32.RegQueryInfoKeyA @1037 PRIVATE + RegQueryInfoKeyW@48=advapi32.RegQueryInfoKeyW @1038 PRIVATE + RegQueryValueExA@24=advapi32.RegQueryValueExA @1039 PRIVATE + RegQueryValueExW@24=advapi32.RegQueryValueExW @1040 PRIVATE + RegRestoreKeyA@12=advapi32.RegRestoreKeyA @1041 PRIVATE + RegRestoreKeyW@12=advapi32.RegRestoreKeyW @1042 PRIVATE + RegSetKeySecurity@12=advapi32.RegSetKeySecurity @1043 PRIVATE + RegSetValueExA@24=advapi32.RegSetValueExA @1044 PRIVATE + RegSetValueExW@24=advapi32.RegSetValueExW @1045 PRIVATE + RegUnLoadKeyA@8=advapi32.RegUnLoadKeyA @1046 PRIVATE + RegUnLoadKeyW@8=advapi32.RegUnLoadKeyW @1047 PRIVATE + RegisterApplicationRecoveryCallback@16 @1048 + RegisterApplicationRestart@8 @1049 + RegisterConsoleIME@0 @1050 PRIVATE + RegisterConsoleOS2@0 @1051 PRIVATE + RegisterConsoleVDM@0 @1052 PRIVATE + RegisterServiceProcess@8 @1053 + RegisterSysMsgHandler@0 @1054 PRIVATE + RegisterWaitForInputIdle@0 @1055 PRIVATE + RegisterWaitForSingleObject@24 @1056 + RegisterWaitForSingleObjectEx@20 @1057 + RegisterWowBaseHandlers@0 @1058 PRIVATE + RegisterWowExec@0 @1059 PRIVATE + ReinitializeCriticalSection@4 @1060 + ReleaseActCtx@4 @1061 + ReleaseMutex@4 @1062 + ReleaseMutexWhenCallbackReturns@8=ntdll.TpCallbackReleaseMutexOnCompletion @1063 + ReleaseSemaphore@12 @1064 + ReleaseSemaphoreWhenCallbackReturns@12=ntdll.TpCallbackReleaseSemaphoreOnCompletion @1065 + ReleaseSRWLockExclusive@4=ntdll.RtlReleaseSRWLockExclusive @1066 + ReleaseSRWLockShared@4=ntdll.RtlReleaseSRWLockShared @1067 + RemoveDirectoryA@4 @1068 + RemoveDirectoryW@4 @1069 + RemoveVectoredContinueHandler@4=ntdll.RtlRemoveVectoredContinueHandler @1070 + RemoveVectoredExceptionHandler@4=ntdll.RtlRemoveVectoredExceptionHandler @1071 + ReOpenFile@16 @1072 + ReplaceFile@24=ReplaceFileW @1073 + ReplaceFileA@24 @1074 + ReplaceFileW@24 @1075 + RemoveDllDirectory@4 @1076 + RequestDeviceWakeup@4 @1077 + RequestWakeupLatency@4 @1078 + ResetEvent@4 @1079 + ResetWriteWatch@8 @1080 + ResolveDelayLoadedAPI@24=ntdll.LdrResolveDelayLoadedAPI @1081 + ResolveLocaleName@12 @1082 + RestoreLastError@4=ntdll.RtlRestoreLastWin32Error @1083 + ResumeThread@4 @1084 + RtlCaptureContext@4=ntdll.RtlCaptureContext @1085 + RtlCaptureStackBackTrace@16=ntdll.RtlCaptureStackBackTrace @1086 + RtlFillMemory@12=ntdll.RtlFillMemory @1087 + RtlMoveMemory@12=ntdll.RtlMoveMemory @1088 + RtlUnwind@16=ntdll.RtlUnwind @1089 + RtlZeroMemory@8=ntdll.RtlZeroMemory @1090 + SMapLS@0=krnl386.exe16.SMapLS @1091 PRIVATE + SMapLS_IP_EBP_12@0=krnl386.exe16.SMapLS_IP_EBP_12 @1092 PRIVATE + SMapLS_IP_EBP_16@0=krnl386.exe16.SMapLS_IP_EBP_16 @1093 PRIVATE + SMapLS_IP_EBP_20@0=krnl386.exe16.SMapLS_IP_EBP_20 @1094 PRIVATE + SMapLS_IP_EBP_24@0=krnl386.exe16.SMapLS_IP_EBP_24 @1095 PRIVATE + SMapLS_IP_EBP_28@0=krnl386.exe16.SMapLS_IP_EBP_28 @1096 PRIVATE + SMapLS_IP_EBP_32@0=krnl386.exe16.SMapLS_IP_EBP_32 @1097 PRIVATE + SMapLS_IP_EBP_36@0=krnl386.exe16.SMapLS_IP_EBP_36 @1098 PRIVATE + SMapLS_IP_EBP_40@0=krnl386.exe16.SMapLS_IP_EBP_40 @1099 PRIVATE + SMapLS_IP_EBP_8@0=krnl386.exe16.SMapLS_IP_EBP_8 @1100 PRIVATE + SUnMapLS@0=krnl386.exe16.SUnMapLS @1101 PRIVATE + SUnMapLS_IP_EBP_12@0=krnl386.exe16.SUnMapLS_IP_EBP_12 @1102 PRIVATE + SUnMapLS_IP_EBP_16@0=krnl386.exe16.SUnMapLS_IP_EBP_16 @1103 PRIVATE + SUnMapLS_IP_EBP_20@0=krnl386.exe16.SUnMapLS_IP_EBP_20 @1104 PRIVATE + SUnMapLS_IP_EBP_24@0=krnl386.exe16.SUnMapLS_IP_EBP_24 @1105 PRIVATE + SUnMapLS_IP_EBP_28@0=krnl386.exe16.SUnMapLS_IP_EBP_28 @1106 PRIVATE + SUnMapLS_IP_EBP_32@0=krnl386.exe16.SUnMapLS_IP_EBP_32 @1107 PRIVATE + SUnMapLS_IP_EBP_36@0=krnl386.exe16.SUnMapLS_IP_EBP_36 @1108 PRIVATE + SUnMapLS_IP_EBP_40@0=krnl386.exe16.SUnMapLS_IP_EBP_40 @1109 PRIVATE + SUnMapLS_IP_EBP_8@0=krnl386.exe16.SUnMapLS_IP_EBP_8 @1110 PRIVATE + ScrollConsoleScreenBufferA@20 @1111 + ScrollConsoleScreenBufferW@20 @1112 + SearchPathA@24 @1113 + SearchPathW@24 @1114 + SetCPGlobal@4 @1115 + SetCalendarInfoA@16 @1116 + SetCalendarInfoW@16 @1117 + SetCommBreak@4 @1118 + SetCommConfig@12 @1119 + SetCommMask@8 @1120 + SetCommState@8 @1121 + SetCommTimeouts@8 @1122 + SetComputerNameA@4 @1123 + SetComputerNameExA@8 @1124 + SetComputerNameExW@8 @1125 + SetComputerNameW@4 @1126 + SetConsoleActiveScreenBuffer@4 @1127 + SetConsoleCP@4 @1128 + SetConsoleCommandHistoryMode@0 @1129 PRIVATE + SetConsoleCtrlHandler@8 @1130 + SetConsoleCursor@0 @1131 PRIVATE + SetConsoleCursorInfo@8 @1132 + SetConsoleCursorMode@0 @1133 PRIVATE + SetConsoleCursorPosition@8 @1134 + SetConsoleDisplayMode@12 @1135 + SetConsoleFont@8 @1136 + SetConsoleHardwareState@0 @1137 PRIVATE + SetConsoleIcon@4 @1138 + SetConsoleInputExeNameA@4 @1139 + SetConsoleInputExeNameW@4 @1140 + SetConsoleKeyShortcuts@16 @1141 + SetConsoleLocalEUDC@0 @1142 PRIVATE + SetConsoleMaximumWindowSize@0 @1143 PRIVATE + SetConsoleMenuClose@0 @1144 PRIVATE + SetConsoleMode@8 @1145 + SetConsoleNlsMode@0 @1146 PRIVATE + SetConsoleNumberOfCommandsA@0 @1147 PRIVATE + SetConsoleNumberOfCommandsW@0 @1148 PRIVATE + SetConsoleOS2OemFormat@0 @1149 PRIVATE + SetConsoleOutputCP@4 @1150 + SetConsolePalette@0 @1151 PRIVATE + SetConsoleScreenBufferInfoEx@8 @1152 + SetConsoleScreenBufferSize@8 @1153 + SetConsoleTextAttribute@8 @1154 + SetConsoleTitleA@4 @1155 + SetConsoleTitleW@4 @1156 + SetConsoleWindowInfo@12 @1157 + SetCriticalSectionSpinCount@8=ntdll.RtlSetCriticalSectionSpinCount @1158 + SetCurrentConsoleFontEx@12 @1159 + SetCurrentDirectoryA@4 @1160 + SetCurrentDirectoryW@4 @1161 + SetDaylightFlag@0 @1162 PRIVATE + SetDefaultCommConfigA@12 @1163 + SetDefaultCommConfigW@12 @1164 + SetDefaultDllDirectories@4 @1165 + SetDllDirectoryA@4 @1166 + SetDllDirectoryW@4 @1167 + SetEndOfFile@4 @1168 + SetEnvironmentVariableA@8 @1169 + SetEnvironmentVariableW@8 @1170 + SetErrorMode@4 @1171 + SetEvent@4 @1172 + SetEventWhenCallbackReturns@8=ntdll.TpCallbackSetEventOnCompletion @1173 + SetFileApisToANSI@0 @1174 + SetFileApisToOEM@0 @1175 + SetFileAttributesA@8 @1176 + SetFileAttributesW@8 @1177 + SetFileCompletionNotificationModes@8 @1178 + SetFileInformationByHandle@16 @1179 + SetFilePointer@16 @1180 + SetFilePointerEx@20 @1181 + SetFileTime@16 @1182 + SetFileValidData@12 @1183 + SetHandleContext@8 @1184 + SetHandleCount@4 @1185 + SetHandleInformation@12 @1186 + SetInformationJobObject@16 @1187 + SetLastConsoleEventActive@0 @1188 PRIVATE + SetLastError@4 @1189 + SetLocalTime@4 @1190 + SetLocaleInfoA@12 @1191 + SetLocaleInfoW@12 @1192 + SetMailslotInfo@8 @1193 + SetMessageWaitingIndicator@0 @1194 PRIVATE + SetNamedPipeHandleState@16 @1195 + SetPriorityClass@8 @1196 + SetProcessAffinityMask@8 @1197 + SetProcessAffinityUpdateMode@8 @1198 + SetProcessDEPPolicy@4 @1199 + SetProcessMitigationPolicy@12 @1200 + SetProcessPriorityBoost@8 @1201 + SetProcessShutdownParameters@8 @1202 + SetProcessWorkingSetSize@12 @1203 + SetProcessWorkingSetSizeEx@16 @1204 + SetSearchPathMode@4 @1205 + SetStdHandle@8 @1206 + SetSystemFileCacheSize@12 @1207 + SetSystemPowerState@8 @1208 + SetSystemTime@4 @1209 + SetSystemTimeAdjustment@8 @1210 + SetTapeParameters@12 @1211 + SetTapePosition@24 @1212 + SetTermsrvAppInstallMode@4 @1213 + SetThreadAffinityMask@8 @1214 + SetThreadContext@8 @1215 + SetThreadErrorMode@8 @1216 + SetThreadExecutionState@4 @1217 + SetThreadGroupAffinity@12 @1218 + SetThreadIdealProcessor@8 @1219 + SetThreadIdealProcessorEx@12 @1220 + SetThreadLocale@4 @1221 + SetThreadPreferredUILanguages@12 @1222 + SetThreadPriority@8 @1223 + SetThreadPriorityBoost@8 @1224 + SetThreadStackGuarantee@4 @1225 + SetThreadUILanguage@4 @1226 + SetThreadpoolThreadMaximum@8=ntdll.TpSetPoolMaxThreads @1227 + SetThreadpoolThreadMinimum@8=ntdll.TpSetPoolMinThreads @1228 + SetThreadpoolTimer@16 @1229 + SetThreadpoolWait@12 @1230 + SetTimeZoneInformation@4 @1231 + SetTimerQueueTimer@0 @1232 PRIVATE + SetUnhandledExceptionFilter@4 @1233 + SetUserGeoID@4 @1234 + SetVDMCurrentDirectories@0 @1235 PRIVATE + SetVolumeLabelA@8 @1236 + SetVolumeLabelW@8 @1237 + SetVolumeMountPointA@8 @1238 + SetVolumeMountPointW@8 @1239 + SetWaitableTimer@24 @1240 + SetWaitableTimerEx@28 @1241 + SetupComm@12 @1242 + ShowConsoleCursor@0 @1243 PRIVATE + SignalObjectAndWait@16 @1244 + SizeofResource@8 @1245 + Sleep@4 @1246 + SleepConditionVariableCS@12 @1247 + SleepConditionVariableSRW@16 @1248 + SleepEx@8 @1249 + SubmitThreadpoolWork@4=ntdll.TpPostWork @1250 + SuspendThread@4 @1251 + SwitchToFiber@4 @1252 + SwitchToThread@0 @1253 + SystemTimeToFileTime@8 @1254 + SystemTimeToTzSpecificLocalTime@12 @1255 + TerminateJobObject@8 @1256 + TerminateProcess@8 @1257 + TerminateThread@8 @1258 + TermsrvAppInstallMode@0 @1259 + Thread32First@8 @1260 + Thread32Next@8 @1261 + ThunkConnect32@24=krnl386.exe16.ThunkConnect32 @1262 PRIVATE + TlsAlloc@0 @1263 + TlsAllocInternal@0=TlsAlloc @1264 + TlsFree@4 @1265 + TlsFreeInternal@4=TlsFree @1266 + TlsGetValue@4 @1267 + TlsSetValue@8 @1268 + Toolhelp32ReadProcessMemory@20 @1269 + TransactNamedPipe@28 @1270 + TransmitCommChar@8 @1271 + TrimVirtualBuffer@0 @1272 PRIVATE + TryAcquireSRWLockExclusive@4=ntdll.RtlTryAcquireSRWLockExclusive @1273 + TryAcquireSRWLockShared@4=ntdll.RtlTryAcquireSRWLockShared @1274 + TryEnterCriticalSection@4=ntdll.RtlTryEnterCriticalSection @1275 + TrySubmitThreadpoolCallback@12 @1276 + TzSpecificLocalTimeToSystemTime@12 @1277 + UTRegister@28=krnl386.exe16.UTRegister @1278 PRIVATE + UTUnRegister@4=krnl386.exe16.UTUnRegister @1279 PRIVATE + UnMapLS@4=krnl386.exe16.UnMapLS @1280 PRIVATE + UnMapSLFixArray@8=krnl386.exe16.UnMapSLFixArray @1281 PRIVATE + UnhandledExceptionFilter@4 @1282 + UninitializeCriticalSection@4 @1283 + UnlockFile@20 @1284 + UnlockFileEx@20 @1285 + UnmapViewOfFile@4 @1286 + UnregisterApplicationRestart@0 @1287 + UnregisterWait@4 @1288 + UnregisterWaitEx@8 @1289 + UpdateProcThreadAttribute@28 @1290 + UpdateResourceA@24 @1291 + UpdateResourceW@24 @1292 + VDMConsoleOperation@0 @1293 PRIVATE + VDMOperationStarted@0 @1294 PRIVATE + ValidateLCType@0 @1295 PRIVATE + ValidateLocale@0 @1296 PRIVATE + VerLanguageNameA@12 @1297 + VerLanguageNameW@12 @1298 + VerSetConditionMask@16=ntdll.VerSetConditionMask @1299 + VerifyConsoleIoHandle@4 @1300 + VerifyVersionInfoA@16 @1301 + VerifyVersionInfoW@16 @1302 + VirtualAlloc@16 @1303 + VirtualAllocEx@20 @1304 + VirtualBufferExceptionHandler@0 @1305 PRIVATE + VirtualFree@12 @1306 + VirtualFreeEx@16 @1307 + VirtualLock@8 @1308 + VirtualProtect@16 @1309 + VirtualProtectEx@20 @1310 + VirtualQuery@12 @1311 + VirtualQueryEx@16 @1312 + VirtualUnlock@8 @1313 + WTSGetActiveConsoleSessionId@0 @1314 + WaitCommEvent@12 @1315 + WaitForDebugEvent@8 @1316 + WaitForMultipleObjects@16 @1317 + WaitForMultipleObjectsEx@20 @1318 + WaitForSingleObject@8 @1319 + WaitForSingleObjectEx@12 @1320 + WaitForThreadpoolTimerCallbacks@8=ntdll.TpWaitForTimer @1321 + WaitForThreadpoolWaitCallbacks@8=ntdll.TpWaitForWait @1322 + WaitForThreadpoolWorkCallbacks@8=ntdll.TpWaitForWork @1323 + WaitNamedPipeA@8 @1324 + WaitNamedPipeW@8 @1325 + WakeAllConditionVariable@4=ntdll.RtlWakeAllConditionVariable @1326 + WakeConditionVariable@4=ntdll.RtlWakeConditionVariable @1327 + WerRegisterFile@12 @1328 + WerRegisterMemoryBlock@8 @1329 + WerRegisterRuntimeExceptionModule@8 @1330 + WerSetFlags@4 @1331 + WerUnregisterMemoryBlock@4 @1332 + WideCharToMultiByte@32 @1333 + WinExec@8 @1334 + Wow64EnableWow64FsRedirection@4 @1335 + Wow64DisableWow64FsRedirection@4 @1336 + Wow64GetThreadContext@8 @1337 + Wow64RevertWow64FsRedirection@4 @1338 + Wow64SetThreadContext@8 @1339 + WriteConsoleA@20 @1340 + WriteConsoleInputA@16 @1341 + WriteConsoleInputVDMA@0 @1342 PRIVATE + WriteConsoleInputVDMW@0 @1343 PRIVATE + WriteConsoleInputW@16 @1344 + WriteConsoleOutputA@20 @1345 + WriteConsoleOutputAttribute@20 @1346 + WriteConsoleOutputCharacterA@20 @1347 + WriteConsoleOutputCharacterW@20 @1348 + WriteConsoleOutputW@20 @1349 + WriteConsoleW@20 @1350 + WriteFile@20 @1351 + WriteFileEx@20 @1352 + WriteFileGather@20 @1353 + WritePrivateProfileSectionA@12 @1354 + WritePrivateProfileSectionW@12 @1355 + WritePrivateProfileStringA@16 @1356 + WritePrivateProfileStringW@16 @1357 + WritePrivateProfileStructA@20 @1358 + WritePrivateProfileStructW@20 @1359 + WriteProcessMemory@20 @1360 + WriteProfileSectionA@8 @1361 + WriteProfileSectionW@8 @1362 + WriteProfileStringA@12 @1363 + WriteProfileStringW@12 @1364 + WriteTapemark@16 @1365 + ZombifyActCtx@4 @1366 + _DebugOut@0 @1367 PRIVATE + _DebugPrintf@0 @1368 PRIVATE + _hread@12 @1369 + _hwrite@12 @1370 + _lclose@4 @1371 + _lcreat@8 @1372 + _llseek@12 @1373 + _lopen@8 @1374 + _lread@12 @1375 + _lwrite@12 @1376 + dprintf@0 @1377 PRIVATE + lstrcat@8=lstrcatA @1378 + lstrcatA@8 @1379 + lstrcatW@8 @1380 + lstrcmp@8=lstrcmpA @1381 + lstrcmpA@8 @1382 + lstrcmpW@8 @1383 + lstrcmpi@8=lstrcmpiA @1384 + lstrcmpiA@8 @1385 + lstrcmpiW@8 @1386 + lstrcpy@8=lstrcpyA @1387 + lstrcpyA@8 @1388 + lstrcpyW@8 @1389 + lstrcpyn@12=lstrcpynA @1390 + lstrcpynA@12 @1391 + lstrcpynW@12 @1392 + lstrlen@4=lstrlenA @1393 + lstrlenA@4 @1394 + lstrlenW@4 @1395 + __wine_dll_register_16 @1396 PRIVATE + __wine_dll_unregister_16 @1397 PRIVATE + __wine_call_from_16_regs@0 @1398 PRIVATE + wine_get_unix_file_name @1399 + wine_get_dos_file_name @1400 + __wine_kernel_init @1401 diff --git a/lib/wine/libloadperf.def b/lib/wine/libloadperf.def new file mode 100644 index 0000000..41b2b2e --- /dev/null +++ b/lib/wine/libloadperf.def @@ -0,0 +1,19 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/loadperf/loadperf.spec; do not edit! + +LIBRARY loadperf.dll + +EXPORTS + BackupPerfRegistryToFileW@0 @1 PRIVATE + InstallPerfDllA@12 @2 + InstallPerfDllW@12 @3 + LoadMofFromInstalledServiceA@0 @4 PRIVATE + LoadMofFromInstalledServiceW@0 @5 PRIVATE + LoadPerfCounterTextStringsA@8 @6 + LoadPerfCounterTextStringsW@8 @7 + RestorePerfRegistryFromFileW@0 @8 PRIVATE + SetServiceAsTrustedA@0 @9 PRIVATE + SetServiceAsTrustedW@0 @10 PRIVATE + UnloadPerfCounterTextStringsA@8 @11 + UnloadPerfCounterTextStringsW@8 @12 + UpdatePerfNameFilesA@0 @13 PRIVATE + UpdatePerfNameFilesW@0 @14 PRIVATE diff --git a/lib/wine/liblz32.def b/lib/wine/liblz32.def new file mode 100644 index 0000000..2eaa849 --- /dev/null +++ b/lib/wine/liblz32.def @@ -0,0 +1,17 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/lz32/lz32.spec; do not edit! + +LIBRARY lz32.dll + +EXPORTS + CopyLZFile@8=kernel32.CopyLZFile @1 + GetExpandedNameA@8=kernel32.GetExpandedNameA @2 + GetExpandedNameW@8=kernel32.GetExpandedNameW @3 + LZClose@4=kernel32.LZClose @4 + LZCopy@8=kernel32.LZCopy @5 + LZDone@0=kernel32.LZDone @6 + LZInit@4=kernel32.LZInit @7 + LZOpenFileA@12=kernel32.LZOpenFileA @8 + LZOpenFileW@12=kernel32.LZOpenFileW @9 + LZRead@12=kernel32.LZRead @10 + LZSeek@12=kernel32.LZSeek @11 + LZStart@0=kernel32.LZStart @12 diff --git a/lib/wine/libmapi32.def b/lib/wine/libmapi32.def new file mode 100644 index 0000000..9120ac4 --- /dev/null +++ b/lib/wine/libmapi32.def @@ -0,0 +1,195 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/mapi32/mapi32.spec; do not edit! + +LIBRARY mapi32.dll + +EXPORTS + MAPILogonEx@20 @10 + MAPILogonEx@20@20=MAPILogonEx @11 + MAPIAllocateBuffer@8 @12 + MAPIAllocateBuffer@8@8=MAPIAllocateBuffer @13 + MAPIAllocateMore@12 @14 + MAPIAllocateMore@12@12=MAPIAllocateMore @15 + MAPIFreeBuffer@4 @16 + MAPIFreeBuffer@4@4=MAPIFreeBuffer @17 + MAPIAdminProfiles@8 @18 + MAPIAdminProfiles@8@8=MAPIAdminProfiles @19 + MAPIInitialize@4 @20 + MAPIInitialize@4@4=MAPIInitialize @21 + MAPIUninitialize@0 @22 + MAPIUninitialize@0@0=MAPIUninitialize @23 + PRProviderInit@0 @24 PRIVATE + LAUNCHWIZARD@0 @25 PRIVATE + LaunchWizard@20@0 @26 PRIVATE + DllGetClassObject@12 @27 PRIVATE + DllCanUnloadNow@0 @28 PRIVATE + MAPIOpenFormMgr@0 @29 PRIVATE + MAPIOpenFormMgr@8@0 @30 PRIVATE + MAPIOpenLocalFormContainer@4 @31 + MAPIOpenLocalFormContainer@4@4=MAPIOpenLocalFormContainer @32 + ScInitMapiUtil@4@4=ScInitMapiUtil @33 + DeinitMapiUtil@0@0=DeinitMapiUtil @34 + ScGenerateMuid@4@0 @35 PRIVATE + HrAllocAdviseSink@12@0 @36 PRIVATE + WrapProgress@20@20=WrapProgress @41 + HrThisThreadAdviseSink@8@8=HrThisThreadAdviseSink @42 + ScBinFromHexBounded@12@0 @43 PRIVATE + FBinFromHex@8@8=FBinFromHex @44 + HexFromBin@12@12=HexFromBin @45 + BuildDisplayTable@40@0 @46 PRIVATE + SwapPlong@8@8=SwapPlong @47 + SwapPword@8@8=SwapPword @48 + MAPIInitIdle@4@0 @49 PRIVATE + MAPIDeinitIdle@0@0 @50 PRIVATE + InstallFilterHook@4@0 @51 PRIVATE + FtgRegisterIdleRoutine@20@0 @52 PRIVATE + EnableIdleRoutine@8@0 @53 PRIVATE + DeregisterIdleRoutine@4@0 @54 PRIVATE + ChangeIdleRoutine@28@0 @55 PRIVATE + MAPIGetDefaultMalloc@0@0=MAPIGetDefaultMalloc @59 + CreateIProp@24@24=CreateIProp @60 + CreateTable@36@0 @61 PRIVATE + MNLS_lstrlenW@4@4=MNLS_lstrlenW @62 + MNLS_lstrcmpW@8@8=MNLS_lstrcmpW @63 + MNLS_lstrcpyW@8@8=MNLS_lstrcpyW @64 + MNLS_CompareStringW@24@12=MNLS_CompareStringW @65 + MNLS_MultiByteToWideChar@24@24=kernel32.MultiByteToWideChar @66 + MNLS_WideCharToMultiByte@32@32=kernel32.WideCharToMultiByte @67 + MNLS_IsBadStringPtrW@8@8=kernel32.IsBadStringPtrW @68 + FEqualNames@8@8=FEqualNames @72 + WrapStoreEntryID@24@0 @73 PRIVATE + IsBadBoundedStringPtr@8@8=IsBadBoundedStringPtr @74 + HrQueryAllRows@24@24=HrQueryAllRows @75 + PropCopyMore@16@16=PropCopyMore @76 + UlPropSize@4@4=UlPropSize @77 + FPropContainsProp@12@12=FPropContainsProp @78 + FPropCompareProp@12@12=FPropCompareProp @79 + LPropCompareProp@8@8=LPropCompareProp @80 + HrAddColumns@16@0 @81 PRIVATE + HrAddColumnsEx@20@0 @82 PRIVATE + FtAddFt@16@16=MAPI32_FtAddFt @121 + FtAdcFt@20@0 @122 PRIVATE + FtSubFt@16@16=MAPI32_FtSubFt @123 + FtMulDw@12@12=MAPI32_FtMulDw @124 + FtMulDwDw@8@8=MAPI32_FtMulDwDw @125 + FtNegFt@8@8=MAPI32_FtNegFt @126 + FtDivFtBogus@20@0 @127 PRIVATE + UlAddRef@4@4=UlAddRef @128 + UlRelease@4@4=UlRelease @129 + SzFindCh@8@8=shlwapi.StrChrA @130 + SzFindLastCh@8@12=shlwapi.StrRChrA @131 + SzFindSz@8@8=shlwapi.StrStrA @132 + UFromSz@4@4=UFromSz @133 + HrGetOneProp@12@12=HrGetOneProp @135 + HrSetOneProp@8@8=HrSetOneProp @136 + FPropExists@8@8=FPropExists @137 + PpropFindProp@12@12=PpropFindProp @138 + FreePadrlist@4@4=FreePadrlist @139 + FreeProws@4@4=FreeProws @140 + HrSzFromEntryID@12@0 @141 PRIVATE + HrEntryIDFromSz@12@0 @142 PRIVATE + HrComposeEID@28@0 @143 PRIVATE + HrDecomposeEID@28@0 @144 PRIVATE + HrComposeMsgID@24@0 @145 PRIVATE + HrDecomposeMsgID@24@0 @146 PRIVATE + OpenStreamOnFile@24@24=OpenStreamOnFile @147 + OpenStreamOnFile@24 @148 + OpenTnefStream@28@0 @149 PRIVATE + OpenTnefStream@0 @150 PRIVATE + OpenTnefStreamEx@32@0 @151 PRIVATE + OpenTnefStreamEx@0 @152 PRIVATE + GetTnefStreamCodepage@12@0 @153 PRIVATE + GetTnefStreamCodepage@0 @154 PRIVATE + UlFromSzHex@4@4=UlFromSzHex @155 + UNKOBJ_ScAllocate@12@0 @156 PRIVATE + UNKOBJ_ScAllocateMore@16@0 @157 PRIVATE + UNKOBJ_Free@8@0 @158 PRIVATE + UNKOBJ_FreeRows@8@0 @159 PRIVATE + UNKOBJ_ScCOAllocate@12@0 @160 PRIVATE + UNKOBJ_ScCOReallocate@12@0 @161 PRIVATE + UNKOBJ_COFree@8@0 @162 PRIVATE + UNKOBJ_ScSzFromIdsAlloc@20@0 @163 PRIVATE + ScCountNotifications@12@0 @164 PRIVATE + ScCopyNotifications@16@0 @165 PRIVATE + ScRelocNotifications@20@0 @166 PRIVATE + ScCountProps@12@12=ScCountProps @170 + ScCopyProps@16@16=ScCopyProps @171 + ScRelocProps@20@20=ScRelocProps @172 + LpValFindProp@12@12=LpValFindProp @173 + ScDupPropset@16@16=ScDupPropset @174 + FBadRglpszA@8@8=FBadRglpszA @175 + FBadRglpszW@8@8=FBadRglpszW @176 + FBadRowSet@4@4=FBadRowSet @177 + FBadRglpNameID@8@0 @178 PRIVATE + FBadPropTag@4@4=FBadPropTag @179 + FBadRow@4@4=FBadRow @180 + FBadProp@4@4=FBadProp @181 + FBadColumnSet@4@4=FBadColumnSet @182 + RTFSync@12@0 @183 PRIVATE + RTFSync@0 @184 PRIVATE + WrapCompressedRTFStream@12@12=WrapCompressedRTFStream @185 + WrapCompressedRTFStream@12 @186 + __ValidateParameters@8@0 @187 PRIVATE + __CPPValidateParameters@8@0 @188 PRIVATE + FBadSortOrderSet@4@0 @189 PRIVATE + FBadEntryList@4@4=FBadEntryList @190 + FBadRestriction@4@0 @191 PRIVATE + ScUNCFromLocalPath@12@0 @192 PRIVATE + ScLocalPathFromUNC@12@0 @193 PRIVATE + HrIStorageFromStream@16@0 @194 PRIVATE + HrValidateIPMSubtree@20@0 @195 PRIVATE + OpenIMsgSession@12@0 @196 PRIVATE + CloseIMsgSession@4@0 @197 PRIVATE + OpenIMsgOnIStg@44@0 @198 PRIVATE + SetAttribIMsgOnIStg@16@0 @199 PRIVATE + GetAttribIMsgOnIStg@12@0 @200 PRIVATE + MapStorageSCode@4@0 @201 PRIVATE + ScMAPIXFromCMC@0 @202 PRIVATE + ScMAPIXFromSMAPI@0 @203 PRIVATE + EncodeID@12@0 @204 PRIVATE + FDecodeID@12@0 @205 PRIVATE + CchOfEncoding@4@0 @206 PRIVATE + CbOfEncoded@4@4=CbOfEncoded @207 + MAPISendDocuments@20 @208 + MAPILogon@24 @209 + MAPILogoff@16 @210 + MAPISendMail@20 @211 + MAPISaveMail@24 @212 + MAPIReadMail@24 @213 + MAPIFindNext@28 @214 + MAPIDeleteMail@20 @215 + MAPIAddress@44 @217 + MAPIDetails@20 @218 + MAPIResolveName@24 @219 + BMAPISendMail@0 @220 PRIVATE + BMAPISaveMail@0 @221 PRIVATE + BMAPIReadMail@0 @222 PRIVATE + BMAPIGetReadMail@0 @223 PRIVATE + BMAPIFindNext@0 @224 PRIVATE + BMAPIAddress@0 @225 PRIVATE + BMAPIGetAddress@0 @226 PRIVATE + BMAPIDetails@0 @227 PRIVATE + BMAPIResolveName@0 @228 PRIVATE + cmc_act_on@0 @229 PRIVATE + cmc_free@0 @230 PRIVATE + cmc_list@0 @231 PRIVATE + cmc_logoff@0 @232 PRIVATE + cmc_logon@0 @233 PRIVATE + cmc_look_up@0 @234 PRIVATE + cmc_query_configuration@16 @235 + cmc_read@0 @236 PRIVATE + cmc_send@0 @237 PRIVATE + cmc_send_documents@0 @238 PRIVATE + HrDispatchNotifications@4@4=HrDispatchNotifications @239 + HrValidateParameters@8@0 @241 PRIVATE + ScCreateConversationIndex@16@0 @244 PRIVATE + HrGetOmiProvidersFlags@0 @246 PRIVATE + HrGetOmiProvidersFlags@8@0 @247 PRIVATE + HrSetOmiProvidersFlagsInvalid@0 @248 PRIVATE + HrSetOmiProvidersFlagsInvalid@4@0 @249 PRIVATE + GetOutlookVersion@0 @250 PRIVATE + GetOutlookVersion@0@0 @251 PRIVATE + FixMAPI@0 @252 PRIVATE + FixMAPI@0@0 @253 PRIVATE + FGetComponentPath@20 @254 + FGetComponentPath@20@20=FGetComponentPath @255 + MAPISendMailW@20 @256 diff --git a/lib/wine/libmf.def b/lib/wine/libmf.def new file mode 100644 index 0000000..a03c560 --- /dev/null +++ b/lib/wine/libmf.def @@ -0,0 +1,88 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/mf/mf.spec; do not edit! + +LIBRARY mf.dll + +EXPORTS + AppendPropVariant@0 @1 PRIVATE + ConvertPropVariant@0 @2 PRIVATE + CopyPropertyStore@0 @3 PRIVATE + CreateNamedPropertyStore@0 @4 PRIVATE + DllCanUnloadNow@0 @5 PRIVATE + DllGetClassObject@0 @6 PRIVATE + DllRegisterServer@0 @7 PRIVATE + DllUnregisterServer@0 @8 PRIVATE + ExtractPropVariant@0 @9 PRIVATE + MFCreate3GPMediaSink@0 @10 PRIVATE + MFCreateASFByteStreamPlugin@0 @11 PRIVATE + MFCreateASFContentInfo@0 @12 PRIVATE + MFCreateASFIndexer@0 @13 PRIVATE + MFCreateASFIndexerByteStream@0 @14 PRIVATE + MFCreateASFMediaSink@0 @15 PRIVATE + MFCreateASFMediaSinkActivate@0 @16 PRIVATE + MFCreateASFMultiplexer@0 @17 PRIVATE + MFCreateASFProfile@0 @18 PRIVATE + MFCreateASFProfileFromPresentationDescriptor@0 @19 PRIVATE + MFCreateASFSplitter@0 @20 PRIVATE + MFCreateASFStreamSelector@0 @21 PRIVATE + MFCreateASFStreamingMediaSink@0 @22 PRIVATE + MFCreateASFStreamingMediaSinkActivate@0 @23 PRIVATE + MFCreateAggregateSource@0 @24 PRIVATE + MFCreateAppSourceProxy@0 @25 PRIVATE + MFCreateAudioRenderer@0 @26 PRIVATE + MFCreateAudioRendererActivate@0 @27 PRIVATE + MFCreateByteCacheFile@0 @28 PRIVATE + MFCreateCacheManager@0 @29 PRIVATE + MFCreateCredentialCache@0 @30 PRIVATE + MFCreateDeviceSource@0 @31 PRIVATE + MFCreateDeviceSourceActivate@0 @32 PRIVATE + MFCreateDrmNetNDSchemePlugin@0 @33 PRIVATE + MFCreateFileBlockMap@0 @34 PRIVATE + MFCreateFileSchemePlugin@0 @35 PRIVATE + MFCreateHttpSchemePlugin@0 @36 PRIVATE + MFCreateLPCMByteStreamPlugin@0 @37 PRIVATE + MFCreateMP3ByteStreamPlugin@0 @38 PRIVATE + MFCreateMP3MediaSink@0 @39 PRIVATE + MFCreateMPEG4MediaSink@0 @40 PRIVATE + MFCreateMediaProcessor@0 @41 PRIVATE + MFCreateMediaSession@8 @42 + MFCreateNSCByteStreamPlugin@0 @43 PRIVATE + MFCreateNetSchemePlugin@0 @44 PRIVATE + MFCreatePMPHost@0 @45 PRIVATE + MFCreatePMPMediaSession@0 @46 PRIVATE + MFCreatePMPServer@0 @47 PRIVATE + MFCreatePresentationClock@4 @48 + MFCreatePresentationDescriptorFromASFProfile@0 @49 PRIVATE + MFCreateProxyLocator@0 @50 PRIVATE + MFCreateRemoteDesktopPlugin@0 @51 PRIVATE + MFCreateSAMIByteStreamPlugin@0 @52 PRIVATE + MFCreateSampleCopierMFT@0 @53 PRIVATE + MFCreateSampleGrabberSinkActivate@0 @54 PRIVATE + MFCreateSecureHttpSchemePlugin@0 @55 PRIVATE + MFCreateSequencerSegmentOffset@0 @56 PRIVATE + MFCreateSequencerSource@8 @57 + MFCreateSequencerSourceRemoteStream@0 @58 PRIVATE + MFCreateSimpleTypeHandler@0 @59 PRIVATE + MFCreateSourceResolver@4=mfplat.MFCreateSourceResolver @60 + MFCreateStandardQualityManager@0 @61 PRIVATE + MFCreateTopoLoader@4 @62 + MFCreateTopology@4 @63 + MFCreateTopologyNode@8 @64 + MFCreateTranscodeProfile@0 @65 PRIVATE + MFCreateTranscodeSinkActivate@0 @66 PRIVATE + MFCreateTranscodeTopology@0 @67 PRIVATE + MFCreateUrlmonSchemePlugin@0 @68 PRIVATE + MFCreateVideoRenderer@0 @69 PRIVATE + MFCreateVideoRendererActivate@0 @70 PRIVATE + MFCreateWMAEncoderActivate@0 @71 PRIVATE + MFCreateWMVEncoderActivate@0 @72 PRIVATE + MFEnumDeviceSources@0 @73 PRIVATE + MFGetMultipleServiceProviders@0 @74 PRIVATE + MFGetService@16 @75 + MFGetSupportedMimeTypes@4 @76 + MFGetSupportedSchemes@0 @77 PRIVATE + MFGetTopoNodeCurrentType@0 @78 PRIVATE + MFReadSequencerSegmentOffset@0 @79 PRIVATE + MFRequireProtectedEnvironment@0 @80 PRIVATE + MFShutdownObject@4 @81 + MFTranscodeGetAudioOutputAvailableTypes@0 @82 PRIVATE + MergePropertyStore@0 @83 PRIVATE diff --git a/lib/wine/libmfplat.def b/lib/wine/libmfplat.def new file mode 100644 index 0000000..1539c27 --- /dev/null +++ b/lib/wine/libmfplat.def @@ -0,0 +1,166 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/mfplat/mfplat.spec; do not edit! + +LIBRARY mfplat.dll + +EXPORTS + FormatTagFromWfx@0 @1 PRIVATE + MFCreateGuid@0 @2 PRIVATE + MFGetIoPortHandle@0 @3 PRIVATE + MFGetPlatformVersion@0 @4 PRIVATE + MFGetRandomNumber@0 @5 PRIVATE + MFIsFeatureEnabled@0 @6 PRIVATE + MFIsQueueThread@0 @7 PRIVATE + MFPlatformBigEndian@0 @8 PRIVATE + MFPlatformLittleEndian@0 @9 PRIVATE + ValidateWaveFormat@0 @10 PRIVATE + CopyPropVariant@0 @11 PRIVATE + CreatePropVariant@0 @12 PRIVATE + CreatePropertyStore@0 @13 PRIVATE + DestroyPropVariant@0 @14 PRIVATE + GetAMSubtypeFromD3DFormat@0 @15 PRIVATE + GetD3DFormatFromMFSubtype@0 @16 PRIVATE + LFGetGlobalPool@0 @17 PRIVATE + MFAddPeriodicCallback@12 @18 + MFAllocateWorkQueue@4 @19 + MFAllocateWorkQueueEx@8 @20 + MFAppendCollection@0 @21 PRIVATE + MFAverageTimePerFrameToFrameRate@0 @22 PRIVATE + MFBeginCreateFile@0 @23 PRIVATE + MFBeginGetHostByName@0 @24 PRIVATE + MFBeginRegisterWorkQueueWithMMCSS@0 @25 PRIVATE + MFBeginUnregisterWorkQueueWithMMCSS@0 @26 PRIVATE + MFBlockThread@0 @27 PRIVATE + MFCalculateBitmapImageSize@0 @28 PRIVATE + MFCalculateImageSize@16 @29 + MFCancelCreateFile@0 @30 PRIVATE + MFCancelWorkItem@8 @31 + MFCompareFullToPartialMediaType@8 @32 + MFCompareSockaddrAddresses@0 @33 PRIVATE + MFConvertColorInfoFromDXVA@0 @34 PRIVATE + MFConvertColorInfoToDXVA@0 @35 PRIVATE + MFConvertFromFP16Array@0 @36 PRIVATE + MFConvertToFP16Array@0 @37 PRIVATE + MFCopyImage@24 @38 + MFCreateAMMediaTypeFromMFMediaType@0 @39 PRIVATE + MFCreateAlignedMemoryBuffer@12 @40 + MFCreateAsyncResult@16 @41 + MFCreateAttributes@8 @42 + MFCreateAudioMediaType@0 @43 PRIVATE + MFCreateCollection@4 @44 + MFCreateEventQueue@4 @45 + MFCreateFile@20 @46 + MFCreateLegacyMediaBufferOnMFMediaBuffer@0 @47 PRIVATE + MFCreateMFByteStreamOnStream@8 @48 + MFCreateMFByteStreamOnStreamEx@8 @49 + MFCreateMFByteStreamWrapper@8 @50 + MFCreateMFVideoFormatFromMFMediaType@0 @51 PRIVATE + MFCreateMediaBufferWrapper@0 @52 PRIVATE + MFCreateMediaEvent@20 @53 + MFCreateMediaType@4 @54 + MFCreateMediaTypeFromRepresentation@0 @55 PRIVATE + MFCreateMemoryBuffer@8 @56 + MFCreateMemoryStream@0 @57 PRIVATE + MFCreatePathFromURL@0 @58 PRIVATE + MFCreatePresentationDescriptor@12 @59 + MFCreateSample@4 @60 + MFCreateSocket@0 @61 PRIVATE + MFCreateSocketListener@0 @62 PRIVATE + MFCreateSourceResolver@4 @63 + MFCreateStreamDescriptor@16 @64 + MFCreateSystemTimeSource@4 @65 + MFCreateSystemUnderlyingClock@0 @66 PRIVATE + MFCreateTempFile@0 @67 PRIVATE + MFCreateTransformActivate@0 @68 PRIVATE + MFCreateURLFromPath@0 @69 PRIVATE + MFCreateUdpSockets@0 @70 PRIVATE + MFCreateVideoMediaType@0 @71 PRIVATE + MFCreateVideoMediaTypeFromBitMapInfoHeader@0 @72 PRIVATE + MFCreateVideoMediaTypeFromBitMapInfoHeaderEx@0 @73 PRIVATE + MFCreateVideoMediaTypeFromSubtype@0 @74 PRIVATE + MFCreateVideoMediaTypeFromVideoInfoHeader2@0 @75 PRIVATE + MFCreateVideoMediaTypeFromVideoInfoHeader@0 @76 PRIVATE + MFCreateWaveFormatExFromMFMediaType@16 @77 + MFDeserializeAttributesFromStream@0 @78 PRIVATE + MFDeserializeEvent@0 @79 PRIVATE + MFDeserializeMediaTypeFromStream@0 @80 PRIVATE + MFDeserializePresentationDescriptor@0 @81 PRIVATE + MFEndCreateFile@0 @82 PRIVATE + MFEndGetHostByName@0 @83 PRIVATE + MFEndRegisterWorkQueueWithMMCSS@0 @84 PRIVATE + MFEndUnregisterWorkQueueWithMMCSS@0 @85 PRIVATE + MFFrameRateToAverageTimePerFrame@0 @86 PRIVATE + MFFreeAdaptersAddresses@0 @87 PRIVATE + MFGetAdaptersAddresses@0 @88 PRIVATE + MFGetAttributesAsBlob@12 @89 + MFGetAttributesAsBlobSize@8 @90 + MFGetConfigurationDWORD@0 @91 PRIVATE + MFGetConfigurationPolicy@0 @92 PRIVATE + MFGetConfigurationStore@0 @93 PRIVATE + MFGetConfigurationString@0 @94 PRIVATE + MFGetMFTMerit@0 @95 PRIVATE + MFGetNumericNameFromSockaddr@0 @96 PRIVATE + MFGetPlaneSize@0 @97 PRIVATE + MFGetPlatform@0 @98 PRIVATE + MFGetPluginControl@4 @99 + MFGetPrivateWorkqueues@0 @100 PRIVATE + MFGetSockaddrFromNumericName@0 @101 PRIVATE + MFGetStrideForBitmapInfoHeader@0 @102 PRIVATE + MFGetSystemTime@0 @103 + MFGetTimerPeriodicity@4 @104 + MFGetUncompressedVideoFormat@0 @105 PRIVATE + MFGetWorkQueueMMCSSClass@0 @106 PRIVATE + MFGetWorkQueueMMCSSTaskId@0 @107 PRIVATE + MFHeapAlloc@20 @108 + MFHeapFree@4 @109 + MFInitAMMediaTypeFromMFMediaType@0 @110 PRIVATE + MFInitAttributesFromBlob@12 @111 + MFInitMediaTypeFromAMMediaType@0 @112 PRIVATE + MFInitMediaTypeFromMFVideoFormat@0 @113 PRIVATE + MFInitMediaTypeFromMPEG1VideoInfo@0 @114 PRIVATE + MFInitMediaTypeFromMPEG2VideoInfo@0 @115 PRIVATE + MFInitMediaTypeFromVideoInfoHeader2@0 @116 PRIVATE + MFInitMediaTypeFromVideoInfoHeader@0 @117 PRIVATE + MFInitMediaTypeFromWaveFormatEx@0 @118 PRIVATE + MFInitVideoFormat@0 @119 PRIVATE + MFInitVideoFormat_RGB@0 @120 PRIVATE + MFInvokeCallback@4 @121 + MFJoinIoPort@0 @122 PRIVATE + MFLockPlatform@0 @123 + MFLockWorkQueue@4 @124 + MFPutWaitingWorkItem@16 @125 + MFPutWorkItem@12 @126 + MFPutWorkItem2@16 @127 + MFPutWorkItemEx@8 @128 + MFPutWorkItemEx2@12 @129 + MFRecordError@0 @130 PRIVATE + MFRemovePeriodicCallback@4 @131 + MFScheduleWorkItem@20 @132 + MFScheduleWorkItemEx@16 @133 + MFSerializeAttributesToStream@0 @134 PRIVATE + MFSerializeEvent@0 @135 PRIVATE + MFSerializeMediaTypeToStream@0 @136 PRIVATE + MFSerializePresentationDescriptor@0 @137 PRIVATE + MFSetSockaddrAny@0 @138 PRIVATE + MFShutdown@0 @139 + MFStartup@8 @140 + MFStreamDescriptorProtectMediaType@0 @141 PRIVATE + MFTEnum@40 @142 + MFTEnumEx@36 @143 + MFTGetInfo@0 @144 PRIVATE + MFTRegister@60 @145 + MFTRegisterLocal@32 @146 + MFTRegisterLocalByCLSID@0 @147 PRIVATE + MFTUnregister@16 @148 + MFTUnregisterLocal@4 @149 + MFTUnregisterLocalByCLSID@0 @150 PRIVATE + MFTraceError@0 @151 PRIVATE + MFTraceFuncEnter@0 @152 PRIVATE + MFUnblockThread@0 @153 PRIVATE + MFUnlockPlatform@0 @154 + MFUnlockWorkQueue@4 @155 + MFUnwrapMediaType@8 @156 + MFValidateMediaTypeSize@0 @157 PRIVATE + MFWrapMediaType@16 @158 + MFllMulDiv@0 @159 PRIVATE + PropVariantFromStream@0 @160 PRIVATE + PropVariantToStream@0 @161 PRIVATE diff --git a/lib/wine/libmfreadwrite.def b/lib/wine/libmfreadwrite.def new file mode 100644 index 0000000..d16a9b5 --- /dev/null +++ b/lib/wine/libmfreadwrite.def @@ -0,0 +1,14 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/mfreadwrite/mfreadwrite.spec; do not edit! + +LIBRARY mfreadwrite.dll + +EXPORTS + DllCanUnloadNow@0 @1 PRIVATE + DllGetClassObject@12 @2 PRIVATE + DllRegisterServer@0 @3 PRIVATE + DllUnregisterServer@0 @4 PRIVATE + MFCreateSinkWriterFromMediaSink@12 @5 + MFCreateSinkWriterFromURL@0 @6 PRIVATE + MFCreateSourceReaderFromByteStream@12 @7 + MFCreateSourceReaderFromMediaSource@12 @8 + MFCreateSourceReaderFromURL@12 @9 diff --git a/lib/wine/libmfuuid.a b/lib/wine/libmfuuid.a new file mode 100644 index 0000000..cd311ad Binary files /dev/null and b/lib/wine/libmfuuid.a differ diff --git a/lib/wine/libmlang.def b/lib/wine/libmlang.def new file mode 100644 index 0000000..c45010e --- /dev/null +++ b/lib/wine/libmlang.def @@ -0,0 +1,19 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/mlang/mlang.spec; do not edit! + +LIBRARY mlang.dll + +EXPORTS + IsConvertINetStringAvailable@8 @110 + ConvertINetString@28 @111 + ConvertINetUnicodeToMultiByte@24 @112 + ConvertINetMultiByteToUnicode@24 @113 + ConvertINetReset@0 @114 PRIVATE + LcidToRfc1766A@12 @120 + LcidToRfc1766W@12 @121 + Rfc1766ToLcidA@8 @122 + Rfc1766ToLcidW@8 @123 + DllCanUnloadNow@0 @115 PRIVATE + DllGetClassObject@12 @116 PRIVATE + DllRegisterServer@0 @117 PRIVATE + DllUnregisterServer@0 @118 PRIVATE + GetGlobalFontLinkObject@4 @119 diff --git a/lib/wine/libmpr.def b/lib/wine/libmpr.def new file mode 100644 index 0000000..b00cc74 --- /dev/null +++ b/lib/wine/libmpr.def @@ -0,0 +1,93 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/mpr/mpr.spec; do not edit! + +LIBRARY mpr.dll + +EXPORTS + MultinetGetConnectionPerformanceA@8 @10 + MultinetGetConnectionPerformanceW@8 @11 + MultinetGetErrorTextA@12 @26 + MultinetGetErrorTextW@12 @27 + NPSAuthenticationDialogA@4 @28 + NPSCopyStringA@12 @29 + NPSDeviceGetNumberA@12 @30 + NPSDeviceGetStringA@16 @31 + NPSGetProviderHandleA@4 @32 + NPSGetProviderNameA@8 @33 + NPSGetSectionNameA@8 @34 + NPSNotifyGetContextA@4 @35 + NPSNotifyRegisterA@8 @36 + NPSSetCustomTextA@4 @37 + NPSSetExtendedErrorA@8 @38 + PwdChangePasswordA@16 @39 + PwdChangePasswordW@16 @40 + PwdGetPasswordStatusA@12 @41 + PwdGetPasswordStatusW@12 @42 + PwdSetPasswordStatusA@12 @43 + PwdSetPasswordStatusW@12 @44 + WNetAddConnection2A@16 @45 + WNetAddConnection2W@16 @46 + WNetAddConnection3A@20 @47 + WNetAddConnection3W@20 @48 + WNetAddConnectionA@12 @49 + WNetAddConnectionW@12 @50 + WNetCachePassword@24 @51 + WNetCancelConnection2A@12 @52 + WNetCancelConnection2W@12 @53 + WNetCancelConnectionA@8 @54 + WNetCancelConnectionW@8 @55 + WNetClearConnections@4 @56 + WNetCloseEnum@4 @57 + WNetConnectionDialog1A@4 @58 + WNetConnectionDialog1W@4 @59 + WNetConnectionDialog@8 @60 + WNetDisconnectDialog1A@4 @61 + WNetDisconnectDialog1W@4 @62 + WNetDisconnectDialog@8 @63 + WNetEnumCachedPasswords@20 @64 + WNetEnumResourceA@16 @65 + WNetEnumResourceW@16 @66 + WNetFMXEditPerm@0 @67 PRIVATE + WNetFMXGetPermCaps@0 @68 PRIVATE + WNetFMXGetPermHelp@0 @69 PRIVATE + WNetFormatNetworkNameA@0 @70 PRIVATE + WNetFormatNetworkNameW@0 @71 PRIVATE + WNetGetCachedPassword@20 @72 + WNetGetConnectionA@12 @73 + WNetGetConnectionW@12 @74 + WNetGetDirectoryTypeA@0 @75 PRIVATE + WNetGetHomeDirectoryA@0 @76 PRIVATE + WNetGetHomeDirectoryW@0 @77 PRIVATE + WNetGetLastErrorA@20 @78 + WNetGetLastErrorW@20 @79 + WNetGetNetworkInformationA@8 @80 + WNetGetNetworkInformationW@8 @81 + WNetGetPropertyTextA@0 @82 PRIVATE + WNetGetProviderNameA@12 @83 + WNetGetProviderNameW@12 @84 + WNetGetResourceInformationA@16 @85 + WNetGetResourceInformationW@16 @86 + WNetGetResourceParentA@12 @87 + WNetGetResourceParentW@12 @88 + WNetGetUniversalNameA@16 @89 + WNetGetUniversalNameW@16 @90 + WNetGetUserA@12 @91 + WNetGetUserW@12 @92 + WNetLogoffA@8 @93 + WNetLogoffW@8 @94 + WNetLogonA@8 @95 + WNetLogonNotify@0 @96 PRIVATE + WNetLogonW@8 @97 + WNetOpenEnumA@20 @98 + WNetOpenEnumW@20 @99 + WNetPasswordChangeNotify@0 @100 PRIVATE + WNetPropertyDialogA@0 @101 PRIVATE + WNetRemoveCachedPassword@12 @102 + WNetRestoreConnection@0 @103 PRIVATE + WNetRestoreConnectionA@8 @104 + WNetRestoreConnectionW@8 @105 + WNetSetConnectionA@12 @106 + WNetSetConnectionW@12 @107 + WNetUseConnectionA@32 @108 + WNetUseConnectionW@32 @109 + WNetVerifyPasswordA@8 @110 + WNetVerifyPasswordW@8 @111 diff --git a/lib/wine/libmprapi.def b/lib/wine/libmprapi.def new file mode 100644 index 0000000..335c78f --- /dev/null +++ b/lib/wine/libmprapi.def @@ -0,0 +1,137 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/mprapi/mprapi.spec; do not edit! + +LIBRARY mprapi.dll + +EXPORTS + CompressPhoneNumber@0 @1 PRIVATE + MprAdminBufferFree@0 @2 PRIVATE + MprAdminConnectionClearStats@0 @3 PRIVATE + MprAdminConnectionEnum@0 @4 PRIVATE + MprAdminConnectionGetInfo@0 @5 PRIVATE + MprAdminDeregisterConnectionNotification@0 @6 PRIVATE + MprAdminDeviceEnum@0 @7 PRIVATE + MprAdminEstablishDomainRasServer@0 @8 PRIVATE + MprAdminGetErrorString@8 @9 + MprAdminGetPDCServer@0 @10 PRIVATE + MprAdminInterfaceConnect@0 @11 PRIVATE + MprAdminInterfaceCreate@0 @12 PRIVATE + MprAdminInterfaceDelete@0 @13 PRIVATE + MprAdminInterfaceDeviceGetInfo@0 @14 PRIVATE + MprAdminInterfaceDeviceSetInfo@0 @15 PRIVATE + MprAdminInterfaceDisconnect@0 @16 PRIVATE + MprAdminInterfaceEnum@0 @17 PRIVATE + MprAdminInterfaceGetCredentials@0 @18 PRIVATE + MprAdminInterfaceGetCredentialsEx@0 @19 PRIVATE + MprAdminInterfaceGetHandle@0 @20 PRIVATE + MprAdminInterfaceGetInfo@0 @21 PRIVATE + MprAdminInterfaceQueryUpdateResult@0 @22 PRIVATE + MprAdminInterfaceSetCredentials@0 @23 PRIVATE + MprAdminInterfaceSetCredentialsEx@0 @24 PRIVATE + MprAdminInterfaceSetInfo@0 @25 PRIVATE + MprAdminInterfaceTransportAdd@0 @26 PRIVATE + MprAdminInterfaceTransportGetInfo@0 @27 PRIVATE + MprAdminInterfaceTransportRemove@0 @28 PRIVATE + MprAdminInterfaceTransportSetInfo@0 @29 PRIVATE + MprAdminInterfaceUpdatePhonebookInfo@0 @30 PRIVATE + MprAdminInterfaceUpdateRoutes@0 @31 PRIVATE + MprAdminIsDomainRasServer@0 @32 PRIVATE + MprAdminIsServiceRunning@4 @33 + MprAdminMIBBufferFree@0 @34 PRIVATE + MprAdminMIBEntryCreate@0 @35 PRIVATE + MprAdminMIBEntryDelete@0 @36 PRIVATE + MprAdminMIBEntryGet@0 @37 PRIVATE + MprAdminMIBEntryGetFirst@0 @38 PRIVATE + MprAdminMIBEntryGetNext@0 @39 PRIVATE + MprAdminMIBEntrySet@0 @40 PRIVATE + MprAdminMIBServerConnect@0 @41 PRIVATE + MprAdminMIBServerDisconnect@0 @42 PRIVATE + MprAdminPortClearStats@0 @43 PRIVATE + MprAdminPortDisconnect@0 @44 PRIVATE + MprAdminPortEnum@0 @45 PRIVATE + MprAdminPortGetInfo@0 @46 PRIVATE + MprAdminPortReset@0 @47 PRIVATE + MprAdminRegisterConnectionNotification@0 @48 PRIVATE + MprAdminSendUserMessage@0 @49 PRIVATE + MprAdminServerConnect@0 @50 PRIVATE + MprAdminServerDisconnect@0 @51 PRIVATE + MprAdminServerGetCredentials@0 @52 PRIVATE + MprAdminServerGetInfo@0 @53 PRIVATE + MprAdminServerSetCredentials@0 @54 PRIVATE + MprAdminTransportCreate@0 @55 PRIVATE + MprAdminTransportGetInfo@0 @56 PRIVATE + MprAdminTransportSetInfo@0 @57 PRIVATE + MprAdminUpgradeUsers@0 @58 PRIVATE + MprAdminUserClose@0 @59 PRIVATE + MprAdminUserGetInfo@0 @60 PRIVATE + MprAdminUserOpen@0 @61 PRIVATE + MprAdminUserRead@0 @62 PRIVATE + MprAdminUserReadProfFlags@0 @63 PRIVATE + MprAdminUserServerConnect@0 @64 PRIVATE + MprAdminUserServerDisconnect@0 @65 PRIVATE + MprAdminUserSetInfo@0 @66 PRIVATE + MprAdminUserWrite@0 @67 PRIVATE + MprAdminUserWriteProfFlags@0 @68 PRIVATE + MprConfigBufferFree@0 @69 PRIVATE + MprConfigGetFriendlyName@0 @70 PRIVATE + MprConfigGetGuidName@0 @71 PRIVATE + MprConfigInterfaceCreate@0 @72 PRIVATE + MprConfigInterfaceDelete@0 @73 PRIVATE + MprConfigInterfaceEnum@0 @74 PRIVATE + MprConfigInterfaceGetHandle@0 @75 PRIVATE + MprConfigInterfaceGetInfo@0 @76 PRIVATE + MprConfigInterfaceSetInfo@0 @77 PRIVATE + MprConfigInterfaceTransportAdd@0 @78 PRIVATE + MprConfigInterfaceTransportEnum@0 @79 PRIVATE + MprConfigInterfaceTransportGetHandle@0 @80 PRIVATE + MprConfigInterfaceTransportGetInfo@0 @81 PRIVATE + MprConfigInterfaceTransportRemove@0 @82 PRIVATE + MprConfigInterfaceTransportSetInfo@0 @83 PRIVATE + MprConfigServerBackup@0 @84 PRIVATE + MprConfigServerConnect@0 @85 PRIVATE + MprConfigServerDisconnect@0 @86 PRIVATE + MprConfigServerGetInfo@0 @87 PRIVATE + MprConfigServerInstall@0 @88 PRIVATE + MprConfigServerRefresh@0 @89 PRIVATE + MprConfigServerRestore@0 @90 PRIVATE + MprConfigTransportCreate@0 @91 PRIVATE + MprConfigTransportDelete@0 @92 PRIVATE + MprConfigTransportEnum@0 @93 PRIVATE + MprConfigTransportGetHandle@0 @94 PRIVATE + MprConfigTransportGetInfo@0 @95 PRIVATE + MprConfigTransportSetInfo@0 @96 PRIVATE + MprDomainQueryAccess@0 @97 PRIVATE + MprDomainQueryRasServer@0 @98 PRIVATE + MprDomainRegisterRasServer@0 @99 PRIVATE + MprDomainSetAccess@0 @100 PRIVATE + MprGetUsrParams@0 @101 PRIVATE + MprInfoBlockAdd@0 @102 PRIVATE + MprInfoBlockFind@0 @103 PRIVATE + MprInfoBlockQuerySize@0 @104 PRIVATE + MprInfoBlockRemove@0 @105 PRIVATE + MprInfoBlockSet@0 @106 PRIVATE + MprInfoCreate@0 @107 PRIVATE + MprInfoDelete@0 @108 PRIVATE + MprInfoDuplicate@0 @109 PRIVATE + MprInfoRemoveAll@0 @110 PRIVATE + MprPortSetUsage@0 @111 PRIVATE + MprSetupIpInIpInterfaceFriendlyNameCreate@0 @112 PRIVATE + MprSetupIpInIpInterfaceFriendlyNameDelete@0 @113 PRIVATE + MprSetupIpInIpInterfaceFriendlyNameEnum@0 @114 PRIVATE + MprSetupIpInIpInterfaceFriendlyNameFree@0 @115 PRIVATE + RasAdminBufferFree@0 @116 PRIVATE + RasAdminConnectionClearStats@0 @117 PRIVATE + RasAdminConnectionEnum@0 @118 PRIVATE + RasAdminConnectionGetInfo@0 @119 PRIVATE + RasAdminGetErrorString@0 @120 PRIVATE + RasAdminGetPDCServer@0 @121 PRIVATE + RasAdminIsServiceRunning@0 @122 PRIVATE + RasAdminPortClearStats@0 @123 PRIVATE + RasAdminPortDisconnect@0 @124 PRIVATE + RasAdminPortEnum@0 @125 PRIVATE + RasAdminPortGetInfo@0 @126 PRIVATE + RasAdminPortReset@0 @127 PRIVATE + RasAdminServerConnect@0 @128 PRIVATE + RasAdminServerDisconnect@0 @129 PRIVATE + RasAdminUserGetInfo@0 @130 PRIVATE + RasAdminUserSetInfo@0 @131 PRIVATE + RasPrivilegeAndCallBackNumber@0 @132 PRIVATE diff --git a/lib/wine/libmsacm32.def b/lib/wine/libmsacm32.def new file mode 100644 index 0000000..c7f817e --- /dev/null +++ b/lib/wine/libmsacm32.def @@ -0,0 +1,49 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/msacm32/msacm32.spec; do not edit! + +LIBRARY msacm32.dll + +EXPORTS + acmDriverAddA@20 @1 + acmDriverAddW@20 @2 + acmDriverClose@8 @3 + acmDriverDetailsA@12 @4 + acmDriverDetailsW@12 @5 + acmDriverEnum@12 @6 + acmDriverID@12 @7 + acmDriverMessage@16 @8 + acmDriverOpen@12 @9 + acmDriverPriority@12 @10 + acmDriverRemove@8 @11 + acmFilterChooseA@4 @12 + acmFilterChooseW@4 @13 + acmFilterDetailsA@12 @14 + acmFilterDetailsW@12 @15 + acmFilterEnumA@20 @16 + acmFilterEnumW@20 @17 + acmFilterTagDetailsA@12 @18 + acmFilterTagDetailsW@12 @19 + acmFilterTagEnumA@20 @20 + acmFilterTagEnumW@20 @21 + acmFormatChooseA@4 @22 + acmFormatChooseW@4 @23 + acmFormatDetailsA@12 @24 + acmFormatDetailsW@12 @25 + acmFormatEnumA@20 @26 + acmFormatEnumW@20 @27 + acmFormatSuggest@20 @28 + acmFormatTagDetailsA@12 @29 + acmFormatTagDetailsW@12 @30 + acmFormatTagEnumA@20 @31 + acmFormatTagEnumW@20 @32 + acmGetVersion@0 @33 + acmMessage32@0 @34 PRIVATE + acmMetrics@12 @35 + acmStreamClose@8 @36 + acmStreamConvert@12 @37 + acmStreamMessage@16 @38 + acmStreamOpen@32 @39 + acmStreamPrepareHeader@12 @40 + acmStreamReset@8 @41 + acmStreamSize@16 @42 + acmStreamUnprepareHeader@12 @43 + DriverProc@20=PCM_DriverProc @44 PRIVATE diff --git a/lib/wine/libmsasn1.def b/lib/wine/libmsasn1.def new file mode 100644 index 0000000..6a37ed8 --- /dev/null +++ b/lib/wine/libmsasn1.def @@ -0,0 +1,271 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/msasn1/msasn1.spec; do not edit! + +LIBRARY msasn1.dll + +EXPORTS + ASN1BERDecBitString2@0 @1 PRIVATE + ASN1BERDecBitString@0 @2 PRIVATE + ASN1BERDecBool@0 @3 PRIVATE + ASN1BERDecChar16String@0 @4 PRIVATE + ASN1BERDecChar32String@0 @5 PRIVATE + ASN1BERDecCharString@0 @6 PRIVATE + ASN1BERDecCheck@0 @7 PRIVATE + ASN1BERDecDouble@0 @8 PRIVATE + ASN1BERDecEndOfContents@0 @9 PRIVATE + ASN1BERDecEoid@0 @10 PRIVATE + ASN1BERDecExplicitTag@0 @11 PRIVATE + ASN1BERDecFlush@0 @12 PRIVATE + ASN1BERDecGeneralizedTime@0 @13 PRIVATE + ASN1BERDecLength@0 @14 PRIVATE + ASN1BERDecMultibyteString@0 @15 PRIVATE + ASN1BERDecNotEndOfContents@0 @16 PRIVATE + ASN1BERDecNull@0 @17 PRIVATE + ASN1BERDecObjectIdentifier2@0 @18 PRIVATE + ASN1BERDecObjectIdentifier@0 @19 PRIVATE + ASN1BERDecOctetString2@0 @20 PRIVATE + ASN1BERDecOctetString@0 @21 PRIVATE + ASN1BERDecOpenType2@0 @22 PRIVATE + ASN1BERDecOpenType@0 @23 PRIVATE + ASN1BERDecPeekTag@0 @24 PRIVATE + ASN1BERDecS16Val@0 @25 PRIVATE + ASN1BERDecS32Val@0 @26 PRIVATE + ASN1BERDecS8Val@0 @27 PRIVATE + ASN1BERDecSXVal@0 @28 PRIVATE + ASN1BERDecSkip@0 @29 PRIVATE + ASN1BERDecTag@0 @30 PRIVATE + ASN1BERDecU16Val@0 @31 PRIVATE + ASN1BERDecU32Val@0 @32 PRIVATE + ASN1BERDecU8Val@0 @33 PRIVATE + ASN1BERDecUTCTime@0 @34 PRIVATE + ASN1BERDecUTF8String@0 @35 PRIVATE + ASN1BERDecZeroChar16String@0 @36 PRIVATE + ASN1BERDecZeroChar32String@0 @37 PRIVATE + ASN1BERDecZeroCharString@0 @38 PRIVATE + ASN1BERDecZeroMultibyteString@0 @39 PRIVATE + ASN1BERDotVal2Eoid@0 @40 PRIVATE + ASN1BEREncBitString@0 @41 PRIVATE + ASN1BEREncBool@0 @42 PRIVATE + ASN1BEREncChar16String@0 @43 PRIVATE + ASN1BEREncChar32String@0 @44 PRIVATE + ASN1BEREncCharString@0 @45 PRIVATE + ASN1BEREncCheck@0 @46 PRIVATE + ASN1BEREncDouble@0 @47 PRIVATE + ASN1BEREncEndOfContents@0 @48 PRIVATE + ASN1BEREncEoid@0 @49 PRIVATE + ASN1BEREncExplicitTag@0 @50 PRIVATE + ASN1BEREncFlush@0 @51 PRIVATE + ASN1BEREncGeneralizedTime@0 @52 PRIVATE + ASN1BEREncLength@0 @53 PRIVATE + ASN1BEREncMultibyteString@0 @54 PRIVATE + ASN1BEREncNull@0 @55 PRIVATE + ASN1BEREncObjectIdentifier2@0 @56 PRIVATE + ASN1BEREncObjectIdentifier@0 @57 PRIVATE + ASN1BEREncOctetString@0 @58 PRIVATE + ASN1BEREncOpenType@0 @59 PRIVATE + ASN1BEREncRemoveZeroBits@0 @60 PRIVATE + ASN1BEREncS32@0 @61 PRIVATE + ASN1BEREncSX@0 @62 PRIVATE + ASN1BEREncTag@0 @63 PRIVATE + ASN1BEREncU32@0 @64 PRIVATE + ASN1BEREncUTCTime@0 @65 PRIVATE + ASN1BEREncUTF8String@0 @66 PRIVATE + ASN1BEREncZeroMultibyteString@0 @67 PRIVATE + ASN1BEREoid2DotVal@0 @68 PRIVATE + ASN1BEREoid_free@0 @69 PRIVATE + ASN1CEREncBeginBlk@0 @70 PRIVATE + ASN1CEREncBitString@0 @71 PRIVATE + ASN1CEREncChar16String@0 @72 PRIVATE + ASN1CEREncChar32String@0 @73 PRIVATE + ASN1CEREncCharString@0 @74 PRIVATE + ASN1CEREncEndBlk@0 @75 PRIVATE + ASN1CEREncFlushBlkElement@0 @76 PRIVATE + ASN1CEREncGeneralizedTime@0 @77 PRIVATE + ASN1CEREncMultibyteString@0 @78 PRIVATE + ASN1CEREncNewBlkElement@0 @79 PRIVATE + ASN1CEREncOctetString@0 @80 PRIVATE + ASN1CEREncUTCTime@0 @81 PRIVATE + ASN1CEREncZeroMultibyteString@0 @82 PRIVATE + ASN1DecAbort@0 @83 PRIVATE + ASN1DecAlloc@0 @84 PRIVATE + ASN1DecDone@0 @85 PRIVATE + ASN1DecRealloc@0 @86 PRIVATE + ASN1DecSetError@0 @87 PRIVATE + ASN1EncAbort@0 @88 PRIVATE + ASN1EncDone@0 @89 PRIVATE + ASN1EncSetError@0 @90 PRIVATE + ASN1Free@0 @91 PRIVATE + ASN1PERDecAlignment@0 @92 PRIVATE + ASN1PERDecBit@0 @93 PRIVATE + ASN1PERDecBits@0 @94 PRIVATE + ASN1PERDecBoolean@0 @95 PRIVATE + ASN1PERDecChar16String@0 @96 PRIVATE + ASN1PERDecChar32String@0 @97 PRIVATE + ASN1PERDecCharString@0 @98 PRIVATE + ASN1PERDecCharStringNoAlloc@0 @99 PRIVATE + ASN1PERDecComplexChoice@0 @100 PRIVATE + ASN1PERDecDouble@0 @101 PRIVATE + ASN1PERDecExtension@0 @102 PRIVATE + ASN1PERDecFlush@0 @103 PRIVATE + ASN1PERDecFragmented@0 @104 PRIVATE + ASN1PERDecFragmentedChar16String@0 @105 PRIVATE + ASN1PERDecFragmentedChar32String@0 @106 PRIVATE + ASN1PERDecFragmentedCharString@0 @107 PRIVATE + ASN1PERDecFragmentedExtension@0 @108 PRIVATE + ASN1PERDecFragmentedIntx@0 @109 PRIVATE + ASN1PERDecFragmentedLength@0 @110 PRIVATE + ASN1PERDecFragmentedTableChar16String@0 @111 PRIVATE + ASN1PERDecFragmentedTableChar32String@0 @112 PRIVATE + ASN1PERDecFragmentedTableCharString@0 @113 PRIVATE + ASN1PERDecFragmentedUIntx@0 @114 PRIVATE + ASN1PERDecFragmentedZeroChar16String@0 @115 PRIVATE + ASN1PERDecFragmentedZeroChar32String@0 @116 PRIVATE + ASN1PERDecFragmentedZeroCharString@0 @117 PRIVATE + ASN1PERDecFragmentedZeroTableChar16String@0 @118 PRIVATE + ASN1PERDecFragmentedZeroTableChar32String@0 @119 PRIVATE + ASN1PERDecFragmentedZeroTableCharString@0 @120 PRIVATE + ASN1PERDecGeneralizedTime@0 @121 PRIVATE + ASN1PERDecInteger@0 @122 PRIVATE + ASN1PERDecMultibyteString@0 @123 PRIVATE + ASN1PERDecN16Val@0 @124 PRIVATE + ASN1PERDecN32Val@0 @125 PRIVATE + ASN1PERDecN8Val@0 @126 PRIVATE + ASN1PERDecNormallySmallExtension@0 @127 PRIVATE + ASN1PERDecObjectIdentifier2@0 @128 PRIVATE + ASN1PERDecObjectIdentifier@0 @129 PRIVATE + ASN1PERDecOctetString_FixedSize@0 @130 PRIVATE + ASN1PERDecOctetString_FixedSizeEx@0 @131 PRIVATE + ASN1PERDecOctetString_NoSize@0 @132 PRIVATE + ASN1PERDecOctetString_VarSize@0 @133 PRIVATE + ASN1PERDecOctetString_VarSizeEx@0 @134 PRIVATE + ASN1PERDecS16Val@0 @135 PRIVATE + ASN1PERDecS32Val@0 @136 PRIVATE + ASN1PERDecS8Val@0 @137 PRIVATE + ASN1PERDecSXVal@0 @138 PRIVATE + ASN1PERDecSeqOf_NoSize@0 @139 PRIVATE + ASN1PERDecSeqOf_VarSize@0 @140 PRIVATE + ASN1PERDecSimpleChoice@0 @141 PRIVATE + ASN1PERDecSimpleChoiceEx@0 @142 PRIVATE + ASN1PERDecSkipBits@0 @143 PRIVATE + ASN1PERDecSkipFragmented@0 @144 PRIVATE + ASN1PERDecSkipNormallySmall@0 @145 PRIVATE + ASN1PERDecSkipNormallySmallExtension@0 @146 PRIVATE + ASN1PERDecSkipNormallySmallExtensionFragmented@0 @147 PRIVATE + ASN1PERDecTableChar16String@0 @148 PRIVATE + ASN1PERDecTableChar32String@0 @149 PRIVATE + ASN1PERDecTableCharString@0 @150 PRIVATE + ASN1PERDecTableCharStringNoAlloc@0 @151 PRIVATE + ASN1PERDecU16Val@0 @152 PRIVATE + ASN1PERDecU32Val@0 @153 PRIVATE + ASN1PERDecU8Val@0 @154 PRIVATE + ASN1PERDecUTCTime@0 @155 PRIVATE + ASN1PERDecUXVal@0 @156 PRIVATE + ASN1PERDecUnsignedInteger@0 @157 PRIVATE + ASN1PERDecUnsignedShort@0 @158 PRIVATE + ASN1PERDecZeroChar16String@0 @159 PRIVATE + ASN1PERDecZeroChar32String@0 @160 PRIVATE + ASN1PERDecZeroCharString@0 @161 PRIVATE + ASN1PERDecZeroCharStringNoAlloc@0 @162 PRIVATE + ASN1PERDecZeroTableChar16String@0 @163 PRIVATE + ASN1PERDecZeroTableChar32String@0 @164 PRIVATE + ASN1PERDecZeroTableCharString@0 @165 PRIVATE + ASN1PERDecZeroTableCharStringNoAlloc@0 @166 PRIVATE + ASN1PEREncAlignment@0 @167 PRIVATE + ASN1PEREncBit@0 @168 PRIVATE + ASN1PEREncBitIntx@0 @169 PRIVATE + ASN1PEREncBitVal@0 @170 PRIVATE + ASN1PEREncBits@0 @171 PRIVATE + ASN1PEREncBoolean@0 @172 PRIVATE + ASN1PEREncChar16String@0 @173 PRIVATE + ASN1PEREncChar32String@0 @174 PRIVATE + ASN1PEREncCharString@0 @175 PRIVATE + ASN1PEREncCheckExtensions@0 @176 PRIVATE + ASN1PEREncComplexChoice@0 @177 PRIVATE + ASN1PEREncDouble@0 @178 PRIVATE + ASN1PEREncExtensionBitClear@0 @179 PRIVATE + ASN1PEREncExtensionBitSet@0 @180 PRIVATE + ASN1PEREncFlush@0 @181 PRIVATE + ASN1PEREncFlushFragmentedToParent@0 @182 PRIVATE + ASN1PEREncFragmented@0 @183 PRIVATE + ASN1PEREncFragmentedChar16String@0 @184 PRIVATE + ASN1PEREncFragmentedChar32String@0 @185 PRIVATE + ASN1PEREncFragmentedCharString@0 @186 PRIVATE + ASN1PEREncFragmentedIntx@0 @187 PRIVATE + ASN1PEREncFragmentedLength@0 @188 PRIVATE + ASN1PEREncFragmentedTableChar16String@0 @189 PRIVATE + ASN1PEREncFragmentedTableChar32String@0 @190 PRIVATE + ASN1PEREncFragmentedTableCharString@0 @191 PRIVATE + ASN1PEREncFragmentedUIntx@0 @192 PRIVATE + ASN1PEREncGeneralizedTime@0 @193 PRIVATE + ASN1PEREncInteger@0 @194 PRIVATE + ASN1PEREncMultibyteString@0 @195 PRIVATE + ASN1PEREncNormallySmall@0 @196 PRIVATE + ASN1PEREncNormallySmallBits@0 @197 PRIVATE + ASN1PEREncObjectIdentifier2@0 @198 PRIVATE + ASN1PEREncObjectIdentifier@0 @199 PRIVATE + ASN1PEREncOctetString_FixedSize@0 @200 PRIVATE + ASN1PEREncOctetString_FixedSizeEx@0 @201 PRIVATE + ASN1PEREncOctetString_NoSize@0 @202 PRIVATE + ASN1PEREncOctetString_VarSize@0 @203 PRIVATE + ASN1PEREncOctetString_VarSizeEx@0 @204 PRIVATE + ASN1PEREncOctets@0 @205 PRIVATE + ASN1PEREncRemoveZeroBits@0 @206 PRIVATE + ASN1PEREncSeqOf_NoSize@0 @207 PRIVATE + ASN1PEREncSeqOf_VarSize@0 @208 PRIVATE + ASN1PEREncSimpleChoice@0 @209 PRIVATE + ASN1PEREncSimpleChoiceEx@0 @210 PRIVATE + ASN1PEREncTableChar16String@0 @211 PRIVATE + ASN1PEREncTableChar32String@0 @212 PRIVATE + ASN1PEREncTableCharString@0 @213 PRIVATE + ASN1PEREncUTCTime@0 @214 PRIVATE + ASN1PEREncUnsignedInteger@0 @215 PRIVATE + ASN1PEREncUnsignedShort@0 @216 PRIVATE + ASN1PEREncZero@0 @217 PRIVATE + ASN1PERFreeSeqOf@0 @218 PRIVATE + ASN1_CloseDecoder@0 @219 PRIVATE + ASN1_CloseEncoder2@0 @220 PRIVATE + ASN1_CloseEncoder@0 @221 PRIVATE + ASN1_CloseModule@0 @222 PRIVATE + ASN1_CreateDecoder@0 @223 PRIVATE + ASN1_CreateDecoderEx@0 @224 PRIVATE + ASN1_CreateEncoder@0 @225 PRIVATE + ASN1_CreateModule@0 @226 PRIVATE + ASN1_Decode@0 @227 PRIVATE + ASN1_Encode@0 @228 PRIVATE + ASN1_FreeDecoded@0 @229 PRIVATE + ASN1_FreeEncoded@0 @230 PRIVATE + ASN1_GetDecoderOption@0 @231 PRIVATE + ASN1_GetEncoderOption@0 @232 PRIVATE + ASN1_SetDecoderOption@0 @233 PRIVATE + ASN1_SetEncoderOption@0 @234 PRIVATE + ASN1bitstring_cmp@0 @235 PRIVATE + ASN1bitstring_free@0 @236 PRIVATE + ASN1char16string_cmp@0 @237 PRIVATE + ASN1char16string_free@0 @238 PRIVATE + ASN1char32string_cmp@0 @239 PRIVATE + ASN1char32string_free@0 @240 PRIVATE + ASN1charstring_cmp@0 @241 PRIVATE + ASN1charstring_free@0 @242 PRIVATE + ASN1generalizedtime_cmp@0 @243 PRIVATE + ASN1intx2int32@0 @244 PRIVATE + ASN1intx2uint32@0 @245 PRIVATE + ASN1intx_add@0 @246 PRIVATE + ASN1intx_free@0 @247 PRIVATE + ASN1intx_setuint32@0 @248 PRIVATE + ASN1intx_sub@0 @249 PRIVATE + ASN1intx_uoctets@0 @250 PRIVATE + ASN1intxisuint32@0 @251 PRIVATE + ASN1objectidentifier2_cmp@0 @252 PRIVATE + ASN1objectidentifier_cmp@0 @253 PRIVATE + ASN1objectidentifier_free@0 @254 PRIVATE + ASN1octetstring_cmp@0 @255 PRIVATE + ASN1octetstring_free@0 @256 PRIVATE + ASN1open_cmp@0 @257 PRIVATE + ASN1open_free@0 @258 PRIVATE + ASN1uint32_uoctets@0 @259 PRIVATE + ASN1utctime_cmp@0 @260 PRIVATE + ASN1utf8string_free@0 @261 PRIVATE + ASN1ztchar16string_cmp@0 @262 PRIVATE + ASN1ztchar16string_free@0 @263 PRIVATE + ASN1ztchar32string_free@0 @264 PRIVATE + ASN1ztcharstring_cmp@0 @265 PRIVATE + ASN1ztcharstring_free@0 @266 PRIVATE diff --git a/lib/wine/libmscms.def b/lib/wine/libmscms.def new file mode 100644 index 0000000..5fab82a --- /dev/null +++ b/lib/wine/libmscms.def @@ -0,0 +1,108 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/mscms/mscms.spec; do not edit! + +LIBRARY mscms.dll + +EXPORTS + AssociateColorProfileWithDeviceA@12 @1 + AssociateColorProfileWithDeviceW@12 @2 + CheckBitmapBits@36 @3 + CheckColors@20 @4 + CloseColorProfile@4 @5 + CloseDisplay@0 @6 PRIVATE + ColorCplGetDefaultProfileScope@0 @7 PRIVATE + ColorCplGetDefaultRenderingIntentScope@0 @8 PRIVATE + ColorCplGetProfileProperties@0 @9 PRIVATE + ColorCplHasSystemWideAssociationListChanged@0 @10 PRIVATE + ColorCplInitialize@0 @11 PRIVATE + ColorCplLoadAssociationList@0 @12 PRIVATE + ColorCplMergeAssociationLists@0 @13 PRIVATE + ColorCplOverwritePerUserAssociationList@0 @14 PRIVATE + ColorCplReleaseProfileProperties@0 @15 PRIVATE + ColorCplResetSystemWideAssociationListChangedWarning@0 @16 PRIVATE + ColorCplSaveAssociationList@0 @17 PRIVATE + ColorCplSetUsePerUserProfiles@0 @18 PRIVATE + ColorCplUninitialize@0 @19 PRIVATE + ConvertColorNameToIndex@16 @20 + ConvertIndexToColorName@16 @21 + CreateColorTransformA@16 @22 + CreateColorTransformW@16 @23 + CreateDeviceLinkProfile@28 @24 + CreateMultiProfileTransform@24 @25 + CreateProfileFromLogColorSpaceA@8 @26 + CreateProfileFromLogColorSpaceW@8 @27 + DccwCreateDisplayProfileAssociationList@0 @28 PRIVATE + DccwGetDisplayProfileAssociationList@0 @29 PRIVATE + DccwGetGamutSize@0 @30 PRIVATE + DccwReleaseDisplayProfileAssociationList@0 @31 PRIVATE + DccwSetDisplayProfileAssociationList@0 @32 PRIVATE + DeleteColorTransform@4 @33 + DeviceRenameEvent@0 @34 PRIVATE + DisassociateColorProfileFromDeviceA@12 @35 + DisassociateColorProfileFromDeviceW@12 @36 + EnumColorProfilesA@20 @37 + EnumColorProfilesW@20 @38 + GenerateCopyFilePaths@36 @39 + GetCMMInfo@8 @40 + GetColorDirectoryA@12 @41 + GetColorDirectoryW@12 @42 + GetColorProfileElement@24 @43 + GetColorProfileElementTag@12 @44 + GetColorProfileFromHandle@12 @45 + GetColorProfileHeader@8 @46 + GetCountColorProfileElements@8 @47 + GetNamedProfileInfo@8 @48 + GetPS2ColorRenderingDictionary@20 @49 + GetPS2ColorRenderingIntent@16 @50 + GetPS2ColorSpaceArray@24 @51 + GetStandardColorSpaceProfileA@16 @52 + GetStandardColorSpaceProfileW@16 @53 + InstallColorProfileA@8 @54 + InstallColorProfileW@8 @55 + InternalGetDeviceConfig@0 @56 PRIVATE + InternalGetPS2CSAFromLCS@0 @57 PRIVATE + InternalGetPS2ColorRenderingDictionary@0 @58 PRIVATE + InternalGetPS2ColorSpaceArray@0 @59 PRIVATE + InternalGetPS2PreviewCRD@0 @60 PRIVATE + InternalRefreshCalibration@0 @61 PRIVATE + InternalSetDeviceConfig@0 @62 PRIVATE + InternalWcsAssociateColorProfileWithDevice@0 @63 PRIVATE + IsColorProfileTagPresent@12 @64 + IsColorProfileValid@8 @65 + OpenColorProfileA@16 @66 + OpenColorProfileW@16 @67 + OpenDisplay@0 @68 PRIVATE + RegisterCMMA@12 @69 + RegisterCMMW@12 @70 + SelectCMM@4 @71 + SetColorProfileElement@20 @72 + SetColorProfileElementReference@12 @73 + SetColorProfileElementSize@12 @74 + SetColorProfileHeader@8 @75 + SetStandardColorSpaceProfileA@12 @76 + SetStandardColorSpaceProfileW@12 @77 + SpoolerCopyFileEvent@12 @78 + TranslateBitmapBits@44 @79 + TranslateColors@24 @80 + UninstallColorProfileA@12 @81 + UninstallColorProfileW@12 @82 + UnregisterCMMA@8 @83 + UnregisterCMMW@8 @84 + WcsAssociateColorProfileWithDevice@0 @85 PRIVATE + WcsCheckColors@0 @86 PRIVATE + WcsCreateIccProfile@0 @87 PRIVATE + WcsDisassociateColorProfileFromDevice@0 @88 PRIVATE + WcsEnumColorProfiles@0 @89 PRIVATE + WcsEnumColorProfilesSize@12 @90 + WcsGetCalibrationManagementState@0 @91 PRIVATE + WcsGetDefaultColorProfile@0 @92 PRIVATE + WcsGetDefaultColorProfileSize@0 @93 PRIVATE + WcsGetDefaultRenderingIntent@0 @94 PRIVATE + WcsGetUsePerUserProfiles@12 @95 + WcsGpCanInstallOrUninstallProfiles@0 @96 PRIVATE + WcsOpenColorProfileA@28 @97 + WcsOpenColorProfileW@28 @98 + WcsSetCalibrationManagementState@0 @99 PRIVATE + WcsSetDefaultColorProfile@0 @100 PRIVATE + WcsSetDefaultRenderingIntent@0 @101 PRIVATE + WcsSetUsePerUserProfiles@0 @102 PRIVATE + WcsTranslateColors@0 @103 PRIVATE diff --git a/lib/wine/libmsdmo.def b/lib/wine/libmsdmo.def new file mode 100644 index 0000000..06abf09 --- /dev/null +++ b/lib/wine/libmsdmo.def @@ -0,0 +1,20 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/msdmo/msdmo.spec; do not edit! + +LIBRARY msdmo.dll + +EXPORTS + DMOEnum@28 @1 + DMOGetName@8 @2 + DMOGetTypes@28 @3 + DMOGuidToStrA@0 @4 PRIVATE + DMOGuidToStrW@0 @5 PRIVATE + DMORegister@32 @6 + DMOStrToGuidA@0 @7 PRIVATE + DMOStrToGuidW@0 @8 PRIVATE + DMOUnregister@8 @9 + MoCopyMediaType@8 @10 + MoCreateMediaType@8 @11 + MoDeleteMediaType@4 @12 + MoDuplicateMediaType@8 @13 + MoFreeMediaType@4 @14 + MoInitMediaType@8 @15 diff --git a/lib/wine/libmshtml.def b/lib/wine/libmshtml.def new file mode 100644 index 0000000..9637db3 --- /dev/null +++ b/lib/wine/libmshtml.def @@ -0,0 +1,20 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/mshtml/mshtml.spec; do not edit! + +LIBRARY mshtml.dll + +EXPORTS + CreateHTMLPropertyPage@0 @1 PRIVATE + DllCanUnloadNow@0 @2 PRIVATE + DllEnumClassObjects@0 @3 PRIVATE + DllGetClassObject@12 @4 PRIVATE + DllInstall@8 @5 PRIVATE + DllRegisterServer@0 @6 PRIVATE + DllUnregisterServer@0 @7 PRIVATE + MatchExactGetIDsOfNames@0 @8 PRIVATE + PrintHTML@16 @9 + RNIGetCompatibleVersion@0 @10 + RunHTMLApplication@16 @11 + ShowHTMLDialog@20 @12 + ShowModalDialog@0 @13 PRIVATE + ShowModelessHTMLDialog@0 @14 PRIVATE + NP_GetEntryPoints@4 @15 diff --git a/lib/wine/libmsi.def b/lib/wine/libmsi.def new file mode 100644 index 0000000..8c3c62d --- /dev/null +++ b/lib/wine/libmsi.def @@ -0,0 +1,301 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/msi/msi.spec; do not edit! + +LIBRARY msi.dll + +EXPORTS + MsiAdvertiseProductA@16 @5 + MsiAdvertiseProductW@16 @6 + MsiCloseAllHandles@0 @7 + MsiCloseHandle@4 @8 + MsiCollectUserInfoA@4 @9 + MsiCollectUserInfoW@4 @10 + MsiConfigureFeatureA@12 @11 + MsiConfigureFeatureFromDescriptorA@0 @12 PRIVATE + MsiConfigureFeatureFromDescriptorW@0 @13 PRIVATE + MsiConfigureFeatureW@12 @14 + MsiConfigureProductA@12 @15 + MsiConfigureProductW@12 @16 + MsiCreateRecord@4 @17 + MsiDatabaseApplyTransformA@12 @18 + MsiDatabaseApplyTransformW@12 @19 + MsiDatabaseCommit@4 @20 + MsiDatabaseExportA@16 @21 + MsiDatabaseExportW@16 @22 + MsiDatabaseGenerateTransformA@20 @23 + MsiDatabaseGenerateTransformW@20 @24 + MsiDatabaseGetPrimaryKeysA@12 @25 + MsiDatabaseGetPrimaryKeysW@12 @26 + MsiDatabaseImportA@12 @27 + MsiDatabaseImportW@12 @28 + MsiDatabaseMergeA@12 @29 + MsiDatabaseMergeW@12 @30 + MsiDatabaseOpenViewA@12 @31 + MsiDatabaseOpenViewW@12 @32 + MsiDoActionA@8 @33 + MsiDoActionW@8 @34 + MsiEnableUIPreview@8 @35 + MsiEnumClientsA@12 @36 + MsiEnumClientsW@12 @37 + MsiEnumComponentQualifiersA@24 @38 + MsiEnumComponentQualifiersW@24 @39 + MsiEnumComponentsA@8 @40 + MsiEnumComponentsW@8 @41 + MsiEnumFeaturesA@16 @42 + MsiEnumFeaturesW@16 @43 + MsiEnumProductsA@8 @44 + MsiEnumProductsW@8 @45 + MsiEvaluateConditionA@8 @46 + MsiEvaluateConditionW@8 @47 + MsiGetLastErrorRecord@0 @48 + MsiGetActiveDatabase@4 @49 + MsiGetComponentStateA@16 @50 + MsiGetComponentStateW@16 @51 + MsiGetDatabaseState@4 @52 + MsiGetFeatureCostA@20 @53 + MsiGetFeatureCostW@20 @54 + MsiGetFeatureInfoA@28 @55 + MsiGetFeatureInfoW@28 @56 + MsiGetFeatureStateA@16 @57 + MsiGetFeatureStateW@16 @58 + MsiGetFeatureUsageA@16 @59 + MsiGetFeatureUsageW@16 @60 + MsiGetFeatureValidStatesA@12 @61 + MsiGetFeatureValidStatesW@12 @62 + MsiGetLanguage@4 @63 + MsiGetMode@8 @64 + MsiGetProductCodeA@8 @65 + MsiGetProductCodeW@8 @66 + MsiGetProductInfoA@16 @67 + MsiGetProductInfoFromScriptA@0 @68 PRIVATE + MsiGetProductInfoFromScriptW@0 @69 PRIVATE + MsiGetProductInfoW@16 @70 + MsiGetProductPropertyA@16 @71 + MsiGetProductPropertyW@16 @72 + MsiGetPropertyA@16 @73 + MsiGetPropertyW@16 @74 + MsiGetSourcePathA@16 @75 + MsiGetSourcePathW@16 @76 + MsiGetSummaryInformationA@16 @77 + MsiGetSummaryInformationW@16 @78 + MsiGetTargetPathA@16 @79 + MsiGetTargetPathW@16 @80 + MsiGetUserInfoA@28 @81 + MsiGetUserInfoW@28 @82 + MsiInstallMissingComponentA@12 @83 + MsiInstallMissingComponentW@12 @84 + MsiInstallMissingFileA@0 @85 PRIVATE + MsiInstallMissingFileW@0 @86 PRIVATE + MsiInstallProductA@8 @87 + MsiInstallProductW@8 @88 + MsiLocateComponentA@12 @89 + MsiLocateComponentW@12 @90 + MsiOpenDatabaseA@12 @91 + MsiOpenDatabaseW@12 @92 + MsiOpenPackageA@8 @93 + MsiOpenPackageW@8 @94 + MsiOpenProductA@8 @95 + MsiOpenProductW@8 @96 + MsiPreviewBillboardA@12 @97 + MsiPreviewBillboardW@12 @98 + MsiPreviewDialogA@8 @99 + MsiPreviewDialogW@8 @100 + MsiProcessAdvertiseScriptA@0 @101 PRIVATE + MsiProcessAdvertiseScriptW@0 @102 PRIVATE + MsiProcessMessage@12 @103 + MsiProvideComponentA@24 @104 + MsiProvideComponentFromDescriptorA@16 @105 + MsiProvideComponentFromDescriptorW@16 @106 + MsiProvideComponentW@24 @107 + MsiProvideQualifiedComponentA@20 @108 + MsiProvideQualifiedComponentW@20 @109 + MsiQueryFeatureStateA@8 @110 + MsiQueryFeatureStateW@8 @111 + MsiQueryProductStateA@4 @112 + MsiQueryProductStateW@4 @113 + MsiRecordDataSize@8 @114 + MsiRecordGetFieldCount@4 @115 + MsiRecordGetInteger@8 @116 + MsiRecordGetStringA@16 @117 + MsiRecordGetStringW@16 @118 + MsiRecordIsNull@8 @119 + MsiRecordReadStream@16 @120 + MsiRecordSetInteger@12 @121 + MsiRecordSetStreamA@12 @122 + MsiRecordSetStreamW@12 @123 + MsiRecordSetStringA@12 @124 + MsiRecordSetStringW@12 @125 + MsiReinstallFeatureA@12 @126 + MsiReinstallFeatureFromDescriptorA@0 @127 PRIVATE + MsiReinstallFeatureFromDescriptorW@0 @128 PRIVATE + MsiReinstallFeatureW@12 @129 + MsiReinstallProductA@8 @130 + MsiReinstallProductW@8 @131 + MsiSequenceA@12 @132 + MsiSequenceW@12 @133 + MsiSetComponentStateA@12 @134 + MsiSetComponentStateW@12 @135 + MsiSetExternalUIA@12 @136 + MsiSetExternalUIW@12 @137 + MsiSetFeatureStateA@12 @138 + MsiSetFeatureStateW@12 @139 + MsiSetInstallLevel@8 @140 + MsiSetInternalUI@8 @141 + MsiVerifyDiskSpace@0 @142 PRIVATE + MsiSetMode@12 @143 + MsiSetPropertyA@12 @144 + MsiSetPropertyW@12 @145 + MsiSetTargetPathA@12 @146 + MsiSetTargetPathW@12 @147 + MsiSummaryInfoGetPropertyA@28 @148 + MsiSummaryInfoGetPropertyCount@8 @149 + MsiSummaryInfoGetPropertyW@28 @150 + MsiSummaryInfoPersist@4 @151 + MsiSummaryInfoSetPropertyA@24 @152 + MsiSummaryInfoSetPropertyW@24 @153 + MsiUseFeatureA@8 @154 + MsiUseFeatureW@8 @155 + MsiVerifyPackageA@4 @156 + MsiVerifyPackageW@4 @157 + MsiViewClose@4 @158 + MsiViewExecute@8 @159 + MsiViewFetch@8 @160 + MsiViewGetErrorA@12 @161 + MsiViewGetErrorW@12 @162 + MsiViewModify@12 @163 + MsiDatabaseIsTablePersistentA@8 @164 + MsiDatabaseIsTablePersistentW@8 @165 + MsiViewGetColumnInfo@12 @166 + MsiRecordClearData@4 @167 + MsiEnableLogA@12 @168 + MsiEnableLogW@12 @169 + MsiFormatRecordA@16 @170 + MsiFormatRecordW@16 @171 + MsiGetComponentPathA@16 @172 + MsiGetComponentPathW@16 @173 + MsiApplyPatchA@16 @174 + MsiApplyPatchW@16 @175 + MsiAdvertiseScriptA@16 @176 + MsiAdvertiseScriptW@16 @177 + MsiGetPatchInfoA@16 @178 + MsiGetPatchInfoW@16 @179 + MsiEnumPatchesA@20 @180 + MsiEnumPatchesW@20 @181 + DllGetVersion@4 @182 PRIVATE + MsiGetProductCodeFromPackageCodeA@0 @183 PRIVATE + MsiGetProductCodeFromPackageCodeW@0 @184 PRIVATE + MsiCreateTransformSummaryInfoA@20 @185 + MsiCreateTransformSummaryInfoW@20 @186 + MsiQueryFeatureStateFromDescriptorA@0 @187 PRIVATE + MsiQueryFeatureStateFromDescriptorW@0 @188 PRIVATE + MsiConfigureProductExA@16 @189 + MsiConfigureProductExW@16 @190 + MsiInvalidateFeatureCache@0 @191 PRIVATE + MsiUseFeatureExA@16 @192 + MsiUseFeatureExW@16 @193 + MsiGetFileVersionA@20 @194 + MsiGetFileVersionW@20 @195 + MsiLoadStringA@20 @196 + MsiLoadStringW@20 @197 + MsiMessageBoxA@24 @198 + MsiMessageBoxW@24 @199 + MsiDecomposeDescriptorA@20 @200 + MsiDecomposeDescriptorW@20 @201 + MsiProvideQualifiedComponentExA@32 @202 + MsiProvideQualifiedComponentExW@32 @203 + MsiEnumRelatedProductsA@16 @204 + MsiEnumRelatedProductsW@16 @205 + MsiSetFeatureAttributesA@12 @206 + MsiSetFeatureAttributesW@12 @207 + MsiSourceListClearAllA@12 @208 + MsiSourceListClearAllW@12 @209 + MsiSourceListAddSourceA@16 @210 + MsiSourceListAddSourceW@16 @211 + MsiSourceListForceResolutionA@12 @212 + MsiSourceListForceResolutionW@12 @213 + MsiIsProductElevatedA@8 @214 + MsiIsProductElevatedW@8 @215 + MsiGetShortcutTargetA@16 @216 + MsiGetShortcutTargetW@16 @217 + MsiGetFileHashA@12 @218 + MsiGetFileHashW@12 @219 + MsiEnumComponentCostsA@32 @220 + MsiEnumComponentCostsW@32 @221 + MsiCreateAndVerifyInstallerDirectory@4 @222 + MsiGetFileSignatureInformationA@20 @223 + MsiGetFileSignatureInformationW@20 @224 + MsiProvideAssemblyA@24 @225 + MsiProvideAssemblyW@24 @226 + MsiAdvertiseProductExA@24 @227 + MsiAdvertiseProductExW@24 @228 + MsiNotifySidChangeA@0 @229 PRIVATE + MsiNotifySidChangeW@0 @230 PRIVATE + MsiOpenPackageExA@12 @231 + MsiOpenPackageExW@12 @232 + MsiDeleteUserDataA@0 @233 PRIVATE + MsiDeleteUserDataW@0 @234 PRIVATE + Migrate10CachedPackagesA@0 @235 PRIVATE + Migrate10CachedPackagesW@16 @236 + MsiRemovePatchesA@16 @237 + MsiRemovePatchesW@16 @238 + MsiApplyMultiplePatchesA@12 @239 + MsiApplyMultiplePatchesW@12 @240 + MsiExtractPatchXMLDataA@0 @241 PRIVATE + MsiExtractPatchXMLDataW@0 @242 PRIVATE + MsiGetPatchInfoExA@28 @243 + MsiGetPatchInfoExW@28 @244 + MsiEnumProductsExA@32 @245 + MsiEnumProductsExW@32 @246 + MsiGetProductInfoExA@24 @247 + MsiGetProductInfoExW@24 @248 + MsiQueryComponentStateA@20 @249 + MsiQueryComponentStateW@20 @250 + MsiQueryFeatureStateExA@20 @251 + MsiQueryFeatureStateExW@20 @252 + MsiDeterminePatchSequenceA@20 @253 + MsiDeterminePatchSequenceW@20 @254 + MsiSourceListAddSourceExA@24 @255 + MsiSourceListAddSourceExW@24 @256 + MsiSourceListClearSourceA@20 @257 + MsiSourceListClearSourceW@20 @258 + MsiSourceListClearAllExA@16 @259 + MsiSourceListClearAllExW@16 @260 + MsiSourceListForceResolutionExA@0 @261 PRIVATE + MsiSourceListForceResolutionExW@0 @262 PRIVATE + MsiSourceListEnumSourcesA@28 @263 + MsiSourceListEnumSourcesW@28 @264 + MsiSourceListGetInfoA@28 @265 + MsiSourceListGetInfoW@28 @266 + MsiSourceListSetInfoA@24 @267 + MsiSourceListSetInfoW@24 @268 + MsiEnumPatchesExA@40 @269 + MsiEnumPatchesExW@40 @270 + MsiSourceListEnumMediaDisksA@40 @271 + MsiSourceListEnumMediaDisksW@40 @272 + MsiSourceListAddMediaDiskA@28 @273 + MsiSourceListAddMediaDiskW@28 @274 + MsiSourceListClearMediaDiskA@0 @275 PRIVATE + MsiSourceListClearMediaDiskW@0 @276 PRIVATE + MsiDetermineApplicablePatchesA@12 @277 + MsiDetermineApplicablePatchesW@12 @278 + MsiMessageBoxExA@28 @279 + MsiMessageBoxExW@28 @280 + MsiSetExternalUIRecord@16 @281 + MsiGetPatchFileListA@16 @282 + MsiGetPatchFileListW@16 @283 + MsiBeginTransactionA@16 @284 + MsiBeginTransactionW@16 @285 + MsiEndTransaction@4 @286 + MsiJoinTransaction@12 @287 + MsiSetOfflineContextW@0 @288 PRIVATE + MsiEnumComponentsExA@28 @289 + MsiEnumComponentsExW@28 @290 + MsiEnumClientsExA@32 @291 + MsiEnumClientsExW@32 @292 + MsiGetComponentPathExA@24 @293 + MsiGetComponentPathExW@24 @294 + QueryInstanceCount@0 @295 PRIVATE + DllCanUnloadNow@0 @296 PRIVATE + DllGetClassObject@12 @297 PRIVATE + DllRegisterServer@0 @298 PRIVATE + DllUnregisterServer@0 @299 PRIVATE + __wine_msi_call_dll_function @300 diff --git a/lib/wine/libmsimg32.def b/lib/wine/libmsimg32.def new file mode 100644 index 0000000..8e43d0f --- /dev/null +++ b/lib/wine/libmsimg32.def @@ -0,0 +1,10 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/msimg32/msimg32.spec; do not edit! + +LIBRARY msimg32.dll + +EXPORTS + vSetDdrawflag@0 @1 + AlphaBlend@44=gdi32.GdiAlphaBlend @2 + DllInitialize@12=DllMain @3 PRIVATE + GradientFill@24=gdi32.GdiGradientFill @4 + TransparentBlt@44=gdi32.GdiTransparentBlt @5 diff --git a/lib/wine/libmspatcha.def b/lib/wine/libmspatcha.def new file mode 100644 index 0000000..eaf9dc6 --- /dev/null +++ b/lib/wine/libmspatcha.def @@ -0,0 +1,17 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/mspatcha/mspatcha.spec; do not edit! + +LIBRARY mspatcha.dll + +EXPORTS + ApplyPatchToFileA@16 @1 + ApplyPatchToFileByHandles@0 @2 PRIVATE + ApplyPatchToFileByHandlesEx@0 @3 PRIVATE + ApplyPatchToFileExA@0 @4 PRIVATE + ApplyPatchToFileExW@0 @5 PRIVATE + ApplyPatchToFileW@16 @6 + GetFilePatchSignatureA@36 @7 + GetFilePatchSignatureByHandle@0 @8 PRIVATE + GetFilePatchSignatureW@36 @9 + TestApplyPatchToFileA@0 @10 PRIVATE + TestApplyPatchToFileByHandles@0 @11 PRIVATE + TestApplyPatchToFileW@0 @12 PRIVATE diff --git a/lib/wine/libmsvcr100.def b/lib/wine/libmsvcr100.def new file mode 100644 index 0000000..c721730 --- /dev/null +++ b/lib/wine/libmsvcr100.def @@ -0,0 +1,1627 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/msvcr100/msvcr100.spec; do not edit! + +LIBRARY msvcr100.dll + +EXPORTS + ??0?$_SpinWait@$00@details@Concurrency@@QAE@P6AXXZ@Z@8=__thiscall_SpinWait_ctor_yield @1 + ??0?$_SpinWait@$0A@@details@Concurrency@@QAE@P6AXXZ@Z@8=__thiscall_SpinWait_ctor @2 + ??0SchedulerPolicy@Concurrency@@QAA@IZZ=SchedulerPolicy_ctor_policies @3 + ??0SchedulerPolicy@Concurrency@@QAE@ABV01@@Z@8=__thiscall_SchedulerPolicy_copy_ctor @4 + ??0SchedulerPolicy@Concurrency@@QAE@XZ@4=__thiscall_SchedulerPolicy_ctor @5 + ??0_NonReentrantBlockingLock@details@Concurrency@@QAE@XZ@4=__thiscall__ReentrantBlockingLock_ctor @6 + ??0_NonReentrantPPLLock@details@Concurrency@@QAE@XZ@4=__thiscall__NonReentrantPPLLock_ctor @7 + ??0_ReaderWriterLock@details@Concurrency@@QAE@XZ@0 @8 PRIVATE + ??0_ReentrantBlockingLock@details@Concurrency@@QAE@XZ@4=__thiscall__ReentrantBlockingLock_ctor @9 + ??0_ReentrantLock@details@Concurrency@@QAE@XZ@0 @10 PRIVATE + ??0_ReentrantPPLLock@details@Concurrency@@QAE@XZ@4=__thiscall__ReentrantPPLLock_ctor @11 + ??0_Scoped_lock@_NonReentrantPPLLock@details@Concurrency@@QAE@AAV123@@Z@4=__thiscall__NonReentrantPPLLock__Scoped_lock_ctor @12 + ??0_Scoped_lock@_ReentrantPPLLock@details@Concurrency@@QAE@AAV123@@Z@8=__thiscall__ReentrantPPLLock__Scoped_lock_ctor @13 + ??0_SpinLock@details@Concurrency@@QAE@ACJ@Z@0 @14 PRIVATE + ??0_TaskCollection@details@Concurrency@@QAE@XZ@0 @15 PRIVATE + ??0_Timer@details@Concurrency@@IAE@I_N@Z@0 @16 PRIVATE + ??0__non_rtti_object@std@@QAE@ABV01@@Z@8=__thiscall_MSVCRT___non_rtti_object_copy_ctor @17 + ??0__non_rtti_object@std@@QAE@PBD@Z@8=__thiscall_MSVCRT___non_rtti_object_ctor @18 + ??0bad_cast@std@@AAE@PBQBD@Z@8=__thiscall_MSVCRT_bad_cast_ctor @19 + ??0bad_cast@std@@QAE@ABV01@@Z@8=__thiscall_MSVCRT_bad_cast_copy_ctor @20 + ??0bad_cast@std@@QAE@PBD@Z@8=__thiscall_MSVCRT_bad_cast_ctor_charptr @21 + ??0bad_target@Concurrency@@QAE@PBD@Z@0 @22 PRIVATE + ??0bad_target@Concurrency@@QAE@XZ@0 @23 PRIVATE + ??0bad_typeid@std@@QAE@ABV01@@Z@8=__thiscall_MSVCRT_bad_typeid_copy_ctor @24 + ??0bad_typeid@std@@QAE@PBD@Z@8=__thiscall_MSVCRT_bad_typeid_ctor @25 + ??0context_self_unblock@Concurrency@@QAE@PBD@Z@0 @26 PRIVATE + ??0context_self_unblock@Concurrency@@QAE@XZ@0 @27 PRIVATE + ??0context_unblock_unbalanced@Concurrency@@QAE@PBD@Z@0 @28 PRIVATE + ??0context_unblock_unbalanced@Concurrency@@QAE@XZ@0 @29 PRIVATE + ??0critical_section@Concurrency@@QAE@XZ@4=__thiscall_critical_section_ctor @30 + ??0default_scheduler_exists@Concurrency@@QAE@PBD@Z@0 @31 PRIVATE + ??0default_scheduler_exists@Concurrency@@QAE@XZ@0 @32 PRIVATE + ??0event@Concurrency@@QAE@XZ@4=__thiscall_event_ctor @33 + ??0exception@std@@QAE@ABQBD@Z@8=__thiscall_MSVCRT_exception_ctor @34 + ??0exception@std@@QAE@ABQBDH@Z@12=__thiscall_MSVCRT_exception_ctor_noalloc @35 + ??0exception@std@@QAE@ABV01@@Z@8=__thiscall_MSVCRT_exception_copy_ctor @36 + ??0exception@std@@QAE@XZ@4=__thiscall_MSVCRT_exception_default_ctor @37 + ??0improper_lock@Concurrency@@QAE@PBD@Z@8=__thiscall_improper_lock_ctor_str @38 + ??0improper_lock@Concurrency@@QAE@XZ@4=__thiscall_improper_lock_ctor @39 + ??0improper_scheduler_attach@Concurrency@@QAE@PBD@Z@8=__thiscall_improper_scheduler_attach_ctor_str @40 + ??0improper_scheduler_attach@Concurrency@@QAE@XZ@4=__thiscall_improper_scheduler_attach_ctor @41 + ??0improper_scheduler_detach@Concurrency@@QAE@PBD@Z@8=__thiscall_improper_scheduler_detach_ctor_str @42 + ??0improper_scheduler_detach@Concurrency@@QAE@XZ@4=__thiscall_improper_scheduler_detach_ctor @43 + ??0improper_scheduler_reference@Concurrency@@QAE@PBD@Z@0 @44 PRIVATE + ??0improper_scheduler_reference@Concurrency@@QAE@XZ@0 @45 PRIVATE + ??0invalid_link_target@Concurrency@@QAE@PBD@Z@0 @46 PRIVATE + ??0invalid_link_target@Concurrency@@QAE@XZ@0 @47 PRIVATE + ??0invalid_multiple_scheduling@Concurrency@@QAE@PBD@Z@0 @48 PRIVATE + ??0invalid_multiple_scheduling@Concurrency@@QAE@XZ@0 @49 PRIVATE + ??0invalid_operation@Concurrency@@QAE@PBD@Z@0 @50 PRIVATE + ??0invalid_operation@Concurrency@@QAE@XZ@0 @51 PRIVATE + ??0invalid_oversubscribe_operation@Concurrency@@QAE@PBD@Z@0 @52 PRIVATE + ??0invalid_oversubscribe_operation@Concurrency@@QAE@XZ@0 @53 PRIVATE + ??0invalid_scheduler_policy_key@Concurrency@@QAE@PBD@Z@8=__thiscall_invalid_scheduler_policy_key_ctor_str @54 + ??0invalid_scheduler_policy_key@Concurrency@@QAE@XZ@4=__thiscall_invalid_scheduler_policy_key_ctor @55 + ??0invalid_scheduler_policy_thread_specification@Concurrency@@QAE@PBD@Z@8=__thiscall_invalid_scheduler_policy_thread_specification_ctor_str @56 + ??0invalid_scheduler_policy_thread_specification@Concurrency@@QAE@XZ@4=__thiscall_invalid_scheduler_policy_thread_specification_ctor @57 + ??0invalid_scheduler_policy_value@Concurrency@@QAE@PBD@Z@8=__thiscall_invalid_scheduler_policy_value_ctor_str @58 + ??0invalid_scheduler_policy_value@Concurrency@@QAE@XZ@4=__thiscall_invalid_scheduler_policy_value_ctor @59 + ??0message_not_found@Concurrency@@QAE@PBD@Z@0 @60 PRIVATE + ??0message_not_found@Concurrency@@QAE@XZ@0 @61 PRIVATE + ??0missing_wait@Concurrency@@QAE@PBD@Z@0 @62 PRIVATE + ??0missing_wait@Concurrency@@QAE@XZ@0 @63 PRIVATE + ??0nested_scheduler_missing_detach@Concurrency@@QAE@PBD@Z@0 @64 PRIVATE + ??0nested_scheduler_missing_detach@Concurrency@@QAE@XZ@0 @65 PRIVATE + ??0operation_timed_out@Concurrency@@QAE@PBD@Z@0 @66 PRIVATE + ??0operation_timed_out@Concurrency@@QAE@XZ@0 @67 PRIVATE + ??0reader_writer_lock@Concurrency@@QAE@XZ@4=__thiscall_reader_writer_lock_ctor @68 + ??0scheduler_not_attached@Concurrency@@QAE@PBD@Z@0 @69 PRIVATE + ??0scheduler_not_attached@Concurrency@@QAE@XZ@0 @70 PRIVATE + ??0scheduler_resource_allocation_error@Concurrency@@QAE@J@Z@8=__thiscall_scheduler_resource_allocation_error_ctor @71 + ??0scheduler_resource_allocation_error@Concurrency@@QAE@PBDJ@Z@12=__thiscall_scheduler_resource_allocation_error_ctor_name @72 + ??0scoped_lock@critical_section@Concurrency@@QAE@AAV12@@Z@8=__thiscall_critical_section_scoped_lock_ctor @73 + ??0scoped_lock@reader_writer_lock@Concurrency@@QAE@AAV12@@Z@8=__thiscall_reader_writer_lock_scoped_lock_ctor @74 + ??0scoped_lock_read@reader_writer_lock@Concurrency@@QAE@AAV12@@Z@8=__thiscall_reader_writer_lock_scoped_lock_read_ctor @75 + ??0task_canceled@details@Concurrency@@QAE@PBD@Z@0 @76 PRIVATE + ??0task_canceled@details@Concurrency@@QAE@XZ@0 @77 PRIVATE + ??0unsupported_os@Concurrency@@QAE@PBD@Z@0 @78 PRIVATE + ??0unsupported_os@Concurrency@@QAE@XZ@0 @79 PRIVATE + ??1SchedulerPolicy@Concurrency@@QAE@XZ@4=__thiscall_SchedulerPolicy_dtor @80 + ??1_NonReentrantBlockingLock@details@Concurrency@@QAE@XZ@4=__thiscall__ReentrantBlockingLock_dtor @81 + ??1_ReentrantBlockingLock@details@Concurrency@@QAE@XZ@4=__thiscall__ReentrantBlockingLock_dtor @82 + ??1_Scoped_lock@_NonReentrantPPLLock@details@Concurrency@@QAE@XZ@4=__thiscall__NonReentrantPPLLock__Scoped_lock_dtor @83 + ??1_Scoped_lock@_ReentrantPPLLock@details@Concurrency@@QAE@XZ@4=__thiscall__ReentrantPPLLock__Scoped_lock_dtor @84 + ??1_SpinLock@details@Concurrency@@QAE@XZ@0 @85 PRIVATE + ??1_TaskCollection@details@Concurrency@@QAE@XZ@0 @86 PRIVATE + ??1_Timer@details@Concurrency@@IAE@XZ@0 @87 PRIVATE + ??1__non_rtti_object@std@@UAE@XZ@4=__thiscall_MSVCRT___non_rtti_object_dtor @88 + ??1bad_cast@std@@UAE@XZ@4=__thiscall_MSVCRT_bad_cast_dtor @89 + ??1bad_typeid@std@@UAE@XZ@4=__thiscall_MSVCRT_bad_typeid_dtor @90 + ??1critical_section@Concurrency@@QAE@XZ@4=__thiscall_critical_section_dtor @91 + ??1event@Concurrency@@QAE@XZ@4=__thiscall_event_dtor @92 + ??1exception@std@@UAE@XZ@4=__thiscall_MSVCRT_exception_dtor @93 + ??1reader_writer_lock@Concurrency@@QAE@XZ@4=__thiscall_reader_writer_lock_dtor @94 + ??1scoped_lock@critical_section@Concurrency@@QAE@XZ@4=__thiscall_critical_section_scoped_lock_dtor @95 + ??1scoped_lock@reader_writer_lock@Concurrency@@QAE@XZ@4=__thiscall_reader_writer_lock_scoped_lock_dtor @96 + ??1scoped_lock_read@reader_writer_lock@Concurrency@@QAE@XZ@4=__thiscall_reader_writer_lock_scoped_lock_read_dtor @97 + ??1type_info@@UAE@XZ@4=__thiscall_MSVCRT_type_info_dtor @98 + ??2@YAPAXI@Z=MSVCRT_operator_new @99 + ??2@YAPAXIHPBDH@Z=MSVCRT_operator_new_dbg @100 + ??3@YAXPAX@Z=MSVCRT_operator_delete @101 + ??4?$_SpinWait@$00@details@Concurrency@@QAEAAV012@ABV012@@Z@0 @102 PRIVATE + ??4?$_SpinWait@$0A@@details@Concurrency@@QAEAAV012@ABV012@@Z@0 @103 PRIVATE + ??4SchedulerPolicy@Concurrency@@QAEAAV01@ABV01@@Z@8=__thiscall_SchedulerPolicy_op_assign @104 + ??4__non_rtti_object@std@@QAEAAV01@ABV01@@Z@8=__thiscall_MSVCRT___non_rtti_object_opequals @105 + ??4bad_cast@std@@QAEAAV01@ABV01@@Z@8=__thiscall_MSVCRT_bad_cast_opequals @106 + ??4bad_typeid@std@@QAEAAV01@ABV01@@Z@8=__thiscall_MSVCRT_bad_typeid_opequals @107 + ??4exception@std@@QAEAAV01@ABV01@@Z@8=__thiscall_MSVCRT_exception_opequals @108 + ??8type_info@@QBE_NABV0@@Z@8=__thiscall_MSVCRT_type_info_opequals_equals @109 + ??9type_info@@QBE_NABV0@@Z@8=__thiscall_MSVCRT_type_info_opnot_equals @110 + ??_7__non_rtti_object@std@@6B@=MSVCRT___non_rtti_object_vtable @111 DATA + ??_7bad_cast@std@@6B@=MSVCRT_bad_cast_vtable @112 DATA + ??_7bad_typeid@std@@6B@=MSVCRT_bad_typeid_vtable @113 DATA + ??_7exception@@6B@=MSVCRT_exception_old_vtable @114 DATA + ??_7exception@std@@6B@=MSVCRT_exception_vtable @115 DATA + ??_F?$_SpinWait@$00@details@Concurrency@@QAEXXZ@4=__thiscall_SpinWait_dtor @116 + ??_F?$_SpinWait@$0A@@details@Concurrency@@QAEXXZ@4=__thiscall_SpinWait_dtor @117 + ??_Fbad_cast@std@@QAEXXZ@4=__thiscall_MSVCRT_bad_cast_default_ctor @118 + ??_Fbad_typeid@std@@QAEXXZ@4=__thiscall_MSVCRT_bad_typeid_default_ctor @119 + ??_U@YAPAXI@Z=MSVCRT_operator_new @120 + ??_U@YAPAXIHPBDH@Z=MSVCRT_operator_new_dbg @121 + ??_V@YAXPAX@Z=MSVCRT_operator_delete @122 + ?Alloc@Concurrency@@YAPAXI@Z=Concurrency_Alloc @123 + ?Block@Context@Concurrency@@SAXXZ=Context_Block @124 + ?Create@CurrentScheduler@Concurrency@@SAXABVSchedulerPolicy@2@@Z=CurrentScheduler_Create @125 + ?Create@Scheduler@Concurrency@@SAPAV12@ABVSchedulerPolicy@2@@Z=Scheduler_Create @126 + ?CreateResourceManager@Concurrency@@YAPAUIResourceManager@1@XZ@0 @127 PRIVATE + ?CreateScheduleGroup@CurrentScheduler@Concurrency@@SAPAVScheduleGroup@2@XZ=CurrentScheduler_CreateScheduleGroup @128 + ?CurrentContext@Context@Concurrency@@SAPAV12@XZ=Context_CurrentContext @129 + ?Detach@CurrentScheduler@Concurrency@@SAXXZ=CurrentScheduler_Detach @130 + ?DisableTracing@Concurrency@@YAJXZ@0 @131 PRIVATE + ?EnableTracing@Concurrency@@YAJXZ@0 @132 PRIVATE + ?Free@Concurrency@@YAXPAX@Z=Concurrency_Free @133 + ?Get@CurrentScheduler@Concurrency@@SAPAVScheduler@2@XZ=CurrentScheduler_Get @134 + ?GetExecutionContextId@Concurrency@@YAIXZ@0 @135 PRIVATE + ?GetNumberOfVirtualProcessors@CurrentScheduler@Concurrency@@SAIXZ=CurrentScheduler_GetNumberOfVirtualProcessors @136 + ?GetOSVersion@Concurrency@@YA?AW4OSVersion@IResourceManager@1@XZ@0 @137 PRIVATE + ?GetPolicy@CurrentScheduler@Concurrency@@SA?AVSchedulerPolicy@2@XZ=CurrentScheduler_GetPolicy @138 + ?GetPolicyValue@SchedulerPolicy@Concurrency@@QBEIW4PolicyElementKey@2@@Z@8=__thiscall_SchedulerPolicy_GetPolicyValue @139 + ?GetProcessorCount@Concurrency@@YAIXZ@0 @140 PRIVATE + ?GetProcessorNodeCount@Concurrency@@YAIXZ@0 @141 PRIVATE + ?GetSchedulerId@Concurrency@@YAIXZ@0 @142 PRIVATE + ?GetSharedTimerQueue@details@Concurrency@@YAPAXXZ@0 @143 PRIVATE + ?Id@Context@Concurrency@@SAIXZ=Context_Id @144 + ?Id@CurrentScheduler@Concurrency@@SAIXZ=CurrentScheduler_Id @145 + ?IsCurrentTaskCollectionCanceling@Context@Concurrency@@SA_NXZ=Context_IsCurrentTaskCollectionCanceling @146 + ?Log2@details@Concurrency@@YAKI@Z@0 @147 PRIVATE + ?Oversubscribe@Context@Concurrency@@SAX_N@Z=Context_Oversubscribe @148 + ?RegisterShutdownEvent@CurrentScheduler@Concurrency@@SAXPAX@Z=CurrentScheduler_RegisterShutdownEvent @149 + ?ResetDefaultSchedulerPolicy@Scheduler@Concurrency@@SAXXZ=Scheduler_ResetDefaultSchedulerPolicy @150 + ?ScheduleGroupId@Context@Concurrency@@SAIXZ=Context_ScheduleGroupId @151 + ?ScheduleTask@CurrentScheduler@Concurrency@@SAXP6AXPAX@Z0@Z=CurrentScheduler_ScheduleTask @152 + ?SetConcurrencyLimits@SchedulerPolicy@Concurrency@@QAEXII@Z@12=__thiscall_SchedulerPolicy_SetConcurrencyLimits @153 + ?SetDefaultSchedulerPolicy@Scheduler@Concurrency@@SAXABVSchedulerPolicy@2@@Z=Scheduler_SetDefaultSchedulerPolicy @154 + ?SetPolicyValue@SchedulerPolicy@Concurrency@@QAEIW4PolicyElementKey@2@I@Z@12=__thiscall_SchedulerPolicy_SetPolicyValue @155 + ?VirtualProcessorId@Context@Concurrency@@SAIXZ=Context_VirtualProcessorId @156 + ?Yield@Context@Concurrency@@SAXXZ=Context_Yield @157 + ?_Abort@_StructuredTaskCollection@details@Concurrency@@AAEXXZ@0 @158 PRIVATE + ?_Acquire@_NonReentrantBlockingLock@details@Concurrency@@QAEXXZ@4=__thiscall__ReentrantBlockingLock__Acquire @159 + ?_Acquire@_NonReentrantPPLLock@details@Concurrency@@QAEXPAX@Z@8=__thiscall__NonReentrantPPLLock__Acquire @160 + ?_Acquire@_ReentrantBlockingLock@details@Concurrency@@QAEXXZ@4=__thiscall__ReentrantBlockingLock__Acquire @161 + ?_Acquire@_ReentrantLock@details@Concurrency@@QAEXXZ@0 @162 PRIVATE + ?_Acquire@_ReentrantPPLLock@details@Concurrency@@QAEXPAX@Z@8=__thiscall__ReentrantPPLLock__Acquire @163 + ?_AcquireRead@_ReaderWriterLock@details@Concurrency@@QAEXXZ@0 @164 PRIVATE + ?_AcquireWrite@_ReaderWriterLock@details@Concurrency@@QAEXXZ@0 @165 PRIVATE + ?_Cancel@_StructuredTaskCollection@details@Concurrency@@QAEXXZ@0 @166 PRIVATE + ?_Cancel@_TaskCollection@details@Concurrency@@QAEXXZ@0 @167 PRIVATE + ?_CheckTaskCollection@_UnrealizedChore@details@Concurrency@@IAEXXZ@0 @168 PRIVATE + ?_ConcRT_Assert@details@Concurrency@@YAXPBD0H@Z@0 @169 PRIVATE + ?_ConcRT_CoreAssert@details@Concurrency@@YAXPBD0H@Z@0 @170 PRIVATE + ?_ConcRT_DumpMessage@details@Concurrency@@YAXPB_WZZ@0 @171 PRIVATE + ?_ConcRT_Trace@details@Concurrency@@YAXHPB_WZZ@0 @172 PRIVATE + ?_Copy_str@exception@std@@AAEXPBD@Z@0 @173 PRIVATE + ?_DoYield@?$_SpinWait@$00@details@Concurrency@@IAEXXZ@4=__thiscall_SpinWait__DoYield @174 + ?_DoYield@?$_SpinWait@$0A@@details@Concurrency@@IAEXXZ@4=__thiscall_SpinWait__DoYield @175 + ?_IsCanceling@_StructuredTaskCollection@details@Concurrency@@QAE_NXZ@0 @176 PRIVATE + ?_IsCanceling@_TaskCollection@details@Concurrency@@QAE_NXZ@0 @177 PRIVATE + ?_Name_base@type_info@@CAPBDPBV1@PAU__type_info_node@@@Z@0 @178 PRIVATE + ?_Name_base_internal@type_info@@CAPBDPBV1@PAU__type_info_node@@@Z@0 @179 PRIVATE + ?_NumberOfSpins@?$_SpinWait@$00@details@Concurrency@@IAEKXZ@4=__thiscall_SpinWait__NumberOfSpins @180 + ?_NumberOfSpins@?$_SpinWait@$0A@@details@Concurrency@@IAEKXZ@4=__thiscall_SpinWait__NumberOfSpins @181 + ?_Release@_NonReentrantBlockingLock@details@Concurrency@@QAEXXZ@4=__thiscall__ReentrantBlockingLock__Release @182 + ?_Release@_NonReentrantPPLLock@details@Concurrency@@QAEXXZ@4=__thiscall__NonReentrantPPLLock__Release @183 + ?_Release@_ReentrantBlockingLock@details@Concurrency@@QAEXXZ@4=__thiscall__ReentrantBlockingLock__Release @184 + ?_Release@_ReentrantLock@details@Concurrency@@QAEXXZ@0 @185 PRIVATE + ?_Release@_ReentrantPPLLock@details@Concurrency@@QAEXXZ@4=__thiscall__ReentrantPPLLock__Release @186 + ?_ReleaseRead@_ReaderWriterLock@details@Concurrency@@QAEXXZ@0 @187 PRIVATE + ?_ReleaseWrite@_ReaderWriterLock@details@Concurrency@@QAEXXZ@0 @188 PRIVATE + ?_Reset@?$_SpinWait@$00@details@Concurrency@@IAEXXZ@4=__thiscall_SpinWait__Reset @189 + ?_Reset@?$_SpinWait@$0A@@details@Concurrency@@IAEXXZ@4=__thiscall_SpinWait__Reset @190 + ?_RunAndWait@_StructuredTaskCollection@details@Concurrency@@QAG?AW4_TaskCollectionStatus@23@PAV_UnrealizedChore@23@@Z@0 @191 PRIVATE + ?_RunAndWait@_TaskCollection@details@Concurrency@@QAG?AW4_TaskCollectionStatus@23@PAV_UnrealizedChore@23@@Z@0 @192 PRIVATE + ?_Schedule@_StructuredTaskCollection@details@Concurrency@@QAEXPAV_UnrealizedChore@23@@Z@0 @193 PRIVATE + ?_Schedule@_TaskCollection@details@Concurrency@@QAEXPAV_UnrealizedChore@23@@Z@0 @194 PRIVATE + ?_SetSpinCount@?$_SpinWait@$00@details@Concurrency@@QAEXI@Z@8=__thiscall_SpinWait__SetSpinCount @195 + ?_SetSpinCount@?$_SpinWait@$0A@@details@Concurrency@@QAEXI@Z@8=__thiscall_SpinWait__SetSpinCount @196 + ?_ShouldSpinAgain@?$_SpinWait@$00@details@Concurrency@@IAE_NXZ@4=__thiscall_SpinWait__ShouldSpinAgain @197 + ?_ShouldSpinAgain@?$_SpinWait@$0A@@details@Concurrency@@IAE_NXZ@4=__thiscall_SpinWait__ShouldSpinAgain @198 + ?_SpinOnce@?$_SpinWait@$00@details@Concurrency@@QAE_NXZ@4=__thiscall_SpinWait__SpinOnce @199 + ?_SpinOnce@?$_SpinWait@$0A@@details@Concurrency@@QAE_NXZ@4=__thiscall_SpinWait__SpinOnce @200 + ?_SpinYield@Context@Concurrency@@SAXXZ=Context__SpinYield @201 + ?_Start@_Timer@details@Concurrency@@IAEXXZ@0 @202 PRIVATE + ?_Stop@_Timer@details@Concurrency@@IAEXXZ@0 @203 PRIVATE + ?_Tidy@exception@std@@AAEXXZ@0 @204 PRIVATE + ?_Trace_ppl_function@Concurrency@@YAXABU_GUID@@EW4ConcRT_EventType@1@@Z=Concurrency__Trace_ppl_function @205 + ?_TryAcquire@_NonReentrantBlockingLock@details@Concurrency@@QAE_NXZ@4=__thiscall__ReentrantBlockingLock__TryAcquire @206 + ?_TryAcquire@_ReentrantBlockingLock@details@Concurrency@@QAE_NXZ@4=__thiscall__ReentrantBlockingLock__TryAcquire @207 + ?_TryAcquire@_ReentrantLock@details@Concurrency@@QAE_NXZ@0 @208 PRIVATE + ?_TryAcquireWrite@_ReaderWriterLock@details@Concurrency@@QAE_NXZ@0 @209 PRIVATE + ?_Type_info_dtor@type_info@@CAXPAV1@@Z@0 @210 PRIVATE + ?_Type_info_dtor_internal@type_info@@CAXPAV1@@Z@0 @211 PRIVATE + ?_UnderlyingYield@details@Concurrency@@YAXXZ@0 @212 PRIVATE + ?_ValidateExecute@@YAHP6GHXZ@Z@0 @213 PRIVATE + ?_ValidateRead@@YAHPBXI@Z@0 @214 PRIVATE + ?_ValidateWrite@@YAHPAXI@Z@0 @215 PRIVATE + ?_Value@_SpinCount@details@Concurrency@@SAIXZ=SpinCount__Value @216 + ?__ExceptionPtrAssign@@YAXPAXPBX@Z=__ExceptionPtrAssign @217 + ?__ExceptionPtrCompare@@YA_NPBX0@Z=__ExceptionPtrCompare @218 + ?__ExceptionPtrCopy@@YAXPAXPBX@Z=__ExceptionPtrCopy @219 + ?__ExceptionPtrCopyException@@YAXPAXPBX1@Z=__ExceptionPtrCopyException @220 + ?__ExceptionPtrCreate@@YAXPAX@Z=__ExceptionPtrCreate @221 + ?__ExceptionPtrCurrentException@@YAXPAX@Z=__ExceptionPtrCurrentException @222 + ?__ExceptionPtrDestroy@@YAXPAX@Z=__ExceptionPtrDestroy @223 + ?__ExceptionPtrRethrow@@YAXPBX@Z=__ExceptionPtrRethrow @224 + __uncaught_exception=MSVCRT___uncaught_exception @225 + ?_inconsistency@@YAXXZ@0 @226 PRIVATE + ?_invalid_parameter@@YAXPBG00II@Z=MSVCRT__invalid_parameter @227 + ?_is_exception_typeof@@YAHABVtype_info@@PAU_EXCEPTION_POINTERS@@@Z=_is_exception_typeof @228 + ?_name_internal_method@type_info@@QBEPBDPAU__type_info_node@@@Z@8=__thiscall_type_info_name_internal_method @229 + ?_open@@YAHPBDHH@Z=MSVCRT__open @230 + ?_query_new_handler@@YAP6AHI@ZXZ=MSVCRT__query_new_handler @231 + ?_query_new_mode@@YAHXZ=MSVCRT__query_new_mode @232 + ?_set_new_handler@@YAP6AHI@ZH@Z@0 @233 PRIVATE + ?_set_new_handler@@YAP6AHI@ZP6AHI@Z@Z=MSVCRT__set_new_handler @234 + ?_set_new_mode@@YAHH@Z=MSVCRT__set_new_mode @235 + ?_set_se_translator@@YAP6AXIPAU_EXCEPTION_POINTERS@@@ZH@Z@0 @236 PRIVATE + ?_set_se_translator@@YAP6AXIPAU_EXCEPTION_POINTERS@@@ZP6AXI0@Z@Z=MSVCRT__set_se_translator @237 + ?_sopen@@YAHPBDHHH@Z=MSVCRT__sopen @238 + ?_type_info_dtor_internal_method@type_info@@QAEXXZ@0 @239 PRIVATE + ?_wopen@@YAHPB_WHH@Z=MSVCRT__wopen @240 + ?_wsopen@@YAHPB_WHHH@Z=MSVCRT__wsopen @241 + ?before@type_info@@QBEHABV1@@Z@8=__thiscall_MSVCRT_type_info_before @242 + ?get_error_code@scheduler_resource_allocation_error@Concurrency@@QBEJXZ@4=__thiscall_scheduler_resource_allocation_error_get_error_code @243 + ?lock@critical_section@Concurrency@@QAEXXZ@4=__thiscall_critical_section_lock @244 + ?lock@reader_writer_lock@Concurrency@@QAEXXZ@4=__thiscall_reader_writer_lock_lock @245 + ?lock_read@reader_writer_lock@Concurrency@@QAEXXZ@4=__thiscall_reader_writer_lock_lock_read @246 + ?name@type_info@@QBEPBDPAU__type_info_node@@@Z@8=__thiscall_type_info_name_internal_method @247 + ?native_handle@critical_section@Concurrency@@QAEAAV12@XZ@4=__thiscall_critical_section_native_handle @248 + ?raw_name@type_info@@QBEPBDXZ@4=__thiscall_MSVCRT_type_info_raw_name @249 + ?reset@event@Concurrency@@QAEXXZ@4=__thiscall_event_reset @250 + ?set@event@Concurrency@@QAEXXZ@4=__thiscall_event_set @251 + ?set_new_handler@@YAP6AXXZP6AXXZ@Z=MSVCRT_set_new_handler @252 + ?set_terminate@@YAP6AXXZH@Z@0 @253 PRIVATE + ?set_terminate@@YAP6AXXZP6AXXZ@Z=MSVCRT_set_terminate @254 + ?set_unexpected@@YAP6AXXZH@Z@0 @255 PRIVATE + ?set_unexpected@@YAP6AXXZP6AXXZ@Z=MSVCRT_set_unexpected @256 + ?swprintf@@YAHPAGIPBGZZ=MSVCRT__snwprintf @257 + ?swprintf@@YAHPA_WIPB_WZZ=MSVCRT__snwprintf @258 + ?terminate@@YAXXZ=MSVCRT_terminate @259 + ?try_lock@critical_section@Concurrency@@QAE_NXZ@4=__thiscall_critical_section_try_lock @260 + ?try_lock@reader_writer_lock@Concurrency@@QAE_NXZ@4=__thiscall_reader_writer_lock_try_lock @261 + ?try_lock_read@reader_writer_lock@Concurrency@@QAE_NXZ@4=__thiscall_reader_writer_lock_try_lock_read @262 + ?unexpected@@YAXXZ=MSVCRT_unexpected @263 + ?unlock@critical_section@Concurrency@@QAEXXZ@4=__thiscall_critical_section_unlock @264 + ?unlock@reader_writer_lock@Concurrency@@QAEXXZ@4=__thiscall_reader_writer_lock_unlock @265 + ?vswprintf@@YAHPA_WIPB_WPAD@Z=MSVCRT_vsnwprintf @266 + ?wait@Concurrency@@YAXI@Z=Concurrency_wait @267 + ?wait@event@Concurrency@@QAEII@Z@4=__thiscall_event_wait @268 + ?wait_for_multiple@event@Concurrency@@SAIPAPAV12@I_NI@Z=event_wait_for_multiple @269 + ?what@exception@std@@UBEPBDXZ@4=__thiscall_MSVCRT_what_exception @270 + $I10_OUTPUT=MSVCRT_I10_OUTPUT @271 + _CIacos @272 + _CIasin @273 + _CIatan @274 + _CIatan2 @275 + _CIcos @276 + _CIcosh @277 + _CIexp @278 + _CIfmod @279 + _CIlog @280 + _CIlog10 @281 + _CIpow @282 + _CIsin @283 + _CIsinh @284 + _CIsqrt @285 + _CItan @286 + _CItanh @287 + _CRT_RTC_INIT @288 + _CRT_RTC_INITW @289 + _CreateFrameInfo @290 + _CxxThrowException@8 @291 + _EH_prolog @292 + _FindAndUnlinkFrame @293 + _Getdays @294 + _Getmonths @295 + _Gettnames @296 + _HUGE=MSVCRT__HUGE @297 DATA + _IsExceptionObjectToBeDestroyed @298 + _NLG_Dispatch2@0 @299 PRIVATE + _NLG_Return@0 @300 PRIVATE + _NLG_Return2@0 @301 PRIVATE + _Strftime @302 + _XcptFilter @303 + __AdjustPointer @304 + __BuildCatchObject@0 @305 PRIVATE + __BuildCatchObjectHelper@0 @306 PRIVATE + __CppXcptFilter @307 + __CxxCallUnwindDelDtor@0 @308 PRIVATE + __CxxCallUnwindDtor@0 @309 PRIVATE + __CxxCallUnwindStdDelDtor@0 @310 PRIVATE + __CxxCallUnwindVecDtor@0 @311 PRIVATE + __CxxDetectRethrow @312 + __CxxExceptionFilter @313 + __CxxFrameHandler @314 + __CxxFrameHandler2=__CxxFrameHandler @315 + __CxxFrameHandler3=__CxxFrameHandler @316 + __CxxLongjmpUnwind@4 @317 + __CxxQueryExceptionSize @318 + __CxxRegisterExceptionObject @319 + __CxxUnregisterExceptionObject @320 + __DestructExceptionObject @321 + __FrameUnwindFilter@0 @322 PRIVATE + __RTCastToVoid=MSVCRT___RTCastToVoid @323 + __RTDynamicCast=MSVCRT___RTDynamicCast @324 + __RTtypeid=MSVCRT___RTtypeid @325 + __STRINGTOLD @326 + __STRINGTOLD_L@0 @327 PRIVATE + __TypeMatch@0 @328 PRIVATE + ___lc_codepage_func @329 + ___lc_collate_cp_func @330 + ___lc_handle_func @331 + ___mb_cur_max_func=MSVCRT____mb_cur_max_func @332 + ___mb_cur_max_l_func @333 + ___setlc_active_func=MSVCRT____setlc_active_func @334 + ___unguarded_readlc_active_add_func=MSVCRT____unguarded_readlc_active_add_func @335 + __argc=MSVCRT___argc @336 DATA + __argv=MSVCRT___argv @337 DATA + __badioinfo=MSVCRT___badioinfo @338 DATA + __clean_type_info_names_internal @339 + __control87_2 @340 + __create_locale=MSVCRT__create_locale @341 + __crtCompareStringA @342 + __crtCompareStringW @343 + __crtLCMapStringA @344 + __crtLCMapStringW @345 + __daylight=MSVCRT___p__daylight @346 + __dllonexit @347 + __doserrno=MSVCRT___doserrno @348 + __dstbias=MSVCRT___p__dstbias @349 + ___fls_getvalue@4@0 @350 PRIVATE + ___fls_setvalue@8@0 @351 PRIVATE + __fpecode @352 + __free_locale=MSVCRT__free_locale @353 + __get_current_locale=MSVCRT__get_current_locale @354 + __get_flsindex@0 @355 PRIVATE + __get_tlsindex@0 @356 PRIVATE + __getmainargs @357 + __initenv=MSVCRT___initenv @358 DATA + __iob_func=__p__iob @359 + __isascii=MSVCRT___isascii @360 + __iscsym=MSVCRT___iscsym @361 + __iscsymf=MSVCRT___iscsymf @362 + __iswcsym@0 @363 PRIVATE + __iswcsymf@0 @364 PRIVATE + __lconv_init @365 + __libm_sse2_acos=MSVCRT___libm_sse2_acos @366 + __libm_sse2_acosf=MSVCRT___libm_sse2_acosf @367 + __libm_sse2_asin=MSVCRT___libm_sse2_asin @368 + __libm_sse2_asinf=MSVCRT___libm_sse2_asinf @369 + __libm_sse2_atan=MSVCRT___libm_sse2_atan @370 + __libm_sse2_atan2=MSVCRT___libm_sse2_atan2 @371 + __libm_sse2_atanf=MSVCRT___libm_sse2_atanf @372 + __libm_sse2_cos=MSVCRT___libm_sse2_cos @373 + __libm_sse2_cosf=MSVCRT___libm_sse2_cosf @374 + __libm_sse2_exp=MSVCRT___libm_sse2_exp @375 + __libm_sse2_expf=MSVCRT___libm_sse2_expf @376 + __libm_sse2_log=MSVCRT___libm_sse2_log @377 + __libm_sse2_log10=MSVCRT___libm_sse2_log10 @378 + __libm_sse2_log10f=MSVCRT___libm_sse2_log10f @379 + __libm_sse2_logf=MSVCRT___libm_sse2_logf @380 + __libm_sse2_pow=MSVCRT___libm_sse2_pow @381 + __libm_sse2_powf=MSVCRT___libm_sse2_powf @382 + __libm_sse2_sin=MSVCRT___libm_sse2_sin @383 + __libm_sse2_sinf=MSVCRT___libm_sse2_sinf @384 + __libm_sse2_tan=MSVCRT___libm_sse2_tan @385 + __libm_sse2_tanf=MSVCRT___libm_sse2_tanf @386 + __mb_cur_max=MSVCRT___mb_cur_max @387 DATA + __p___argc=MSVCRT___p___argc @388 + __p___argv=MSVCRT___p___argv @389 + __p___initenv @390 + __p___mb_cur_max @391 + __p___wargv=MSVCRT___p___wargv @392 + __p___winitenv @393 + __p__acmdln=MSVCRT___p__acmdln @394 + __p__commode @395 + __p__daylight=MSVCRT___p__daylight @396 + __p__dstbias=MSVCRT___p__dstbias @397 + __p__environ=MSVCRT___p__environ @398 + __p__fmode=MSVCRT___p__fmode @399 + __p__iob @400 + __p__mbcasemap@0 @401 PRIVATE + __p__mbctype @402 + __p__pctype=MSVCRT___p__pctype @403 + __p__pgmptr=MSVCRT___p__pgmptr @404 + __p__pwctype@0 @405 PRIVATE + __p__timezone=MSVCRT___p__timezone @406 + __p__tzname @407 + __p__wcmdln=MSVCRT___p__wcmdln @408 + __p__wenviron=MSVCRT___p__wenviron @409 + __p__wpgmptr=MSVCRT___p__wpgmptr @410 + __pctype_func=MSVCRT___pctype_func @411 + __pioinfo=MSVCRT___pioinfo @412 DATA + __pwctype_func@0 @413 PRIVATE + __pxcptinfoptrs=MSVCRT___pxcptinfoptrs @414 + __report_gsfailure@0 @415 PRIVATE + __set_app_type=MSVCRT___set_app_type @416 + __set_flsgetvalue@0 @417 PRIVATE + __setlc_active=MSVCRT___setlc_active @418 DATA + __setusermatherr=MSVCRT___setusermatherr @419 + __strncnt=MSVCRT___strncnt @420 + __swprintf_l=MSVCRT___swprintf_l @421 + __sys_errlist @422 + __sys_nerr @423 + __threadhandle=kernel32.GetCurrentThread @424 + __threadid=kernel32.GetCurrentThreadId @425 + __timezone=MSVCRT___p__timezone @426 + __toascii=MSVCRT___toascii @427 + __tzname=__p__tzname @428 + __unDName @429 + __unDNameEx @430 + __unDNameHelper@0 @431 PRIVATE + __unguarded_readlc_active=MSVCRT___unguarded_readlc_active @432 DATA + __vswprintf_l=MSVCRT_vswprintf_l @433 + __wargv=MSVCRT___wargv @434 DATA + __wcserror=MSVCRT___wcserror @435 + __wcserror_s=MSVCRT___wcserror_s @436 + __wcsncnt@0 @437 PRIVATE + __wgetmainargs @438 + __winitenv=MSVCRT___winitenv @439 DATA + _abnormal_termination @440 + _abs64 @441 + _access=MSVCRT__access @442 + _access_s=MSVCRT__access_s @443 + _acmdln=MSVCRT__acmdln @444 DATA + _aligned_free @445 + _aligned_malloc @446 + _aligned_msize @447 + _aligned_offset_malloc @448 + _aligned_offset_realloc @449 + _aligned_offset_recalloc@0 @450 PRIVATE + _aligned_realloc @451 + _aligned_recalloc@0 @452 PRIVATE + _amsg_exit @453 + _assert=MSVCRT__assert @454 + _atodbl=MSVCRT__atodbl @455 + _atodbl_l=MSVCRT__atodbl_l @456 + _atof_l=MSVCRT__atof_l @457 + _atoflt=MSVCRT__atoflt @458 + _atoflt_l=MSVCRT__atoflt_l @459 + _atoi64=MSVCRT__atoi64 @460 + _atoi64_l=MSVCRT__atoi64_l @461 + _atoi_l=MSVCRT__atoi_l @462 + _atol_l=MSVCRT__atol_l @463 + _atoldbl=MSVCRT__atoldbl @464 + _atoldbl_l@0 @465 PRIVATE + _beep=MSVCRT__beep @466 + _beginthread @467 + _beginthreadex @468 + _byteswap_uint64 @469 + _byteswap_ulong=MSVCRT__byteswap_ulong @470 + _byteswap_ushort @471 + _c_exit=MSVCRT__c_exit @472 + _cabs=MSVCRT__cabs @473 + _callnewh @474 + _calloc_crt=MSVCRT_calloc @475 + _cexit=MSVCRT__cexit @476 + _cgets @477 + _cgets_s@0 @478 PRIVATE + _cgetws@0 @479 PRIVATE + _cgetws_s@0 @480 PRIVATE + _chdir=MSVCRT__chdir @481 + _chdrive=MSVCRT__chdrive @482 + _chgsign=MSVCRT__chgsign @483 + _chkesp @484 + _chmod=MSVCRT__chmod @485 + _chsize=MSVCRT__chsize @486 + _chsize_s=MSVCRT__chsize_s @487 + _clearfp @488 + _close=MSVCRT__close @489 + _commit=MSVCRT__commit @490 + _commode=MSVCRT__commode @491 DATA + _configthreadlocale @492 + _control87 @493 + _controlfp @494 + _controlfp_s @495 + _copysign=MSVCRT__copysign @496 + _cprintf @497 + _cprintf_l@0 @498 PRIVATE + _cprintf_p@0 @499 PRIVATE + _cprintf_p_l@0 @500 PRIVATE + _cprintf_s@0 @501 PRIVATE + _cprintf_s_l@0 @502 PRIVATE + _cputs @503 + _cputws @504 + _creat=MSVCRT__creat @505 + _create_locale=MSVCRT__create_locale @506 + _crt_debugger_hook=MSVCRT__crt_debugger_hook @507 + _cscanf @508 + _cscanf_l @509 + _cscanf_s @510 + _cscanf_s_l @511 + _ctime32=MSVCRT__ctime32 @512 + _ctime32_s=MSVCRT__ctime32_s @513 + _ctime64=MSVCRT__ctime64 @514 + _ctime64_s=MSVCRT__ctime64_s @515 + _cwait @516 + _cwprintf @517 + _cwprintf_l@0 @518 PRIVATE + _cwprintf_p@0 @519 PRIVATE + _cwprintf_p_l@0 @520 PRIVATE + _cwprintf_s@0 @521 PRIVATE + _cwprintf_s_l@0 @522 PRIVATE + _cwscanf @523 + _cwscanf_l @524 + _cwscanf_s @525 + _cwscanf_s_l @526 + _daylight=MSVCRT___daylight @527 DATA + _difftime32=MSVCRT__difftime32 @528 + _difftime64=MSVCRT__difftime64 @529 + _dosmaperr@0 @530 PRIVATE + _dstbias=MSVCRT__dstbias @531 DATA + _dup=MSVCRT__dup @532 + _dup2=MSVCRT__dup2 @533 + _dupenv_s @534 + _ecvt=MSVCRT__ecvt @535 + _ecvt_s=MSVCRT__ecvt_s @536 + _encoded_null @537 + _endthread @538 + _endthreadex @539 + _environ=MSVCRT__environ @540 DATA + _eof=MSVCRT__eof @541 + _errno=MSVCRT__errno @542 + _except_handler2 @543 + _except_handler3 @544 + _except_handler4_common @545 + _execl @546 + _execle @547 + _execlp @548 + _execlpe @549 + _execv @550 + _execve=MSVCRT__execve @551 + _execvp @552 + _execvpe @553 + _exit=MSVCRT__exit @554 + _expand @555 + _fclose_nolock=MSVCRT__fclose_nolock @556 + _fcloseall=MSVCRT__fcloseall @557 + _fcvt=MSVCRT__fcvt @558 + _fcvt_s=MSVCRT__fcvt_s @559 + _fdopen=MSVCRT__fdopen @560 + _fflush_nolock=MSVCRT__fflush_nolock @561 + _fgetc_nolock=MSVCRT__fgetc_nolock @562 + _fgetchar=MSVCRT__fgetchar @563 + _fgetwc_nolock=MSVCRT__fgetwc_nolock @564 + _fgetwchar=MSVCRT__fgetwchar @565 + _filbuf=MSVCRT__filbuf @566 + _filelength=MSVCRT__filelength @567 + _filelengthi64=MSVCRT__filelengthi64 @568 + _fileno=MSVCRT__fileno @569 + _findclose=MSVCRT__findclose @570 + _findfirst32=MSVCRT__findfirst32 @571 + _findfirst32i64@0 @572 PRIVATE + _findfirst64=MSVCRT__findfirst64 @573 + _findfirst64i32=MSVCRT__findfirst64i32 @574 + _findnext32=MSVCRT__findnext32 @575 + _findnext32i64@0 @576 PRIVATE + _findnext64=MSVCRT__findnext64 @577 + _findnext64i32=MSVCRT__findnext64i32 @578 + _finite=MSVCRT__finite @579 + _flsbuf=MSVCRT__flsbuf @580 + _flushall=MSVCRT__flushall @581 + _fmode=MSVCRT__fmode @582 DATA + _fpclass=MSVCRT__fpclass @583 + _fpieee_flt @584 + _fpreset @585 + _fprintf_l@0 @586 PRIVATE + _fprintf_p@0 @587 PRIVATE + _fprintf_p_l@0 @588 PRIVATE + _fprintf_s_l@0 @589 PRIVATE + _fputc_nolock=MSVCRT__fputc_nolock @590 + _fputchar=MSVCRT__fputchar @591 + _fputwc_nolock=MSVCRT__fputwc_nolock @592 + _fputwchar=MSVCRT__fputwchar @593 + _fread_nolock=MSVCRT__fread_nolock @594 + _fread_nolock_s=MSVCRT__fread_nolock_s @595 + _free_locale=MSVCRT__free_locale @596 + _freea@0 @597 PRIVATE + _freea_s@0 @598 PRIVATE + _freefls@0 @599 PRIVATE + _fscanf_l=MSVCRT__fscanf_l @600 + _fscanf_s_l=MSVCRT__fscanf_s_l @601 + _fseek_nolock=MSVCRT__fseek_nolock @602 + _fseeki64=MSVCRT__fseeki64 @603 + _fseeki64_nolock=MSVCRT__fseeki64_nolock @604 + _fsopen=MSVCRT__fsopen @605 + _fstat32=MSVCRT__fstat32 @606 + _fstat32i64=MSVCRT__fstat32i64 @607 + _fstat64=MSVCRT__fstat64 @608 + _fstat64i32=MSVCRT__fstat64i32 @609 + _ftell_nolock=MSVCRT__ftell_nolock @610 + _ftelli64=MSVCRT__ftelli64 @611 + _ftelli64_nolock=MSVCRT__ftelli64_nolock @612 + _ftime32=MSVCRT__ftime32 @613 + _ftime32_s=MSVCRT__ftime32_s @614 + _ftime64=MSVCRT__ftime64 @615 + _ftime64_s=MSVCRT__ftime64_s @616 + _ftol=MSVCRT__ftol @617 + _fullpath=MSVCRT__fullpath @618 + _futime32 @619 + _futime64 @620 + _fwprintf_l=MSVCRT__fwprintf_l @621 + _fwprintf_p@0 @622 PRIVATE + _fwprintf_p_l@0 @623 PRIVATE + _fwprintf_s_l@0 @624 PRIVATE + _fwrite_nolock=MSVCRT__fwrite_nolock @625 + _fwscanf_l=MSVCRT__fwscanf_l @626 + _fwscanf_s_l=MSVCRT__fwscanf_s_l @627 + _gcvt=MSVCRT__gcvt @628 + _gcvt_s=MSVCRT__gcvt_s @629 + _get_current_locale=MSVCRT__get_current_locale @630 + _get_daylight @631 + _get_doserrno @632 + _get_dstbias=MSVCRT__get_dstbias @633 + _get_errno @634 + _get_fmode=MSVCRT__get_fmode @635 + _get_heap_handle @636 + _get_invalid_parameter_handler @637 + _get_osfhandle=MSVCRT__get_osfhandle @638 + _get_output_format=MSVCRT__get_output_format @639 + _get_pgmptr @640 + _get_printf_count_output=MSVCRT__get_printf_count_output @641 + _get_purecall_handler @642 + _get_terminate=MSVCRT__get_terminate @643 + _get_timezone @644 + _get_tzname=MSVCRT__get_tzname @645 + _get_unexpected=MSVCRT__get_unexpected @646 + _get_wpgmptr @647 + _getc_nolock=MSVCRT__fgetc_nolock @648 + _getch @649 + _getch_nolock @650 + _getche @651 + _getche_nolock @652 + _getcwd=MSVCRT__getcwd @653 + _getdcwd=MSVCRT__getdcwd @654 + _getdcwd_nolock@0 @655 PRIVATE + _getdiskfree=MSVCRT__getdiskfree @656 + _getdllprocaddr @657 + _getdrive=MSVCRT__getdrive @658 + _getdrives=kernel32.GetLogicalDrives @659 + _getmaxstdio=MSVCRT__getmaxstdio @660 + _getmbcp @661 + _getpid @662 + _getptd @663 + _getsystime@4 @664 PRIVATE + _getw=MSVCRT__getw @665 + _getwc_nolock=MSVCRT__fgetwc_nolock @666 + _getwch @667 + _getwch_nolock @668 + _getwche @669 + _getwche_nolock @670 + _getws=MSVCRT__getws @671 + _getws_s@0 @672 PRIVATE + _global_unwind2 @673 + _gmtime32=MSVCRT__gmtime32 @674 + _gmtime32_s=MSVCRT__gmtime32_s @675 + _gmtime64=MSVCRT__gmtime64 @676 + _gmtime64_s=MSVCRT__gmtime64_s @677 + _heapadd @678 + _heapchk @679 + _heapmin @680 + _heapset @681 + _heapused@8 @682 PRIVATE + _heapwalk @683 + _hypot @684 + _hypotf=MSVCRT__hypotf @685 + _i64toa=ntdll._i64toa @686 + _i64toa_s=MSVCRT__i64toa_s @687 + _i64tow=ntdll._i64tow @688 + _i64tow_s=MSVCRT__i64tow_s @689 + _initptd@0 @690 PRIVATE + _initterm @691 + _initterm_e @692 + _inp@4 @693 PRIVATE + _inpd@4 @694 PRIVATE + _inpw@4 @695 PRIVATE + _invalid_parameter=MSVCRT__invalid_parameter @696 + _invalid_parameter_noinfo @697 + _invalid_parameter_noinfo_noreturn @698 + _invoke_watson@0 @699 PRIVATE + _iob=MSVCRT__iob @700 DATA + _isalnum_l=MSVCRT__isalnum_l @701 + _isalpha_l=MSVCRT__isalpha_l @702 + _isatty=MSVCRT__isatty @703 + _iscntrl_l=MSVCRT__iscntrl_l @704 + _isctype=MSVCRT__isctype @705 + _isctype_l=MSVCRT__isctype_l @706 + _isdigit_l=MSVCRT__isdigit_l @707 + _isgraph_l=MSVCRT__isgraph_l @708 + _isleadbyte_l=MSVCRT__isleadbyte_l @709 + _islower_l=MSVCRT__islower_l @710 + _ismbbalnum@4 @711 PRIVATE + _ismbbalnum_l@0 @712 PRIVATE + _ismbbalpha@4 @713 PRIVATE + _ismbbalpha_l@0 @714 PRIVATE + _ismbbgraph@4 @715 PRIVATE + _ismbbgraph_l@0 @716 PRIVATE + _ismbbkalnum@4 @717 PRIVATE + _ismbbkalnum_l@0 @718 PRIVATE + _ismbbkana @719 + _ismbbkana_l@0 @720 PRIVATE + _ismbbkprint@4 @721 PRIVATE + _ismbbkprint_l@0 @722 PRIVATE + _ismbbkpunct@4 @723 PRIVATE + _ismbbkpunct_l@0 @724 PRIVATE + _ismbblead @725 + _ismbblead_l @726 + _ismbbprint@4 @727 PRIVATE + _ismbbprint_l@0 @728 PRIVATE + _ismbbpunct@4 @729 PRIVATE + _ismbbpunct_l@0 @730 PRIVATE + _ismbbtrail @731 + _ismbbtrail_l @732 + _ismbcalnum @733 + _ismbcalnum_l@0 @734 PRIVATE + _ismbcalpha @735 + _ismbcalpha_l@0 @736 PRIVATE + _ismbcdigit @737 + _ismbcdigit_l@0 @738 PRIVATE + _ismbcgraph @739 + _ismbcgraph_l@0 @740 PRIVATE + _ismbchira @741 + _ismbchira_l@0 @742 PRIVATE + _ismbckata @743 + _ismbckata_l@0 @744 PRIVATE + _ismbcl0 @745 + _ismbcl0_l @746 + _ismbcl1 @747 + _ismbcl1_l @748 + _ismbcl2 @749 + _ismbcl2_l @750 + _ismbclegal @751 + _ismbclegal_l @752 + _ismbclower @753 + _ismbclower_l@0 @754 PRIVATE + _ismbcprint @755 + _ismbcprint_l@0 @756 PRIVATE + _ismbcpunct @757 + _ismbcpunct_l@0 @758 PRIVATE + _ismbcspace @759 + _ismbcspace_l@0 @760 PRIVATE + _ismbcsymbol @761 + _ismbcsymbol_l@0 @762 PRIVATE + _ismbcupper @763 + _ismbcupper_l@0 @764 PRIVATE + _ismbslead @765 + _ismbslead_l@0 @766 PRIVATE + _ismbstrail @767 + _ismbstrail_l@0 @768 PRIVATE + _isnan=MSVCRT__isnan @769 + _isprint_l=MSVCRT__isprint_l @770 + _ispunct_l@0 @771 PRIVATE + _isspace_l=MSVCRT__isspace_l @772 + _isupper_l=MSVCRT__isupper_l @773 + _iswalnum_l=MSVCRT__iswalnum_l @774 + _iswalpha_l=MSVCRT__iswalpha_l @775 + _iswcntrl_l=MSVCRT__iswcntrl_l @776 + _iswcsym_l@0 @777 PRIVATE + _iswcsymf_l@0 @778 PRIVATE + _iswctype_l=MSVCRT__iswctype_l @779 + _iswdigit_l=MSVCRT__iswdigit_l @780 + _iswgraph_l=MSVCRT__iswgraph_l @781 + _iswlower_l=MSVCRT__iswlower_l @782 + _iswprint_l=MSVCRT__iswprint_l @783 + _iswpunct_l=MSVCRT__iswpunct_l @784 + _iswspace_l=MSVCRT__iswspace_l @785 + _iswupper_l=MSVCRT__iswupper_l @786 + _iswxdigit_l=MSVCRT__iswxdigit_l @787 + _isxdigit_l=MSVCRT__isxdigit_l @788 + _itoa=MSVCRT__itoa @789 + _itoa_s=MSVCRT__itoa_s @790 + _itow=ntdll._itow @791 + _itow_s=MSVCRT__itow_s @792 + _j0=MSVCRT__j0 @793 + _j1=MSVCRT__j1 @794 + _jn=MSVCRT__jn @795 + _kbhit @796 + _lfind @797 + _lfind_s @798 + _loaddll @799 + _local_unwind2 @800 + _local_unwind4 @801 + _localtime32=MSVCRT__localtime32 @802 + _localtime32_s @803 + _localtime64=MSVCRT__localtime64 @804 + _localtime64_s @805 + _lock @806 + _lock_file=MSVCRT__lock_file @807 + _locking=MSVCRT__locking @808 + _logb=MSVCRT__logb @809 + _longjmpex=MSVCRT_longjmp @810 + _lrotl=MSVCRT__lrotl @811 + _lrotr=MSVCRT__lrotr @812 + _lsearch @813 + _lsearch_s@0 @814 PRIVATE + _lseek=MSVCRT__lseek @815 + _lseeki64=MSVCRT__lseeki64 @816 + _ltoa=ntdll._ltoa @817 + _ltoa_s=MSVCRT__ltoa_s @818 + _ltow=ntdll._ltow @819 + _ltow_s=MSVCRT__ltow_s @820 + _makepath=MSVCRT__makepath @821 + _makepath_s=MSVCRT__makepath_s @822 + _malloc_crt=MSVCRT_malloc @823 + _mbbtombc @824 + _mbbtombc_l@0 @825 PRIVATE + _mbbtype @826 + _mbbtype_l@0 @827 PRIVATE + _mbccpy @828 + _mbccpy_l @829 + _mbccpy_s @830 + _mbccpy_s_l @831 + _mbcjistojms @832 + _mbcjistojms_l@0 @833 PRIVATE + _mbcjmstojis @834 + _mbcjmstojis_l@0 @835 PRIVATE + _mbclen @836 + _mbclen_l@0 @837 PRIVATE + _mbctohira @838 + _mbctohira_l@0 @839 PRIVATE + _mbctokata @840 + _mbctokata_l@0 @841 PRIVATE + _mbctolower @842 + _mbctolower_l@0 @843 PRIVATE + _mbctombb @844 + _mbctombb_l@0 @845 PRIVATE + _mbctoupper @846 + _mbctoupper_l@0 @847 PRIVATE + _mbctype=MSVCRT_mbctype @848 DATA + _mblen_l@0 @849 PRIVATE + _mbsbtype @850 + _mbsbtype_l@0 @851 PRIVATE + _mbscat_s @852 + _mbscat_s_l @853 + _mbschr @854 + _mbschr_l@0 @855 PRIVATE + _mbscmp @856 + _mbscmp_l@0 @857 PRIVATE + _mbscoll @858 + _mbscoll_l @859 + _mbscpy_s @860 + _mbscpy_s_l @861 + _mbscspn @862 + _mbscspn_l@0 @863 PRIVATE + _mbsdec @864 + _mbsdec_l@0 @865 PRIVATE + _mbsicmp @866 + _mbsicmp_l@0 @867 PRIVATE + _mbsicoll @868 + _mbsicoll_l @869 + _mbsinc @870 + _mbsinc_l@0 @871 PRIVATE + _mbslen @872 + _mbslen_l @873 + _mbslwr @874 + _mbslwr_l@0 @875 PRIVATE + _mbslwr_s @876 + _mbslwr_s_l@0 @877 PRIVATE + _mbsnbcat @878 + _mbsnbcat_l@0 @879 PRIVATE + _mbsnbcat_s @880 + _mbsnbcat_s_l@0 @881 PRIVATE + _mbsnbcmp @882 + _mbsnbcmp_l@0 @883 PRIVATE + _mbsnbcnt @884 + _mbsnbcnt_l@0 @885 PRIVATE + _mbsnbcoll @886 + _mbsnbcoll_l @887 + _mbsnbcpy @888 + _mbsnbcpy_l@0 @889 PRIVATE + _mbsnbcpy_s @890 + _mbsnbcpy_s_l @891 + _mbsnbicmp @892 + _mbsnbicmp_l@0 @893 PRIVATE + _mbsnbicoll @894 + _mbsnbicoll_l @895 + _mbsnbset @896 + _mbsnbset_l@0 @897 PRIVATE + _mbsnbset_s@0 @898 PRIVATE + _mbsnbset_s_l@0 @899 PRIVATE + _mbsncat @900 + _mbsncat_l@0 @901 PRIVATE + _mbsncat_s@0 @902 PRIVATE + _mbsncat_s_l@0 @903 PRIVATE + _mbsnccnt @904 + _mbsnccnt_l@0 @905 PRIVATE + _mbsncmp @906 + _mbsncmp_l@0 @907 PRIVATE + _mbsncoll@12 @908 PRIVATE + _mbsncoll_l@0 @909 PRIVATE + _mbsncpy @910 + _mbsncpy_l@0 @911 PRIVATE + _mbsncpy_s@0 @912 PRIVATE + _mbsncpy_s_l@0 @913 PRIVATE + _mbsnextc @914 + _mbsnextc_l@0 @915 PRIVATE + _mbsnicmp @916 + _mbsnicmp_l@0 @917 PRIVATE + _mbsnicoll@12 @918 PRIVATE + _mbsnicoll_l@0 @919 PRIVATE + _mbsninc @920 + _mbsninc_l@0 @921 PRIVATE + _mbsnlen @922 + _mbsnlen_l @923 + _mbsnset @924 + _mbsnset_l@0 @925 PRIVATE + _mbsnset_s@0 @926 PRIVATE + _mbsnset_s_l@0 @927 PRIVATE + _mbspbrk @928 + _mbspbrk_l@0 @929 PRIVATE + _mbsrchr @930 + _mbsrchr_l@0 @931 PRIVATE + _mbsrev @932 + _mbsrev_l@0 @933 PRIVATE + _mbsset @934 + _mbsset_l@0 @935 PRIVATE + _mbsset_s@0 @936 PRIVATE + _mbsset_s_l@0 @937 PRIVATE + _mbsspn @938 + _mbsspn_l@0 @939 PRIVATE + _mbsspnp @940 + _mbsspnp_l@0 @941 PRIVATE + _mbsstr @942 + _mbsstr_l@0 @943 PRIVATE + _mbstok @944 + _mbstok_l @945 + _mbstok_s @946 + _mbstok_s_l @947 + _mbstowcs_l=MSVCRT__mbstowcs_l @948 + _mbstowcs_s_l=MSVCRT__mbstowcs_s_l @949 + _mbstrlen @950 + _mbstrlen_l @951 + _mbstrnlen@0 @952 PRIVATE + _mbstrnlen_l@0 @953 PRIVATE + _mbsupr @954 + _mbsupr_l@0 @955 PRIVATE + _mbsupr_s @956 + _mbsupr_s_l@0 @957 PRIVATE + _mbtowc_l=MSVCRT_mbtowc_l @958 + _memccpy=ntdll._memccpy @959 + _memicmp=MSVCRT__memicmp @960 + _memicmp_l=MSVCRT__memicmp_l @961 + _mkdir=MSVCRT__mkdir @962 + _mkgmtime32=MSVCRT__mkgmtime32 @963 + _mkgmtime64=MSVCRT__mkgmtime64 @964 + _mktemp=MSVCRT__mktemp @965 + _mktemp_s=MSVCRT__mktemp_s @966 + _mktime32=MSVCRT__mktime32 @967 + _mktime64=MSVCRT__mktime64 @968 + _msize @969 + _nextafter=MSVCRT__nextafter @970 + _onexit=MSVCRT__onexit @971 + _open=MSVCRT__open @972 + _open_osfhandle=MSVCRT__open_osfhandle @973 + _outp@8 @974 PRIVATE + _outpd@8 @975 PRIVATE + _outpw@8 @976 PRIVATE + _pclose=MSVCRT__pclose @977 + _pctype=MSVCRT__pctype @978 DATA + _pgmptr=MSVCRT__pgmptr @979 DATA + _pipe=MSVCRT__pipe @980 + _popen=MSVCRT__popen @981 + _printf_l@0 @982 PRIVATE + _printf_p@0 @983 PRIVATE + _printf_p_l@0 @984 PRIVATE + _printf_s_l@0 @985 PRIVATE + _purecall @986 + _putc_nolock=MSVCRT__fputc_nolock @987 + _putch @988 + _putch_nolock @989 + _putenv @990 + _putenv_s @991 + _putw=MSVCRT__putw @992 + _putwc_nolock=MSVCRT__fputwc_nolock @993 + _putwch @994 + _putwch_nolock @995 + _putws=MSVCRT__putws @996 + _read=MSVCRT__read @997 + _realloc_crt=MSVCRT_realloc @998 + _recalloc @999 + _recalloc_crt@0 @1000 PRIVATE + _resetstkoflw=MSVCRT__resetstkoflw @1001 + _rmdir=MSVCRT__rmdir @1002 + _rmtmp=MSVCRT__rmtmp @1003 + _rotl @1004 + _rotl64 @1005 + _rotr @1006 + _rotr64 @1007 + _scalb=MSVCRT__scalb @1008 + _scanf_l=MSVCRT__scanf_l @1009 + _scanf_s_l=MSVCRT__scanf_s_l @1010 + _scprintf=MSVCRT__scprintf @1011 + _scprintf_l@0 @1012 PRIVATE + _scprintf_p@0 @1013 PRIVATE + _scprintf_p_l@0 @1014 PRIVATE + _scwprintf=MSVCRT__scwprintf @1015 + _scwprintf_l@0 @1016 PRIVATE + _scwprintf_p@0 @1017 PRIVATE + _scwprintf_p_l@0 @1018 PRIVATE + _searchenv=MSVCRT__searchenv @1019 + _searchenv_s=MSVCRT__searchenv_s @1020 + _seh_longjmp_unwind4@4 @1021 + _seh_longjmp_unwind@4 @1022 + _set_SSE2_enable=MSVCRT__set_SSE2_enable @1023 + _set_abort_behavior=MSVCRT__set_abort_behavior @1024 + _set_controlfp @1025 + _set_doserrno @1026 + _set_errno @1027 + _set_error_mode @1028 + _set_fmode=MSVCRT__set_fmode @1029 + _set_invalid_parameter_handler @1030 + _set_malloc_crt_max_wait@0 @1031 PRIVATE + _set_output_format=MSVCRT__set_output_format @1032 + _set_printf_count_output=MSVCRT__set_printf_count_output @1033 + _set_purecall_handler @1034 + _seterrormode @1035 + _setjmp=MSVCRT__setjmp @1036 + _setjmp3=MSVCRT__setjmp3 @1037 + _setmaxstdio=MSVCRT__setmaxstdio @1038 + _setmbcp @1039 + _setmode=MSVCRT__setmode @1040 + _setsystime@8 @1041 PRIVATE + _sleep=MSVCRT__sleep @1042 + _snprintf=MSVCRT__snprintf @1043 + _snprintf_c@0 @1044 PRIVATE + _snprintf_c_l@0 @1045 PRIVATE + _snprintf_l=MSVCRT__snprintf_l @1046 + _snprintf_s=MSVCRT__snprintf_s @1047 + _snprintf_s_l@0 @1048 PRIVATE + _snscanf=MSVCRT__snscanf @1049 + _snscanf_l=MSVCRT__snscanf_l @1050 + _snscanf_s=MSVCRT__snscanf_s @1051 + _snscanf_s_l=MSVCRT__snscanf_s_l @1052 + _snwprintf=MSVCRT__snwprintf @1053 + _snwprintf_l=MSVCRT__snwprintf_l @1054 + _snwprintf_s=MSVCRT__snwprintf_s @1055 + _snwprintf_s_l=MSVCRT__snwprintf_s_l @1056 + _snwscanf=MSVCRT__snwscanf @1057 + _snwscanf_l=MSVCRT__snwscanf_l @1058 + _snwscanf_s=MSVCRT__snwscanf_s @1059 + _snwscanf_s_l=MSVCRT__snwscanf_s_l @1060 + _sopen=MSVCRT__sopen @1061 + _sopen_s=MSVCRT__sopen_s @1062 + _spawnl=MSVCRT__spawnl @1063 + _spawnle=MSVCRT__spawnle @1064 + _spawnlp=MSVCRT__spawnlp @1065 + _spawnlpe=MSVCRT__spawnlpe @1066 + _spawnv=MSVCRT__spawnv @1067 + _spawnve=MSVCRT__spawnve @1068 + _spawnvp=MSVCRT__spawnvp @1069 + _spawnvpe=MSVCRT__spawnvpe @1070 + _splitpath=MSVCRT__splitpath @1071 + _splitpath_s=MSVCRT__splitpath_s @1072 + _sprintf_l=MSVCRT_sprintf_l @1073 + _sprintf_p=MSVCRT__sprintf_p @1074 + _sprintf_p_l=MSVCRT_sprintf_p_l @1075 + _sprintf_s_l=MSVCRT_sprintf_s_l @1076 + _sscanf_l=MSVCRT__sscanf_l @1077 + _sscanf_s_l=MSVCRT__sscanf_s_l @1078 + _stat32=MSVCRT__stat32 @1079 + _stat32i64=MSVCRT__stat32i64 @1080 + _stat64=MSVCRT_stat64 @1081 + _stat64i32=MSVCRT__stat64i32 @1082 + _statusfp @1083 + _statusfp2 @1084 + _strcoll_l=MSVCRT_strcoll_l @1085 + _strdate=MSVCRT__strdate @1086 + _strdate_s @1087 + _strdup=MSVCRT__strdup @1088 + _strerror=MSVCRT__strerror @1089 + _strerror_s@0 @1090 PRIVATE + _strftime_l=MSVCRT__strftime_l @1091 + _stricmp=MSVCRT__stricmp @1092 + _stricmp_l=MSVCRT__stricmp_l @1093 + _stricoll=MSVCRT__stricoll @1094 + _stricoll_l=MSVCRT__stricoll_l @1095 + _strlwr=MSVCRT__strlwr @1096 + _strlwr_l @1097 + _strlwr_s=MSVCRT__strlwr_s @1098 + _strlwr_s_l=MSVCRT__strlwr_s_l @1099 + _strncoll=MSVCRT__strncoll @1100 + _strncoll_l=MSVCRT__strncoll_l @1101 + _strnicmp=MSVCRT__strnicmp @1102 + _strnicmp_l=MSVCRT__strnicmp_l @1103 + _strnicoll=MSVCRT__strnicoll @1104 + _strnicoll_l=MSVCRT__strnicoll_l @1105 + _strnset=MSVCRT__strnset @1106 + _strnset_s=MSVCRT__strnset_s @1107 + _strrev=MSVCRT__strrev @1108 + _strset @1109 + _strset_s@0 @1110 PRIVATE + _strtime=MSVCRT__strtime @1111 + _strtime_s @1112 + _strtod_l=MSVCRT_strtod_l @1113 + _strtoi64=MSVCRT_strtoi64 @1114 + _strtoi64_l=MSVCRT_strtoi64_l @1115 + _strtol_l=MSVCRT__strtol_l @1116 + _strtoui64=MSVCRT_strtoui64 @1117 + _strtoui64_l=MSVCRT_strtoui64_l @1118 + _strtoul_l=MSVCRT_strtoul_l @1119 + _strupr=MSVCRT__strupr @1120 + _strupr_l=MSVCRT__strupr_l @1121 + _strupr_s=MSVCRT__strupr_s @1122 + _strupr_s_l=MSVCRT__strupr_s_l @1123 + _strxfrm_l=MSVCRT__strxfrm_l @1124 + _swab=MSVCRT__swab @1125 + _swprintf=MSVCRT_swprintf @1126 + _swprintf_c@0 @1127 PRIVATE + _swprintf_c_l@0 @1128 PRIVATE + _swprintf_p@0 @1129 PRIVATE + _swprintf_p_l=MSVCRT_swprintf_p_l @1130 + _swprintf_s_l=MSVCRT__swprintf_s_l @1131 + _swscanf_l=MSVCRT__swscanf_l @1132 + _swscanf_s_l=MSVCRT__swscanf_s_l @1133 + _sys_errlist=MSVCRT__sys_errlist @1134 DATA + _sys_nerr=MSVCRT__sys_nerr @1135 DATA + _tell=MSVCRT__tell @1136 + _telli64 @1137 + _tempnam=MSVCRT__tempnam @1138 + _time32=MSVCRT__time32 @1139 + _time64=MSVCRT__time64 @1140 + _timezone=MSVCRT___timezone @1141 DATA + _tolower=MSVCRT__tolower @1142 + _tolower_l=MSVCRT__tolower_l @1143 + _toupper=MSVCRT__toupper @1144 + _toupper_l=MSVCRT__toupper_l @1145 + _towlower_l=MSVCRT__towlower_l @1146 + _towupper_l=MSVCRT__towupper_l @1147 + _tzname=MSVCRT__tzname @1148 DATA + _tzset=MSVCRT__tzset @1149 + _ui64toa=ntdll._ui64toa @1150 + _ui64toa_s=MSVCRT__ui64toa_s @1151 + _ui64tow=ntdll._ui64tow @1152 + _ui64tow_s=MSVCRT__ui64tow_s @1153 + _ultoa=ntdll._ultoa @1154 + _ultoa_s=MSVCRT__ultoa_s @1155 + _ultow=ntdll._ultow @1156 + _ultow_s=MSVCRT__ultow_s @1157 + _umask=MSVCRT__umask @1158 + _umask_s@0 @1159 PRIVATE + _ungetc_nolock=MSVCRT__ungetc_nolock @1160 + _ungetch @1161 + _ungetch_nolock @1162 + _ungetwc_nolock=MSVCRT__ungetwc_nolock @1163 + _ungetwch @1164 + _ungetwch_nolock @1165 + _unlink=MSVCRT__unlink @1166 + _unloaddll @1167 + _unlock @1168 + _unlock_file=MSVCRT__unlock_file @1169 + _utime32 @1170 + _utime64 @1171 + _vcprintf @1172 + _vcprintf_l@0 @1173 PRIVATE + _vcprintf_p@0 @1174 PRIVATE + _vcprintf_p_l@0 @1175 PRIVATE + _vcprintf_s@0 @1176 PRIVATE + _vcprintf_s_l@0 @1177 PRIVATE + _vcwprintf @1178 + _vcwprintf_l@0 @1179 PRIVATE + _vcwprintf_p@0 @1180 PRIVATE + _vcwprintf_p_l@0 @1181 PRIVATE + _vcwprintf_s@0 @1182 PRIVATE + _vcwprintf_s_l@0 @1183 PRIVATE + _vfprintf_l=MSVCRT__vfprintf_l @1184 + _vfprintf_p=MSVCRT__vfprintf_p @1185 + _vfprintf_p_l=MSVCRT__vfprintf_p_l @1186 + _vfprintf_s_l=MSVCRT__vfprintf_s_l @1187 + _vfwprintf_l=MSVCRT__vfwprintf_l @1188 + _vfwprintf_p=MSVCRT__vfwprintf_p @1189 + _vfwprintf_p_l=MSVCRT__vfwprintf_p_l @1190 + _vfwprintf_s_l=MSVCRT__vfwprintf_s_l @1191 + _vprintf_l@0 @1192 PRIVATE + _vprintf_p@0 @1193 PRIVATE + _vprintf_p_l@0 @1194 PRIVATE + _vprintf_s_l@0 @1195 PRIVATE + _vscprintf=MSVCRT__vscprintf @1196 + _vscprintf_l=MSVCRT__vscprintf_l @1197 + _vscprintf_p=MSVCRT__vscprintf_p @1198 + _vscprintf_p_l=MSVCRT__vscprintf_p_l @1199 + _vscwprintf=MSVCRT__vscwprintf @1200 + _vscwprintf_l=MSVCRT__vscwprintf_l @1201 + _vscwprintf_p=MSVCRT__vscwprintf_p @1202 + _vscwprintf_p_l=MSVCRT__vscwprintf_p_l @1203 + _vsnprintf=MSVCRT_vsnprintf @1204 + _vsnprintf_c=MSVCRT_vsnprintf @1205 + _vsnprintf_c_l=MSVCRT_vsnprintf_l @1206 + _vsnprintf_l=MSVCRT_vsnprintf_l @1207 + _vsnprintf_s=MSVCRT_vsnprintf_s @1208 + _vsnprintf_s_l=MSVCRT_vsnprintf_s_l @1209 + _vsnwprintf=MSVCRT_vsnwprintf @1210 + _vsnwprintf_l=MSVCRT_vsnwprintf_l @1211 + _vsnwprintf_s=MSVCRT_vsnwprintf_s @1212 + _vsnwprintf_s_l=MSVCRT_vsnwprintf_s_l @1213 + _vsprintf_l=MSVCRT_vsprintf_l @1214 + _vsprintf_p=MSVCRT_vsprintf_p @1215 + _vsprintf_p_l=MSVCRT_vsprintf_p_l @1216 + _vsprintf_s_l=MSVCRT_vsprintf_s_l @1217 + _vswprintf=MSVCRT_vswprintf @1218 + _vswprintf_c=MSVCRT_vsnwprintf @1219 + _vswprintf_c_l=MSVCRT_vsnwprintf_l @1220 + _vswprintf_l=MSVCRT_vswprintf_l @1221 + _vswprintf_p=MSVCRT__vswprintf_p @1222 + _vswprintf_p_l=MSVCRT_vswprintf_p_l @1223 + _vswprintf_s_l=MSVCRT_vswprintf_s_l @1224 + _vwprintf_l@0 @1225 PRIVATE + _vwprintf_p@0 @1226 PRIVATE + _vwprintf_p_l@0 @1227 PRIVATE + _vwprintf_s_l@0 @1228 PRIVATE + _waccess=MSVCRT__waccess @1229 + _waccess_s=MSVCRT__waccess_s @1230 + _wasctime=MSVCRT__wasctime @1231 + _wasctime_s=MSVCRT__wasctime_s @1232 + _wassert=MSVCRT__wassert @1233 + _wchdir=MSVCRT__wchdir @1234 + _wchmod=MSVCRT__wchmod @1235 + _wcmdln=MSVCRT__wcmdln @1236 DATA + _wcreat=MSVCRT__wcreat @1237 + _wcscoll_l=MSVCRT__wcscoll_l @1238 + _wcsdup=MSVCRT__wcsdup @1239 + _wcserror=MSVCRT__wcserror @1240 + _wcserror_s=MSVCRT__wcserror_s @1241 + _wcsftime_l=MSVCRT__wcsftime_l @1242 + _wcsicmp=MSVCRT__wcsicmp @1243 + _wcsicmp_l=MSVCRT__wcsicmp_l @1244 + _wcsicoll=MSVCRT__wcsicoll @1245 + _wcsicoll_l=MSVCRT__wcsicoll_l @1246 + _wcslwr=MSVCRT__wcslwr @1247 + _wcslwr_l=MSVCRT__wcslwr_l @1248 + _wcslwr_s=MSVCRT__wcslwr_s @1249 + _wcslwr_s_l=MSVCRT__wcslwr_s_l @1250 + _wcsncoll=MSVCRT__wcsncoll @1251 + _wcsncoll_l=MSVCRT__wcsncoll_l @1252 + _wcsnicmp=MSVCRT__wcsnicmp @1253 + _wcsnicmp_l=MSVCRT__wcsnicmp_l @1254 + _wcsnicoll=MSVCRT__wcsnicoll @1255 + _wcsnicoll_l=MSVCRT__wcsnicoll_l @1256 + _wcsnset=MSVCRT__wcsnset @1257 + _wcsnset_s=MSVCRT__wcsnset_s @1258 + _wcsrev=MSVCRT__wcsrev @1259 + _wcsset=MSVCRT__wcsset @1260 + _wcsset_s=MSVCRT__wcsset_s @1261 + _wcstod_l=MSVCRT__wcstod_l @1262 + _wcstoi64=MSVCRT__wcstoi64 @1263 + _wcstoi64_l=MSVCRT__wcstoi64_l @1264 + _wcstol_l=MSVCRT__wcstol_l @1265 + _wcstombs_l=MSVCRT__wcstombs_l @1266 + _wcstombs_s_l=MSVCRT__wcstombs_s_l @1267 + _wcstoui64=MSVCRT__wcstoui64 @1268 + _wcstoui64_l=MSVCRT__wcstoui64_l @1269 + _wcstoul_l=MSVCRT__wcstoul_l @1270 + _wcsupr=MSVCRT__wcsupr @1271 + _wcsupr_l=MSVCRT__wcsupr_l @1272 + _wcsupr_s=MSVCRT__wcsupr_s @1273 + _wcsupr_s_l=MSVCRT__wcsupr_s_l @1274 + _wcsxfrm_l=MSVCRT__wcsxfrm_l @1275 + _wctime32=MSVCRT__wctime32 @1276 + _wctime32_s=MSVCRT__wctime32_s @1277 + _wctime64=MSVCRT__wctime64 @1278 + _wctime64_s=MSVCRT__wctime64_s @1279 + _wctomb_l=MSVCRT__wctomb_l @1280 + _wctomb_s_l=MSVCRT__wctomb_s_l @1281 + _wdupenv_s @1282 + _wenviron=MSVCRT__wenviron @1283 DATA + _wexecl @1284 + _wexecle @1285 + _wexeclp @1286 + _wexeclpe @1287 + _wexecv @1288 + _wexecve @1289 + _wexecvp @1290 + _wexecvpe @1291 + _wfdopen=MSVCRT__wfdopen @1292 + _wfindfirst32=MSVCRT__wfindfirst32 @1293 + _wfindfirst32i64@0 @1294 PRIVATE + _wfindfirst64=MSVCRT__wfindfirst64 @1295 + _wfindfirst64i32=MSVCRT__wfindfirst64i32 @1296 + _wfindnext32=MSVCRT__wfindnext32 @1297 + _wfindnext32i64@0 @1298 PRIVATE + _wfindnext64=MSVCRT__wfindnext64 @1299 + _wfindnext64i32=MSVCRT__wfindnext64i32 @1300 + _wfopen=MSVCRT__wfopen @1301 + _wfopen_s=MSVCRT__wfopen_s @1302 + _wfreopen=MSVCRT__wfreopen @1303 + _wfreopen_s=MSVCRT__wfreopen_s @1304 + _wfsopen=MSVCRT__wfsopen @1305 + _wfullpath=MSVCRT__wfullpath @1306 + _wgetcwd=MSVCRT__wgetcwd @1307 + _wgetdcwd=MSVCRT__wgetdcwd @1308 + _wgetdcwd_nolock@0 @1309 PRIVATE + _wgetenv=MSVCRT__wgetenv @1310 + _wgetenv_s @1311 + _wmakepath=MSVCRT__wmakepath @1312 + _wmakepath_s=MSVCRT__wmakepath_s @1313 + _wmkdir=MSVCRT__wmkdir @1314 + _wmktemp=MSVCRT__wmktemp @1315 + _wmktemp_s=MSVCRT__wmktemp_s @1316 + _wopen=MSVCRT__wopen @1317 + _wperror=MSVCRT__wperror @1318 + _wpgmptr=MSVCRT__wpgmptr @1319 DATA + _wpopen=MSVCRT__wpopen @1320 + _wprintf_l@0 @1321 PRIVATE + _wprintf_p@0 @1322 PRIVATE + _wprintf_p_l@0 @1323 PRIVATE + _wprintf_s_l@0 @1324 PRIVATE + _wputenv @1325 + _wputenv_s @1326 + _wremove=MSVCRT__wremove @1327 + _wrename=MSVCRT__wrename @1328 + _write=MSVCRT__write @1329 + _wrmdir=MSVCRT__wrmdir @1330 + _wscanf_l=MSVCRT__wscanf_l @1331 + _wscanf_s_l=MSVCRT__wscanf_s_l @1332 + _wsearchenv=MSVCRT__wsearchenv @1333 + _wsearchenv_s=MSVCRT__wsearchenv_s @1334 + _wsetlocale=MSVCRT__wsetlocale @1335 + _wsopen=MSVCRT__wsopen @1336 + _wsopen_s=MSVCRT__wsopen_s @1337 + _wspawnl=MSVCRT__wspawnl @1338 + _wspawnle=MSVCRT__wspawnle @1339 + _wspawnlp=MSVCRT__wspawnlp @1340 + _wspawnlpe=MSVCRT__wspawnlpe @1341 + _wspawnv=MSVCRT__wspawnv @1342 + _wspawnve=MSVCRT__wspawnve @1343 + _wspawnvp=MSVCRT__wspawnvp @1344 + _wspawnvpe=MSVCRT__wspawnvpe @1345 + _wsplitpath=MSVCRT__wsplitpath @1346 + _wsplitpath_s=MSVCRT__wsplitpath_s @1347 + _wstat32=MSVCRT__wstat32 @1348 + _wstat32i64=MSVCRT__wstat32i64 @1349 + _wstat64=MSVCRT__wstat64 @1350 + _wstat64i32=MSVCRT__wstat64i32 @1351 + _wstrdate=MSVCRT__wstrdate @1352 + _wstrdate_s @1353 + _wstrtime=MSVCRT__wstrtime @1354 + _wstrtime_s @1355 + _wsystem @1356 + _wtempnam=MSVCRT__wtempnam @1357 + _wtmpnam=MSVCRT__wtmpnam @1358 + _wtmpnam_s=MSVCRT__wtmpnam_s @1359 + _wtof=MSVCRT__wtof @1360 + _wtof_l=MSVCRT__wtof_l @1361 + _wtoi=MSVCRT__wtoi @1362 + _wtoi64=MSVCRT__wtoi64 @1363 + _wtoi64_l=MSVCRT__wtoi64_l @1364 + _wtoi_l=MSVCRT__wtoi_l @1365 + _wtol=MSVCRT__wtol @1366 + _wtol_l=MSVCRT__wtol_l @1367 + _wunlink=MSVCRT__wunlink @1368 + _wutime32 @1369 + _wutime64 @1370 + _y0=MSVCRT__y0 @1371 + _y1=MSVCRT__y1 @1372 + _yn=MSVCRT__yn @1373 + abort=MSVCRT_abort @1374 + abs=MSVCRT_abs @1375 + acos=MSVCRT_acos @1376 + asctime=MSVCRT_asctime @1377 + asctime_s=MSVCRT_asctime_s @1378 + asin=MSVCRT_asin @1379 + atan=MSVCRT_atan @1380 + atan2=MSVCRT_atan2 @1381 + atexit=MSVCRT_atexit @1382 PRIVATE + atof=MSVCRT_atof @1383 + atoi=MSVCRT_atoi @1384 + atol=MSVCRT_atol @1385 + bsearch=MSVCRT_bsearch @1386 + bsearch_s=MSVCRT_bsearch_s @1387 + btowc=MSVCRT_btowc @1388 + calloc=MSVCRT_calloc @1389 + ceil=MSVCRT_ceil @1390 + clearerr=MSVCRT_clearerr @1391 + clearerr_s=MSVCRT_clearerr_s @1392 + clock=MSVCRT_clock @1393 + cos=MSVCRT_cos @1394 + cosh=MSVCRT_cosh @1395 + div=MSVCRT_div @1396 + exit=MSVCRT_exit @1397 + exp=MSVCRT_exp @1398 + fabs=MSVCRT_fabs @1399 + fclose=MSVCRT_fclose @1400 + feof=MSVCRT_feof @1401 + ferror=MSVCRT_ferror @1402 + fflush=MSVCRT_fflush @1403 + fgetc=MSVCRT_fgetc @1404 + fgetpos=MSVCRT_fgetpos @1405 + fgets=MSVCRT_fgets @1406 + fgetwc=MSVCRT_fgetwc @1407 + fgetws=MSVCRT_fgetws @1408 + floor=MSVCRT_floor @1409 + fmod=MSVCRT_fmod @1410 + fopen=MSVCRT_fopen @1411 + fopen_s=MSVCRT_fopen_s @1412 + fprintf=MSVCRT_fprintf @1413 + fprintf_s=MSVCRT_fprintf_s @1414 + fputc=MSVCRT_fputc @1415 + fputs=MSVCRT_fputs @1416 + fputwc=MSVCRT_fputwc @1417 + fputws=MSVCRT_fputws @1418 + fread=MSVCRT_fread @1419 + fread_s=MSVCRT_fread_s @1420 + free=MSVCRT_free @1421 + freopen=MSVCRT_freopen @1422 + freopen_s=MSVCRT_freopen_s @1423 + frexp=MSVCRT_frexp @1424 + fscanf=MSVCRT_fscanf @1425 + fscanf_s=MSVCRT_fscanf_s @1426 + fseek=MSVCRT_fseek @1427 + fsetpos=MSVCRT_fsetpos @1428 + ftell=MSVCRT_ftell @1429 + fwprintf=MSVCRT_fwprintf @1430 + fwprintf_s=MSVCRT_fwprintf_s @1431 + fwrite=MSVCRT_fwrite @1432 + fwscanf=MSVCRT_fwscanf @1433 + fwscanf_s=MSVCRT_fwscanf_s @1434 + getc=MSVCRT_getc @1435 + getchar=MSVCRT_getchar @1436 + getenv=MSVCRT_getenv @1437 + getenv_s @1438 + gets=MSVCRT_gets @1439 + gets_s=MSVCRT_gets_s @1440 + getwc=MSVCRT_getwc @1441 + getwchar=MSVCRT_getwchar @1442 + is_wctype=ntdll.iswctype @1443 + isalnum=MSVCRT_isalnum @1444 + isalpha=MSVCRT_isalpha @1445 + iscntrl=MSVCRT_iscntrl @1446 + isdigit=MSVCRT_isdigit @1447 + isgraph=MSVCRT_isgraph @1448 + isleadbyte=MSVCRT_isleadbyte @1449 + islower=MSVCRT_islower @1450 + isprint=MSVCRT_isprint @1451 + ispunct=MSVCRT_ispunct @1452 + isspace=MSVCRT_isspace @1453 + isupper=MSVCRT_isupper @1454 + iswalnum=MSVCRT_iswalnum @1455 + iswalpha=ntdll.iswalpha @1456 + iswascii=MSVCRT_iswascii @1457 + iswcntrl=MSVCRT_iswcntrl @1458 + iswctype=ntdll.iswctype @1459 + iswdigit=MSVCRT_iswdigit @1460 + iswgraph=MSVCRT_iswgraph @1461 + iswlower=MSVCRT_iswlower @1462 + iswprint=MSVCRT_iswprint @1463 + iswpunct=MSVCRT_iswpunct @1464 + iswspace=MSVCRT_iswspace @1465 + iswupper=MSVCRT_iswupper @1466 + iswxdigit=MSVCRT_iswxdigit @1467 + isxdigit=MSVCRT_isxdigit @1468 + labs=MSVCRT_labs @1469 + ldexp=MSVCRT_ldexp @1470 + ldiv=MSVCRT_ldiv @1471 + llabs=MSVCRT_llabs @1472 + lldiv=MSVCRT_lldiv @1473 + localeconv=MSVCRT_localeconv @1474 + log=MSVCRT_log @1475 + log10=MSVCRT_log10 @1476 + longjmp=MSVCRT_longjmp @1477 + malloc=MSVCRT_malloc @1478 + mblen=MSVCRT_mblen @1479 + mbrlen=MSVCRT_mbrlen @1480 + mbrtowc=MSVCRT_mbrtowc @1481 + mbsrtowcs=MSVCRT_mbsrtowcs @1482 + mbsrtowcs_s=MSVCRT_mbsrtowcs_s @1483 + mbstowcs=MSVCRT_mbstowcs @1484 + mbstowcs_s=MSVCRT__mbstowcs_s @1485 + mbtowc=MSVCRT_mbtowc @1486 + memchr=MSVCRT_memchr @1487 + memcmp=MSVCRT_memcmp @1488 + memcpy=MSVCRT_memcpy @1489 + memcpy_s=MSVCRT_memcpy_s @1490 + memmove=MSVCRT_memmove @1491 + memmove_s=MSVCRT_memmove_s @1492 + memset=MSVCRT_memset @1493 + modf=MSVCRT_modf @1494 + perror=MSVCRT_perror @1495 + pow=MSVCRT_pow @1496 + printf=MSVCRT_printf @1497 + printf_s=MSVCRT_printf_s @1498 + putc=MSVCRT_putc @1499 + putchar=MSVCRT_putchar @1500 + puts=MSVCRT_puts @1501 + putwc=MSVCRT_fputwc @1502 + putwchar=MSVCRT__fputwchar @1503 + qsort=MSVCRT_qsort @1504 + qsort_s=MSVCRT_qsort_s @1505 + raise=MSVCRT_raise @1506 + rand=MSVCRT_rand @1507 + rand_s=MSVCRT_rand_s @1508 + realloc=MSVCRT_realloc @1509 + remove=MSVCRT_remove @1510 + rename=MSVCRT_rename @1511 + rewind=MSVCRT_rewind @1512 + scanf=MSVCRT_scanf @1513 + scanf_s=MSVCRT_scanf_s @1514 + setbuf=MSVCRT_setbuf @1515 + setlocale=MSVCRT_setlocale @1516 + setvbuf=MSVCRT_setvbuf @1517 + signal=MSVCRT_signal @1518 + sin=MSVCRT_sin @1519 + sinh=MSVCRT_sinh @1520 + sprintf=MSVCRT_sprintf @1521 + sprintf_s=MSVCRT_sprintf_s @1522 + sqrt=MSVCRT_sqrt @1523 + srand=MSVCRT_srand @1524 + sscanf=MSVCRT_sscanf @1525 + sscanf_s=MSVCRT_sscanf_s @1526 + strcat=ntdll.strcat @1527 + strcat_s=MSVCRT_strcat_s @1528 + strchr=MSVCRT_strchr @1529 + strcmp=MSVCRT_strcmp @1530 + strcoll=MSVCRT_strcoll @1531 + strcpy=MSVCRT_strcpy @1532 + strcpy_s=MSVCRT_strcpy_s @1533 + strcspn=MSVCRT_strcspn @1534 + strerror=MSVCRT_strerror @1535 + strerror_s=MSVCRT_strerror_s @1536 + strftime=MSVCRT_strftime @1537 + strlen=MSVCRT_strlen @1538 + strncat=MSVCRT_strncat @1539 + strncat_s=MSVCRT_strncat_s @1540 + strncmp=MSVCRT_strncmp @1541 + strncpy=MSVCRT_strncpy @1542 + strncpy_s=MSVCRT_strncpy_s @1543 + strnlen=MSVCRT_strnlen @1544 + strpbrk=MSVCRT_strpbrk @1545 + strrchr=MSVCRT_strrchr @1546 + strspn=ntdll.strspn @1547 + strstr=MSVCRT_strstr @1548 + strtod=MSVCRT_strtod @1549 + strtok=MSVCRT_strtok @1550 + strtok_s=MSVCRT_strtok_s @1551 + strtol=MSVCRT_strtol @1552 + strtoul=MSVCRT_strtoul @1553 + strxfrm=MSVCRT_strxfrm @1554 + swprintf_s=MSVCRT_swprintf_s @1555 + swscanf=MSVCRT_swscanf @1556 + swscanf_s=MSVCRT_swscanf_s @1557 + system=MSVCRT_system @1558 + tan=MSVCRT_tan @1559 + tanh=MSVCRT_tanh @1560 + tmpfile=MSVCRT_tmpfile @1561 + tmpfile_s=MSVCRT_tmpfile_s @1562 + tmpnam=MSVCRT_tmpnam @1563 + tmpnam_s=MSVCRT_tmpnam_s @1564 + tolower=MSVCRT_tolower @1565 + toupper=MSVCRT_toupper @1566 + towlower=MSVCRT_towlower @1567 + towupper=MSVCRT_towupper @1568 + ungetc=MSVCRT_ungetc @1569 + ungetwc=MSVCRT_ungetwc @1570 + vfprintf=MSVCRT_vfprintf @1571 + vfprintf_s=MSVCRT_vfprintf_s @1572 + vfwprintf=MSVCRT_vfwprintf @1573 + vfwprintf_s=MSVCRT_vfwprintf_s @1574 + vprintf=MSVCRT_vprintf @1575 + vprintf_s=MSVCRT_vprintf_s @1576 + vsprintf=MSVCRT_vsprintf @1577 + vsprintf_s=MSVCRT_vsprintf_s @1578 + vswprintf_s=MSVCRT_vswprintf_s @1579 + vwprintf=MSVCRT_vwprintf @1580 + vwprintf_s=MSVCRT_vwprintf_s @1581 + wcrtomb=MSVCRT_wcrtomb @1582 + wcrtomb_s@0 @1583 PRIVATE + wcscat=ntdll.wcscat @1584 + wcscat_s=MSVCRT_wcscat_s @1585 + wcschr=MSVCRT_wcschr @1586 + wcscmp=MSVCRT_wcscmp @1587 + wcscoll=MSVCRT_wcscoll @1588 + wcscpy=ntdll.wcscpy @1589 + wcscpy_s=MSVCRT_wcscpy_s @1590 + wcscspn=ntdll.wcscspn @1591 + wcsftime=MSVCRT_wcsftime @1592 + wcslen=MSVCRT_wcslen @1593 + wcsncat=ntdll.wcsncat @1594 + wcsncat_s=MSVCRT_wcsncat_s @1595 + wcsncmp=MSVCRT_wcsncmp @1596 + wcsncpy=MSVCRT_wcsncpy @1597 + wcsncpy_s=MSVCRT_wcsncpy_s @1598 + wcsnlen=MSVCRT_wcsnlen @1599 + wcspbrk=MSVCRT_wcspbrk @1600 + wcsrchr=MSVCRT_wcsrchr @1601 + wcsrtombs=MSVCRT_wcsrtombs @1602 + wcsrtombs_s=MSVCRT_wcsrtombs_s @1603 + wcsspn=ntdll.wcsspn @1604 + wcsstr=MSVCRT_wcsstr @1605 + wcstod=MSVCRT_wcstod @1606 + wcstok=MSVCRT_wcstok @1607 + wcstok_s=MSVCRT_wcstok_s @1608 + wcstol=MSVCRT_wcstol @1609 + wcstombs=MSVCRT_wcstombs @1610 + wcstombs_s=MSVCRT_wcstombs_s @1611 + wcstoul=MSVCRT_wcstoul @1612 + wcsxfrm=MSVCRT_wcsxfrm @1613 + wctob=MSVCRT_wctob @1614 + wctomb=MSVCRT_wctomb @1615 + wctomb_s=MSVCRT_wctomb_s @1616 + wmemcpy_s @1617 + wmemmove_s @1618 + wprintf=MSVCRT_wprintf @1619 + wprintf_s=MSVCRT_wprintf_s @1620 + wscanf=MSVCRT_wscanf @1621 + wscanf_s=MSVCRT_wscanf_s @1622 diff --git a/lib/wine/libmsvcr110.def b/lib/wine/libmsvcr110.def new file mode 100644 index 0000000..23cff0b --- /dev/null +++ b/lib/wine/libmsvcr110.def @@ -0,0 +1,1717 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/msvcr110/msvcr110.spec; do not edit! + +LIBRARY msvcr110.dll + +EXPORTS + ??0?$_SpinWait@$00@details@Concurrency@@QAE@P6AXXZ@Z@8=__thiscall_SpinWait_ctor_yield @1 + ??0?$_SpinWait@$0A@@details@Concurrency@@QAE@P6AXXZ@Z@8=__thiscall_SpinWait_ctor @2 + ??0SchedulerPolicy@Concurrency@@QAA@IZZ=SchedulerPolicy_ctor_policies @3 + ??0SchedulerPolicy@Concurrency@@QAE@ABV01@@Z@8=__thiscall_SchedulerPolicy_copy_ctor @4 + ??0SchedulerPolicy@Concurrency@@QAE@XZ@4=__thiscall_SchedulerPolicy_ctor @5 + ??0_CancellationTokenState@details@Concurrency@@AAE@XZ@0 @6 PRIVATE + ??0_Cancellation_beacon@details@Concurrency@@QAE@XZ@0 @7 PRIVATE + ??0_Condition_variable@details@Concurrency@@QAE@XZ@4=__thiscall__Condition_variable_ctor @8 + ??0_Context@details@Concurrency@@QAE@PAVContext@2@@Z@0 @9 PRIVATE + ??0_Interruption_exception@details@Concurrency@@QAE@PBD@Z@0 @10 PRIVATE + ??0_Interruption_exception@details@Concurrency@@QAE@XZ@0 @11 PRIVATE + ??0_NonReentrantBlockingLock@details@Concurrency@@QAE@XZ@4=__thiscall__ReentrantBlockingLock_ctor @12 + ??0_NonReentrantPPLLock@details@Concurrency@@QAE@XZ@4=__thiscall__NonReentrantPPLLock_ctor @13 + ??0_ReaderWriterLock@details@Concurrency@@QAE@XZ@0 @14 PRIVATE + ??0_ReentrantBlockingLock@details@Concurrency@@QAE@XZ@4=__thiscall__ReentrantBlockingLock_ctor @15 + ??0_ReentrantLock@details@Concurrency@@QAE@XZ@0 @16 PRIVATE + ??0_ReentrantPPLLock@details@Concurrency@@QAE@XZ@4=__thiscall__ReentrantPPLLock_ctor @17 + ??0_Scheduler@details@Concurrency@@QAE@PAVScheduler@2@@Z@8=__thiscall__Scheduler_ctor_sched @18 + ??0_Scoped_lock@_NonReentrantPPLLock@details@Concurrency@@QAE@AAV123@@Z@4=__thiscall__NonReentrantPPLLock__Scoped_lock_ctor @19 + ??0_Scoped_lock@_ReentrantPPLLock@details@Concurrency@@QAE@AAV123@@Z@8=__thiscall__ReentrantPPLLock__Scoped_lock_ctor @20 + ??0_SpinLock@details@Concurrency@@QAE@ACJ@Z@0 @21 PRIVATE + ??0_StructuredTaskCollection@details@Concurrency@@QAE@PAV_CancellationTokenState@12@@Z@0 @22 PRIVATE + ??0_TaskCollection@details@Concurrency@@QAE@PAV_CancellationTokenState@12@@Z@0 @23 PRIVATE + ??0_TaskCollection@details@Concurrency@@QAE@XZ@0 @24 PRIVATE + ??0_Timer@details@Concurrency@@IAE@I_N@Z@0 @25 PRIVATE + ??0__non_rtti_object@std@@QAE@ABV01@@Z@8=__thiscall_MSVCRT___non_rtti_object_copy_ctor @26 + ??0__non_rtti_object@std@@QAE@PBD@Z@8=__thiscall_MSVCRT___non_rtti_object_ctor @27 + ??0bad_cast@std@@AAE@PBQBD@Z@8=__thiscall_MSVCRT_bad_cast_ctor @28 + ??0bad_cast@std@@QAE@ABV01@@Z@8=__thiscall_MSVCRT_bad_cast_copy_ctor @29 + ??0bad_cast@std@@QAE@PBD@Z@8=__thiscall_MSVCRT_bad_cast_ctor_charptr @30 + ??0bad_target@Concurrency@@QAE@PBD@Z@0 @31 PRIVATE + ??0bad_target@Concurrency@@QAE@XZ@0 @32 PRIVATE + ??0bad_typeid@std@@QAE@ABV01@@Z@8=__thiscall_MSVCRT_bad_typeid_copy_ctor @33 + ??0bad_typeid@std@@QAE@PBD@Z@8=__thiscall_MSVCRT_bad_typeid_ctor @34 + ??0context_self_unblock@Concurrency@@QAE@PBD@Z@0 @35 PRIVATE + ??0context_self_unblock@Concurrency@@QAE@XZ@0 @36 PRIVATE + ??0context_unblock_unbalanced@Concurrency@@QAE@PBD@Z@0 @37 PRIVATE + ??0context_unblock_unbalanced@Concurrency@@QAE@XZ@0 @38 PRIVATE + ??0critical_section@Concurrency@@QAE@XZ@4=__thiscall_critical_section_ctor @39 + ??0default_scheduler_exists@Concurrency@@QAE@PBD@Z@0 @40 PRIVATE + ??0default_scheduler_exists@Concurrency@@QAE@XZ@0 @41 PRIVATE + ??0event@Concurrency@@QAE@XZ@4=__thiscall_event_ctor @42 + ??0exception@std@@QAE@ABQBD@Z@8=__thiscall_MSVCRT_exception_ctor @43 + ??0exception@std@@QAE@ABQBDH@Z@12=__thiscall_MSVCRT_exception_ctor_noalloc @44 + ??0exception@std@@QAE@ABV01@@Z@8=__thiscall_MSVCRT_exception_copy_ctor @45 + ??0exception@std@@QAE@XZ@4=__thiscall_MSVCRT_exception_default_ctor @46 + ??0improper_lock@Concurrency@@QAE@PBD@Z@8=__thiscall_improper_lock_ctor_str @47 + ??0improper_lock@Concurrency@@QAE@XZ@4=__thiscall_improper_lock_ctor @48 + ??0improper_scheduler_attach@Concurrency@@QAE@PBD@Z@8=__thiscall_improper_scheduler_attach_ctor_str @49 + ??0improper_scheduler_attach@Concurrency@@QAE@XZ@4=__thiscall_improper_scheduler_attach_ctor @50 + ??0improper_scheduler_detach@Concurrency@@QAE@PBD@Z@8=__thiscall_improper_scheduler_detach_ctor_str @51 + ??0improper_scheduler_detach@Concurrency@@QAE@XZ@4=__thiscall_improper_scheduler_detach_ctor @52 + ??0improper_scheduler_reference@Concurrency@@QAE@PBD@Z@0 @53 PRIVATE + ??0improper_scheduler_reference@Concurrency@@QAE@XZ@0 @54 PRIVATE + ??0invalid_link_target@Concurrency@@QAE@PBD@Z@0 @55 PRIVATE + ??0invalid_link_target@Concurrency@@QAE@XZ@0 @56 PRIVATE + ??0invalid_multiple_scheduling@Concurrency@@QAE@PBD@Z@0 @57 PRIVATE + ??0invalid_multiple_scheduling@Concurrency@@QAE@XZ@0 @58 PRIVATE + ??0invalid_operation@Concurrency@@QAE@PBD@Z@0 @59 PRIVATE + ??0invalid_operation@Concurrency@@QAE@XZ@0 @60 PRIVATE + ??0invalid_oversubscribe_operation@Concurrency@@QAE@PBD@Z@0 @61 PRIVATE + ??0invalid_oversubscribe_operation@Concurrency@@QAE@XZ@0 @62 PRIVATE + ??0invalid_scheduler_policy_key@Concurrency@@QAE@PBD@Z@8=__thiscall_invalid_scheduler_policy_key_ctor_str @63 + ??0invalid_scheduler_policy_key@Concurrency@@QAE@XZ@4=__thiscall_invalid_scheduler_policy_key_ctor @64 + ??0invalid_scheduler_policy_thread_specification@Concurrency@@QAE@PBD@Z@8=__thiscall_invalid_scheduler_policy_thread_specification_ctor_str @65 + ??0invalid_scheduler_policy_thread_specification@Concurrency@@QAE@XZ@4=__thiscall_invalid_scheduler_policy_thread_specification_ctor @66 + ??0invalid_scheduler_policy_value@Concurrency@@QAE@PBD@Z@8=__thiscall_invalid_scheduler_policy_value_ctor_str @67 + ??0invalid_scheduler_policy_value@Concurrency@@QAE@XZ@4=__thiscall_invalid_scheduler_policy_value_ctor @68 + ??0message_not_found@Concurrency@@QAE@PBD@Z@0 @69 PRIVATE + ??0message_not_found@Concurrency@@QAE@XZ@0 @70 PRIVATE + ??0missing_wait@Concurrency@@QAE@PBD@Z@0 @71 PRIVATE + ??0missing_wait@Concurrency@@QAE@XZ@0 @72 PRIVATE + ??0nested_scheduler_missing_detach@Concurrency@@QAE@PBD@Z@0 @73 PRIVATE + ??0nested_scheduler_missing_detach@Concurrency@@QAE@XZ@0 @74 PRIVATE + ??0operation_timed_out@Concurrency@@QAE@PBD@Z@0 @75 PRIVATE + ??0operation_timed_out@Concurrency@@QAE@XZ@0 @76 PRIVATE + ??0reader_writer_lock@Concurrency@@QAE@XZ@4=__thiscall_reader_writer_lock_ctor @77 + ??0scheduler_not_attached@Concurrency@@QAE@PBD@Z@0 @78 PRIVATE + ??0scheduler_not_attached@Concurrency@@QAE@XZ@0 @79 PRIVATE + ??0scheduler_resource_allocation_error@Concurrency@@QAE@J@Z@8=__thiscall_scheduler_resource_allocation_error_ctor @80 + ??0scheduler_resource_allocation_error@Concurrency@@QAE@PBDJ@Z@12=__thiscall_scheduler_resource_allocation_error_ctor_name @81 + ??0scheduler_worker_creation_error@Concurrency@@QAE@J@Z@0 @82 PRIVATE + ??0scheduler_worker_creation_error@Concurrency@@QAE@PBDJ@Z@0 @83 PRIVATE + ??0scoped_lock@critical_section@Concurrency@@QAE@AAV12@@Z@8=__thiscall_critical_section_scoped_lock_ctor @84 + ??0scoped_lock@reader_writer_lock@Concurrency@@QAE@AAV12@@Z@8=__thiscall_reader_writer_lock_scoped_lock_ctor @85 + ??0scoped_lock_read@reader_writer_lock@Concurrency@@QAE@AAV12@@Z@8=__thiscall_reader_writer_lock_scoped_lock_read_ctor @86 + ??0task_canceled@Concurrency@@QAE@PBD@Z@0 @87 PRIVATE + ??0task_canceled@Concurrency@@QAE@XZ@0 @88 PRIVATE + ??0unsupported_os@Concurrency@@QAE@PBD@Z@0 @89 PRIVATE + ??0unsupported_os@Concurrency@@QAE@XZ@0 @90 PRIVATE + ??1SchedulerPolicy@Concurrency@@QAE@XZ@4=__thiscall_SchedulerPolicy_dtor @91 + ??1_CancellationTokenState@details@Concurrency@@UAE@XZ@0 @92 PRIVATE + ??1_Cancellation_beacon@details@Concurrency@@QAE@XZ@0 @93 PRIVATE + ??1_Condition_variable@details@Concurrency@@QAE@XZ@4=__thiscall__Condition_variable_dtor @94 + ??1_NonReentrantBlockingLock@details@Concurrency@@QAE@XZ@4=__thiscall__ReentrantBlockingLock_dtor @95 + ??1_ReentrantBlockingLock@details@Concurrency@@QAE@XZ@4=__thiscall__ReentrantBlockingLock_dtor @96 + ??1_Scoped_lock@_NonReentrantPPLLock@details@Concurrency@@QAE@XZ@4=__thiscall__NonReentrantPPLLock__Scoped_lock_dtor @97 + ??1_Scoped_lock@_ReentrantPPLLock@details@Concurrency@@QAE@XZ@4=__thiscall__ReentrantPPLLock__Scoped_lock_dtor @98 + ??1_SpinLock@details@Concurrency@@QAE@XZ@0 @99 PRIVATE + ??1_TaskCollection@details@Concurrency@@QAE@XZ@0 @100 PRIVATE + ??1_Timer@details@Concurrency@@MAE@XZ@0 @101 PRIVATE + ??1__non_rtti_object@std@@UAE@XZ@4=__thiscall_MSVCRT___non_rtti_object_dtor @102 + ??1bad_cast@std@@UAE@XZ@4=__thiscall_MSVCRT_bad_cast_dtor @103 + ??1bad_typeid@std@@UAE@XZ@4=__thiscall_MSVCRT_bad_typeid_dtor @104 + ??1critical_section@Concurrency@@QAE@XZ@4=__thiscall_critical_section_dtor @105 + ??1event@Concurrency@@QAE@XZ@4=__thiscall_event_dtor @106 + ??1exception@std@@UAE@XZ@4=__thiscall_MSVCRT_exception_dtor @107 + ??1reader_writer_lock@Concurrency@@QAE@XZ@4=__thiscall_reader_writer_lock_dtor @108 + ??1scoped_lock@critical_section@Concurrency@@QAE@XZ@4=__thiscall_critical_section_scoped_lock_dtor @109 + ??1scoped_lock@reader_writer_lock@Concurrency@@QAE@XZ@4=__thiscall_reader_writer_lock_scoped_lock_dtor @110 + ??1scoped_lock_read@reader_writer_lock@Concurrency@@QAE@XZ@4=__thiscall_reader_writer_lock_scoped_lock_read_dtor @111 + ??1type_info@@UAE@XZ@4=__thiscall_MSVCRT_type_info_dtor @112 + ??2@YAPAXI@Z=MSVCRT_operator_new @113 + ??2@YAPAXIHPBDH@Z=MSVCRT_operator_new_dbg @114 + ??3@YAXPAX@Z=MSVCRT_operator_delete @115 + ??3@YAXPAXHPBDH@Z@0 @116 PRIVATE + ??4?$_SpinWait@$00@details@Concurrency@@QAEAAV012@ABV012@@Z@0 @117 PRIVATE + ??4?$_SpinWait@$0A@@details@Concurrency@@QAEAAV012@ABV012@@Z@0 @118 PRIVATE + ??4SchedulerPolicy@Concurrency@@QAEAAV01@ABV01@@Z@8=__thiscall_SchedulerPolicy_op_assign @119 + ??4__non_rtti_object@std@@QAEAAV01@ABV01@@Z@8=__thiscall_MSVCRT___non_rtti_object_opequals @120 + ??4bad_cast@std@@QAEAAV01@ABV01@@Z@8=__thiscall_MSVCRT_bad_cast_opequals @121 + ??4bad_typeid@std@@QAEAAV01@ABV01@@Z@8=__thiscall_MSVCRT_bad_typeid_opequals @122 + ??4exception@std@@QAEAAV01@ABV01@@Z@8=__thiscall_MSVCRT_exception_opequals @123 + ??8type_info@@QBE_NABV0@@Z@8=__thiscall_MSVCRT_type_info_opequals_equals @124 + ??9type_info@@QBE_NABV0@@Z@8=__thiscall_MSVCRT_type_info_opnot_equals @125 + ??_7__non_rtti_object@std@@6B@=MSVCRT___non_rtti_object_vtable @126 DATA + ??_7bad_cast@std@@6B@=MSVCRT_bad_cast_vtable @127 DATA + ??_7bad_typeid@std@@6B@=MSVCRT_bad_typeid_vtable @128 DATA + ??_7exception@std@@6B@=MSVCRT_exception_vtable @129 DATA + ??_F?$_SpinWait@$00@details@Concurrency@@QAEXXZ@4=__thiscall_SpinWait_dtor @130 + ??_F?$_SpinWait@$0A@@details@Concurrency@@QAEXXZ@4=__thiscall_SpinWait_dtor @131 + ??_F_Context@details@Concurrency@@QAEXXZ@0 @132 PRIVATE + ??_F_Scheduler@details@Concurrency@@QAEXXZ@4=__thiscall__Scheduler_ctor @133 + ??_Fbad_cast@std@@QAEXXZ@4=__thiscall_MSVCRT_bad_cast_default_ctor @134 + ??_Fbad_typeid@std@@QAEXXZ@4=__thiscall_MSVCRT_bad_typeid_default_ctor @135 + ??_U@YAPAXI@Z=MSVCRT_operator_new @136 + ??_U@YAPAXIHPBDH@Z=MSVCRT_operator_new_dbg @137 + ??_V@YAXPAX@Z=MSVCRT_operator_delete @138 + ??_V@YAXPAXHPBDH@Z@0 @139 PRIVATE + ?Alloc@Concurrency@@YAPAXI@Z=Concurrency_Alloc @140 + ?Block@Context@Concurrency@@SAXXZ=Context_Block @141 + ?Create@CurrentScheduler@Concurrency@@SAXABVSchedulerPolicy@2@@Z=CurrentScheduler_Create @142 + ?Create@Scheduler@Concurrency@@SAPAV12@ABVSchedulerPolicy@2@@Z=Scheduler_Create @143 + ?CreateResourceManager@Concurrency@@YAPAUIResourceManager@1@XZ@0 @144 PRIVATE + ?CreateScheduleGroup@CurrentScheduler@Concurrency@@SAPAVScheduleGroup@2@AAVlocation@2@@Z=CurrentScheduler_CreateScheduleGroup_loc @145 + ?CreateScheduleGroup@CurrentScheduler@Concurrency@@SAPAVScheduleGroup@2@XZ=CurrentScheduler_CreateScheduleGroup @146 + ?CurrentContext@Context@Concurrency@@SAPAV12@XZ=Context_CurrentContext @147 + ?Detach@CurrentScheduler@Concurrency@@SAXXZ=CurrentScheduler_Detach @148 + ?DisableTracing@Concurrency@@YAJXZ@0 @149 PRIVATE + ?EnableTracing@Concurrency@@YAJXZ@0 @150 PRIVATE + ?Free@Concurrency@@YAXPAX@Z=Concurrency_Free @151 + ?Get@CurrentScheduler@Concurrency@@SAPAVScheduler@2@XZ=CurrentScheduler_Get @152 + ?GetExecutionContextId@Concurrency@@YAIXZ@0 @153 PRIVATE + ?GetNumberOfVirtualProcessors@CurrentScheduler@Concurrency@@SAIXZ=CurrentScheduler_GetNumberOfVirtualProcessors @154 + ?GetOSVersion@Concurrency@@YA?AW4OSVersion@IResourceManager@1@XZ@0 @155 PRIVATE + ?GetPolicy@CurrentScheduler@Concurrency@@SA?AVSchedulerPolicy@2@XZ=CurrentScheduler_GetPolicy @156 + ?GetPolicyValue@SchedulerPolicy@Concurrency@@QBEIW4PolicyElementKey@2@@Z@8=__thiscall_SchedulerPolicy_GetPolicyValue @157 + ?GetProcessorCount@Concurrency@@YAIXZ@0 @158 PRIVATE + ?GetProcessorNodeCount@Concurrency@@YAIXZ@0 @159 PRIVATE + ?GetSchedulerId@Concurrency@@YAIXZ@0 @160 PRIVATE + ?GetSharedTimerQueue@details@Concurrency@@YAPAXXZ@0 @161 PRIVATE + ?Id@Context@Concurrency@@SAIXZ=Context_Id @162 + ?Id@CurrentScheduler@Concurrency@@SAIXZ=CurrentScheduler_Id @163 + ?IsAvailableLocation@CurrentScheduler@Concurrency@@SA_NABVlocation@2@@Z=CurrentScheduler_IsAvailableLocation @164 + ?IsCurrentTaskCollectionCanceling@Context@Concurrency@@SA_NXZ=Context_IsCurrentTaskCollectionCanceling @165 + ?Log2@details@Concurrency@@YAKI@Z@0 @166 PRIVATE + ?Oversubscribe@Context@Concurrency@@SAX_N@Z=Context_Oversubscribe @167 + ?RegisterShutdownEvent@CurrentScheduler@Concurrency@@SAXPAX@Z=CurrentScheduler_RegisterShutdownEvent @168 + ?ResetDefaultSchedulerPolicy@Scheduler@Concurrency@@SAXXZ=Scheduler_ResetDefaultSchedulerPolicy @169 + ?ScheduleGroupId@Context@Concurrency@@SAIXZ=Context_ScheduleGroupId @170 + ?ScheduleTask@CurrentScheduler@Concurrency@@SAXP6AXPAX@Z0@Z=CurrentScheduler_ScheduleTask @171 + ?ScheduleTask@CurrentScheduler@Concurrency@@SAXP6AXPAX@Z0AAVlocation@2@@Z=CurrentScheduler_ScheduleTask_loc @172 + ?SetConcurrencyLimits@SchedulerPolicy@Concurrency@@QAEXII@Z@12=__thiscall_SchedulerPolicy_SetConcurrencyLimits @173 + ?SetDefaultSchedulerPolicy@Scheduler@Concurrency@@SAXABVSchedulerPolicy@2@@Z=Scheduler_SetDefaultSchedulerPolicy @174 + ?SetPolicyValue@SchedulerPolicy@Concurrency@@QAEIW4PolicyElementKey@2@I@Z@12=__thiscall_SchedulerPolicy_SetPolicyValue @175 + ?VirtualProcessorId@Context@Concurrency@@SAIXZ=Context_VirtualProcessorId @176 + ?Yield@Context@Concurrency@@SAXXZ=Context_Yield @177 + ?_Abort@_StructuredTaskCollection@details@Concurrency@@AAEXXZ@0 @178 PRIVATE + ?_Acquire@_NonReentrantBlockingLock@details@Concurrency@@QAEXXZ@4=__thiscall__ReentrantBlockingLock__Acquire @179 + ?_Acquire@_NonReentrantPPLLock@details@Concurrency@@QAEXPAX@Z@8=__thiscall__NonReentrantPPLLock__Acquire @180 + ?_Acquire@_ReentrantBlockingLock@details@Concurrency@@QAEXXZ@4=__thiscall__ReentrantBlockingLock__Acquire @181 + ?_Acquire@_ReentrantLock@details@Concurrency@@QAEXXZ@0 @182 PRIVATE + ?_Acquire@_ReentrantPPLLock@details@Concurrency@@QAEXPAX@Z@8=__thiscall__ReentrantPPLLock__Acquire @183 + ?_AcquireRead@_ReaderWriterLock@details@Concurrency@@QAEXXZ@0 @184 PRIVATE + ?_AcquireWrite@_ReaderWriterLock@details@Concurrency@@QAEXXZ@0 @185 PRIVATE + ?_Cancel@_CancellationTokenState@details@Concurrency@@QAEXXZ@0 @186 PRIVATE + ?_Cancel@_StructuredTaskCollection@details@Concurrency@@QAEXXZ@0 @187 PRIVATE + ?_Cancel@_TaskCollection@details@Concurrency@@QAEXXZ@0 @188 PRIVATE + ?_CheckTaskCollection@_UnrealizedChore@details@Concurrency@@IAEXXZ@0 @189 PRIVATE + ?_CleanupToken@_StructuredTaskCollection@details@Concurrency@@AAEXXZ@0 @190 PRIVATE + ?_ConcRT_Assert@details@Concurrency@@YAXPBD0H@Z@0 @191 PRIVATE + ?_ConcRT_CoreAssert@details@Concurrency@@YAXPBD0H@Z@0 @192 PRIVATE + ?_ConcRT_DumpMessage@details@Concurrency@@YAXPB_WZZ@0 @193 PRIVATE + ?_ConcRT_Trace@details@Concurrency@@YAXHPB_WZZ@0 @194 PRIVATE + ?_Confirm_cancel@_Cancellation_beacon@details@Concurrency@@QAE_NXZ@0 @195 PRIVATE + ?_Copy_str@exception@std@@AAEXPBD@Z@0 @196 PRIVATE + ?_CurrentContext@_Context@details@Concurrency@@SA?AV123@XZ@0 @197 PRIVATE + ?_Current_node@location@Concurrency@@SA?AV12@XZ@0 @198 PRIVATE + ?_DeregisterCallback@_CancellationTokenState@details@Concurrency@@QAEXPAV_CancellationTokenRegistration@23@@Z@0 @199 PRIVATE + ?_Destroy@_AsyncTaskCollection@details@Concurrency@@EAEXXZ@0 @200 PRIVATE + ?_Destroy@_CancellationTokenState@details@Concurrency@@EAEXXZ@0 @201 PRIVATE + ?_DoYield@?$_SpinWait@$00@details@Concurrency@@IAEXXZ@4=__thiscall_SpinWait__DoYield @202 + ?_DoYield@?$_SpinWait@$0A@@details@Concurrency@@IAEXXZ@4=__thiscall_SpinWait__DoYield @203 + ?_Get@_CurrentScheduler@details@Concurrency@@SA?AV_Scheduler@23@XZ=_CurrentScheduler__Get @204 + ?_GetConcRTTraceInfo@Concurrency@@YAPBU_CONCRT_TRACE_INFO@details@1@XZ@0 @205 PRIVATE + ?_GetConcurrency@details@Concurrency@@YAIXZ=_GetConcurrency @206 + ?_GetCurrentInlineDepth@_StackGuard@details@Concurrency@@CAAAIXZ@0 @207 PRIVATE + ?_GetNumberOfVirtualProcessors@_CurrentScheduler@details@Concurrency@@SAIXZ=_CurrentScheduler__GetNumberOfVirtualProcessors @208 + ?_GetScheduler@_Scheduler@details@Concurrency@@QAEPAVScheduler@3@XZ@4=__thiscall__Scheduler__GetScheduler @209 + ?_Id@_CurrentScheduler@details@Concurrency@@SAIXZ=_CurrentScheduler__Id @210 + ?_Invoke@_CancellationTokenRegistration@details@Concurrency@@AAEXXZ@0 @211 PRIVATE + ?_IsCanceling@_StructuredTaskCollection@details@Concurrency@@QAE_NXZ@0 @212 PRIVATE + ?_IsCanceling@_TaskCollection@details@Concurrency@@QAE_NXZ@0 @213 PRIVATE + ?_IsSynchronouslyBlocked@_Context@details@Concurrency@@QBE_NXZ@0 @214 PRIVATE + ?_Name_base@type_info@@CAPBDPBV1@PAU__type_info_node@@@Z@0 @215 PRIVATE + ?_Name_base_internal@type_info@@CAPBDPBV1@PAU__type_info_node@@@Z@0 @216 PRIVATE + ?_NewCollection@_AsyncTaskCollection@details@Concurrency@@SAPAV123@PAV_CancellationTokenState@23@@Z@0 @217 PRIVATE + ?_NewTokenState@_CancellationTokenState@details@Concurrency@@SAPAV123@XZ@0 @218 PRIVATE + ?_NumberOfSpins@?$_SpinWait@$00@details@Concurrency@@IAEKXZ@4=__thiscall_SpinWait__NumberOfSpins @219 + ?_NumberOfSpins@?$_SpinWait@$0A@@details@Concurrency@@IAEKXZ@4=__thiscall_SpinWait__NumberOfSpins @220 + ?_Oversubscribe@_Context@details@Concurrency@@SAX_N@Z@0 @221 PRIVATE + ?_Reference@_Scheduler@details@Concurrency@@QAEIXZ@4=__thiscall__Scheduler__Reference @222 + ?_RegisterCallback@_CancellationTokenState@details@Concurrency@@QAEPAV_CancellationTokenRegistration@23@P6AXPAX@Z0H@Z@0 @223 PRIVATE + ?_RegisterCallback@_CancellationTokenState@details@Concurrency@@QAEXPAV_CancellationTokenRegistration@23@@Z@0 @224 PRIVATE + ?_Release@_NonReentrantBlockingLock@details@Concurrency@@QAEXXZ@4=__thiscall__ReentrantBlockingLock__Release @225 + ?_Release@_NonReentrantPPLLock@details@Concurrency@@QAEXXZ@4=__thiscall__NonReentrantPPLLock__Release @226 + ?_Release@_ReentrantBlockingLock@details@Concurrency@@QAEXXZ@4=__thiscall__ReentrantBlockingLock__Release @227 + ?_Release@_ReentrantLock@details@Concurrency@@QAEXXZ@0 @228 PRIVATE + ?_Release@_ReentrantPPLLock@details@Concurrency@@QAEXXZ@4=__thiscall__ReentrantPPLLock__Release @229 + ?_Release@_Scheduler@details@Concurrency@@QAEIXZ@4=__thiscall__Scheduler__Release @230 + ?_ReleaseRead@_ReaderWriterLock@details@Concurrency@@QAEXXZ@0 @231 PRIVATE + ?_ReleaseWrite@_ReaderWriterLock@details@Concurrency@@QAEXXZ@0 @232 PRIVATE + ?_ReportUnobservedException@details@Concurrency@@YAXXZ@0 @233 PRIVATE + ?_Reset@?$_SpinWait@$00@details@Concurrency@@IAEXXZ@4=__thiscall_SpinWait__Reset @234 + ?_Reset@?$_SpinWait@$0A@@details@Concurrency@@IAEXXZ@4=__thiscall_SpinWait__Reset @235 + ?_RunAndWait@_StructuredTaskCollection@details@Concurrency@@QAG?AW4_TaskCollectionStatus@23@PAV_UnrealizedChore@23@@Z@0 @236 PRIVATE + ?_RunAndWait@_TaskCollection@details@Concurrency@@QAG?AW4_TaskCollectionStatus@23@PAV_UnrealizedChore@23@@Z@0 @237 PRIVATE + ?_Schedule@_StructuredTaskCollection@details@Concurrency@@QAEXPAV_UnrealizedChore@23@@Z@0 @238 PRIVATE + ?_Schedule@_StructuredTaskCollection@details@Concurrency@@QAEXPAV_UnrealizedChore@23@PAVlocation@3@@Z@0 @239 PRIVATE + ?_Schedule@_TaskCollection@details@Concurrency@@QAEXPAV_UnrealizedChore@23@@Z@0 @240 PRIVATE + ?_Schedule@_TaskCollection@details@Concurrency@@QAEXPAV_UnrealizedChore@23@PAVlocation@3@@Z@0 @241 PRIVATE + ?_ScheduleTask@_CurrentScheduler@details@Concurrency@@SAXP6AXPAX@Z0@Z=_CurrentScheduler__ScheduleTask @242 + ?_SetSpinCount@?$_SpinWait@$00@details@Concurrency@@QAEXI@Z@8=__thiscall_SpinWait__SetSpinCount @243 + ?_SetSpinCount@?$_SpinWait@$0A@@details@Concurrency@@QAEXI@Z@8=__thiscall_SpinWait__SetSpinCount @244 + ?_SetUnobservedExceptionHandler@details@Concurrency@@YAXP6AXXZ@Z@0 @245 PRIVATE + ?_ShouldSpinAgain@?$_SpinWait@$00@details@Concurrency@@IAE_NXZ@4=__thiscall_SpinWait__ShouldSpinAgain @246 + ?_ShouldSpinAgain@?$_SpinWait@$0A@@details@Concurrency@@IAE_NXZ@4=__thiscall_SpinWait__ShouldSpinAgain @247 + ?_SpinOnce@?$_SpinWait@$00@details@Concurrency@@QAE_NXZ@4=__thiscall_SpinWait__SpinOnce @248 + ?_SpinOnce@?$_SpinWait@$0A@@details@Concurrency@@QAE_NXZ@4=__thiscall_SpinWait__SpinOnce @249 + ?_SpinYield@Context@Concurrency@@SAXXZ=Context__SpinYield @250 + ?_Start@_Timer@details@Concurrency@@IAEXXZ@0 @251 PRIVATE + ?_Stop@_Timer@details@Concurrency@@IAEXXZ@0 @252 PRIVATE + ?_Tidy@exception@std@@AAEXXZ@0 @253 PRIVATE + ?_Trace_agents@Concurrency@@YAXW4Agents_EventType@1@_JZZ=_Trace_agents @254 + ?_Trace_ppl_function@Concurrency@@YAXABU_GUID@@EW4ConcRT_EventType@1@@Z=Concurrency__Trace_ppl_function @255 + ?_TryAcquire@_NonReentrantBlockingLock@details@Concurrency@@QAE_NXZ@4=__thiscall__ReentrantBlockingLock__TryAcquire @256 + ?_TryAcquire@_ReentrantBlockingLock@details@Concurrency@@QAE_NXZ@4=__thiscall__ReentrantBlockingLock__TryAcquire @257 + ?_TryAcquire@_ReentrantLock@details@Concurrency@@QAE_NXZ@0 @258 PRIVATE + ?_TryAcquireWrite@_ReaderWriterLock@details@Concurrency@@QAE_NXZ@0 @259 PRIVATE + ?_Type_info_dtor@type_info@@CAXPAV1@@Z@0 @260 PRIVATE + ?_Type_info_dtor_internal@type_info@@CAXPAV1@@Z@0 @261 PRIVATE + ?_UnderlyingYield@details@Concurrency@@YAXXZ@0 @262 PRIVATE + ?_ValidateExecute@@YAHP6GHXZ@Z@0 @263 PRIVATE + ?_ValidateRead@@YAHPBXI@Z@0 @264 PRIVATE + ?_ValidateWrite@@YAHPAXI@Z@0 @265 PRIVATE + ?_Value@_SpinCount@details@Concurrency@@SAIXZ=SpinCount__Value @266 + ?_Yield@_Context@details@Concurrency@@SAXXZ@0 @267 PRIVATE + ?__ExceptionPtrAssign@@YAXPAXPBX@Z=__ExceptionPtrAssign @268 + ?__ExceptionPtrCompare@@YA_NPBX0@Z=__ExceptionPtrCompare @269 + ?__ExceptionPtrCopy@@YAXPAXPBX@Z=__ExceptionPtrCopy @270 + ?__ExceptionPtrCopyException@@YAXPAXPBX1@Z=__ExceptionPtrCopyException @271 + ?__ExceptionPtrCreate@@YAXPAX@Z=__ExceptionPtrCreate @272 + ?__ExceptionPtrCurrentException@@YAXPAX@Z=__ExceptionPtrCurrentException @273 + ?__ExceptionPtrDestroy@@YAXPAX@Z=__ExceptionPtrDestroy @274 + ?__ExceptionPtrRethrow@@YAXPBX@Z=__ExceptionPtrRethrow @275 + ?__ExceptionPtrSwap@@YAXPAX0@Z@0 @276 PRIVATE + ?__ExceptionPtrToBool@@YA_NPBX@Z=__ExceptionPtrToBool @277 + __uncaught_exception=MSVCRT___uncaught_exception @278 + ?_inconsistency@@YAXXZ@0 @279 PRIVATE + ?_invalid_parameter@@YAXPBG00II@Z=MSVCRT__invalid_parameter @280 + ?_is_exception_typeof@@YAHABVtype_info@@PAU_EXCEPTION_POINTERS@@@Z=_is_exception_typeof @281 + ?_name_internal_method@type_info@@QBEPBDPAU__type_info_node@@@Z@8=__thiscall_type_info_name_internal_method @282 + ?_open@@YAHPBDHH@Z=MSVCRT__open @283 + ?_query_new_handler@@YAP6AHI@ZXZ=MSVCRT__query_new_handler @284 + ?_query_new_mode@@YAHXZ=MSVCRT__query_new_mode @285 + ?_set_new_handler@@YAP6AHI@ZH@Z@0 @286 PRIVATE + ?_set_new_handler@@YAP6AHI@ZP6AHI@Z@Z=MSVCRT__set_new_handler @287 + ?_set_new_mode@@YAHH@Z=MSVCRT__set_new_mode @288 + ?_set_se_translator@@YAP6AXIPAU_EXCEPTION_POINTERS@@@ZH@Z@0 @289 PRIVATE + ?_set_se_translator@@YAP6AXIPAU_EXCEPTION_POINTERS@@@ZP6AXI0@Z@Z=MSVCRT__set_se_translator @290 + ?_sopen@@YAHPBDHHH@Z=MSVCRT__sopen @291 + ?_type_info_dtor_internal_method@type_info@@QAEXXZ@0 @292 PRIVATE + ?_wopen@@YAHPB_WHH@Z=MSVCRT__wopen @293 + ?_wsopen@@YAHPB_WHHH@Z=MSVCRT__wsopen @294 + ?before@type_info@@QBE_NABV1@@Z@8=__thiscall_MSVCRT_type_info_before @295 + ?current@location@Concurrency@@SA?AV12@XZ@0 @296 PRIVATE + ?from_numa_node@location@Concurrency@@SA?AV12@G@Z@0 @297 PRIVATE + ?get_error_code@scheduler_resource_allocation_error@Concurrency@@QBEJXZ@4=__thiscall_scheduler_resource_allocation_error_get_error_code @298 + ?lock@critical_section@Concurrency@@QAEXXZ@4=__thiscall_critical_section_lock @299 + ?lock@reader_writer_lock@Concurrency@@QAEXXZ@4=__thiscall_reader_writer_lock_lock @300 + ?lock_read@reader_writer_lock@Concurrency@@QAEXXZ@4=__thiscall_reader_writer_lock_lock_read @301 + ?name@type_info@@QBEPBDPAU__type_info_node@@@Z@8=__thiscall_type_info_name_internal_method @302 + ?native_handle@critical_section@Concurrency@@QAEAAV12@XZ@4=__thiscall_critical_section_native_handle @303 + ?notify_all@_Condition_variable@details@Concurrency@@QAEXXZ@4=__thiscall__Condition_variable_notify_all @304 + ?notify_one@_Condition_variable@details@Concurrency@@QAEXXZ@4=__thiscall__Condition_variable_notify_one @305 + ?raw_name@type_info@@QBEPBDXZ@4=__thiscall_MSVCRT_type_info_raw_name @306 + ?reset@event@Concurrency@@QAEXXZ@4=__thiscall_event_reset @307 + ?set@event@Concurrency@@QAEXXZ@4=__thiscall_event_set @308 + ?set_new_handler@@YAP6AXXZP6AXXZ@Z=MSVCRT_set_new_handler @309 + ?set_task_execution_resources@Concurrency@@YAXGPAU_GROUP_AFFINITY@@@Z@0 @310 PRIVATE + ?set_task_execution_resources@Concurrency@@YAXK@Z@0 @311 PRIVATE + ?set_terminate@@YAP6AXXZH@Z@0 @312 PRIVATE + ?set_terminate@@YAP6AXXZP6AXXZ@Z=MSVCRT_set_terminate @313 + ?set_unexpected@@YAP6AXXZH@Z@0 @314 PRIVATE + ?set_unexpected@@YAP6AXXZP6AXXZ@Z=MSVCRT_set_unexpected @315 + ?swprintf@@YAHPAGIPBGZZ=MSVCRT__snwprintf @316 + ?swprintf@@YAHPA_WIPB_WZZ=MSVCRT__snwprintf @317 + ?terminate@@YAXXZ=MSVCRT_terminate @318 + ?try_lock@critical_section@Concurrency@@QAE_NXZ@4=__thiscall_critical_section_try_lock @319 + ?try_lock@reader_writer_lock@Concurrency@@QAE_NXZ@4=__thiscall_reader_writer_lock_try_lock @320 + ?try_lock_for@critical_section@Concurrency@@QAE_NI@Z@8=__thiscall_critical_section_try_lock_for @321 + ?try_lock_read@reader_writer_lock@Concurrency@@QAE_NXZ@4=__thiscall_reader_writer_lock_try_lock_read @322 + ?unexpected@@YAXXZ=MSVCRT_unexpected @323 + ?unlock@critical_section@Concurrency@@QAEXXZ@4=__thiscall_critical_section_unlock @324 + ?unlock@reader_writer_lock@Concurrency@@QAEXXZ@4=__thiscall_reader_writer_lock_unlock @325 + ?vswprintf@@YAHPA_WIPB_WPAD@Z=MSVCRT_vsnwprintf @326 + ?wait@Concurrency@@YAXI@Z=Concurrency_wait @327 + ?wait@_Condition_variable@details@Concurrency@@QAEXAAVcritical_section@3@@Z@8=__thiscall__Condition_variable_wait @328 + ?wait@event@Concurrency@@QAEII@Z@4=__thiscall_event_wait @329 + ?wait_for@_Condition_variable@details@Concurrency@@QAE_NAAVcritical_section@3@I@Z@12=__thiscall__Condition_variable_wait_for @330 + ?wait_for_multiple@event@Concurrency@@SAIPAPAV12@I_NI@Z=event_wait_for_multiple @331 + ?what@exception@std@@UBEPBDXZ@4=__thiscall_MSVCRT_what_exception @332 + $I10_OUTPUT=MSVCRT_I10_OUTPUT @333 + _CIacos @334 + _CIasin @335 + _CIatan @336 + _CIatan2 @337 + _CIcos @338 + _CIcosh @339 + _CIexp @340 + _CIfmod @341 + _CIlog @342 + _CIlog10 @343 + _CIpow @344 + _CIsin @345 + _CIsinh @346 + _CIsqrt @347 + _CItan @348 + _CItanh @349 + _CRT_RTC_INIT @350 + _CRT_RTC_INITW @351 + _CreateFrameInfo @352 + _CxxThrowException@8 @353 + _EH_prolog @354 + _FindAndUnlinkFrame @355 + _Getdays @356 + _Getmonths @357 + _Gettnames @358 + _HUGE=MSVCRT__HUGE @359 DATA + _IsExceptionObjectToBeDestroyed @360 + _Lock_shared_ptr_spin_lock @361 + _NLG_Dispatch2@0 @362 PRIVATE + _NLG_Return@0 @363 PRIVATE + _NLG_Return2@0 @364 PRIVATE + _Strftime @365 + _Unlock_shared_ptr_spin_lock @366 + _W_Getdays @367 + _W_Getmonths @368 + _W_Gettnames @369 + _Wcsftime @370 + _XcptFilter @371 + __AdjustPointer @372 + __BuildCatchObject@0 @373 PRIVATE + __BuildCatchObjectHelper@0 @374 PRIVATE + __CppXcptFilter @375 + __CxxDetectRethrow @376 + __CxxExceptionFilter @377 + __CxxFrameHandler @378 + __CxxFrameHandler2=__CxxFrameHandler @379 + __CxxFrameHandler3=__CxxFrameHandler @380 + __CxxLongjmpUnwind@4 @381 + __CxxQueryExceptionSize @382 + __CxxRegisterExceptionObject @383 + __CxxUnregisterExceptionObject @384 + __DestructExceptionObject @385 + __FrameUnwindFilter@0 @386 PRIVATE + __RTCastToVoid=MSVCRT___RTCastToVoid @387 + __RTDynamicCast=MSVCRT___RTDynamicCast @388 + __RTtypeid=MSVCRT___RTtypeid @389 + __STRINGTOLD @390 + __STRINGTOLD_L@0 @391 PRIVATE + __TypeMatch@0 @392 PRIVATE + ___lc_codepage_func @393 + ___lc_collate_cp_func @394 + ___lc_locale_name_func @395 + ___mb_cur_max_func=MSVCRT____mb_cur_max_func @396 + ___mb_cur_max_l_func @397 + ___setlc_active_func=MSVCRT____setlc_active_func @398 + ___unguarded_readlc_active_add_func=MSVCRT____unguarded_readlc_active_add_func @399 + __argc=MSVCRT___argc @400 DATA + __argv=MSVCRT___argv @401 DATA + __badioinfo=MSVCRT___badioinfo @402 DATA + __clean_type_info_names_internal @403 + __control87_2 @404 + __create_locale=MSVCRT__create_locale @405 + __crtCompareStringA @406 + __crtCompareStringEx@0 @407 PRIVATE + __crtCompareStringW @408 + ___crtCreateSemaphoreExW@0 @409 PRIVATE + __crtEnumSystemLocalesEx@0 @410 PRIVATE + __crtFlsAlloc@0 @411 PRIVATE + __crtFlsFree@0 @412 PRIVATE + __crtFlsGetValue@0 @413 PRIVATE + __crtFlsSetValue@0 @414 PRIVATE + __crtGetDateFormatEx@0 @415 PRIVATE + __crtGetLocaleInfoEx @416 + __crtGetShowWindowMode=MSVCR110__crtGetShowWindowMode @417 + __crtGetTimeFormatEx@0 @418 PRIVATE + __crtGetUserDefaultLocaleName@0 @419 PRIVATE + __crtInitializeCriticalSectionEx=MSVCR110__crtInitializeCriticalSectionEx @420 + __crtIsPackagedApp@0 @421 PRIVATE + __crtIsValidLocaleName@0 @422 PRIVATE + __crtLCMapStringA @423 + __crtLCMapStringEx@0 @424 PRIVATE + __crtLCMapStringW @425 + __crtSetThreadStackGuarantee@0 @426 PRIVATE + __crtSetUnhandledExceptionFilter=MSVCR110__crtSetUnhandledExceptionFilter @427 + __crtTerminateProcess=MSVCR110__crtTerminateProcess @428 + __crtUnhandledException=MSVCRT__crtUnhandledException @429 + __daylight=MSVCRT___p__daylight @430 + __dllonexit @431 + __doserrno=MSVCRT___doserrno @432 + __dstbias=MSVCRT___p__dstbias @433 + __fpecode @434 + __free_locale=MSVCRT__free_locale @435 + __get_current_locale=MSVCRT__get_current_locale @436 + __get_flsindex@0 @437 PRIVATE + __get_tlsindex@0 @438 PRIVATE + __getmainargs @439 + __initenv=MSVCRT___initenv @440 DATA + __iob_func=__p__iob @441 + __isascii=MSVCRT___isascii @442 + __iscsym=MSVCRT___iscsym @443 + __iscsymf=MSVCRT___iscsymf @444 + __iswcsym@0 @445 PRIVATE + __iswcsymf@0 @446 PRIVATE + __lconv_init @447 + __libm_sse2_acos=MSVCRT___libm_sse2_acos @448 + __libm_sse2_acosf=MSVCRT___libm_sse2_acosf @449 + __libm_sse2_asin=MSVCRT___libm_sse2_asin @450 + __libm_sse2_asinf=MSVCRT___libm_sse2_asinf @451 + __libm_sse2_atan=MSVCRT___libm_sse2_atan @452 + __libm_sse2_atan2=MSVCRT___libm_sse2_atan2 @453 + __libm_sse2_atanf=MSVCRT___libm_sse2_atanf @454 + __libm_sse2_cos=MSVCRT___libm_sse2_cos @455 + __libm_sse2_cosf=MSVCRT___libm_sse2_cosf @456 + __libm_sse2_exp=MSVCRT___libm_sse2_exp @457 + __libm_sse2_expf=MSVCRT___libm_sse2_expf @458 + __libm_sse2_log=MSVCRT___libm_sse2_log @459 + __libm_sse2_log10=MSVCRT___libm_sse2_log10 @460 + __libm_sse2_log10f=MSVCRT___libm_sse2_log10f @461 + __libm_sse2_logf=MSVCRT___libm_sse2_logf @462 + __libm_sse2_pow=MSVCRT___libm_sse2_pow @463 + __libm_sse2_powf=MSVCRT___libm_sse2_powf @464 + __libm_sse2_sin=MSVCRT___libm_sse2_sin @465 + __libm_sse2_sinf=MSVCRT___libm_sse2_sinf @466 + __libm_sse2_tan=MSVCRT___libm_sse2_tan @467 + __libm_sse2_tanf=MSVCRT___libm_sse2_tanf @468 + __mb_cur_max=MSVCRT___mb_cur_max @469 DATA + __p___argc=MSVCRT___p___argc @470 + __p___argv=MSVCRT___p___argv @471 + __p___initenv @472 + __p___mb_cur_max @473 + __p___wargv=MSVCRT___p___wargv @474 + __p___winitenv @475 + __p__acmdln=MSVCRT___p__acmdln @476 + __p__commode @477 + __p__daylight=MSVCRT___p__daylight @478 + __p__dstbias=MSVCRT___p__dstbias @479 + __p__environ=MSVCRT___p__environ @480 + __p__fmode=MSVCRT___p__fmode @481 + __p__iob @482 + __p__mbcasemap@0 @483 PRIVATE + __p__mbctype @484 + __p__pctype=MSVCRT___p__pctype @485 + __p__pgmptr=MSVCRT___p__pgmptr @486 + __p__pwctype@0 @487 PRIVATE + __p__timezone=MSVCRT___p__timezone @488 + __p__tzname @489 + __p__wcmdln=MSVCRT___p__wcmdln @490 + __p__wenviron=MSVCRT___p__wenviron @491 + __p__wpgmptr=MSVCRT___p__wpgmptr @492 + __pctype_func=MSVCRT___pctype_func @493 + __pioinfo=MSVCRT___pioinfo @494 DATA + __pwctype_func@0 @495 PRIVATE + __pxcptinfoptrs=MSVCRT___pxcptinfoptrs @496 + __report_gsfailure@0 @497 PRIVATE + __set_app_type=MSVCRT___set_app_type @498 + __setlc_active=MSVCRT___setlc_active @499 DATA + __setusermatherr=MSVCRT___setusermatherr @500 + __strncnt=MSVCRT___strncnt @501 + __swprintf_l=MSVCRT___swprintf_l @502 + __sys_errlist @503 + __sys_nerr @504 + __threadhandle=kernel32.GetCurrentThread @505 + __threadid=kernel32.GetCurrentThreadId @506 + __timezone=MSVCRT___p__timezone @507 + __toascii=MSVCRT___toascii @508 + __tzname=__p__tzname @509 + __unDName @510 + __unDNameEx @511 + __unDNameHelper@0 @512 PRIVATE + __unguarded_readlc_active=MSVCRT___unguarded_readlc_active @513 DATA + __vswprintf_l=MSVCRT_vswprintf_l @514 + __wargv=MSVCRT___wargv @515 DATA + __wcserror=MSVCRT___wcserror @516 + __wcserror_s=MSVCRT___wcserror_s @517 + __wcsncnt@0 @518 PRIVATE + __wgetmainargs @519 + __winitenv=MSVCRT___winitenv @520 DATA + _abnormal_termination @521 + _abs64 @522 + _access=MSVCRT__access @523 + _access_s=MSVCRT__access_s @524 + _acmdln=MSVCRT__acmdln @525 DATA + _aligned_free @526 + _aligned_malloc @527 + _aligned_msize @528 + _aligned_offset_malloc @529 + _aligned_offset_realloc @530 + _aligned_offset_recalloc@0 @531 PRIVATE + _aligned_realloc @532 + _aligned_recalloc@0 @533 PRIVATE + _amsg_exit @534 + _assert=MSVCRT__assert @535 + _atodbl=MSVCRT__atodbl @536 + _atodbl_l=MSVCRT__atodbl_l @537 + _atof_l=MSVCRT__atof_l @538 + _atoflt=MSVCRT__atoflt @539 + _atoflt_l=MSVCRT__atoflt_l @540 + _atoi64=MSVCRT__atoi64 @541 + _atoi64_l=MSVCRT__atoi64_l @542 + _atoi_l=MSVCRT__atoi_l @543 + _atol_l=MSVCRT__atol_l @544 + _atoldbl=MSVCRT__atoldbl @545 + _atoldbl_l@0 @546 PRIVATE + _beep=MSVCRT__beep @547 + _beginthread @548 + _beginthreadex @549 + _byteswap_uint64 @550 + _byteswap_ulong=MSVCRT__byteswap_ulong @551 + _byteswap_ushort @552 + _c_exit=MSVCRT__c_exit @553 + _cabs=MSVCRT__cabs @554 + _callnewh @555 + _calloc_crt=MSVCRT_calloc @556 + _cexit=MSVCRT__cexit @557 + _cgets @558 + _cgets_s@0 @559 PRIVATE + _cgetws@0 @560 PRIVATE + _cgetws_s@0 @561 PRIVATE + _chdir=MSVCRT__chdir @562 + _chdrive=MSVCRT__chdrive @563 + _chgsign=MSVCRT__chgsign @564 + _chkesp @565 + _chmod=MSVCRT__chmod @566 + _chsize=MSVCRT__chsize @567 + _chsize_s=MSVCRT__chsize_s @568 + _clearfp @569 + _close=MSVCRT__close @570 + _commit=MSVCRT__commit @571 + _commode=MSVCRT__commode @572 DATA + _configthreadlocale @573 + _control87 @574 + _controlfp @575 + _controlfp_s @576 + _copysign=MSVCRT__copysign @577 + _cprintf @578 + _cprintf_l@0 @579 PRIVATE + _cprintf_p@0 @580 PRIVATE + _cprintf_p_l@0 @581 PRIVATE + _cprintf_s@0 @582 PRIVATE + _cprintf_s_l@0 @583 PRIVATE + _cputs @584 + _cputws @585 + _creat=MSVCRT__creat @586 + _create_locale=MSVCRT__create_locale @587 + _crt_debugger_hook=MSVCRT__crt_debugger_hook @588 + _cscanf @589 + _cscanf_l @590 + _cscanf_s @591 + _cscanf_s_l @592 + _ctime32=MSVCRT__ctime32 @593 + _ctime32_s=MSVCRT__ctime32_s @594 + _ctime64=MSVCRT__ctime64 @595 + _ctime64_s=MSVCRT__ctime64_s @596 + _cwait @597 + _cwprintf @598 + _cwprintf_l@0 @599 PRIVATE + _cwprintf_p@0 @600 PRIVATE + _cwprintf_p_l@0 @601 PRIVATE + _cwprintf_s@0 @602 PRIVATE + _cwprintf_s_l@0 @603 PRIVATE + _cwscanf @604 + _cwscanf_l @605 + _cwscanf_s @606 + _cwscanf_s_l @607 + _daylight=MSVCRT___daylight @608 DATA + _difftime32=MSVCRT__difftime32 @609 + _difftime64=MSVCRT__difftime64 @610 + _dosmaperr@0 @611 PRIVATE + _dstbias=MSVCRT__dstbias @612 DATA + _dup=MSVCRT__dup @613 + _dup2=MSVCRT__dup2 @614 + _dupenv_s @615 + _ecvt=MSVCRT__ecvt @616 + _ecvt_s=MSVCRT__ecvt_s @617 + _endthread @618 + _endthreadex @619 + _environ=MSVCRT__environ @620 DATA + _eof=MSVCRT__eof @621 + _errno=MSVCRT__errno @622 + _except_handler2 @623 + _except_handler3 @624 + _except_handler4_common @625 + _execl @626 + _execle @627 + _execlp @628 + _execlpe @629 + _execv @630 + _execve=MSVCRT__execve @631 + _execvp @632 + _execvpe @633 + _exit=MSVCRT__exit @634 + _expand @635 + _fclose_nolock=MSVCRT__fclose_nolock @636 + _fcloseall=MSVCRT__fcloseall @637 + _fcvt=MSVCRT__fcvt @638 + _fcvt_s=MSVCRT__fcvt_s @639 + _fdopen=MSVCRT__fdopen @640 + _fflush_nolock=MSVCRT__fflush_nolock @641 + _fgetc_nolock=MSVCRT__fgetc_nolock @642 + _fgetchar=MSVCRT__fgetchar @643 + _fgetwc_nolock=MSVCRT__fgetwc_nolock @644 + _fgetwchar=MSVCRT__fgetwchar @645 + _filbuf=MSVCRT__filbuf @646 + _filelength=MSVCRT__filelength @647 + _filelengthi64=MSVCRT__filelengthi64 @648 + _fileno=MSVCRT__fileno @649 + _findclose=MSVCRT__findclose @650 + _findfirst32=MSVCRT__findfirst32 @651 + _findfirst32i64@0 @652 PRIVATE + _findfirst64=MSVCRT__findfirst64 @653 + _findfirst64i32=MSVCRT__findfirst64i32 @654 + _findnext32=MSVCRT__findnext32 @655 + _findnext32i64@0 @656 PRIVATE + _findnext64=MSVCRT__findnext64 @657 + _findnext64i32=MSVCRT__findnext64i32 @658 + _finite=MSVCRT__finite @659 + _flsbuf=MSVCRT__flsbuf @660 + _flushall=MSVCRT__flushall @661 + _fmode=MSVCRT__fmode @662 DATA + _fpclass=MSVCRT__fpclass @663 + _fpieee_flt @664 + _fpreset @665 + _fprintf_l@0 @666 PRIVATE + _fprintf_p@0 @667 PRIVATE + _fprintf_p_l@0 @668 PRIVATE + _fprintf_s_l@0 @669 PRIVATE + _fputc_nolock=MSVCRT__fputc_nolock @670 + _fputchar=MSVCRT__fputchar @671 + _fputwc_nolock=MSVCRT__fputwc_nolock @672 + _fputwchar=MSVCRT__fputwchar @673 + _fread_nolock=MSVCRT__fread_nolock @674 + _fread_nolock_s=MSVCRT__fread_nolock_s @675 + _free_locale=MSVCRT__free_locale @676 + _freea@0 @677 PRIVATE + _freea_s@0 @678 PRIVATE + _freefls@0 @679 PRIVATE + _fscanf_l=MSVCRT__fscanf_l @680 + _fscanf_s_l=MSVCRT__fscanf_s_l @681 + _fseek_nolock=MSVCRT__fseek_nolock @682 + _fseeki64=MSVCRT__fseeki64 @683 + _fseeki64_nolock=MSVCRT__fseeki64_nolock @684 + _fsopen=MSVCRT__fsopen @685 + _fstat32=MSVCRT__fstat32 @686 + _fstat32i64=MSVCRT__fstat32i64 @687 + _fstat64=MSVCRT__fstat64 @688 + _fstat64i32=MSVCRT__fstat64i32 @689 + _ftell_nolock=MSVCRT__ftell_nolock @690 + _ftelli64=MSVCRT__ftelli64 @691 + _ftelli64_nolock=MSVCRT__ftelli64_nolock @692 + _ftime32=MSVCRT__ftime32 @693 + _ftime32_s=MSVCRT__ftime32_s @694 + _ftime64=MSVCRT__ftime64 @695 + _ftime64_s=MSVCRT__ftime64_s @696 + _ftol=MSVCRT__ftol @697 + _fullpath=MSVCRT__fullpath @698 + _futime32 @699 + _futime64 @700 + _fwprintf_l=MSVCRT__fwprintf_l @701 + _fwprintf_p@0 @702 PRIVATE + _fwprintf_p_l@0 @703 PRIVATE + _fwprintf_s_l@0 @704 PRIVATE + _fwrite_nolock=MSVCRT__fwrite_nolock @705 + _fwscanf_l=MSVCRT__fwscanf_l @706 + _fwscanf_s_l=MSVCRT__fwscanf_s_l @707 + _gcvt=MSVCRT__gcvt @708 + _gcvt_s=MSVCRT__gcvt_s @709 + _get_current_locale=MSVCRT__get_current_locale @710 + _get_daylight @711 + _get_doserrno @712 + _get_dstbias=MSVCRT__get_dstbias @713 + _get_errno @714 + _get_fmode=MSVCRT__get_fmode @715 + _get_heap_handle @716 + _get_invalid_parameter_handler @717 + _get_osfhandle=MSVCRT__get_osfhandle @718 + _get_output_format=MSVCRT__get_output_format @719 + _get_pgmptr @720 + _get_printf_count_output=MSVCRT__get_printf_count_output @721 + _get_purecall_handler @722 + _get_terminate=MSVCRT__get_terminate @723 + _get_timezone @724 + _get_tzname=MSVCRT__get_tzname @725 + _get_unexpected=MSVCRT__get_unexpected @726 + _get_wpgmptr @727 + _getc_nolock=MSVCRT__fgetc_nolock @728 + _getch @729 + _getch_nolock @730 + _getche @731 + _getche_nolock @732 + _getcwd=MSVCRT__getcwd @733 + _getdcwd=MSVCRT__getdcwd @734 + _getdiskfree=MSVCRT__getdiskfree @735 + _getdllprocaddr @736 + _getdrive=MSVCRT__getdrive @737 + _getdrives=kernel32.GetLogicalDrives @738 + _getmaxstdio=MSVCRT__getmaxstdio @739 + _getmbcp @740 + _getpid @741 + _getptd @742 + _getsystime@4 @743 PRIVATE + _getw=MSVCRT__getw @744 + _getwc_nolock=MSVCRT__fgetwc_nolock @745 + _getwch @746 + _getwch_nolock @747 + _getwche @748 + _getwche_nolock @749 + _getws=MSVCRT__getws @750 + _getws_s@0 @751 PRIVATE + _global_unwind2 @752 + _gmtime32=MSVCRT__gmtime32 @753 + _gmtime32_s=MSVCRT__gmtime32_s @754 + _gmtime64=MSVCRT__gmtime64 @755 + _gmtime64_s=MSVCRT__gmtime64_s @756 + _heapadd @757 + _heapchk @758 + _heapmin @759 + _heapset @760 + _heapused@8 @761 PRIVATE + _heapwalk @762 + _hypot @763 + _hypotf=MSVCRT__hypotf @764 + _i64toa=ntdll._i64toa @765 + _i64toa_s=MSVCRT__i64toa_s @766 + _i64tow=ntdll._i64tow @767 + _i64tow_s=MSVCRT__i64tow_s @768 + _initptd@0 @769 PRIVATE + _initterm @770 + _initterm_e @771 + _inp@4 @772 PRIVATE + _inpd@4 @773 PRIVATE + _inpw@4 @774 PRIVATE + _invalid_parameter=MSVCRT__invalid_parameter @775 + _invalid_parameter_noinfo @776 + _invalid_parameter_noinfo_noreturn @777 + _invoke_watson@0 @778 PRIVATE + _iob=MSVCRT__iob @779 DATA + _isalnum_l=MSVCRT__isalnum_l @780 + _isalpha_l=MSVCRT__isalpha_l @781 + _isatty=MSVCRT__isatty @782 + _iscntrl_l=MSVCRT__iscntrl_l @783 + _isctype=MSVCRT__isctype @784 + _isctype_l=MSVCRT__isctype_l @785 + _isdigit_l=MSVCRT__isdigit_l @786 + _isgraph_l=MSVCRT__isgraph_l @787 + _isleadbyte_l=MSVCRT__isleadbyte_l @788 + _islower_l=MSVCRT__islower_l @789 + _ismbbalnum@4 @790 PRIVATE + _ismbbalnum_l@0 @791 PRIVATE + _ismbbalpha@4 @792 PRIVATE + _ismbbalpha_l@0 @793 PRIVATE + _ismbbgraph@4 @794 PRIVATE + _ismbbgraph_l@0 @795 PRIVATE + _ismbbkalnum@4 @796 PRIVATE + _ismbbkalnum_l@0 @797 PRIVATE + _ismbbkana @798 + _ismbbkana_l@0 @799 PRIVATE + _ismbbkprint@4 @800 PRIVATE + _ismbbkprint_l@0 @801 PRIVATE + _ismbbkpunct@4 @802 PRIVATE + _ismbbkpunct_l@0 @803 PRIVATE + _ismbblead @804 + _ismbblead_l @805 + _ismbbprint@4 @806 PRIVATE + _ismbbprint_l@0 @807 PRIVATE + _ismbbpunct@4 @808 PRIVATE + _ismbbpunct_l@0 @809 PRIVATE + _ismbbtrail @810 + _ismbbtrail_l @811 + _ismbcalnum @812 + _ismbcalnum_l@0 @813 PRIVATE + _ismbcalpha @814 + _ismbcalpha_l@0 @815 PRIVATE + _ismbcdigit @816 + _ismbcdigit_l@0 @817 PRIVATE + _ismbcgraph @818 + _ismbcgraph_l@0 @819 PRIVATE + _ismbchira @820 + _ismbchira_l@0 @821 PRIVATE + _ismbckata @822 + _ismbckata_l@0 @823 PRIVATE + _ismbcl0 @824 + _ismbcl0_l @825 + _ismbcl1 @826 + _ismbcl1_l @827 + _ismbcl2 @828 + _ismbcl2_l @829 + _ismbclegal @830 + _ismbclegal_l @831 + _ismbclower@4 @832 PRIVATE + _ismbclower_l@0 @833 PRIVATE + _ismbcprint@4 @834 PRIVATE + _ismbcprint_l@0 @835 PRIVATE + _ismbcpunct @836 + _ismbcpunct_l@0 @837 PRIVATE + _ismbcspace @838 + _ismbcspace_l@0 @839 PRIVATE + _ismbcsymbol @840 + _ismbcsymbol_l@0 @841 PRIVATE + _ismbcupper @842 + _ismbcupper_l@0 @843 PRIVATE + _ismbslead @844 + _ismbslead_l@0 @845 PRIVATE + _ismbstrail @846 + _ismbstrail_l@0 @847 PRIVATE + _isnan=MSVCRT__isnan @848 + _isprint_l=MSVCRT__isprint_l @849 + _ispunct_l@0 @850 PRIVATE + _isspace_l=MSVCRT__isspace_l @851 + _isupper_l=MSVCRT__isupper_l @852 + _iswalnum_l=MSVCRT__iswalnum_l @853 + _iswalpha_l=MSVCRT__iswalpha_l @854 + _iswcntrl_l=MSVCRT__iswcntrl_l @855 + _iswcsym_l@0 @856 PRIVATE + _iswcsymf_l@0 @857 PRIVATE + _iswctype_l=MSVCRT__iswctype_l @858 + _iswdigit_l=MSVCRT__iswdigit_l @859 + _iswgraph_l=MSVCRT__iswgraph_l @860 + _iswlower_l=MSVCRT__iswlower_l @861 + _iswprint_l=MSVCRT__iswprint_l @862 + _iswpunct_l=MSVCRT__iswpunct_l @863 + _iswspace_l=MSVCRT__iswspace_l @864 + _iswupper_l=MSVCRT__iswupper_l @865 + _iswxdigit_l=MSVCRT__iswxdigit_l @866 + _isxdigit_l=MSVCRT__isxdigit_l @867 + _itoa=MSVCRT__itoa @868 + _itoa_s=MSVCRT__itoa_s @869 + _itow=ntdll._itow @870 + _itow_s=MSVCRT__itow_s @871 + _j0=MSVCRT__j0 @872 + _j1=MSVCRT__j1 @873 + _jn=MSVCRT__jn @874 + _kbhit @875 + _lfind @876 + _lfind_s @877 + _libm_sse2_acos_precise=MSVCRT___libm_sse2_acos @878 + _libm_sse2_asin_precise=MSVCRT___libm_sse2_asin @879 + _libm_sse2_atan_precise=MSVCRT___libm_sse2_atan @880 + _libm_sse2_cos_precise=MSVCRT___libm_sse2_cos @881 + _libm_sse2_exp_precise=MSVCRT___libm_sse2_exp @882 + _libm_sse2_log10_precise=MSVCRT___libm_sse2_log10 @883 + _libm_sse2_log_precise=MSVCRT___libm_sse2_log @884 + _libm_sse2_pow_precise=MSVCRT___libm_sse2_pow @885 + _libm_sse2_sin_precise=MSVCRT___libm_sse2_sin @886 + _libm_sse2_sqrt_precise=MSVCRT___libm_sse2_sqrt_precise @887 + _libm_sse2_tan_precise=MSVCRT___libm_sse2_tan @888 + _loaddll @889 + _local_unwind2 @890 + _local_unwind4 @891 + _localtime32=MSVCRT__localtime32 @892 + _localtime32_s @893 + _localtime64=MSVCRT__localtime64 @894 + _localtime64_s @895 + _lock @896 + _lock_file=MSVCRT__lock_file @897 + _locking=MSVCRT__locking @898 + _logb=MSVCRT__logb @899 + _longjmpex=MSVCRT_longjmp @900 + _lrotl=MSVCRT__lrotl @901 + _lrotr=MSVCRT__lrotr @902 + _lsearch @903 + _lsearch_s@0 @904 PRIVATE + _lseek=MSVCRT__lseek @905 + _lseeki64=MSVCRT__lseeki64 @906 + _ltoa=ntdll._ltoa @907 + _ltoa_s=MSVCRT__ltoa_s @908 + _ltow=ntdll._ltow @909 + _ltow_s=MSVCRT__ltow_s @910 + _makepath=MSVCRT__makepath @911 + _makepath_s=MSVCRT__makepath_s @912 + _malloc_crt=MSVCRT_malloc @913 + _mbbtombc @914 + _mbbtombc_l@0 @915 PRIVATE + _mbbtype @916 + _mbbtype_l@0 @917 PRIVATE + _mbccpy @918 + _mbccpy_l @919 + _mbccpy_s @920 + _mbccpy_s_l @921 + _mbcjistojms @922 + _mbcjistojms_l@0 @923 PRIVATE + _mbcjmstojis @924 + _mbcjmstojis_l@0 @925 PRIVATE + _mbclen @926 + _mbclen_l@0 @927 PRIVATE + _mbctohira @928 + _mbctohira_l@0 @929 PRIVATE + _mbctokata @930 + _mbctokata_l@0 @931 PRIVATE + _mbctolower @932 + _mbctolower_l@0 @933 PRIVATE + _mbctombb @934 + _mbctombb_l@0 @935 PRIVATE + _mbctoupper @936 + _mbctoupper_l@0 @937 PRIVATE + _mbctype=MSVCRT_mbctype @938 DATA + _mblen_l@0 @939 PRIVATE + _mbsbtype @940 + _mbsbtype_l@0 @941 PRIVATE + _mbscat_s @942 + _mbscat_s_l @943 + _mbschr @944 + _mbschr_l@0 @945 PRIVATE + _mbscmp @946 + _mbscmp_l@0 @947 PRIVATE + _mbscoll @948 + _mbscoll_l @949 + _mbscpy_s @950 + _mbscpy_s_l @951 + _mbscspn @952 + _mbscspn_l@0 @953 PRIVATE + _mbsdec @954 + _mbsdec_l@0 @955 PRIVATE + _mbsicmp @956 + _mbsicmp_l@0 @957 PRIVATE + _mbsicoll @958 + _mbsicoll_l @959 + _mbsinc @960 + _mbsinc_l@0 @961 PRIVATE + _mbslen @962 + _mbslen_l @963 + _mbslwr @964 + _mbslwr_l@0 @965 PRIVATE + _mbslwr_s @966 + _mbslwr_s_l@0 @967 PRIVATE + _mbsnbcat @968 + _mbsnbcat_l@0 @969 PRIVATE + _mbsnbcat_s @970 + _mbsnbcat_s_l@0 @971 PRIVATE + _mbsnbcmp @972 + _mbsnbcmp_l@0 @973 PRIVATE + _mbsnbcnt @974 + _mbsnbcnt_l@0 @975 PRIVATE + _mbsnbcoll @976 + _mbsnbcoll_l @977 + _mbsnbcpy @978 + _mbsnbcpy_l@0 @979 PRIVATE + _mbsnbcpy_s @980 + _mbsnbcpy_s_l @981 + _mbsnbicmp @982 + _mbsnbicmp_l@0 @983 PRIVATE + _mbsnbicoll @984 + _mbsnbicoll_l @985 + _mbsnbset @986 + _mbsnbset_l@0 @987 PRIVATE + _mbsnbset_s@0 @988 PRIVATE + _mbsnbset_s_l@0 @989 PRIVATE + _mbsncat @990 + _mbsncat_l@0 @991 PRIVATE + _mbsncat_s@0 @992 PRIVATE + _mbsncat_s_l@0 @993 PRIVATE + _mbsnccnt @994 + _mbsnccnt_l@0 @995 PRIVATE + _mbsncmp @996 + _mbsncmp_l@0 @997 PRIVATE + _mbsncoll@12 @998 PRIVATE + _mbsncoll_l@0 @999 PRIVATE + _mbsncpy @1000 + _mbsncpy_l@0 @1001 PRIVATE + _mbsncpy_s@0 @1002 PRIVATE + _mbsncpy_s_l@0 @1003 PRIVATE + _mbsnextc @1004 + _mbsnextc_l@0 @1005 PRIVATE + _mbsnicmp @1006 + _mbsnicmp_l@0 @1007 PRIVATE + _mbsnicoll@12 @1008 PRIVATE + _mbsnicoll_l@0 @1009 PRIVATE + _mbsninc @1010 + _mbsninc_l@0 @1011 PRIVATE + _mbsnlen @1012 + _mbsnlen_l @1013 + _mbsnset @1014 + _mbsnset_l@0 @1015 PRIVATE + _mbsnset_s@0 @1016 PRIVATE + _mbsnset_s_l@0 @1017 PRIVATE + _mbspbrk @1018 + _mbspbrk_l@0 @1019 PRIVATE + _mbsrchr @1020 + _mbsrchr_l@0 @1021 PRIVATE + _mbsrev @1022 + _mbsrev_l@0 @1023 PRIVATE + _mbsset @1024 + _mbsset_l@0 @1025 PRIVATE + _mbsset_s@0 @1026 PRIVATE + _mbsset_s_l@0 @1027 PRIVATE + _mbsspn @1028 + _mbsspn_l@0 @1029 PRIVATE + _mbsspnp @1030 + _mbsspnp_l@0 @1031 PRIVATE + _mbsstr @1032 + _mbsstr_l@0 @1033 PRIVATE + _mbstok @1034 + _mbstok_l @1035 + _mbstok_s @1036 + _mbstok_s_l @1037 + _mbstowcs_l=MSVCRT__mbstowcs_l @1038 + _mbstowcs_s_l=MSVCRT__mbstowcs_s_l @1039 + _mbstrlen @1040 + _mbstrlen_l @1041 + _mbstrnlen@0 @1042 PRIVATE + _mbstrnlen_l@0 @1043 PRIVATE + _mbsupr @1044 + _mbsupr_l@0 @1045 PRIVATE + _mbsupr_s @1046 + _mbsupr_s_l@0 @1047 PRIVATE + _mbtowc_l=MSVCRT_mbtowc_l @1048 + _memccpy=ntdll._memccpy @1049 + _memicmp=MSVCRT__memicmp @1050 + _memicmp_l=MSVCRT__memicmp_l @1051 + _mkdir=MSVCRT__mkdir @1052 + _mkgmtime32=MSVCRT__mkgmtime32 @1053 + _mkgmtime64=MSVCRT__mkgmtime64 @1054 + _mktemp=MSVCRT__mktemp @1055 + _mktemp_s=MSVCRT__mktemp_s @1056 + _mktime32=MSVCRT__mktime32 @1057 + _mktime64=MSVCRT__mktime64 @1058 + _msize @1059 + _nextafter=MSVCRT__nextafter @1060 + _onexit=MSVCRT__onexit @1061 + _open=MSVCRT__open @1062 + _open_osfhandle=MSVCRT__open_osfhandle @1063 + _outp@8 @1064 PRIVATE + _outpd@8 @1065 PRIVATE + _outpw@8 @1066 PRIVATE + _pclose=MSVCRT__pclose @1067 + _pctype=MSVCRT__pctype @1068 DATA + _pgmptr=MSVCRT__pgmptr @1069 DATA + _pipe=MSVCRT__pipe @1070 + _popen=MSVCRT__popen @1071 + _printf_l@0 @1072 PRIVATE + _printf_p@0 @1073 PRIVATE + _printf_p_l@0 @1074 PRIVATE + _printf_s_l@0 @1075 PRIVATE + _purecall @1076 + _putc_nolock=MSVCRT__fputc_nolock @1077 + _putch @1078 + _putch_nolock @1079 + _putenv @1080 + _putenv_s @1081 + _putw=MSVCRT__putw @1082 + _putwc_nolock=MSVCRT__fputwc_nolock @1083 + _putwch @1084 + _putwch_nolock @1085 + _putws=MSVCRT__putws @1086 + _read=MSVCRT__read @1087 + _realloc_crt=MSVCRT_realloc @1088 + _recalloc @1089 + _recalloc_crt@0 @1090 PRIVATE + _resetstkoflw=MSVCRT__resetstkoflw @1091 + _rmdir=MSVCRT__rmdir @1092 + _rmtmp=MSVCRT__rmtmp @1093 + _rotl @1094 + _rotl64 @1095 + _rotr @1096 + _rotr64 @1097 + _scalb=MSVCRT__scalb @1098 + _scanf_l=MSVCRT__scanf_l @1099 + _scanf_s_l=MSVCRT__scanf_s_l @1100 + _scprintf=MSVCRT__scprintf @1101 + _scprintf_l@0 @1102 PRIVATE + _scprintf_p@0 @1103 PRIVATE + _scprintf_p_l@0 @1104 PRIVATE + _scwprintf=MSVCRT__scwprintf @1105 + _scwprintf_l@0 @1106 PRIVATE + _scwprintf_p@0 @1107 PRIVATE + _scwprintf_p_l@0 @1108 PRIVATE + _searchenv=MSVCRT__searchenv @1109 + _searchenv_s=MSVCRT__searchenv_s @1110 + _seh_longjmp_unwind4@4 @1111 + _seh_longjmp_unwind@4 @1112 + _set_SSE2_enable=MSVCRT__set_SSE2_enable @1113 + _set_abort_behavior=MSVCRT__set_abort_behavior @1114 + _set_controlfp @1115 + _set_doserrno @1116 + _set_errno @1117 + _set_error_mode @1118 + _set_fmode=MSVCRT__set_fmode @1119 + _set_invalid_parameter_handler @1120 + _set_malloc_crt_max_wait@0 @1121 PRIVATE + _set_output_format=MSVCRT__set_output_format @1122 + _set_printf_count_output=MSVCRT__set_printf_count_output @1123 + _set_purecall_handler @1124 + _seterrormode @1125 + _setjmp=MSVCRT__setjmp @1126 + _setjmp3=MSVCRT__setjmp3 @1127 + _setmaxstdio=MSVCRT__setmaxstdio @1128 + _setmbcp @1129 + _setmode=MSVCRT__setmode @1130 + _setsystime@8 @1131 PRIVATE + _sleep=MSVCRT__sleep @1132 + _snprintf=MSVCRT__snprintf @1133 + _snprintf_c@0 @1134 PRIVATE + _snprintf_c_l@0 @1135 PRIVATE + _snprintf_l=MSVCRT__snprintf_l @1136 + _snprintf_s=MSVCRT__snprintf_s @1137 + _snprintf_s_l@0 @1138 PRIVATE + _snscanf=MSVCRT__snscanf @1139 + _snscanf_l=MSVCRT__snscanf_l @1140 + _snscanf_s=MSVCRT__snscanf_s @1141 + _snscanf_s_l=MSVCRT__snscanf_s_l @1142 + _snwprintf=MSVCRT__snwprintf @1143 + _snwprintf_l=MSVCRT__snwprintf_l @1144 + _snwprintf_s=MSVCRT__snwprintf_s @1145 + _snwprintf_s_l=MSVCRT__snwprintf_s_l @1146 + _snwscanf=MSVCRT__snwscanf @1147 + _snwscanf_l=MSVCRT__snwscanf_l @1148 + _snwscanf_s=MSVCRT__snwscanf_s @1149 + _snwscanf_s_l=MSVCRT__snwscanf_s_l @1150 + _sopen=MSVCRT__sopen @1151 + _sopen_s=MSVCRT__sopen_s @1152 + _spawnl=MSVCRT__spawnl @1153 + _spawnle=MSVCRT__spawnle @1154 + _spawnlp=MSVCRT__spawnlp @1155 + _spawnlpe=MSVCRT__spawnlpe @1156 + _spawnv=MSVCRT__spawnv @1157 + _spawnve=MSVCRT__spawnve @1158 + _spawnvp=MSVCRT__spawnvp @1159 + _spawnvpe=MSVCRT__spawnvpe @1160 + _splitpath=MSVCRT__splitpath @1161 + _splitpath_s=MSVCRT__splitpath_s @1162 + _sprintf_l=MSVCRT_sprintf_l @1163 + _sprintf_p=MSVCRT__sprintf_p @1164 + _sprintf_p_l=MSVCRT_sprintf_p_l @1165 + _sprintf_s_l=MSVCRT_sprintf_s_l @1166 + _sscanf_l=MSVCRT__sscanf_l @1167 + _sscanf_s_l=MSVCRT__sscanf_s_l @1168 + _stat32=MSVCRT__stat32 @1169 + _stat32i64=MSVCRT__stat32i64 @1170 + _stat64=MSVCRT_stat64 @1171 + _stat64i32=MSVCRT__stat64i32 @1172 + _statusfp @1173 + _statusfp2 @1174 + _strcoll_l=MSVCRT_strcoll_l @1175 + _strdate=MSVCRT__strdate @1176 + _strdate_s @1177 + _strdup=MSVCRT__strdup @1178 + _strerror=MSVCRT__strerror @1179 + _strerror_s@0 @1180 PRIVATE + _strftime_l=MSVCRT__strftime_l @1181 + _stricmp=MSVCRT__stricmp @1182 + _stricmp_l=MSVCRT__stricmp_l @1183 + _stricoll=MSVCRT__stricoll @1184 + _stricoll_l=MSVCRT__stricoll_l @1185 + _strlwr=MSVCRT__strlwr @1186 + _strlwr_l @1187 + _strlwr_s=MSVCRT__strlwr_s @1188 + _strlwr_s_l=MSVCRT__strlwr_s_l @1189 + _strncoll=MSVCRT__strncoll @1190 + _strncoll_l=MSVCRT__strncoll_l @1191 + _strnicmp=MSVCRT__strnicmp @1192 + _strnicmp_l=MSVCRT__strnicmp_l @1193 + _strnicoll=MSVCRT__strnicoll @1194 + _strnicoll_l=MSVCRT__strnicoll_l @1195 + _strnset=MSVCRT__strnset @1196 + _strnset_s=MSVCRT__strnset_s @1197 + _strrev=MSVCRT__strrev @1198 + _strset @1199 + _strset_s@0 @1200 PRIVATE + _strtime=MSVCRT__strtime @1201 + _strtime_s @1202 + _strtod_l=MSVCRT_strtod_l @1203 + _strtoi64=MSVCRT_strtoi64 @1204 + _strtoi64_l=MSVCRT_strtoi64_l @1205 + _strtol_l=MSVCRT__strtol_l @1206 + _strtoui64=MSVCRT_strtoui64 @1207 + _strtoui64_l=MSVCRT_strtoui64_l @1208 + _strtoul_l=MSVCRT_strtoul_l @1209 + _strupr=MSVCRT__strupr @1210 + _strupr_l=MSVCRT__strupr_l @1211 + _strupr_s=MSVCRT__strupr_s @1212 + _strupr_s_l=MSVCRT__strupr_s_l @1213 + _strxfrm_l=MSVCRT__strxfrm_l @1214 + _swab=MSVCRT__swab @1215 + _swprintf=MSVCRT_swprintf @1216 + _swprintf_c@0 @1217 PRIVATE + _swprintf_c_l@0 @1218 PRIVATE + _swprintf_p@0 @1219 PRIVATE + _swprintf_p_l=MSVCRT_swprintf_p_l @1220 + _swprintf_s_l=MSVCRT__swprintf_s_l @1221 + _swscanf_l=MSVCRT__swscanf_l @1222 + _swscanf_s_l=MSVCRT__swscanf_s_l @1223 + _sys_errlist=MSVCRT__sys_errlist @1224 DATA + _sys_nerr=MSVCRT__sys_nerr @1225 DATA + _tell=MSVCRT__tell @1226 + _telli64 @1227 + _tempnam=MSVCRT__tempnam @1228 + _time32=MSVCRT__time32 @1229 + _time64=MSVCRT__time64 @1230 + _timezone=MSVCRT___timezone @1231 DATA + _tolower=MSVCRT__tolower @1232 + _tolower_l=MSVCRT__tolower_l @1233 + _toupper=MSVCRT__toupper @1234 + _toupper_l=MSVCRT__toupper_l @1235 + _towlower_l=MSVCRT__towlower_l @1236 + _towupper_l=MSVCRT__towupper_l @1237 + _tzname=MSVCRT__tzname @1238 DATA + _tzset=MSVCRT__tzset @1239 + _ui64toa=ntdll._ui64toa @1240 + _ui64toa_s=MSVCRT__ui64toa_s @1241 + _ui64tow=ntdll._ui64tow @1242 + _ui64tow_s=MSVCRT__ui64tow_s @1243 + _ultoa=ntdll._ultoa @1244 + _ultoa_s=MSVCRT__ultoa_s @1245 + _ultow=ntdll._ultow @1246 + _ultow_s=MSVCRT__ultow_s @1247 + _umask=MSVCRT__umask @1248 + _umask_s@0 @1249 PRIVATE + _ungetc_nolock=MSVCRT__ungetc_nolock @1250 + _ungetch @1251 + _ungetch_nolock @1252 + _ungetwc_nolock=MSVCRT__ungetwc_nolock @1253 + _ungetwch @1254 + _ungetwch_nolock @1255 + _unlink=MSVCRT__unlink @1256 + _unloaddll @1257 + _unlock @1258 + _unlock_file=MSVCRT__unlock_file @1259 + _utime32 @1260 + _utime64 @1261 + _vcprintf @1262 + _vcprintf_l@0 @1263 PRIVATE + _vcprintf_p@0 @1264 PRIVATE + _vcprintf_p_l@0 @1265 PRIVATE + _vcprintf_s@0 @1266 PRIVATE + _vcprintf_s_l@0 @1267 PRIVATE + _vcwprintf @1268 + _vcwprintf_l@0 @1269 PRIVATE + _vcwprintf_p@0 @1270 PRIVATE + _vcwprintf_p_l@0 @1271 PRIVATE + _vcwprintf_s@0 @1272 PRIVATE + _vcwprintf_s_l@0 @1273 PRIVATE + _vfprintf_l=MSVCRT__vfprintf_l @1274 + _vfprintf_p=MSVCRT__vfprintf_p @1275 + _vfprintf_p_l=MSVCRT__vfprintf_p_l @1276 + _vfprintf_s_l=MSVCRT__vfprintf_s_l @1277 + _vfwprintf_l=MSVCRT__vfwprintf_l @1278 + _vfwprintf_p=MSVCRT__vfwprintf_p @1279 + _vfwprintf_p_l=MSVCRT__vfwprintf_p_l @1280 + _vfwprintf_s_l=MSVCRT__vfwprintf_s_l @1281 + _vprintf_l@0 @1282 PRIVATE + _vprintf_p@0 @1283 PRIVATE + _vprintf_p_l@0 @1284 PRIVATE + _vprintf_s_l@0 @1285 PRIVATE + _vscprintf=MSVCRT__vscprintf @1286 + _vscprintf_l=MSVCRT__vscprintf_l @1287 + _vscprintf_p=MSVCRT__vscprintf_p @1288 + _vscprintf_p_l=MSVCRT__vscprintf_p_l @1289 + _vscwprintf=MSVCRT__vscwprintf @1290 + _vscwprintf_l=MSVCRT__vscwprintf_l @1291 + _vscwprintf_p=MSVCRT__vscwprintf_p @1292 + _vscwprintf_p_l=MSVCRT__vscwprintf_p_l @1293 + _vsnprintf=MSVCRT_vsnprintf @1294 + _vsnprintf_c=MSVCRT_vsnprintf @1295 + _vsnprintf_c_l=MSVCRT_vsnprintf_l @1296 + _vsnprintf_l=MSVCRT_vsnprintf_l @1297 + _vsnprintf_s=MSVCRT_vsnprintf_s @1298 + _vsnprintf_s_l=MSVCRT_vsnprintf_s_l @1299 + _vsnwprintf=MSVCRT_vsnwprintf @1300 + _vsnwprintf_l=MSVCRT_vsnwprintf_l @1301 + _vsnwprintf_s=MSVCRT_vsnwprintf_s @1302 + _vsnwprintf_s_l=MSVCRT_vsnwprintf_s_l @1303 + _vsprintf_l=MSVCRT_vsprintf_l @1304 + _vsprintf_p=MSVCRT_vsprintf_p @1305 + _vsprintf_p_l=MSVCRT_vsprintf_p_l @1306 + _vsprintf_s_l=MSVCRT_vsprintf_s_l @1307 + _vswprintf=MSVCRT_vswprintf @1308 + _vswprintf_c=MSVCRT_vsnwprintf @1309 + _vswprintf_c_l=MSVCRT_vsnwprintf_l @1310 + _vswprintf_l=MSVCRT_vswprintf_l @1311 + _vswprintf_p=MSVCRT__vswprintf_p @1312 + _vswprintf_p_l=MSVCRT_vswprintf_p_l @1313 + _vswprintf_s_l=MSVCRT_vswprintf_s_l @1314 + _vwprintf_l@0 @1315 PRIVATE + _vwprintf_p@0 @1316 PRIVATE + _vwprintf_p_l@0 @1317 PRIVATE + _vwprintf_s_l@0 @1318 PRIVATE + _waccess=MSVCRT__waccess @1319 + _waccess_s=MSVCRT__waccess_s @1320 + _wasctime=MSVCRT__wasctime @1321 + _wasctime_s=MSVCRT__wasctime_s @1322 + _wassert=MSVCRT__wassert @1323 + _wchdir=MSVCRT__wchdir @1324 + _wchmod=MSVCRT__wchmod @1325 + _wcmdln=MSVCRT__wcmdln @1326 DATA + _wcreat=MSVCRT__wcreat @1327 + _wcreate_locale=MSVCRT__wcreate_locale @1328 + _wcscoll_l=MSVCRT__wcscoll_l @1329 + _wcsdup=MSVCRT__wcsdup @1330 + _wcserror=MSVCRT__wcserror @1331 + _wcserror_s=MSVCRT__wcserror_s @1332 + _wcsftime_l=MSVCRT__wcsftime_l @1333 + _wcsicmp=MSVCRT__wcsicmp @1334 + _wcsicmp_l=MSVCRT__wcsicmp_l @1335 + _wcsicoll=MSVCRT__wcsicoll @1336 + _wcsicoll_l=MSVCRT__wcsicoll_l @1337 + _wcslwr=MSVCRT__wcslwr @1338 + _wcslwr_l=MSVCRT__wcslwr_l @1339 + _wcslwr_s=MSVCRT__wcslwr_s @1340 + _wcslwr_s_l=MSVCRT__wcslwr_s_l @1341 + _wcsncoll=MSVCRT__wcsncoll @1342 + _wcsncoll_l=MSVCRT__wcsncoll_l @1343 + _wcsnicmp=MSVCRT__wcsnicmp @1344 + _wcsnicmp_l=MSVCRT__wcsnicmp_l @1345 + _wcsnicoll=MSVCRT__wcsnicoll @1346 + _wcsnicoll_l=MSVCRT__wcsnicoll_l @1347 + _wcsnset=MSVCRT__wcsnset @1348 + _wcsnset_s=MSVCRT__wcsnset_s @1349 + _wcsrev=MSVCRT__wcsrev @1350 + _wcsset=MSVCRT__wcsset @1351 + _wcsset_s=MSVCRT__wcsset_s @1352 + _wcstod_l=MSVCRT__wcstod_l @1353 + _wcstoi64=MSVCRT__wcstoi64 @1354 + _wcstoi64_l=MSVCRT__wcstoi64_l @1355 + _wcstol_l=MSVCRT__wcstol_l @1356 + _wcstombs_l=MSVCRT__wcstombs_l @1357 + _wcstombs_s_l=MSVCRT__wcstombs_s_l @1358 + _wcstoui64=MSVCRT__wcstoui64 @1359 + _wcstoui64_l=MSVCRT__wcstoui64_l @1360 + _wcstoul_l=MSVCRT__wcstoul_l @1361 + _wcsupr=MSVCRT__wcsupr @1362 + _wcsupr_l=MSVCRT__wcsupr_l @1363 + _wcsupr_s=MSVCRT__wcsupr_s @1364 + _wcsupr_s_l=MSVCRT__wcsupr_s_l @1365 + _wcsxfrm_l=MSVCRT__wcsxfrm_l @1366 + _wctime32=MSVCRT__wctime32 @1367 + _wctime32_s=MSVCRT__wctime32_s @1368 + _wctime64=MSVCRT__wctime64 @1369 + _wctime64_s=MSVCRT__wctime64_s @1370 + _wctomb_l=MSVCRT__wctomb_l @1371 + _wctomb_s_l=MSVCRT__wctomb_s_l @1372 + _wdupenv_s @1373 + _wenviron=MSVCRT__wenviron @1374 DATA + _wexecl @1375 + _wexecle @1376 + _wexeclp @1377 + _wexeclpe @1378 + _wexecv @1379 + _wexecve @1380 + _wexecvp @1381 + _wexecvpe @1382 + _wfdopen=MSVCRT__wfdopen @1383 + _wfindfirst32=MSVCRT__wfindfirst32 @1384 + _wfindfirst32i64@0 @1385 PRIVATE + _wfindfirst64=MSVCRT__wfindfirst64 @1386 + _wfindfirst64i32=MSVCRT__wfindfirst64i32 @1387 + _wfindnext32=MSVCRT__wfindnext32 @1388 + _wfindnext32i64@0 @1389 PRIVATE + _wfindnext64=MSVCRT__wfindnext64 @1390 + _wfindnext64i32=MSVCRT__wfindnext64i32 @1391 + _wfopen=MSVCRT__wfopen @1392 + _wfopen_s=MSVCRT__wfopen_s @1393 + _wfreopen=MSVCRT__wfreopen @1394 + _wfreopen_s=MSVCRT__wfreopen_s @1395 + _wfsopen=MSVCRT__wfsopen @1396 + _wfullpath=MSVCRT__wfullpath @1397 + _wgetcwd=MSVCRT__wgetcwd @1398 + _wgetdcwd=MSVCRT__wgetdcwd @1399 + _wgetenv=MSVCRT__wgetenv @1400 + _wgetenv_s @1401 + _wmakepath=MSVCRT__wmakepath @1402 + _wmakepath_s=MSVCRT__wmakepath_s @1403 + _wmkdir=MSVCRT__wmkdir @1404 + _wmktemp=MSVCRT__wmktemp @1405 + _wmktemp_s=MSVCRT__wmktemp_s @1406 + _wopen=MSVCRT__wopen @1407 + _wperror=MSVCRT__wperror @1408 + _wpgmptr=MSVCRT__wpgmptr @1409 DATA + _wpopen=MSVCRT__wpopen @1410 + _wprintf_l@0 @1411 PRIVATE + _wprintf_p@0 @1412 PRIVATE + _wprintf_p_l@0 @1413 PRIVATE + _wprintf_s_l@0 @1414 PRIVATE + _wputenv @1415 + _wputenv_s @1416 + _wremove=MSVCRT__wremove @1417 + _wrename=MSVCRT__wrename @1418 + _write=MSVCRT__write @1419 + _wrmdir=MSVCRT__wrmdir @1420 + _wscanf_l=MSVCRT__wscanf_l @1421 + _wscanf_s_l=MSVCRT__wscanf_s_l @1422 + _wsearchenv=MSVCRT__wsearchenv @1423 + _wsearchenv_s=MSVCRT__wsearchenv_s @1424 + _wsetlocale=MSVCRT__wsetlocale @1425 + _wsopen=MSVCRT__wsopen @1426 + _wsopen_s=MSVCRT__wsopen_s @1427 + _wspawnl=MSVCRT__wspawnl @1428 + _wspawnle=MSVCRT__wspawnle @1429 + _wspawnlp=MSVCRT__wspawnlp @1430 + _wspawnlpe=MSVCRT__wspawnlpe @1431 + _wspawnv=MSVCRT__wspawnv @1432 + _wspawnve=MSVCRT__wspawnve @1433 + _wspawnvp=MSVCRT__wspawnvp @1434 + _wspawnvpe=MSVCRT__wspawnvpe @1435 + _wsplitpath=MSVCRT__wsplitpath @1436 + _wsplitpath_s=MSVCRT__wsplitpath_s @1437 + _wstat32=MSVCRT__wstat32 @1438 + _wstat32i64=MSVCRT__wstat32i64 @1439 + _wstat64=MSVCRT__wstat64 @1440 + _wstat64i32=MSVCRT__wstat64i32 @1441 + _wstrdate=MSVCRT__wstrdate @1442 + _wstrdate_s @1443 + _wstrtime=MSVCRT__wstrtime @1444 + _wstrtime_s @1445 + _wsystem @1446 + _wtempnam=MSVCRT__wtempnam @1447 + _wtmpnam=MSVCRT__wtmpnam @1448 + _wtmpnam_s=MSVCRT__wtmpnam_s @1449 + _wtof=MSVCRT__wtof @1450 + _wtof_l=MSVCRT__wtof_l @1451 + _wtoi=MSVCRT__wtoi @1452 + _wtoi64=MSVCRT__wtoi64 @1453 + _wtoi64_l=MSVCRT__wtoi64_l @1454 + _wtoi_l=MSVCRT__wtoi_l @1455 + _wtol=MSVCRT__wtol @1456 + _wtol_l=MSVCRT__wtol_l @1457 + _wunlink=MSVCRT__wunlink @1458 + _wutime32 @1459 + _wutime64 @1460 + _y0=MSVCRT__y0 @1461 + _y1=MSVCRT__y1 @1462 + _yn=MSVCRT__yn @1463 + abort=MSVCRT_abort @1464 + abs=MSVCRT_abs @1465 + acos=MSVCRT_acos @1466 + asctime=MSVCRT_asctime @1467 + asctime_s=MSVCRT_asctime_s @1468 + asin=MSVCRT_asin @1469 + atan=MSVCRT_atan @1470 + atan2=MSVCRT_atan2 @1471 + atexit=MSVCRT_atexit @1472 PRIVATE + atof=MSVCRT_atof @1473 + atoi=MSVCRT_atoi @1474 + atol=MSVCRT_atol @1475 + bsearch=MSVCRT_bsearch @1476 + bsearch_s=MSVCRT_bsearch_s @1477 + btowc=MSVCRT_btowc @1478 + calloc=MSVCRT_calloc @1479 + ceil=MSVCRT_ceil @1480 + clearerr=MSVCRT_clearerr @1481 + clearerr_s=MSVCRT_clearerr_s @1482 + clock=MSVCRT_clock @1483 + cos=MSVCRT_cos @1484 + cosh=MSVCRT_cosh @1485 + div=MSVCRT_div @1486 + exit=MSVCRT_exit @1487 + exp=MSVCRT_exp @1488 + fabs=MSVCRT_fabs @1489 + fclose=MSVCRT_fclose @1490 + feof=MSVCRT_feof @1491 + ferror=MSVCRT_ferror @1492 + fflush=MSVCRT_fflush @1493 + fgetc=MSVCRT_fgetc @1494 + fgetpos=MSVCRT_fgetpos @1495 + fgets=MSVCRT_fgets @1496 + fgetwc=MSVCRT_fgetwc @1497 + fgetws=MSVCRT_fgetws @1498 + floor=MSVCRT_floor @1499 + fmod=MSVCRT_fmod @1500 + fopen=MSVCRT_fopen @1501 + fopen_s=MSVCRT_fopen_s @1502 + fprintf=MSVCRT_fprintf @1503 + fprintf_s=MSVCRT_fprintf_s @1504 + fputc=MSVCRT_fputc @1505 + fputs=MSVCRT_fputs @1506 + fputwc=MSVCRT_fputwc @1507 + fputws=MSVCRT_fputws @1508 + fread=MSVCRT_fread @1509 + fread_s=MSVCRT_fread_s @1510 + free=MSVCRT_free @1511 + freopen=MSVCRT_freopen @1512 + freopen_s=MSVCRT_freopen_s @1513 + frexp=MSVCRT_frexp @1514 + fscanf=MSVCRT_fscanf @1515 + fscanf_s=MSVCRT_fscanf_s @1516 + fseek=MSVCRT_fseek @1517 + fsetpos=MSVCRT_fsetpos @1518 + ftell=MSVCRT_ftell @1519 + fwprintf=MSVCRT_fwprintf @1520 + fwprintf_s=MSVCRT_fwprintf_s @1521 + fwrite=MSVCRT_fwrite @1522 + fwscanf=MSVCRT_fwscanf @1523 + fwscanf_s=MSVCRT_fwscanf_s @1524 + getc=MSVCRT_getc @1525 + getchar=MSVCRT_getchar @1526 + getenv=MSVCRT_getenv @1527 + getenv_s @1528 + gets=MSVCRT_gets @1529 + gets_s=MSVCRT_gets_s @1530 + getwc=MSVCRT_getwc @1531 + getwchar=MSVCRT_getwchar @1532 + is_wctype=ntdll.iswctype @1533 + isalnum=MSVCRT_isalnum @1534 + isalpha=MSVCRT_isalpha @1535 + iscntrl=MSVCRT_iscntrl @1536 + isdigit=MSVCRT_isdigit @1537 + isgraph=MSVCRT_isgraph @1538 + isleadbyte=MSVCRT_isleadbyte @1539 + islower=MSVCRT_islower @1540 + isprint=MSVCRT_isprint @1541 + ispunct=MSVCRT_ispunct @1542 + isspace=MSVCRT_isspace @1543 + isupper=MSVCRT_isupper @1544 + iswalnum=MSVCRT_iswalnum @1545 + iswalpha=ntdll.iswalpha @1546 + iswascii=MSVCRT_iswascii @1547 + iswcntrl=MSVCRT_iswcntrl @1548 + iswctype=ntdll.iswctype @1549 + iswdigit=MSVCRT_iswdigit @1550 + iswgraph=MSVCRT_iswgraph @1551 + iswlower=MSVCRT_iswlower @1552 + iswprint=MSVCRT_iswprint @1553 + iswpunct=MSVCRT_iswpunct @1554 + iswspace=MSVCRT_iswspace @1555 + iswupper=MSVCRT_iswupper @1556 + iswxdigit=MSVCRT_iswxdigit @1557 + isxdigit=MSVCRT_isxdigit @1558 + labs=MSVCRT_labs @1559 + ldexp=MSVCRT_ldexp @1560 + ldiv=MSVCRT_ldiv @1561 + llabs=MSVCRT_llabs @1562 + lldiv=MSVCRT_lldiv @1563 + localeconv=MSVCRT_localeconv @1564 + log=MSVCRT_log @1565 + log10=MSVCRT_log10 @1566 + longjmp=MSVCRT_longjmp @1567 + malloc=MSVCRT_malloc @1568 + mblen=MSVCRT_mblen @1569 + mbrlen=MSVCRT_mbrlen @1570 + mbrtowc=MSVCRT_mbrtowc @1571 + mbsrtowcs=MSVCRT_mbsrtowcs @1572 + mbsrtowcs_s=MSVCRT_mbsrtowcs_s @1573 + mbstowcs=MSVCRT_mbstowcs @1574 + mbstowcs_s=MSVCRT__mbstowcs_s @1575 + mbtowc=MSVCRT_mbtowc @1576 + memchr=MSVCRT_memchr @1577 + memcmp=MSVCRT_memcmp @1578 + memcpy=MSVCRT_memcpy @1579 + memcpy_s=MSVCRT_memcpy_s @1580 + memmove=MSVCRT_memmove @1581 + memmove_s=MSVCRT_memmove_s @1582 + memset=MSVCRT_memset @1583 + modf=MSVCRT_modf @1584 + perror=MSVCRT_perror @1585 + pow=MSVCRT_pow @1586 + printf=MSVCRT_printf @1587 + printf_s=MSVCRT_printf_s @1588 + putc=MSVCRT_putc @1589 + putchar=MSVCRT_putchar @1590 + puts=MSVCRT_puts @1591 + putwc=MSVCRT_fputwc @1592 + putwchar=MSVCRT__fputwchar @1593 + qsort=MSVCRT_qsort @1594 + qsort_s=MSVCRT_qsort_s @1595 + raise=MSVCRT_raise @1596 + rand=MSVCRT_rand @1597 + rand_s=MSVCRT_rand_s @1598 + realloc=MSVCRT_realloc @1599 + remove=MSVCRT_remove @1600 + rename=MSVCRT_rename @1601 + rewind=MSVCRT_rewind @1602 + scanf=MSVCRT_scanf @1603 + scanf_s=MSVCRT_scanf_s @1604 + setbuf=MSVCRT_setbuf @1605 + setlocale=MSVCRT_setlocale @1606 + setvbuf=MSVCRT_setvbuf @1607 + signal=MSVCRT_signal @1608 + sin=MSVCRT_sin @1609 + sinh=MSVCRT_sinh @1610 + sprintf=MSVCRT_sprintf @1611 + sprintf_s=MSVCRT_sprintf_s @1612 + sqrt=MSVCRT_sqrt @1613 + srand=MSVCRT_srand @1614 + sscanf=MSVCRT_sscanf @1615 + sscanf_s=MSVCRT_sscanf_s @1616 + strcat=ntdll.strcat @1617 + strcat_s=MSVCRT_strcat_s @1618 + strchr=MSVCRT_strchr @1619 + strcmp=MSVCRT_strcmp @1620 + strcoll=MSVCRT_strcoll @1621 + strcpy=MSVCRT_strcpy @1622 + strcpy_s=MSVCRT_strcpy_s @1623 + strcspn=MSVCRT_strcspn @1624 + strerror=MSVCRT_strerror @1625 + strerror_s=MSVCRT_strerror_s @1626 + strftime=MSVCRT_strftime @1627 + strlen=MSVCRT_strlen @1628 + strncat=MSVCRT_strncat @1629 + strncat_s=MSVCRT_strncat_s @1630 + strncmp=MSVCRT_strncmp @1631 + strncpy=MSVCRT_strncpy @1632 + strncpy_s=MSVCRT_strncpy_s @1633 + strnlen=MSVCRT_strnlen @1634 + strpbrk=MSVCRT_strpbrk @1635 + strrchr=MSVCRT_strrchr @1636 + strspn=ntdll.strspn @1637 + strstr=MSVCRT_strstr @1638 + strtod=MSVCRT_strtod @1639 + strtok=MSVCRT_strtok @1640 + strtok_s=MSVCRT_strtok_s @1641 + strtol=MSVCRT_strtol @1642 + strtoul=MSVCRT_strtoul @1643 + strxfrm=MSVCRT_strxfrm @1644 + swprintf_s=MSVCRT_swprintf_s @1645 + swscanf=MSVCRT_swscanf @1646 + swscanf_s=MSVCRT_swscanf_s @1647 + system=MSVCRT_system @1648 + tan=MSVCRT_tan @1649 + tanh=MSVCRT_tanh @1650 + tmpfile=MSVCRT_tmpfile @1651 + tmpfile_s=MSVCRT_tmpfile_s @1652 + tmpnam=MSVCRT_tmpnam @1653 + tmpnam_s=MSVCRT_tmpnam_s @1654 + tolower=MSVCRT_tolower @1655 + toupper=MSVCRT_toupper @1656 + towlower=MSVCRT_towlower @1657 + towupper=MSVCRT_towupper @1658 + ungetc=MSVCRT_ungetc @1659 + ungetwc=MSVCRT_ungetwc @1660 + vfprintf=MSVCRT_vfprintf @1661 + vfprintf_s=MSVCRT_vfprintf_s @1662 + vfwprintf=MSVCRT_vfwprintf @1663 + vfwprintf_s=MSVCRT_vfwprintf_s @1664 + vprintf=MSVCRT_vprintf @1665 + vprintf_s=MSVCRT_vprintf_s @1666 + vsprintf=MSVCRT_vsprintf @1667 + vsprintf_s=MSVCRT_vsprintf_s @1668 + vswprintf_s=MSVCRT_vswprintf_s @1669 + vwprintf=MSVCRT_vwprintf @1670 + vwprintf_s=MSVCRT_vwprintf_s @1671 + wcrtomb=MSVCRT_wcrtomb @1672 + wcrtomb_s@0 @1673 PRIVATE + wcscat=ntdll.wcscat @1674 + wcscat_s=MSVCRT_wcscat_s @1675 + wcschr=MSVCRT_wcschr @1676 + wcscmp=MSVCRT_wcscmp @1677 + wcscoll=MSVCRT_wcscoll @1678 + wcscpy=ntdll.wcscpy @1679 + wcscpy_s=MSVCRT_wcscpy_s @1680 + wcscspn=ntdll.wcscspn @1681 + wcsftime=MSVCRT_wcsftime @1682 + wcslen=MSVCRT_wcslen @1683 + wcsncat=ntdll.wcsncat @1684 + wcsncat_s=MSVCRT_wcsncat_s @1685 + wcsncmp=MSVCRT_wcsncmp @1686 + wcsncpy=MSVCRT_wcsncpy @1687 + wcsncpy_s=MSVCRT_wcsncpy_s @1688 + wcsnlen=MSVCRT_wcsnlen @1689 + wcspbrk=MSVCRT_wcspbrk @1690 + wcsrchr=MSVCRT_wcsrchr @1691 + wcsrtombs=MSVCRT_wcsrtombs @1692 + wcsrtombs_s=MSVCRT_wcsrtombs_s @1693 + wcsspn=ntdll.wcsspn @1694 + wcsstr=MSVCRT_wcsstr @1695 + wcstod=MSVCRT_wcstod @1696 + wcstok=MSVCRT_wcstok @1697 + wcstok_s=MSVCRT_wcstok_s @1698 + wcstol=MSVCRT_wcstol @1699 + wcstombs=MSVCRT_wcstombs @1700 + wcstombs_s=MSVCRT_wcstombs_s @1701 + wcstoul=MSVCRT_wcstoul @1702 + wcsxfrm=MSVCRT_wcsxfrm @1703 + wctob=MSVCRT_wctob @1704 + wctomb=MSVCRT_wctomb @1705 + wctomb_s=MSVCRT_wctomb_s @1706 + wmemcpy_s @1707 + wmemmove_s @1708 + wprintf=MSVCRT_wprintf @1709 + wprintf_s=MSVCRT_wprintf_s @1710 + wscanf=MSVCRT_wscanf @1711 + wscanf_s=MSVCRT_wscanf_s @1712 diff --git a/lib/wine/libmsvcr120.def b/lib/wine/libmsvcr120.def new file mode 100644 index 0000000..52f2ea5 --- /dev/null +++ b/lib/wine/libmsvcr120.def @@ -0,0 +1,1975 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/msvcr120/msvcr120.spec; do not edit! + +LIBRARY msvcr120.dll + +EXPORTS + ??0?$_SpinWait@$00@details@Concurrency@@QAE@P6AXXZ@Z@8=__thiscall_SpinWait_ctor_yield @1 + ??0?$_SpinWait@$0A@@details@Concurrency@@QAE@P6AXXZ@Z@8=__thiscall_SpinWait_ctor @2 + ??0SchedulerPolicy@Concurrency@@QAA@IZZ=SchedulerPolicy_ctor_policies @3 + ??0SchedulerPolicy@Concurrency@@QAE@ABV01@@Z@8=__thiscall_SchedulerPolicy_copy_ctor @4 + ??0SchedulerPolicy@Concurrency@@QAE@XZ@4=__thiscall_SchedulerPolicy_ctor @5 + ??0_Cancellation_beacon@details@Concurrency@@QAE@XZ@0 @6 PRIVATE + ??0_Condition_variable@details@Concurrency@@QAE@XZ@4=__thiscall__Condition_variable_ctor @7 + ??0_Context@details@Concurrency@@QAE@PAVContext@2@@Z@0 @8 PRIVATE + ??0_Interruption_exception@details@Concurrency@@QAE@PBD@Z@0 @9 PRIVATE + ??0_Interruption_exception@details@Concurrency@@QAE@XZ@0 @10 PRIVATE + ??0_NonReentrantBlockingLock@details@Concurrency@@QAE@XZ@4=__thiscall__ReentrantBlockingLock_ctor @11 + ??0_NonReentrantPPLLock@details@Concurrency@@QAE@XZ@4=__thiscall__NonReentrantPPLLock_ctor @12 + ??0_ReaderWriterLock@details@Concurrency@@QAE@XZ@0 @13 PRIVATE + ??0_ReentrantBlockingLock@details@Concurrency@@QAE@XZ@4=__thiscall__ReentrantBlockingLock_ctor @14 + ??0_ReentrantLock@details@Concurrency@@QAE@XZ@0 @15 PRIVATE + ??0_ReentrantPPLLock@details@Concurrency@@QAE@XZ@4=__thiscall__ReentrantPPLLock_ctor @16 + ??0_Scheduler@details@Concurrency@@QAE@PAVScheduler@2@@Z@8=__thiscall__Scheduler_ctor_sched @17 + ??0_Scoped_lock@_NonReentrantPPLLock@details@Concurrency@@QAE@AAV123@@Z@4=__thiscall__NonReentrantPPLLock__Scoped_lock_ctor @18 + ??0_Scoped_lock@_ReentrantPPLLock@details@Concurrency@@QAE@AAV123@@Z@8=__thiscall__ReentrantPPLLock__Scoped_lock_ctor @19 + ??0_SpinLock@details@Concurrency@@QAE@ACJ@Z@0 @20 PRIVATE + ??0_StructuredTaskCollection@details@Concurrency@@QAE@PAV_CancellationTokenState@12@@Z@0 @21 PRIVATE + ??0_TaskCollection@details@Concurrency@@QAE@PAV_CancellationTokenState@12@@Z@0 @22 PRIVATE + ??0_TaskCollection@details@Concurrency@@QAE@XZ@0 @23 PRIVATE + ??0_Timer@details@Concurrency@@IAE@I_N@Z@0 @24 PRIVATE + ??0__non_rtti_object@std@@QAE@ABV01@@Z@8=__thiscall_MSVCRT___non_rtti_object_copy_ctor @25 + ??0__non_rtti_object@std@@QAE@PBD@Z@8=__thiscall_MSVCRT___non_rtti_object_ctor @26 + ??0bad_cast@std@@AAE@PBQBD@Z@8=__thiscall_MSVCRT_bad_cast_ctor @27 + ??0bad_cast@std@@QAE@ABV01@@Z@8=__thiscall_MSVCRT_bad_cast_copy_ctor @28 + ??0bad_cast@std@@QAE@PBD@Z@8=__thiscall_MSVCRT_bad_cast_ctor_charptr @29 + ??0bad_target@Concurrency@@QAE@PBD@Z@0 @30 PRIVATE + ??0bad_target@Concurrency@@QAE@XZ@0 @31 PRIVATE + ??0bad_typeid@std@@QAE@ABV01@@Z@8=__thiscall_MSVCRT_bad_typeid_copy_ctor @32 + ??0bad_typeid@std@@QAE@PBD@Z@8=__thiscall_MSVCRT_bad_typeid_ctor @33 + ??0context_self_unblock@Concurrency@@QAE@PBD@Z@0 @34 PRIVATE + ??0context_self_unblock@Concurrency@@QAE@XZ@0 @35 PRIVATE + ??0context_unblock_unbalanced@Concurrency@@QAE@PBD@Z@0 @36 PRIVATE + ??0context_unblock_unbalanced@Concurrency@@QAE@XZ@0 @37 PRIVATE + ??0critical_section@Concurrency@@QAE@XZ@4=__thiscall_critical_section_ctor @38 + ??0default_scheduler_exists@Concurrency@@QAE@PBD@Z@0 @39 PRIVATE + ??0default_scheduler_exists@Concurrency@@QAE@XZ@0 @40 PRIVATE + ??0event@Concurrency@@QAE@XZ@4=__thiscall_event_ctor @41 + ??0exception@std@@QAE@ABQBD@Z@8=__thiscall_MSVCRT_exception_ctor @42 + ??0exception@std@@QAE@ABQBDH@Z@12=__thiscall_MSVCRT_exception_ctor_noalloc @43 + ??0exception@std@@QAE@ABV01@@Z@8=__thiscall_MSVCRT_exception_copy_ctor @44 + ??0exception@std@@QAE@XZ@4=__thiscall_MSVCRT_exception_default_ctor @45 + ??0improper_lock@Concurrency@@QAE@PBD@Z@8=__thiscall_improper_lock_ctor_str @46 + ??0improper_lock@Concurrency@@QAE@XZ@4=__thiscall_improper_lock_ctor @47 + ??0improper_scheduler_attach@Concurrency@@QAE@PBD@Z@8=__thiscall_improper_scheduler_attach_ctor_str @48 + ??0improper_scheduler_attach@Concurrency@@QAE@XZ@4=__thiscall_improper_scheduler_attach_ctor @49 + ??0improper_scheduler_detach@Concurrency@@QAE@PBD@Z@8=__thiscall_improper_scheduler_detach_ctor_str @50 + ??0improper_scheduler_detach@Concurrency@@QAE@XZ@4=__thiscall_improper_scheduler_detach_ctor @51 + ??0improper_scheduler_reference@Concurrency@@QAE@PBD@Z@0 @52 PRIVATE + ??0improper_scheduler_reference@Concurrency@@QAE@XZ@0 @53 PRIVATE + ??0invalid_link_target@Concurrency@@QAE@PBD@Z@0 @54 PRIVATE + ??0invalid_link_target@Concurrency@@QAE@XZ@0 @55 PRIVATE + ??0invalid_multiple_scheduling@Concurrency@@QAE@PBD@Z@0 @56 PRIVATE + ??0invalid_multiple_scheduling@Concurrency@@QAE@XZ@0 @57 PRIVATE + ??0invalid_operation@Concurrency@@QAE@PBD@Z@0 @58 PRIVATE + ??0invalid_operation@Concurrency@@QAE@XZ@0 @59 PRIVATE + ??0invalid_oversubscribe_operation@Concurrency@@QAE@PBD@Z@0 @60 PRIVATE + ??0invalid_oversubscribe_operation@Concurrency@@QAE@XZ@0 @61 PRIVATE + ??0invalid_scheduler_policy_key@Concurrency@@QAE@PBD@Z@8=__thiscall_invalid_scheduler_policy_key_ctor_str @62 + ??0invalid_scheduler_policy_key@Concurrency@@QAE@XZ@4=__thiscall_invalid_scheduler_policy_key_ctor @63 + ??0invalid_scheduler_policy_thread_specification@Concurrency@@QAE@PBD@Z@8=__thiscall_invalid_scheduler_policy_thread_specification_ctor_str @64 + ??0invalid_scheduler_policy_thread_specification@Concurrency@@QAE@XZ@4=__thiscall_invalid_scheduler_policy_thread_specification_ctor @65 + ??0invalid_scheduler_policy_value@Concurrency@@QAE@PBD@Z@8=__thiscall_invalid_scheduler_policy_value_ctor_str @66 + ??0invalid_scheduler_policy_value@Concurrency@@QAE@XZ@4=__thiscall_invalid_scheduler_policy_value_ctor @67 + ??0message_not_found@Concurrency@@QAE@PBD@Z@0 @68 PRIVATE + ??0message_not_found@Concurrency@@QAE@XZ@0 @69 PRIVATE + ??0missing_wait@Concurrency@@QAE@PBD@Z@0 @70 PRIVATE + ??0missing_wait@Concurrency@@QAE@XZ@0 @71 PRIVATE + ??0nested_scheduler_missing_detach@Concurrency@@QAE@PBD@Z@0 @72 PRIVATE + ??0nested_scheduler_missing_detach@Concurrency@@QAE@XZ@0 @73 PRIVATE + ??0operation_timed_out@Concurrency@@QAE@PBD@Z@0 @74 PRIVATE + ??0operation_timed_out@Concurrency@@QAE@XZ@0 @75 PRIVATE + ??0reader_writer_lock@Concurrency@@QAE@XZ@4=__thiscall_reader_writer_lock_ctor @76 + ??0scheduler_not_attached@Concurrency@@QAE@PBD@Z@0 @77 PRIVATE + ??0scheduler_not_attached@Concurrency@@QAE@XZ@0 @78 PRIVATE + ??0scheduler_resource_allocation_error@Concurrency@@QAE@J@Z@8=__thiscall_scheduler_resource_allocation_error_ctor @79 + ??0scheduler_resource_allocation_error@Concurrency@@QAE@PBDJ@Z@12=__thiscall_scheduler_resource_allocation_error_ctor_name @80 + ??0scheduler_worker_creation_error@Concurrency@@QAE@J@Z@0 @81 PRIVATE + ??0scheduler_worker_creation_error@Concurrency@@QAE@PBDJ@Z@0 @82 PRIVATE + ??0scoped_lock@critical_section@Concurrency@@QAE@AAV12@@Z@8=__thiscall_critical_section_scoped_lock_ctor @83 + ??0scoped_lock@reader_writer_lock@Concurrency@@QAE@AAV12@@Z@8=__thiscall_reader_writer_lock_scoped_lock_ctor @84 + ??0scoped_lock_read@reader_writer_lock@Concurrency@@QAE@AAV12@@Z@8=__thiscall_reader_writer_lock_scoped_lock_read_ctor @85 + ??0task_canceled@Concurrency@@QAE@PBD@Z@0 @86 PRIVATE + ??0task_canceled@Concurrency@@QAE@XZ@0 @87 PRIVATE + ??0unsupported_os@Concurrency@@QAE@PBD@Z@0 @88 PRIVATE + ??0unsupported_os@Concurrency@@QAE@XZ@0 @89 PRIVATE + ??1SchedulerPolicy@Concurrency@@QAE@XZ@4=__thiscall_SchedulerPolicy_dtor @90 + ??1_Cancellation_beacon@details@Concurrency@@QAE@XZ@0 @91 PRIVATE + ??1_Condition_variable@details@Concurrency@@QAE@XZ@4=__thiscall__Condition_variable_dtor @92 + ??1_NonReentrantBlockingLock@details@Concurrency@@QAE@XZ@4=__thiscall__ReentrantBlockingLock_dtor @93 + ??1_ReentrantBlockingLock@details@Concurrency@@QAE@XZ@4=__thiscall__ReentrantBlockingLock_dtor @94 + ??1_Scoped_lock@_NonReentrantPPLLock@details@Concurrency@@QAE@XZ@4=__thiscall__NonReentrantPPLLock__Scoped_lock_dtor @95 + ??1_Scoped_lock@_ReentrantPPLLock@details@Concurrency@@QAE@XZ@4=__thiscall__ReentrantPPLLock__Scoped_lock_dtor @96 + ??1_SpinLock@details@Concurrency@@QAE@XZ@0 @97 PRIVATE + ??1_StructuredTaskCollection@details@Concurrency@@QAE@XZ@0 @98 PRIVATE + ??1_TaskCollection@details@Concurrency@@QAE@XZ@0 @99 PRIVATE + ??1_Timer@details@Concurrency@@MAE@XZ@0 @100 PRIVATE + ??1__non_rtti_object@std@@UAE@XZ@4=__thiscall_MSVCRT___non_rtti_object_dtor @101 + ??1bad_cast@std@@UAE@XZ@4=__thiscall_MSVCRT_bad_cast_dtor @102 + ??1bad_typeid@std@@UAE@XZ@4=__thiscall_MSVCRT_bad_typeid_dtor @103 + ??1critical_section@Concurrency@@QAE@XZ@4=__thiscall_critical_section_dtor @104 + ??1event@Concurrency@@QAE@XZ@4=__thiscall_event_dtor @105 + ??1exception@std@@UAE@XZ@4=__thiscall_MSVCRT_exception_dtor @106 + ??1reader_writer_lock@Concurrency@@QAE@XZ@4=__thiscall_reader_writer_lock_dtor @107 + ??1scoped_lock@critical_section@Concurrency@@QAE@XZ@4=__thiscall_critical_section_scoped_lock_dtor @108 + ??1scoped_lock@reader_writer_lock@Concurrency@@QAE@XZ@4=__thiscall_reader_writer_lock_scoped_lock_dtor @109 + ??1scoped_lock_read@reader_writer_lock@Concurrency@@QAE@XZ@4=__thiscall_reader_writer_lock_scoped_lock_read_dtor @110 + ??1type_info@@UAE@XZ@4=__thiscall_MSVCRT_type_info_dtor @111 + ??2@YAPAXI@Z=MSVCRT_operator_new @112 + ??2@YAPAXIHPBDH@Z=MSVCRT_operator_new_dbg @113 + ??3@YAXPAX@Z=MSVCRT_operator_delete @114 + ??3@YAXPAXHPBDH@Z@0 @115 PRIVATE + ??4?$_SpinWait@$00@details@Concurrency@@QAEAAV012@ABV012@@Z@0 @116 PRIVATE + ??4?$_SpinWait@$0A@@details@Concurrency@@QAEAAV012@ABV012@@Z@0 @117 PRIVATE + ??4SchedulerPolicy@Concurrency@@QAEAAV01@ABV01@@Z@8=__thiscall_SchedulerPolicy_op_assign @118 + ??4__non_rtti_object@std@@QAEAAV01@ABV01@@Z@8=__thiscall_MSVCRT___non_rtti_object_opequals @119 + ??4bad_cast@std@@QAEAAV01@ABV01@@Z@8=__thiscall_MSVCRT_bad_cast_opequals @120 + ??4bad_typeid@std@@QAEAAV01@ABV01@@Z@8=__thiscall_MSVCRT_bad_typeid_opequals @121 + ??4exception@std@@QAEAAV01@ABV01@@Z@8=__thiscall_MSVCRT_exception_opequals @122 + ??8type_info@@QBE_NABV0@@Z@8=__thiscall_MSVCRT_type_info_opequals_equals @123 + ??9type_info@@QBE_NABV0@@Z@8=__thiscall_MSVCRT_type_info_opnot_equals @124 + ??_7__non_rtti_object@std@@6B@=MSVCRT___non_rtti_object_vtable @125 DATA + ??_7bad_cast@std@@6B@=MSVCRT_bad_cast_vtable @126 DATA + ??_7bad_typeid@std@@6B@=MSVCRT_bad_typeid_vtable @127 DATA + ??_7exception@std@@6B@=MSVCRT_exception_vtable @128 DATA + ??_F?$_SpinWait@$00@details@Concurrency@@QAEXXZ@4=__thiscall_SpinWait_dtor @129 + ??_F?$_SpinWait@$0A@@details@Concurrency@@QAEXXZ@4=__thiscall_SpinWait_dtor @130 + ??_F_Context@details@Concurrency@@QAEXXZ@0 @131 PRIVATE + ??_F_Scheduler@details@Concurrency@@QAEXXZ@4=__thiscall__Scheduler_ctor @132 + ??_Fbad_cast@std@@QAEXXZ@4=__thiscall_MSVCRT_bad_cast_default_ctor @133 + ??_Fbad_typeid@std@@QAEXXZ@4=__thiscall_MSVCRT_bad_typeid_default_ctor @134 + ??_U@YAPAXI@Z=MSVCRT_operator_new @135 + ??_U@YAPAXIHPBDH@Z=MSVCRT_operator_new_dbg @136 + ??_V@YAXPAX@Z=MSVCRT_operator_delete @137 + ??_V@YAXPAXHPBDH@Z@0 @138 PRIVATE + ?Alloc@Concurrency@@YAPAXI@Z=Concurrency_Alloc @139 + ?Block@Context@Concurrency@@SAXXZ=Context_Block @140 + ?CaptureCallstack@platform@details@Concurrency@@YAIPAPAXII@Z@0 @141 PRIVATE + ?Create@CurrentScheduler@Concurrency@@SAXABVSchedulerPolicy@2@@Z=CurrentScheduler_Create @142 + ?Create@Scheduler@Concurrency@@SAPAV12@ABVSchedulerPolicy@2@@Z=Scheduler_Create @143 + ?CreateResourceManager@Concurrency@@YAPAUIResourceManager@1@XZ@0 @144 PRIVATE + ?CreateScheduleGroup@CurrentScheduler@Concurrency@@SAPAVScheduleGroup@2@AAVlocation@2@@Z=CurrentScheduler_CreateScheduleGroup_loc @145 + ?CreateScheduleGroup@CurrentScheduler@Concurrency@@SAPAVScheduleGroup@2@XZ=CurrentScheduler_CreateScheduleGroup @146 + ?CurrentContext@Context@Concurrency@@SAPAV12@XZ=Context_CurrentContext @147 + ?Detach@CurrentScheduler@Concurrency@@SAXXZ=CurrentScheduler_Detach @148 + ?DisableTracing@Concurrency@@YAJXZ@0 @149 PRIVATE + ?EnableTracing@Concurrency@@YAJXZ@0 @150 PRIVATE + ?Free@Concurrency@@YAXPAX@Z=Concurrency_Free @151 + ?Get@CurrentScheduler@Concurrency@@SAPAVScheduler@2@XZ=CurrentScheduler_Get @152 + ?GetCurrentThreadId@platform@details@Concurrency@@YAJXZ=kernel32.GetCurrentThreadId @153 + ?GetExecutionContextId@Concurrency@@YAIXZ@0 @154 PRIVATE + ?GetNumberOfVirtualProcessors@CurrentScheduler@Concurrency@@SAIXZ=CurrentScheduler_GetNumberOfVirtualProcessors @155 + ?GetOSVersion@Concurrency@@YA?AW4OSVersion@IResourceManager@1@XZ@0 @156 PRIVATE + ?GetPolicy@CurrentScheduler@Concurrency@@SA?AVSchedulerPolicy@2@XZ=CurrentScheduler_GetPolicy @157 + ?GetPolicyValue@SchedulerPolicy@Concurrency@@QBEIW4PolicyElementKey@2@@Z@8=__thiscall_SchedulerPolicy_GetPolicyValue @158 + ?GetProcessorCount@Concurrency@@YAIXZ@0 @159 PRIVATE + ?GetProcessorNodeCount@Concurrency@@YAIXZ@0 @160 PRIVATE + ?GetSchedulerId@Concurrency@@YAIXZ@0 @161 PRIVATE + ?GetSharedTimerQueue@details@Concurrency@@YAPAXXZ@0 @162 PRIVATE + ?Id@Context@Concurrency@@SAIXZ=Context_Id @163 + ?Id@CurrentScheduler@Concurrency@@SAIXZ=CurrentScheduler_Id @164 + ?IsAvailableLocation@CurrentScheduler@Concurrency@@SA_NABVlocation@2@@Z=CurrentScheduler_IsAvailableLocation @165 + ?IsCurrentTaskCollectionCanceling@Context@Concurrency@@SA_NXZ=Context_IsCurrentTaskCollectionCanceling @166 + ?Log2@details@Concurrency@@YAKI@Z@0 @167 PRIVATE + ?Oversubscribe@Context@Concurrency@@SAX_N@Z=Context_Oversubscribe @168 + ?RegisterShutdownEvent@CurrentScheduler@Concurrency@@SAXPAX@Z=CurrentScheduler_RegisterShutdownEvent @169 + ?ResetDefaultSchedulerPolicy@Scheduler@Concurrency@@SAXXZ=Scheduler_ResetDefaultSchedulerPolicy @170 + ?ScheduleGroupId@Context@Concurrency@@SAIXZ=Context_ScheduleGroupId @171 + ?ScheduleTask@CurrentScheduler@Concurrency@@SAXP6AXPAX@Z0@Z=CurrentScheduler_ScheduleTask @172 + ?ScheduleTask@CurrentScheduler@Concurrency@@SAXP6AXPAX@Z0AAVlocation@2@@Z=CurrentScheduler_ScheduleTask_loc @173 + ?SetConcurrencyLimits@SchedulerPolicy@Concurrency@@QAEXII@Z@12=__thiscall_SchedulerPolicy_SetConcurrencyLimits @174 + ?SetDefaultSchedulerPolicy@Scheduler@Concurrency@@SAXABVSchedulerPolicy@2@@Z=Scheduler_SetDefaultSchedulerPolicy @175 + ?SetPolicyValue@SchedulerPolicy@Concurrency@@QAEIW4PolicyElementKey@2@I@Z@12=__thiscall_SchedulerPolicy_SetPolicyValue @176 + ?VirtualProcessorId@Context@Concurrency@@SAIXZ=Context_VirtualProcessorId @177 + ?Yield@Context@Concurrency@@SAXXZ=Context_Yield @178 + ?_Abort@_StructuredTaskCollection@details@Concurrency@@AAEXXZ@0 @179 PRIVATE + ?_Acquire@_NonReentrantBlockingLock@details@Concurrency@@QAEXXZ@4=__thiscall__ReentrantBlockingLock__Acquire @180 + ?_Acquire@_NonReentrantPPLLock@details@Concurrency@@QAEXPAX@Z@8=__thiscall__NonReentrantPPLLock__Acquire @181 + ?_Acquire@_ReentrantBlockingLock@details@Concurrency@@QAEXXZ@4=__thiscall__ReentrantBlockingLock__Acquire @182 + ?_Acquire@_ReentrantLock@details@Concurrency@@QAEXXZ@0 @183 PRIVATE + ?_Acquire@_ReentrantPPLLock@details@Concurrency@@QAEXPAX@Z@8=__thiscall__ReentrantPPLLock__Acquire @184 + ?_AcquireRead@_ReaderWriterLock@details@Concurrency@@QAEXXZ@0 @185 PRIVATE + ?_AcquireWrite@_ReaderWriterLock@details@Concurrency@@QAEXXZ@0 @186 PRIVATE + ?_Cancel@_StructuredTaskCollection@details@Concurrency@@QAEXXZ@0 @187 PRIVATE + ?_Cancel@_TaskCollection@details@Concurrency@@QAEXXZ@0 @188 PRIVATE + ?_CheckTaskCollection@_UnrealizedChore@details@Concurrency@@IAEXXZ@0 @189 PRIVATE + ?_CleanupToken@_StructuredTaskCollection@details@Concurrency@@AAEXXZ@0 @190 PRIVATE + ?_ConcRT_Assert@details@Concurrency@@YAXPBD0H@Z@0 @191 PRIVATE + ?_ConcRT_CoreAssert@details@Concurrency@@YAXPBD0H@Z@0 @192 PRIVATE + ?_ConcRT_DumpMessage@details@Concurrency@@YAXPB_WZZ@0 @193 PRIVATE + ?_ConcRT_Trace@details@Concurrency@@YAXHPB_WZZ@0 @194 PRIVATE + ?_Confirm_cancel@_Cancellation_beacon@details@Concurrency@@QAE_NXZ@0 @195 PRIVATE + ?_Copy_str@exception@std@@AAEXPBD@Z@0 @196 PRIVATE + ?_CurrentContext@_Context@details@Concurrency@@SA?AV123@XZ@0 @197 PRIVATE + ?_Current_node@location@Concurrency@@SA?AV12@XZ@0 @198 PRIVATE + ?_Destroy@_AsyncTaskCollection@details@Concurrency@@EAEXXZ@0 @199 PRIVATE + ?_Destroy@_CancellationTokenState@details@Concurrency@@EAEXXZ@0 @200 PRIVATE + ?_DoYield@?$_SpinWait@$00@details@Concurrency@@IAEXXZ@4=__thiscall_SpinWait__DoYield @201 + ?_DoYield@?$_SpinWait@$0A@@details@Concurrency@@IAEXXZ@4=__thiscall_SpinWait__DoYield @202 + ?_Get@_CurrentScheduler@details@Concurrency@@SA?AV_Scheduler@23@XZ=_CurrentScheduler__Get @203 + ?_GetConcRTTraceInfo@Concurrency@@YAPBU_CONCRT_TRACE_INFO@details@1@XZ@0 @204 PRIVATE + ?_GetConcurrency@details@Concurrency@@YAIXZ=_GetConcurrency @205 + ?_GetCurrentInlineDepth@_StackGuard@details@Concurrency@@CAAAIXZ@0 @206 PRIVATE + ?_GetNumberOfVirtualProcessors@_CurrentScheduler@details@Concurrency@@SAIXZ=_CurrentScheduler__GetNumberOfVirtualProcessors @207 + ?_GetScheduler@_Scheduler@details@Concurrency@@QAEPAVScheduler@3@XZ@4=__thiscall__Scheduler__GetScheduler @208 + ?_Id@_CurrentScheduler@details@Concurrency@@SAIXZ=_CurrentScheduler__Id @209 + ?_IsCanceling@_StructuredTaskCollection@details@Concurrency@@QAE_NXZ@0 @210 PRIVATE + ?_IsCanceling@_TaskCollection@details@Concurrency@@QAE_NXZ@0 @211 PRIVATE + ?_IsSynchronouslyBlocked@_Context@details@Concurrency@@QBE_NXZ@0 @212 PRIVATE + ?_Name_base@type_info@@CAPBDPBV1@PAU__type_info_node@@@Z@0 @213 PRIVATE + ?_Name_base_internal@type_info@@CAPBDPBV1@PAU__type_info_node@@@Z@0 @214 PRIVATE + ?_NewCollection@_AsyncTaskCollection@details@Concurrency@@SAPAV123@PAV_CancellationTokenState@23@@Z@0 @215 PRIVATE + ?_NumberOfSpins@?$_SpinWait@$00@details@Concurrency@@IAEKXZ@4=__thiscall_SpinWait__NumberOfSpins @216 + ?_NumberOfSpins@?$_SpinWait@$0A@@details@Concurrency@@IAEKXZ@4=__thiscall_SpinWait__NumberOfSpins @217 + ?_Oversubscribe@_Context@details@Concurrency@@SAX_N@Z@0 @218 PRIVATE + ?_Reference@_Scheduler@details@Concurrency@@QAEIXZ@4=__thiscall__Scheduler__Reference @219 + ?_Release@_NonReentrantBlockingLock@details@Concurrency@@QAEXXZ@4=__thiscall__ReentrantBlockingLock__Release @220 + ?_Release@_NonReentrantPPLLock@details@Concurrency@@QAEXXZ@4=__thiscall__NonReentrantPPLLock__Release @221 + ?_Release@_ReentrantBlockingLock@details@Concurrency@@QAEXXZ@4=__thiscall__ReentrantBlockingLock__Release @222 + ?_Release@_ReentrantLock@details@Concurrency@@QAEXXZ@0 @223 PRIVATE + ?_Release@_ReentrantPPLLock@details@Concurrency@@QAEXXZ@4=__thiscall__ReentrantPPLLock__Release @224 + ?_Release@_Scheduler@details@Concurrency@@QAEIXZ@4=__thiscall__Scheduler__Release @225 + ?_ReleaseRead@_ReaderWriterLock@details@Concurrency@@QAEXXZ@0 @226 PRIVATE + ?_ReleaseWrite@_ReaderWriterLock@details@Concurrency@@QAEXXZ@0 @227 PRIVATE + ?_ReportUnobservedException@details@Concurrency@@YAXXZ@0 @228 PRIVATE + ?_Reset@?$_SpinWait@$00@details@Concurrency@@IAEXXZ@4=__thiscall_SpinWait__Reset @229 + ?_Reset@?$_SpinWait@$0A@@details@Concurrency@@IAEXXZ@4=__thiscall_SpinWait__Reset @230 + ?_RunAndWait@_StructuredTaskCollection@details@Concurrency@@QAG?AW4_TaskCollectionStatus@23@PAV_UnrealizedChore@23@@Z@0 @231 PRIVATE + ?_RunAndWait@_TaskCollection@details@Concurrency@@QAG?AW4_TaskCollectionStatus@23@PAV_UnrealizedChore@23@@Z@0 @232 PRIVATE + ?_Schedule@_StructuredTaskCollection@details@Concurrency@@QAEXPAV_UnrealizedChore@23@@Z@0 @233 PRIVATE + ?_Schedule@_StructuredTaskCollection@details@Concurrency@@QAEXPAV_UnrealizedChore@23@PAVlocation@3@@Z@0 @234 PRIVATE + ?_Schedule@_TaskCollection@details@Concurrency@@QAEXPAV_UnrealizedChore@23@@Z@0 @235 PRIVATE + ?_Schedule@_TaskCollection@details@Concurrency@@QAEXPAV_UnrealizedChore@23@PAVlocation@3@@Z@0 @236 PRIVATE + ?_ScheduleTask@_CurrentScheduler@details@Concurrency@@SAXP6AXPAX@Z0@Z=_CurrentScheduler__ScheduleTask @237 + ?_SetSpinCount@?$_SpinWait@$00@details@Concurrency@@QAEXI@Z@8=__thiscall_SpinWait__SetSpinCount @238 + ?_SetSpinCount@?$_SpinWait@$0A@@details@Concurrency@@QAEXI@Z@8=__thiscall_SpinWait__SetSpinCount @239 + ?_SetUnobservedExceptionHandler@details@Concurrency@@YAXP6AXXZ@Z@0 @240 PRIVATE + ?_ShouldSpinAgain@?$_SpinWait@$00@details@Concurrency@@IAE_NXZ@4=__thiscall_SpinWait__ShouldSpinAgain @241 + ?_ShouldSpinAgain@?$_SpinWait@$0A@@details@Concurrency@@IAE_NXZ@4=__thiscall_SpinWait__ShouldSpinAgain @242 + ?_SpinOnce@?$_SpinWait@$00@details@Concurrency@@QAE_NXZ@4=__thiscall_SpinWait__SpinOnce @243 + ?_SpinOnce@?$_SpinWait@$0A@@details@Concurrency@@QAE_NXZ@4=__thiscall_SpinWait__SpinOnce @244 + ?_SpinYield@Context@Concurrency@@SAXXZ=Context__SpinYield @245 + ?_Start@_Timer@details@Concurrency@@IAEXXZ@0 @246 PRIVATE + ?_Stop@_Timer@details@Concurrency@@IAEXXZ@0 @247 PRIVATE + ?_Tidy@exception@std@@AAEXXZ@0 @248 PRIVATE + ?_Trace_agents@Concurrency@@YAXW4Agents_EventType@1@_JZZ=_Trace_agents @249 + ?_Trace_ppl_function@Concurrency@@YAXABU_GUID@@EW4ConcRT_EventType@1@@Z=Concurrency__Trace_ppl_function @250 + ?_TryAcquire@_NonReentrantBlockingLock@details@Concurrency@@QAE_NXZ@4=__thiscall__ReentrantBlockingLock__TryAcquire @251 + ?_TryAcquire@_ReentrantBlockingLock@details@Concurrency@@QAE_NXZ@4=__thiscall__ReentrantBlockingLock__TryAcquire @252 + ?_TryAcquire@_ReentrantLock@details@Concurrency@@QAE_NXZ@0 @253 PRIVATE + ?_TryAcquireWrite@_ReaderWriterLock@details@Concurrency@@QAE_NXZ@0 @254 PRIVATE + ?_Type_info_dtor@type_info@@CAXPAV1@@Z@0 @255 PRIVATE + ?_Type_info_dtor_internal@type_info@@CAXPAV1@@Z@0 @256 PRIVATE + ?_UnderlyingYield@details@Concurrency@@YAXXZ@0 @257 PRIVATE + ?_ValidateExecute@@YAHP6GHXZ@Z@0 @258 PRIVATE + ?_ValidateRead@@YAHPBXI@Z@0 @259 PRIVATE + ?_ValidateWrite@@YAHPAXI@Z@0 @260 PRIVATE + ?_Value@_SpinCount@details@Concurrency@@SAIXZ=SpinCount__Value @261 + ?_Yield@_Context@details@Concurrency@@SAXXZ@0 @262 PRIVATE + ?__ExceptionPtrAssign@@YAXPAXPBX@Z=__ExceptionPtrAssign @263 + ?__ExceptionPtrCompare@@YA_NPBX0@Z=__ExceptionPtrCompare @264 + ?__ExceptionPtrCopy@@YAXPAXPBX@Z=__ExceptionPtrCopy @265 + ?__ExceptionPtrCopyException@@YAXPAXPBX1@Z=__ExceptionPtrCopyException @266 + ?__ExceptionPtrCreate@@YAXPAX@Z=__ExceptionPtrCreate @267 + ?__ExceptionPtrCurrentException@@YAXPAX@Z=__ExceptionPtrCurrentException @268 + ?__ExceptionPtrDestroy@@YAXPAX@Z=__ExceptionPtrDestroy @269 + ?__ExceptionPtrRethrow@@YAXPBX@Z=__ExceptionPtrRethrow @270 + ?__ExceptionPtrSwap@@YAXPAX0@Z@0 @271 PRIVATE + ?__ExceptionPtrToBool@@YA_NPBX@Z=__ExceptionPtrToBool @272 + __uncaught_exception=MSVCRT___uncaught_exception @273 + ?_inconsistency@@YAXXZ@0 @274 PRIVATE + ?_invalid_parameter@@YAXPBG00II@Z=MSVCRT__invalid_parameter @275 + ?_is_exception_typeof@@YAHABVtype_info@@PAU_EXCEPTION_POINTERS@@@Z=_is_exception_typeof @276 + ?_name_internal_method@type_info@@QBEPBDPAU__type_info_node@@@Z@8=__thiscall_type_info_name_internal_method @277 + ?_open@@YAHPBDHH@Z=MSVCRT__open @278 + ?_query_new_handler@@YAP6AHI@ZXZ=MSVCRT__query_new_handler @279 + ?_query_new_mode@@YAHXZ=MSVCRT__query_new_mode @280 + ?_set_new_handler@@YAP6AHI@ZH@Z@0 @281 PRIVATE + ?_set_new_handler@@YAP6AHI@ZP6AHI@Z@Z=MSVCRT__set_new_handler @282 + ?_set_new_mode@@YAHH@Z=MSVCRT__set_new_mode @283 + ?_set_se_translator@@YAP6AXIPAU_EXCEPTION_POINTERS@@@ZH@Z@0 @284 PRIVATE + ?_set_se_translator@@YAP6AXIPAU_EXCEPTION_POINTERS@@@ZP6AXI0@Z@Z=MSVCRT__set_se_translator @285 + ?_sopen@@YAHPBDHHH@Z=MSVCRT__sopen @286 + ?_type_info_dtor_internal_method@type_info@@QAEXXZ@0 @287 PRIVATE + ?_wopen@@YAHPB_WHH@Z=MSVCRT__wopen @288 + ?_wsopen@@YAHPB_WHHH@Z=MSVCRT__wsopen @289 + ?before@type_info@@QBE_NABV1@@Z@8=__thiscall_MSVCRT_type_info_before @290 + ?current@location@Concurrency@@SA?AV12@XZ@0 @291 PRIVATE + ?from_numa_node@location@Concurrency@@SA?AV12@G@Z@0 @292 PRIVATE + ?get_error_code@scheduler_resource_allocation_error@Concurrency@@QBEJXZ@4=__thiscall_scheduler_resource_allocation_error_get_error_code @293 + ?lock@critical_section@Concurrency@@QAEXXZ@4=__thiscall_critical_section_lock @294 + ?lock@reader_writer_lock@Concurrency@@QAEXXZ@4=__thiscall_reader_writer_lock_lock @295 + ?lock_read@reader_writer_lock@Concurrency@@QAEXXZ@4=__thiscall_reader_writer_lock_lock_read @296 + ?name@type_info@@QBEPBDPAU__type_info_node@@@Z@8=__thiscall_type_info_name_internal_method @297 + ?native_handle@critical_section@Concurrency@@QAEAAV12@XZ@4=__thiscall_critical_section_native_handle @298 + ?notify_all@_Condition_variable@details@Concurrency@@QAEXXZ@4=__thiscall__Condition_variable_notify_all @299 + ?notify_one@_Condition_variable@details@Concurrency@@QAEXXZ@4=__thiscall__Condition_variable_notify_one @300 + ?raw_name@type_info@@QBEPBDXZ@4=__thiscall_MSVCRT_type_info_raw_name @301 + ?reset@event@Concurrency@@QAEXXZ@4=__thiscall_event_reset @302 + ?set@event@Concurrency@@QAEXXZ@4=__thiscall_event_set @303 + ?set_new_handler@@YAP6AXXZP6AXXZ@Z=MSVCRT_set_new_handler @304 + ?set_task_execution_resources@Concurrency@@YAXGPAU_GROUP_AFFINITY@@@Z@0 @305 PRIVATE + ?set_task_execution_resources@Concurrency@@YAXK@Z@0 @306 PRIVATE + ?set_terminate@@YAP6AXXZH@Z@0 @307 PRIVATE + ?set_terminate@@YAP6AXXZP6AXXZ@Z=MSVCRT_set_terminate @308 + ?set_unexpected@@YAP6AXXZH@Z@0 @309 PRIVATE + ?set_unexpected@@YAP6AXXZP6AXXZ@Z=MSVCRT_set_unexpected @310 + ?swprintf@@YAHPAGIPBGZZ=MSVCRT__snwprintf @311 + ?swprintf@@YAHPA_WIPB_WZZ=MSVCRT__snwprintf @312 + ?terminate@@YAXXZ=MSVCRT_terminate @313 + ?try_lock@critical_section@Concurrency@@QAE_NXZ@4=__thiscall_critical_section_try_lock @314 + ?try_lock@reader_writer_lock@Concurrency@@QAE_NXZ@4=__thiscall_reader_writer_lock_try_lock @315 + ?try_lock_for@critical_section@Concurrency@@QAE_NI@Z@8=__thiscall_critical_section_try_lock_for @316 + ?try_lock_read@reader_writer_lock@Concurrency@@QAE_NXZ@4=__thiscall_reader_writer_lock_try_lock_read @317 + ?unexpected@@YAXXZ=MSVCRT_unexpected @318 + ?unlock@critical_section@Concurrency@@QAEXXZ@4=__thiscall_critical_section_unlock @319 + ?unlock@reader_writer_lock@Concurrency@@QAEXXZ@4=__thiscall_reader_writer_lock_unlock @320 + ?vswprintf@@YAHPA_WIPB_WPAD@Z=MSVCRT_vsnwprintf @321 + ?wait@Concurrency@@YAXI@Z=Concurrency_wait @322 + ?wait@_Condition_variable@details@Concurrency@@QAEXAAVcritical_section@3@@Z@8=__thiscall__Condition_variable_wait @323 + ?wait@event@Concurrency@@QAEII@Z@4=__thiscall_event_wait @324 + ?wait_for@_Condition_variable@details@Concurrency@@QAE_NAAVcritical_section@3@I@Z@12=__thiscall__Condition_variable_wait_for @325 + ?wait_for_multiple@event@Concurrency@@SAIPAPAV12@I_NI@Z=event_wait_for_multiple @326 + ?what@exception@std@@UBEPBDXZ@4=__thiscall_MSVCRT_what_exception @327 + $I10_OUTPUT=MSVCRT_I10_OUTPUT @328 + _CIacos @329 + _CIasin @330 + _CIatan @331 + _CIatan2 @332 + _CIcos @333 + _CIcosh @334 + _CIexp @335 + _CIfmod @336 + _CIlog @337 + _CIlog10 @338 + _CIpow @339 + _CIsin @340 + _CIsinh @341 + _CIsqrt @342 + _CItan @343 + _CItanh @344 + _CRT_RTC_INIT @345 + _CRT_RTC_INITW @346 + _Cbuild=MSVCR120__Cbuild @347 + _CreateFrameInfo @348 + _CxxThrowException@8 @349 + _EH_prolog @350 + _FCbuild@0 @351 PRIVATE + _FindAndUnlinkFrame @352 + _Getdays @353 + _Getmonths @354 + _Gettnames @355 + _HUGE=MSVCRT__HUGE @356 DATA + _IsExceptionObjectToBeDestroyed @357 + _LCbuild@0 @358 PRIVATE + _NLG_Dispatch2@0 @359 PRIVATE + _NLG_Return@0 @360 PRIVATE + _NLG_Return2@0 @361 PRIVATE + _SetWinRTOutOfMemoryExceptionCallback=MSVCR120__SetWinRTOutOfMemoryExceptionCallback @362 + _Strftime @363 + _W_Getdays @364 + _W_Getmonths @365 + _W_Gettnames @366 + _Wcsftime @367 + _XcptFilter @368 + __AdjustPointer @369 + __BuildCatchObject@0 @370 PRIVATE + __BuildCatchObjectHelper@0 @371 PRIVATE + __CppXcptFilter @372 + __CxxDetectRethrow @373 + __CxxExceptionFilter @374 + __CxxFrameHandler @375 + __CxxFrameHandler2=__CxxFrameHandler @376 + __CxxFrameHandler3=__CxxFrameHandler @377 + __CxxLongjmpUnwind@4 @378 + __CxxQueryExceptionSize @379 + __CxxRegisterExceptionObject @380 + __CxxUnregisterExceptionObject @381 + __DestructExceptionObject @382 + __FrameUnwindFilter@0 @383 PRIVATE + __GetPlatformExceptionInfo@0 @384 PRIVATE + __RTCastToVoid=MSVCRT___RTCastToVoid @385 + __RTDynamicCast=MSVCRT___RTDynamicCast @386 + __RTtypeid=MSVCRT___RTtypeid @387 + __STRINGTOLD @388 + __STRINGTOLD_L@0 @389 PRIVATE + __TypeMatch@0 @390 PRIVATE + ___lc_codepage_func @391 + ___lc_collate_cp_func @392 + ___lc_locale_name_func @393 + ___mb_cur_max_func=MSVCRT____mb_cur_max_func @394 + ___mb_cur_max_l_func @395 + ___setlc_active_func=MSVCRT____setlc_active_func @396 + ___unguarded_readlc_active_add_func=MSVCRT____unguarded_readlc_active_add_func @397 + __argc=MSVCRT___argc @398 DATA + __argv=MSVCRT___argv @399 DATA + __badioinfo=MSVCRT___badioinfo @400 DATA + __clean_type_info_names_internal @401 + __control87_2 @402 + __create_locale=MSVCRT__create_locale @403 + __crtCompareStringA @404 + __crtCompareStringEx@0 @405 PRIVATE + __crtCompareStringW @406 + __crtCreateEventExW@0 @407 PRIVATE + __crtCreateSemaphoreExW@0 @408 PRIVATE + __crtCreateSymbolicLinkW@0 @409 PRIVATE + __crtEnumSystemLocalesEx@0 @410 PRIVATE + __crtFlsAlloc@0 @411 PRIVATE + __crtFlsFree@0 @412 PRIVATE + __crtFlsGetValue@0 @413 PRIVATE + __crtFlsSetValue@0 @414 PRIVATE + __crtGetDateFormatEx@0 @415 PRIVATE + __crtGetFileInformationByHandleEx@0 @416 PRIVATE + __crtGetLocaleInfoEx @417 + __crtGetShowWindowMode=MSVCR110__crtGetShowWindowMode @418 + __crtGetTickCount64@0 @419 PRIVATE + __crtGetTimeFormatEx@0 @420 PRIVATE + __crtGetUserDefaultLocaleName@0 @421 PRIVATE + __crtInitializeCriticalSectionEx=MSVCR110__crtInitializeCriticalSectionEx @422 + __crtIsPackagedApp@0 @423 PRIVATE + __crtIsValidLocaleName@0 @424 PRIVATE + __crtLCMapStringA @425 + __crtLCMapStringEx@0 @426 PRIVATE + __crtLCMapStringW @427 + __crtSetFileInformationByHandle@0 @428 PRIVATE + __crtSetThreadStackGuarantee@0 @429 PRIVATE + __crtSetUnhandledExceptionFilter=MSVCR110__crtSetUnhandledExceptionFilter @430 + __crtTerminateProcess=MSVCR110__crtTerminateProcess @431 + __crtSleep=MSVCRT__crtSleep @432 + __crtUnhandledException=MSVCRT__crtUnhandledException @433 + __daylight=MSVCRT___p__daylight @434 + __dllonexit @435 + __doserrno=MSVCRT___doserrno @436 + __dstbias=MSVCRT___p__dstbias @437 + __fpecode @438 + __free_locale=MSVCRT__free_locale @439 + __get_current_locale=MSVCRT__get_current_locale @440 + __get_flsindex@0 @441 PRIVATE + __get_tlsindex@0 @442 PRIVATE + __getmainargs @443 + __initenv=MSVCRT___initenv @444 DATA + __iob_func=__p__iob @445 + __isascii=MSVCRT___isascii @446 + __iscsym=MSVCRT___iscsym @447 + __iscsymf=MSVCRT___iscsymf @448 + __iswcsym@0 @449 PRIVATE + __iswcsymf@0 @450 PRIVATE + __lconv_init @451 + __libm_sse2_acos=MSVCRT___libm_sse2_acos @452 + __libm_sse2_acosf=MSVCRT___libm_sse2_acosf @453 + __libm_sse2_asin=MSVCRT___libm_sse2_asin @454 + __libm_sse2_asinf=MSVCRT___libm_sse2_asinf @455 + __libm_sse2_atan=MSVCRT___libm_sse2_atan @456 + __libm_sse2_atan2=MSVCRT___libm_sse2_atan2 @457 + __libm_sse2_atanf=MSVCRT___libm_sse2_atanf @458 + __libm_sse2_cos=MSVCRT___libm_sse2_cos @459 + __libm_sse2_cosf=MSVCRT___libm_sse2_cosf @460 + __libm_sse2_exp=MSVCRT___libm_sse2_exp @461 + __libm_sse2_expf=MSVCRT___libm_sse2_expf @462 + __libm_sse2_log=MSVCRT___libm_sse2_log @463 + __libm_sse2_log10=MSVCRT___libm_sse2_log10 @464 + __libm_sse2_log10f=MSVCRT___libm_sse2_log10f @465 + __libm_sse2_logf=MSVCRT___libm_sse2_logf @466 + __libm_sse2_pow=MSVCRT___libm_sse2_pow @467 + __libm_sse2_powf=MSVCRT___libm_sse2_powf @468 + __libm_sse2_sin=MSVCRT___libm_sse2_sin @469 + __libm_sse2_sinf=MSVCRT___libm_sse2_sinf @470 + __libm_sse2_tan=MSVCRT___libm_sse2_tan @471 + __libm_sse2_tanf=MSVCRT___libm_sse2_tanf @472 + __mb_cur_max=MSVCRT___mb_cur_max @473 DATA + __p___argc=MSVCRT___p___argc @474 + __p___argv=MSVCRT___p___argv @475 + __p___initenv @476 + __p___mb_cur_max @477 + __p___wargv=MSVCRT___p___wargv @478 + __p___winitenv @479 + __p__acmdln=MSVCRT___p__acmdln @480 + __p__commode @481 + __p__daylight=MSVCRT___p__daylight @482 + __p__dstbias=MSVCRT___p__dstbias @483 + __p__environ=MSVCRT___p__environ @484 + __p__fmode=MSVCRT___p__fmode @485 + __p__iob @486 + __p__mbcasemap@0 @487 PRIVATE + __p__mbctype @488 + __p__pctype=MSVCRT___p__pctype @489 + __p__pgmptr=MSVCRT___p__pgmptr @490 + __p__pwctype@0 @491 PRIVATE + __p__timezone=MSVCRT___p__timezone @492 + __p__tzname @493 + __p__wcmdln=MSVCRT___p__wcmdln @494 + __p__wenviron=MSVCRT___p__wenviron @495 + __p__wpgmptr=MSVCRT___p__wpgmptr @496 + __pctype_func=MSVCRT___pctype_func @497 + __pioinfo=MSVCRT___pioinfo @498 DATA + __pwctype_func@0 @499 PRIVATE + __pxcptinfoptrs=MSVCRT___pxcptinfoptrs @500 + __report_gsfailure@0 @501 PRIVATE + __set_app_type=MSVCRT___set_app_type @502 + __setlc_active=MSVCRT___setlc_active @503 DATA + __setusermatherr=MSVCRT___setusermatherr @504 + __strncnt=MSVCRT___strncnt @505 + __swprintf_l=MSVCRT___swprintf_l @506 + __sys_errlist @507 + __sys_nerr @508 + __threadhandle=kernel32.GetCurrentThread @509 + __threadid=kernel32.GetCurrentThreadId @510 + __timezone=MSVCRT___p__timezone @511 + __toascii=MSVCRT___toascii @512 + __tzname=__p__tzname @513 + __unDName @514 + __unDNameEx @515 + __unDNameHelper@0 @516 PRIVATE + __unguarded_readlc_active=MSVCRT___unguarded_readlc_active @517 DATA + __vswprintf_l=MSVCRT_vswprintf_l @518 + __wargv=MSVCRT___wargv @519 DATA + __wcserror=MSVCRT___wcserror @520 + __wcserror_s=MSVCRT___wcserror_s @521 + __wcsncnt@0 @522 PRIVATE + __wgetmainargs @523 + __winitenv=MSVCRT___winitenv @524 DATA + _abnormal_termination @525 + _abs64 @526 + _access=MSVCRT__access @527 + _access_s=MSVCRT__access_s @528 + _acmdln=MSVCRT__acmdln @529 DATA + _aligned_free @530 + _aligned_malloc @531 + _aligned_msize @532 + _aligned_offset_malloc @533 + _aligned_offset_realloc @534 + _aligned_offset_recalloc@0 @535 PRIVATE + _aligned_realloc @536 + _aligned_recalloc@0 @537 PRIVATE + _amsg_exit @538 + _assert=MSVCRT__assert @539 + _atodbl=MSVCRT__atodbl @540 + _atodbl_l=MSVCRT__atodbl_l @541 + _atof_l=MSVCRT__atof_l @542 + _atoflt=MSVCRT__atoflt @543 + _atoflt_l=MSVCRT__atoflt_l @544 + _atoi64=MSVCRT__atoi64 @545 + _atoi64_l=MSVCRT__atoi64_l @546 + _atoi_l=MSVCRT__atoi_l @547 + _atol_l=MSVCRT__atol_l @548 + _atoldbl=MSVCRT__atoldbl @549 + _atoldbl_l@0 @550 PRIVATE + _atoll_l=MSVCRT__atoll_l @551 + _beep=MSVCRT__beep @552 + _beginthread @553 + _beginthreadex @554 + _byteswap_uint64 @555 + _byteswap_ulong=MSVCRT__byteswap_ulong @556 + _byteswap_ushort @557 + _c_exit=MSVCRT__c_exit @558 + _cabs=MSVCRT__cabs @559 + _callnewh @560 + _calloc_crt=MSVCRT_calloc @561 + _cexit=MSVCRT__cexit @562 + _cgets @563 + _cgets_s@0 @564 PRIVATE + _cgetws@0 @565 PRIVATE + _cgetws_s@0 @566 PRIVATE + _chdir=MSVCRT__chdir @567 + _chdrive=MSVCRT__chdrive @568 + _chgsign=MSVCRT__chgsign @569 + _chgsignf=MSVCRT__chgsignf @570 + _chkesp @571 + _chmod=MSVCRT__chmod @572 + _chsize=MSVCRT__chsize @573 + _chsize_s=MSVCRT__chsize_s @574 + _clearfp @575 + _close=MSVCRT__close @576 + _commit=MSVCRT__commit @577 + _commode=MSVCRT__commode @578 DATA + _configthreadlocale @579 + _control87 @580 + _controlfp @581 + _controlfp_s @582 + _copysign=MSVCRT__copysign @583 + _copysignf=MSVCRT__copysignf @584 + _cprintf @585 + _cprintf_l@0 @586 PRIVATE + _cprintf_p@0 @587 PRIVATE + _cprintf_p_l@0 @588 PRIVATE + _cprintf_s@0 @589 PRIVATE + _cprintf_s_l@0 @590 PRIVATE + _cputs @591 + _cputws @592 + _creat=MSVCRT__creat @593 + _create_locale=MSVCRT__create_locale @594 + _crt_debugger_hook=MSVCRT__crt_debugger_hook @595 + _cscanf @596 + _cscanf_l @597 + _cscanf_s @598 + _cscanf_s_l @599 + _ctime32=MSVCRT__ctime32 @600 + _ctime32_s=MSVCRT__ctime32_s @601 + _ctime64=MSVCRT__ctime64 @602 + _ctime64_s=MSVCRT__ctime64_s @603 + _cwait @604 + _cwprintf @605 + _cwprintf_l@0 @606 PRIVATE + _cwprintf_p@0 @607 PRIVATE + _cwprintf_p_l@0 @608 PRIVATE + _cwprintf_s@0 @609 PRIVATE + _cwprintf_s_l@0 @610 PRIVATE + _cwscanf @611 + _cwscanf_l @612 + _cwscanf_s @613 + _cwscanf_s_l @614 + _daylight=MSVCRT___daylight @615 DATA + _dclass=MSVCR120__dclass @616 + _difftime32=MSVCRT__difftime32 @617 + _difftime64=MSVCRT__difftime64 @618 + _dosmaperr@0 @619 PRIVATE + _dpcomp=MSVCR120__dpcomp @620 + _dsign=MSVCR120__dsign @621 + _dstbias=MSVCRT__dstbias @622 DATA + _dtest=MSVCR120__dtest @623 + _dup=MSVCRT__dup @624 + _dup2=MSVCRT__dup2 @625 + _dupenv_s @626 + _ecvt=MSVCRT__ecvt @627 + _ecvt_s=MSVCRT__ecvt_s @628 + _endthread @629 + _endthreadex @630 + _environ=MSVCRT__environ @631 DATA + _eof=MSVCRT__eof @632 + _errno=MSVCRT__errno @633 + _except1 @634 + _except_handler2 @635 + _except_handler3 @636 + _except_handler4_common @637 + _execl @638 + _execle @639 + _execlp @640 + _execlpe @641 + _execv @642 + _execve=MSVCRT__execve @643 + _execvp @644 + _execvpe @645 + _exit=MSVCRT__exit @646 + _expand @647 + _fclose_nolock=MSVCRT__fclose_nolock @648 + _fcloseall=MSVCRT__fcloseall @649 + _fcvt=MSVCRT__fcvt @650 + _fcvt_s=MSVCRT__fcvt_s @651 + _fdclass=MSVCR120__fdclass @652 + _fdopen=MSVCRT__fdopen @653 + _fdpcomp=MSVCR120__fdpcomp @654 + _fdsign=MSVCR120__fdsign @655 + _fdtest=MSVCR120__fdtest @656 + _fflush_nolock=MSVCRT__fflush_nolock @657 + _fgetc_nolock=MSVCRT__fgetc_nolock @658 + _fgetchar=MSVCRT__fgetchar @659 + _fgetwc_nolock=MSVCRT__fgetwc_nolock @660 + _fgetwchar=MSVCRT__fgetwchar @661 + _filbuf=MSVCRT__filbuf @662 + _filelength=MSVCRT__filelength @663 + _filelengthi64=MSVCRT__filelengthi64 @664 + _fileno=MSVCRT__fileno @665 + _findclose=MSVCRT__findclose @666 + _findfirst32=MSVCRT__findfirst32 @667 + _findfirst32i64@0 @668 PRIVATE + _findfirst64=MSVCRT__findfirst64 @669 + _findfirst64i32=MSVCRT__findfirst64i32 @670 + _findnext32=MSVCRT__findnext32 @671 + _findnext32i64@0 @672 PRIVATE + _findnext64=MSVCRT__findnext64 @673 + _findnext64i32=MSVCRT__findnext64i32 @674 + _finite=MSVCRT__finite @675 + _flsbuf=MSVCRT__flsbuf @676 + _flushall=MSVCRT__flushall @677 + _fmode=MSVCRT__fmode @678 DATA + _fpclass=MSVCRT__fpclass @679 + _fpieee_flt @680 + _fpreset @681 + _fprintf_l@0 @682 PRIVATE + _fprintf_p@0 @683 PRIVATE + _fprintf_p_l@0 @684 PRIVATE + _fprintf_s_l@0 @685 PRIVATE + _fputc_nolock=MSVCRT__fputc_nolock @686 + _fputchar=MSVCRT__fputchar @687 + _fputwc_nolock=MSVCRT__fputwc_nolock @688 + _fputwchar=MSVCRT__fputwchar @689 + _fread_nolock=MSVCRT__fread_nolock @690 + _fread_nolock_s=MSVCRT__fread_nolock_s @691 + _free_locale=MSVCRT__free_locale @692 + _freea@0 @693 PRIVATE + _freea_s@0 @694 PRIVATE + _freefls@0 @695 PRIVATE + _fscanf_l=MSVCRT__fscanf_l @696 + _fscanf_s_l=MSVCRT__fscanf_s_l @697 + _fseek_nolock=MSVCRT__fseek_nolock @698 + _fseeki64=MSVCRT__fseeki64 @699 + _fseeki64_nolock=MSVCRT__fseeki64_nolock @700 + _fsopen=MSVCRT__fsopen @701 + _fstat32=MSVCRT__fstat32 @702 + _fstat32i64=MSVCRT__fstat32i64 @703 + _fstat64=MSVCRT__fstat64 @704 + _fstat64i32=MSVCRT__fstat64i32 @705 + _ftell_nolock=MSVCRT__ftell_nolock @706 + _ftelli64=MSVCRT__ftelli64 @707 + _ftelli64_nolock=MSVCRT__ftelli64_nolock @708 + _ftime32=MSVCRT__ftime32 @709 + _ftime32_s=MSVCRT__ftime32_s @710 + _ftime64=MSVCRT__ftime64 @711 + _ftime64_s=MSVCRT__ftime64_s @712 + _ftol=MSVCRT__ftol @713 + _fullpath=MSVCRT__fullpath @714 + _futime32 @715 + _futime64 @716 + _fwprintf_l=MSVCRT__fwprintf_l @717 + _fwprintf_p@0 @718 PRIVATE + _fwprintf_p_l@0 @719 PRIVATE + _fwprintf_s_l@0 @720 PRIVATE + _fwrite_nolock=MSVCRT__fwrite_nolock @721 + _fwscanf_l=MSVCRT__fwscanf_l @722 + _fwscanf_s_l=MSVCRT__fwscanf_s_l @723 + _gcvt=MSVCRT__gcvt @724 + _gcvt_s=MSVCRT__gcvt_s @725 + _get_current_locale=MSVCRT__get_current_locale @726 + _get_daylight @727 + _get_doserrno @728 + _get_dstbias=MSVCRT__get_dstbias @729 + _get_errno @730 + _get_fmode=MSVCRT__get_fmode @731 + _get_heap_handle @732 + _get_invalid_parameter_handler @733 + _get_osfhandle=MSVCRT__get_osfhandle @734 + _get_output_format=MSVCRT__get_output_format @735 + _get_pgmptr @736 + _get_printf_count_output=MSVCRT__get_printf_count_output @737 + _get_purecall_handler @738 + _get_terminate=MSVCRT__get_terminate @739 + _get_timezone @740 + _get_tzname=MSVCRT__get_tzname @741 + _get_unexpected=MSVCRT__get_unexpected @742 + _get_wpgmptr @743 + _getc_nolock=MSVCRT__fgetc_nolock @744 + _getch @745 + _getch_nolock @746 + _getche @747 + _getche_nolock @748 + _getcwd=MSVCRT__getcwd @749 + _getdcwd=MSVCRT__getdcwd @750 + _getdiskfree=MSVCRT__getdiskfree @751 + _getdllprocaddr @752 + _getdrive=MSVCRT__getdrive @753 + _getdrives=kernel32.GetLogicalDrives @754 + _getmaxstdio=MSVCRT__getmaxstdio @755 + _getmbcp @756 + _getpid @757 + _getptd @758 + _getsystime@4 @759 PRIVATE + _getw=MSVCRT__getw @760 + _getwc_nolock=MSVCRT__fgetwc_nolock @761 + _getwch @762 + _getwch_nolock @763 + _getwche @764 + _getwche_nolock @765 + _getws=MSVCRT__getws @766 + _getws_s@0 @767 PRIVATE + _global_unwind2 @768 + _gmtime32=MSVCRT__gmtime32 @769 + _gmtime32_s=MSVCRT__gmtime32_s @770 + _gmtime64=MSVCRT__gmtime64 @771 + _gmtime64_s=MSVCRT__gmtime64_s @772 + _heapadd @773 + _heapchk @774 + _heapmin @775 + _heapset @776 + _heapused@8 @777 PRIVATE + _heapwalk @778 + _hypot @779 + _hypotf=MSVCRT__hypotf @780 + _i64toa=ntdll._i64toa @781 + _i64toa_s=MSVCRT__i64toa_s @782 + _i64tow=ntdll._i64tow @783 + _i64tow_s=MSVCRT__i64tow_s @784 + _initptd@0 @785 PRIVATE + _initterm @786 + _initterm_e @787 + _inp@4 @788 PRIVATE + _inpd@4 @789 PRIVATE + _inpw@4 @790 PRIVATE + _invalid_parameter=MSVCRT__invalid_parameter @791 + _invalid_parameter_noinfo @792 + _invalid_parameter_noinfo_noreturn @793 + _invoke_watson@0 @794 PRIVATE + _iob=MSVCRT__iob @795 DATA + _isalnum_l=MSVCRT__isalnum_l @796 + _isalpha_l=MSVCRT__isalpha_l @797 + _isatty=MSVCRT__isatty @798 + _isblank_l=MSVCRT__isblank_l @799 + _iscntrl_l=MSVCRT__iscntrl_l @800 + _isctype=MSVCRT__isctype @801 + _isctype_l=MSVCRT__isctype_l @802 + _isdigit_l=MSVCRT__isdigit_l @803 + _isgraph_l=MSVCRT__isgraph_l @804 + _isleadbyte_l=MSVCRT__isleadbyte_l @805 + _islower_l=MSVCRT__islower_l @806 + _ismbbalnum@4 @807 PRIVATE + _ismbbalnum_l@0 @808 PRIVATE + _ismbbalpha@4 @809 PRIVATE + _ismbbalpha_l@0 @810 PRIVATE + _ismbbblank@0 @811 PRIVATE + _ismbbblank_l@0 @812 PRIVATE + _ismbbgraph@4 @813 PRIVATE + _ismbbgraph_l@0 @814 PRIVATE + _ismbbkalnum@4 @815 PRIVATE + _ismbbkalnum_l@0 @816 PRIVATE + _ismbbkana @817 + _ismbbkana_l@0 @818 PRIVATE + _ismbbkprint@4 @819 PRIVATE + _ismbbkprint_l@0 @820 PRIVATE + _ismbbkpunct@4 @821 PRIVATE + _ismbbkpunct_l@0 @822 PRIVATE + _ismbblead @823 + _ismbblead_l @824 + _ismbbprint@4 @825 PRIVATE + _ismbbprint_l@0 @826 PRIVATE + _ismbbpunct@4 @827 PRIVATE + _ismbbpunct_l@0 @828 PRIVATE + _ismbbtrail @829 + _ismbbtrail_l @830 + _ismbcalnum @831 + _ismbcalnum_l@0 @832 PRIVATE + _ismbcalpha @833 + _ismbcalpha_l@0 @834 PRIVATE + _ismbcblank@0 @835 PRIVATE + _ismbcblank_l@0 @836 PRIVATE + _ismbcdigit @837 + _ismbcdigit_l@0 @838 PRIVATE + _ismbcgraph @839 + _ismbcgraph_l@0 @840 PRIVATE + _ismbchira @841 + _ismbchira_l@0 @842 PRIVATE + _ismbckata @843 + _ismbckata_l@0 @844 PRIVATE + _ismbcl0 @845 + _ismbcl0_l @846 + _ismbcl1 @847 + _ismbcl1_l @848 + _ismbcl2 @849 + _ismbcl2_l @850 + _ismbclegal @851 + _ismbclegal_l @852 + _ismbclower@4 @853 PRIVATE + _ismbclower_l@0 @854 PRIVATE + _ismbcprint @855 + _ismbcprint_l@0 @856 PRIVATE + _ismbcpunct @857 + _ismbcpunct_l@0 @858 PRIVATE + _ismbcspace @859 + _ismbcspace_l@0 @860 PRIVATE + _ismbcsymbol @861 + _ismbcsymbol_l@0 @862 PRIVATE + _ismbcupper @863 + _ismbcupper_l@0 @864 PRIVATE + _ismbslead @865 + _ismbslead_l@0 @866 PRIVATE + _ismbstrail @867 + _ismbstrail_l@0 @868 PRIVATE + _isnan=MSVCRT__isnan @869 + _isprint_l=MSVCRT__isprint_l @870 + _ispunct_l@0 @871 PRIVATE + _isspace_l=MSVCRT__isspace_l @872 + _isupper_l=MSVCRT__isupper_l @873 + _iswalnum_l=MSVCRT__iswalnum_l @874 + _iswalpha_l=MSVCRT__iswalpha_l @875 + _iswblank_l=MSVCRT__iswblank_l @876 + _iswcntrl_l=MSVCRT__iswcntrl_l @877 + _iswcsym_l@0 @878 PRIVATE + _iswcsymf_l@0 @879 PRIVATE + _iswctype_l=MSVCRT__iswctype_l @880 + _iswdigit_l=MSVCRT__iswdigit_l @881 + _iswgraph_l=MSVCRT__iswgraph_l @882 + _iswlower_l=MSVCRT__iswlower_l @883 + _iswprint_l=MSVCRT__iswprint_l @884 + _iswpunct_l=MSVCRT__iswpunct_l @885 + _iswspace_l=MSVCRT__iswspace_l @886 + _iswupper_l=MSVCRT__iswupper_l @887 + _iswxdigit_l=MSVCRT__iswxdigit_l @888 + _isxdigit_l=MSVCRT__isxdigit_l @889 + _itoa=MSVCRT__itoa @890 + _itoa_s=MSVCRT__itoa_s @891 + _itow=ntdll._itow @892 + _itow_s=MSVCRT__itow_s @893 + _j0=MSVCRT__j0 @894 + _j1=MSVCRT__j1 @895 + _jn=MSVCRT__jn @896 + _kbhit @897 + _ldclass=MSVCR120__ldclass @898 + _ldpcomp=MSVCR120__dpcomp @899 + _ldsign=MSVCR120__dsign @900 + _ldtest=MSVCR120__ldtest @901 + _lfind @902 + _lfind_s @903 + _libm_sse2_acos_precise=MSVCRT___libm_sse2_acos @904 + _libm_sse2_asin_precise=MSVCRT___libm_sse2_asin @905 + _libm_sse2_atan_precise=MSVCRT___libm_sse2_atan @906 + _libm_sse2_cos_precise=MSVCRT___libm_sse2_cos @907 + _libm_sse2_exp_precise=MSVCRT___libm_sse2_exp @908 + _libm_sse2_log10_precise=MSVCRT___libm_sse2_log10 @909 + _libm_sse2_log_precise=MSVCRT___libm_sse2_log @910 + _libm_sse2_pow_precise=MSVCRT___libm_sse2_pow @911 + _libm_sse2_sin_precise=MSVCRT___libm_sse2_sin @912 + _libm_sse2_sqrt_precise=MSVCRT___libm_sse2_sqrt_precise @913 + _libm_sse2_tan_precise=MSVCRT___libm_sse2_tan @914 + _loaddll @915 + _local_unwind2 @916 + _local_unwind4 @917 + _localtime32=MSVCRT__localtime32 @918 + _localtime32_s @919 + _localtime64=MSVCRT__localtime64 @920 + _localtime64_s @921 + _lock @922 + _lock_file=MSVCRT__lock_file @923 + _locking=MSVCRT__locking @924 + _logb=MSVCRT__logb @925 + _longjmpex=MSVCRT_longjmp @926 + _lrotl=MSVCRT__lrotl @927 + _lrotr=MSVCRT__lrotr @928 + _lsearch @929 + _lsearch_s@0 @930 PRIVATE + _lseek=MSVCRT__lseek @931 + _lseeki64=MSVCRT__lseeki64 @932 + _ltoa=ntdll._ltoa @933 + _ltoa_s=MSVCRT__ltoa_s @934 + _ltow=ntdll._ltow @935 + _ltow_s=MSVCRT__ltow_s @936 + _makepath=MSVCRT__makepath @937 + _makepath_s=MSVCRT__makepath_s @938 + _malloc_crt=MSVCRT_malloc @939 + _mbbtombc @940 + _mbbtombc_l@0 @941 PRIVATE + _mbbtype @942 + _mbbtype_l@0 @943 PRIVATE + _mbccpy @944 + _mbccpy_l @945 + _mbccpy_s @946 + _mbccpy_s_l @947 + _mbcjistojms @948 + _mbcjistojms_l@0 @949 PRIVATE + _mbcjmstojis @950 + _mbcjmstojis_l@0 @951 PRIVATE + _mbclen @952 + _mbclen_l@0 @953 PRIVATE + _mbctohira @954 + _mbctohira_l@0 @955 PRIVATE + _mbctokata @956 + _mbctokata_l@0 @957 PRIVATE + _mbctolower @958 + _mbctolower_l@0 @959 PRIVATE + _mbctombb @960 + _mbctombb_l@0 @961 PRIVATE + _mbctoupper @962 + _mbctoupper_l@0 @963 PRIVATE + _mbctype=MSVCRT_mbctype @964 DATA + _mblen_l@0 @965 PRIVATE + _mbsbtype @966 + _mbsbtype_l@0 @967 PRIVATE + _mbscat_s @968 + _mbscat_s_l @969 + _mbschr @970 + _mbschr_l@0 @971 PRIVATE + _mbscmp @972 + _mbscmp_l@0 @973 PRIVATE + _mbscoll @974 + _mbscoll_l @975 + _mbscpy_s @976 + _mbscpy_s_l @977 + _mbscspn @978 + _mbscspn_l@0 @979 PRIVATE + _mbsdec @980 + _mbsdec_l@0 @981 PRIVATE + _mbsicmp @982 + _mbsicmp_l@0 @983 PRIVATE + _mbsicoll @984 + _mbsicoll_l @985 + _mbsinc @986 + _mbsinc_l@0 @987 PRIVATE + _mbslen @988 + _mbslen_l @989 + _mbslwr @990 + _mbslwr_l@0 @991 PRIVATE + _mbslwr_s @992 + _mbslwr_s_l@0 @993 PRIVATE + _mbsnbcat @994 + _mbsnbcat_l@0 @995 PRIVATE + _mbsnbcat_s @996 + _mbsnbcat_s_l@0 @997 PRIVATE + _mbsnbcmp @998 + _mbsnbcmp_l@0 @999 PRIVATE + _mbsnbcnt @1000 + _mbsnbcnt_l@0 @1001 PRIVATE + _mbsnbcoll @1002 + _mbsnbcoll_l @1003 + _mbsnbcpy @1004 + _mbsnbcpy_l@0 @1005 PRIVATE + _mbsnbcpy_s @1006 + _mbsnbcpy_s_l @1007 + _mbsnbicmp @1008 + _mbsnbicmp_l@0 @1009 PRIVATE + _mbsnbicoll @1010 + _mbsnbicoll_l @1011 + _mbsnbset @1012 + _mbsnbset_l@0 @1013 PRIVATE + _mbsnbset_s@0 @1014 PRIVATE + _mbsnbset_s_l@0 @1015 PRIVATE + _mbsncat @1016 + _mbsncat_l@0 @1017 PRIVATE + _mbsncat_s@0 @1018 PRIVATE + _mbsncat_s_l@0 @1019 PRIVATE + _mbsnccnt @1020 + _mbsnccnt_l@0 @1021 PRIVATE + _mbsncmp @1022 + _mbsncmp_l@0 @1023 PRIVATE + _mbsncoll@12 @1024 PRIVATE + _mbsncoll_l@0 @1025 PRIVATE + _mbsncpy @1026 + _mbsncpy_l@0 @1027 PRIVATE + _mbsncpy_s@0 @1028 PRIVATE + _mbsncpy_s_l@0 @1029 PRIVATE + _mbsnextc @1030 + _mbsnextc_l@0 @1031 PRIVATE + _mbsnicmp @1032 + _mbsnicmp_l@0 @1033 PRIVATE + _mbsnicoll@12 @1034 PRIVATE + _mbsnicoll_l@0 @1035 PRIVATE + _mbsninc @1036 + _mbsninc_l@0 @1037 PRIVATE + _mbsnlen @1038 + _mbsnlen_l @1039 + _mbsnset @1040 + _mbsnset_l@0 @1041 PRIVATE + _mbsnset_s@0 @1042 PRIVATE + _mbsnset_s_l@0 @1043 PRIVATE + _mbspbrk @1044 + _mbspbrk_l@0 @1045 PRIVATE + _mbsrchr @1046 + _mbsrchr_l@0 @1047 PRIVATE + _mbsrev @1048 + _mbsrev_l@0 @1049 PRIVATE + _mbsset @1050 + _mbsset_l@0 @1051 PRIVATE + _mbsset_s@0 @1052 PRIVATE + _mbsset_s_l@0 @1053 PRIVATE + _mbsspn @1054 + _mbsspn_l@0 @1055 PRIVATE + _mbsspnp @1056 + _mbsspnp_l@0 @1057 PRIVATE + _mbsstr @1058 + _mbsstr_l@0 @1059 PRIVATE + _mbstok @1060 + _mbstok_l @1061 + _mbstok_s @1062 + _mbstok_s_l @1063 + _mbstowcs_l=MSVCRT__mbstowcs_l @1064 + _mbstowcs_s_l=MSVCRT__mbstowcs_s_l @1065 + _mbstrlen @1066 + _mbstrlen_l @1067 + _mbstrnlen@0 @1068 PRIVATE + _mbstrnlen_l@0 @1069 PRIVATE + _mbsupr @1070 + _mbsupr_l@0 @1071 PRIVATE + _mbsupr_s @1072 + _mbsupr_s_l@0 @1073 PRIVATE + _mbtowc_l=MSVCRT_mbtowc_l @1074 + _memccpy=ntdll._memccpy @1075 + _memicmp=MSVCRT__memicmp @1076 + _memicmp_l=MSVCRT__memicmp_l @1077 + _mkdir=MSVCRT__mkdir @1078 + _mkgmtime32=MSVCRT__mkgmtime32 @1079 + _mkgmtime64=MSVCRT__mkgmtime64 @1080 + _mktemp=MSVCRT__mktemp @1081 + _mktemp_s=MSVCRT__mktemp_s @1082 + _mktime32=MSVCRT__mktime32 @1083 + _mktime64=MSVCRT__mktime64 @1084 + _msize @1085 + _nextafter=MSVCRT__nextafter @1086 + _onexit=MSVCRT__onexit @1087 + _open=MSVCRT__open @1088 + _open_osfhandle=MSVCRT__open_osfhandle @1089 + _outp@8 @1090 PRIVATE + _outpd@8 @1091 PRIVATE + _outpw@8 @1092 PRIVATE + _pclose=MSVCRT__pclose @1093 + _pctype=MSVCRT__pctype @1094 DATA + _pgmptr=MSVCRT__pgmptr @1095 DATA + _pipe=MSVCRT__pipe @1096 + _popen=MSVCRT__popen @1097 + _printf_l@0 @1098 PRIVATE + _printf_p@0 @1099 PRIVATE + _printf_p_l@0 @1100 PRIVATE + _printf_s_l@0 @1101 PRIVATE + _purecall @1102 + _putc_nolock=MSVCRT__fputc_nolock @1103 + _putch @1104 + _putch_nolock @1105 + _putenv @1106 + _putenv_s @1107 + _putw=MSVCRT__putw @1108 + _putwc_nolock=MSVCRT__fputwc_nolock @1109 + _putwch @1110 + _putwch_nolock @1111 + _putws=MSVCRT__putws @1112 + _read=MSVCRT__read @1113 + _realloc_crt=MSVCRT_realloc @1114 + _recalloc @1115 + _recalloc_crt@0 @1116 PRIVATE + _resetstkoflw=MSVCRT__resetstkoflw @1117 + _rmdir=MSVCRT__rmdir @1118 + _rmtmp=MSVCRT__rmtmp @1119 + _rotl @1120 + _rotl64 @1121 + _rotr @1122 + _rotr64 @1123 + _scalb=MSVCRT__scalb @1124 + _scanf_l=MSVCRT__scanf_l @1125 + _scanf_s_l=MSVCRT__scanf_s_l @1126 + _scprintf=MSVCRT__scprintf @1127 + _scprintf_l@0 @1128 PRIVATE + _scprintf_p@0 @1129 PRIVATE + _scprintf_p_l@0 @1130 PRIVATE + _scwprintf=MSVCRT__scwprintf @1131 + _scwprintf_l@0 @1132 PRIVATE + _scwprintf_p@0 @1133 PRIVATE + _scwprintf_p_l@0 @1134 PRIVATE + _searchenv=MSVCRT__searchenv @1135 + _searchenv_s=MSVCRT__searchenv_s @1136 + _seh_longjmp_unwind4@4 @1137 + _seh_longjmp_unwind@4 @1138 + _set_SSE2_enable=MSVCRT__set_SSE2_enable @1139 + _set_abort_behavior=MSVCRT__set_abort_behavior @1140 + _set_controlfp @1141 + _set_doserrno @1142 + _set_errno @1143 + _set_error_mode @1144 + _set_fmode=MSVCRT__set_fmode @1145 + _set_invalid_parameter_handler @1146 + _set_malloc_crt_max_wait@0 @1147 PRIVATE + _set_output_format=MSVCRT__set_output_format @1148 + _set_printf_count_output=MSVCRT__set_printf_count_output @1149 + _set_purecall_handler @1150 + _seterrormode @1151 + _setjmp=MSVCRT__setjmp @1152 + _setjmp3=MSVCRT__setjmp3 @1153 + _setmaxstdio=MSVCRT__setmaxstdio @1154 + _setmbcp @1155 + _setmode=MSVCRT__setmode @1156 + _setsystime@8 @1157 PRIVATE + _sleep=MSVCRT__sleep @1158 + _snprintf=MSVCRT__snprintf @1159 + _snprintf_c@0 @1160 PRIVATE + _snprintf_c_l@0 @1161 PRIVATE + _snprintf_l=MSVCRT__snprintf_l @1162 + _snprintf_s=MSVCRT__snprintf_s @1163 + _snprintf_s_l@0 @1164 PRIVATE + _snscanf=MSVCRT__snscanf @1165 + _snscanf_l=MSVCRT__snscanf_l @1166 + _snscanf_s=MSVCRT__snscanf_s @1167 + _snscanf_s_l=MSVCRT__snscanf_s_l @1168 + _snwprintf=MSVCRT__snwprintf @1169 + _snwprintf_l=MSVCRT__snwprintf_l @1170 + _snwprintf_s=MSVCRT__snwprintf_s @1171 + _snwprintf_s_l=MSVCRT__snwprintf_s_l @1172 + _snwscanf=MSVCRT__snwscanf @1173 + _snwscanf_l=MSVCRT__snwscanf_l @1174 + _snwscanf_s=MSVCRT__snwscanf_s @1175 + _snwscanf_s_l=MSVCRT__snwscanf_s_l @1176 + _sopen=MSVCRT__sopen @1177 + _sopen_s=MSVCRT__sopen_s @1178 + _spawnl=MSVCRT__spawnl @1179 + _spawnle=MSVCRT__spawnle @1180 + _spawnlp=MSVCRT__spawnlp @1181 + _spawnlpe=MSVCRT__spawnlpe @1182 + _spawnv=MSVCRT__spawnv @1183 + _spawnve=MSVCRT__spawnve @1184 + _spawnvp=MSVCRT__spawnvp @1185 + _spawnvpe=MSVCRT__spawnvpe @1186 + _splitpath=MSVCRT__splitpath @1187 + _splitpath_s=MSVCRT__splitpath_s @1188 + _sprintf_l=MSVCRT_sprintf_l @1189 + _sprintf_p=MSVCRT__sprintf_p @1190 + _sprintf_p_l=MSVCRT_sprintf_p_l @1191 + _sprintf_s_l=MSVCRT_sprintf_s_l @1192 + _sscanf_l=MSVCRT__sscanf_l @1193 + _sscanf_s_l=MSVCRT__sscanf_s_l @1194 + _stat32=MSVCRT__stat32 @1195 + _stat32i64=MSVCRT__stat32i64 @1196 + _stat64=MSVCRT_stat64 @1197 + _stat64i32=MSVCRT__stat64i32 @1198 + _statusfp @1199 + _statusfp2 @1200 + _strcoll_l=MSVCRT_strcoll_l @1201 + _strdate=MSVCRT__strdate @1202 + _strdate_s @1203 + _strdup=MSVCRT__strdup @1204 + _strerror=MSVCRT__strerror @1205 + _strerror_s@0 @1206 PRIVATE + _strftime_l=MSVCRT__strftime_l @1207 + _stricmp=MSVCRT__stricmp @1208 + _stricmp_l=MSVCRT__stricmp_l @1209 + _stricoll=MSVCRT__stricoll @1210 + _stricoll_l=MSVCRT__stricoll_l @1211 + _strlwr=MSVCRT__strlwr @1212 + _strlwr_l @1213 + _strlwr_s=MSVCRT__strlwr_s @1214 + _strlwr_s_l=MSVCRT__strlwr_s_l @1215 + _strncoll=MSVCRT__strncoll @1216 + _strncoll_l=MSVCRT__strncoll_l @1217 + _strnicmp=MSVCRT__strnicmp @1218 + _strnicmp_l=MSVCRT__strnicmp_l @1219 + _strnicoll=MSVCRT__strnicoll @1220 + _strnicoll_l=MSVCRT__strnicoll_l @1221 + _strnset=MSVCRT__strnset @1222 + _strnset_s=MSVCRT__strnset_s @1223 + _strrev=MSVCRT__strrev @1224 + _strset @1225 + _strset_s@0 @1226 PRIVATE + _strtime=MSVCRT__strtime @1227 + _strtime_s @1228 + _strtod_l=MSVCRT_strtod_l @1229 + _strtof_l=MSVCRT__strtof_l @1230 + _strtoi64=MSVCRT_strtoi64 @1231 + _strtoi64_l=MSVCRT_strtoi64_l @1232 + _strtoimax_l@0 @1233 PRIVATE + _strtol_l=MSVCRT__strtol_l @1234 + _strtold_l@0 @1235 PRIVATE + _strtoll_l=MSVCRT_strtoi64_l @1236 + _strtoui64=MSVCRT_strtoui64 @1237 + _strtoui64_l=MSVCRT_strtoui64_l @1238 + _strtoul_l=MSVCRT_strtoul_l @1239 + _strtoull_l=MSVCRT_strtoui64_l @1240 + _strtoumax_l@0 @1241 PRIVATE + _strupr=MSVCRT__strupr @1242 + _strupr_l=MSVCRT__strupr_l @1243 + _strupr_s=MSVCRT__strupr_s @1244 + _strupr_s_l=MSVCRT__strupr_s_l @1245 + _strxfrm_l=MSVCRT__strxfrm_l @1246 + _swab=MSVCRT__swab @1247 + _swprintf=MSVCRT_swprintf @1248 + _swprintf_c@0 @1249 PRIVATE + _swprintf_c_l@0 @1250 PRIVATE + _swprintf_p@0 @1251 PRIVATE + _swprintf_p_l=MSVCRT_swprintf_p_l @1252 + _swprintf_s_l=MSVCRT__swprintf_s_l @1253 + _swscanf_l=MSVCRT__swscanf_l @1254 + _swscanf_s_l=MSVCRT__swscanf_s_l @1255 + _sys_errlist=MSVCRT__sys_errlist @1256 DATA + _sys_nerr=MSVCRT__sys_nerr @1257 DATA + _tell=MSVCRT__tell @1258 + _telli64 @1259 + _tempnam=MSVCRT__tempnam @1260 + _time32=MSVCRT__time32 @1261 + _time64=MSVCRT__time64 @1262 + _timezone=MSVCRT___timezone @1263 DATA + _tolower=MSVCRT__tolower @1264 + _tolower_l=MSVCRT__tolower_l @1265 + _toupper=MSVCRT__toupper @1266 + _toupper_l=MSVCRT__toupper_l @1267 + _towlower_l=MSVCRT__towlower_l @1268 + _towupper_l=MSVCRT__towupper_l @1269 + _tzname=MSVCRT__tzname @1270 DATA + _tzset=MSVCRT__tzset @1271 + _ui64toa=ntdll._ui64toa @1272 + _ui64toa_s=MSVCRT__ui64toa_s @1273 + _ui64tow=ntdll._ui64tow @1274 + _ui64tow_s=MSVCRT__ui64tow_s @1275 + _ultoa=ntdll._ultoa @1276 + _ultoa_s=MSVCRT__ultoa_s @1277 + _ultow=ntdll._ultow @1278 + _ultow_s=MSVCRT__ultow_s @1279 + _umask=MSVCRT__umask @1280 + _umask_s@0 @1281 PRIVATE + _ungetc_nolock=MSVCRT__ungetc_nolock @1282 + _ungetch @1283 + _ungetch_nolock @1284 + _ungetwc_nolock=MSVCRT__ungetwc_nolock @1285 + _ungetwch @1286 + _ungetwch_nolock @1287 + _unlink=MSVCRT__unlink @1288 + _unloaddll @1289 + _unlock @1290 + _unlock_file=MSVCRT__unlock_file @1291 + _utime32 @1292 + _utime64 @1293 + _vacopy=MSVCR120__vacopy @1294 + _vcprintf @1295 + _vcprintf_l@0 @1296 PRIVATE + _vcprintf_p@0 @1297 PRIVATE + _vcprintf_p_l@0 @1298 PRIVATE + _vcprintf_s@0 @1299 PRIVATE + _vcprintf_s_l@0 @1300 PRIVATE + _vcwprintf @1301 + _vcwprintf_l@0 @1302 PRIVATE + _vcwprintf_p@0 @1303 PRIVATE + _vcwprintf_p_l@0 @1304 PRIVATE + _vcwprintf_s@0 @1305 PRIVATE + _vcwprintf_s_l@0 @1306 PRIVATE + _vfprintf_l=MSVCRT__vfprintf_l @1307 + _vfprintf_p=MSVCRT__vfprintf_p @1308 + _vfprintf_p_l=MSVCRT__vfprintf_p_l @1309 + _vfprintf_s_l=MSVCRT__vfprintf_s_l @1310 + _vfwprintf_l=MSVCRT__vfwprintf_l @1311 + _vfwprintf_p=MSVCRT__vfwprintf_p @1312 + _vfwprintf_p_l=MSVCRT__vfwprintf_p_l @1313 + _vfwprintf_s_l=MSVCRT__vfwprintf_s_l @1314 + _vprintf_l@0 @1315 PRIVATE + _vprintf_p@0 @1316 PRIVATE + _vprintf_p_l@0 @1317 PRIVATE + _vprintf_s_l@0 @1318 PRIVATE + _vscprintf=MSVCRT__vscprintf @1319 + _vscprintf_l=MSVCRT__vscprintf_l @1320 + _vscprintf_p=MSVCRT__vscprintf_p @1321 + _vscprintf_p_l=MSVCRT__vscprintf_p_l @1322 + _vscwprintf=MSVCRT__vscwprintf @1323 + _vscwprintf_l=MSVCRT__vscwprintf_l @1324 + _vscwprintf_p=MSVCRT__vscwprintf_p @1325 + _vscwprintf_p_l=MSVCRT__vscwprintf_p_l @1326 + _vsnprintf=MSVCRT_vsnprintf @1327 + _vsnprintf_c=MSVCRT_vsnprintf @1328 + _vsnprintf_c_l=MSVCRT_vsnprintf_l @1329 + _vsnprintf_l=MSVCRT_vsnprintf_l @1330 + _vsnprintf_s=MSVCRT_vsnprintf_s @1331 + _vsnprintf_s_l=MSVCRT_vsnprintf_s_l @1332 + _vsnwprintf=MSVCRT_vsnwprintf @1333 + _vsnwprintf_l=MSVCRT_vsnwprintf_l @1334 + _vsnwprintf_s=MSVCRT_vsnwprintf_s @1335 + _vsnwprintf_s_l=MSVCRT_vsnwprintf_s_l @1336 + _vsprintf_l=MSVCRT_vsprintf_l @1337 + _vsprintf_p=MSVCRT_vsprintf_p @1338 + _vsprintf_p_l=MSVCRT_vsprintf_p_l @1339 + _vsprintf_s_l=MSVCRT_vsprintf_s_l @1340 + _vswprintf=MSVCRT_vswprintf @1341 + _vswprintf_c=MSVCRT_vsnwprintf @1342 + _vswprintf_c_l=MSVCRT_vsnwprintf_l @1343 + _vswprintf_l=MSVCRT_vswprintf_l @1344 + _vswprintf_p=MSVCRT__vswprintf_p @1345 + _vswprintf_p_l=MSVCRT_vswprintf_p_l @1346 + _vswprintf_s_l=MSVCRT_vswprintf_s_l @1347 + _vwprintf_l@0 @1348 PRIVATE + _vwprintf_p@0 @1349 PRIVATE + _vwprintf_p_l@0 @1350 PRIVATE + _vwprintf_s_l@0 @1351 PRIVATE + _waccess=MSVCRT__waccess @1352 + _waccess_s=MSVCRT__waccess_s @1353 + _wasctime=MSVCRT__wasctime @1354 + _wasctime_s=MSVCRT__wasctime_s @1355 + _wassert=MSVCRT__wassert @1356 + _wchdir=MSVCRT__wchdir @1357 + _wchmod=MSVCRT__wchmod @1358 + _wcmdln=MSVCRT__wcmdln @1359 DATA + _wcreat=MSVCRT__wcreat @1360 + _wcreate_locale=MSVCRT__wcreate_locale @1361 + _wcscoll_l=MSVCRT__wcscoll_l @1362 + _wcsdup=MSVCRT__wcsdup @1363 + _wcserror=MSVCRT__wcserror @1364 + _wcserror_s=MSVCRT__wcserror_s @1365 + _wcsftime_l=MSVCRT__wcsftime_l @1366 + _wcsicmp=MSVCRT__wcsicmp @1367 + _wcsicmp_l=MSVCRT__wcsicmp_l @1368 + _wcsicoll=MSVCRT__wcsicoll @1369 + _wcsicoll_l=MSVCRT__wcsicoll_l @1370 + _wcslwr=MSVCRT__wcslwr @1371 + _wcslwr_l=MSVCRT__wcslwr_l @1372 + _wcslwr_s=MSVCRT__wcslwr_s @1373 + _wcslwr_s_l=MSVCRT__wcslwr_s_l @1374 + _wcsncoll=MSVCRT__wcsncoll @1375 + _wcsncoll_l=MSVCRT__wcsncoll_l @1376 + _wcsnicmp=MSVCRT__wcsnicmp @1377 + _wcsnicmp_l=MSVCRT__wcsnicmp_l @1378 + _wcsnicoll=MSVCRT__wcsnicoll @1379 + _wcsnicoll_l=MSVCRT__wcsnicoll_l @1380 + _wcsnset=MSVCRT__wcsnset @1381 + _wcsnset_s=MSVCRT__wcsnset_s @1382 + _wcsrev=MSVCRT__wcsrev @1383 + _wcsset=MSVCRT__wcsset @1384 + _wcsset_s=MSVCRT__wcsset_s @1385 + _wcstod_l=MSVCRT__wcstod_l @1386 + _wcstof_l=MSVCRT__wcstof_l @1387 + _wcstoi64=MSVCRT__wcstoi64 @1388 + _wcstoi64_l=MSVCRT__wcstoi64_l @1389 + _wcstoimax_l@0 @1390 PRIVATE + _wcstol_l=MSVCRT__wcstol_l @1391 + _wcstold_l@0 @1392 PRIVATE + _wcstoll_l=MSVCRT__wcstoi64_l @1393 + _wcstombs_l=MSVCRT__wcstombs_l @1394 + _wcstombs_s_l=MSVCRT__wcstombs_s_l @1395 + _wcstoui64=MSVCRT__wcstoui64 @1396 + _wcstoui64_l=MSVCRT__wcstoui64_l @1397 + _wcstoul_l=MSVCRT__wcstoul_l @1398 + _wcstoull_l=MSVCRT__wcstoui64_l @1399 + _wcstoumax_l@0 @1400 PRIVATE + _wcsupr=MSVCRT__wcsupr @1401 + _wcsupr_l=MSVCRT__wcsupr_l @1402 + _wcsupr_s=MSVCRT__wcsupr_s @1403 + _wcsupr_s_l=MSVCRT__wcsupr_s_l @1404 + _wcsxfrm_l=MSVCRT__wcsxfrm_l @1405 + _wctime32=MSVCRT__wctime32 @1406 + _wctime32_s=MSVCRT__wctime32_s @1407 + _wctime64=MSVCRT__wctime64 @1408 + _wctime64_s=MSVCRT__wctime64_s @1409 + _wctomb_l=MSVCRT__wctomb_l @1410 + _wctomb_s_l=MSVCRT__wctomb_s_l @1411 + _wdupenv_s @1412 + _wenviron=MSVCRT__wenviron @1413 DATA + _wexecl @1414 + _wexecle @1415 + _wexeclp @1416 + _wexeclpe @1417 + _wexecv @1418 + _wexecve @1419 + _wexecvp @1420 + _wexecvpe @1421 + _wfdopen=MSVCRT__wfdopen @1422 + _wfindfirst32=MSVCRT__wfindfirst32 @1423 + _wfindfirst32i64@0 @1424 PRIVATE + _wfindfirst64=MSVCRT__wfindfirst64 @1425 + _wfindfirst64i32=MSVCRT__wfindfirst64i32 @1426 + _wfindnext32=MSVCRT__wfindnext32 @1427 + _wfindnext32i64@0 @1428 PRIVATE + _wfindnext64=MSVCRT__wfindnext64 @1429 + _wfindnext64i32=MSVCRT__wfindnext64i32 @1430 + _wfopen=MSVCRT__wfopen @1431 + _wfopen_s=MSVCRT__wfopen_s @1432 + _wfreopen=MSVCRT__wfreopen @1433 + _wfreopen_s=MSVCRT__wfreopen_s @1434 + _wfsopen=MSVCRT__wfsopen @1435 + _wfullpath=MSVCRT__wfullpath @1436 + _wgetcwd=MSVCRT__wgetcwd @1437 + _wgetdcwd=MSVCRT__wgetdcwd @1438 + _wgetenv=MSVCRT__wgetenv @1439 + _wgetenv_s @1440 + _wmakepath=MSVCRT__wmakepath @1441 + _wmakepath_s=MSVCRT__wmakepath_s @1442 + _wmkdir=MSVCRT__wmkdir @1443 + _wmktemp=MSVCRT__wmktemp @1444 + _wmktemp_s=MSVCRT__wmktemp_s @1445 + _wopen=MSVCRT__wopen @1446 + _wperror=MSVCRT__wperror @1447 + _wpgmptr=MSVCRT__wpgmptr @1448 DATA + _wpopen=MSVCRT__wpopen @1449 + _wprintf_l@0 @1450 PRIVATE + _wprintf_p@0 @1451 PRIVATE + _wprintf_p_l@0 @1452 PRIVATE + _wprintf_s_l@0 @1453 PRIVATE + _wputenv @1454 + _wputenv_s @1455 + _wremove=MSVCRT__wremove @1456 + _wrename=MSVCRT__wrename @1457 + _write=MSVCRT__write @1458 + _wrmdir=MSVCRT__wrmdir @1459 + _wscanf_l=MSVCRT__wscanf_l @1460 + _wscanf_s_l=MSVCRT__wscanf_s_l @1461 + _wsearchenv=MSVCRT__wsearchenv @1462 + _wsearchenv_s=MSVCRT__wsearchenv_s @1463 + _wsetlocale=MSVCRT__wsetlocale @1464 + _wsopen=MSVCRT__wsopen @1465 + _wsopen_s=MSVCRT__wsopen_s @1466 + _wspawnl=MSVCRT__wspawnl @1467 + _wspawnle=MSVCRT__wspawnle @1468 + _wspawnlp=MSVCRT__wspawnlp @1469 + _wspawnlpe=MSVCRT__wspawnlpe @1470 + _wspawnv=MSVCRT__wspawnv @1471 + _wspawnve=MSVCRT__wspawnve @1472 + _wspawnvp=MSVCRT__wspawnvp @1473 + _wspawnvpe=MSVCRT__wspawnvpe @1474 + _wsplitpath=MSVCRT__wsplitpath @1475 + _wsplitpath_s=MSVCRT__wsplitpath_s @1476 + _wstat32=MSVCRT__wstat32 @1477 + _wstat32i64=MSVCRT__wstat32i64 @1478 + _wstat64=MSVCRT__wstat64 @1479 + _wstat64i32=MSVCRT__wstat64i32 @1480 + _wstrdate=MSVCRT__wstrdate @1481 + _wstrdate_s @1482 + _wstrtime=MSVCRT__wstrtime @1483 + _wstrtime_s @1484 + _wsystem @1485 + _wtempnam=MSVCRT__wtempnam @1486 + _wtmpnam=MSVCRT__wtmpnam @1487 + _wtmpnam_s=MSVCRT__wtmpnam_s @1488 + _wtof=MSVCRT__wtof @1489 + _wtof_l=MSVCRT__wtof_l @1490 + _wtoi=MSVCRT__wtoi @1491 + _wtoi64=MSVCRT__wtoi64 @1492 + _wtoi64_l=MSVCRT__wtoi64_l @1493 + _wtoi_l=MSVCRT__wtoi_l @1494 + _wtol=MSVCRT__wtol @1495 + _wtol_l=MSVCRT__wtol_l @1496 + _wtoll=MSVCRT__wtoll @1497 + _wtoll_l=MSVCRT__wtoll_l @1498 + _wunlink=MSVCRT__wunlink @1499 + _wutime32 @1500 + _wutime64 @1501 + _y0=MSVCRT__y0 @1502 + _y1=MSVCRT__y1 @1503 + _yn=MSVCRT__yn @1504 + abort=MSVCRT_abort @1505 + abs=MSVCRT_abs @1506 + acos=MSVCRT_acos @1507 + acosh=MSVCR120_acosh @1508 + acoshf=MSVCR120_acoshf @1509 + acoshl=MSVCR120_acoshl @1510 + asctime=MSVCRT_asctime @1511 + asctime_s=MSVCRT_asctime_s @1512 + asin=MSVCRT_asin @1513 + asinh=MSVCR120_asinh @1514 + asinhf=MSVCR120_asinhf @1515 + asinhl=MSVCR120_asinhl @1516 + atan=MSVCRT_atan @1517 + atan2=MSVCRT_atan2 @1518 + atanh=MSVCR120_atanh @1519 + atanhf=MSVCR120_atanhf @1520 + atanhl=MSVCR120_atanhl @1521 + atexit=MSVCRT_atexit @1522 PRIVATE + atof=MSVCRT_atof @1523 + atoi=MSVCRT_atoi @1524 + atol=MSVCRT_atol @1525 + atoll=MSVCRT_atoll @1526 + bsearch=MSVCRT_bsearch @1527 + bsearch_s=MSVCRT_bsearch_s @1528 + btowc=MSVCRT_btowc @1529 + cabs@0 @1530 PRIVATE + cabsf@0 @1531 PRIVATE + cabsl@0 @1532 PRIVATE + cacos@0 @1533 PRIVATE + cacosf@0 @1534 PRIVATE + cacosh@0 @1535 PRIVATE + cacoshf@0 @1536 PRIVATE + cacoshl@0 @1537 PRIVATE + cacosl@0 @1538 PRIVATE + calloc=MSVCRT_calloc @1539 + carg@0 @1540 PRIVATE + cargf@0 @1541 PRIVATE + cargl@0 @1542 PRIVATE + casin@0 @1543 PRIVATE + casinf@0 @1544 PRIVATE + casinh@0 @1545 PRIVATE + casinhf@0 @1546 PRIVATE + casinhl@0 @1547 PRIVATE + casinl@0 @1548 PRIVATE + catan@0 @1549 PRIVATE + catanf@0 @1550 PRIVATE + catanh@0 @1551 PRIVATE + catanhf@0 @1552 PRIVATE + catanhl@0 @1553 PRIVATE + catanl@0 @1554 PRIVATE + cbrt=MSVCR120_cbrt @1555 + cbrtf=MSVCR120_cbrtf @1556 + cbrtl=MSVCR120_cbrtl @1557 + ccos@0 @1558 PRIVATE + ccosf@0 @1559 PRIVATE + ccosh@0 @1560 PRIVATE + ccoshf@0 @1561 PRIVATE + ccoshl@0 @1562 PRIVATE + ccosl@0 @1563 PRIVATE + ceil=MSVCRT_ceil @1564 + cexp@0 @1565 PRIVATE + cexpf@0 @1566 PRIVATE + cexpl@0 @1567 PRIVATE + cimag@0 @1568 PRIVATE + cimagf@0 @1569 PRIVATE + cimagl@0 @1570 PRIVATE + clearerr=MSVCRT_clearerr @1571 + clearerr_s=MSVCRT_clearerr_s @1572 + clock=MSVCRT_clock @1573 + clog@0 @1574 PRIVATE + clog10@0 @1575 PRIVATE + clog10f@0 @1576 PRIVATE + clog10l@0 @1577 PRIVATE + clogf@0 @1578 PRIVATE + clogl@0 @1579 PRIVATE + conj@0 @1580 PRIVATE + conjf@0 @1581 PRIVATE + conjl@0 @1582 PRIVATE + copysign=MSVCRT__copysign @1583 + copysignf=MSVCRT__copysignf @1584 + copysignl=MSVCRT__copysign @1585 + cos=MSVCRT_cos @1586 + cosh=MSVCRT_cosh @1587 + cpow@0 @1588 PRIVATE + cpowf@0 @1589 PRIVATE + cpowl@0 @1590 PRIVATE + cproj@0 @1591 PRIVATE + cprojf@0 @1592 PRIVATE + cprojl@0 @1593 PRIVATE + creal=MSVCR120_creal @1594 + crealf@0 @1595 PRIVATE + creall@0 @1596 PRIVATE + csin@0 @1597 PRIVATE + csinf@0 @1598 PRIVATE + csinh@0 @1599 PRIVATE + csinhf@0 @1600 PRIVATE + csinhl@0 @1601 PRIVATE + csinl@0 @1602 PRIVATE + csqrt@0 @1603 PRIVATE + csqrtf@0 @1604 PRIVATE + csqrtl@0 @1605 PRIVATE + ctan@0 @1606 PRIVATE + ctanf@0 @1607 PRIVATE + ctanh@0 @1608 PRIVATE + ctanhf@0 @1609 PRIVATE + ctanhl@0 @1610 PRIVATE + ctanl@0 @1611 PRIVATE + div=MSVCRT_div @1612 + erf=MSVCR120_erf @1613 + erfc=MSVCR120_erfc @1614 + erfcf=MSVCR120_erfcf @1615 + erfcl=MSVCR120_erfcl @1616 + erff=MSVCR120_erff @1617 + erfl=MSVCR120_erfl @1618 + exit=MSVCRT_exit @1619 + exp=MSVCRT_exp @1620 + exp2=MSVCR120_exp2 @1621 + exp2f=MSVCR120_exp2f @1622 + exp2l=MSVCR120_exp2l @1623 + expm1=MSVCR120_expm1 @1624 + expm1f=MSVCR120_expm1f @1625 + expm1l=MSVCR120_expm1l @1626 + fabs=MSVCRT_fabs @1627 + fclose=MSVCRT_fclose @1628 + fdim@0 @1629 PRIVATE + fdimf@0 @1630 PRIVATE + fdiml@0 @1631 PRIVATE + feclearexcept@0 @1632 PRIVATE + fegetenv=MSVCRT_fegetenv @1633 + fegetexceptflag@0 @1634 PRIVATE + fegetround=MSVCRT_fegetround @1635 + feholdexcept@0 @1636 PRIVATE + feof=MSVCRT_feof @1637 + feraiseexcept@0 @1638 PRIVATE + ferror=MSVCRT_ferror @1639 + fesetenv=MSVCRT_fesetenv @1640 + fesetexceptflag@0 @1641 PRIVATE + fesetround=MSVCRT_fesetround @1642 + fetestexcept@0 @1643 PRIVATE + feupdateenv@0 @1644 PRIVATE + fflush=MSVCRT_fflush @1645 + fgetc=MSVCRT_fgetc @1646 + fgetpos=MSVCRT_fgetpos @1647 + fgets=MSVCRT_fgets @1648 + fgetwc=MSVCRT_fgetwc @1649 + fgetws=MSVCRT_fgetws @1650 + floor=MSVCRT_floor @1651 + fma@0 @1652 PRIVATE + fmaf@0 @1653 PRIVATE + fmal@0 @1654 PRIVATE + fmax=MSVCR120_fmax @1655 + fmaxf=MSVCR120_fmaxf @1656 + fmaxl=MSVCR120_fmax @1657 + fmin=MSVCR120_fmin @1658 + fminf=MSVCR120_fminf @1659 + fminl=MSVCR120_fmin @1660 + fmod=MSVCRT_fmod @1661 + fopen=MSVCRT_fopen @1662 + fopen_s=MSVCRT_fopen_s @1663 + fprintf=MSVCRT_fprintf @1664 + fprintf_s=MSVCRT_fprintf_s @1665 + fputc=MSVCRT_fputc @1666 + fputs=MSVCRT_fputs @1667 + fputwc=MSVCRT_fputwc @1668 + fputws=MSVCRT_fputws @1669 + fread=MSVCRT_fread @1670 + fread_s=MSVCRT_fread_s @1671 + free=MSVCRT_free @1672 + freopen=MSVCRT_freopen @1673 + freopen_s=MSVCRT_freopen_s @1674 + frexp=MSVCRT_frexp @1675 + fscanf=MSVCRT_fscanf @1676 + fscanf_s=MSVCRT_fscanf_s @1677 + fseek=MSVCRT_fseek @1678 + fsetpos=MSVCRT_fsetpos @1679 + ftell=MSVCRT_ftell @1680 + fwprintf=MSVCRT_fwprintf @1681 + fwprintf_s=MSVCRT_fwprintf_s @1682 + fwrite=MSVCRT_fwrite @1683 + fwscanf=MSVCRT_fwscanf @1684 + fwscanf_s=MSVCRT_fwscanf_s @1685 + getc=MSVCRT_getc @1686 + getchar=MSVCRT_getchar @1687 + getenv=MSVCRT_getenv @1688 + getenv_s @1689 + gets=MSVCRT_gets @1690 + gets_s=MSVCRT_gets_s @1691 + getwc=MSVCRT_getwc @1692 + getwchar=MSVCRT_getwchar @1693 + ilogb=MSVCR120_ilogb @1694 + ilogbf=MSVCR120_ilogbf @1695 + ilogbl=MSVCR120_ilogbl @1696 + imaxabs@0 @1697 PRIVATE + imaxdiv@0 @1698 PRIVATE + is_wctype=ntdll.iswctype @1699 + isalnum=MSVCRT_isalnum @1700 + isalpha=MSVCRT_isalpha @1701 + isblank=MSVCRT_isblank @1702 + iscntrl=MSVCRT_iscntrl @1703 + isdigit=MSVCRT_isdigit @1704 + isgraph=MSVCRT_isgraph @1705 + isleadbyte=MSVCRT_isleadbyte @1706 + islower=MSVCRT_islower @1707 + isprint=MSVCRT_isprint @1708 + ispunct=MSVCRT_ispunct @1709 + isspace=MSVCRT_isspace @1710 + isupper=MSVCRT_isupper @1711 + iswalnum=MSVCRT_iswalnum @1712 + iswalpha=ntdll.iswalpha @1713 + iswascii=MSVCRT_iswascii @1714 + iswblank=MSVCRT_iswblank @1715 + iswcntrl=MSVCRT_iswcntrl @1716 + iswctype=ntdll.iswctype @1717 + iswdigit=MSVCRT_iswdigit @1718 + iswgraph=MSVCRT_iswgraph @1719 + iswlower=MSVCRT_iswlower @1720 + iswprint=MSVCRT_iswprint @1721 + iswpunct=MSVCRT_iswpunct @1722 + iswspace=MSVCRT_iswspace @1723 + iswupper=MSVCRT_iswupper @1724 + iswxdigit=MSVCRT_iswxdigit @1725 + isxdigit=MSVCRT_isxdigit @1726 + labs=MSVCRT_labs @1727 + ldexp=MSVCRT_ldexp @1728 + ldiv=MSVCRT_ldiv @1729 + lgamma=MSVCR120_lgamma @1730 + lgammaf=MSVCR120_lgammaf @1731 + lgammal=MSVCR120_lgammal @1732 + llabs=MSVCRT_llabs @1733 + lldiv=MSVCRT_lldiv @1734 + llrint=MSVCR120_llrint @1735 + llrintf=MSVCR120_llrintf @1736 + llrintl=MSVCR120_llrintl @1737 + llround=MSVCR120_llround @1738 + llroundf=MSVCR120_llroundf @1739 + llroundl=MSVCR120_llroundl @1740 + localeconv=MSVCRT_localeconv @1741 + log=MSVCRT_log @1742 + log10=MSVCRT_log10 @1743 + log1p=MSVCR120_log1p @1744 + log1pf=MSVCR120_log1pf @1745 + log1pl=MSVCR120_log1pl @1746 + log2=MSVCR120_log2 @1747 + log2f=MSVCR120_log2f @1748 + log2l=MSVCR120_log2l @1749 + logb@0 @1750 PRIVATE + logbf@0 @1751 PRIVATE + logbl@0 @1752 PRIVATE + longjmp=MSVCRT_longjmp @1753 + lrint=MSVCR120_lrint @1754 + lrintf=MSVCR120_lrintf @1755 + lrintl=MSVCR120_lrintl @1756 + lround=MSVCR120_lround @1757 + lroundf=MSVCR120_lroundf @1758 + lroundl=MSVCR120_lroundl @1759 + malloc=MSVCRT_malloc @1760 + mblen=MSVCRT_mblen @1761 + mbrlen=MSVCRT_mbrlen @1762 + mbrtowc=MSVCRT_mbrtowc @1763 + mbsrtowcs=MSVCRT_mbsrtowcs @1764 + mbsrtowcs_s=MSVCRT_mbsrtowcs_s @1765 + mbstowcs=MSVCRT_mbstowcs @1766 + mbstowcs_s=MSVCRT__mbstowcs_s @1767 + mbtowc=MSVCRT_mbtowc @1768 + memchr=MSVCRT_memchr @1769 + memcmp=MSVCRT_memcmp @1770 + memcpy=MSVCRT_memcpy @1771 + memcpy_s=MSVCRT_memcpy_s @1772 + memmove=MSVCRT_memmove @1773 + memmove_s=MSVCRT_memmove_s @1774 + memset=MSVCRT_memset @1775 + modf=MSVCRT_modf @1776 + nan=MSVCR120_nan @1777 + nanf=MSVCR120_nanf @1778 + nanl=MSVCR120_nan @1779 + nearbyint=MSVCRT_nearbyint @1780 + nearbyintf=MSVCRT_nearbyintf @1781 + nearbyintl=MSVCRT_nearbyint @1782 + nextafter=MSVCRT__nextafter @1783 + nextafterf=MSVCRT__nextafterf @1784 + nextafterl=MSVCRT__nextafter @1785 + nexttoward=MSVCRT_nexttoward @1786 + nexttowardf=MSVCRT_nexttowardf @1787 + nexttowardl=MSVCRT_nexttoward @1788 + norm@0 @1789 PRIVATE + normf@0 @1790 PRIVATE + norml@0 @1791 PRIVATE + perror=MSVCRT_perror @1792 + pow=MSVCRT_pow @1793 + printf=MSVCRT_printf @1794 + printf_s=MSVCRT_printf_s @1795 + putc=MSVCRT_putc @1796 + putchar=MSVCRT_putchar @1797 + puts=MSVCRT_puts @1798 + putwc=MSVCRT_fputwc @1799 + putwchar=MSVCRT__fputwchar @1800 + qsort=MSVCRT_qsort @1801 + qsort_s=MSVCRT_qsort_s @1802 + raise=MSVCRT_raise @1803 + rand=MSVCRT_rand @1804 + rand_s=MSVCRT_rand_s @1805 + realloc=MSVCRT_realloc @1806 + remainder=MSVCR120_remainder @1807 + remainderf=MSVCR120_remainderf @1808 + remainderl=MSVCR120_remainderl @1809 + remove=MSVCRT_remove @1810 + remquo=MSVCR120_remquo @1811 + remquof=MSVCR120_remquof @1812 + remquol=MSVCR120_remquol @1813 + rename=MSVCRT_rename @1814 + rewind=MSVCRT_rewind @1815 + rint=MSVCR120_rint @1816 + rintf=MSVCR120_rintf @1817 + rintl=MSVCR120_rintl @1818 + round=MSVCR120_round @1819 + roundf=MSVCR120_roundf @1820 + roundl=MSVCR120_roundl @1821 + scalbln=MSVCRT__scalb @1822 + scalblnf=MSVCRT__scalbf @1823 + scalblnl=MSVCR120_scalbnl @1824 + scalbn=MSVCRT__scalb @1825 + scalbnf=MSVCRT__scalbf @1826 + scalbnl=MSVCR120_scalbnl @1827 + scanf=MSVCRT_scanf @1828 + scanf_s=MSVCRT_scanf_s @1829 + setbuf=MSVCRT_setbuf @1830 + setlocale=MSVCRT_setlocale @1831 + setvbuf=MSVCRT_setvbuf @1832 + signal=MSVCRT_signal @1833 + sin=MSVCRT_sin @1834 + sinh=MSVCRT_sinh @1835 + sprintf=MSVCRT_sprintf @1836 + sprintf_s=MSVCRT_sprintf_s @1837 + sqrt=MSVCRT_sqrt @1838 + srand=MSVCRT_srand @1839 + sscanf=MSVCRT_sscanf @1840 + sscanf_s=MSVCRT_sscanf_s @1841 + strcat=ntdll.strcat @1842 + strcat_s=MSVCRT_strcat_s @1843 + strchr=MSVCRT_strchr @1844 + strcmp=MSVCRT_strcmp @1845 + strcoll=MSVCRT_strcoll @1846 + strcpy=MSVCRT_strcpy @1847 + strcpy_s=MSVCRT_strcpy_s @1848 + strcspn=MSVCRT_strcspn @1849 + strerror=MSVCRT_strerror @1850 + strerror_s=MSVCRT_strerror_s @1851 + strftime=MSVCRT_strftime @1852 + strlen=MSVCRT_strlen @1853 + strncat=MSVCRT_strncat @1854 + strncat_s=MSVCRT_strncat_s @1855 + strncmp=MSVCRT_strncmp @1856 + strncpy=MSVCRT_strncpy @1857 + strncpy_s=MSVCRT_strncpy_s @1858 + strnlen=MSVCRT_strnlen @1859 + strpbrk=MSVCRT_strpbrk @1860 + strrchr=MSVCRT_strrchr @1861 + strspn=ntdll.strspn @1862 + strstr=MSVCRT_strstr @1863 + strtod=MSVCRT_strtod @1864 + strtof=MSVCRT_strtof @1865 + strtoimax@0 @1866 PRIVATE + strtok=MSVCRT_strtok @1867 + strtok_s=MSVCRT_strtok_s @1868 + strtol=MSVCRT_strtol @1869 + strtold@0 @1870 PRIVATE + strtoll=MSVCRT_strtoi64 @1871 + strtoul=MSVCRT_strtoul @1872 + strtoull=MSVCRT_strtoui64 @1873 + strtoumax@0 @1874 PRIVATE + strxfrm=MSVCRT_strxfrm @1875 + swprintf_s=MSVCRT_swprintf_s @1876 + swscanf=MSVCRT_swscanf @1877 + swscanf_s=MSVCRT_swscanf_s @1878 + system=MSVCRT_system @1879 + tan=MSVCRT_tan @1880 + tanh=MSVCRT_tanh @1881 + tgamma@0 @1882 PRIVATE + tgammaf@0 @1883 PRIVATE + tgammal@0 @1884 PRIVATE + tmpfile=MSVCRT_tmpfile @1885 + tmpfile_s=MSVCRT_tmpfile_s @1886 + tmpnam=MSVCRT_tmpnam @1887 + tmpnam_s=MSVCRT_tmpnam_s @1888 + tolower=MSVCRT_tolower @1889 + toupper=MSVCRT_toupper @1890 + towctrans=MSVCR120_towctrans @1891 + towlower=MSVCRT_towlower @1892 + towupper=MSVCRT_towupper @1893 + trunc=MSVCR120_trunc @1894 + truncf=MSVCR120_truncf @1895 + truncl=MSVCR120_truncl @1896 + ungetc=MSVCRT_ungetc @1897 + ungetwc=MSVCRT_ungetwc @1898 + vfprintf=MSVCRT_vfprintf @1899 + vfprintf_s=MSVCRT_vfprintf_s @1900 + vfscanf@0 @1901 PRIVATE + vfscanf_s@0 @1902 PRIVATE + vfwprintf=MSVCRT_vfwprintf @1903 + vfwprintf_s=MSVCRT_vfwprintf_s @1904 + vfwscanf@0 @1905 PRIVATE + vfwscanf_s@0 @1906 PRIVATE + vprintf=MSVCRT_vprintf @1907 + vprintf_s=MSVCRT_vprintf_s @1908 + vscanf@0 @1909 PRIVATE + vscanf_s@0 @1910 PRIVATE + vsprintf=MSVCRT_vsprintf @1911 + vsprintf_s=MSVCRT_vsprintf_s @1912 + vsscanf=MSVCRT_vsscanf @1913 + vsscanf_s@0 @1914 PRIVATE + vswprintf_s=MSVCRT_vswprintf_s @1915 + vswscanf=MSVCRT_vswscanf @1916 + vswscanf_s@0 @1917 PRIVATE + vwprintf=MSVCRT_vwprintf @1918 + vwprintf_s=MSVCRT_vwprintf_s @1919 + vwscanf@0 @1920 PRIVATE + vwscanf_s@0 @1921 PRIVATE + wcrtomb=MSVCRT_wcrtomb @1922 + wcrtomb_s@0 @1923 PRIVATE + wcscat=ntdll.wcscat @1924 + wcscat_s=MSVCRT_wcscat_s @1925 + wcschr=MSVCRT_wcschr @1926 + wcscmp=MSVCRT_wcscmp @1927 + wcscoll=MSVCRT_wcscoll @1928 + wcscpy=ntdll.wcscpy @1929 + wcscpy_s=MSVCRT_wcscpy_s @1930 + wcscspn=ntdll.wcscspn @1931 + wcsftime=MSVCRT_wcsftime @1932 + wcslen=MSVCRT_wcslen @1933 + wcsncat=ntdll.wcsncat @1934 + wcsncat_s=MSVCRT_wcsncat_s @1935 + wcsncmp=MSVCRT_wcsncmp @1936 + wcsncpy=MSVCRT_wcsncpy @1937 + wcsncpy_s=MSVCRT_wcsncpy_s @1938 + wcsnlen=MSVCRT_wcsnlen @1939 + wcspbrk=MSVCRT_wcspbrk @1940 + wcsrchr=MSVCRT_wcsrchr @1941 + wcsrtombs=MSVCRT_wcsrtombs @1942 + wcsrtombs_s=MSVCRT_wcsrtombs_s @1943 + wcsspn=ntdll.wcsspn @1944 + wcsstr=MSVCRT_wcsstr @1945 + wcstod=MSVCRT_wcstod @1946 + wcstof=MSVCRT_wcstof @1947 + wcstoimax@0 @1948 PRIVATE + wcstok=MSVCRT_wcstok @1949 + wcstok_s=MSVCRT_wcstok_s @1950 + wcstol=MSVCRT_wcstol @1951 + wcstold@0 @1952 PRIVATE + wcstoll=MSVCRT__wcstoi64 @1953 + wcstombs=MSVCRT_wcstombs @1954 + wcstombs_s=MSVCRT_wcstombs_s @1955 + wcstoul=MSVCRT_wcstoul @1956 + wcstoull=MSVCRT__wcstoui64 @1957 + wcstoumax@0 @1958 PRIVATE + wcsxfrm=MSVCRT_wcsxfrm @1959 + wctob=MSVCRT_wctob @1960 + wctomb=MSVCRT_wctomb @1961 + wctomb_s=MSVCRT_wctomb_s @1962 + wctrans=MSVCR120_wctrans @1963 + wctype @1964 + wmemcpy_s @1965 + wmemmove_s @1966 + wprintf=MSVCRT_wprintf @1967 + wprintf_s=MSVCRT_wprintf_s @1968 + wscanf=MSVCRT_wscanf @1969 + wscanf_s=MSVCRT_wscanf_s @1970 diff --git a/lib/wine/libmsvcr70.def b/lib/wine/libmsvcr70.def new file mode 100644 index 0000000..39c4f63 --- /dev/null +++ b/lib/wine/libmsvcr70.def @@ -0,0 +1,839 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/msvcr70/msvcr70.spec; do not edit! + +LIBRARY msvcr70.dll + +EXPORTS + ??0__non_rtti_object@@QAE@ABV0@@Z@8=__thiscall_MSVCRT___non_rtti_object_copy_ctor @1 + ??0__non_rtti_object@@QAE@PBD@Z@8=__thiscall_MSVCRT___non_rtti_object_ctor @2 + ??0bad_cast@@AAE@PBQBD@Z@8=__thiscall_MSVCRT_bad_cast_ctor @3 + ??0bad_cast@@QAE@ABQBD@Z@8=__thiscall_MSVCRT_bad_cast_ctor @4 + ??0bad_cast@@QAE@ABV0@@Z@8=__thiscall_MSVCRT_bad_cast_copy_ctor @5 + ??0bad_cast@@QAE@PBD@Z@8=__thiscall_MSVCRT_bad_cast_ctor_charptr @6 + ??0bad_typeid@@QAE@ABV0@@Z@8=__thiscall_MSVCRT_bad_typeid_copy_ctor @7 + ??0bad_typeid@@QAE@PBD@Z@8=__thiscall_MSVCRT_bad_typeid_ctor @8 + ??0exception@@QAE@ABQBD@Z@8=__thiscall_MSVCRT_exception_ctor @9 + ??0exception@@QAE@ABV0@@Z@8=__thiscall_MSVCRT_exception_copy_ctor @10 + ??0exception@@QAE@XZ@4=__thiscall_MSVCRT_exception_default_ctor @11 + ??1__non_rtti_object@@UAE@XZ@4=__thiscall_MSVCRT___non_rtti_object_dtor @12 + ??1bad_cast@@UAE@XZ@4=__thiscall_MSVCRT_bad_cast_dtor @13 + ??1bad_typeid@@UAE@XZ@4=__thiscall_MSVCRT_bad_typeid_dtor @14 + ??1exception@@UAE@XZ@4=__thiscall_MSVCRT_exception_dtor @15 + ??1type_info@@UAE@XZ@4=__thiscall_MSVCRT_type_info_dtor @16 + ??2@YAPAXI@Z=MSVCRT_operator_new @17 + ??3@YAXPAX@Z=MSVCRT_operator_delete @18 + ??4__non_rtti_object@@QAEAAV0@ABV0@@Z@8=__thiscall_MSVCRT___non_rtti_object_opequals @19 + ??4bad_cast@@QAEAAV0@ABV0@@Z@8=__thiscall_MSVCRT_bad_cast_opequals @20 + ??4bad_typeid@@QAEAAV0@ABV0@@Z@8=__thiscall_MSVCRT_bad_typeid_opequals @21 + ??4exception@@QAEAAV0@ABV0@@Z@8=__thiscall_MSVCRT_exception_opequals @22 + ??8type_info@@QBEHABV0@@Z@8=__thiscall_MSVCRT_type_info_opequals_equals @23 + ??9type_info@@QBEHABV0@@Z@8=__thiscall_MSVCRT_type_info_opnot_equals @24 + ??_7__non_rtti_object@@6B@=MSVCRT___non_rtti_object_vtable @25 DATA + ??_7bad_cast@@6B@=MSVCRT_bad_cast_vtable @26 DATA + ??_7bad_typeid@@6B@=MSVCRT_bad_typeid_vtable @27 DATA + ??_7exception@@6B@=MSVCRT_exception_vtable @28 DATA + ??_E__non_rtti_object@@UAEPAXI@Z@8=__thiscall_MSVCRT___non_rtti_object_vector_dtor @29 + ??_Ebad_cast@@UAEPAXI@Z@8=__thiscall_MSVCRT_bad_cast_vector_dtor @30 + ??_Ebad_typeid@@UAEPAXI@Z@8=__thiscall_MSVCRT_bad_typeid_vector_dtor @31 + ??_Eexception@@UAEPAXI@Z@8=__thiscall_MSVCRT_exception_vector_dtor @32 + ??_Fbad_cast@@QAEXXZ@4=__thiscall_MSVCRT_bad_cast_default_ctor @33 + ??_Fbad_typeid@@QAEXXZ@4=__thiscall_MSVCRT_bad_typeid_default_ctor @34 + ??_G__non_rtti_object@@UAEPAXI@Z@8=__thiscall_MSVCRT___non_rtti_object_scalar_dtor @35 + ??_Gbad_cast@@UAEPAXI@Z@8=__thiscall_MSVCRT_bad_cast_scalar_dtor @36 + ??_Gbad_typeid@@UAEPAXI@Z@8=__thiscall_MSVCRT_bad_typeid_scalar_dtor @37 + ??_Gexception@@UAEPAXI@Z@8=__thiscall_MSVCRT_exception_scalar_dtor @38 + ??_U@YAPAXI@Z=MSVCRT_operator_new @39 + ??_V@YAXPAX@Z=MSVCRT_operator_delete @40 + __uncaught_exception=MSVCRT___uncaught_exception @41 + ?_query_new_handler@@YAP6AHI@ZXZ=MSVCRT__query_new_handler @42 + ?_query_new_mode@@YAHXZ=MSVCRT__query_new_mode @43 + ?_set_new_handler@@YAP6AHI@ZP6AHI@Z@Z=MSVCRT__set_new_handler @44 + ?_set_new_mode@@YAHH@Z=MSVCRT__set_new_mode @45 + ?_set_se_translator@@YAP6AXIPAU_EXCEPTION_POINTERS@@@ZP6AXI0@Z@Z=MSVCRT__set_se_translator @46 + ?before@type_info@@QBEHABV1@@Z@8=__thiscall_MSVCRT_type_info_before @47 + ?name@type_info@@QBEPBDXZ@4=__thiscall_MSVCRT_type_info_name @48 + ?raw_name@type_info@@QBEPBDXZ@4=__thiscall_MSVCRT_type_info_raw_name @49 + ?set_new_handler@@YAP6AXXZP6AXXZ@Z=MSVCRT_set_new_handler @50 + ?set_terminate@@YAP6AXXZP6AXXZ@Z=MSVCRT_set_terminate @51 + ?set_unexpected@@YAP6AXXZP6AXXZ@Z=MSVCRT_set_unexpected @52 + ?terminate@@YAXXZ=MSVCRT_terminate @53 + ?unexpected@@YAXXZ=MSVCRT_unexpected @54 + ?what@exception@@UBEPBDXZ@4=__thiscall_MSVCRT_what_exception @55 + $I10_OUTPUT=MSVCRT_I10_OUTPUT @56 + _CIacos @57 + _CIasin @58 + _CIatan @59 + _CIatan2 @60 + _CIcos @61 + _CIcosh @62 + _CIexp @63 + _CIfmod @64 + _CIlog @65 + _CIlog10 @66 + _CIpow @67 + _CIsin @68 + _CIsinh @69 + _CIsqrt @70 + _CItan @71 + _CItanh @72 + _CRT_RTC_INIT @73 + _CxxThrowException@8 @74 + _EH_prolog @75 + _Getdays @76 + _Getmonths @77 + _Gettnames @78 + _HUGE=MSVCRT__HUGE @79 DATA + _Strftime @80 + _XcptFilter @81 + __CxxCallUnwindDtor@0 @82 PRIVATE + __CxxCallUnwindVecDtor@0 @83 PRIVATE + __CxxDetectRethrow @84 + __CxxExceptionFilter @85 + __CxxFrameHandler @86 + __CxxLongjmpUnwind@4 @87 + __CxxQueryExceptionSize @88 + __CxxRegisterExceptionObject @89 + __CxxUnregisterExceptionObject @90 + __DestructExceptionObject @91 + __RTCastToVoid=MSVCRT___RTCastToVoid @92 + __RTDynamicCast=MSVCRT___RTDynamicCast @93 + __RTtypeid=MSVCRT___RTtypeid @94 + __STRINGTOLD @95 + ___lc_codepage_func @96 + ___lc_collate_cp_func @97 + ___lc_handle_func @98 + ___mb_cur_max_func=MSVCRT____mb_cur_max_func @99 + ___setlc_active_func=MSVCRT____setlc_active_func @100 + ___unguarded_readlc_active_add_func=MSVCRT____unguarded_readlc_active_add_func @101 + __argc=MSVCRT___argc @102 DATA + __argv=MSVCRT___argv @103 DATA + __badioinfo=MSVCRT___badioinfo @104 DATA + __buffer_overrun@0 @105 PRIVATE + __crtCompareStringA @106 + __crtCompareStringW @107 + __crtGetLocaleInfoW @108 + __crtGetStringTypeW @109 + __crtLCMapStringA @110 + __crtLCMapStringW @111 + __dllonexit @112 + __doserrno=MSVCRT___doserrno @113 + __fpecode @114 + __getmainargs @115 + __initenv=MSVCRT___initenv @116 DATA + __iob_func=__p__iob @117 + __isascii=MSVCRT___isascii @118 + __iscsym=MSVCRT___iscsym @119 + __iscsymf=MSVCRT___iscsymf @120 + __lc_codepage=MSVCRT___lc_codepage @121 DATA + __lc_collate_cp=MSVCRT___lc_collate_cp @122 DATA + __lc_handle=MSVCRT___lc_handle @123 DATA + __lconv_init @124 + __mb_cur_max=MSVCRT___mb_cur_max @125 DATA + __p___argc=MSVCRT___p___argc @126 + __p___argv=MSVCRT___p___argv @127 + __p___initenv @128 + __p___mb_cur_max @129 + __p___wargv=MSVCRT___p___wargv @130 + __p___winitenv @131 + __p__acmdln=MSVCRT___p__acmdln @132 + __p__amblksiz @133 + __p__commode @134 + __p__daylight=MSVCRT___p__daylight @135 + __p__dstbias=MSVCRT___p__dstbias @136 + __p__environ=MSVCRT___p__environ @137 + __p__fileinfo@0 @138 PRIVATE + __p__fmode=MSVCRT___p__fmode @139 + __p__iob @140 + __p__mbcasemap@0 @141 PRIVATE + __p__mbctype @142 + __p__osver @143 + __p__pctype=MSVCRT___p__pctype @144 + __p__pgmptr=MSVCRT___p__pgmptr @145 + __p__pwctype@0 @146 PRIVATE + __p__timezone=MSVCRT___p__timezone @147 + __p__tzname @148 + __p__wcmdln=MSVCRT___p__wcmdln @149 + __p__wenviron=MSVCRT___p__wenviron @150 + __p__winmajor @151 + __p__winminor @152 + __p__winver @153 + __p__wpgmptr=MSVCRT___p__wpgmptr @154 + __pctype_func=MSVCRT___pctype_func @155 + __pioinfo=MSVCRT___pioinfo @156 DATA + __pwctype_func@0 @157 PRIVATE + __pxcptinfoptrs=MSVCRT___pxcptinfoptrs @158 + __security_error_handler @159 + __set_app_type=MSVCRT___set_app_type @160 + __set_buffer_overrun_handler@0 @161 PRIVATE + __setlc_active=MSVCRT___setlc_active @162 DATA + __setusermatherr=MSVCRT___setusermatherr @163 + __threadhandle=kernel32.GetCurrentThread @164 + __threadid=kernel32.GetCurrentThreadId @165 + __toascii=MSVCRT___toascii @166 + __unDName @167 + __unDNameEx @168 + __unguarded_readlc_active=MSVCRT___unguarded_readlc_active @169 DATA + __wargv=MSVCRT___wargv @170 DATA + __wcserror=MSVCRT___wcserror @171 + __wgetmainargs @172 + __winitenv=MSVCRT___winitenv @173 DATA + _abnormal_termination @174 + _access=MSVCRT__access @175 + _acmdln=MSVCRT__acmdln @176 DATA + _adj_fdiv_m16i@4 @177 + _adj_fdiv_m32@4 @178 + _adj_fdiv_m32i@4 @179 + _adj_fdiv_m64@8 @180 + _adj_fdiv_r @181 + _adj_fdivr_m16i@4 @182 + _adj_fdivr_m32@4 @183 + _adj_fdivr_m32i@4 @184 + _adj_fdivr_m64@8 @185 + _adj_fpatan @186 + _adj_fprem @187 + _adj_fprem1 @188 + _adj_fptan @189 + _adjust_fdiv=MSVCRT__adjust_fdiv @190 DATA + _aexit_rtn @191 DATA + _aligned_free @192 + _aligned_malloc @193 + _aligned_offset_malloc @194 + _aligned_offset_realloc @195 + _aligned_realloc @196 + _amsg_exit @197 + _assert=MSVCRT__assert @198 + _atodbl=MSVCRT__atodbl @199 + _atoi64=MSVCRT__atoi64 @200 + _atoldbl=MSVCRT__atoldbl @201 + _beep=MSVCRT__beep @202 + _beginthread @203 + _beginthreadex @204 + _c_exit=MSVCRT__c_exit @205 + _cabs=MSVCRT__cabs @206 + _callnewh @207 + _cexit=MSVCRT__cexit @208 + _cgets @209 + _cgetws@0 @210 PRIVATE + _chdir=MSVCRT__chdir @211 + _chdrive=MSVCRT__chdrive @212 + _chgsign=MSVCRT__chgsign @213 + _chkesp @214 + _chmod=MSVCRT__chmod @215 + _chsize=MSVCRT__chsize @216 + _clearfp @217 + _close=MSVCRT__close @218 + _commit=MSVCRT__commit @219 + _commode=MSVCRT__commode @220 DATA + _control87 @221 + _controlfp @222 + _copysign=MSVCRT__copysign @223 + _cprintf @224 + _cputs @225 + _cputws @226 + _creat=MSVCRT__creat @227 + _cscanf @228 + _ctime64=MSVCRT__ctime64 @229 + _ctype=MSVCRT__ctype @230 DATA + _cwait @231 + _cwprintf @232 + _cwscanf @233 + _daylight=MSVCRT___daylight @234 DATA + _dstbias=MSVCRT__dstbias @235 DATA + _dup=MSVCRT__dup @236 + _dup2=MSVCRT__dup2 @237 + _ecvt=MSVCRT__ecvt @238 + _endthread @239 + _endthreadex @240 + _environ=MSVCRT__environ @241 DATA + _eof=MSVCRT__eof @242 + _errno=MSVCRT__errno @243 + _except_handler2 @244 + _except_handler3 @245 + _execl @246 + _execle @247 + _execlp @248 + _execlpe @249 + _execv @250 + _execve=MSVCRT__execve @251 + _execvp @252 + _execvpe @253 + _exit=MSVCRT__exit @254 + _expand @255 + _fcloseall=MSVCRT__fcloseall @256 + _fcvt=MSVCRT__fcvt @257 + _fdopen=MSVCRT__fdopen @258 + _fgetchar=MSVCRT__fgetchar @259 + _fgetwchar=MSVCRT__fgetwchar @260 + _filbuf=MSVCRT__filbuf @261 + _filelength=MSVCRT__filelength @262 + _filelengthi64=MSVCRT__filelengthi64 @263 + _fileno=MSVCRT__fileno @264 + _findclose=MSVCRT__findclose @265 + _findfirst=MSVCRT__findfirst @266 + _findfirst64=MSVCRT__findfirst64 @267 + _findfirsti64=MSVCRT__findfirsti64 @268 + _findnext=MSVCRT__findnext @269 + _findnext64=MSVCRT__findnext64 @270 + _findnexti64=MSVCRT__findnexti64 @271 + _finite=MSVCRT__finite @272 + _flsbuf=MSVCRT__flsbuf @273 + _flushall=MSVCRT__flushall @274 + _fmode=MSVCRT__fmode @275 DATA + _fpclass=MSVCRT__fpclass @276 + _fpieee_flt @277 + _fpreset @278 + _fputchar=MSVCRT__fputchar @279 + _fputwchar=MSVCRT__fputwchar @280 + _fsopen=MSVCRT__fsopen @281 + _fstat=MSVCRT__fstat @282 + _fstat64=MSVCRT__fstat64 @283 + _fstati64=MSVCRT__fstati64 @284 + _ftime=MSVCRT__ftime @285 + _ftime64=MSVCRT__ftime64 @286 + _ftol=MSVCRT__ftol @287 + _fullpath=MSVCRT__fullpath @288 + _futime @289 + _futime64 @290 + _gcvt=MSVCRT__gcvt @291 + _get_osfhandle=MSVCRT__get_osfhandle @292 + _get_sbh_threshold @293 + _getch @294 + _getche @295 + _getcwd=MSVCRT__getcwd @296 + _getdcwd=MSVCRT__getdcwd @297 + _getdiskfree=MSVCRT__getdiskfree @298 + _getdllprocaddr @299 + _getdrive=MSVCRT__getdrive @300 + _getdrives=kernel32.GetLogicalDrives @301 + _getmaxstdio=MSVCRT__getmaxstdio @302 + _getmbcp @303 + _getpid @304 + _getsystime@4 @305 PRIVATE + _getw=MSVCRT__getw @306 + _getwch @307 + _getwche @308 + _getws=MSVCRT__getws @309 + _global_unwind2 @310 + _gmtime64=MSVCRT__gmtime64 @311 + _heapadd @312 + _heapchk @313 + _heapmin @314 + _heapset @315 + _heapused@8 @316 PRIVATE + _heapwalk @317 + _hypot @318 + _i64toa=ntdll._i64toa @319 + _i64tow=ntdll._i64tow @320 + _initterm @321 + _inp@4 @322 PRIVATE + _inpd@4 @323 PRIVATE + _inpw@4 @324 PRIVATE + _iob=MSVCRT__iob @325 DATA + _isatty=MSVCRT__isatty @326 + _isctype=MSVCRT__isctype @327 + _ismbbalnum@4 @328 PRIVATE + _ismbbalpha@4 @329 PRIVATE + _ismbbgraph@4 @330 PRIVATE + _ismbbkalnum@4 @331 PRIVATE + _ismbbkana @332 + _ismbbkprint@4 @333 PRIVATE + _ismbbkpunct@4 @334 PRIVATE + _ismbblead @335 + _ismbbprint@4 @336 PRIVATE + _ismbbpunct@4 @337 PRIVATE + _ismbbtrail @338 + _ismbcalnum @339 + _ismbcalpha @340 + _ismbcdigit @341 + _ismbcgraph @342 + _ismbchira @343 + _ismbckata @344 + _ismbcl0 @345 + _ismbcl1 @346 + _ismbcl2 @347 + _ismbclegal @348 + _ismbclower @349 + _ismbcprint @350 + _ismbcpunct @351 + _ismbcspace @352 + _ismbcsymbol @353 + _ismbcupper @354 + _ismbslead @355 + _ismbstrail @356 + _isnan=MSVCRT__isnan @357 + _itoa=MSVCRT__itoa @358 + _itow=ntdll._itow @359 + _j0=MSVCRT__j0 @360 + _j1=MSVCRT__j1 @361 + _jn=MSVCRT__jn @362 + _kbhit @363 + _lfind @364 + _loaddll @365 + _local_unwind2 @366 + _localtime64=MSVCRT__localtime64 @367 + _lock @368 + _locking=MSVCRT__locking @369 + _logb=MSVCRT__logb @370 + _longjmpex=MSVCRT_longjmp @371 + _lrotl=MSVCRT__lrotl @372 + _lrotr=MSVCRT__lrotr @373 + _lsearch @374 + _lseek=MSVCRT__lseek @375 + _lseeki64=MSVCRT__lseeki64 @376 + _ltoa=ntdll._ltoa @377 + _ltow=ntdll._ltow @378 + _makepath=MSVCRT__makepath @379 + _mbbtombc @380 + _mbbtype @381 + _mbccpy @382 + _mbcjistojms @383 + _mbcjmstojis @384 + _mbclen @385 + _mbctohira @386 + _mbctokata @387 + _mbctolower @388 + _mbctombb @389 + _mbctoupper @390 + _mbctype=MSVCRT_mbctype @391 DATA + _mbsbtype @392 + _mbscat @393 + _mbschr @394 + _mbscmp @395 + _mbscoll @396 + _mbscpy @397 + _mbscspn @398 + _mbsdec @399 + _mbsdup=MSVCRT__strdup @400 + _mbsicmp @401 + _mbsicoll @402 + _mbsinc @403 + _mbslen @404 + _mbslwr @405 + _mbsnbcat @406 + _mbsnbcmp @407 + _mbsnbcnt @408 + _mbsnbcoll @409 + _mbsnbcpy @410 + _mbsnbicmp @411 + _mbsnbicoll @412 + _mbsnbset @413 + _mbsncat @414 + _mbsnccnt @415 + _mbsncmp @416 + _mbsncoll@12 @417 PRIVATE + _mbsncpy @418 + _mbsnextc @419 + _mbsnicmp @420 + _mbsnicoll@12 @421 PRIVATE + _mbsninc @422 + _mbsnset @423 + _mbspbrk @424 + _mbsrchr @425 + _mbsrev @426 + _mbsset @427 + _mbsspn @428 + _mbsspnp @429 + _mbsstr @430 + _mbstok @431 + _mbstrlen @432 + _mbsupr @433 + _memccpy=ntdll._memccpy @434 + _memicmp=MSVCRT__memicmp @435 + _mkdir=MSVCRT__mkdir @436 + _mktemp=MSVCRT__mktemp @437 + _mktime64=MSVCRT__mktime64 @438 + _msize @439 + _nextafter=MSVCRT__nextafter @440 + _onexit=MSVCRT__onexit @441 + _open=MSVCRT__open @442 + _open_osfhandle=MSVCRT__open_osfhandle @443 + _osplatform=MSVCRT__osplatform @444 DATA + _osver=MSVCRT__osver @445 DATA + _outp@8 @446 PRIVATE + _outpd@8 @447 PRIVATE + _outpw@8 @448 PRIVATE + _pclose=MSVCRT__pclose @449 + _pctype=MSVCRT__pctype @450 DATA + _pgmptr=MSVCRT__pgmptr @451 DATA + _pipe=MSVCRT__pipe @452 + _popen=MSVCRT__popen @453 + _purecall @454 + _putch @455 + _putenv @456 + _putw=MSVCRT__putw @457 + _putwch @458 + _putws=MSVCRT__putws @459 + _read=MSVCRT__read @460 + _resetstkoflw=MSVCRT__resetstkoflw @461 + _rmdir=MSVCRT__rmdir @462 + _rmtmp=MSVCRT__rmtmp @463 + _rotl @464 + _rotr @465 + _safe_fdiv @466 + _safe_fdivr @467 + _safe_fprem @468 + _safe_fprem1 @469 + _scalb=MSVCRT__scalb @470 + _scprintf=MSVCRT__scprintf @471 + _scwprintf=MSVCRT__scwprintf @472 + _searchenv=MSVCRT__searchenv @473 + _seh_longjmp_unwind@4 @474 + _set_SSE2_enable=MSVCRT__set_SSE2_enable @475 + _set_error_mode @476 + _set_sbh_threshold @477 + _set_security_error_handler @478 + _seterrormode @479 + _setjmp=MSVCRT__setjmp @480 + _setjmp3=MSVCRT__setjmp3 @481 + _setmaxstdio=MSVCRT__setmaxstdio @482 + _setmbcp @483 + _setmode=MSVCRT__setmode @484 + _setsystime@8 @485 PRIVATE + _sleep=MSVCRT__sleep @486 + _snprintf=MSVCRT__snprintf @487 + _snscanf=MSVCRT__snscanf @488 + _snwprintf=MSVCRT__snwprintf @489 + _snwscanf=MSVCRT__snwscanf @490 + _sopen=MSVCRT__sopen @491 + _spawnl=MSVCRT__spawnl @492 + _spawnle=MSVCRT__spawnle @493 + _spawnlp=MSVCRT__spawnlp @494 + _spawnlpe=MSVCRT__spawnlpe @495 + _spawnv=MSVCRT__spawnv @496 + _spawnve=MSVCRT__spawnve @497 + _spawnvp=MSVCRT__spawnvp @498 + _spawnvpe=MSVCRT__spawnvpe @499 + _splitpath=MSVCRT__splitpath @500 + _stat=MSVCRT_stat @501 + _stat64=MSVCRT_stat64 @502 + _stati64=MSVCRT_stati64 @503 + _statusfp @504 + _strcmpi=MSVCRT__stricmp @505 + _strdate=MSVCRT__strdate @506 + _strdup=MSVCRT__strdup @507 + _strerror=MSVCRT__strerror @508 + _stricmp=MSVCRT__stricmp @509 + _stricoll=MSVCRT__stricoll @510 + _strlwr=MSVCRT__strlwr @511 + _strncoll=MSVCRT__strncoll @512 + _strnicmp=MSVCRT__strnicmp @513 + _strnicoll=MSVCRT__strnicoll @514 + _strnset=MSVCRT__strnset @515 + _strrev=MSVCRT__strrev @516 + _strset @517 + _strtime=MSVCRT__strtime @518 + _strtoi64=MSVCRT_strtoi64 @519 + _strtoui64=MSVCRT_strtoui64 @520 + _strupr=MSVCRT__strupr @521 + _swab=MSVCRT__swab @522 + _sys_errlist=MSVCRT__sys_errlist @523 DATA + _sys_nerr=MSVCRT__sys_nerr @524 DATA + _tell=MSVCRT__tell @525 + _telli64 @526 + _tempnam=MSVCRT__tempnam @527 + _time64=MSVCRT__time64 @528 + _timezone=MSVCRT___timezone @529 DATA + _tolower=MSVCRT__tolower @530 + _toupper=MSVCRT__toupper @531 + _tzname=MSVCRT__tzname @532 DATA + _tzset=MSVCRT__tzset @533 + _ui64toa=ntdll._ui64toa @534 + _ui64tow=ntdll._ui64tow @535 + _ultoa=ntdll._ultoa @536 + _ultow=ntdll._ultow @537 + _umask=MSVCRT__umask @538 + _ungetch @539 + _ungetwch @540 + _unlink=MSVCRT__unlink @541 + _unloaddll @542 + _unlock @543 + _utime @544 + _utime64 @545 + _vscprintf=MSVCRT__vscprintf @546 + _vscwprintf=MSVCRT__vscwprintf @547 + _vsnprintf=MSVCRT_vsnprintf @548 + _vsnwprintf=MSVCRT_vsnwprintf @549 + _waccess=MSVCRT__waccess @550 + _wasctime=MSVCRT__wasctime @551 + _wchdir=MSVCRT__wchdir @552 + _wchmod=MSVCRT__wchmod @553 + _wcmdln=MSVCRT__wcmdln @554 DATA + _wcreat=MSVCRT__wcreat @555 + _wcsdup=MSVCRT__wcsdup @556 + _wcserror=MSVCRT__wcserror @557 + _wcsicmp=MSVCRT__wcsicmp @558 + _wcsicoll=MSVCRT__wcsicoll @559 + _wcslwr=MSVCRT__wcslwr @560 + _wcsncoll=MSVCRT__wcsncoll @561 + _wcsnicmp=MSVCRT__wcsnicmp @562 + _wcsnicoll=MSVCRT__wcsnicoll @563 + _wcsnset=MSVCRT__wcsnset @564 + _wcsrev=MSVCRT__wcsrev @565 + _wcsset=MSVCRT__wcsset @566 + _wcstoi64=MSVCRT__wcstoi64 @567 + _wcstoui64=MSVCRT__wcstoui64 @568 + _wcsupr=MSVCRT__wcsupr @569 + _wctime=MSVCRT__wctime @570 + _wctime64=MSVCRT__wctime64 @571 + _wenviron=MSVCRT__wenviron @572 DATA + _wexecl @573 + _wexecle @574 + _wexeclp @575 + _wexeclpe @576 + _wexecv @577 + _wexecve @578 + _wexecvp @579 + _wexecvpe @580 + _wfdopen=MSVCRT__wfdopen @581 + _wfindfirst=MSVCRT__wfindfirst @582 + _wfindfirst64=MSVCRT__wfindfirst64 @583 + _wfindfirsti64=MSVCRT__wfindfirsti64 @584 + _wfindnext=MSVCRT__wfindnext @585 + _wfindnext64=MSVCRT__wfindnext64 @586 + _wfindnexti64=MSVCRT__wfindnexti64 @587 + _wfopen=MSVCRT__wfopen @588 + _wfreopen=MSVCRT__wfreopen @589 + _wfsopen=MSVCRT__wfsopen @590 + _wfullpath=MSVCRT__wfullpath @591 + _wgetcwd=MSVCRT__wgetcwd @592 + _wgetdcwd=MSVCRT__wgetdcwd @593 + _wgetenv=MSVCRT__wgetenv @594 + _winmajor=MSVCRT__winmajor @595 DATA + _winminor=MSVCRT__winminor @596 DATA + _winver=MSVCRT__winver @597 DATA + _wmakepath=MSVCRT__wmakepath @598 + _wmkdir=MSVCRT__wmkdir @599 + _wmktemp=MSVCRT__wmktemp @600 + _wopen=MSVCRT__wopen @601 + _wperror=MSVCRT__wperror @602 + _wpgmptr=MSVCRT__wpgmptr @603 DATA + _wpopen=MSVCRT__wpopen @604 + _wputenv @605 + _wremove=MSVCRT__wremove @606 + _wrename=MSVCRT__wrename @607 + _write=MSVCRT__write @608 + _wrmdir=MSVCRT__wrmdir @609 + _wsearchenv=MSVCRT__wsearchenv @610 + _wsetlocale=MSVCRT__wsetlocale @611 + _wsopen=MSVCRT__wsopen @612 + _wspawnl=MSVCRT__wspawnl @613 + _wspawnle=MSVCRT__wspawnle @614 + _wspawnlp=MSVCRT__wspawnlp @615 + _wspawnlpe=MSVCRT__wspawnlpe @616 + _wspawnv=MSVCRT__wspawnv @617 + _wspawnve=MSVCRT__wspawnve @618 + _wspawnvp=MSVCRT__wspawnvp @619 + _wspawnvpe=MSVCRT__wspawnvpe @620 + _wsplitpath=MSVCRT__wsplitpath @621 + _wstat=MSVCRT__wstat @622 + _wstat64=MSVCRT__wstat64 @623 + _wstati64=MSVCRT__wstati64 @624 + _wstrdate=MSVCRT__wstrdate @625 + _wstrtime=MSVCRT__wstrtime @626 + _wsystem @627 + _wtempnam=MSVCRT__wtempnam @628 + _wtmpnam=MSVCRT__wtmpnam @629 + _wtof=MSVCRT__wtof @630 + _wtoi=MSVCRT__wtoi @631 + _wtoi64=MSVCRT__wtoi64 @632 + _wtol=MSVCRT__wtol @633 + _wunlink=MSVCRT__wunlink @634 + _wutime @635 + _wutime64 @636 + _y0=MSVCRT__y0 @637 + _y1=MSVCRT__y1 @638 + _yn=MSVCRT__yn @639 + abort=MSVCRT_abort @640 + abs=MSVCRT_abs @641 + acos=MSVCRT_acos @642 + asctime=MSVCRT_asctime @643 + asin=MSVCRT_asin @644 + atan=MSVCRT_atan @645 + atan2=MSVCRT_atan2 @646 + atexit=MSVCRT_atexit @647 PRIVATE + atof=MSVCRT_atof @648 + atoi=MSVCRT_atoi @649 + atol=MSVCRT_atol @650 + bsearch=MSVCRT_bsearch @651 + calloc=MSVCRT_calloc @652 + ceil=MSVCRT_ceil @653 + clearerr=MSVCRT_clearerr @654 + clock=MSVCRT_clock @655 + cos=MSVCRT_cos @656 + cosh=MSVCRT_cosh @657 + ctime=MSVCRT_ctime @658 + difftime=MSVCRT_difftime @659 + div=MSVCRT_div @660 + exit=MSVCRT_exit @661 + exp=MSVCRT_exp @662 + fabs=MSVCRT_fabs @663 + fclose=MSVCRT_fclose @664 + feof=MSVCRT_feof @665 + ferror=MSVCRT_ferror @666 + fflush=MSVCRT_fflush @667 + fgetc=MSVCRT_fgetc @668 + fgetpos=MSVCRT_fgetpos @669 + fgets=MSVCRT_fgets @670 + fgetwc=MSVCRT_fgetwc @671 + fgetws=MSVCRT_fgetws @672 + floor=MSVCRT_floor @673 + fmod=MSVCRT_fmod @674 + fopen=MSVCRT_fopen @675 + fprintf=MSVCRT_fprintf @676 + fputc=MSVCRT_fputc @677 + fputs=MSVCRT_fputs @678 + fputwc=MSVCRT_fputwc @679 + fputws=MSVCRT_fputws @680 + fread=MSVCRT_fread @681 + free=MSVCRT_free @682 + freopen=MSVCRT_freopen @683 + frexp=MSVCRT_frexp @684 + fscanf=MSVCRT_fscanf @685 + fseek=MSVCRT_fseek @686 + fsetpos=MSVCRT_fsetpos @687 + ftell=MSVCRT_ftell @688 + fwprintf=MSVCRT_fwprintf @689 + fwrite=MSVCRT_fwrite @690 + fwscanf=MSVCRT_fwscanf @691 + getc=MSVCRT_getc @692 + getchar=MSVCRT_getchar @693 + getenv=MSVCRT_getenv @694 + gets=MSVCRT_gets @695 + getwc=MSVCRT_getwc @696 + getwchar=MSVCRT_getwchar @697 + gmtime=MSVCRT_gmtime @698 + is_wctype=ntdll.iswctype @699 + isalnum=MSVCRT_isalnum @700 + isalpha=MSVCRT_isalpha @701 + iscntrl=MSVCRT_iscntrl @702 + isdigit=MSVCRT_isdigit @703 + isgraph=MSVCRT_isgraph @704 + isleadbyte=MSVCRT_isleadbyte @705 + islower=MSVCRT_islower @706 + isprint=MSVCRT_isprint @707 + ispunct=MSVCRT_ispunct @708 + isspace=MSVCRT_isspace @709 + isupper=MSVCRT_isupper @710 + iswalnum=MSVCRT_iswalnum @711 + iswalpha=ntdll.iswalpha @712 + iswascii=MSVCRT_iswascii @713 + iswcntrl=MSVCRT_iswcntrl @714 + iswctype=ntdll.iswctype @715 + iswdigit=MSVCRT_iswdigit @716 + iswgraph=MSVCRT_iswgraph @717 + iswlower=MSVCRT_iswlower @718 + iswprint=MSVCRT_iswprint @719 + iswpunct=MSVCRT_iswpunct @720 + iswspace=MSVCRT_iswspace @721 + iswupper=MSVCRT_iswupper @722 + iswxdigit=MSVCRT_iswxdigit @723 + isxdigit=MSVCRT_isxdigit @724 + labs=MSVCRT_labs @725 + ldexp=MSVCRT_ldexp @726 + ldiv=MSVCRT_ldiv @727 + localeconv=MSVCRT_localeconv @728 + localtime=MSVCRT_localtime @729 + log=MSVCRT_log @730 + log10=MSVCRT_log10 @731 + longjmp=MSVCRT_longjmp @732 + malloc=MSVCRT_malloc @733 + mblen=MSVCRT_mblen @734 + mbstowcs=MSVCRT_mbstowcs @735 + mbtowc=MSVCRT_mbtowc @736 + memchr=MSVCRT_memchr @737 + memcmp=MSVCRT_memcmp @738 + memcpy=MSVCRT_memcpy @739 + memmove=MSVCRT_memmove @740 + memset=MSVCRT_memset @741 + mktime=MSVCRT_mktime @742 + modf=MSVCRT_modf @743 + perror=MSVCRT_perror @744 + pow=MSVCRT_pow @745 + printf=MSVCRT_printf @746 + putc=MSVCRT_putc @747 + putchar=MSVCRT_putchar @748 + puts=MSVCRT_puts @749 + putwc=MSVCRT_fputwc @750 + putwchar=MSVCRT__fputwchar @751 + qsort=MSVCRT_qsort @752 + raise=MSVCRT_raise @753 + rand=MSVCRT_rand @754 + realloc=MSVCRT_realloc @755 + remove=MSVCRT_remove @756 + rename=MSVCRT_rename @757 + rewind=MSVCRT_rewind @758 + scanf=MSVCRT_scanf @759 + setbuf=MSVCRT_setbuf @760 + setlocale=MSVCRT_setlocale @761 + setvbuf=MSVCRT_setvbuf @762 + signal=MSVCRT_signal @763 + sin=MSVCRT_sin @764 + sinh=MSVCRT_sinh @765 + sprintf=MSVCRT_sprintf @766 + sqrt=MSVCRT_sqrt @767 + srand=MSVCRT_srand @768 + sscanf=MSVCRT_sscanf @769 + strcat=ntdll.strcat @770 + strchr=MSVCRT_strchr @771 + strcmp=MSVCRT_strcmp @772 + strcoll=MSVCRT_strcoll @773 + strcpy=MSVCRT_strcpy @774 + strcspn=MSVCRT_strcspn @775 + strerror=MSVCRT_strerror @776 + strftime=MSVCRT_strftime @777 + strlen=MSVCRT_strlen @778 + strncat=MSVCRT_strncat @779 + strncmp=MSVCRT_strncmp @780 + strncpy=MSVCRT_strncpy @781 + strpbrk=MSVCRT_strpbrk @782 + strrchr=MSVCRT_strrchr @783 + strspn=ntdll.strspn @784 + strstr=MSVCRT_strstr @785 + strtod=MSVCRT_strtod @786 + strtok=MSVCRT_strtok @787 + strtol=MSVCRT_strtol @788 + strtoul=MSVCRT_strtoul @789 + strxfrm=MSVCRT_strxfrm @790 + swprintf=MSVCRT_swprintf @791 + swscanf=MSVCRT_swscanf @792 + system=MSVCRT_system @793 + tan=MSVCRT_tan @794 + tanh=MSVCRT_tanh @795 + time=MSVCRT_time @796 + tmpfile=MSVCRT_tmpfile @797 + tmpnam=MSVCRT_tmpnam @798 + tolower=MSVCRT_tolower @799 + toupper=MSVCRT_toupper @800 + towlower=MSVCRT_towlower @801 + towupper=MSVCRT_towupper @802 + ungetc=MSVCRT_ungetc @803 + ungetwc=MSVCRT_ungetwc @804 + vfprintf=MSVCRT_vfprintf @805 + vfwprintf=MSVCRT_vfwprintf @806 + vprintf=MSVCRT_vprintf @807 + vsprintf=MSVCRT_vsprintf @808 + vswprintf=MSVCRT_vswprintf @809 + vwprintf=MSVCRT_vwprintf @810 + wcscat=ntdll.wcscat @811 + wcschr=MSVCRT_wcschr @812 + wcscmp=MSVCRT_wcscmp @813 + wcscoll=MSVCRT_wcscoll @814 + wcscpy=ntdll.wcscpy @815 + wcscspn=ntdll.wcscspn @816 + wcsftime=MSVCRT_wcsftime @817 + wcslen=MSVCRT_wcslen @818 + wcsncat=ntdll.wcsncat @819 + wcsncmp=MSVCRT_wcsncmp @820 + wcsncpy=MSVCRT_wcsncpy @821 + wcspbrk=MSVCRT_wcspbrk @822 + wcsrchr=MSVCRT_wcsrchr @823 + wcsspn=ntdll.wcsspn @824 + wcsstr=MSVCRT_wcsstr @825 + wcstod=MSVCRT_wcstod @826 + wcstok=MSVCRT_wcstok @827 + wcstol=MSVCRT_wcstol @828 + wcstombs=MSVCRT_wcstombs @829 + wcstoul=MSVCRT_wcstoul @830 + wcsxfrm=MSVCRT_wcsxfrm @831 + wctomb=MSVCRT_wctomb @832 + wprintf=MSVCRT_wprintf @833 + wscanf=MSVCRT_wscanf @834 diff --git a/lib/wine/libmsvcr71.def b/lib/wine/libmsvcr71.def new file mode 100644 index 0000000..2abb96c --- /dev/null +++ b/lib/wine/libmsvcr71.def @@ -0,0 +1,837 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/msvcr71/msvcr71.spec; do not edit! + +LIBRARY msvcr71.dll + +EXPORTS + ??0__non_rtti_object@@QAE@ABV0@@Z@8=__thiscall_MSVCRT___non_rtti_object_copy_ctor @1 + ??0__non_rtti_object@@QAE@PBD@Z@8=__thiscall_MSVCRT___non_rtti_object_ctor @2 + ??0bad_cast@@AAE@PBQBD@Z@8=__thiscall_MSVCRT_bad_cast_ctor @3 + ??0bad_cast@@QAE@ABQBD@Z@8=__thiscall_MSVCRT_bad_cast_ctor @4 + ??0bad_cast@@QAE@ABV0@@Z@8=__thiscall_MSVCRT_bad_cast_copy_ctor @5 + ??0bad_cast@@QAE@PBD@Z@8=__thiscall_MSVCRT_bad_cast_ctor_charptr @6 + ??0bad_typeid@@QAE@ABV0@@Z@8=__thiscall_MSVCRT_bad_typeid_copy_ctor @7 + ??0bad_typeid@@QAE@PBD@Z@8=__thiscall_MSVCRT_bad_typeid_ctor @8 + ??0exception@@QAE@ABQBD@Z@8=__thiscall_MSVCRT_exception_ctor @9 + ??0exception@@QAE@ABV0@@Z@8=__thiscall_MSVCRT_exception_copy_ctor @10 + ??0exception@@QAE@XZ@4=__thiscall_MSVCRT_exception_default_ctor @11 + ??1__non_rtti_object@@UAE@XZ@4=__thiscall_MSVCRT___non_rtti_object_dtor @12 + ??1bad_cast@@UAE@XZ@4=__thiscall_MSVCRT_bad_cast_dtor @13 + ??1bad_typeid@@UAE@XZ@4=__thiscall_MSVCRT_bad_typeid_dtor @14 + ??1exception@@UAE@XZ@4=__thiscall_MSVCRT_exception_dtor @15 + ??1type_info@@UAE@XZ@4=__thiscall_MSVCRT_type_info_dtor @16 + ??2@YAPAXI@Z=MSVCRT_operator_new @17 + ??3@YAXPAX@Z=MSVCRT_operator_delete @18 + ??4__non_rtti_object@@QAEAAV0@ABV0@@Z@8=__thiscall_MSVCRT___non_rtti_object_opequals @19 + ??4bad_cast@@QAEAAV0@ABV0@@Z@8=__thiscall_MSVCRT_bad_cast_opequals @20 + ??4bad_typeid@@QAEAAV0@ABV0@@Z@8=__thiscall_MSVCRT_bad_typeid_opequals @21 + ??4exception@@QAEAAV0@ABV0@@Z@8=__thiscall_MSVCRT_exception_opequals @22 + ??8type_info@@QBEHABV0@@Z@8=__thiscall_MSVCRT_type_info_opequals_equals @23 + ??9type_info@@QBEHABV0@@Z@8=__thiscall_MSVCRT_type_info_opnot_equals @24 + ??_7__non_rtti_object@@6B@=MSVCRT___non_rtti_object_vtable @25 DATA + ??_7bad_cast@@6B@=MSVCRT_bad_cast_vtable @26 DATA + ??_7bad_typeid@@6B@=MSVCRT_bad_typeid_vtable @27 DATA + ??_7exception@@6B@=MSVCRT_exception_vtable @28 DATA + ??_Fbad_cast@@QAEXXZ@4=__thiscall_MSVCRT_bad_cast_default_ctor @29 + ??_Fbad_typeid@@QAEXXZ@4=__thiscall_MSVCRT_bad_typeid_default_ctor @30 + ??_U@YAPAXI@Z=MSVCRT_operator_new @31 + ??_V@YAXPAX@Z=MSVCRT_operator_delete @32 + __uncaught_exception=MSVCRT___uncaught_exception @33 + ?_query_new_handler@@YAP6AHI@ZXZ=MSVCRT__query_new_handler @34 + ?_query_new_mode@@YAHXZ=MSVCRT__query_new_mode @35 + ?_set_new_handler@@YAP6AHI@ZP6AHI@Z@Z=MSVCRT__set_new_handler @36 + ?_set_new_mode@@YAHH@Z=MSVCRT__set_new_mode @37 + ?_set_se_translator@@YAP6AXIPAU_EXCEPTION_POINTERS@@@ZP6AXI0@Z@Z=MSVCRT__set_se_translator @38 + ?before@type_info@@QBEHABV1@@Z@8=__thiscall_MSVCRT_type_info_before @39 + ?name@type_info@@QBEPBDXZ@4=__thiscall_MSVCRT_type_info_name @40 + ?raw_name@type_info@@QBEPBDXZ@4=__thiscall_MSVCRT_type_info_raw_name @41 + ?set_new_handler@@YAP6AXXZP6AXXZ@Z=MSVCRT_set_new_handler @42 + ?set_terminate@@YAP6AXXZP6AXXZ@Z=MSVCRT_set_terminate @43 + ?set_unexpected@@YAP6AXXZP6AXXZ@Z=MSVCRT_set_unexpected @44 + ?swprintf@@YAHPAGIPBGZZ=MSVCRT__snwprintf @45 + ?swprintf@@YAHPA_WIPB_WZZ=MSVCRT__snwprintf @46 + ?terminate@@YAXXZ=MSVCRT_terminate @47 + ?unexpected@@YAXXZ=MSVCRT_unexpected @48 + ?vswprintf@@YAHPAGIPBGPAD@Z=MSVCRT_vsnwprintf @49 + ?vswprintf@@YAHPA_WIPB_WPAD@Z=MSVCRT_vsnwprintf @50 + ?what@exception@@UBEPBDXZ@4=__thiscall_MSVCRT_what_exception @51 + $I10_OUTPUT=MSVCRT_I10_OUTPUT @52 + _CIacos @53 + _CIasin @54 + _CIatan @55 + _CIatan2 @56 + _CIcos @57 + _CIcosh @58 + _CIexp @59 + _CIfmod @60 + _CIlog @61 + _CIlog10 @62 + _CIpow @63 + _CIsin @64 + _CIsinh @65 + _CIsqrt @66 + _CItan @67 + _CItanh @68 + _CRT_RTC_INIT @69 + _CxxThrowException@8 @70 + _EH_prolog @71 + _Getdays @72 + _Getmonths @73 + _Gettnames @74 + _HUGE=MSVCRT__HUGE @75 DATA + _Strftime @76 + _XcptFilter @77 + __CppXcptFilter @78 + __CxxCallUnwindDtor@0 @79 PRIVATE + __CxxCallUnwindVecDtor@0 @80 PRIVATE + __CxxDetectRethrow @81 + __CxxExceptionFilter @82 + __CxxFrameHandler @83 + __CxxLongjmpUnwind@4 @84 + __CxxQueryExceptionSize @85 + __CxxRegisterExceptionObject @86 + __CxxUnregisterExceptionObject @87 + __DestructExceptionObject @88 + __RTCastToVoid=MSVCRT___RTCastToVoid @89 + __RTDynamicCast=MSVCRT___RTDynamicCast @90 + __RTtypeid=MSVCRT___RTtypeid @91 + __STRINGTOLD @92 + ___lc_codepage_func @93 + ___lc_collate_cp_func @94 + ___lc_handle_func @95 + ___mb_cur_max_func=MSVCRT____mb_cur_max_func @96 + ___setlc_active_func=MSVCRT____setlc_active_func @97 + ___unguarded_readlc_active_add_func=MSVCRT____unguarded_readlc_active_add_func @98 + __argc=MSVCRT___argc @99 DATA + __argv=MSVCRT___argv @100 DATA + __badioinfo=MSVCRT___badioinfo @101 DATA + __buffer_overrun@0 @102 PRIVATE + __crtCompareStringA @103 + __crtCompareStringW @104 + __crtGetLocaleInfoW @105 + __crtGetStringTypeW @106 + __crtLCMapStringA @107 + __crtLCMapStringW @108 + __dllonexit @109 + __doserrno=MSVCRT___doserrno @110 + __fpecode @111 + __getmainargs @112 + __initenv=MSVCRT___initenv @113 DATA + __iob_func=__p__iob @114 + __isascii=MSVCRT___isascii @115 + __iscsym=MSVCRT___iscsym @116 + __iscsymf=MSVCRT___iscsymf @117 + __lc_codepage=MSVCRT___lc_codepage @118 DATA + __lc_collate_cp=MSVCRT___lc_collate_cp @119 DATA + __lc_handle=MSVCRT___lc_handle @120 DATA + __lconv_init @121 + __mb_cur_max=MSVCRT___mb_cur_max @122 DATA + __p___argc=MSVCRT___p___argc @123 + __p___argv=MSVCRT___p___argv @124 + __p___initenv @125 + __p___mb_cur_max @126 + __p___wargv=MSVCRT___p___wargv @127 + __p___winitenv @128 + __p__acmdln=MSVCRT___p__acmdln @129 + __p__amblksiz @130 + __p__commode @131 + __p__daylight=MSVCRT___p__daylight @132 + __p__dstbias=MSVCRT___p__dstbias @133 + __p__environ=MSVCRT___p__environ @134 + __p__fileinfo@0 @135 PRIVATE + __p__fmode=MSVCRT___p__fmode @136 + __p__iob @137 + __p__mbcasemap@0 @138 PRIVATE + __p__mbctype @139 + __p__osver @140 + __p__pctype=MSVCRT___p__pctype @141 + __p__pgmptr=MSVCRT___p__pgmptr @142 + __p__pwctype@0 @143 PRIVATE + __p__timezone=MSVCRT___p__timezone @144 + __p__tzname @145 + __p__wcmdln=MSVCRT___p__wcmdln @146 + __p__wenviron=MSVCRT___p__wenviron @147 + __p__winmajor @148 + __p__winminor @149 + __p__winver @150 + __p__wpgmptr=MSVCRT___p__wpgmptr @151 + __pctype_func=MSVCRT___pctype_func @152 + __pioinfo=MSVCRT___pioinfo @153 DATA + __pwctype_func@0 @154 PRIVATE + __pxcptinfoptrs=MSVCRT___pxcptinfoptrs @155 + __security_error_handler @156 + __set_app_type=MSVCRT___set_app_type @157 + __set_buffer_overrun_handler@0 @158 PRIVATE + __setlc_active=MSVCRT___setlc_active @159 DATA + __setusermatherr=MSVCRT___setusermatherr @160 + __threadhandle=kernel32.GetCurrentThread @161 + __threadid=kernel32.GetCurrentThreadId @162 + __toascii=MSVCRT___toascii @163 + __unDName @164 + __unDNameEx @165 + __unguarded_readlc_active=MSVCRT___unguarded_readlc_active @166 DATA + __wargv=MSVCRT___wargv @167 DATA + __wcserror=MSVCRT___wcserror @168 + __wgetmainargs @169 + __winitenv=MSVCRT___winitenv @170 DATA + _abnormal_termination @171 + _access=MSVCRT__access @172 + _acmdln=MSVCRT__acmdln @173 DATA + _adj_fdiv_m16i@4 @174 + _adj_fdiv_m32@4 @175 + _adj_fdiv_m32i@4 @176 + _adj_fdiv_m64@8 @177 + _adj_fdiv_r @178 + _adj_fdivr_m16i@4 @179 + _adj_fdivr_m32@4 @180 + _adj_fdivr_m32i@4 @181 + _adj_fdivr_m64@8 @182 + _adj_fpatan @183 + _adj_fprem @184 + _adj_fprem1 @185 + _adj_fptan @186 + _adjust_fdiv=MSVCRT__adjust_fdiv @187 DATA + _aexit_rtn @188 DATA + _aligned_free @189 + _aligned_malloc @190 + _aligned_offset_malloc @191 + _aligned_offset_realloc @192 + _aligned_realloc @193 + _amsg_exit @194 + _assert=MSVCRT__assert @195 + _atodbl=MSVCRT__atodbl @196 + _atoi64=ntdll._atoi64 @197 + _atoldbl=MSVCRT__atoldbl @198 + _beep=MSVCRT__beep @199 + _beginthread @200 + _beginthreadex @201 + _c_exit=MSVCRT__c_exit @202 + _cabs=MSVCRT__cabs @203 + _callnewh @204 + _cexit=MSVCRT__cexit @205 + _cgets @206 + _cgetws@0 @207 PRIVATE + _chdir=MSVCRT__chdir @208 + _chdrive=MSVCRT__chdrive @209 + _chgsign=MSVCRT__chgsign @210 + _chkesp @211 + _chmod=MSVCRT__chmod @212 + _chsize=MSVCRT__chsize @213 + _clearfp @214 + _close=MSVCRT__close @215 + _commit=MSVCRT__commit @216 + _commode=MSVCRT__commode @217 DATA + _control87 @218 + _controlfp @219 + _copysign=MSVCRT__copysign @220 + _cprintf @221 + _cputs @222 + _cputws @223 + _creat=MSVCRT__creat @224 + _cscanf @225 + _ctime64=MSVCRT__ctime64 @226 + _cwait @227 + _cwprintf @228 + _cwscanf @229 + _daylight=MSVCRT___daylight @230 DATA + _dstbias=MSVCRT__dstbias @231 DATA + _dup=MSVCRT__dup @232 + _dup2=MSVCRT__dup2 @233 + _ecvt=MSVCRT__ecvt @234 + _endthread @235 + _endthreadex @236 + _environ=MSVCRT__environ @237 DATA + _eof=MSVCRT__eof @238 + _errno=MSVCRT__errno @239 + _except_handler2 @240 + _except_handler3 @241 + _execl @242 + _execle @243 + _execlp @244 + _execlpe @245 + _execv @246 + _execve=MSVCRT__execve @247 + _execvp @248 + _execvpe @249 + _exit=MSVCRT__exit @250 + _expand @251 + _fcloseall=MSVCRT__fcloseall @252 + _fcvt=MSVCRT__fcvt @253 + _fdopen=MSVCRT__fdopen @254 + _fgetchar=MSVCRT__fgetchar @255 + _fgetwchar=MSVCRT__fgetwchar @256 + _filbuf=MSVCRT__filbuf @257 + _filelength=MSVCRT__filelength @258 + _filelengthi64=MSVCRT__filelengthi64 @259 + _fileno=MSVCRT__fileno @260 + _findclose=MSVCRT__findclose @261 + _findfirst=MSVCRT__findfirst @262 + _findfirst64=MSVCRT__findfirst64 @263 + _findfirsti64=MSVCRT__findfirsti64 @264 + _findnext=MSVCRT__findnext @265 + _findnext64=MSVCRT__findnext64 @266 + _findnexti64=MSVCRT__findnexti64 @267 + _finite=MSVCRT__finite @268 + _flsbuf=MSVCRT__flsbuf @269 + _flushall=MSVCRT__flushall @270 + _fmode=MSVCRT__fmode @271 DATA + _fpclass=MSVCRT__fpclass @272 + _fpieee_flt @273 + _fpreset @274 + _fputchar=MSVCRT__fputchar @275 + _fputwchar=MSVCRT__fputwchar @276 + _fsopen=MSVCRT__fsopen @277 + _fstat=MSVCRT__fstat @278 + _fstat64=MSVCRT__fstat64 @279 + _fstati64=MSVCRT__fstati64 @280 + _ftime=MSVCRT__ftime @281 + _ftime64=MSVCRT__ftime64 @282 + _ftol=MSVCRT__ftol @283 + _fullpath=MSVCRT__fullpath @284 + _futime @285 + _futime64 @286 + _gcvt=MSVCRT__gcvt @287 + _get_heap_handle @288 + _get_osfhandle=MSVCRT__get_osfhandle @289 + _get_sbh_threshold @290 + _getch @291 + _getche @292 + _getcwd=MSVCRT__getcwd @293 + _getdcwd=MSVCRT__getdcwd @294 + _getdiskfree=MSVCRT__getdiskfree @295 + _getdllprocaddr @296 + _getdrive=MSVCRT__getdrive @297 + _getdrives=kernel32.GetLogicalDrives @298 + _getmaxstdio=MSVCRT__getmaxstdio @299 + _getmbcp @300 + _getpid @301 + _getsystime@4 @302 PRIVATE + _getw=MSVCRT__getw @303 + _getwch @304 + _getwche @305 + _getws=MSVCRT__getws @306 + _global_unwind2 @307 + _gmtime64=MSVCRT__gmtime64 @308 + _heapadd @309 + _heapchk @310 + _heapmin @311 + _heapset @312 + _heapused@8 @313 PRIVATE + _heapwalk @314 + _hypot @315 + _i64toa=ntdll._i64toa @316 + _i64tow=ntdll._i64tow @317 + _initterm @318 + _inp@4 @319 PRIVATE + _inpd@4 @320 PRIVATE + _inpw@4 @321 PRIVATE + _iob=MSVCRT__iob @322 DATA + _isatty=MSVCRT__isatty @323 + _isctype=MSVCRT__isctype @324 + _ismbbalnum@4 @325 PRIVATE + _ismbbalpha@4 @326 PRIVATE + _ismbbgraph@4 @327 PRIVATE + _ismbbkalnum@4 @328 PRIVATE + _ismbbkana @329 + _ismbbkprint@4 @330 PRIVATE + _ismbbkpunct@4 @331 PRIVATE + _ismbblead @332 + _ismbbprint@4 @333 PRIVATE + _ismbbpunct@4 @334 PRIVATE + _ismbbtrail @335 + _ismbcalnum @336 + _ismbcalpha @337 + _ismbcdigit @338 + _ismbcgraph @339 + _ismbchira @340 + _ismbckata @341 + _ismbcl0 @342 + _ismbcl1 @343 + _ismbcl2 @344 + _ismbclegal @345 + _ismbclower @346 + _ismbcprint @347 + _ismbcpunct @348 + _ismbcspace @349 + _ismbcsymbol @350 + _ismbcupper @351 + _ismbslead @352 + _ismbstrail @353 + _isnan=MSVCRT__isnan @354 + _itoa=MSVCRT__itoa @355 + _itow=ntdll._itow @356 + _j0=MSVCRT__j0 @357 + _j1=MSVCRT__j1 @358 + _jn=MSVCRT__jn @359 + _kbhit @360 + _lfind @361 + _loaddll @362 + _local_unwind2 @363 + _localtime64=MSVCRT__localtime64 @364 + _lock @365 + _locking=MSVCRT__locking @366 + _logb=MSVCRT__logb @367 + _longjmpex=MSVCRT_longjmp @368 + _lrotl=MSVCRT__lrotl @369 + _lrotr=MSVCRT__lrotr @370 + _lsearch @371 + _lseek=MSVCRT__lseek @372 + _lseeki64=MSVCRT__lseeki64 @373 + _ltoa=ntdll._ltoa @374 + _ltow=ntdll._ltow @375 + _makepath=MSVCRT__makepath @376 + _mbbtombc @377 + _mbbtype @378 + _mbccpy @379 + _mbcjistojms @380 + _mbcjmstojis @381 + _mbclen @382 + _mbctohira @383 + _mbctokata @384 + _mbctolower @385 + _mbctombb @386 + _mbctoupper @387 + _mbctype=MSVCRT_mbctype @388 DATA + _mbsbtype @389 + _mbscat @390 + _mbschr @391 + _mbscmp @392 + _mbscoll @393 + _mbscpy @394 + _mbscspn @395 + _mbsdec @396 + _mbsdup=MSVCRT__strdup @397 + _mbsicmp @398 + _mbsicoll @399 + _mbsinc @400 + _mbslen @401 + _mbslwr @402 + _mbsnbcat @403 + _mbsnbcmp @404 + _mbsnbcnt @405 + _mbsnbcoll @406 + _mbsnbcpy @407 + _mbsnbicmp @408 + _mbsnbicoll @409 + _mbsnbset @410 + _mbsncat @411 + _mbsnccnt @412 + _mbsncmp @413 + _mbsncoll@12 @414 PRIVATE + _mbsncpy @415 + _mbsnextc @416 + _mbsnicmp @417 + _mbsnicoll@12 @418 PRIVATE + _mbsninc @419 + _mbsnset @420 + _mbspbrk @421 + _mbsrchr @422 + _mbsrev @423 + _mbsset @424 + _mbsspn @425 + _mbsspnp @426 + _mbsstr @427 + _mbstok @428 + _mbstrlen @429 + _mbsupr @430 + _memccpy=ntdll._memccpy @431 + _memicmp=MSVCRT__memicmp @432 + _mkdir=MSVCRT__mkdir @433 + _mktemp=MSVCRT__mktemp @434 + _mktime64=MSVCRT__mktime64 @435 + _msize @436 + _nextafter=MSVCRT__nextafter @437 + _onexit=MSVCRT__onexit @438 + _open=MSVCRT__open @439 + _open_osfhandle=MSVCRT__open_osfhandle @440 + _osplatform=MSVCRT__osplatform @441 DATA + _osver=MSVCRT__osver @442 DATA + _outp@8 @443 PRIVATE + _outpd@8 @444 PRIVATE + _outpw@8 @445 PRIVATE + _pclose=MSVCRT__pclose @446 + _pctype=MSVCRT__pctype @447 DATA + _pgmptr=MSVCRT__pgmptr @448 DATA + _pipe=MSVCRT__pipe @449 + _popen=MSVCRT__popen @450 + _purecall @451 + _putch @452 + _putenv @453 + _putw=MSVCRT__putw @454 + _putwch @455 + _putws=MSVCRT__putws @456 + _read=MSVCRT__read @457 + _resetstkoflw=MSVCRT__resetstkoflw @458 + _rmdir=MSVCRT__rmdir @459 + _rmtmp=MSVCRT__rmtmp @460 + _rotl @461 + _rotr @462 + _safe_fdiv @463 + _safe_fdivr @464 + _safe_fprem @465 + _safe_fprem1 @466 + _scalb=MSVCRT__scalb @467 + _scprintf=MSVCRT__scprintf @468 + _scwprintf=MSVCRT__scwprintf @469 + _searchenv=MSVCRT__searchenv @470 + _seh_longjmp_unwind@4 @471 + _set_SSE2_enable=MSVCRT__set_SSE2_enable @472 + _set_error_mode @473 + _set_purecall_handler @474 + _set_sbh_threshold @475 + _set_security_error_handler @476 + _seterrormode @477 + _setjmp=MSVCRT__setjmp @478 + _setjmp3=MSVCRT__setjmp3 @479 + _setmaxstdio=MSVCRT__setmaxstdio @480 + _setmbcp @481 + _setmode=MSVCRT__setmode @482 + _setsystime@8 @483 PRIVATE + _sleep=MSVCRT__sleep @484 + _snprintf=MSVCRT__snprintf @485 + _snscanf=MSVCRT__snscanf @486 + _snwprintf=MSVCRT__snwprintf @487 + _snwscanf=MSVCRT__snwscanf @488 + _sopen=MSVCRT__sopen @489 + _spawnl=MSVCRT__spawnl @490 + _spawnle=MSVCRT__spawnle @491 + _spawnlp=MSVCRT__spawnlp @492 + _spawnlpe=MSVCRT__spawnlpe @493 + _spawnv=MSVCRT__spawnv @494 + _spawnve=MSVCRT__spawnve @495 + _spawnvp=MSVCRT__spawnvp @496 + _spawnvpe=MSVCRT__spawnvpe @497 + _splitpath=MSVCRT__splitpath @498 + _stat=MSVCRT_stat @499 + _stat64=MSVCRT_stat64 @500 + _stati64=MSVCRT_stati64 @501 + _statusfp @502 + _strcmpi=MSVCRT__stricmp @503 + _strdate=MSVCRT__strdate @504 + _strdup=MSVCRT__strdup @505 + _strerror=MSVCRT__strerror @506 + _stricmp=MSVCRT__stricmp @507 + _stricoll=MSVCRT__stricoll @508 + _strlwr=MSVCRT__strlwr @509 + _strncoll=MSVCRT__strncoll @510 + _strnicmp=MSVCRT__strnicmp @511 + _strnicoll=MSVCRT__strnicoll @512 + _strnset=MSVCRT__strnset @513 + _strrev=MSVCRT__strrev @514 + _strset @515 + _strtime=MSVCRT__strtime @516 + _strtoi64=MSVCRT_strtoi64 @517 + _strtoui64=MSVCRT_strtoui64 @518 + _strupr=MSVCRT__strupr @519 + _swab=MSVCRT__swab @520 + _sys_errlist=MSVCRT__sys_errlist @521 DATA + _sys_nerr=MSVCRT__sys_nerr @522 DATA + _tell=MSVCRT__tell @523 + _telli64 @524 + _tempnam=MSVCRT__tempnam @525 + _time64=MSVCRT__time64 @526 + _timezone=MSVCRT___timezone @527 DATA + _tolower=MSVCRT__tolower @528 + _toupper=MSVCRT__toupper @529 + _tzname=MSVCRT__tzname @530 DATA + _tzset=MSVCRT__tzset @531 + _ui64toa=ntdll._ui64toa @532 + _ui64tow=ntdll._ui64tow @533 + _ultoa=ntdll._ultoa @534 + _ultow=ntdll._ultow @535 + _umask=MSVCRT__umask @536 + _ungetch @537 + _ungetwch @538 + _unlink=MSVCRT__unlink @539 + _unloaddll @540 + _unlock @541 + _utime @542 + _utime64 @543 + _vscprintf=MSVCRT__vscprintf @544 + _vscwprintf=MSVCRT__vscwprintf @545 + _vsnprintf=MSVCRT_vsnprintf @546 + _vsnwprintf=MSVCRT_vsnwprintf @547 + _waccess=MSVCRT__waccess @548 + _wasctime=MSVCRT__wasctime @549 + _wchdir=MSVCRT__wchdir @550 + _wchmod=MSVCRT__wchmod @551 + _wcmdln=MSVCRT__wcmdln @552 DATA + _wcreat=MSVCRT__wcreat @553 + _wcsdup=MSVCRT__wcsdup @554 + _wcserror=MSVCRT__wcserror @555 + _wcsicmp=MSVCRT__wcsicmp @556 + _wcsicoll=MSVCRT__wcsicoll @557 + _wcslwr=MSVCRT__wcslwr @558 + _wcsncoll=MSVCRT__wcsncoll @559 + _wcsnicmp=MSVCRT__wcsnicmp @560 + _wcsnicoll=MSVCRT__wcsnicoll @561 + _wcsnset=MSVCRT__wcsnset @562 + _wcsrev=MSVCRT__wcsrev @563 + _wcsset=MSVCRT__wcsset @564 + _wcstoi64=MSVCRT__wcstoi64 @565 + _wcstoui64=MSVCRT__wcstoui64 @566 + _wcsupr=MSVCRT__wcsupr @567 + _wctime=MSVCRT__wctime @568 + _wctime64=MSVCRT__wctime64 @569 + _wenviron=MSVCRT__wenviron @570 DATA + _wexecl @571 + _wexecle @572 + _wexeclp @573 + _wexeclpe @574 + _wexecv @575 + _wexecve @576 + _wexecvp @577 + _wexecvpe @578 + _wfdopen=MSVCRT__wfdopen @579 + _wfindfirst=MSVCRT__wfindfirst @580 + _wfindfirst64=MSVCRT__wfindfirst64 @581 + _wfindfirsti64=MSVCRT__wfindfirsti64 @582 + _wfindnext=MSVCRT__wfindnext @583 + _wfindnext64=MSVCRT__wfindnext64 @584 + _wfindnexti64=MSVCRT__wfindnexti64 @585 + _wfopen=MSVCRT__wfopen @586 + _wfreopen=MSVCRT__wfreopen @587 + _wfsopen=MSVCRT__wfsopen @588 + _wfullpath=MSVCRT__wfullpath @589 + _wgetcwd=MSVCRT__wgetcwd @590 + _wgetdcwd=MSVCRT__wgetdcwd @591 + _wgetenv=MSVCRT__wgetenv @592 + _winmajor=MSVCRT__winmajor @593 DATA + _winminor=MSVCRT__winminor @594 DATA + _winver=MSVCRT__winver @595 DATA + _wmakepath=MSVCRT__wmakepath @596 + _wmkdir=MSVCRT__wmkdir @597 + _wmktemp=MSVCRT__wmktemp @598 + _wopen=MSVCRT__wopen @599 + _wperror=MSVCRT__wperror @600 + _wpgmptr=MSVCRT__wpgmptr @601 DATA + _wpopen=MSVCRT__wpopen @602 + _wputenv @603 + _wremove=MSVCRT__wremove @604 + _wrename=MSVCRT__wrename @605 + _write=MSVCRT__write @606 + _wrmdir=MSVCRT__wrmdir @607 + _wsearchenv=MSVCRT__wsearchenv @608 + _wsetlocale=MSVCRT__wsetlocale @609 + _wsopen=MSVCRT__wsopen @610 + _wspawnl=MSVCRT__wspawnl @611 + _wspawnle=MSVCRT__wspawnle @612 + _wspawnlp=MSVCRT__wspawnlp @613 + _wspawnlpe=MSVCRT__wspawnlpe @614 + _wspawnv=MSVCRT__wspawnv @615 + _wspawnve=MSVCRT__wspawnve @616 + _wspawnvp=MSVCRT__wspawnvp @617 + _wspawnvpe=MSVCRT__wspawnvpe @618 + _wsplitpath=MSVCRT__wsplitpath @619 + _wstat=MSVCRT__wstat @620 + _wstat64=MSVCRT__wstat64 @621 + _wstati64=MSVCRT__wstati64 @622 + _wstrdate=MSVCRT__wstrdate @623 + _wstrtime=MSVCRT__wstrtime @624 + _wsystem @625 + _wtempnam=MSVCRT__wtempnam @626 + _wtmpnam=MSVCRT__wtmpnam @627 + _wtof=MSVCRT__wtof @628 + _wtoi=MSVCRT__wtoi @629 + _wtoi64=MSVCRT__wtoi64 @630 + _wtol=MSVCRT__wtol @631 + _wunlink=MSVCRT__wunlink @632 + _wutime @633 + _wutime64 @634 + _y0=MSVCRT__y0 @635 + _y1=MSVCRT__y1 @636 + _yn=MSVCRT__yn @637 + abort=MSVCRT_abort @638 + abs=MSVCRT_abs @639 + acos=MSVCRT_acos @640 + asctime=MSVCRT_asctime @641 + asin=MSVCRT_asin @642 + atan=MSVCRT_atan @643 + atan2=MSVCRT_atan2 @644 + atexit=MSVCRT_atexit @645 PRIVATE + atof=MSVCRT_atof @646 + atoi=MSVCRT_atoi @647 + atol=MSVCRT_atol @648 + bsearch=MSVCRT_bsearch @649 + calloc=MSVCRT_calloc @650 + ceil=MSVCRT_ceil @651 + clearerr=MSVCRT_clearerr @652 + clock=MSVCRT_clock @653 + cos=MSVCRT_cos @654 + cosh=MSVCRT_cosh @655 + ctime=MSVCRT_ctime @656 + difftime=MSVCRT_difftime @657 + div=MSVCRT_div @658 + exit=MSVCRT_exit @659 + exp=MSVCRT_exp @660 + fabs=MSVCRT_fabs @661 + fclose=MSVCRT_fclose @662 + feof=MSVCRT_feof @663 + ferror=MSVCRT_ferror @664 + fflush=MSVCRT_fflush @665 + fgetc=MSVCRT_fgetc @666 + fgetpos=MSVCRT_fgetpos @667 + fgets=MSVCRT_fgets @668 + fgetwc=MSVCRT_fgetwc @669 + fgetws=MSVCRT_fgetws @670 + floor=MSVCRT_floor @671 + fmod=MSVCRT_fmod @672 + fopen=MSVCRT_fopen @673 + fprintf=MSVCRT_fprintf @674 + fputc=MSVCRT_fputc @675 + fputs=MSVCRT_fputs @676 + fputwc=MSVCRT_fputwc @677 + fputws=MSVCRT_fputws @678 + fread=MSVCRT_fread @679 + free=MSVCRT_free @680 + freopen=MSVCRT_freopen @681 + frexp=MSVCRT_frexp @682 + fscanf=MSVCRT_fscanf @683 + fseek=MSVCRT_fseek @684 + fsetpos=MSVCRT_fsetpos @685 + ftell=MSVCRT_ftell @686 + fwprintf=MSVCRT_fwprintf @687 + fwrite=MSVCRT_fwrite @688 + fwscanf=MSVCRT_fwscanf @689 + getc=MSVCRT_getc @690 + getchar=MSVCRT_getchar @691 + getenv=MSVCRT_getenv @692 + gets=MSVCRT_gets @693 + getwc=MSVCRT_getwc @694 + getwchar=MSVCRT_getwchar @695 + gmtime=MSVCRT_gmtime @696 + is_wctype=ntdll.iswctype @697 + isalnum=MSVCRT_isalnum @698 + isalpha=MSVCRT_isalpha @699 + iscntrl=MSVCRT_iscntrl @700 + isdigit=MSVCRT_isdigit @701 + isgraph=MSVCRT_isgraph @702 + isleadbyte=MSVCRT_isleadbyte @703 + islower=MSVCRT_islower @704 + isprint=MSVCRT_isprint @705 + ispunct=MSVCRT_ispunct @706 + isspace=MSVCRT_isspace @707 + isupper=MSVCRT_isupper @708 + iswalnum=MSVCRT_iswalnum @709 + iswalpha=ntdll.iswalpha @710 + iswascii=MSVCRT_iswascii @711 + iswcntrl=MSVCRT_iswcntrl @712 + iswctype=ntdll.iswctype @713 + iswdigit=MSVCRT_iswdigit @714 + iswgraph=MSVCRT_iswgraph @715 + iswlower=MSVCRT_iswlower @716 + iswprint=MSVCRT_iswprint @717 + iswpunct=MSVCRT_iswpunct @718 + iswspace=MSVCRT_iswspace @719 + iswupper=MSVCRT_iswupper @720 + iswxdigit=MSVCRT_iswxdigit @721 + isxdigit=MSVCRT_isxdigit @722 + labs=MSVCRT_labs @723 + ldexp=MSVCRT_ldexp @724 + ldiv=MSVCRT_ldiv @725 + localeconv=MSVCRT_localeconv @726 + localtime=MSVCRT_localtime @727 + log=MSVCRT_log @728 + log10=MSVCRT_log10 @729 + longjmp=MSVCRT_longjmp @730 + malloc=MSVCRT_malloc @731 + mblen=MSVCRT_mblen @732 + mbstowcs=MSVCRT_mbstowcs @733 + mbtowc=MSVCRT_mbtowc @734 + memchr=MSVCRT_memchr @735 + memcmp=MSVCRT_memcmp @736 + memcpy=MSVCRT_memcpy @737 + memmove=MSVCRT_memmove @738 + memset=MSVCRT_memset @739 + mktime=MSVCRT_mktime @740 + modf=MSVCRT_modf @741 + perror=MSVCRT_perror @742 + pow=MSVCRT_pow @743 + printf=MSVCRT_printf @744 + putc=MSVCRT_putc @745 + putchar=MSVCRT_putchar @746 + puts=MSVCRT_puts @747 + putwc=MSVCRT_fputwc @748 + putwchar=MSVCRT__fputwchar @749 + qsort=MSVCRT_qsort @750 + raise=MSVCRT_raise @751 + rand=MSVCRT_rand @752 + realloc=MSVCRT_realloc @753 + remove=MSVCRT_remove @754 + rename=MSVCRT_rename @755 + rewind=MSVCRT_rewind @756 + scanf=MSVCRT_scanf @757 + setbuf=MSVCRT_setbuf @758 + setlocale=MSVCRT_setlocale @759 + setvbuf=MSVCRT_setvbuf @760 + signal=MSVCRT_signal @761 + sin=MSVCRT_sin @762 + sinh=MSVCRT_sinh @763 + sprintf=MSVCRT_sprintf @764 + sqrt=MSVCRT_sqrt @765 + srand=MSVCRT_srand @766 + sscanf=MSVCRT_sscanf @767 + strcat=ntdll.strcat @768 + strchr=MSVCRT_strchr @769 + strcmp=MSVCRT_strcmp @770 + strcoll=MSVCRT_strcoll @771 + strcpy=MSVCRT_strcpy @772 + strcspn=MSVCRT_strcspn @773 + strerror=MSVCRT_strerror @774 + strftime=MSVCRT_strftime @775 + strlen=MSVCRT_strlen @776 + strncat=MSVCRT_strncat @777 + strncmp=MSVCRT_strncmp @778 + strncpy=MSVCRT_strncpy @779 + strpbrk=MSVCRT_strpbrk @780 + strrchr=MSVCRT_strrchr @781 + strspn=ntdll.strspn @782 + strstr=MSVCRT_strstr @783 + strtod=MSVCRT_strtod @784 + strtok=MSVCRT_strtok @785 + strtol=MSVCRT_strtol @786 + strtoul=MSVCRT_strtoul @787 + strxfrm=MSVCRT_strxfrm @788 + swprintf=MSVCRT_swprintf @789 + swscanf=MSVCRT_swscanf @790 + system=MSVCRT_system @791 + tan=MSVCRT_tan @792 + tanh=MSVCRT_tanh @793 + time=MSVCRT_time @794 + tmpfile=MSVCRT_tmpfile @795 + tmpnam=MSVCRT_tmpnam @796 + tolower=MSVCRT_tolower @797 + toupper=MSVCRT_toupper @798 + towlower=MSVCRT_towlower @799 + towupper=MSVCRT_towupper @800 + ungetc=MSVCRT_ungetc @801 + ungetwc=MSVCRT_ungetwc @802 + vfprintf=MSVCRT_vfprintf @803 + vfwprintf=MSVCRT_vfwprintf @804 + vprintf=MSVCRT_vprintf @805 + vsprintf=MSVCRT_vsprintf @806 + vswprintf=MSVCRT_vswprintf @807 + vwprintf=MSVCRT_vwprintf @808 + wcscat=ntdll.wcscat @809 + wcschr=MSVCRT_wcschr @810 + wcscmp=MSVCRT_wcscmp @811 + wcscoll=MSVCRT_wcscoll @812 + wcscpy=ntdll.wcscpy @813 + wcscspn=ntdll.wcscspn @814 + wcsftime=MSVCRT_wcsftime @815 + wcslen=MSVCRT_wcslen @816 + wcsncat=ntdll.wcsncat @817 + wcsncmp=MSVCRT_wcsncmp @818 + wcsncpy=MSVCRT_wcsncpy @819 + wcspbrk=MSVCRT_wcspbrk @820 + wcsrchr=MSVCRT_wcsrchr @821 + wcsspn=ntdll.wcsspn @822 + wcsstr=MSVCRT_wcsstr @823 + wcstod=MSVCRT_wcstod @824 + wcstok=MSVCRT_wcstok @825 + wcstol=MSVCRT_wcstol @826 + wcstombs=MSVCRT_wcstombs @827 + wcstoul=MSVCRT_wcstoul @828 + wcsxfrm=MSVCRT_wcsxfrm @829 + wctomb=MSVCRT_wctomb @830 + wprintf=MSVCRT_wprintf @831 + wscanf=MSVCRT_wscanf @832 diff --git a/lib/wine/libmsvcr80.def b/lib/wine/libmsvcr80.def new file mode 100644 index 0000000..a05a771 --- /dev/null +++ b/lib/wine/libmsvcr80.def @@ -0,0 +1,1472 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/msvcr80/msvcr80.spec; do not edit! + +LIBRARY msvcr80.dll + +EXPORTS + ??0__non_rtti_object@std@@QAE@ABV01@@Z@8=__thiscall_MSVCRT___non_rtti_object_copy_ctor @1 + ??0bad_cast@std@@QAE@ABV01@@Z@8=__thiscall_MSVCRT_bad_cast_copy_ctor @2 + ??0bad_cast@std@@QAE@PBD@Z@8=__thiscall_MSVCRT_bad_cast_ctor_charptr @3 + ??0bad_typeid@std@@QAE@ABV01@@Z@8=__thiscall_MSVCRT_bad_typeid_copy_ctor @4 + ??0bad_typeid@std@@QAE@PBD@Z@8=__thiscall_MSVCRT_bad_typeid_ctor @5 + ??0exception@std@@QAE@ABQBD@Z@8=__thiscall_MSVCRT_exception_ctor @6 + ??0exception@std@@QAE@ABQBDH@Z@12=__thiscall_MSVCRT_exception_ctor_noalloc @7 + ??0exception@std@@QAE@ABV01@@Z@8=__thiscall_MSVCRT_exception_copy_ctor @8 + ??0exception@std@@QAE@XZ@4=__thiscall_MSVCRT_exception_default_ctor @9 + ??1__non_rtti_object@std@@UAE@XZ@4=__thiscall_MSVCRT___non_rtti_object_dtor @10 + ??1bad_cast@std@@UAE@XZ@4=__thiscall_MSVCRT_bad_cast_dtor @11 + ??1bad_typeid@std@@UAE@XZ@4=__thiscall_MSVCRT_bad_typeid_dtor @12 + ??1exception@std@@UAE@XZ@4=__thiscall_MSVCRT_exception_dtor @13 + ??1type_info@@UAE@XZ@4=__thiscall_MSVCRT_type_info_dtor @14 + ??2@YAPAXI@Z=MSVCRT_operator_new @15 + ??2@YAPAXIHPBDH@Z=MSVCRT_operator_new_dbg @16 + ??3@YAXPAX@Z=MSVCRT_operator_delete @17 + ??4__non_rtti_object@std@@QAEAAV01@ABV01@@Z@8=__thiscall_MSVCRT___non_rtti_object_opequals @18 + ??4bad_cast@std@@QAEAAV01@ABV01@@Z@8=__thiscall_MSVCRT_bad_cast_opequals @19 + ??4bad_typeid@std@@QAEAAV01@ABV01@@Z@8=__thiscall_MSVCRT_bad_typeid_opequals @20 + ??4exception@std@@QAEAAV01@ABV01@@Z@8=__thiscall_MSVCRT_exception_opequals @21 + ??8type_info@@QBE_NABV0@@Z@8=__thiscall_MSVCRT_type_info_opequals_equals @22 + ??9type_info@@QBE_NABV0@@Z@8=__thiscall_MSVCRT_type_info_opnot_equals @23 + ??_7__non_rtti_object@std@@6B@=MSVCRT___non_rtti_object_vtable @24 DATA + ??_7bad_cast@std@@6B@=MSVCRT_bad_cast_vtable @25 DATA + ??_7bad_typeid@std@@6B@=MSVCRT_bad_typeid_vtable @26 DATA + ??_7exception@@6B@=MSVCRT_exception_old_vtable @27 DATA + ??_7exception@std@@6B@=MSVCRT_exception_vtable @28 DATA + ??_Fbad_cast@std@@QAEXXZ@4=__thiscall_MSVCRT_bad_cast_default_ctor @29 + ??_Fbad_typeid@std@@QAEXXZ@4=__thiscall_MSVCRT_bad_typeid_default_ctor @30 + ??_U@YAPAXI@Z=MSVCRT_operator_new @31 + ??_U@YAPAXIHPBDH@Z=MSVCRT_operator_new_dbg @32 + ??_V@YAXPAX@Z=MSVCRT_operator_delete @33 + ?_Name_base@type_info@@CAPBDPBV1@PAU__type_info_node@@@Z@0 @34 PRIVATE + ?_Name_base_internal@type_info@@CAPBDPBV1@PAU__type_info_node@@@Z@0 @35 PRIVATE + ?_Type_info_dtor@type_info@@CAXPAV1@@Z@0 @36 PRIVATE + ?_Type_info_dtor_internal@type_info@@CAXPAV1@@Z@0 @37 PRIVATE + ?_ValidateExecute@@YAHP6GHXZ@Z@0 @38 PRIVATE + ?_ValidateRead@@YAHPBXI@Z@0 @39 PRIVATE + ?_ValidateWrite@@YAHPAXI@Z@0 @40 PRIVATE + __uncaught_exception=MSVCRT___uncaught_exception @41 + ?_inconsistency@@YAXXZ@0 @42 PRIVATE + ?_invalid_parameter@@YAXPBG00II@Z=MSVCRT__invalid_parameter @43 + ?_is_exception_typeof@@YAHABVtype_info@@PAU_EXCEPTION_POINTERS@@@Z=_is_exception_typeof @44 + ?_name_internal_method@type_info@@QBEPBDPAU__type_info_node@@@Z@8=__thiscall_type_info_name_internal_method @45 + ?_open@@YAHPBDHH@Z=MSVCRT__open @46 + ?_query_new_handler@@YAP6AHI@ZXZ=MSVCRT__query_new_handler @47 + ?_query_new_mode@@YAHXZ=MSVCRT__query_new_mode @48 + ?_set_new_handler@@YAP6AHI@ZH@Z@0 @49 PRIVATE + ?_set_new_handler@@YAP6AHI@ZP6AHI@Z@Z=MSVCRT__set_new_handler @50 + ?_set_new_mode@@YAHH@Z=MSVCRT__set_new_mode @51 + ?_set_se_translator@@YAP6AXIPAU_EXCEPTION_POINTERS@@@ZH@Z@0 @52 PRIVATE + ?_set_se_translator@@YAP6AXIPAU_EXCEPTION_POINTERS@@@ZP6AXI0@Z@Z=MSVCRT__set_se_translator @53 + ?_sopen@@YAHPBDHHH@Z=MSVCRT__sopen @54 + ?_type_info_dtor_internal_method@type_info@@QAEXXZ@0 @55 PRIVATE + ?_wopen@@YAHPB_WHH@Z=MSVCRT__wopen @56 + ?_wsopen@@YAHPB_WHHH@Z=MSVCRT__wsopen @57 + ?before@type_info@@QBEHABV1@@Z@8=__thiscall_MSVCRT_type_info_before @58 + ?name@type_info@@QBEPBDPAU__type_info_node@@@Z@8=__thiscall_type_info_name_internal_method @59 + ?raw_name@type_info@@QBEPBDXZ@4=__thiscall_MSVCRT_type_info_raw_name @60 + ?set_new_handler@@YAP6AXXZP6AXXZ@Z=MSVCRT_set_new_handler @61 + ?set_terminate@@YAP6AXXZH@Z@0 @62 PRIVATE + ?set_terminate@@YAP6AXXZP6AXXZ@Z=MSVCRT_set_terminate @63 + ?set_unexpected@@YAP6AXXZH@Z@0 @64 PRIVATE + ?set_unexpected@@YAP6AXXZP6AXXZ@Z=MSVCRT_set_unexpected @65 + ?swprintf@@YAHPAGIPBGZZ=MSVCRT__snwprintf @66 + ?swprintf@@YAHPA_WIPB_WZZ=MSVCRT__snwprintf @67 + ?terminate@@YAXXZ=MSVCRT_terminate @68 + ?unexpected@@YAXXZ=MSVCRT_unexpected @69 + ?vswprintf@@YAHPA_WIPB_WPAD@Z=MSVCRT_vsnwprintf @70 + ?what@exception@std@@UBEPBDXZ@4=__thiscall_MSVCRT_what_exception @71 + @_calloc_crt@8@0 @72 PRIVATE + @_malloc_crt@4=MSVCRT_malloc @73 + @_realloc_crt@8@0 @74 PRIVATE + $I10_OUTPUT=MSVCRT_I10_OUTPUT @75 + _CIacos @76 + _CIasin @77 + _CIatan @78 + _CIatan2 @79 + _CIcos @80 + _CIcosh @81 + _CIexp @82 + _CIfmod @83 + _CIlog @84 + _CIlog10 @85 + _CIpow @86 + _CIsin @87 + _CIsinh @88 + _CIsqrt @89 + _CItan @90 + _CItanh @91 + _CRT_RTC_INIT @92 + _CRT_RTC_INITW @93 + _CreateFrameInfo @94 + _CxxThrowException@8 @95 + _EH_prolog @96 + _FindAndUnlinkFrame @97 + _Getdays @98 + _Getmonths @99 + _Gettnames @100 + _HUGE=MSVCRT__HUGE @101 DATA + _IsExceptionObjectToBeDestroyed @102 + _NLG_Dispatch2@0 @103 PRIVATE + _NLG_Return@0 @104 PRIVATE + _NLG_Return2@0 @105 PRIVATE + _Strftime @106 + _XcptFilter @107 + __AdjustPointer @108 + __BuildCatchObject@0 @109 PRIVATE + __BuildCatchObjectHelper@0 @110 PRIVATE + __CppXcptFilter @111 + __CxxCallUnwindDelDtor@0 @112 PRIVATE + __CxxCallUnwindDtor@0 @113 PRIVATE + __CxxCallUnwindStdDelDtor@0 @114 PRIVATE + __CxxCallUnwindVecDtor@0 @115 PRIVATE + __CxxDetectRethrow @116 + __CxxExceptionFilter @117 + __CxxFrameHandler @118 + __CxxFrameHandler2=__CxxFrameHandler @119 + __CxxFrameHandler3=__CxxFrameHandler @120 + __CxxLongjmpUnwind@4 @121 + __CxxQueryExceptionSize @122 + __CxxRegisterExceptionObject @123 + __CxxUnregisterExceptionObject @124 + __DestructExceptionObject @125 + __FrameUnwindFilter@0 @126 PRIVATE + __RTCastToVoid=MSVCRT___RTCastToVoid @127 + __RTDynamicCast=MSVCRT___RTDynamicCast @128 + __RTtypeid=MSVCRT___RTtypeid @129 + __STRINGTOLD @130 + __STRINGTOLD_L@0 @131 PRIVATE + __TypeMatch@0 @132 PRIVATE + ___lc_codepage_func @133 + ___lc_collate_cp_func @134 + ___lc_handle_func @135 + ___mb_cur_max_func=MSVCRT____mb_cur_max_func @136 + ___mb_cur_max_l_func @137 + ___setlc_active_func=MSVCRT____setlc_active_func @138 + ___unguarded_readlc_active_add_func=MSVCRT____unguarded_readlc_active_add_func @139 + __argc=MSVCRT___argc @140 DATA + __argv=MSVCRT___argv @141 DATA + __badioinfo=MSVCRT___badioinfo @142 DATA + __clean_type_info_names_internal @143 + __control87_2 @144 + __create_locale=MSVCRT__create_locale @145 + __crtCompareStringA @146 + __crtCompareStringW @147 + __crtGetLocaleInfoW @148 + __crtGetStringTypeW @149 + __crtLCMapStringA @150 + __crtLCMapStringW @151 + __daylight=MSVCRT___p__daylight @152 + __dllonexit @153 + __doserrno=MSVCRT___doserrno @154 + __dstbias=MSVCRT___p__dstbias @155 + ___fls_getvalue@4@0 @156 PRIVATE + ___fls_setvalue@8@0 @157 PRIVATE + __fpecode @158 + __free_locale=MSVCRT__free_locale @159 + __get_app_type@0 @160 PRIVATE + __get_current_locale=MSVCRT__get_current_locale @161 + __get_flsindex@0 @162 PRIVATE + __get_tlsindex@0 @163 PRIVATE + __getmainargs @164 + __initenv=MSVCRT___initenv @165 DATA + __iob_func=__p__iob @166 + __isascii=MSVCRT___isascii @167 + __iscsym=MSVCRT___iscsym @168 + __iscsymf=MSVCRT___iscsymf @169 + __iswcsym@0 @170 PRIVATE + __iswcsymf@0 @171 PRIVATE + __lc_codepage=MSVCRT___lc_codepage @172 DATA + __lc_collate_cp=MSVCRT___lc_collate_cp @173 DATA + __lc_handle=MSVCRT___lc_handle @174 DATA + __lconv_init @175 + __libm_sse2_acos=MSVCRT___libm_sse2_acos @176 + __libm_sse2_acosf=MSVCRT___libm_sse2_acosf @177 + __libm_sse2_asin=MSVCRT___libm_sse2_asin @178 + __libm_sse2_asinf=MSVCRT___libm_sse2_asinf @179 + __libm_sse2_atan=MSVCRT___libm_sse2_atan @180 + __libm_sse2_atan2=MSVCRT___libm_sse2_atan2 @181 + __libm_sse2_atanf=MSVCRT___libm_sse2_atanf @182 + __libm_sse2_cos=MSVCRT___libm_sse2_cos @183 + __libm_sse2_cosf=MSVCRT___libm_sse2_cosf @184 + __libm_sse2_exp=MSVCRT___libm_sse2_exp @185 + __libm_sse2_expf=MSVCRT___libm_sse2_expf @186 + __libm_sse2_log=MSVCRT___libm_sse2_log @187 + __libm_sse2_log10=MSVCRT___libm_sse2_log10 @188 + __libm_sse2_log10f=MSVCRT___libm_sse2_log10f @189 + __libm_sse2_logf=MSVCRT___libm_sse2_logf @190 + __libm_sse2_pow=MSVCRT___libm_sse2_pow @191 + __libm_sse2_powf=MSVCRT___libm_sse2_powf @192 + __libm_sse2_sin=MSVCRT___libm_sse2_sin @193 + __libm_sse2_sinf=MSVCRT___libm_sse2_sinf @194 + __libm_sse2_tan=MSVCRT___libm_sse2_tan @195 + __libm_sse2_tanf=MSVCRT___libm_sse2_tanf @196 + __mb_cur_max=MSVCRT___mb_cur_max @197 DATA + __p___argc=MSVCRT___p___argc @198 + __p___argv=MSVCRT___p___argv @199 + __p___initenv @200 + __p___mb_cur_max @201 + __p___wargv=MSVCRT___p___wargv @202 + __p___winitenv @203 + __p__acmdln=MSVCRT___p__acmdln @204 + __p__amblksiz @205 + __p__commode @206 + __p__daylight=MSVCRT___p__daylight @207 + __p__dstbias=MSVCRT___p__dstbias @208 + __p__environ=MSVCRT___p__environ @209 + __p__fmode=MSVCRT___p__fmode @210 + __p__iob @211 + __p__mbcasemap@0 @212 PRIVATE + __p__mbctype @213 + __p__osplatform@0 @214 PRIVATE + __p__osver @215 + __p__pctype=MSVCRT___p__pctype @216 + __p__pgmptr=MSVCRT___p__pgmptr @217 + __p__pwctype@0 @218 PRIVATE + __p__timezone=MSVCRT___p__timezone @219 + __p__tzname @220 + __p__wcmdln=MSVCRT___p__wcmdln @221 + __p__wenviron=MSVCRT___p__wenviron @222 + __p__winmajor @223 + __p__winminor @224 + __p__winver @225 + __p__wpgmptr=MSVCRT___p__wpgmptr @226 + __pctype_func=MSVCRT___pctype_func @227 + __pioinfo=MSVCRT___pioinfo @228 DATA + __pwctype_func@0 @229 PRIVATE + __pxcptinfoptrs=MSVCRT___pxcptinfoptrs @230 + __report_gsfailure@0 @231 PRIVATE + __set_app_type=MSVCRT___set_app_type @232 + __set_flsgetvalue@0 @233 PRIVATE + __setlc_active=MSVCRT___setlc_active @234 DATA + __setusermatherr=MSVCRT___setusermatherr @235 + __strncnt=MSVCRT___strncnt @236 + __swprintf_l=MSVCRT___swprintf_l @237 + __sys_errlist @238 + __sys_nerr @239 + __threadhandle=kernel32.GetCurrentThread @240 + __threadid=kernel32.GetCurrentThreadId @241 + __timezone=MSVCRT___p__timezone @242 + __toascii=MSVCRT___toascii @243 + __tzname=__p__tzname @244 + __unDName @245 + __unDNameEx @246 + __unDNameHelper@0 @247 PRIVATE + __unguarded_readlc_active=MSVCRT___unguarded_readlc_active @248 DATA + __vswprintf_l=MSVCRT_vswprintf_l @249 + __wargv=MSVCRT___wargv @250 DATA + __wcserror=MSVCRT___wcserror @251 + __wcserror_s=MSVCRT___wcserror_s @252 + __wcsncnt@0 @253 PRIVATE + __wgetmainargs @254 + __winitenv=MSVCRT___winitenv @255 DATA + _abnormal_termination @256 + _abs64 @257 + _access=MSVCRT__access @258 + _access_s=MSVCRT__access_s @259 + _acmdln=MSVCRT__acmdln @260 DATA + _adj_fdiv_m16i@4 @261 + _adj_fdiv_m32@4 @262 + _adj_fdiv_m32i@4 @263 + _adj_fdiv_m64@8 @264 + _adj_fdiv_r @265 + _adj_fdivr_m16i@4 @266 + _adj_fdivr_m32@4 @267 + _adj_fdivr_m32i@4 @268 + _adj_fdivr_m64@8 @269 + _adj_fpatan @270 + _adj_fprem @271 + _adj_fprem1 @272 + _adj_fptan @273 + _adjust_fdiv=MSVCRT__adjust_fdiv @274 DATA + _aexit_rtn @275 DATA + _aligned_free @276 + _aligned_malloc @277 + _aligned_msize @278 + _aligned_offset_malloc @279 + _aligned_offset_realloc @280 + _aligned_offset_recalloc@0 @281 PRIVATE + _aligned_realloc @282 + _aligned_recalloc@0 @283 PRIVATE + _amsg_exit @284 + _assert=MSVCRT__assert @285 + _atodbl=MSVCRT__atodbl @286 + _atodbl_l=MSVCRT__atodbl_l @287 + _atof_l=MSVCRT__atof_l @288 + _atoflt=MSVCRT__atoflt @289 + _atoflt_l=MSVCRT__atoflt_l @290 + _atoi64=MSVCRT__atoi64 @291 + _atoi64_l=MSVCRT__atoi64_l @292 + _atoi_l=MSVCRT__atoi_l @293 + _atol_l=MSVCRT__atol_l @294 + _atoldbl=MSVCRT__atoldbl @295 + _atoldbl_l@0 @296 PRIVATE + _beep=MSVCRT__beep @297 + _beginthread @298 + _beginthreadex @299 + _byteswap_uint64 @300 + _byteswap_ulong=MSVCRT__byteswap_ulong @301 + _byteswap_ushort @302 + _c_exit=MSVCRT__c_exit @303 + _cabs=MSVCRT__cabs @304 + _callnewh @305 + _calloc_crt=MSVCRT_calloc @306 + _cexit=MSVCRT__cexit @307 + _cgets @308 + _cgets_s@0 @309 PRIVATE + _cgetws@0 @310 PRIVATE + _cgetws_s@0 @311 PRIVATE + _chdir=MSVCRT__chdir @312 + _chdrive=MSVCRT__chdrive @313 + _chgsign=MSVCRT__chgsign @314 + _chkesp @315 + _chmod=MSVCRT__chmod @316 + _chsize=MSVCRT__chsize @317 + _chsize_s=MSVCRT__chsize_s @318 + _clearfp @319 + _close=MSVCRT__close @320 + _commit=MSVCRT__commit @321 + _commode=MSVCRT__commode @322 DATA + _configthreadlocale @323 + _control87 @324 + _controlfp @325 + _controlfp_s @326 + _copysign=MSVCRT__copysign @327 + _cprintf @328 + _cprintf_l@0 @329 PRIVATE + _cprintf_p@0 @330 PRIVATE + _cprintf_p_l@0 @331 PRIVATE + _cprintf_s@0 @332 PRIVATE + _cprintf_s_l@0 @333 PRIVATE + _cputs @334 + _cputws @335 + _creat=MSVCRT__creat @336 + _create_locale=MSVCRT__create_locale @337 + _crt_debugger_hook=MSVCRT__crt_debugger_hook @338 + _cscanf @339 + _cscanf_l @340 + _cscanf_s @341 + _cscanf_s_l @342 + _ctime32=MSVCRT__ctime32 @343 + _ctime32_s=MSVCRT__ctime32_s @344 + _ctime64=MSVCRT__ctime64 @345 + _ctime64_s=MSVCRT__ctime64_s @346 + _cwait @347 + _cwprintf @348 + _cwprintf_l@0 @349 PRIVATE + _cwprintf_p@0 @350 PRIVATE + _cwprintf_p_l@0 @351 PRIVATE + _cwprintf_s@0 @352 PRIVATE + _cwprintf_s_l@0 @353 PRIVATE + _cwscanf @354 + _cwscanf_l @355 + _cwscanf_s @356 + _cwscanf_s_l @357 + _daylight=MSVCRT___daylight @358 DATA + _decode_pointer=MSVCRT_decode_pointer @359 + _difftime32=MSVCRT__difftime32 @360 + _difftime64=MSVCRT__difftime64 @361 + _dosmaperr@0 @362 PRIVATE + _dstbias=MSVCRT__dstbias @363 DATA + _dup=MSVCRT__dup @364 + _dup2=MSVCRT__dup2 @365 + _dupenv_s @366 + _ecvt=MSVCRT__ecvt @367 + _ecvt_s=MSVCRT__ecvt_s @368 + _encode_pointer=MSVCRT_encode_pointer @369 + _encoded_null @370 + _endthread @371 + _endthreadex @372 + _environ=MSVCRT__environ @373 DATA + _eof=MSVCRT__eof @374 + _errno=MSVCRT__errno @375 + _except_handler2 @376 + _except_handler3 @377 + _except_handler4_common @378 + _execl @379 + _execle @380 + _execlp @381 + _execlpe @382 + _execv @383 + _execve=MSVCRT__execve @384 + _execvp @385 + _execvpe @386 + _exit=MSVCRT__exit @387 + _expand @388 + _fclose_nolock=MSVCRT__fclose_nolock @389 + _fcloseall=MSVCRT__fcloseall @390 + _fcvt=MSVCRT__fcvt @391 + _fcvt_s=MSVCRT__fcvt_s @392 + _fdopen=MSVCRT__fdopen @393 + _fflush_nolock=MSVCRT__fflush_nolock @394 + _fgetc_nolock=MSVCRT__fgetc_nolock @395 + _fgetchar=MSVCRT__fgetchar @396 + _fgetwc_nolock=MSVCRT__fgetwc_nolock @397 + _fgetwchar=MSVCRT__fgetwchar @398 + _filbuf=MSVCRT__filbuf @399 + _filelength=MSVCRT__filelength @400 + _filelengthi64=MSVCRT__filelengthi64 @401 + _fileno=MSVCRT__fileno @402 + _findclose=MSVCRT__findclose @403 + _findfirst32=MSVCRT__findfirst32 @404 + _findfirst32i64@0 @405 PRIVATE + _findfirst64=MSVCRT__findfirst64 @406 + _findfirst64i32=MSVCRT__findfirst64i32 @407 + _findnext32=MSVCRT__findnext32 @408 + _findnext32i64@0 @409 PRIVATE + _findnext64=MSVCRT__findnext64 @410 + _findnext64i32=MSVCRT__findnext64i32 @411 + _finite=MSVCRT__finite @412 + _flsbuf=MSVCRT__flsbuf @413 + _flushall=MSVCRT__flushall @414 + _fmode=MSVCRT__fmode @415 DATA + _fpclass=MSVCRT__fpclass @416 + _fpieee_flt @417 + _fpreset @418 + _fprintf_l@0 @419 PRIVATE + _fprintf_p@0 @420 PRIVATE + _fprintf_p_l@0 @421 PRIVATE + _fprintf_s_l@0 @422 PRIVATE + _fputc_nolock=MSVCRT__fputc_nolock @423 + _fputchar=MSVCRT__fputchar @424 + _fputwc_nolock=MSVCRT__fputwc_nolock @425 + _fputwchar=MSVCRT__fputwchar @426 + _fread_nolock=MSVCRT__fread_nolock @427 + _fread_nolock_s=MSVCRT__fread_nolock_s @428 + _free_locale=MSVCRT__free_locale @429 + _freea@0 @430 PRIVATE + _freea_s@0 @431 PRIVATE + _freefls@0 @432 PRIVATE + _fscanf_l=MSVCRT__fscanf_l @433 + _fscanf_s_l=MSVCRT__fscanf_s_l @434 + _fseek_nolock=MSVCRT__fseek_nolock @435 + _fseeki64=MSVCRT__fseeki64 @436 + _fseeki64_nolock=MSVCRT__fseeki64_nolock @437 + _fsopen=MSVCRT__fsopen @438 + _fstat32=MSVCRT__fstat32 @439 + _fstat32i64=MSVCRT__fstat32i64 @440 + _fstat64=MSVCRT__fstat64 @441 + _fstat64i32=MSVCRT__fstat64i32 @442 + _ftell_nolock=MSVCRT__ftell_nolock @443 + _ftelli64=MSVCRT__ftelli64 @444 + _ftelli64_nolock=MSVCRT__ftelli64_nolock @445 + _ftime32=MSVCRT__ftime32 @446 + _ftime32_s=MSVCRT__ftime32_s @447 + _ftime64=MSVCRT__ftime64 @448 + _ftime64_s=MSVCRT__ftime64_s @449 + _ftol=MSVCRT__ftol @450 + _fullpath=MSVCRT__fullpath @451 + _futime32 @452 + _futime64 @453 + _fwprintf_l=MSVCRT__fwprintf_l @454 + _fwprintf_p@0 @455 PRIVATE + _fwprintf_p_l@0 @456 PRIVATE + _fwprintf_s_l@0 @457 PRIVATE + _fwrite_nolock=MSVCRT__fwrite_nolock @458 + _fwscanf_l=MSVCRT__fwscanf_l @459 + _fwscanf_s_l=MSVCRT__fwscanf_s_l @460 + _gcvt=MSVCRT__gcvt @461 + _gcvt_s=MSVCRT__gcvt_s @462 + _get_amblksiz@0 @463 PRIVATE + _get_current_locale=MSVCRT__get_current_locale @464 + _get_daylight @465 + _get_doserrno @466 + _get_dstbias=MSVCRT__get_dstbias @467 + _get_errno @468 + _get_fmode=MSVCRT__get_fmode @469 + _get_heap_handle @470 + _get_invalid_parameter_handler @471 + _get_osfhandle=MSVCRT__get_osfhandle @472 + _get_osplatform=MSVCRT__get_osplatform @473 + _get_osver=MSVCRT__get_osver @474 + _get_output_format=MSVCRT__get_output_format @475 + _get_pgmptr @476 + _get_printf_count_output=MSVCRT__get_printf_count_output @477 + _get_purecall_handler @478 + _get_sbh_threshold @479 + _get_terminate=MSVCRT__get_terminate @480 + _get_timezone @481 + _get_tzname=MSVCRT__get_tzname @482 + _get_unexpected=MSVCRT__get_unexpected @483 + _get_winmajor=MSVCRT__get_winmajor @484 + _get_winminor=MSVCRT__get_winminor @485 + _get_winver@0 @486 PRIVATE + _get_wpgmptr @487 + _getc_nolock=MSVCRT__fgetc_nolock @488 + _getch @489 + _getch_nolock @490 + _getche @491 + _getche_nolock @492 + _getcwd=MSVCRT__getcwd @493 + _getdcwd=MSVCRT__getdcwd @494 + _getdcwd_nolock@0 @495 PRIVATE + _getdiskfree=MSVCRT__getdiskfree @496 + _getdllprocaddr @497 + _getdrive=MSVCRT__getdrive @498 + _getdrives=kernel32.GetLogicalDrives @499 + _getmaxstdio=MSVCRT__getmaxstdio @500 + _getmbcp @501 + _getpid @502 + _getptd @503 + _getsystime@4 @504 PRIVATE + _getw=MSVCRT__getw @505 + _getwc_nolock=MSVCRT__fgetwc_nolock @506 + _getwch @507 + _getwch_nolock @508 + _getwche @509 + _getwche_nolock @510 + _getws=MSVCRT__getws @511 + _getws_s@0 @512 PRIVATE + _global_unwind2 @513 + _gmtime32=MSVCRT__gmtime32 @514 + _gmtime32_s=MSVCRT__gmtime32_s @515 + _gmtime64=MSVCRT__gmtime64 @516 + _gmtime64_s=MSVCRT__gmtime64_s @517 + _heapadd @518 + _heapchk @519 + _heapmin @520 + _heapset @521 + _heapused@8 @522 PRIVATE + _heapwalk @523 + _hypot @524 + _hypotf=MSVCRT__hypotf @525 + _i64toa=ntdll._i64toa @526 + _i64toa_s=MSVCRT__i64toa_s @527 + _i64tow=ntdll._i64tow @528 + _i64tow_s=MSVCRT__i64tow_s @529 + _initptd@0 @530 PRIVATE + _initterm @531 + _initterm_e @532 + _inp@4 @533 PRIVATE + _inpd@4 @534 PRIVATE + _inpw@4 @535 PRIVATE + _invalid_parameter=MSVCRT__invalid_parameter @536 + _invalid_parameter_noinfo @537 + _invoke_watson@0 @538 PRIVATE + _iob=MSVCRT__iob @539 DATA + _isalnum_l=MSVCRT__isalnum_l @540 + _isalpha_l=MSVCRT__isalpha_l @541 + _isatty=MSVCRT__isatty @542 + _iscntrl_l=MSVCRT__iscntrl_l @543 + _isctype=MSVCRT__isctype @544 + _isctype_l=MSVCRT__isctype_l @545 + _isdigit_l=MSVCRT__isdigit_l @546 + _isgraph_l=MSVCRT__isgraph_l @547 + _isleadbyte_l=MSVCRT__isleadbyte_l @548 + _islower_l=MSVCRT__islower_l @549 + _ismbbalnum@4 @550 PRIVATE + _ismbbalnum_l@0 @551 PRIVATE + _ismbbalpha@4 @552 PRIVATE + _ismbbalpha_l@0 @553 PRIVATE + _ismbbgraph@4 @554 PRIVATE + _ismbbgraph_l@0 @555 PRIVATE + _ismbbkalnum@4 @556 PRIVATE + _ismbbkalnum_l@0 @557 PRIVATE + _ismbbkana @558 + _ismbbkana_l@0 @559 PRIVATE + _ismbbkprint@4 @560 PRIVATE + _ismbbkprint_l@0 @561 PRIVATE + _ismbbkpunct@4 @562 PRIVATE + _ismbbkpunct_l@0 @563 PRIVATE + _ismbblead @564 + _ismbblead_l @565 + _ismbbprint@4 @566 PRIVATE + _ismbbprint_l@0 @567 PRIVATE + _ismbbpunct@4 @568 PRIVATE + _ismbbpunct_l@0 @569 PRIVATE + _ismbbtrail @570 + _ismbbtrail_l @571 + _ismbcalnum @572 + _ismbcalnum_l@0 @573 PRIVATE + _ismbcalpha @574 + _ismbcalpha_l@0 @575 PRIVATE + _ismbcdigit @576 + _ismbcdigit_l@0 @577 PRIVATE + _ismbcgraph @578 + _ismbcgraph_l@0 @579 PRIVATE + _ismbchira @580 + _ismbchira_l@0 @581 PRIVATE + _ismbckata @582 + _ismbckata_l@0 @583 PRIVATE + _ismbcl0 @584 + _ismbcl0_l @585 + _ismbcl1 @586 + _ismbcl1_l @587 + _ismbcl2 @588 + _ismbcl2_l @589 + _ismbclegal @590 + _ismbclegal_l @591 + _ismbclower @592 + _ismbclower_l@0 @593 PRIVATE + _ismbcprint @594 + _ismbcprint_l@0 @595 PRIVATE + _ismbcpunct @596 + _ismbcpunct_l@0 @597 PRIVATE + _ismbcspace @598 + _ismbcspace_l@0 @599 PRIVATE + _ismbcsymbol @600 + _ismbcsymbol_l@0 @601 PRIVATE + _ismbcupper @602 + _ismbcupper_l@0 @603 PRIVATE + _ismbslead @604 + _ismbslead_l@0 @605 PRIVATE + _ismbstrail @606 + _ismbstrail_l@0 @607 PRIVATE + _isnan=MSVCRT__isnan @608 + _isprint_l=MSVCRT__isprint_l @609 + _ispunct_l@0 @610 PRIVATE + _isspace_l=MSVCRT__isspace_l @611 + _isupper_l=MSVCRT__isupper_l @612 + _iswalnum_l=MSVCRT__iswalnum_l @613 + _iswalpha_l=MSVCRT__iswalpha_l @614 + _iswcntrl_l=MSVCRT__iswcntrl_l @615 + _iswcsym_l@0 @616 PRIVATE + _iswcsymf_l@0 @617 PRIVATE + _iswctype_l=MSVCRT__iswctype_l @618 + _iswdigit_l=MSVCRT__iswdigit_l @619 + _iswgraph_l=MSVCRT__iswgraph_l @620 + _iswlower_l=MSVCRT__iswlower_l @621 + _iswprint_l=MSVCRT__iswprint_l @622 + _iswpunct_l=MSVCRT__iswpunct_l @623 + _iswspace_l=MSVCRT__iswspace_l @624 + _iswupper_l=MSVCRT__iswupper_l @625 + _iswxdigit_l=MSVCRT__iswxdigit_l @626 + _isxdigit_l=MSVCRT__isxdigit_l @627 + _itoa=MSVCRT__itoa @628 + _itoa_s=MSVCRT__itoa_s @629 + _itow=ntdll._itow @630 + _itow_s=MSVCRT__itow_s @631 + _j0=MSVCRT__j0 @632 + _j1=MSVCRT__j1 @633 + _jn=MSVCRT__jn @634 + _kbhit @635 + _lfind @636 + _lfind_s @637 + _loaddll @638 + _local_unwind2 @639 + _local_unwind4 @640 + _localtime32=MSVCRT__localtime32 @641 + _localtime32_s @642 + _localtime64=MSVCRT__localtime64 @643 + _localtime64_s @644 + _lock @645 + _lock_file=MSVCRT__lock_file @646 + _locking=MSVCRT__locking @647 + _logb=MSVCRT__logb @648 + _longjmpex=MSVCRT_longjmp @649 + _lrotl=MSVCRT__lrotl @650 + _lrotr=MSVCRT__lrotr @651 + _lsearch @652 + _lsearch_s@0 @653 PRIVATE + _lseek=MSVCRT__lseek @654 + _lseeki64=MSVCRT__lseeki64 @655 + _ltoa=ntdll._ltoa @656 + _ltoa_s=MSVCRT__ltoa_s @657 + _ltow=ntdll._ltow @658 + _ltow_s=MSVCRT__ltow_s @659 + _makepath=MSVCRT__makepath @660 + _makepath_s=MSVCRT__makepath_s @661 + _malloc_crt=MSVCRT_malloc @662 + _mbbtombc @663 + _mbbtombc_l@0 @664 PRIVATE + _mbbtype @665 + _mbbtype_l@0 @666 PRIVATE + _mbccpy @667 + _mbccpy_l @668 + _mbccpy_s @669 + _mbccpy_s_l @670 + _mbcjistojms @671 + _mbcjistojms_l@0 @672 PRIVATE + _mbcjmstojis @673 + _mbcjmstojis_l@0 @674 PRIVATE + _mbclen @675 + _mbclen_l@0 @676 PRIVATE + _mbctohira @677 + _mbctohira_l@0 @678 PRIVATE + _mbctokata @679 + _mbctokata_l@0 @680 PRIVATE + _mbctolower @681 + _mbctolower_l@0 @682 PRIVATE + _mbctombb @683 + _mbctombb_l@0 @684 PRIVATE + _mbctoupper @685 + _mbctoupper_l@0 @686 PRIVATE + _mbctype=MSVCRT_mbctype @687 DATA + _mblen_l@0 @688 PRIVATE + _mbsbtype @689 + _mbsbtype_l@0 @690 PRIVATE + _mbscat_s @691 + _mbscat_s_l @692 + _mbschr @693 + _mbschr_l@0 @694 PRIVATE + _mbscmp @695 + _mbscmp_l@0 @696 PRIVATE + _mbscoll @697 + _mbscoll_l @698 + _mbscpy_s @699 + _mbscpy_s_l @700 + _mbscspn @701 + _mbscspn_l@0 @702 PRIVATE + _mbsdec @703 + _mbsdec_l@0 @704 PRIVATE + _mbsicmp @705 + _mbsicmp_l@0 @706 PRIVATE + _mbsicoll @707 + _mbsicoll_l @708 + _mbsinc @709 + _mbsinc_l@0 @710 PRIVATE + _mbslen @711 + _mbslen_l @712 + _mbslwr @713 + _mbslwr_l@0 @714 PRIVATE + _mbslwr_s @715 + _mbslwr_s_l@0 @716 PRIVATE + _mbsnbcat @717 + _mbsnbcat_l@0 @718 PRIVATE + _mbsnbcat_s @719 + _mbsnbcat_s_l@0 @720 PRIVATE + _mbsnbcmp @721 + _mbsnbcmp_l@0 @722 PRIVATE + _mbsnbcnt @723 + _mbsnbcnt_l@0 @724 PRIVATE + _mbsnbcoll @725 + _mbsnbcoll_l @726 + _mbsnbcpy @727 + _mbsnbcpy_l@0 @728 PRIVATE + _mbsnbcpy_s @729 + _mbsnbcpy_s_l @730 + _mbsnbicmp @731 + _mbsnbicmp_l@0 @732 PRIVATE + _mbsnbicoll @733 + _mbsnbicoll_l @734 + _mbsnbset @735 + _mbsnbset_l@0 @736 PRIVATE + _mbsnbset_s@0 @737 PRIVATE + _mbsnbset_s_l@0 @738 PRIVATE + _mbsncat @739 + _mbsncat_l@0 @740 PRIVATE + _mbsncat_s@0 @741 PRIVATE + _mbsncat_s_l@0 @742 PRIVATE + _mbsnccnt @743 + _mbsnccnt_l@0 @744 PRIVATE + _mbsncmp @745 + _mbsncmp_l@0 @746 PRIVATE + _mbsncoll@12 @747 PRIVATE + _mbsncoll_l@0 @748 PRIVATE + _mbsncpy @749 + _mbsncpy_l@0 @750 PRIVATE + _mbsncpy_s@0 @751 PRIVATE + _mbsncpy_s_l@0 @752 PRIVATE + _mbsnextc @753 + _mbsnextc_l@0 @754 PRIVATE + _mbsnicmp @755 + _mbsnicmp_l@0 @756 PRIVATE + _mbsnicoll@12 @757 PRIVATE + _mbsnicoll_l@0 @758 PRIVATE + _mbsninc @759 + _mbsninc_l@0 @760 PRIVATE + _mbsnlen @761 + _mbsnlen_l @762 + _mbsnset @763 + _mbsnset_l@0 @764 PRIVATE + _mbsnset_s@0 @765 PRIVATE + _mbsnset_s_l@0 @766 PRIVATE + _mbspbrk @767 + _mbspbrk_l@0 @768 PRIVATE + _mbsrchr @769 + _mbsrchr_l@0 @770 PRIVATE + _mbsrev @771 + _mbsrev_l@0 @772 PRIVATE + _mbsset @773 + _mbsset_l@0 @774 PRIVATE + _mbsset_s@0 @775 PRIVATE + _mbsset_s_l@0 @776 PRIVATE + _mbsspn @777 + _mbsspn_l@0 @778 PRIVATE + _mbsspnp @779 + _mbsspnp_l@0 @780 PRIVATE + _mbsstr @781 + _mbsstr_l@0 @782 PRIVATE + _mbstok @783 + _mbstok_l @784 + _mbstok_s @785 + _mbstok_s_l @786 + _mbstowcs_l=MSVCRT__mbstowcs_l @787 + _mbstowcs_s_l=MSVCRT__mbstowcs_s_l @788 + _mbstrlen @789 + _mbstrlen_l @790 + _mbstrnlen@0 @791 PRIVATE + _mbstrnlen_l@0 @792 PRIVATE + _mbsupr @793 + _mbsupr_l@0 @794 PRIVATE + _mbsupr_s @795 + _mbsupr_s_l@0 @796 PRIVATE + _mbtowc_l=MSVCRT_mbtowc_l @797 + _memccpy=ntdll._memccpy @798 + _memicmp=MSVCRT__memicmp @799 + _memicmp_l=MSVCRT__memicmp_l @800 + _mkdir=MSVCRT__mkdir @801 + _mkgmtime32=MSVCRT__mkgmtime32 @802 + _mkgmtime64=MSVCRT__mkgmtime64 @803 + _mktemp=MSVCRT__mktemp @804 + _mktemp_s=MSVCRT__mktemp_s @805 + _mktime32=MSVCRT__mktime32 @806 + _mktime64=MSVCRT__mktime64 @807 + _msize @808 + _nextafter=MSVCRT__nextafter @809 + _onexit=MSVCRT__onexit @810 + _open=MSVCRT__open @811 + _open_osfhandle=MSVCRT__open_osfhandle @812 + _osplatform=MSVCRT__osplatform @813 DATA + _osver=MSVCRT__osver @814 DATA + _outp@8 @815 PRIVATE + _outpd@8 @816 PRIVATE + _outpw@8 @817 PRIVATE + _pclose=MSVCRT__pclose @818 + _pctype=MSVCRT__pctype @819 DATA + _pgmptr=MSVCRT__pgmptr @820 DATA + _pipe=MSVCRT__pipe @821 + _popen=MSVCRT__popen @822 + _printf_l@0 @823 PRIVATE + _printf_p@0 @824 PRIVATE + _printf_p_l@0 @825 PRIVATE + _printf_s_l@0 @826 PRIVATE + _purecall @827 + _putc_nolock=MSVCRT__fputc_nolock @828 + _putch @829 + _putch_nolock @830 + _putenv @831 + _putenv_s @832 + _putw=MSVCRT__putw @833 + _putwc_nolock=MSVCRT__fputwc_nolock @834 + _putwch @835 + _putwch_nolock @836 + _putws=MSVCRT__putws @837 + _read=MSVCRT__read @838 + _realloc_crt=MSVCRT_realloc @839 + _recalloc @840 + _recalloc_crt@0 @841 PRIVATE + _resetstkoflw=MSVCRT__resetstkoflw @842 + _rmdir=MSVCRT__rmdir @843 + _rmtmp=MSVCRT__rmtmp @844 + _rotl @845 + _rotl64 @846 + _rotr @847 + _rotr64 @848 + _safe_fdiv @849 + _safe_fdivr @850 + _safe_fprem @851 + _safe_fprem1 @852 + _scalb=MSVCRT__scalb @853 + _scanf_l=MSVCRT__scanf_l @854 + _scanf_s_l=MSVCRT__scanf_s_l @855 + _scprintf=MSVCRT__scprintf @856 + _scprintf_l@0 @857 PRIVATE + _scprintf_p@0 @858 PRIVATE + _scprintf_p_l@0 @859 PRIVATE + _scwprintf=MSVCRT__scwprintf @860 + _scwprintf_l@0 @861 PRIVATE + _scwprintf_p@0 @862 PRIVATE + _scwprintf_p_l@0 @863 PRIVATE + _searchenv=MSVCRT__searchenv @864 + _searchenv_s=MSVCRT__searchenv_s @865 + _seh_longjmp_unwind4@4 @866 + _seh_longjmp_unwind@4 @867 + _set_SSE2_enable=MSVCRT__set_SSE2_enable @868 + _set_abort_behavior=MSVCRT__set_abort_behavior @869 + _set_amblksiz@0 @870 PRIVATE + _set_controlfp @871 + _set_doserrno @872 + _set_errno @873 + _set_error_mode @874 + _set_fmode=MSVCRT__set_fmode @875 + _set_invalid_parameter_handler @876 + _set_malloc_crt_max_wait@0 @877 PRIVATE + _set_output_format=MSVCRT__set_output_format @878 + _set_printf_count_output=MSVCRT__set_printf_count_output @879 + _set_purecall_handler @880 + _set_sbh_threshold @881 + _seterrormode @882 + _setjmp=MSVCRT__setjmp @883 + _setjmp3=MSVCRT__setjmp3 @884 + _setmaxstdio=MSVCRT__setmaxstdio @885 + _setmbcp @886 + _setmode=MSVCRT__setmode @887 + _setsystime@8 @888 PRIVATE + _sleep=MSVCRT__sleep @889 + _snprintf=MSVCRT__snprintf @890 + _snprintf_c@0 @891 PRIVATE + _snprintf_c_l@0 @892 PRIVATE + _snprintf_l=MSVCRT__snprintf_l @893 + _snprintf_s=MSVCRT__snprintf_s @894 + _snprintf_s_l@0 @895 PRIVATE + _snscanf=MSVCRT__snscanf @896 + _snscanf_l=MSVCRT__snscanf_l @897 + _snscanf_s=MSVCRT__snscanf_s @898 + _snscanf_s_l=MSVCRT__snscanf_s_l @899 + _snwprintf=MSVCRT__snwprintf @900 + _snwprintf_l=MSVCRT__snwprintf_l @901 + _snwprintf_s=MSVCRT__snwprintf_s @902 + _snwprintf_s_l=MSVCRT__snwprintf_s_l @903 + _snwscanf=MSVCRT__snwscanf @904 + _snwscanf_l=MSVCRT__snwscanf_l @905 + _snwscanf_s=MSVCRT__snwscanf_s @906 + _snwscanf_s_l=MSVCRT__snwscanf_s_l @907 + _sopen=MSVCRT__sopen @908 + _sopen_s=MSVCRT__sopen_s @909 + _spawnl=MSVCRT__spawnl @910 + _spawnle=MSVCRT__spawnle @911 + _spawnlp=MSVCRT__spawnlp @912 + _spawnlpe=MSVCRT__spawnlpe @913 + _spawnv=MSVCRT__spawnv @914 + _spawnve=MSVCRT__spawnve @915 + _spawnvp=MSVCRT__spawnvp @916 + _spawnvpe=MSVCRT__spawnvpe @917 + _splitpath=MSVCRT__splitpath @918 + _splitpath_s=MSVCRT__splitpath_s @919 + _sprintf_l=MSVCRT_sprintf_l @920 + _sprintf_p=MSVCRT__sprintf_p @921 + _sprintf_p_l=MSVCRT_sprintf_p_l @922 + _sprintf_s_l=MSVCRT_sprintf_s_l @923 + _sscanf_l=MSVCRT__sscanf_l @924 + _sscanf_s_l=MSVCRT__sscanf_s_l @925 + _stat32=MSVCRT__stat32 @926 + _stat32i64=MSVCRT__stat32i64 @927 + _stat64=MSVCRT_stat64 @928 + _stat64i32=MSVCRT__stat64i32 @929 + _statusfp @930 + _statusfp2 @931 + _strcoll_l=MSVCRT_strcoll_l @932 + _strdate=MSVCRT__strdate @933 + _strdate_s @934 + _strdup=MSVCRT__strdup @935 + _strerror=MSVCRT__strerror @936 + _strerror_s@0 @937 PRIVATE + _strftime_l=MSVCRT__strftime_l @938 + _stricmp=MSVCRT__stricmp @939 + _stricmp_l=MSVCRT__stricmp_l @940 + _stricoll=MSVCRT__stricoll @941 + _stricoll_l=MSVCRT__stricoll_l @942 + _strlwr=MSVCRT__strlwr @943 + _strlwr_l @944 + _strlwr_s=MSVCRT__strlwr_s @945 + _strlwr_s_l=MSVCRT__strlwr_s_l @946 + _strncoll=MSVCRT__strncoll @947 + _strncoll_l=MSVCRT__strncoll_l @948 + _strnicmp=MSVCRT__strnicmp @949 + _strnicmp_l=MSVCRT__strnicmp_l @950 + _strnicoll=MSVCRT__strnicoll @951 + _strnicoll_l=MSVCRT__strnicoll_l @952 + _strnset=MSVCRT__strnset @953 + _strnset_s=MSVCRT__strnset_s @954 + _strrev=MSVCRT__strrev @955 + _strset @956 + _strset_s@0 @957 PRIVATE + _strtime=MSVCRT__strtime @958 + _strtime_s @959 + _strtod_l=MSVCRT_strtod_l @960 + _strtoi64=MSVCRT_strtoi64 @961 + _strtoi64_l=MSVCRT_strtoi64_l @962 + _strtol_l=MSVCRT__strtol_l @963 + _strtoui64=MSVCRT_strtoui64 @964 + _strtoui64_l=MSVCRT_strtoui64_l @965 + _strtoul_l=MSVCRT_strtoul_l @966 + _strupr=MSVCRT__strupr @967 + _strupr_l=MSVCRT__strupr_l @968 + _strupr_s=MSVCRT__strupr_s @969 + _strupr_s_l=MSVCRT__strupr_s_l @970 + _strxfrm_l=MSVCRT__strxfrm_l @971 + _swab=MSVCRT__swab @972 + _swprintf=MSVCRT_swprintf @973 + _swprintf_c@0 @974 PRIVATE + _swprintf_p@0 @975 PRIVATE + _swprintf_p_l=MSVCRT_swprintf_p_l @976 + _swprintf_s_l=MSVCRT__swprintf_s_l @977 + _swscanf_l=MSVCRT__swscanf_l @978 + _swscanf_s_l=MSVCRT__swscanf_s_l @979 + _sys_errlist=MSVCRT__sys_errlist @980 DATA + _sys_nerr=MSVCRT__sys_nerr @981 DATA + _tell=MSVCRT__tell @982 + _telli64 @983 + _tempnam=MSVCRT__tempnam @984 + _time32=MSVCRT__time32 @985 + _time64=MSVCRT__time64 @986 + _timezone=MSVCRT___timezone @987 DATA + _tolower=MSVCRT__tolower @988 + _tolower_l=MSVCRT__tolower_l @989 + _toupper=MSVCRT__toupper @990 + _toupper_l=MSVCRT__toupper_l @991 + _towlower_l=MSVCRT__towlower_l @992 + _towupper_l=MSVCRT__towupper_l @993 + _tzname=MSVCRT__tzname @994 DATA + _tzset=MSVCRT__tzset @995 + _ui64toa=ntdll._ui64toa @996 + _ui64toa_s=MSVCRT__ui64toa_s @997 + _ui64tow=ntdll._ui64tow @998 + _ui64tow_s=MSVCRT__ui64tow_s @999 + _ultoa=ntdll._ultoa @1000 + _ultoa_s=MSVCRT__ultoa_s @1001 + _ultow=ntdll._ultow @1002 + _ultow_s=MSVCRT__ultow_s @1003 + _umask=MSVCRT__umask @1004 + _umask_s@0 @1005 PRIVATE + _ungetc_nolock=MSVCRT__ungetc_nolock @1006 + _ungetch @1007 + _ungetch_nolock @1008 + _ungetwc_nolock=MSVCRT__ungetwc_nolock @1009 + _ungetwch @1010 + _ungetwch_nolock @1011 + _unlink=MSVCRT__unlink @1012 + _unloaddll @1013 + _unlock @1014 + _unlock_file=MSVCRT__unlock_file @1015 + _utime32 @1016 + _utime64 @1017 + _vcprintf @1018 + _vcprintf_l@0 @1019 PRIVATE + _vcprintf_p@0 @1020 PRIVATE + _vcprintf_p_l@0 @1021 PRIVATE + _vcprintf_s@0 @1022 PRIVATE + _vcprintf_s_l@0 @1023 PRIVATE + _vcwprintf @1024 + _vcwprintf_l@0 @1025 PRIVATE + _vcwprintf_p@0 @1026 PRIVATE + _vcwprintf_p_l@0 @1027 PRIVATE + _vcwprintf_s@0 @1028 PRIVATE + _vcwprintf_s_l@0 @1029 PRIVATE + _vfprintf_l=MSVCRT__vfprintf_l @1030 + _vfprintf_p=MSVCRT__vfprintf_p @1031 + _vfprintf_p_l=MSVCRT__vfprintf_p_l @1032 + _vfprintf_s_l=MSVCRT__vfprintf_s_l @1033 + _vfwprintf_l=MSVCRT__vfwprintf_l @1034 + _vfwprintf_p=MSVCRT__vfwprintf_p @1035 + _vfwprintf_p_l=MSVCRT__vfwprintf_p_l @1036 + _vfwprintf_s_l=MSVCRT__vfwprintf_s_l @1037 + _vprintf_l@0 @1038 PRIVATE + _vprintf_p@0 @1039 PRIVATE + _vprintf_p_l@0 @1040 PRIVATE + _vprintf_s_l@0 @1041 PRIVATE + _vscprintf=MSVCRT__vscprintf @1042 + _vscprintf_l=MSVCRT__vscprintf_l @1043 + _vscprintf_p=MSVCRT__vscprintf_p @1044 + _vscprintf_p_l=MSVCRT__vscprintf_p_l @1045 + _vscwprintf=MSVCRT__vscwprintf @1046 + _vscwprintf_l=MSVCRT__vscwprintf_l @1047 + _vscwprintf_p=MSVCRT__vscwprintf_p @1048 + _vscwprintf_p_l=MSVCRT__vscwprintf_p_l @1049 + _vsnprintf=MSVCRT_vsnprintf @1050 + _vsnprintf_c=MSVCRT_vsnprintf @1051 + _vsnprintf_c_l=MSVCRT_vsnprintf_l @1052 + _vsnprintf_l=MSVCRT_vsnprintf_l @1053 + _vsnprintf_s=MSVCRT_vsnprintf_s @1054 + _vsnprintf_s_l=MSVCRT_vsnprintf_s_l @1055 + _vsnwprintf=MSVCRT_vsnwprintf @1056 + _vsnwprintf_l=MSVCRT_vsnwprintf_l @1057 + _vsnwprintf_s=MSVCRT_vsnwprintf_s @1058 + _vsnwprintf_s_l=MSVCRT_vsnwprintf_s_l @1059 + _vsprintf_l=MSVCRT_vsprintf_l @1060 + _vsprintf_p=MSVCRT_vsprintf_p @1061 + _vsprintf_p_l=MSVCRT_vsprintf_p_l @1062 + _vsprintf_s_l=MSVCRT_vsprintf_s_l @1063 + _vswprintf=MSVCRT_vswprintf @1064 + _vswprintf_c=MSVCRT_vsnwprintf @1065 + _vswprintf_c_l=MSVCRT_vsnwprintf_l @1066 + _vswprintf_l=MSVCRT_vswprintf_l @1067 + _vswprintf_p=MSVCRT__vswprintf_p @1068 + _vswprintf_p_l=MSVCRT_vswprintf_p_l @1069 + _vswprintf_s_l=MSVCRT_vswprintf_s_l @1070 + _vwprintf_l@0 @1071 PRIVATE + _vwprintf_p@0 @1072 PRIVATE + _vwprintf_p_l@0 @1073 PRIVATE + _vwprintf_s_l@0 @1074 PRIVATE + _waccess=MSVCRT__waccess @1075 + _waccess_s=MSVCRT__waccess_s @1076 + _wasctime=MSVCRT__wasctime @1077 + _wasctime_s=MSVCRT__wasctime_s @1078 + _wassert=MSVCRT__wassert @1079 + _wchdir=MSVCRT__wchdir @1080 + _wchmod=MSVCRT__wchmod @1081 + _wcmdln=MSVCRT__wcmdln @1082 DATA + _wcreat=MSVCRT__wcreat @1083 + _wcscoll_l=MSVCRT__wcscoll_l @1084 + _wcsdup=MSVCRT__wcsdup @1085 + _wcserror=MSVCRT__wcserror @1086 + _wcserror_s=MSVCRT__wcserror_s @1087 + _wcsftime_l=MSVCRT__wcsftime_l @1088 + _wcsicmp=MSVCRT__wcsicmp @1089 + _wcsicmp_l=MSVCRT__wcsicmp_l @1090 + _wcsicoll=MSVCRT__wcsicoll @1091 + _wcsicoll_l=MSVCRT__wcsicoll_l @1092 + _wcslwr=MSVCRT__wcslwr @1093 + _wcslwr_l=MSVCRT__wcslwr_l @1094 + _wcslwr_s=MSVCRT__wcslwr_s @1095 + _wcslwr_s_l=MSVCRT__wcslwr_s_l @1096 + _wcsncoll=MSVCRT__wcsncoll @1097 + _wcsncoll_l=MSVCRT__wcsncoll_l @1098 + _wcsnicmp=MSVCRT__wcsnicmp @1099 + _wcsnicmp_l=MSVCRT__wcsnicmp_l @1100 + _wcsnicoll=MSVCRT__wcsnicoll @1101 + _wcsnicoll_l=MSVCRT__wcsnicoll_l @1102 + _wcsnset=MSVCRT__wcsnset @1103 + _wcsnset_s=MSVCRT__wcsnset_s @1104 + _wcsrev=MSVCRT__wcsrev @1105 + _wcsset=MSVCRT__wcsset @1106 + _wcsset_s=MSVCRT__wcsset_s @1107 + _wcstod_l=MSVCRT__wcstod_l @1108 + _wcstoi64=MSVCRT__wcstoi64 @1109 + _wcstoi64_l=MSVCRT__wcstoi64_l @1110 + _wcstol_l=MSVCRT__wcstol_l @1111 + _wcstombs_l=MSVCRT__wcstombs_l @1112 + _wcstombs_s_l=MSVCRT__wcstombs_s_l @1113 + _wcstoui64=MSVCRT__wcstoui64 @1114 + _wcstoui64_l=MSVCRT__wcstoui64_l @1115 + _wcstoul_l=MSVCRT__wcstoul_l @1116 + _wcsupr=MSVCRT__wcsupr @1117 + _wcsupr_l=MSVCRT__wcsupr_l @1118 + _wcsupr_s=MSVCRT__wcsupr_s @1119 + _wcsupr_s_l=MSVCRT__wcsupr_s_l @1120 + _wcsxfrm_l=MSVCRT__wcsxfrm_l @1121 + _wctime32=MSVCRT__wctime32 @1122 + _wctime32_s=MSVCRT__wctime32_s @1123 + _wctime64=MSVCRT__wctime64 @1124 + _wctime64_s=MSVCRT__wctime64_s @1125 + _wctomb_l=MSVCRT__wctomb_l @1126 + _wctomb_s_l=MSVCRT__wctomb_s_l @1127 + _wdupenv_s @1128 + _wenviron=MSVCRT__wenviron @1129 DATA + _wexecl @1130 + _wexecle @1131 + _wexeclp @1132 + _wexeclpe @1133 + _wexecv @1134 + _wexecve @1135 + _wexecvp @1136 + _wexecvpe @1137 + _wfdopen=MSVCRT__wfdopen @1138 + _wfindfirst32=MSVCRT__wfindfirst32 @1139 + _wfindfirst32i64@0 @1140 PRIVATE + _wfindfirst64=MSVCRT__wfindfirst64 @1141 + _wfindfirst64i32=MSVCRT__wfindfirst64i32 @1142 + _wfindnext32=MSVCRT__wfindnext32 @1143 + _wfindnext32i64@0 @1144 PRIVATE + _wfindnext64=MSVCRT__wfindnext64 @1145 + _wfindnext64i32=MSVCRT__wfindnext64i32 @1146 + _wfopen=MSVCRT__wfopen @1147 + _wfopen_s=MSVCRT__wfopen_s @1148 + _wfreopen=MSVCRT__wfreopen @1149 + _wfreopen_s=MSVCRT__wfreopen_s @1150 + _wfsopen=MSVCRT__wfsopen @1151 + _wfullpath=MSVCRT__wfullpath @1152 + _wgetcwd=MSVCRT__wgetcwd @1153 + _wgetdcwd=MSVCRT__wgetdcwd @1154 + _wgetdcwd_nolock@0 @1155 PRIVATE + _wgetenv=MSVCRT__wgetenv @1156 + _wgetenv_s @1157 + _winmajor=MSVCRT__winmajor @1158 DATA + _winminor=MSVCRT__winminor @1159 DATA + _winver=MSVCRT__winver @1160 DATA + _wmakepath=MSVCRT__wmakepath @1161 + _wmakepath_s=MSVCRT__wmakepath_s @1162 + _wmkdir=MSVCRT__wmkdir @1163 + _wmktemp=MSVCRT__wmktemp @1164 + _wmktemp_s=MSVCRT__wmktemp_s @1165 + _wopen=MSVCRT__wopen @1166 + _wperror=MSVCRT__wperror @1167 + _wpgmptr=MSVCRT__wpgmptr @1168 DATA + _wpopen=MSVCRT__wpopen @1169 + _wprintf_l@0 @1170 PRIVATE + _wprintf_p@0 @1171 PRIVATE + _wprintf_p_l@0 @1172 PRIVATE + _wprintf_s_l@0 @1173 PRIVATE + _wputenv @1174 + _wputenv_s @1175 + _wremove=MSVCRT__wremove @1176 + _wrename=MSVCRT__wrename @1177 + _write=MSVCRT__write @1178 + _wrmdir=MSVCRT__wrmdir @1179 + _wscanf_l=MSVCRT__wscanf_l @1180 + _wscanf_s_l=MSVCRT__wscanf_s_l @1181 + _wsearchenv=MSVCRT__wsearchenv @1182 + _wsearchenv_s=MSVCRT__wsearchenv_s @1183 + _wsetlocale=MSVCRT__wsetlocale @1184 + _wsopen=MSVCRT__wsopen @1185 + _wsopen_s=MSVCRT__wsopen_s @1186 + _wspawnl=MSVCRT__wspawnl @1187 + _wspawnle=MSVCRT__wspawnle @1188 + _wspawnlp=MSVCRT__wspawnlp @1189 + _wspawnlpe=MSVCRT__wspawnlpe @1190 + _wspawnv=MSVCRT__wspawnv @1191 + _wspawnve=MSVCRT__wspawnve @1192 + _wspawnvp=MSVCRT__wspawnvp @1193 + _wspawnvpe=MSVCRT__wspawnvpe @1194 + _wsplitpath=MSVCRT__wsplitpath @1195 + _wsplitpath_s=MSVCRT__wsplitpath_s @1196 + _wstat32=MSVCRT__wstat32 @1197 + _wstat32i64=MSVCRT__wstat32i64 @1198 + _wstat64=MSVCRT__wstat64 @1199 + _wstat64i32=MSVCRT__wstat64i32 @1200 + _wstrdate=MSVCRT__wstrdate @1201 + _wstrdate_s @1202 + _wstrtime=MSVCRT__wstrtime @1203 + _wstrtime_s @1204 + _wsystem @1205 + _wtempnam=MSVCRT__wtempnam @1206 + _wtmpnam=MSVCRT__wtmpnam @1207 + _wtmpnam_s=MSVCRT__wtmpnam_s @1208 + _wtof=MSVCRT__wtof @1209 + _wtof_l=MSVCRT__wtof_l @1210 + _wtoi=MSVCRT__wtoi @1211 + _wtoi64=MSVCRT__wtoi64 @1212 + _wtoi64_l=MSVCRT__wtoi64_l @1213 + _wtoi_l=MSVCRT__wtoi_l @1214 + _wtol=MSVCRT__wtol @1215 + _wtol_l=MSVCRT__wtol_l @1216 + _wunlink=MSVCRT__wunlink @1217 + _wutime32 @1218 + _wutime64 @1219 + _y0=MSVCRT__y0 @1220 + _y1=MSVCRT__y1 @1221 + _yn=MSVCRT__yn @1222 + abort=MSVCRT_abort @1223 + abs=MSVCRT_abs @1224 + acos=MSVCRT_acos @1225 + asctime=MSVCRT_asctime @1226 + asctime_s=MSVCRT_asctime_s @1227 + asin=MSVCRT_asin @1228 + atan=MSVCRT_atan @1229 + atan2=MSVCRT_atan2 @1230 + atexit=MSVCRT_atexit @1231 PRIVATE + atof=MSVCRT_atof @1232 + atoi=MSVCRT_atoi @1233 + atol=MSVCRT_atol @1234 + bsearch=MSVCRT_bsearch @1235 + bsearch_s=MSVCRT_bsearch_s @1236 + btowc=MSVCRT_btowc @1237 + calloc=MSVCRT_calloc @1238 + ceil=MSVCRT_ceil @1239 + clearerr=MSVCRT_clearerr @1240 + clearerr_s=MSVCRT_clearerr_s @1241 + clock=MSVCRT_clock @1242 + cos=MSVCRT_cos @1243 + cosh=MSVCRT_cosh @1244 + div=MSVCRT_div @1245 + exit=MSVCRT_exit @1246 + exp=MSVCRT_exp @1247 + fabs=MSVCRT_fabs @1248 + fclose=MSVCRT_fclose @1249 + feof=MSVCRT_feof @1250 + ferror=MSVCRT_ferror @1251 + fflush=MSVCRT_fflush @1252 + fgetc=MSVCRT_fgetc @1253 + fgetpos=MSVCRT_fgetpos @1254 + fgets=MSVCRT_fgets @1255 + fgetwc=MSVCRT_fgetwc @1256 + fgetws=MSVCRT_fgetws @1257 + floor=MSVCRT_floor @1258 + fmod=MSVCRT_fmod @1259 + fopen=MSVCRT_fopen @1260 + fopen_s=MSVCRT_fopen_s @1261 + fprintf=MSVCRT_fprintf @1262 + fprintf_s=MSVCRT_fprintf_s @1263 + fputc=MSVCRT_fputc @1264 + fputs=MSVCRT_fputs @1265 + fputwc=MSVCRT_fputwc @1266 + fputws=MSVCRT_fputws @1267 + fread=MSVCRT_fread @1268 + fread_s=MSVCRT_fread_s @1269 + free=MSVCRT_free @1270 + freopen=MSVCRT_freopen @1271 + freopen_s=MSVCRT_freopen_s @1272 + frexp=MSVCRT_frexp @1273 + fscanf=MSVCRT_fscanf @1274 + fscanf_s=MSVCRT_fscanf_s @1275 + fseek=MSVCRT_fseek @1276 + fsetpos=MSVCRT_fsetpos @1277 + ftell=MSVCRT_ftell @1278 + fwprintf=MSVCRT_fwprintf @1279 + fwprintf_s=MSVCRT_fwprintf_s @1280 + fwrite=MSVCRT_fwrite @1281 + fwscanf=MSVCRT_fwscanf @1282 + fwscanf_s=MSVCRT_fwscanf_s @1283 + getc=MSVCRT_getc @1284 + getchar=MSVCRT_getchar @1285 + getenv=MSVCRT_getenv @1286 + getenv_s @1287 + gets=MSVCRT_gets @1288 + gets_s=MSVCRT_gets_s @1289 + getwc=MSVCRT_getwc @1290 + getwchar=MSVCRT_getwchar @1291 + is_wctype=ntdll.iswctype @1292 + isalnum=MSVCRT_isalnum @1293 + isalpha=MSVCRT_isalpha @1294 + iscntrl=MSVCRT_iscntrl @1295 + isdigit=MSVCRT_isdigit @1296 + isgraph=MSVCRT_isgraph @1297 + isleadbyte=MSVCRT_isleadbyte @1298 + islower=MSVCRT_islower @1299 + isprint=MSVCRT_isprint @1300 + ispunct=MSVCRT_ispunct @1301 + isspace=MSVCRT_isspace @1302 + isupper=MSVCRT_isupper @1303 + iswalnum=MSVCRT_iswalnum @1304 + iswalpha=ntdll.iswalpha @1305 + iswascii=MSVCRT_iswascii @1306 + iswcntrl=MSVCRT_iswcntrl @1307 + iswctype=ntdll.iswctype @1308 + iswdigit=MSVCRT_iswdigit @1309 + iswgraph=MSVCRT_iswgraph @1310 + iswlower=MSVCRT_iswlower @1311 + iswprint=MSVCRT_iswprint @1312 + iswpunct=MSVCRT_iswpunct @1313 + iswspace=MSVCRT_iswspace @1314 + iswupper=MSVCRT_iswupper @1315 + iswxdigit=MSVCRT_iswxdigit @1316 + isxdigit=MSVCRT_isxdigit @1317 + labs=MSVCRT_labs @1318 + ldexp=MSVCRT_ldexp @1319 + ldiv=MSVCRT_ldiv @1320 + localeconv=MSVCRT_localeconv @1321 + log=MSVCRT_log @1322 + log10=MSVCRT_log10 @1323 + longjmp=MSVCRT_longjmp @1324 + malloc=MSVCRT_malloc @1325 + mblen=MSVCRT_mblen @1326 + mbrlen=MSVCRT_mbrlen @1327 + mbrtowc=MSVCRT_mbrtowc @1328 + mbsrtowcs=MSVCRT_mbsrtowcs @1329 + mbsrtowcs_s=MSVCRT_mbsrtowcs_s @1330 + mbstowcs=MSVCRT_mbstowcs @1331 + mbstowcs_s=MSVCRT__mbstowcs_s @1332 + mbtowc=MSVCRT_mbtowc @1333 + memchr=MSVCRT_memchr @1334 + memcmp=MSVCRT_memcmp @1335 + memcpy=MSVCRT_memcpy @1336 + memcpy_s=MSVCRT_memcpy_s @1337 + memmove=MSVCRT_memmove @1338 + memmove_s=MSVCRT_memmove_s @1339 + memset=MSVCRT_memset @1340 + modf=MSVCRT_modf @1341 + perror=MSVCRT_perror @1342 + pow=MSVCRT_pow @1343 + printf=MSVCRT_printf @1344 + printf_s=MSVCRT_printf_s @1345 + putc=MSVCRT_putc @1346 + putchar=MSVCRT_putchar @1347 + puts=MSVCRT_puts @1348 + putwc=MSVCRT_fputwc @1349 + putwchar=MSVCRT__fputwchar @1350 + qsort=MSVCRT_qsort @1351 + qsort_s=MSVCRT_qsort_s @1352 + raise=MSVCRT_raise @1353 + rand=MSVCRT_rand @1354 + rand_s=MSVCRT_rand_s @1355 + realloc=MSVCRT_realloc @1356 + remove=MSVCRT_remove @1357 + rename=MSVCRT_rename @1358 + rewind=MSVCRT_rewind @1359 + scanf=MSVCRT_scanf @1360 + scanf_s=MSVCRT_scanf_s @1361 + setbuf=MSVCRT_setbuf @1362 + setlocale=MSVCRT_setlocale @1363 + setvbuf=MSVCRT_setvbuf @1364 + signal=MSVCRT_signal @1365 + sin=MSVCRT_sin @1366 + sinh=MSVCRT_sinh @1367 + sprintf=MSVCRT_sprintf @1368 + sprintf_s=MSVCRT_sprintf_s @1369 + sqrt=MSVCRT_sqrt @1370 + srand=MSVCRT_srand @1371 + sscanf=MSVCRT_sscanf @1372 + sscanf_s=MSVCRT_sscanf_s @1373 + strcat=ntdll.strcat @1374 + strcat_s=MSVCRT_strcat_s @1375 + strchr=MSVCRT_strchr @1376 + strcmp=MSVCRT_strcmp @1377 + strcoll=MSVCRT_strcoll @1378 + strcpy=MSVCRT_strcpy @1379 + strcpy_s=MSVCRT_strcpy_s @1380 + strcspn=MSVCRT_strcspn @1381 + strerror=MSVCRT_strerror @1382 + strerror_s=MSVCRT_strerror_s @1383 + strftime=MSVCRT_strftime @1384 + strlen=MSVCRT_strlen @1385 + strncat=MSVCRT_strncat @1386 + strncat_s=MSVCRT_strncat_s @1387 + strncmp=MSVCRT_strncmp @1388 + strncpy=MSVCRT_strncpy @1389 + strncpy_s=MSVCRT_strncpy_s @1390 + strnlen=MSVCRT_strnlen @1391 + strpbrk=MSVCRT_strpbrk @1392 + strrchr=MSVCRT_strrchr @1393 + strspn=ntdll.strspn @1394 + strstr=MSVCRT_strstr @1395 + strtod=MSVCRT_strtod @1396 + strtok=MSVCRT_strtok @1397 + strtok_s=MSVCRT_strtok_s @1398 + strtol=MSVCRT_strtol @1399 + strtoul=MSVCRT_strtoul @1400 + strxfrm=MSVCRT_strxfrm @1401 + swprintf_s=MSVCRT_swprintf_s @1402 + swscanf=MSVCRT_swscanf @1403 + swscanf_s=MSVCRT_swscanf_s @1404 + system=MSVCRT_system @1405 + tan=MSVCRT_tan @1406 + tanh=MSVCRT_tanh @1407 + tmpfile=MSVCRT_tmpfile @1408 + tmpfile_s=MSVCRT_tmpfile_s @1409 + tmpnam=MSVCRT_tmpnam @1410 + tmpnam_s=MSVCRT_tmpnam_s @1411 + tolower=MSVCRT_tolower @1412 + toupper=MSVCRT_toupper @1413 + towlower=MSVCRT_towlower @1414 + towupper=MSVCRT_towupper @1415 + ungetc=MSVCRT_ungetc @1416 + ungetwc=MSVCRT_ungetwc @1417 + vfprintf=MSVCRT_vfprintf @1418 + vfprintf_s=MSVCRT_vfprintf_s @1419 + vfwprintf=MSVCRT_vfwprintf @1420 + vfwprintf_s=MSVCRT_vfwprintf_s @1421 + vprintf=MSVCRT_vprintf @1422 + vprintf_s=MSVCRT_vprintf_s @1423 + vsprintf=MSVCRT_vsprintf @1424 + vsprintf_s=MSVCRT_vsprintf_s @1425 + vswprintf_s=MSVCRT_vswprintf_s @1426 + vwprintf=MSVCRT_vwprintf @1427 + vwprintf_s=MSVCRT_vwprintf_s @1428 + wcrtomb=MSVCRT_wcrtomb @1429 + wcrtomb_s@0 @1430 PRIVATE + wcscat=ntdll.wcscat @1431 + wcscat_s=MSVCRT_wcscat_s @1432 + wcschr=MSVCRT_wcschr @1433 + wcscmp=MSVCRT_wcscmp @1434 + wcscoll=MSVCRT_wcscoll @1435 + wcscpy=ntdll.wcscpy @1436 + wcscpy_s=MSVCRT_wcscpy_s @1437 + wcscspn=ntdll.wcscspn @1438 + wcsftime=MSVCRT_wcsftime @1439 + wcslen=MSVCRT_wcslen @1440 + wcsncat=ntdll.wcsncat @1441 + wcsncat_s=MSVCRT_wcsncat_s @1442 + wcsncmp=MSVCRT_wcsncmp @1443 + wcsncpy=MSVCRT_wcsncpy @1444 + wcsncpy_s=MSVCRT_wcsncpy_s @1445 + wcsnlen=MSVCRT_wcsnlen @1446 + wcspbrk=MSVCRT_wcspbrk @1447 + wcsrchr=MSVCRT_wcsrchr @1448 + wcsrtombs=MSVCRT_wcsrtombs @1449 + wcsrtombs_s=MSVCRT_wcsrtombs_s @1450 + wcsspn=ntdll.wcsspn @1451 + wcsstr=MSVCRT_wcsstr @1452 + wcstod=MSVCRT_wcstod @1453 + wcstok=MSVCRT_wcstok @1454 + wcstok_s=MSVCRT_wcstok_s @1455 + wcstol=MSVCRT_wcstol @1456 + wcstombs=MSVCRT_wcstombs @1457 + wcstombs_s=MSVCRT_wcstombs_s @1458 + wcstoul=MSVCRT_wcstoul @1459 + wcsxfrm=MSVCRT_wcsxfrm @1460 + wctob=MSVCRT_wctob @1461 + wctomb=MSVCRT_wctomb @1462 + wctomb_s=MSVCRT_wctomb_s @1463 + wprintf=MSVCRT_wprintf @1464 + wprintf_s=MSVCRT_wprintf_s @1465 + wscanf=MSVCRT_wscanf @1466 + wscanf_s=MSVCRT_wscanf_s @1467 diff --git a/lib/wine/libmsvcr90.def b/lib/wine/libmsvcr90.def new file mode 100644 index 0000000..a83c378 --- /dev/null +++ b/lib/wine/libmsvcr90.def @@ -0,0 +1,1455 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/msvcr90/msvcr90.spec; do not edit! + +LIBRARY msvcr90.dll + +EXPORTS + ??0__non_rtti_object@std@@QAE@ABV01@@Z@8=__thiscall_MSVCRT___non_rtti_object_copy_ctor @1 + ??0bad_cast@std@@QAE@ABV01@@Z@8=__thiscall_MSVCRT_bad_cast_copy_ctor @2 + ??0bad_cast@std@@QAE@PBD@Z@8=__thiscall_MSVCRT_bad_cast_ctor_charptr @3 + ??0bad_typeid@std@@QAE@ABV01@@Z@8=__thiscall_MSVCRT_bad_typeid_copy_ctor @4 + ??0bad_typeid@std@@QAE@PBD@Z@8=__thiscall_MSVCRT_bad_typeid_ctor @5 + ??0exception@std@@QAE@ABQBD@Z@8=__thiscall_MSVCRT_exception_ctor @6 + ??0exception@std@@QAE@ABQBDH@Z@12=__thiscall_MSVCRT_exception_ctor_noalloc @7 + ??0exception@std@@QAE@ABV01@@Z@8=__thiscall_MSVCRT_exception_copy_ctor @8 + ??0exception@std@@QAE@XZ@4=__thiscall_MSVCRT_exception_default_ctor @9 + ??1__non_rtti_object@std@@UAE@XZ@4=__thiscall_MSVCRT___non_rtti_object_dtor @10 + ??1bad_cast@std@@UAE@XZ@4=__thiscall_MSVCRT_bad_cast_dtor @11 + ??1bad_typeid@std@@UAE@XZ@4=__thiscall_MSVCRT_bad_typeid_dtor @12 + ??1exception@std@@UAE@XZ@4=__thiscall_MSVCRT_exception_dtor @13 + ??1type_info@@UAE@XZ@4=__thiscall_MSVCRT_type_info_dtor @14 + ??2@YAPAXI@Z=MSVCRT_operator_new @15 + ??2@YAPAXIHPBDH@Z=MSVCRT_operator_new_dbg @16 + ??3@YAXPAX@Z=MSVCRT_operator_delete @17 + ??4__non_rtti_object@std@@QAEAAV01@ABV01@@Z@8=__thiscall_MSVCRT___non_rtti_object_opequals @18 + ??4bad_cast@std@@QAEAAV01@ABV01@@Z@8=__thiscall_MSVCRT_bad_cast_opequals @19 + ??4bad_typeid@std@@QAEAAV01@ABV01@@Z@8=__thiscall_MSVCRT_bad_typeid_opequals @20 + ??4exception@std@@QAEAAV01@ABV01@@Z@8=__thiscall_MSVCRT_exception_opequals @21 + ??8type_info@@QBE_NABV0@@Z@8=__thiscall_MSVCRT_type_info_opequals_equals @22 + ??9type_info@@QBE_NABV0@@Z@8=__thiscall_MSVCRT_type_info_opnot_equals @23 + ??_7__non_rtti_object@std@@6B@=MSVCRT___non_rtti_object_vtable @24 DATA + ??_7bad_cast@std@@6B@=MSVCRT_bad_cast_vtable @25 DATA + ??_7bad_typeid@std@@6B@=MSVCRT_bad_typeid_vtable @26 DATA + ??_7exception@@6B@=MSVCRT_exception_old_vtable @27 DATA + ??_7exception@std@@6B@=MSVCRT_exception_vtable @28 DATA + ??_Fbad_cast@std@@QAEXXZ@4=__thiscall_MSVCRT_bad_cast_default_ctor @29 + ??_Fbad_typeid@std@@QAEXXZ@4=__thiscall_MSVCRT_bad_typeid_default_ctor @30 + ??_U@YAPAXI@Z=MSVCRT_operator_new @31 + ??_U@YAPAXIHPBDH@Z=MSVCRT_operator_new_dbg @32 + ??_V@YAXPAX@Z=MSVCRT_operator_delete @33 + ?_Name_base@type_info@@CAPBDPBV1@PAU__type_info_node@@@Z@0 @34 PRIVATE + ?_Name_base_internal@type_info@@CAPBDPBV1@PAU__type_info_node@@@Z@0 @35 PRIVATE + ?_Type_info_dtor@type_info@@CAXPAV1@@Z@0 @36 PRIVATE + ?_Type_info_dtor_internal@type_info@@CAXPAV1@@Z@0 @37 PRIVATE + ?_ValidateExecute@@YAHP6GHXZ@Z@0 @38 PRIVATE + ?_ValidateRead@@YAHPBXI@Z@0 @39 PRIVATE + ?_ValidateWrite@@YAHPAXI@Z@0 @40 PRIVATE + __uncaught_exception=MSVCRT___uncaught_exception @41 + ?_inconsistency@@YAXXZ@0 @42 PRIVATE + ?_invalid_parameter@@YAXPBG00II@Z=MSVCRT__invalid_parameter @43 + ?_is_exception_typeof@@YAHABVtype_info@@PAU_EXCEPTION_POINTERS@@@Z=_is_exception_typeof @44 + ?_name_internal_method@type_info@@QBEPBDPAU__type_info_node@@@Z@8=__thiscall_type_info_name_internal_method @45 + ?_open@@YAHPBDHH@Z=MSVCRT__open @46 + ?_query_new_handler@@YAP6AHI@ZXZ=MSVCRT__query_new_handler @47 + ?_query_new_mode@@YAHXZ=MSVCRT__query_new_mode @48 + ?_set_new_handler@@YAP6AHI@ZH@Z@0 @49 PRIVATE + ?_set_new_handler@@YAP6AHI@ZP6AHI@Z@Z=MSVCRT__set_new_handler @50 + ?_set_new_mode@@YAHH@Z=MSVCRT__set_new_mode @51 + ?_set_se_translator@@YAP6AXIPAU_EXCEPTION_POINTERS@@@ZH@Z@0 @52 PRIVATE + ?_set_se_translator@@YAP6AXIPAU_EXCEPTION_POINTERS@@@ZP6AXI0@Z@Z=MSVCRT__set_se_translator @53 + ?_sopen@@YAHPBDHHH@Z=MSVCRT__sopen @54 + ?_type_info_dtor_internal_method@type_info@@QAEXXZ@0 @55 PRIVATE + ?_wopen@@YAHPB_WHH@Z=MSVCRT__wopen @56 + ?_wsopen@@YAHPB_WHHH@Z=MSVCRT__wsopen @57 + ?before@type_info@@QBEHABV1@@Z@8=__thiscall_MSVCRT_type_info_before @58 + ?name@type_info@@QBEPBDPAU__type_info_node@@@Z@8=__thiscall_type_info_name_internal_method @59 + ?raw_name@type_info@@QBEPBDXZ@4=__thiscall_MSVCRT_type_info_raw_name @60 + ?set_new_handler@@YAP6AXXZP6AXXZ@Z=MSVCRT_set_new_handler @61 + ?set_terminate@@YAP6AXXZH@Z@0 @62 PRIVATE + ?set_terminate@@YAP6AXXZP6AXXZ@Z=MSVCRT_set_terminate @63 + ?set_unexpected@@YAP6AXXZH@Z@0 @64 PRIVATE + ?set_unexpected@@YAP6AXXZP6AXXZ@Z=MSVCRT_set_unexpected @65 + ?swprintf@@YAHPAGIPBGZZ=MSVCRT__snwprintf @66 + ?swprintf@@YAHPA_WIPB_WZZ=MSVCRT__snwprintf @67 + ?terminate@@YAXXZ=MSVCRT_terminate @68 + ?unexpected@@YAXXZ=MSVCRT_unexpected @69 + ?vswprintf@@YAHPA_WIPB_WPAD@Z=MSVCRT_vsnwprintf @70 + ?what@exception@std@@UBEPBDXZ@4=__thiscall_MSVCRT_what_exception @71 + $I10_OUTPUT=MSVCRT_I10_OUTPUT @72 + _CIacos @73 + _CIasin @74 + _CIatan @75 + _CIatan2 @76 + _CIcos @77 + _CIcosh @78 + _CIexp @79 + _CIfmod @80 + _CIlog @81 + _CIlog10 @82 + _CIpow @83 + _CIsin @84 + _CIsinh @85 + _CIsqrt @86 + _CItan @87 + _CItanh @88 + _CRT_RTC_INIT @89 + _CRT_RTC_INITW @90 + _CreateFrameInfo @91 + _CxxThrowException@8 @92 + _EH_prolog @93 + _FindAndUnlinkFrame @94 + _Getdays @95 + _Getmonths @96 + _Gettnames @97 + _HUGE=MSVCRT__HUGE @98 DATA + _IsExceptionObjectToBeDestroyed @99 + _NLG_Dispatch2@0 @100 PRIVATE + _NLG_Return@0 @101 PRIVATE + _NLG_Return2@0 @102 PRIVATE + _Strftime @103 + _XcptFilter @104 + __AdjustPointer @105 + __BuildCatchObject@0 @106 PRIVATE + __BuildCatchObjectHelper@0 @107 PRIVATE + __CppXcptFilter @108 + __CxxCallUnwindDelDtor@0 @109 PRIVATE + __CxxCallUnwindDtor@0 @110 PRIVATE + __CxxCallUnwindStdDelDtor@0 @111 PRIVATE + __CxxCallUnwindVecDtor@0 @112 PRIVATE + __CxxDetectRethrow @113 + __CxxExceptionFilter @114 + __CxxFrameHandler @115 + __CxxFrameHandler2=__CxxFrameHandler @116 + __CxxFrameHandler3=__CxxFrameHandler @117 + __CxxLongjmpUnwind@4 @118 + __CxxQueryExceptionSize @119 + __CxxRegisterExceptionObject @120 + __CxxUnregisterExceptionObject @121 + __DestructExceptionObject @122 + __FrameUnwindFilter@0 @123 PRIVATE + __RTCastToVoid=MSVCRT___RTCastToVoid @124 + __RTDynamicCast=MSVCRT___RTDynamicCast @125 + __RTtypeid=MSVCRT___RTtypeid @126 + __STRINGTOLD @127 + __STRINGTOLD_L@0 @128 PRIVATE + __TypeMatch@0 @129 PRIVATE + ___lc_codepage_func @130 + ___lc_collate_cp_func @131 + ___lc_handle_func @132 + ___mb_cur_max_func=MSVCRT____mb_cur_max_func @133 + ___mb_cur_max_l_func @134 + ___setlc_active_func=MSVCRT____setlc_active_func @135 + ___unguarded_readlc_active_add_func=MSVCRT____unguarded_readlc_active_add_func @136 + __argc=MSVCRT___argc @137 DATA + __argv=MSVCRT___argv @138 DATA + __badioinfo=MSVCRT___badioinfo @139 DATA + __clean_type_info_names_internal @140 + __control87_2 @141 + __create_locale=MSVCRT__create_locale @142 + __crtCompareStringA @143 + __crtCompareStringW @144 + __crtGetLocaleInfoW @145 + __crtGetStringTypeW @146 + __crtLCMapStringA @147 + __crtLCMapStringW @148 + __daylight=MSVCRT___p__daylight @149 + __dllonexit @150 + __doserrno=MSVCRT___doserrno @151 + __dstbias=MSVCRT___p__dstbias @152 + ___fls_getvalue@4@0 @153 PRIVATE + ___fls_setvalue@8@0 @154 PRIVATE + __fpecode @155 + __free_locale=MSVCRT__free_locale @156 + __get_app_type@0 @157 PRIVATE + __get_current_locale=MSVCRT__get_current_locale @158 + __get_flsindex@0 @159 PRIVATE + __get_tlsindex@0 @160 PRIVATE + __getmainargs @161 + __initenv=MSVCRT___initenv @162 DATA + __iob_func=__p__iob @163 + __isascii=MSVCRT___isascii @164 + __iscsym=MSVCRT___iscsym @165 + __iscsymf=MSVCRT___iscsymf @166 + __iswcsym@0 @167 PRIVATE + __iswcsymf@0 @168 PRIVATE + __lc_codepage=MSVCRT___lc_codepage @169 DATA + __lc_collate_cp=MSVCRT___lc_collate_cp @170 DATA + __lc_handle=MSVCRT___lc_handle @171 DATA + __lconv_init @172 + __libm_sse2_acos=MSVCRT___libm_sse2_acos @173 + __libm_sse2_acosf=MSVCRT___libm_sse2_acosf @174 + __libm_sse2_asin=MSVCRT___libm_sse2_asin @175 + __libm_sse2_asinf=MSVCRT___libm_sse2_asinf @176 + __libm_sse2_atan=MSVCRT___libm_sse2_atan @177 + __libm_sse2_atan2=MSVCRT___libm_sse2_atan2 @178 + __libm_sse2_atanf=MSVCRT___libm_sse2_atanf @179 + __libm_sse2_cos=MSVCRT___libm_sse2_cos @180 + __libm_sse2_cosf=MSVCRT___libm_sse2_cosf @181 + __libm_sse2_exp=MSVCRT___libm_sse2_exp @182 + __libm_sse2_expf=MSVCRT___libm_sse2_expf @183 + __libm_sse2_log=MSVCRT___libm_sse2_log @184 + __libm_sse2_log10=MSVCRT___libm_sse2_log10 @185 + __libm_sse2_log10f=MSVCRT___libm_sse2_log10f @186 + __libm_sse2_logf=MSVCRT___libm_sse2_logf @187 + __libm_sse2_pow=MSVCRT___libm_sse2_pow @188 + __libm_sse2_powf=MSVCRT___libm_sse2_powf @189 + __libm_sse2_sin=MSVCRT___libm_sse2_sin @190 + __libm_sse2_sinf=MSVCRT___libm_sse2_sinf @191 + __libm_sse2_tan=MSVCRT___libm_sse2_tan @192 + __libm_sse2_tanf=MSVCRT___libm_sse2_tanf @193 + __mb_cur_max=MSVCRT___mb_cur_max @194 DATA + __p___argc=MSVCRT___p___argc @195 + __p___argv=MSVCRT___p___argv @196 + __p___initenv @197 + __p___mb_cur_max @198 + __p___wargv=MSVCRT___p___wargv @199 + __p___winitenv @200 + __p__acmdln=MSVCRT___p__acmdln @201 + __p__amblksiz @202 + __p__commode @203 + __p__daylight=MSVCRT___p__daylight @204 + __p__dstbias=MSVCRT___p__dstbias @205 + __p__environ=MSVCRT___p__environ @206 + __p__fmode=MSVCRT___p__fmode @207 + __p__iob @208 + __p__mbcasemap@0 @209 PRIVATE + __p__mbctype @210 + __p__pctype=MSVCRT___p__pctype @211 + __p__pgmptr=MSVCRT___p__pgmptr @212 + __p__pwctype@0 @213 PRIVATE + __p__timezone=MSVCRT___p__timezone @214 + __p__tzname @215 + __p__wcmdln=MSVCRT___p__wcmdln @216 + __p__wenviron=MSVCRT___p__wenviron @217 + __p__wpgmptr=MSVCRT___p__wpgmptr @218 + __pctype_func=MSVCRT___pctype_func @219 + __pioinfo=MSVCRT___pioinfo @220 DATA + __pwctype_func@0 @221 PRIVATE + __pxcptinfoptrs=MSVCRT___pxcptinfoptrs @222 + __report_gsfailure@0 @223 PRIVATE + __set_app_type=MSVCRT___set_app_type @224 + __set_flsgetvalue@0 @225 PRIVATE + __setlc_active=MSVCRT___setlc_active @226 DATA + __setusermatherr=MSVCRT___setusermatherr @227 + __strncnt=MSVCRT___strncnt @228 + __swprintf_l=MSVCRT___swprintf_l @229 + __sys_errlist @230 + __sys_nerr @231 + __threadhandle=kernel32.GetCurrentThread @232 + __threadid=kernel32.GetCurrentThreadId @233 + __timezone=MSVCRT___p__timezone @234 + __toascii=MSVCRT___toascii @235 + __tzname=__p__tzname @236 + __unDName @237 + __unDNameEx @238 + __unDNameHelper@0 @239 PRIVATE + __unguarded_readlc_active=MSVCRT___unguarded_readlc_active @240 DATA + __vswprintf_l=MSVCRT_vswprintf_l @241 + __wargv=MSVCRT___wargv @242 DATA + __wcserror=MSVCRT___wcserror @243 + __wcserror_s=MSVCRT___wcserror_s @244 + __wcsncnt@0 @245 PRIVATE + __wgetmainargs @246 + __winitenv=MSVCRT___winitenv @247 DATA + _abnormal_termination @248 + _abs64 @249 + _access=MSVCRT__access @250 + _access_s=MSVCRT__access_s @251 + _acmdln=MSVCRT__acmdln @252 DATA + _adj_fdiv_m16i@4 @253 + _adj_fdiv_m32@4 @254 + _adj_fdiv_m32i@4 @255 + _adj_fdiv_m64@8 @256 + _adj_fdiv_r @257 + _adj_fdivr_m16i@4 @258 + _adj_fdivr_m32@4 @259 + _adj_fdivr_m32i@4 @260 + _adj_fdivr_m64@8 @261 + _adj_fpatan @262 + _adj_fprem @263 + _adj_fprem1 @264 + _adj_fptan @265 + _adjust_fdiv=MSVCRT__adjust_fdiv @266 DATA + _aexit_rtn @267 DATA + _aligned_free @268 + _aligned_malloc @269 + _aligned_msize @270 + _aligned_offset_malloc @271 + _aligned_offset_realloc @272 + _aligned_offset_recalloc@0 @273 PRIVATE + _aligned_realloc @274 + _aligned_recalloc@0 @275 PRIVATE + _amsg_exit @276 + _assert=MSVCRT__assert @277 + _atodbl=MSVCRT__atodbl @278 + _atodbl_l=MSVCRT__atodbl_l @279 + _atof_l=MSVCRT__atof_l @280 + _atoflt=MSVCRT__atoflt @281 + _atoflt_l=MSVCRT__atoflt_l @282 + _atoi64=MSVCRT__atoi64 @283 + _atoi64_l=MSVCRT__atoi64_l @284 + _atoi_l=MSVCRT__atoi_l @285 + _atol_l=MSVCRT__atol_l @286 + _atoldbl=MSVCRT__atoldbl @287 + _atoldbl_l@0 @288 PRIVATE + _beep=MSVCRT__beep @289 + _beginthread @290 + _beginthreadex @291 + _byteswap_uint64 @292 + _byteswap_ulong=MSVCRT__byteswap_ulong @293 + _byteswap_ushort @294 + _c_exit=MSVCRT__c_exit @295 + _cabs=MSVCRT__cabs @296 + _callnewh @297 + _calloc_crt=MSVCRT_calloc @298 + _cexit=MSVCRT__cexit @299 + _cgets @300 + _cgets_s@0 @301 PRIVATE + _cgetws@0 @302 PRIVATE + _cgetws_s@0 @303 PRIVATE + _chdir=MSVCRT__chdir @304 + _chdrive=MSVCRT__chdrive @305 + _chgsign=MSVCRT__chgsign @306 + _chkesp @307 + _chmod=MSVCRT__chmod @308 + _chsize=MSVCRT__chsize @309 + _chsize_s=MSVCRT__chsize_s @310 + _clearfp @311 + _close=MSVCRT__close @312 + _commit=MSVCRT__commit @313 + _commode=MSVCRT__commode @314 DATA + _configthreadlocale @315 + _control87 @316 + _controlfp @317 + _controlfp_s @318 + _copysign=MSVCRT__copysign @319 + _cprintf @320 + _cprintf_l@0 @321 PRIVATE + _cprintf_p@0 @322 PRIVATE + _cprintf_p_l@0 @323 PRIVATE + _cprintf_s@0 @324 PRIVATE + _cprintf_s_l@0 @325 PRIVATE + _cputs @326 + _cputws @327 + _creat=MSVCRT__creat @328 + _create_locale=MSVCRT__create_locale @329 + _crt_debugger_hook=MSVCRT__crt_debugger_hook @330 + _cscanf @331 + _cscanf_l @332 + _cscanf_s @333 + _cscanf_s_l @334 + _ctime32=MSVCRT__ctime32 @335 + _ctime32_s=MSVCRT__ctime32_s @336 + _ctime64=MSVCRT__ctime64 @337 + _ctime64_s=MSVCRT__ctime64_s @338 + _cwait @339 + _cwprintf @340 + _cwprintf_l@0 @341 PRIVATE + _cwprintf_p@0 @342 PRIVATE + _cwprintf_p_l@0 @343 PRIVATE + _cwprintf_s@0 @344 PRIVATE + _cwprintf_s_l@0 @345 PRIVATE + _cwscanf @346 + _cwscanf_l @347 + _cwscanf_s @348 + _cwscanf_s_l @349 + _daylight=MSVCRT___daylight @350 DATA + _decode_pointer=MSVCRT_decode_pointer @351 + _difftime32=MSVCRT__difftime32 @352 + _difftime64=MSVCRT__difftime64 @353 + _dosmaperr@0 @354 PRIVATE + _dstbias=MSVCRT__dstbias @355 DATA + _dup=MSVCRT__dup @356 + _dup2=MSVCRT__dup2 @357 + _dupenv_s @358 + _ecvt=MSVCRT__ecvt @359 + _ecvt_s=MSVCRT__ecvt_s @360 + _encode_pointer=MSVCRT_encode_pointer @361 + _encoded_null @362 + _endthread @363 + _endthreadex @364 + _environ=MSVCRT__environ @365 DATA + _eof=MSVCRT__eof @366 + _errno=MSVCRT__errno @367 + _except_handler2 @368 + _except_handler3 @369 + _except_handler4_common @370 + _execl @371 + _execle @372 + _execlp @373 + _execlpe @374 + _execv @375 + _execve=MSVCRT__execve @376 + _execvp @377 + _execvpe @378 + _exit=MSVCRT__exit @379 + _expand @380 + _fclose_nolock=MSVCRT__fclose_nolock @381 + _fcloseall=MSVCRT__fcloseall @382 + _fcvt=MSVCRT__fcvt @383 + _fcvt_s=MSVCRT__fcvt_s @384 + _fdopen=MSVCRT__fdopen @385 + _fflush_nolock=MSVCRT__fflush_nolock @386 + _fgetc_nolock=MSVCRT__fgetc_nolock @387 + _fgetchar=MSVCRT__fgetchar @388 + _fgetwc_nolock=MSVCRT__fgetwc_nolock @389 + _fgetwchar=MSVCRT__fgetwchar @390 + _filbuf=MSVCRT__filbuf @391 + _filelength=MSVCRT__filelength @392 + _filelengthi64=MSVCRT__filelengthi64 @393 + _fileno=MSVCRT__fileno @394 + _findclose=MSVCRT__findclose @395 + _findfirst32=MSVCRT__findfirst32 @396 + _findfirst32i64@0 @397 PRIVATE + _findfirst64=MSVCRT__findfirst64 @398 + _findfirst64i32=MSVCRT__findfirst64i32 @399 + _findnext32=MSVCRT__findnext32 @400 + _findnext32i64@0 @401 PRIVATE + _findnext64=MSVCRT__findnext64 @402 + _findnext64i32=MSVCRT__findnext64i32 @403 + _finite=MSVCRT__finite @404 + _flsbuf=MSVCRT__flsbuf @405 + _flushall=MSVCRT__flushall @406 + _fmode=MSVCRT__fmode @407 DATA + _fpclass=MSVCRT__fpclass @408 + _fpieee_flt @409 + _fpreset @410 + _fprintf_l@0 @411 PRIVATE + _fprintf_p@0 @412 PRIVATE + _fprintf_p_l@0 @413 PRIVATE + _fprintf_s_l@0 @414 PRIVATE + _fputc_nolock=MSVCRT__fputc_nolock @415 + _fputchar=MSVCRT__fputchar @416 + _fputwc_nolock=MSVCRT__fputwc_nolock @417 + _fputwchar=MSVCRT__fputwchar @418 + _fread_nolock=MSVCRT__fread_nolock @419 + _fread_nolock_s=MSVCRT__fread_nolock_s @420 + _free_locale=MSVCRT__free_locale @421 + _freea@0 @422 PRIVATE + _freea_s@0 @423 PRIVATE + _freefls@0 @424 PRIVATE + _fscanf_l=MSVCRT__fscanf_l @425 + _fscanf_s_l=MSVCRT__fscanf_s_l @426 + _fseek_nolock=MSVCRT__fseek_nolock @427 + _fseeki64=MSVCRT__fseeki64 @428 + _fseeki64_nolock=MSVCRT__fseeki64_nolock @429 + _fsopen=MSVCRT__fsopen @430 + _fstat32=MSVCRT__fstat32 @431 + _fstat32i64=MSVCRT__fstat32i64 @432 + _fstat64=MSVCRT__fstat64 @433 + _fstat64i32=MSVCRT__fstat64i32 @434 + _ftell_nolock=MSVCRT__ftell_nolock @435 + _ftelli64=MSVCRT__ftelli64 @436 + _ftelli64_nolock=MSVCRT__ftelli64_nolock @437 + _ftime32=MSVCRT__ftime32 @438 + _ftime32_s=MSVCRT__ftime32_s @439 + _ftime64=MSVCRT__ftime64 @440 + _ftime64_s=MSVCRT__ftime64_s @441 + _ftol=MSVCRT__ftol @442 + _fullpath=MSVCRT__fullpath @443 + _futime32 @444 + _futime64 @445 + _fwprintf_l=MSVCRT__fwprintf_l @446 + _fwprintf_p@0 @447 PRIVATE + _fwprintf_p_l@0 @448 PRIVATE + _fwprintf_s_l@0 @449 PRIVATE + _fwrite_nolock=MSVCRT__fwrite_nolock @450 + _fwscanf_l=MSVCRT__fwscanf_l @451 + _fwscanf_s_l=MSVCRT__fwscanf_s_l @452 + _gcvt=MSVCRT__gcvt @453 + _gcvt_s=MSVCRT__gcvt_s @454 + _get_amblksiz@0 @455 PRIVATE + _get_current_locale=MSVCRT__get_current_locale @456 + _get_daylight @457 + _get_doserrno @458 + _get_dstbias=MSVCRT__get_dstbias @459 + _get_errno @460 + _get_fmode=MSVCRT__get_fmode @461 + _get_heap_handle @462 + _get_invalid_parameter_handler @463 + _get_osfhandle=MSVCRT__get_osfhandle @464 + _get_output_format=MSVCRT__get_output_format @465 + _get_pgmptr @466 + _get_printf_count_output=MSVCRT__get_printf_count_output @467 + _get_purecall_handler @468 + _get_sbh_threshold @469 + _get_terminate=MSVCRT__get_terminate @470 + _get_timezone @471 + _get_tzname=MSVCRT__get_tzname @472 + _get_unexpected=MSVCRT__get_unexpected @473 + _get_wpgmptr @474 + _getc_nolock=MSVCRT__fgetc_nolock @475 + _getch @476 + _getch_nolock @477 + _getche @478 + _getche_nolock @479 + _getcwd=MSVCRT__getcwd @480 + _getdcwd=MSVCRT__getdcwd @481 + _getdcwd_nolock@0 @482 PRIVATE + _getdiskfree=MSVCRT__getdiskfree @483 + _getdllprocaddr @484 + _getdrive=MSVCRT__getdrive @485 + _getdrives=kernel32.GetLogicalDrives @486 + _getmaxstdio=MSVCRT__getmaxstdio @487 + _getmbcp @488 + _getpid @489 + _getptd @490 + _getsystime@4 @491 PRIVATE + _getw=MSVCRT__getw @492 + _getwc_nolock=MSVCRT__fgetwc_nolock @493 + _getwch @494 + _getwch_nolock @495 + _getwche @496 + _getwche_nolock @497 + _getws=MSVCRT__getws @498 + _getws_s@0 @499 PRIVATE + _global_unwind2 @500 + _gmtime32=MSVCRT__gmtime32 @501 + _gmtime32_s=MSVCRT__gmtime32_s @502 + _gmtime64=MSVCRT__gmtime64 @503 + _gmtime64_s=MSVCRT__gmtime64_s @504 + _heapadd @505 + _heapchk @506 + _heapmin @507 + _heapset @508 + _heapused@8 @509 PRIVATE + _heapwalk @510 + _hypot @511 + _hypotf=MSVCRT__hypotf @512 + _i64toa=ntdll._i64toa @513 + _i64toa_s=MSVCRT__i64toa_s @514 + _i64tow=ntdll._i64tow @515 + _i64tow_s=MSVCRT__i64tow_s @516 + _initptd@0 @517 PRIVATE + _initterm @518 + _initterm_e @519 + _inp@4 @520 PRIVATE + _inpd@4 @521 PRIVATE + _inpw@4 @522 PRIVATE + _invalid_parameter=MSVCRT__invalid_parameter @523 + _invalid_parameter_noinfo @524 + _invoke_watson@0 @525 PRIVATE + _iob=MSVCRT__iob @526 DATA + _isalnum_l=MSVCRT__isalnum_l @527 + _isalpha_l=MSVCRT__isalpha_l @528 + _isatty=MSVCRT__isatty @529 + _iscntrl_l=MSVCRT__iscntrl_l @530 + _isctype=MSVCRT__isctype @531 + _isctype_l=MSVCRT__isctype_l @532 + _isdigit_l=MSVCRT__isdigit_l @533 + _isgraph_l=MSVCRT__isgraph_l @534 + _isleadbyte_l=MSVCRT__isleadbyte_l @535 + _islower_l=MSVCRT__islower_l @536 + _ismbbalnum@4 @537 PRIVATE + _ismbbalnum_l@0 @538 PRIVATE + _ismbbalpha@4 @539 PRIVATE + _ismbbalpha_l@0 @540 PRIVATE + _ismbbgraph@4 @541 PRIVATE + _ismbbgraph_l@0 @542 PRIVATE + _ismbbkalnum@4 @543 PRIVATE + _ismbbkalnum_l@0 @544 PRIVATE + _ismbbkana @545 + _ismbbkana_l@0 @546 PRIVATE + _ismbbkprint@4 @547 PRIVATE + _ismbbkprint_l@0 @548 PRIVATE + _ismbbkpunct@4 @549 PRIVATE + _ismbbkpunct_l@0 @550 PRIVATE + _ismbblead @551 + _ismbblead_l @552 + _ismbbprint@4 @553 PRIVATE + _ismbbprint_l@0 @554 PRIVATE + _ismbbpunct@4 @555 PRIVATE + _ismbbpunct_l@0 @556 PRIVATE + _ismbbtrail @557 + _ismbbtrail_l @558 + _ismbcalnum @559 + _ismbcalnum_l@0 @560 PRIVATE + _ismbcalpha @561 + _ismbcalpha_l@0 @562 PRIVATE + _ismbcdigit @563 + _ismbcdigit_l@0 @564 PRIVATE + _ismbcgraph @565 + _ismbcgraph_l@0 @566 PRIVATE + _ismbchira @567 + _ismbchira_l@0 @568 PRIVATE + _ismbckata @569 + _ismbckata_l@0 @570 PRIVATE + _ismbcl0 @571 + _ismbcl0_l @572 + _ismbcl1 @573 + _ismbcl1_l @574 + _ismbcl2 @575 + _ismbcl2_l @576 + _ismbclegal @577 + _ismbclegal_l @578 + _ismbclower @579 + _ismbclower_l@0 @580 PRIVATE + _ismbcprint @581 + _ismbcprint_l@0 @582 PRIVATE + _ismbcpunct @583 + _ismbcpunct_l@0 @584 PRIVATE + _ismbcspace @585 + _ismbcspace_l@0 @586 PRIVATE + _ismbcsymbol @587 + _ismbcsymbol_l@0 @588 PRIVATE + _ismbcupper @589 + _ismbcupper_l@0 @590 PRIVATE + _ismbslead @591 + _ismbslead_l@0 @592 PRIVATE + _ismbstrail @593 + _ismbstrail_l@0 @594 PRIVATE + _isnan=MSVCRT__isnan @595 + _isprint_l=MSVCRT__isprint_l @596 + _ispunct_l@0 @597 PRIVATE + _isspace_l=MSVCRT__isspace_l @598 + _isupper_l=MSVCRT__isupper_l @599 + _iswalnum_l=MSVCRT__iswalnum_l @600 + _iswalpha_l=MSVCRT__iswalpha_l @601 + _iswcntrl_l=MSVCRT__iswcntrl_l @602 + _iswcsym_l@0 @603 PRIVATE + _iswcsymf_l@0 @604 PRIVATE + _iswctype_l=MSVCRT__iswctype_l @605 + _iswdigit_l=MSVCRT__iswdigit_l @606 + _iswgraph_l=MSVCRT__iswgraph_l @607 + _iswlower_l=MSVCRT__iswlower_l @608 + _iswprint_l=MSVCRT__iswprint_l @609 + _iswpunct_l=MSVCRT__iswpunct_l @610 + _iswspace_l=MSVCRT__iswspace_l @611 + _iswupper_l=MSVCRT__iswupper_l @612 + _iswxdigit_l=MSVCRT__iswxdigit_l @613 + _isxdigit_l=MSVCRT__isxdigit_l @614 + _itoa=MSVCRT__itoa @615 + _itoa_s=MSVCRT__itoa_s @616 + _itow=ntdll._itow @617 + _itow_s=MSVCRT__itow_s @618 + _j0=MSVCRT__j0 @619 + _j1=MSVCRT__j1 @620 + _jn=MSVCRT__jn @621 + _kbhit @622 + _lfind @623 + _lfind_s @624 + _loaddll @625 + _local_unwind2 @626 + _local_unwind4 @627 + _localtime32=MSVCRT__localtime32 @628 + _localtime32_s @629 + _localtime64=MSVCRT__localtime64 @630 + _localtime64_s @631 + _lock @632 + _lock_file=MSVCRT__lock_file @633 + _locking=MSVCRT__locking @634 + _logb=MSVCRT__logb @635 + _longjmpex=MSVCRT_longjmp @636 + _lrotl=MSVCRT__lrotl @637 + _lrotr=MSVCRT__lrotr @638 + _lsearch @639 + _lsearch_s@0 @640 PRIVATE + _lseek=MSVCRT__lseek @641 + _lseeki64=MSVCRT__lseeki64 @642 + _ltoa=ntdll._ltoa @643 + _ltoa_s=MSVCRT__ltoa_s @644 + _ltow=ntdll._ltow @645 + _ltow_s=MSVCRT__ltow_s @646 + _makepath=MSVCRT__makepath @647 + _makepath_s=MSVCRT__makepath_s @648 + _malloc_crt=MSVCRT_malloc @649 + _mbbtombc @650 + _mbbtombc_l@0 @651 PRIVATE + _mbbtype @652 + _mbbtype_l@0 @653 PRIVATE + _mbccpy @654 + _mbccpy_l @655 + _mbccpy_s @656 + _mbccpy_s_l @657 + _mbcjistojms @658 + _mbcjistojms_l@0 @659 PRIVATE + _mbcjmstojis @660 + _mbcjmstojis_l@0 @661 PRIVATE + _mbclen @662 + _mbclen_l@0 @663 PRIVATE + _mbctohira @664 + _mbctohira_l@0 @665 PRIVATE + _mbctokata @666 + _mbctokata_l@0 @667 PRIVATE + _mbctolower @668 + _mbctolower_l@0 @669 PRIVATE + _mbctombb @670 + _mbctombb_l@0 @671 PRIVATE + _mbctoupper @672 + _mbctoupper_l@0 @673 PRIVATE + _mbctype=MSVCRT_mbctype @674 DATA + _mblen_l@0 @675 PRIVATE + _mbsbtype @676 + _mbsbtype_l@0 @677 PRIVATE + _mbscat_s @678 + _mbscat_s_l @679 + _mbschr @680 + _mbschr_l@0 @681 PRIVATE + _mbscmp @682 + _mbscmp_l@0 @683 PRIVATE + _mbscoll @684 + _mbscoll_l @685 + _mbscpy_s @686 + _mbscpy_s_l @687 + _mbscspn @688 + _mbscspn_l@0 @689 PRIVATE + _mbsdec @690 + _mbsdec_l@0 @691 PRIVATE + _mbsicmp @692 + _mbsicmp_l@0 @693 PRIVATE + _mbsicoll @694 + _mbsicoll_l @695 + _mbsinc @696 + _mbsinc_l@0 @697 PRIVATE + _mbslen @698 + _mbslen_l @699 + _mbslwr @700 + _mbslwr_l@0 @701 PRIVATE + _mbslwr_s @702 + _mbslwr_s_l@0 @703 PRIVATE + _mbsnbcat @704 + _mbsnbcat_l@0 @705 PRIVATE + _mbsnbcat_s @706 + _mbsnbcat_s_l@0 @707 PRIVATE + _mbsnbcmp @708 + _mbsnbcmp_l@0 @709 PRIVATE + _mbsnbcnt @710 + _mbsnbcnt_l@0 @711 PRIVATE + _mbsnbcoll @712 + _mbsnbcoll_l @713 + _mbsnbcpy @714 + _mbsnbcpy_l@0 @715 PRIVATE + _mbsnbcpy_s @716 + _mbsnbcpy_s_l @717 + _mbsnbicmp @718 + _mbsnbicmp_l@0 @719 PRIVATE + _mbsnbicoll @720 + _mbsnbicoll_l @721 + _mbsnbset @722 + _mbsnbset_l@0 @723 PRIVATE + _mbsnbset_s@0 @724 PRIVATE + _mbsnbset_s_l@0 @725 PRIVATE + _mbsncat @726 + _mbsncat_l@0 @727 PRIVATE + _mbsncat_s@0 @728 PRIVATE + _mbsncat_s_l@0 @729 PRIVATE + _mbsnccnt @730 + _mbsnccnt_l@0 @731 PRIVATE + _mbsncmp @732 + _mbsncmp_l@0 @733 PRIVATE + _mbsncoll@12 @734 PRIVATE + _mbsncoll_l@0 @735 PRIVATE + _mbsncpy @736 + _mbsncpy_l@0 @737 PRIVATE + _mbsncpy_s@0 @738 PRIVATE + _mbsncpy_s_l@0 @739 PRIVATE + _mbsnextc @740 + _mbsnextc_l@0 @741 PRIVATE + _mbsnicmp @742 + _mbsnicmp_l@0 @743 PRIVATE + _mbsnicoll@12 @744 PRIVATE + _mbsnicoll_l@0 @745 PRIVATE + _mbsninc @746 + _mbsninc_l@0 @747 PRIVATE + _mbsnlen @748 + _mbsnlen_l @749 + _mbsnset @750 + _mbsnset_l@0 @751 PRIVATE + _mbsnset_s@0 @752 PRIVATE + _mbsnset_s_l@0 @753 PRIVATE + _mbspbrk @754 + _mbspbrk_l@0 @755 PRIVATE + _mbsrchr @756 + _mbsrchr_l@0 @757 PRIVATE + _mbsrev @758 + _mbsrev_l@0 @759 PRIVATE + _mbsset @760 + _mbsset_l@0 @761 PRIVATE + _mbsset_s@0 @762 PRIVATE + _mbsset_s_l@0 @763 PRIVATE + _mbsspn @764 + _mbsspn_l@0 @765 PRIVATE + _mbsspnp @766 + _mbsspnp_l@0 @767 PRIVATE + _mbsstr @768 + _mbsstr_l@0 @769 PRIVATE + _mbstok @770 + _mbstok_l @771 + _mbstok_s @772 + _mbstok_s_l @773 + _mbstowcs_l=MSVCRT__mbstowcs_l @774 + _mbstowcs_s_l=MSVCRT__mbstowcs_s_l @775 + _mbstrlen @776 + _mbstrlen_l @777 + _mbstrnlen@0 @778 PRIVATE + _mbstrnlen_l@0 @779 PRIVATE + _mbsupr @780 + _mbsupr_l@0 @781 PRIVATE + _mbsupr_s @782 + _mbsupr_s_l@0 @783 PRIVATE + _mbtowc_l=MSVCRT_mbtowc_l @784 + _memccpy=ntdll._memccpy @785 + _memicmp=MSVCRT__memicmp @786 + _memicmp_l=MSVCRT__memicmp_l @787 + _mkdir=MSVCRT__mkdir @788 + _mkgmtime32=MSVCRT__mkgmtime32 @789 + _mkgmtime64=MSVCRT__mkgmtime64 @790 + _mktemp=MSVCRT__mktemp @791 + _mktemp_s=MSVCRT__mktemp_s @792 + _mktime32=MSVCRT__mktime32 @793 + _mktime64=MSVCRT__mktime64 @794 + _msize @795 + _nextafter=MSVCRT__nextafter @796 + _onexit=MSVCRT__onexit @797 + _open=MSVCRT__open @798 + _open_osfhandle=MSVCRT__open_osfhandle @799 + _outp@8 @800 PRIVATE + _outpd@8 @801 PRIVATE + _outpw@8 @802 PRIVATE + _pclose=MSVCRT__pclose @803 + _pctype=MSVCRT__pctype @804 DATA + _pgmptr=MSVCRT__pgmptr @805 DATA + _pipe=MSVCRT__pipe @806 + _popen=MSVCRT__popen @807 + _printf_l@0 @808 PRIVATE + _printf_p@0 @809 PRIVATE + _printf_p_l@0 @810 PRIVATE + _printf_s_l@0 @811 PRIVATE + _purecall @812 + _putc_nolock=MSVCRT__fputc_nolock @813 + _putch @814 + _putch_nolock @815 + _putenv @816 + _putenv_s @817 + _putw=MSVCRT__putw @818 + _putwc_nolock=MSVCRT__fputwc_nolock @819 + _putwch @820 + _putwch_nolock @821 + _putws=MSVCRT__putws @822 + _read=MSVCRT__read @823 + _realloc_crt=MSVCRT_realloc @824 + _recalloc @825 + _recalloc_crt@0 @826 PRIVATE + _resetstkoflw=MSVCRT__resetstkoflw @827 + _rmdir=MSVCRT__rmdir @828 + _rmtmp=MSVCRT__rmtmp @829 + _rotl @830 + _rotl64 @831 + _rotr @832 + _rotr64 @833 + _safe_fdiv @834 + _safe_fdivr @835 + _safe_fprem @836 + _safe_fprem1 @837 + _scalb=MSVCRT__scalb @838 + _scanf_l=MSVCRT__scanf_l @839 + _scanf_s_l=MSVCRT__scanf_s_l @840 + _scprintf=MSVCRT__scprintf @841 + _scprintf_l@0 @842 PRIVATE + _scprintf_p@0 @843 PRIVATE + _scprintf_p_l@0 @844 PRIVATE + _scwprintf=MSVCRT__scwprintf @845 + _scwprintf_l@0 @846 PRIVATE + _scwprintf_p@0 @847 PRIVATE + _scwprintf_p_l@0 @848 PRIVATE + _searchenv=MSVCRT__searchenv @849 + _searchenv_s=MSVCRT__searchenv_s @850 + _seh_longjmp_unwind4@4 @851 + _seh_longjmp_unwind@4 @852 + _set_SSE2_enable=MSVCRT__set_SSE2_enable @853 + _set_abort_behavior=MSVCRT__set_abort_behavior @854 + _set_amblksiz@0 @855 PRIVATE + _set_controlfp @856 + _set_doserrno @857 + _set_errno @858 + _set_error_mode @859 + _set_fmode=MSVCRT__set_fmode @860 + _set_invalid_parameter_handler @861 + _set_malloc_crt_max_wait@0 @862 PRIVATE + _set_output_format=MSVCRT__set_output_format @863 + _set_printf_count_output=MSVCRT__set_printf_count_output @864 + _set_purecall_handler @865 + _set_sbh_threshold @866 + _seterrormode @867 + _setjmp=MSVCRT__setjmp @868 + _setjmp3=MSVCRT__setjmp3 @869 + _setmaxstdio=MSVCRT__setmaxstdio @870 + _setmbcp @871 + _setmode=MSVCRT__setmode @872 + _setsystime@8 @873 PRIVATE + _sleep=MSVCRT__sleep @874 + _snprintf=MSVCRT__snprintf @875 + _snprintf_c@0 @876 PRIVATE + _snprintf_c_l@0 @877 PRIVATE + _snprintf_l=MSVCRT__snprintf_l @878 + _snprintf_s=MSVCRT__snprintf_s @879 + _snprintf_s_l@0 @880 PRIVATE + _snscanf=MSVCRT__snscanf @881 + _snscanf_l=MSVCRT__snscanf_l @882 + _snscanf_s=MSVCRT__snscanf_s @883 + _snscanf_s_l=MSVCRT__snscanf_s_l @884 + _snwprintf=MSVCRT__snwprintf @885 + _snwprintf_l=MSVCRT__snwprintf_l @886 + _snwprintf_s=MSVCRT__snwprintf_s @887 + _snwprintf_s_l=MSVCRT__snwprintf_s_l @888 + _snwscanf=MSVCRT__snwscanf @889 + _snwscanf_l=MSVCRT__snwscanf_l @890 + _snwscanf_s=MSVCRT__snwscanf_s @891 + _snwscanf_s_l=MSVCRT__snwscanf_s_l @892 + _sopen=MSVCRT__sopen @893 + _sopen_s=MSVCRT__sopen_s @894 + _spawnl=MSVCRT__spawnl @895 + _spawnle=MSVCRT__spawnle @896 + _spawnlp=MSVCRT__spawnlp @897 + _spawnlpe=MSVCRT__spawnlpe @898 + _spawnv=MSVCRT__spawnv @899 + _spawnve=MSVCRT__spawnve @900 + _spawnvp=MSVCRT__spawnvp @901 + _spawnvpe=MSVCRT__spawnvpe @902 + _splitpath=MSVCRT__splitpath @903 + _splitpath_s=MSVCRT__splitpath_s @904 + _sprintf_l=MSVCRT_sprintf_l @905 + _sprintf_p=MSVCRT__sprintf_p @906 + _sprintf_p_l=MSVCRT_sprintf_p_l @907 + _sprintf_s_l=MSVCRT_sprintf_s_l @908 + _sscanf_l=MSVCRT__sscanf_l @909 + _sscanf_s_l=MSVCRT__sscanf_s_l @910 + _stat32=MSVCRT__stat32 @911 + _stat32i64=MSVCRT__stat32i64 @912 + _stat64=MSVCRT_stat64 @913 + _stat64i32=MSVCRT__stat64i32 @914 + _statusfp @915 + _statusfp2 @916 + _strcoll_l=MSVCRT_strcoll_l @917 + _strdate=MSVCRT__strdate @918 + _strdate_s @919 + _strdup=MSVCRT__strdup @920 + _strerror=MSVCRT__strerror @921 + _strerror_s@0 @922 PRIVATE + _strftime_l=MSVCRT__strftime_l @923 + _stricmp=MSVCRT__stricmp @924 + _stricmp_l=MSVCRT__stricmp_l @925 + _stricoll=MSVCRT__stricoll @926 + _stricoll_l=MSVCRT__stricoll_l @927 + _strlwr=MSVCRT__strlwr @928 + _strlwr_l @929 + _strlwr_s=MSVCRT__strlwr_s @930 + _strlwr_s_l=MSVCRT__strlwr_s_l @931 + _strncoll=MSVCRT__strncoll @932 + _strncoll_l=MSVCRT__strncoll_l @933 + _strnicmp=MSVCRT__strnicmp @934 + _strnicmp_l=MSVCRT__strnicmp_l @935 + _strnicoll=MSVCRT__strnicoll @936 + _strnicoll_l=MSVCRT__strnicoll_l @937 + _strnset=MSVCRT__strnset @938 + _strnset_s=MSVCRT__strnset_s @939 + _strrev=MSVCRT__strrev @940 + _strset @941 + _strset_s@0 @942 PRIVATE + _strtime=MSVCRT__strtime @943 + _strtime_s @944 + _strtod_l=MSVCRT_strtod_l @945 + _strtoi64=MSVCRT_strtoi64 @946 + _strtoi64_l=MSVCRT_strtoi64_l @947 + _strtol_l=MSVCRT__strtol_l @948 + _strtoui64=MSVCRT_strtoui64 @949 + _strtoui64_l=MSVCRT_strtoui64_l @950 + _strtoul_l=MSVCRT_strtoul_l @951 + _strupr=MSVCRT__strupr @952 + _strupr_l=MSVCRT__strupr_l @953 + _strupr_s=MSVCRT__strupr_s @954 + _strupr_s_l=MSVCRT__strupr_s_l @955 + _strxfrm_l=MSVCRT__strxfrm_l @956 + _swab=MSVCRT__swab @957 + _swprintf=MSVCRT_swprintf @958 + _swprintf_c@0 @959 PRIVATE + _swprintf_c_l@0 @960 PRIVATE + _swprintf_p@0 @961 PRIVATE + _swprintf_p_l=MSVCRT_swprintf_p_l @962 + _swprintf_s_l=MSVCRT__swprintf_s_l @963 + _swscanf_l=MSVCRT__swscanf_l @964 + _swscanf_s_l=MSVCRT__swscanf_s_l @965 + _sys_errlist=MSVCRT__sys_errlist @966 DATA + _sys_nerr=MSVCRT__sys_nerr @967 DATA + _tell=MSVCRT__tell @968 + _telli64 @969 + _tempnam=MSVCRT__tempnam @970 + _time32=MSVCRT__time32 @971 + _time64=MSVCRT__time64 @972 + _timezone=MSVCRT___timezone @973 DATA + _tolower=MSVCRT__tolower @974 + _tolower_l=MSVCRT__tolower_l @975 + _toupper=MSVCRT__toupper @976 + _toupper_l=MSVCRT__toupper_l @977 + _towlower_l=MSVCRT__towlower_l @978 + _towupper_l=MSVCRT__towupper_l @979 + _tzname=MSVCRT__tzname @980 DATA + _tzset=MSVCRT__tzset @981 + _ui64toa=ntdll._ui64toa @982 + _ui64toa_s=MSVCRT__ui64toa_s @983 + _ui64tow=ntdll._ui64tow @984 + _ui64tow_s=MSVCRT__ui64tow_s @985 + _ultoa=ntdll._ultoa @986 + _ultoa_s=MSVCRT__ultoa_s @987 + _ultow=ntdll._ultow @988 + _ultow_s=MSVCRT__ultow_s @989 + _umask=MSVCRT__umask @990 + _umask_s@0 @991 PRIVATE + _ungetc_nolock=MSVCRT__ungetc_nolock @992 + _ungetch @993 + _ungetch_nolock @994 + _ungetwc_nolock=MSVCRT__ungetwc_nolock @995 + _ungetwch @996 + _ungetwch_nolock @997 + _unlink=MSVCRT__unlink @998 + _unloaddll @999 + _unlock @1000 + _unlock_file=MSVCRT__unlock_file @1001 + _utime32 @1002 + _utime64 @1003 + _vcprintf @1004 + _vcprintf_l@0 @1005 PRIVATE + _vcprintf_p@0 @1006 PRIVATE + _vcprintf_p_l@0 @1007 PRIVATE + _vcprintf_s@0 @1008 PRIVATE + _vcprintf_s_l@0 @1009 PRIVATE + _vcwprintf @1010 + _vcwprintf_l@0 @1011 PRIVATE + _vcwprintf_p@0 @1012 PRIVATE + _vcwprintf_p_l@0 @1013 PRIVATE + _vcwprintf_s@0 @1014 PRIVATE + _vcwprintf_s_l@0 @1015 PRIVATE + _vfprintf_l=MSVCRT__vfprintf_l @1016 + _vfprintf_p=MSVCRT__vfprintf_p @1017 + _vfprintf_p_l=MSVCRT__vfprintf_p_l @1018 + _vfprintf_s_l=MSVCRT__vfprintf_s_l @1019 + _vfwprintf_l=MSVCRT__vfwprintf_l @1020 + _vfwprintf_p=MSVCRT__vfwprintf_p @1021 + _vfwprintf_p_l=MSVCRT__vfwprintf_p_l @1022 + _vfwprintf_s_l=MSVCRT__vfwprintf_s_l @1023 + _vprintf_l@0 @1024 PRIVATE + _vprintf_p@0 @1025 PRIVATE + _vprintf_p_l@0 @1026 PRIVATE + _vprintf_s_l@0 @1027 PRIVATE + _vscprintf=MSVCRT__vscprintf @1028 + _vscprintf_l=MSVCRT__vscprintf_l @1029 + _vscprintf_p=MSVCRT__vscprintf_p @1030 + _vscprintf_p_l=MSVCRT__vscprintf_p_l @1031 + _vscwprintf=MSVCRT__vscwprintf @1032 + _vscwprintf_l=MSVCRT__vscwprintf_l @1033 + _vscwprintf_p=MSVCRT__vscwprintf_p @1034 + _vscwprintf_p_l=MSVCRT__vscwprintf_p_l @1035 + _vsnprintf=MSVCRT_vsnprintf @1036 + _vsnprintf_c=MSVCRT_vsnprintf @1037 + _vsnprintf_c_l=MSVCRT_vsnprintf_l @1038 + _vsnprintf_l=MSVCRT_vsnprintf_l @1039 + _vsnprintf_s=MSVCRT_vsnprintf_s @1040 + _vsnprintf_s_l=MSVCRT_vsnprintf_s_l @1041 + _vsnwprintf=MSVCRT_vsnwprintf @1042 + _vsnwprintf_l=MSVCRT_vsnwprintf_l @1043 + _vsnwprintf_s=MSVCRT_vsnwprintf_s @1044 + _vsnwprintf_s_l=MSVCRT_vsnwprintf_s_l @1045 + _vsprintf_l=MSVCRT_vsprintf_l @1046 + _vsprintf_p=MSVCRT_vsprintf_p @1047 + _vsprintf_p_l=MSVCRT_vsprintf_p_l @1048 + _vsprintf_s_l=MSVCRT_vsprintf_s_l @1049 + _vswprintf=MSVCRT_vswprintf @1050 + _vswprintf_c=MSVCRT_vsnwprintf @1051 + _vswprintf_c_l=MSVCRT_vsnwprintf_l @1052 + _vswprintf_l=MSVCRT_vswprintf_l @1053 + _vswprintf_p=MSVCRT__vswprintf_p @1054 + _vswprintf_p_l=MSVCRT_vswprintf_p_l @1055 + _vswprintf_s_l=MSVCRT_vswprintf_s_l @1056 + _vwprintf_l@0 @1057 PRIVATE + _vwprintf_p@0 @1058 PRIVATE + _vwprintf_p_l@0 @1059 PRIVATE + _vwprintf_s_l@0 @1060 PRIVATE + _waccess=MSVCRT__waccess @1061 + _waccess_s=MSVCRT__waccess_s @1062 + _wasctime=MSVCRT__wasctime @1063 + _wasctime_s=MSVCRT__wasctime_s @1064 + _wassert=MSVCRT__wassert @1065 + _wchdir=MSVCRT__wchdir @1066 + _wchmod=MSVCRT__wchmod @1067 + _wcmdln=MSVCRT__wcmdln @1068 DATA + _wcreat=MSVCRT__wcreat @1069 + _wcscoll_l=MSVCRT__wcscoll_l @1070 + _wcsdup=MSVCRT__wcsdup @1071 + _wcserror=MSVCRT__wcserror @1072 + _wcserror_s=MSVCRT__wcserror_s @1073 + _wcsftime_l=MSVCRT__wcsftime_l @1074 + _wcsicmp=MSVCRT__wcsicmp @1075 + _wcsicmp_l=MSVCRT__wcsicmp_l @1076 + _wcsicoll=MSVCRT__wcsicoll @1077 + _wcsicoll_l=MSVCRT__wcsicoll_l @1078 + _wcslwr=MSVCRT__wcslwr @1079 + _wcslwr_l=MSVCRT__wcslwr_l @1080 + _wcslwr_s=MSVCRT__wcslwr_s @1081 + _wcslwr_s_l=MSVCRT__wcslwr_s_l @1082 + _wcsncoll=MSVCRT__wcsncoll @1083 + _wcsncoll_l=MSVCRT__wcsncoll_l @1084 + _wcsnicmp=MSVCRT__wcsnicmp @1085 + _wcsnicmp_l=MSVCRT__wcsnicmp_l @1086 + _wcsnicoll=MSVCRT__wcsnicoll @1087 + _wcsnicoll_l=MSVCRT__wcsnicoll_l @1088 + _wcsnset=MSVCRT__wcsnset @1089 + _wcsnset_s=MSVCRT__wcsnset_s @1090 + _wcsrev=MSVCRT__wcsrev @1091 + _wcsset=MSVCRT__wcsset @1092 + _wcsset_s=MSVCRT__wcsset_s @1093 + _wcstod_l=MSVCRT__wcstod_l @1094 + _wcstoi64=MSVCRT__wcstoi64 @1095 + _wcstoi64_l=MSVCRT__wcstoi64_l @1096 + _wcstol_l=MSVCRT__wcstol_l @1097 + _wcstombs_l=MSVCRT__wcstombs_l @1098 + _wcstombs_s_l=MSVCRT__wcstombs_s_l @1099 + _wcstoui64=MSVCRT__wcstoui64 @1100 + _wcstoui64_l=MSVCRT__wcstoui64_l @1101 + _wcstoul_l=MSVCRT__wcstoul_l @1102 + _wcsupr=MSVCRT__wcsupr @1103 + _wcsupr_l=MSVCRT__wcsupr_l @1104 + _wcsupr_s=MSVCRT__wcsupr_s @1105 + _wcsupr_s_l=MSVCRT__wcsupr_s_l @1106 + _wcsxfrm_l=MSVCRT__wcsxfrm_l @1107 + _wctime32=MSVCRT__wctime32 @1108 + _wctime32_s=MSVCRT__wctime32_s @1109 + _wctime64=MSVCRT__wctime64 @1110 + _wctime64_s=MSVCRT__wctime64_s @1111 + _wctomb_l=MSVCRT__wctomb_l @1112 + _wctomb_s_l=MSVCRT__wctomb_s_l @1113 + _wdupenv_s @1114 + _wenviron=MSVCRT__wenviron @1115 DATA + _wexecl @1116 + _wexecle @1117 + _wexeclp @1118 + _wexeclpe @1119 + _wexecv @1120 + _wexecve @1121 + _wexecvp @1122 + _wexecvpe @1123 + _wfdopen=MSVCRT__wfdopen @1124 + _wfindfirst32=MSVCRT__wfindfirst32 @1125 + _wfindfirst32i64@0 @1126 PRIVATE + _wfindfirst64=MSVCRT__wfindfirst64 @1127 + _wfindfirst64i32=MSVCRT__wfindfirst64i32 @1128 + _wfindnext32=MSVCRT__wfindnext32 @1129 + _wfindnext32i64@0 @1130 PRIVATE + _wfindnext64=MSVCRT__wfindnext64 @1131 + _wfindnext64i32=MSVCRT__wfindnext64i32 @1132 + _wfopen=MSVCRT__wfopen @1133 + _wfopen_s=MSVCRT__wfopen_s @1134 + _wfreopen=MSVCRT__wfreopen @1135 + _wfreopen_s=MSVCRT__wfreopen_s @1136 + _wfsopen=MSVCRT__wfsopen @1137 + _wfullpath=MSVCRT__wfullpath @1138 + _wgetcwd=MSVCRT__wgetcwd @1139 + _wgetdcwd=MSVCRT__wgetdcwd @1140 + _wgetdcwd_nolock@0 @1141 PRIVATE + _wgetenv=MSVCRT__wgetenv @1142 + _wgetenv_s @1143 + _wmakepath=MSVCRT__wmakepath @1144 + _wmakepath_s=MSVCRT__wmakepath_s @1145 + _wmkdir=MSVCRT__wmkdir @1146 + _wmktemp=MSVCRT__wmktemp @1147 + _wmktemp_s=MSVCRT__wmktemp_s @1148 + _wopen=MSVCRT__wopen @1149 + _wperror=MSVCRT__wperror @1150 + _wpgmptr=MSVCRT__wpgmptr @1151 DATA + _wpopen=MSVCRT__wpopen @1152 + _wprintf_l@0 @1153 PRIVATE + _wprintf_p@0 @1154 PRIVATE + _wprintf_p_l@0 @1155 PRIVATE + _wprintf_s_l@0 @1156 PRIVATE + _wputenv @1157 + _wputenv_s @1158 + _wremove=MSVCRT__wremove @1159 + _wrename=MSVCRT__wrename @1160 + _write=MSVCRT__write @1161 + _wrmdir=MSVCRT__wrmdir @1162 + _wscanf_l=MSVCRT__wscanf_l @1163 + _wscanf_s_l=MSVCRT__wscanf_s_l @1164 + _wsearchenv=MSVCRT__wsearchenv @1165 + _wsearchenv_s=MSVCRT__wsearchenv_s @1166 + _wsetlocale=MSVCRT__wsetlocale @1167 + _wsopen=MSVCRT__wsopen @1168 + _wsopen_s=MSVCRT__wsopen_s @1169 + _wspawnl=MSVCRT__wspawnl @1170 + _wspawnle=MSVCRT__wspawnle @1171 + _wspawnlp=MSVCRT__wspawnlp @1172 + _wspawnlpe=MSVCRT__wspawnlpe @1173 + _wspawnv=MSVCRT__wspawnv @1174 + _wspawnve=MSVCRT__wspawnve @1175 + _wspawnvp=MSVCRT__wspawnvp @1176 + _wspawnvpe=MSVCRT__wspawnvpe @1177 + _wsplitpath=MSVCRT__wsplitpath @1178 + _wsplitpath_s=MSVCRT__wsplitpath_s @1179 + _wstat32=MSVCRT__wstat32 @1180 + _wstat32i64=MSVCRT__wstat32i64 @1181 + _wstat64=MSVCRT__wstat64 @1182 + _wstat64i32=MSVCRT__wstat64i32 @1183 + _wstrdate=MSVCRT__wstrdate @1184 + _wstrdate_s @1185 + _wstrtime=MSVCRT__wstrtime @1186 + _wstrtime_s @1187 + _wsystem @1188 + _wtempnam=MSVCRT__wtempnam @1189 + _wtmpnam=MSVCRT__wtmpnam @1190 + _wtmpnam_s=MSVCRT__wtmpnam_s @1191 + _wtof=MSVCRT__wtof @1192 + _wtof_l=MSVCRT__wtof_l @1193 + _wtoi=MSVCRT__wtoi @1194 + _wtoi64=MSVCRT__wtoi64 @1195 + _wtoi64_l=MSVCRT__wtoi64_l @1196 + _wtoi_l=MSVCRT__wtoi_l @1197 + _wtol=MSVCRT__wtol @1198 + _wtol_l=MSVCRT__wtol_l @1199 + _wunlink=MSVCRT__wunlink @1200 + _wutime32 @1201 + _wutime64 @1202 + _y0=MSVCRT__y0 @1203 + _y1=MSVCRT__y1 @1204 + _yn=MSVCRT__yn @1205 + abort=MSVCRT_abort @1206 + abs=MSVCRT_abs @1207 + acos=MSVCRT_acos @1208 + asctime=MSVCRT_asctime @1209 + asctime_s=MSVCRT_asctime_s @1210 + asin=MSVCRT_asin @1211 + atan=MSVCRT_atan @1212 + atan2=MSVCRT_atan2 @1213 + atexit=MSVCRT_atexit @1214 PRIVATE + atof=MSVCRT_atof @1215 + atoi=MSVCRT_atoi @1216 + atol=MSVCRT_atol @1217 + bsearch=MSVCRT_bsearch @1218 + bsearch_s=MSVCRT_bsearch_s @1219 + btowc=MSVCRT_btowc @1220 + calloc=MSVCRT_calloc @1221 + ceil=MSVCRT_ceil @1222 + clearerr=MSVCRT_clearerr @1223 + clearerr_s=MSVCRT_clearerr_s @1224 + clock=MSVCRT_clock @1225 + cos=MSVCRT_cos @1226 + cosh=MSVCRT_cosh @1227 + div=MSVCRT_div @1228 + exit=MSVCRT_exit @1229 + exp=MSVCRT_exp @1230 + fabs=MSVCRT_fabs @1231 + fclose=MSVCRT_fclose @1232 + feof=MSVCRT_feof @1233 + ferror=MSVCRT_ferror @1234 + fflush=MSVCRT_fflush @1235 + fgetc=MSVCRT_fgetc @1236 + fgetpos=MSVCRT_fgetpos @1237 + fgets=MSVCRT_fgets @1238 + fgetwc=MSVCRT_fgetwc @1239 + fgetws=MSVCRT_fgetws @1240 + floor=MSVCRT_floor @1241 + fmod=MSVCRT_fmod @1242 + fopen=MSVCRT_fopen @1243 + fopen_s=MSVCRT_fopen_s @1244 + fprintf=MSVCRT_fprintf @1245 + fprintf_s=MSVCRT_fprintf_s @1246 + fputc=MSVCRT_fputc @1247 + fputs=MSVCRT_fputs @1248 + fputwc=MSVCRT_fputwc @1249 + fputws=MSVCRT_fputws @1250 + fread=MSVCRT_fread @1251 + fread_s=MSVCRT_fread_s @1252 + free=MSVCRT_free @1253 + freopen=MSVCRT_freopen @1254 + freopen_s=MSVCRT_freopen_s @1255 + frexp=MSVCRT_frexp @1256 + fscanf=MSVCRT_fscanf @1257 + fscanf_s=MSVCRT_fscanf_s @1258 + fseek=MSVCRT_fseek @1259 + fsetpos=MSVCRT_fsetpos @1260 + ftell=MSVCRT_ftell @1261 + fwprintf=MSVCRT_fwprintf @1262 + fwprintf_s=MSVCRT_fwprintf_s @1263 + fwrite=MSVCRT_fwrite @1264 + fwscanf=MSVCRT_fwscanf @1265 + fwscanf_s=MSVCRT_fwscanf_s @1266 + getc=MSVCRT_getc @1267 + getchar=MSVCRT_getchar @1268 + getenv=MSVCRT_getenv @1269 + getenv_s @1270 + gets=MSVCRT_gets @1271 + gets_s=MSVCRT_gets_s @1272 + getwc=MSVCRT_getwc @1273 + getwchar=MSVCRT_getwchar @1274 + is_wctype=ntdll.iswctype @1275 + isalnum=MSVCRT_isalnum @1276 + isalpha=MSVCRT_isalpha @1277 + iscntrl=MSVCRT_iscntrl @1278 + isdigit=MSVCRT_isdigit @1279 + isgraph=MSVCRT_isgraph @1280 + isleadbyte=MSVCRT_isleadbyte @1281 + islower=MSVCRT_islower @1282 + isprint=MSVCRT_isprint @1283 + ispunct=MSVCRT_ispunct @1284 + isspace=MSVCRT_isspace @1285 + isupper=MSVCRT_isupper @1286 + iswalnum=MSVCRT_iswalnum @1287 + iswalpha=ntdll.iswalpha @1288 + iswascii=MSVCRT_iswascii @1289 + iswcntrl=MSVCRT_iswcntrl @1290 + iswctype=ntdll.iswctype @1291 + iswdigit=MSVCRT_iswdigit @1292 + iswgraph=MSVCRT_iswgraph @1293 + iswlower=MSVCRT_iswlower @1294 + iswprint=MSVCRT_iswprint @1295 + iswpunct=MSVCRT_iswpunct @1296 + iswspace=MSVCRT_iswspace @1297 + iswupper=MSVCRT_iswupper @1298 + iswxdigit=MSVCRT_iswxdigit @1299 + isxdigit=MSVCRT_isxdigit @1300 + labs=MSVCRT_labs @1301 + ldexp=MSVCRT_ldexp @1302 + ldiv=MSVCRT_ldiv @1303 + localeconv=MSVCRT_localeconv @1304 + log=MSVCRT_log @1305 + log10=MSVCRT_log10 @1306 + longjmp=MSVCRT_longjmp @1307 + malloc=MSVCRT_malloc @1308 + mblen=MSVCRT_mblen @1309 + mbrlen=MSVCRT_mbrlen @1310 + mbrtowc=MSVCRT_mbrtowc @1311 + mbsrtowcs=MSVCRT_mbsrtowcs @1312 + mbsrtowcs_s=MSVCRT_mbsrtowcs_s @1313 + mbstowcs=MSVCRT_mbstowcs @1314 + mbstowcs_s=MSVCRT__mbstowcs_s @1315 + mbtowc=MSVCRT_mbtowc @1316 + memchr=MSVCRT_memchr @1317 + memcmp=MSVCRT_memcmp @1318 + memcpy=MSVCRT_memcpy @1319 + memcpy_s=MSVCRT_memcpy_s @1320 + memmove=MSVCRT_memmove @1321 + memmove_s=MSVCRT_memmove_s @1322 + memset=MSVCRT_memset @1323 + modf=MSVCRT_modf @1324 + perror=MSVCRT_perror @1325 + pow=MSVCRT_pow @1326 + printf=MSVCRT_printf @1327 + printf_s=MSVCRT_printf_s @1328 + putc=MSVCRT_putc @1329 + putchar=MSVCRT_putchar @1330 + puts=MSVCRT_puts @1331 + putwc=MSVCRT_fputwc @1332 + putwchar=MSVCRT__fputwchar @1333 + qsort=MSVCRT_qsort @1334 + qsort_s=MSVCRT_qsort_s @1335 + raise=MSVCRT_raise @1336 + rand=MSVCRT_rand @1337 + rand_s=MSVCRT_rand_s @1338 + realloc=MSVCRT_realloc @1339 + remove=MSVCRT_remove @1340 + rename=MSVCRT_rename @1341 + rewind=MSVCRT_rewind @1342 + scanf=MSVCRT_scanf @1343 + scanf_s=MSVCRT_scanf_s @1344 + setbuf=MSVCRT_setbuf @1345 + setlocale=MSVCRT_setlocale @1346 + setvbuf=MSVCRT_setvbuf @1347 + signal=MSVCRT_signal @1348 + sin=MSVCRT_sin @1349 + sinh=MSVCRT_sinh @1350 + sprintf=MSVCRT_sprintf @1351 + sprintf_s=MSVCRT_sprintf_s @1352 + sqrt=MSVCRT_sqrt @1353 + srand=MSVCRT_srand @1354 + sscanf=MSVCRT_sscanf @1355 + sscanf_s=MSVCRT_sscanf_s @1356 + strcat=ntdll.strcat @1357 + strcat_s=MSVCRT_strcat_s @1358 + strchr=MSVCRT_strchr @1359 + strcmp=MSVCRT_strcmp @1360 + strcoll=MSVCRT_strcoll @1361 + strcpy=MSVCRT_strcpy @1362 + strcpy_s=MSVCRT_strcpy_s @1363 + strcspn=MSVCRT_strcspn @1364 + strerror=MSVCRT_strerror @1365 + strerror_s=MSVCRT_strerror_s @1366 + strftime=MSVCRT_strftime @1367 + strlen=MSVCRT_strlen @1368 + strncat=MSVCRT_strncat @1369 + strncat_s=MSVCRT_strncat_s @1370 + strncmp=MSVCRT_strncmp @1371 + strncpy=MSVCRT_strncpy @1372 + strncpy_s=MSVCRT_strncpy_s @1373 + strnlen=MSVCRT_strnlen @1374 + strpbrk=MSVCRT_strpbrk @1375 + strrchr=MSVCRT_strrchr @1376 + strspn=ntdll.strspn @1377 + strstr=MSVCRT_strstr @1378 + strtod=MSVCRT_strtod @1379 + strtok=MSVCRT_strtok @1380 + strtok_s=MSVCRT_strtok_s @1381 + strtol=MSVCRT_strtol @1382 + strtoul=MSVCRT_strtoul @1383 + strxfrm=MSVCRT_strxfrm @1384 + swprintf_s=MSVCRT_swprintf_s @1385 + swscanf=MSVCRT_swscanf @1386 + swscanf_s=MSVCRT_swscanf_s @1387 + system=MSVCRT_system @1388 + tan=MSVCRT_tan @1389 + tanh=MSVCRT_tanh @1390 + tmpfile=MSVCRT_tmpfile @1391 + tmpfile_s=MSVCRT_tmpfile_s @1392 + tmpnam=MSVCRT_tmpnam @1393 + tmpnam_s=MSVCRT_tmpnam_s @1394 + tolower=MSVCRT_tolower @1395 + toupper=MSVCRT_toupper @1396 + towlower=MSVCRT_towlower @1397 + towupper=MSVCRT_towupper @1398 + ungetc=MSVCRT_ungetc @1399 + ungetwc=MSVCRT_ungetwc @1400 + vfprintf=MSVCRT_vfprintf @1401 + vfprintf_s=MSVCRT_vfprintf_s @1402 + vfwprintf=MSVCRT_vfwprintf @1403 + vfwprintf_s=MSVCRT_vfwprintf_s @1404 + vprintf=MSVCRT_vprintf @1405 + vprintf_s=MSVCRT_vprintf_s @1406 + vsprintf=MSVCRT_vsprintf @1407 + vsprintf_s=MSVCRT_vsprintf_s @1408 + vswprintf_s=MSVCRT_vswprintf_s @1409 + vwprintf=MSVCRT_vwprintf @1410 + vwprintf_s=MSVCRT_vwprintf_s @1411 + wcrtomb=MSVCRT_wcrtomb @1412 + wcrtomb_s@0 @1413 PRIVATE + wcscat=ntdll.wcscat @1414 + wcscat_s=MSVCRT_wcscat_s @1415 + wcschr=MSVCRT_wcschr @1416 + wcscmp=MSVCRT_wcscmp @1417 + wcscoll=MSVCRT_wcscoll @1418 + wcscpy=ntdll.wcscpy @1419 + wcscpy_s=MSVCRT_wcscpy_s @1420 + wcscspn=ntdll.wcscspn @1421 + wcsftime=MSVCRT_wcsftime @1422 + wcslen=MSVCRT_wcslen @1423 + wcsncat=ntdll.wcsncat @1424 + wcsncat_s=MSVCRT_wcsncat_s @1425 + wcsncmp=MSVCRT_wcsncmp @1426 + wcsncpy=MSVCRT_wcsncpy @1427 + wcsncpy_s=MSVCRT_wcsncpy_s @1428 + wcsnlen=MSVCRT_wcsnlen @1429 + wcspbrk=MSVCRT_wcspbrk @1430 + wcsrchr=MSVCRT_wcsrchr @1431 + wcsrtombs=MSVCRT_wcsrtombs @1432 + wcsrtombs_s=MSVCRT_wcsrtombs_s @1433 + wcsspn=ntdll.wcsspn @1434 + wcsstr=MSVCRT_wcsstr @1435 + wcstod=MSVCRT_wcstod @1436 + wcstok=MSVCRT_wcstok @1437 + wcstok_s=MSVCRT_wcstok_s @1438 + wcstol=MSVCRT_wcstol @1439 + wcstombs=MSVCRT_wcstombs @1440 + wcstombs_s=MSVCRT_wcstombs_s @1441 + wcstoul=MSVCRT_wcstoul @1442 + wcsxfrm=MSVCRT_wcsxfrm @1443 + wctob=MSVCRT_wctob @1444 + wctomb=MSVCRT_wctomb @1445 + wctomb_s=MSVCRT_wctomb_s @1446 + wprintf=MSVCRT_wprintf @1447 + wprintf_s=MSVCRT_wprintf_s @1448 + wscanf=MSVCRT_wscanf @1449 + wscanf_s=MSVCRT_wscanf_s @1450 diff --git a/lib/wine/libmsvcrt.a b/lib/wine/libmsvcrt.a new file mode 100644 index 0000000..b157435 Binary files /dev/null and b/lib/wine/libmsvcrt.a differ diff --git a/lib/wine/libmsvcrtd.def b/lib/wine/libmsvcrtd.def new file mode 100644 index 0000000..3304942 --- /dev/null +++ b/lib/wine/libmsvcrtd.def @@ -0,0 +1,797 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/msvcrtd/msvcrtd.spec; do not edit! + +LIBRARY msvcrtd.dll + +EXPORTS + $I10_OUTPUT=MSVCRT_I10_OUTPUT @1 + ??0__non_rtti_object@@QAE@ABV0@@Z@8=__thiscall_MSVCRT___non_rtti_object_copy_ctor @2 + ??0__non_rtti_object@@QAE@PBD@Z@8=__thiscall_MSVCRT___non_rtti_object_ctor @3 + ??0bad_cast@@QAE@ABQBD@Z@8=__thiscall_MSVCRT_bad_cast_ctor @4 + ??0bad_cast@@QAE@ABV0@@Z@8=__thiscall_MSVCRT_bad_cast_copy_ctor @5 + ??0bad_typeid@@QAE@ABV0@@Z@8=__thiscall_MSVCRT_bad_typeid_copy_ctor @6 + ??0bad_typeid@@QAE@PBD@Z@8=__thiscall_MSVCRT_bad_typeid_ctor @7 + ??0exception@@QAE@ABQBD@Z@8=__thiscall_MSVCRT_exception_ctor @8 + ??0exception@@QAE@ABV0@@Z@8=__thiscall_MSVCRT_exception_copy_ctor @9 + ??0exception@@QAE@XZ@4=__thiscall_MSVCRT_exception_default_ctor @10 + ??1__non_rtti_object@@UAE@XZ@4=__thiscall_MSVCRT___non_rtti_object_dtor @11 + ??1bad_cast@@UAE@XZ@4=__thiscall_MSVCRT_bad_cast_dtor @12 + ??1bad_typeid@@UAE@XZ@4=__thiscall_MSVCRT_bad_typeid_dtor @13 + ??1exception@@UAE@XZ@4=__thiscall_MSVCRT_exception_dtor @14 + ??1type_info@@UAE@XZ@4=__thiscall_MSVCRT_type_info_dtor @15 + ??2@YAPAXI@Z=MSVCRT_operator_new @16 + ??2@YAPAXIHPBDH@Z=MSVCRT_operator_new_dbg @17 + ??3@YAXPAX@Z=MSVCRT_operator_delete @18 + ??4__non_rtti_object@@QAEAAV0@ABV0@@Z@8=__thiscall_MSVCRT___non_rtti_object_opequals @19 + ??4bad_cast@@QAEAAV0@ABV0@@Z@8=__thiscall_MSVCRT_bad_cast_opequals @20 + ??4bad_typeid@@QAEAAV0@ABV0@@Z@8=__thiscall_MSVCRT_bad_typeid_opequals @21 + ??4exception@@QAEAAV0@ABV0@@Z@8=__thiscall_MSVCRT_exception_opequals @22 + ??8type_info@@QBEHABV0@@Z@8=__thiscall_MSVCRT_type_info_opequals_equals @23 + ??9type_info@@QBEHABV0@@Z@8=__thiscall_MSVCRT_type_info_opnot_equals @24 + ??_7__non_rtti_object@@6B@=MSVCRT___non_rtti_object_vtable @25 DATA + ??_7bad_cast@@6B@=MSVCRT_bad_cast_vtable @26 DATA + ??_7bad_typeid@@6B@=MSVCRT_bad_typeid_vtable @27 DATA + ??_7exception@@6B@=MSVCRT_exception_vtable @28 DATA + ??_E__non_rtti_object@@UAEPAXI@Z@8=__thiscall_MSVCRT___non_rtti_object_vector_dtor @29 + ??_Ebad_cast@@UAEPAXI@Z@8=__thiscall_MSVCRT_bad_cast_vector_dtor @30 + ??_Ebad_typeid@@UAEPAXI@Z@8=__thiscall_MSVCRT_bad_typeid_vector_dtor @31 + ??_Eexception@@UAEPAXI@Z@8=__thiscall_MSVCRT_exception_vector_dtor @32 + ??_G__non_rtti_object@@UAEPAXI@Z@8=__thiscall_MSVCRT___non_rtti_object_scalar_dtor @33 + ??_Gbad_cast@@UAEPAXI@Z@8=__thiscall_MSVCRT_bad_cast_scalar_dtor @34 + ??_Gbad_typeid@@UAEPAXI@Z@8=__thiscall_MSVCRT_bad_typeid_scalar_dtor @35 + ??_Gexception@@UAEPAXI@Z@8=__thiscall_MSVCRT_exception_scalar_dtor @36 + ?_query_new_handler@@YAP6AHI@ZXZ=MSVCRT__query_new_handler @37 + ?_query_new_mode@@YAHXZ=MSVCRT__query_new_mode @38 + ?_set_new_handler@@YAP6AHI@ZP6AHI@Z@Z=MSVCRT__set_new_handler @39 + ?_set_new_mode@@YAHH@Z=MSVCRT__set_new_mode @40 + ?_set_se_translator@@YAP6AXIPAU_EXCEPTION_POINTERS@@@ZP6AXI0@Z@Z=MSVCRT__set_se_translator @41 + ?before@type_info@@QBEHABV1@@Z@8=__thiscall_MSVCRT_type_info_before @42 + ?name@type_info@@QBEPBDXZ@4=__thiscall_MSVCRT_type_info_name @43 + ?raw_name@type_info@@QBEPBDXZ@4=__thiscall_MSVCRT_type_info_raw_name @44 + ?set_new_handler@@YAP6AXXZP6AXXZ@Z=MSVCRT_set_new_handler @45 + ?set_terminate@@YAP6AXXZP6AXXZ@Z=MSVCRT_set_terminate @46 + ?set_unexpected@@YAP6AXXZP6AXXZ@Z=MSVCRT_set_unexpected @47 + ?terminate@@YAXXZ=MSVCRT_terminate @48 + ?unexpected@@YAXXZ=MSVCRT_unexpected @49 + ?what@exception@@UBEPBDXZ@4=__thiscall_MSVCRT_what_exception @50 + _CIacos @51 + _CIasin @52 + _CIatan @53 + _CIatan2 @54 + _CIcos @55 + _CIcosh @56 + _CIexp @57 + _CIfmod @58 + _CIlog @59 + _CIlog10 @60 + _CIpow @61 + _CIsin @62 + _CIsinh @63 + _CIsqrt @64 + _CItan @65 + _CItanh @66 + _CrtCheckMemory @67 + _CrtDbgBreak@0 @68 PRIVATE + _CrtDbgReport @69 + _CrtDoForAllClientObjects@0 @70 PRIVATE + _CrtDumpMemoryLeaks @71 + _CrtIsMemoryBlock@0 @72 PRIVATE + _CrtIsValidHeapPointer@0 @73 PRIVATE + _CrtIsValidPointer@0 @74 PRIVATE + _CrtMemCheckpoint@0 @75 PRIVATE + _CrtMemDifference@0 @76 PRIVATE + _CrtMemDumpAllObjectsSince@0 @77 PRIVATE + _CrtMemDumpStatistics@0 @78 PRIVATE + _CrtSetAllocHook@0 @79 PRIVATE + _CrtSetBreakAlloc @80 + _CrtSetDbgBlockType@0 @81 PRIVATE + _CrtSetDbgFlag @82 + _CrtSetDumpClient @83 + _CrtSetReportFile@0 @84 PRIVATE + _CrtSetReportHook @85 + _CrtSetReportMode @86 + _CxxThrowException@8 @87 + _EH_prolog @88 + _Getdays @89 + _Getmonths @90 + _Gettnames @91 + _HUGE=MSVCRT__HUGE @92 DATA + _Strftime @93 + _XcptFilter @94 + __CxxFrameHandler @95 + __CxxLongjmpUnwind@4 @96 + __RTCastToVoid=MSVCRT___RTCastToVoid @97 + __RTDynamicCast=MSVCRT___RTDynamicCast @98 + __RTtypeid=MSVCRT___RTtypeid @99 + __STRINGTOLD @100 + ___mb_cur_max_func=MSVCRT____mb_cur_max_func @101 + __argc=MSVCRT___argc @102 DATA + __argv=MSVCRT___argv @103 DATA + __badioinfo=MSVCRT___badioinfo @104 DATA + __crtCompareStringA @105 + __crtGetLocaleInfoW @106 + __crtLCMapStringA @107 + __dllonexit @108 + __doserrno=MSVCRT___doserrno @109 + __fpecode @110 + __getmainargs @111 + __initenv=MSVCRT___initenv @112 DATA + __isascii=MSVCRT___isascii @113 + __iscsym=MSVCRT___iscsym @114 + __iscsymf=MSVCRT___iscsymf @115 + __lc_codepage=MSVCRT___lc_codepage @116 DATA + __lc_collate_cp=MSVCRT___lc_collate_cp @117 DATA + __lc_handle=MSVCRT___lc_handle @118 DATA + __lconv_init @119 + __mb_cur_max=MSVCRT___mb_cur_max @120 DATA + __p___argc=MSVCRT___p___argc @121 + __p___argv=MSVCRT___p___argv @122 + __p___initenv @123 + __p___mb_cur_max @124 + __p___wargv=MSVCRT___p___wargv @125 + __p___winitenv @126 + __p__acmdln=MSVCRT___p__acmdln @127 + __p__amblksiz @128 + __p__commode @129 + __p__crtAssertBusy @130 + __p__crtBreakAlloc @131 + __p__crtDbgFlag @132 + __p__daylight=MSVCRT___p__daylight @133 + __p__dstbias=MSVCRT___p__dstbias @134 + __p__environ=MSVCRT___p__environ @135 + __p__fileinfo@0 @136 PRIVATE + __p__fmode=MSVCRT___p__fmode @137 + __p__iob @138 + __p__mbcasemap@0 @139 PRIVATE + __p__mbctype @140 + __p__osver @141 + __p__pctype=MSVCRT___p__pctype @142 + __p__pgmptr=MSVCRT___p__pgmptr @143 + __p__pwctype@0 @144 PRIVATE + __p__timezone=MSVCRT___p__timezone @145 + __p__tzname @146 + __p__wcmdln=MSVCRT___p__wcmdln @147 + __p__wenviron=MSVCRT___p__wenviron @148 + __p__winmajor @149 + __p__winminor @150 + __p__winver @151 + __p__wpgmptr=MSVCRT___p__wpgmptr @152 + __pctype_func=MSVCRT___pctype_func @153 + __pioinfo=MSVCRT___pioinfo @154 DATA + __pxcptinfoptrs=MSVCRT___pxcptinfoptrs @155 + __set_app_type=MSVCRT___set_app_type @156 + __setlc_active=MSVCRT___setlc_active @157 DATA + __setusermatherr=MSVCRT___setusermatherr @158 + __threadhandle=kernel32.GetCurrentThread @159 + __threadid=kernel32.GetCurrentThreadId @160 + __toascii=MSVCRT___toascii @161 + __unDName @162 + __unDNameEx @163 + __unguarded_readlc_active=MSVCRT___unguarded_readlc_active @164 DATA + __wargv=MSVCRT___wargv @165 DATA + __wgetmainargs @166 + __winitenv=MSVCRT___winitenv @167 DATA + _abnormal_termination @168 + _access=MSVCRT__access @169 + _acmdln=MSVCRT__acmdln @170 DATA + _adj_fdiv_m16i@4 @171 + _adj_fdiv_m32@4 @172 + _adj_fdiv_m32i@4 @173 + _adj_fdiv_m64@8 @174 + _adj_fdiv_r @175 + _adj_fdivr_m16i@4 @176 + _adj_fdivr_m32@4 @177 + _adj_fdivr_m32i@4 @178 + _adj_fdivr_m64@8 @179 + _adj_fpatan @180 + _adj_fprem @181 + _adj_fprem1 @182 + _adj_fptan @183 + _adjust_fdiv=MSVCRT__adjust_fdiv @184 DATA + _aexit_rtn @185 DATA + _amsg_exit @186 + _assert=MSVCRT__assert @187 + _atodbl=MSVCRT__atodbl @188 + _atoi64=MSVCRT__atoi64 @189 + _atoldbl=MSVCRT__atoldbl @190 + _beep=MSVCRT__beep @191 + _beginthread @192 + _beginthreadex @193 + _c_exit=MSVCRT__c_exit @194 + _cabs=MSVCRT__cabs @195 + _callnewh @196 + _calloc_dbg=MSVCRT_calloc @197 + _cexit=MSVCRT__cexit @198 + _cgets @199 + _chdir=MSVCRT__chdir @200 + _chdrive=MSVCRT__chdrive @201 + _chgsign=MSVCRT__chgsign @202 + _chkesp @203 + _chmod=MSVCRT__chmod @204 + _chsize=MSVCRT__chsize @205 + _clearfp @206 + _close=MSVCRT__close @207 + _commit=MSVCRT__commit @208 + _commode=MSVCRT__commode @209 DATA + _control87 @210 + _controlfp @211 + _copysign=MSVCRT__copysign @212 + _cprintf @213 + _cputs @214 + _creat=MSVCRT__creat @215 + _crtAssertBusy @216 DATA + _crtBreakAlloc @217 DATA + _crtDbgFlag @218 DATA + _cscanf @219 + _ctype=MSVCRT__ctype @220 DATA + _cwait @221 + _daylight=MSVCRT___daylight @222 DATA + _dstbias=MSVCRT__dstbias @223 DATA + _dup=MSVCRT__dup @224 + _dup2=MSVCRT__dup2 @225 + _ecvt=MSVCRT__ecvt @226 + _endthread @227 + _endthreadex @228 + _environ=MSVCRT__environ @229 DATA + _eof=MSVCRT__eof @230 + _errno=MSVCRT__errno @231 + _except_handler2 @232 + _except_handler3 @233 + _execl @234 + _execle @235 + _execlp @236 + _execlpe @237 + _execv @238 + _execve=MSVCRT__execve @239 + _execvp @240 + _execvpe @241 + _exit=MSVCRT__exit @242 + _expand @243 + _expand_dbg=_expand @244 + _fcloseall=MSVCRT__fcloseall @245 + _fcvt=MSVCRT__fcvt @246 + _fdopen=MSVCRT__fdopen @247 + _fgetchar=MSVCRT__fgetchar @248 + _fgetwchar=MSVCRT__fgetwchar @249 + _filbuf=MSVCRT__filbuf @250 + _filelength=MSVCRT__filelength @251 + _filelengthi64=MSVCRT__filelengthi64 @252 + _fileno=MSVCRT__fileno @253 + _findclose=MSVCRT__findclose @254 + _findfirst=MSVCRT__findfirst @255 + _findfirsti64=MSVCRT__findfirsti64 @256 + _findnext=MSVCRT__findnext @257 + _findnexti64=MSVCRT__findnexti64 @258 + _finite=MSVCRT__finite @259 + _flsbuf=MSVCRT__flsbuf @260 + _flushall=MSVCRT__flushall @261 + _fmode=MSVCRT__fmode @262 DATA + _fpclass=MSVCRT__fpclass @263 + _fpieee_flt @264 + _fpreset @265 + _fputchar=MSVCRT__fputchar @266 + _fputwchar=MSVCRT__fputwchar @267 + _free_dbg=MSVCRT_free @268 + _fsopen=MSVCRT__fsopen @269 + _fstat=MSVCRT__fstat @270 + _fstati64=MSVCRT__fstati64 @271 + _ftime=MSVCRT__ftime @272 + _ftol=MSVCRT__ftol @273 + _fullpath=MSVCRT__fullpath @274 + _futime @275 + _gcvt=MSVCRT__gcvt @276 + _get_osfhandle=MSVCRT__get_osfhandle @277 + _get_sbh_threshold @278 + _getch @279 + _getche @280 + _getcwd=MSVCRT__getcwd @281 + _getdcwd=MSVCRT__getdcwd @282 + _getdiskfree=MSVCRT__getdiskfree @283 + _getdllprocaddr @284 + _getdrive=MSVCRT__getdrive @285 + _getdrives=kernel32.GetLogicalDrives @286 + _getmaxstdio=MSVCRT__getmaxstdio @287 + _getmbcp @288 + _getpid @289 + _getsystime@4 @290 PRIVATE + _getw=MSVCRT__getw @291 + _getws=MSVCRT__getws @292 + _global_unwind2 @293 + _heapadd @294 + _heapchk @295 + _heapmin @296 + _heapset @297 + _heapused@8 @298 PRIVATE + _heapwalk @299 + _hypot @300 + _i64toa=ntdll._i64toa @301 + _i64tow=ntdll._i64tow @302 + _initterm @303 + _inp@4 @304 PRIVATE + _inpd@4 @305 PRIVATE + _inpw@4 @306 PRIVATE + _iob=MSVCRT__iob @307 DATA + _isatty=MSVCRT__isatty @308 + _isctype=MSVCRT__isctype @309 + _ismbbalnum@4 @310 PRIVATE + _ismbbalpha@4 @311 PRIVATE + _ismbbgraph@4 @312 PRIVATE + _ismbbkalnum@4 @313 PRIVATE + _ismbbkana @314 + _ismbbkprint@4 @315 PRIVATE + _ismbbkpunct@4 @316 PRIVATE + _ismbblead @317 + _ismbbprint@4 @318 PRIVATE + _ismbbpunct@4 @319 PRIVATE + _ismbbtrail @320 + _ismbcalnum @321 + _ismbcalpha @322 + _ismbcdigit @323 + _ismbcgraph @324 + _ismbchira @325 + _ismbckata @326 + _ismbcl0 @327 + _ismbcl1 @328 + _ismbcl2 @329 + _ismbclegal @330 + _ismbclower @331 + _ismbcprint @332 + _ismbcpunct @333 + _ismbcspace @334 + _ismbcsymbol @335 + _ismbcupper @336 + _ismbslead @337 + _ismbstrail @338 + _isnan=MSVCRT__isnan @339 + _itoa=MSVCRT__itoa @340 + _itow=ntdll._itow @341 + _j0=MSVCRT__j0 @342 + _j1=MSVCRT__j1 @343 + _jn=MSVCRT__jn @344 + _kbhit @345 + _lfind @346 + _loaddll @347 + _local_unwind2 @348 + _lock @349 + _locking=MSVCRT__locking @350 + _logb=MSVCRT__logb @351 + _longjmpex=MSVCRT_longjmp @352 + _lrotl=MSVCRT__lrotl @353 + _lrotr=MSVCRT__lrotr @354 + _lsearch @355 + _lseek=MSVCRT__lseek @356 + _lseeki64=MSVCRT__lseeki64 @357 + _ltoa=ntdll._ltoa @358 + _ltow=ntdll._ltow @359 + _makepath=MSVCRT__makepath @360 + _malloc_dbg=MSVCRT_malloc @361 + _mbbtombc @362 + _mbbtype @363 + _mbccpy @364 + _mbcjistojms @365 + _mbcjmstojis @366 + _mbclen @367 + _mbctohira @368 + _mbctokata @369 + _mbctolower @370 + _mbctombb @371 + _mbctoupper @372 + _mbctype=MSVCRT_mbctype @373 DATA + _mbsbtype @374 + _mbscat @375 + _mbschr @376 + _mbscmp @377 + _mbscoll @378 + _mbscpy @379 + _mbscspn @380 + _mbsdec @381 + _mbsdup=MSVCRT__strdup @382 + _mbsicmp @383 + _mbsicoll @384 + _mbsinc @385 + _mbslen @386 + _mbslwr @387 + _mbsnbcat @388 + _mbsnbcmp @389 + _mbsnbcnt @390 + _mbsnbcoll @391 + _mbsnbcpy @392 + _mbsnbicmp @393 + _mbsnbicoll @394 + _mbsnbset @395 + _mbsncat @396 + _mbsnccnt @397 + _mbsncmp @398 + _mbsncoll@12 @399 PRIVATE + _mbsncpy @400 + _mbsnextc @401 + _mbsnicmp @402 + _mbsnicoll@12 @403 PRIVATE + _mbsninc @404 + _mbsnset @405 + _mbspbrk @406 + _mbsrchr @407 + _mbsrev @408 + _mbsset @409 + _mbsspn @410 + _mbsspnp @411 + _mbsstr @412 + _mbstok @413 + _mbstrlen @414 + _mbsupr @415 + _memccpy=ntdll._memccpy @416 + _memicmp=MSVCRT__memicmp @417 + _mkdir=MSVCRT__mkdir @418 + _mktemp=MSVCRT__mktemp @419 + _msize @420 + _msize_dbg=_msize @421 + _nextafter=MSVCRT__nextafter @422 + _onexit=MSVCRT__onexit @423 + _open=MSVCRT__open @424 + _open_osfhandle=MSVCRT__open_osfhandle @425 + _osver=MSVCRT__osver @426 DATA + _outp@8 @427 PRIVATE + _outpd@8 @428 PRIVATE + _outpw@8 @429 PRIVATE + _pclose=MSVCRT__pclose @430 + _pctype=MSVCRT__pctype @431 DATA + _pgmptr=MSVCRT__pgmptr @432 DATA + _pipe=MSVCRT__pipe @433 + _popen=MSVCRT__popen @434 + _purecall @435 + _putch @436 + _putenv @437 + _putw=MSVCRT__putw @438 + _putws=MSVCRT__putws @439 + _read=MSVCRT__read @440 + _realloc_dbg=MSVCRT_realloc @441 + _rmdir=MSVCRT__rmdir @442 + _rmtmp=MSVCRT__rmtmp @443 + _rotl @444 + _rotr @445 + _safe_fdiv @446 + _safe_fdivr @447 + _safe_fprem @448 + _safe_fprem1 @449 + _scalb=MSVCRT__scalb @450 + _searchenv=MSVCRT__searchenv @451 + _seh_longjmp_unwind4@4 @452 + _seh_longjmp_unwind@4 @453 + _set_error_mode @454 + _set_sbh_threshold @455 + _seterrormode @456 + _setjmp=MSVCRT__setjmp @457 + _setjmp3=MSVCRT__setjmp3 @458 + _setmaxstdio=MSVCRT__setmaxstdio @459 + _setmbcp @460 + _setmode=MSVCRT__setmode @461 + _setsystime@8 @462 PRIVATE + _sleep=MSVCRT__sleep @463 + _snprintf=MSVCRT__snprintf @464 + _snwprintf=MSVCRT__snwprintf @465 + _sopen=MSVCRT__sopen @466 + _spawnl=MSVCRT__spawnl @467 + _spawnle=MSVCRT__spawnle @468 + _spawnlp=MSVCRT__spawnlp @469 + _spawnlpe=MSVCRT__spawnlpe @470 + _spawnv=MSVCRT__spawnv @471 + _spawnve=MSVCRT__spawnve @472 + _spawnvp=MSVCRT__spawnvp @473 + _spawnvpe=MSVCRT__spawnvpe @474 + _splitpath=MSVCRT__splitpath @475 + _stat=MSVCRT_stat @476 + _stati64=MSVCRT_stati64 @477 + _statusfp @478 + _strcmpi=MSVCRT__stricmp @479 + _strdate=MSVCRT__strdate @480 + _strdup=MSVCRT__strdup @481 + _strerror=MSVCRT__strerror @482 + _stricmp=MSVCRT__stricmp @483 + _stricoll=MSVCRT__stricoll @484 + _strlwr=MSVCRT__strlwr @485 + _strncoll=MSVCRT__strncoll @486 + _strnicmp=MSVCRT__strnicmp @487 + _strnicoll=MSVCRT__strnicoll @488 + _strnset=MSVCRT__strnset @489 + _strrev=MSVCRT__strrev @490 + _strset @491 + _strtime=MSVCRT__strtime @492 + _strupr=MSVCRT__strupr @493 + _swab=MSVCRT__swab @494 + _sys_errlist=MSVCRT__sys_errlist @495 DATA + _sys_nerr=MSVCRT__sys_nerr @496 DATA + _tell=MSVCRT__tell @497 + _telli64 @498 + _tempnam=MSVCRT__tempnam @499 + _timezone=MSVCRT___timezone @500 DATA + _tolower=MSVCRT__tolower @501 + _toupper=MSVCRT__toupper @502 + _tzname=MSVCRT__tzname @503 DATA + _tzset=MSVCRT__tzset @504 + _ui64toa=ntdll._ui64toa @505 + _ui64tow=ntdll._ui64tow @506 + _ultoa=ntdll._ultoa @507 + _ultow=ntdll._ultow @508 + _umask=MSVCRT__umask @509 + _ungetch @510 + _unlink=MSVCRT__unlink @511 + _unloaddll @512 + _unlock @513 + _utime @514 + _vsnprintf=MSVCRT_vsnprintf @515 + _vsnwprintf=MSVCRT_vsnwprintf @516 + _waccess=MSVCRT__waccess @517 + _wasctime=MSVCRT__wasctime @518 + _wchdir=MSVCRT__wchdir @519 + _wchmod=MSVCRT__wchmod @520 + _wcmdln=MSVCRT__wcmdln @521 DATA + _wcreat=MSVCRT__wcreat @522 + _wcsdup=MSVCRT__wcsdup @523 + _wcsicmp=MSVCRT__wcsicmp @524 + _wcsicoll=MSVCRT__wcsicoll @525 + _wcslwr=MSVCRT__wcslwr @526 + _wcsncoll=MSVCRT__wcsncoll @527 + _wcsnicmp=MSVCRT__wcsnicmp @528 + _wcsnicoll=MSVCRT__wcsnicoll @529 + _wcsnset=MSVCRT__wcsnset @530 + _wcsrev=MSVCRT__wcsrev @531 + _wcsset=MSVCRT__wcsset @532 + _wcsupr=MSVCRT__wcsupr @533 + _wctime=MSVCRT__wctime @534 + _wenviron=MSVCRT__wenviron @535 DATA + _wexecl @536 + _wexecle @537 + _wexeclp @538 + _wexeclpe @539 + _wexecv @540 + _wexecve @541 + _wexecvp @542 + _wexecvpe @543 + _wfdopen=MSVCRT__wfdopen @544 + _wfindfirst=MSVCRT__wfindfirst @545 + _wfindfirsti64=MSVCRT__wfindfirsti64 @546 + _wfindnext=MSVCRT__wfindnext @547 + _wfindnexti64=MSVCRT__wfindnexti64 @548 + _wfopen=MSVCRT__wfopen @549 + _wfreopen=MSVCRT__wfreopen @550 + _wfsopen=MSVCRT__wfsopen @551 + _wfullpath=MSVCRT__wfullpath @552 + _wgetcwd=MSVCRT__wgetcwd @553 + _wgetdcwd=MSVCRT__wgetdcwd @554 + _wgetenv=MSVCRT__wgetenv @555 + _winmajor=MSVCRT__winmajor @556 DATA + _winminor=MSVCRT__winminor @557 DATA + _winver=MSVCRT__winver @558 DATA + _wmakepath=MSVCRT__wmakepath @559 + _wmkdir=MSVCRT__wmkdir @560 + _wmktemp=MSVCRT__wmktemp @561 + _wopen=MSVCRT__wopen @562 + _wperror=MSVCRT__wperror @563 + _wpgmptr=MSVCRT__wpgmptr @564 DATA + _wpopen=MSVCRT__wpopen @565 + _wputenv @566 + _wremove=MSVCRT__wremove @567 + _wrename=MSVCRT__wrename @568 + _write=MSVCRT__write @569 + _wrmdir=MSVCRT__wrmdir @570 + _wsearchenv=MSVCRT__wsearchenv @571 + _wsetlocale=MSVCRT__wsetlocale @572 + _wsopen=MSVCRT__wsopen @573 + _wspawnl=MSVCRT__wspawnl @574 + _wspawnle=MSVCRT__wspawnle @575 + _wspawnlp=MSVCRT__wspawnlp @576 + _wspawnlpe=MSVCRT__wspawnlpe @577 + _wspawnv=MSVCRT__wspawnv @578 + _wspawnve=MSVCRT__wspawnve @579 + _wspawnvp=MSVCRT__wspawnvp @580 + _wspawnvpe=MSVCRT__wspawnvpe @581 + _wsplitpath=MSVCRT__wsplitpath @582 + _wstat=MSVCRT__wstat @583 + _wstati64=MSVCRT__wstati64 @584 + _wstrdate=MSVCRT__wstrdate @585 + _wstrtime=MSVCRT__wstrtime @586 + _wsystem @587 + _wtempnam=MSVCRT__wtempnam @588 + _wtmpnam=MSVCRT__wtmpnam @589 + _wtoi=MSVCRT__wtoi @590 + _wtoi64=MSVCRT__wtoi64 @591 + _wtol=MSVCRT__wtol @592 + _wunlink=MSVCRT__wunlink @593 + _wutime @594 + _y0=MSVCRT__y0 @595 + _y1=MSVCRT__y1 @596 + _yn=MSVCRT__yn @597 + abort=MSVCRT_abort @598 + abs=MSVCRT_abs @599 + acos=MSVCRT_acos @600 + asctime=MSVCRT_asctime @601 + asin=MSVCRT_asin @602 + atan=MSVCRT_atan @603 + atan2=MSVCRT_atan2 @604 + atexit=MSVCRT_atexit @605 PRIVATE + atof=MSVCRT_atof @606 + atoi=MSVCRT_atoi @607 + atol=MSVCRT_atol @608 + bsearch=MSVCRT_bsearch @609 + calloc=MSVCRT_calloc @610 + ceil=MSVCRT_ceil @611 + clearerr=MSVCRT_clearerr @612 + clock=MSVCRT_clock @613 + cos=MSVCRT_cos @614 + cosh=MSVCRT_cosh @615 + ctime=MSVCRT_ctime @616 + difftime=MSVCRT_difftime @617 + div=MSVCRT_div @618 + exit=MSVCRT_exit @619 + exp=MSVCRT_exp @620 + fabs=MSVCRT_fabs @621 + fclose=MSVCRT_fclose @622 + feof=MSVCRT_feof @623 + ferror=MSVCRT_ferror @624 + fflush=MSVCRT_fflush @625 + fgetc=MSVCRT_fgetc @626 + fgetpos=MSVCRT_fgetpos @627 + fgets=MSVCRT_fgets @628 + fgetwc=MSVCRT_fgetwc @629 + fgetws=MSVCRT_fgetws @630 + floor=MSVCRT_floor @631 + fmod=MSVCRT_fmod @632 + fopen=MSVCRT_fopen @633 + fprintf=MSVCRT_fprintf @634 + fputc=MSVCRT_fputc @635 + fputs=MSVCRT_fputs @636 + fputwc=MSVCRT_fputwc @637 + fputws=MSVCRT_fputws @638 + fread=MSVCRT_fread @639 + free=MSVCRT_free @640 + freopen=MSVCRT_freopen @641 + frexp=MSVCRT_frexp @642 + fscanf=MSVCRT_fscanf @643 + fseek=MSVCRT_fseek @644 + fsetpos=MSVCRT_fsetpos @645 + ftell=MSVCRT_ftell @646 + fwprintf=MSVCRT_fwprintf @647 + fwrite=MSVCRT_fwrite @648 + fwscanf=MSVCRT_fwscanf @649 + getc=MSVCRT_getc @650 + getchar=MSVCRT_getchar @651 + getenv=MSVCRT_getenv @652 + gets=MSVCRT_gets @653 + getwc=MSVCRT_getwc @654 + getwchar=MSVCRT_getwchar @655 + gmtime=MSVCRT_gmtime @656 + is_wctype=ntdll.iswctype @657 + isalnum=MSVCRT_isalnum @658 + isalpha=MSVCRT_isalpha @659 + iscntrl=MSVCRT_iscntrl @660 + isdigit=MSVCRT_isdigit @661 + isgraph=MSVCRT_isgraph @662 + isleadbyte=MSVCRT_isleadbyte @663 + islower=MSVCRT_islower @664 + isprint=MSVCRT_isprint @665 + ispunct=MSVCRT_ispunct @666 + isspace=MSVCRT_isspace @667 + isupper=MSVCRT_isupper @668 + iswalnum=MSVCRT_iswalnum @669 + iswalpha=ntdll.iswalpha @670 + iswascii=MSVCRT_iswascii @671 + iswcntrl=MSVCRT_iswcntrl @672 + iswctype=ntdll.iswctype @673 + iswdigit=MSVCRT_iswdigit @674 + iswgraph=MSVCRT_iswgraph @675 + iswlower=MSVCRT_iswlower @676 + iswprint=MSVCRT_iswprint @677 + iswpunct=MSVCRT_iswpunct @678 + iswspace=MSVCRT_iswspace @679 + iswupper=MSVCRT_iswupper @680 + iswxdigit=MSVCRT_iswxdigit @681 + isxdigit=MSVCRT_isxdigit @682 + labs=MSVCRT_labs @683 + ldexp=MSVCRT_ldexp @684 + ldiv=MSVCRT_ldiv @685 + localeconv=MSVCRT_localeconv @686 + localtime=MSVCRT_localtime @687 + log=MSVCRT_log @688 + log10=MSVCRT_log10 @689 + longjmp=MSVCRT_longjmp @690 + malloc=MSVCRT_malloc @691 + mblen=MSVCRT_mblen @692 + mbstowcs=MSVCRT_mbstowcs @693 + mbtowc=MSVCRT_mbtowc @694 + memchr=MSVCRT_memchr @695 + memcmp=MSVCRT_memcmp @696 + memcpy=MSVCRT_memcpy @697 + memmove=MSVCRT_memmove @698 + memset=MSVCRT_memset @699 + mktime=MSVCRT_mktime @700 + modf=MSVCRT_modf @701 + perror=MSVCRT_perror @702 + pow=MSVCRT_pow @703 + printf=MSVCRT_printf @704 + putc=MSVCRT_putc @705 + putchar=MSVCRT_putchar @706 + puts=MSVCRT_puts @707 + putwc=MSVCRT_fputwc @708 + putwchar=MSVCRT__fputwchar @709 + qsort=MSVCRT_qsort @710 + raise=MSVCRT_raise @711 + rand=MSVCRT_rand @712 + realloc=MSVCRT_realloc @713 + remove=MSVCRT_remove @714 + rename=MSVCRT_rename @715 + rewind=MSVCRT_rewind @716 + scanf=MSVCRT_scanf @717 + setbuf=MSVCRT_setbuf @718 + setlocale=MSVCRT_setlocale @719 + setvbuf=MSVCRT_setvbuf @720 + signal=MSVCRT_signal @721 + sin=MSVCRT_sin @722 + sinh=MSVCRT_sinh @723 + sprintf=MSVCRT_sprintf @724 + sqrt=MSVCRT_sqrt @725 + srand=MSVCRT_srand @726 + sscanf=MSVCRT_sscanf @727 + strcat=ntdll.strcat @728 + strchr=MSVCRT_strchr @729 + strcmp=MSVCRT_strcmp @730 + strcoll=MSVCRT_strcoll @731 + strcpy=MSVCRT_strcpy @732 + strcspn=MSVCRT_strcspn @733 + strerror=MSVCRT_strerror @734 + strftime=MSVCRT_strftime @735 + strlen=MSVCRT_strlen @736 + strncat=MSVCRT_strncat @737 + strncmp=MSVCRT_strncmp @738 + strncpy=MSVCRT_strncpy @739 + strpbrk=MSVCRT_strpbrk @740 + strrchr=MSVCRT_strrchr @741 + strspn=ntdll.strspn @742 + strstr=MSVCRT_strstr @743 + strtod=MSVCRT_strtod @744 + strtok=MSVCRT_strtok @745 + strtol=MSVCRT_strtol @746 + strtoul=MSVCRT_strtoul @747 + strxfrm=MSVCRT_strxfrm @748 + swprintf=MSVCRT_swprintf @749 + swscanf=MSVCRT_swscanf @750 + system=MSVCRT_system @751 + tan=MSVCRT_tan @752 + tanh=MSVCRT_tanh @753 + time=MSVCRT_time @754 + tmpfile=MSVCRT_tmpfile @755 + tmpnam=MSVCRT_tmpnam @756 + tolower=MSVCRT_tolower @757 + toupper=MSVCRT_toupper @758 + towlower=MSVCRT_towlower @759 + towupper=MSVCRT_towupper @760 + ungetc=MSVCRT_ungetc @761 + ungetwc=MSVCRT_ungetwc @762 + vfprintf=MSVCRT_vfprintf @763 + vfwprintf=MSVCRT_vfwprintf @764 + vprintf=MSVCRT_vprintf @765 + vsprintf=MSVCRT_vsprintf @766 + vswprintf=MSVCRT_vswprintf @767 + vwprintf=MSVCRT_vwprintf @768 + wcscat=ntdll.wcscat @769 + wcschr=MSVCRT_wcschr @770 + wcscmp=MSVCRT_wcscmp @771 + wcscoll=MSVCRT_wcscoll @772 + wcscpy=ntdll.wcscpy @773 + wcscspn=ntdll.wcscspn @774 + wcsftime=MSVCRT_wcsftime @775 + wcslen=MSVCRT_wcslen @776 + wcsncat=ntdll.wcsncat @777 + wcsncmp=MSVCRT_wcsncmp @778 + wcsncpy=MSVCRT_wcsncpy @779 + wcspbrk=MSVCRT_wcspbrk @780 + wcsrchr=MSVCRT_wcsrchr @781 + wcsspn=ntdll.wcsspn @782 + wcsstr=MSVCRT_wcsstr @783 + wcstod=MSVCRT_wcstod @784 + wcstok=MSVCRT_wcstok @785 + wcstol=MSVCRT_wcstol @786 + wcstombs=MSVCRT_wcstombs @787 + wcstoul=MSVCRT_wcstoul @788 + wcsxfrm=MSVCRT_wcsxfrm @789 + wctomb=MSVCRT_wctomb @790 + wprintf=MSVCRT_wprintf @791 + wscanf=MSVCRT_wscanf @792 diff --git a/lib/wine/libmsvfw32.def b/lib/wine/libmsvfw32.def new file mode 100644 index 0000000..3dffcba --- /dev/null +++ b/lib/wine/libmsvfw32.def @@ -0,0 +1,52 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/msvfw32/msvfw32.spec; do not edit! + +LIBRARY msvfw32.dll + +EXPORTS + VideoForWindowsVersion@0 @2 + DrawDibBegin@32 @3 + DrawDibChangePalette@16 @4 + DrawDibClose@4 @5 + DrawDibDraw@52 @6 + DrawDibEnd@4 @7 + DrawDibGetBuffer@16 @8 + DrawDibGetPalette@4 @9 + DrawDibOpen@0 @10 + DrawDibProfileDisplay@4 @11 + DrawDibRealize@12 @12 + DrawDibSetPalette@8 @13 + DrawDibStart@8 @14 + DrawDibStop@4 @15 + DrawDibTime@8 @16 + GetOpenFileNamePreview@4=GetOpenFileNamePreviewA @17 + GetOpenFileNamePreviewA@4 @18 + GetOpenFileNamePreviewW@4 @19 + GetSaveFileNamePreviewA@4 @20 + GetSaveFileNamePreviewW@4 @21 + ICClose@4 @22 + ICCompress @23 + ICCompressorChoose@24 @24 + ICCompressorFree@4 @25 + ICDecompress @26 + ICDraw @27 + ICDrawBegin @28 + ICGetDisplayFormat@24 @29 + ICGetInfo@12 @30 + ICImageCompress@28 @31 + ICImageDecompress@20 @32 + ICInfo@12 @33 + ICInstall@20 @34 + ICLocate@20 @35 + ICMThunk@0 @36 PRIVATE + ICOpen@12 @37 + ICOpenFunction@16 @38 + ICRemove@12 @39 + ICSendMessage@16 @40 + ICSeqCompressFrame@20 @41 + ICSeqCompressFrameEnd@4 @42 + ICSeqCompressFrameStart@8 @43 + MCIWndCreate=MCIWndCreateA @44 + MCIWndCreateA @45 + MCIWndCreateW @46 + MCIWndRegisterClass @47 + StretchDIB@0 @48 PRIVATE diff --git a/lib/wine/libmswsock.def b/lib/wine/libmswsock.def new file mode 100644 index 0000000..5737681 --- /dev/null +++ b/lib/wine/libmswsock.def @@ -0,0 +1,37 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/mswsock/mswsock.spec; do not edit! + +LIBRARY mswsock.dll + +EXPORTS + AcceptEx@32 @1 + EnumProtocolsA@12=ws2_32.WSAEnumProtocolsA @2 + EnumProtocolsW@12=ws2_32.WSAEnumProtocolsW @3 + GetAcceptExSockaddrs@32 @4 + GetAddressByNameA@0 @5 PRIVATE + GetAddressByNameW@0 @6 PRIVATE + GetNameByTypeA@0 @7 PRIVATE + GetNameByTypeW@0 @8 PRIVATE + GetServiceA@0 @9 PRIVATE + GetServiceW@0 @10 PRIVATE + GetTypeByNameA@0 @11 PRIVATE + GetTypeByNameW@0 @12 PRIVATE + MigrateWinsockConfiguration@0 @13 PRIVATE + NPLoadNameSpaces@0 @14 PRIVATE + NSPStartup@0 @15 PRIVATE + ServiceMain@0 @16 PRIVATE + SetServiceA@0 @17 PRIVATE + SetServiceW@0 @18 PRIVATE + StartWsdpService@0 @19 PRIVATE + StopWsdpService@0 @20 PRIVATE + SvchostPushServiceGlobals@0 @21 PRIVATE + TransmitFile@28 @22 + WSARecvEx@16 @23 + WSPStartup@0 @24 PRIVATE + dn_expand@0 @25 PRIVATE + getnetbyname@0 @26 PRIVATE + inet_network@0 @27 PRIVATE + rcmd@0 @28 PRIVATE + rexec@0 @29 PRIVATE + rresvport@0 @30 PRIVATE + s_perror@0 @31 PRIVATE + sethostname@0 @32 PRIVATE diff --git a/lib/wine/libnddeapi.def b/lib/wine/libnddeapi.def new file mode 100644 index 0000000..8490a52 --- /dev/null +++ b/lib/wine/libnddeapi.def @@ -0,0 +1,33 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/nddeapi/nddeapi.spec; do not edit! + +LIBRARY nddeapi.dll + +EXPORTS + NDdeShareAddA@20 @500 + NDdeShareDelA@12 @501 + NDdeShareEnumA@24 @502 + NDdeShareGetInfoA@28 @503 + NDdeShareSetInfoA@24 @504 + NDdeGetErrorStringA@12 @505 + NDdeIsValidShareNameA@4 @506 + NDdeIsValidAppTopicListA@4 @507 + NDdeGetShareSecurityA@24 @509 + NDdeSetShareSecurityA@16 @510 + NDdeGetTrustedShareA@20 @511 + NDdeSetTrustedShareA@12 @512 + NDdeTrustedShareEnumA@24 @513 + NDdeShareAddW@20 @600 + NDdeShareDelW@12 @601 + NDdeShareEnumW@24 @602 + NDdeShareGetInfoW@28 @603 + NDdeShareSetInfoW@24 @604 + NDdeGetErrorStringW@12 @605 + NDdeIsValidShareNameW@4 @606 + NDdeIsValidAppTopicListW@4 @607 + NDdeGetShareSecurityW@24 @609 + NDdeSetShareSecurityW@16 @610 + NDdeGetTrustedShareW@20 @611 + NDdeSetTrustedShareW@12 @612 + NDdeTrustedShareEnumW@24 @613 + NDdeSpecialCommandA@0 @508 PRIVATE + NDdeSpecialCommandW@0 @514 PRIVATE diff --git a/lib/wine/libnetapi32.def b/lib/wine/libnetapi32.def new file mode 100644 index 0000000..c38cd58 --- /dev/null +++ b/lib/wine/libnetapi32.def @@ -0,0 +1,300 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/netapi32/netapi32.spec; do not edit! + +LIBRARY netapi32.dll + +EXPORTS + DavGetHTTPFromUNCPath@12 @1 + DavGetUNCFromHTTPPath@12 @2 + DsAddressToSiteNames@0 @3 PRIVATE + DsAddressToSiteNamesEx@0 @4 PRIVATE + DsDeregisterDnsHostRecords@0 @5 PRIVATE + DsEnumerateDomainTrustsA@16 @6 + DsEnumerateDomainTrustsW@16 @7 + DsGetDcClose@0 @8 PRIVATE + DsGetDcNameA@24 @9 + DsGetDcNameW@24 @10 + DsGetDcNext@0 @11 PRIVATE + DsGetDcOpen@0 @12 PRIVATE + DsGetDcSiteCoverage@0 @13 PRIVATE + DsGetForestTrustInformationW@0 @14 PRIVATE + DsGetSiteNameA@8 @15 + DsGetSiteNameW@8 @16 + DsMergeForestTrustInformationW@0 @17 PRIVATE + DsRoleFreeMemory@4 @18 + DsRoleGetPrimaryDomainInformation@12 @19 + DsValidateSubnetName@0 @20 PRIVATE + I_BrowserDebugCall@0 @21 PRIVATE + I_BrowserDebugTrace@0 @22 PRIVATE + I_BrowserQueryEmulatedDomains@12 @23 + I_BrowserQueryOtherDomains@0 @24 PRIVATE + I_BrowserQueryStatistics@0 @25 PRIVATE + I_BrowserResetNetlogonState@0 @26 PRIVATE + I_BrowserResetStatistics@0 @27 PRIVATE + I_BrowserServerEnum@0 @28 PRIVATE + I_BrowserSetNetlogonState@16 @29 + I_NetAccountDeltas@0 @30 PRIVATE + I_NetAccountSync@0 @31 PRIVATE + I_NetDatabaseDeltas@0 @32 PRIVATE + I_NetDatabaseRedo@0 @33 PRIVATE + I_NetDatabaseSync2@0 @34 PRIVATE + I_NetDatabaseSync@0 @35 PRIVATE + I_NetDfsCreateExitPoint@0 @36 PRIVATE + I_NetDfsCreateLocalPartition@0 @37 PRIVATE + I_NetDfsDeleteExitPoint@0 @38 PRIVATE + I_NetDfsDeleteLocalPartition@0 @39 PRIVATE + I_NetDfsFixLocalVolume@0 @40 PRIVATE + I_NetDfsGetVersion@0 @41 PRIVATE + I_NetDfsIsThisADomainName@0 @42 PRIVATE + I_NetDfsModifyPrefix@0 @43 PRIVATE + I_NetDfsSetLocalVolumeState@0 @44 PRIVATE + I_NetDfsSetServerInfo@0 @45 PRIVATE + I_NetGetDCList@0 @46 PRIVATE + I_NetListCanonicalize@0 @47 PRIVATE + I_NetListTraverse@0 @48 PRIVATE + I_NetLogonControl2@0 @49 PRIVATE + I_NetLogonControl@0 @50 PRIVATE + I_NetLogonSamLogoff@0 @51 PRIVATE + I_NetLogonSamLogon@0 @52 PRIVATE + I_NetLogonUasLogoff@0 @53 PRIVATE + I_NetLogonUasLogon@0 @54 PRIVATE + I_NetNameCanonicalize@0 @55 PRIVATE + I_NetNameCompare@20 @56 + I_NetNameValidate@16 @57 + I_NetPathCanonicalize@0 @58 PRIVATE + I_NetPathCompare@0 @59 PRIVATE + I_NetPathType@0 @60 PRIVATE + I_NetServerAuthenticate2@0 @61 PRIVATE + I_NetServerAuthenticate@0 @62 PRIVATE + I_NetServerPasswordSet@0 @63 PRIVATE + I_NetServerReqChallenge@0 @64 PRIVATE + I_NetServerSetServiceBits@0 @65 PRIVATE + I_NetServerSetServiceBitsEx@0 @66 PRIVATE + NetAlertRaise@0 @67 PRIVATE + NetAlertRaiseEx@0 @68 PRIVATE + NetApiBufferAllocate@8 @69 + NetApiBufferFree@4 @70 + NetApiBufferReallocate@12 @71 + NetApiBufferSize@8 @72 + NetAuditClear@0 @73 PRIVATE + NetAuditRead@0 @74 PRIVATE + NetAuditWrite@0 @75 PRIVATE + NetBrowserStatisticsGet@0 @76 PRIVATE + NetConfigGet@0 @77 PRIVATE + NetConfigGetAll@0 @78 PRIVATE + NetConfigSet@0 @79 PRIVATE + NetConnectionEnum@0 @80 PRIVATE + NetDfsAdd@0 @81 PRIVATE + NetDfsEnum@0 @82 PRIVATE + NetDfsGetInfo@0 @83 PRIVATE + NetDfsManagerGetConfigInfo@0 @84 PRIVATE + NetDfsMove@0 @85 PRIVATE + NetDfsRemove@0 @86 PRIVATE + NetDfsRename@0 @87 PRIVATE + NetDfsSetInfo@0 @88 PRIVATE + NetEnumerateTrustedDomains@0 @89 PRIVATE + NetErrorLogClear@0 @90 PRIVATE + NetErrorLogRead@0 @91 PRIVATE + NetErrorLogWrite@0 @92 PRIVATE + NetFileClose@0 @93 PRIVATE + NetFileEnum@36 @94 + NetFileGetInfo@0 @95 PRIVATE + NetGetAnyDCName@12 @96 + NetGetDCName@12 @97 + NetGetDisplayInformationIndex@0 @98 PRIVATE + NetGetJoinInformation@12 @99 + NetGroupAdd@0 @100 PRIVATE + NetGroupAddUser@12 @101 + NetGroupDel@0 @102 PRIVATE + NetGroupDelUser@0 @103 PRIVATE + NetGroupEnum@28 @104 + NetGroupGetInfo@16 @105 + NetGroupGetUsers@0 @106 PRIVATE + NetGroupSetInfo@0 @107 PRIVATE + NetGroupSetUsers@0 @108 PRIVATE + NetLocalGroupAdd@16 @109 + NetLocalGroupAddMember@12 @110 + NetLocalGroupAddMembers@20 @111 + NetLocalGroupDel@8 @112 + NetLocalGroupDelMember@12 @113 + NetLocalGroupDelMembers@20 @114 + NetLocalGroupEnum@28 @115 + NetLocalGroupGetInfo@16 @116 + NetLocalGroupGetMembers@32 @117 + NetLocalGroupSetInfo@20 @118 + NetLocalGroupSetMembers@20 @119 + NetMessageBufferSend@0 @120 PRIVATE + NetMessageNameAdd@0 @121 PRIVATE + NetMessageNameDel@0 @122 PRIVATE + NetMessageNameEnum@0 @123 PRIVATE + NetMessageNameGetInfo@0 @124 PRIVATE + NetQueryDisplayInformation@28 @125 + NetRemoteComputerSupports@0 @126 PRIVATE + NetRemoteTOD@0 @127 PRIVATE + NetReplExportDirAdd@0 @128 PRIVATE + NetReplExportDirDel@0 @129 PRIVATE + NetReplExportDirEnum@0 @130 PRIVATE + NetReplExportDirGetInfo@0 @131 PRIVATE + NetReplExportDirLock@0 @132 PRIVATE + NetReplExportDirSetInfo@0 @133 PRIVATE + NetReplExportDirUnlock@0 @134 PRIVATE + NetReplGetInfo@0 @135 PRIVATE + NetReplImportDirAdd@0 @136 PRIVATE + NetReplImportDirDel@0 @137 PRIVATE + NetReplImportDirEnum@0 @138 PRIVATE + NetReplImportDirGetInfo@0 @139 PRIVATE + NetReplImportDirLock@0 @140 PRIVATE + NetReplImportDirUnlock@0 @141 PRIVATE + NetReplSetInfo@0 @142 PRIVATE + NetRplAdapterAdd@0 @143 PRIVATE + NetRplAdapterDel@0 @144 PRIVATE + NetRplAdapterEnum@0 @145 PRIVATE + NetRplBootAdd@0 @146 PRIVATE + NetRplBootDel@0 @147 PRIVATE + NetRplBootEnum@0 @148 PRIVATE + NetRplClose@0 @149 PRIVATE + NetRplConfigAdd@0 @150 PRIVATE + NetRplConfigDel@0 @151 PRIVATE + NetRplConfigEnum@0 @152 PRIVATE + NetRplGetInfo@0 @153 PRIVATE + NetRplOpen@0 @154 PRIVATE + NetRplProfileAdd@0 @155 PRIVATE + NetRplProfileClone@0 @156 PRIVATE + NetRplProfileDel@0 @157 PRIVATE + NetRplProfileEnum@0 @158 PRIVATE + NetRplProfileGetInfo@0 @159 PRIVATE + NetRplProfileSetInfo@0 @160 PRIVATE + NetRplSetInfo@0 @161 PRIVATE + NetRplSetSecurity@0 @162 PRIVATE + NetRplVendorAdd@0 @163 PRIVATE + NetRplVendorDel@0 @164 PRIVATE + NetRplVendorEnum@0 @165 PRIVATE + NetRplWkstaAdd@0 @166 PRIVATE + NetRplWkstaClone@0 @167 PRIVATE + NetRplWkstaDel@0 @168 PRIVATE + NetRplWkstaEnum@0 @169 PRIVATE + NetRplWkstaGetInfo@0 @170 PRIVATE + NetRplWkstaSetInfo@0 @171 PRIVATE + NetScheduleJobAdd@12 @172 + NetScheduleJobDel@12 @173 + NetScheduleJobEnum@24 @174 + NetScheduleJobGetInfo@12 @175 + NetServerComputerNameAdd@0 @176 PRIVATE + NetServerComputerNameDel@0 @177 PRIVATE + NetServerDiskEnum@28 @178 + NetServerEnum@36 @179 + NetServerEnumEx@36 @180 + NetServerGetInfo@12 @181 + NetServerSetInfo@0 @182 PRIVATE + NetServerTransportAdd@0 @183 PRIVATE + NetServerTransportAddEx@0 @184 PRIVATE + NetServerTransportDel@0 @185 PRIVATE + NetServerTransportEnum@0 @186 PRIVATE + NetServiceControl@0 @187 PRIVATE + NetServiceEnum@0 @188 PRIVATE + NetServiceGetInfo@0 @189 PRIVATE + NetServiceInstall@0 @190 PRIVATE + NetSessionDel@0 @191 PRIVATE + NetSessionEnum@36 @192 + NetSessionGetInfo@0 @193 PRIVATE + NetShareAdd@16 @194 + NetShareCheck@0 @195 PRIVATE + NetShareDel@12 @196 + NetShareDelSticky@0 @197 PRIVATE + NetShareEnum@28 @198 + NetShareEnumSticky@0 @199 PRIVATE + NetShareGetInfo@16 @200 + NetShareSetInfo@0 @201 PRIVATE + NetStatisticsGet@20 @202 + NetUseAdd@16 @203 + NetUseDel@12 @204 + NetUseEnum@28 @205 + NetUseGetInfo@16 @206 + NetUserAdd@16 @207 + NetUserChangePassword@16 @208 + NetUserDel@8 @209 + NetUserEnum@32 @210 + NetUserGetGroups@28 @211 + NetUserGetInfo@16 @212 + NetUserGetLocalGroups@32 @213 + NetUserModalsGet@12 @214 + NetUserModalsSet@0 @215 PRIVATE + NetUserSetGroups@0 @216 PRIVATE + NetUserSetInfo@0 @217 PRIVATE + NetWkstaGetInfo@12 @218 + NetWkstaSetInfo@0 @219 PRIVATE + NetWkstaTransportAdd@0 @220 PRIVATE + NetWkstaTransportDel@0 @221 PRIVATE + NetWkstaTransportEnum@28 @222 + NetWkstaUserEnum@28 @223 + NetWkstaUserGetInfo@12 @224 + NetWkstaUserSetInfo@0 @225 PRIVATE + NetapipBufferAllocate@8=NetApiBufferAllocate @226 + Netbios@4 @227 + NetpAccessCheck@0 @228 PRIVATE + NetpAccessCheckAndAudit@0 @229 PRIVATE + NetpAllocConfigName@0 @230 PRIVATE + NetpAllocStrFromStr@0 @231 PRIVATE + NetpAllocStrFromWStr@0 @232 PRIVATE + NetpAllocTStrFromString@0 @233 PRIVATE + NetpAllocWStrFromStr@0 @234 PRIVATE + NetpAllocWStrFromWStr@0 @235 PRIVATE + NetpApiStatusToNtStatus@0 @236 PRIVATE + NetpAssertFailed@0 @237 PRIVATE + NetpCloseConfigData@0 @238 PRIVATE + NetpCopyStringToBuffer@0 @239 PRIVATE + NetpCreateSecurityObject@0 @240 PRIVATE + NetpDbgDisplayServerInfo@0 @241 PRIVATE + NetpDbgPrint@0 @242 PRIVATE + NetpDeleteSecurityObject@4=ntdll.RtlDeleteSecurityObject @243 + NetpGetComputerName@4 @244 + NetpGetConfigBool@0 @245 PRIVATE + NetpGetConfigDword@0 @246 PRIVATE + NetpGetConfigTStrArray@0 @247 PRIVATE + NetpGetConfigValue@0 @248 PRIVATE + NetpGetDomainName@0 @249 PRIVATE + NetpGetFileSecurity@0 @250 PRIVATE + NetpGetPrivilege@0 @251 PRIVATE + NetpHexDump@0 @252 PRIVATE + NetpInitOemString@8=ntdll.RtlInitAnsiString @253 + NetpIsRemote@0 @254 PRIVATE + NetpIsUncComputerNameValid@0 @255 PRIVATE + NetpLocalTimeZoneOffset@0 @256 PRIVATE + NetpLogonPutUnicodeString@0 @257 PRIVATE + NetpNetBiosAddName@0 @258 PRIVATE + NetpNetBiosCall@0 @259 PRIVATE + NetpNetBiosDelName@0 @260 PRIVATE + NetpNetBiosGetAdapterNumbers@0 @261 PRIVATE + NetpNetBiosHangup@0 @262 PRIVATE + NetpNetBiosReceive@0 @263 PRIVATE + NetpNetBiosReset@0 @264 PRIVATE + NetpNetBiosSend@0 @265 PRIVATE + NetpNetBiosStatusToApiStatus@4 @266 + NetpNtStatusToApiStatus@0 @267 PRIVATE + NetpOpenConfigData@0 @268 PRIVATE + NetpPackString@0 @269 PRIVATE + NetpReleasePrivilege@0 @270 PRIVATE + NetpSetConfigBool@0 @271 PRIVATE + NetpSetConfigDword@0 @272 PRIVATE + NetpSetConfigTStrArray@0 @273 PRIVATE + NetpSetFileSecurity@0 @274 PRIVATE + NetpSmbCheck@0 @275 PRIVATE + NetpStringToNetBiosName@0 @276 PRIVATE + NetpTStrArrayEntryCount@0 @277 PRIVATE + NetpwNameCanonicalize@0 @278 PRIVATE + NetpwNameCompare@0 @279 PRIVATE + NetpwNameValidate@0 @280 PRIVATE + NetpwPathCanonicalize@0 @281 PRIVATE + NetpwPathCompare@0 @282 PRIVATE + NetpwPathType@0 @283 PRIVATE + NlBindingAddServerToCache@0 @284 PRIVATE + NlBindingRemoveServerFromCache@0 @285 PRIVATE + NlBindingSetAuthInfo@0 @286 PRIVATE + RxNetAccessAdd@0 @287 PRIVATE + RxNetAccessDel@0 @288 PRIVATE + RxNetAccessEnum@0 @289 PRIVATE + RxNetAccessGetInfo@0 @290 PRIVATE + RxNetAccessGetUserPerms@0 @291 PRIVATE + RxNetAccessSetInfo@0 @292 PRIVATE + RxNetServerEnum@0 @293 PRIVATE + RxNetUserPasswordSet@0 @294 PRIVATE + RxRemoteApi@0 @295 PRIVATE diff --git a/lib/wine/libnewdev.def b/lib/wine/libnewdev.def new file mode 100644 index 0000000..130731a --- /dev/null +++ b/lib/wine/libnewdev.def @@ -0,0 +1,23 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/newdev/newdev.spec; do not edit! + +LIBRARY newdev.dll + +EXPORTS + DeviceInternetSettingUiW@0 @1 PRIVATE + DiInstallDevice@0 @2 PRIVATE + DiInstallDriverA@24 @3 + DiInstallDriverW@24 @4 + DiRollbackDriver@0 @5 PRIVATE + DiShowUpdateDevice@0 @6 PRIVATE + DiUninstallDevice@0 @7 PRIVATE + InstallNewDevice@12 @8 + InstallSelectedDriver@20 @9 + InstallWindowsUpdateDriver@0 @10 PRIVATE + SetInternetPolicies@0 @11 PRIVATE + UpdateDriverForPlugAndPlayDevicesA@20 @12 + UpdateDriverForPlugAndPlayDevicesW@20 @13 + pDiDeviceInstallActionW@0 @14 PRIVATE + pDiDeviceInstallNotificationW@0 @15 PRIVATE + pDiDoDeviceInstallAsAdmin@0 @16 PRIVATE + pDiDoFinishInstallAsAdmin@0 @17 PRIVATE + pDiDoNullDriverInstall@0 @18 PRIVATE diff --git a/lib/wine/libninput.def b/lib/wine/libninput.def new file mode 100644 index 0000000..96c52e0 --- /dev/null +++ b/lib/wine/libninput.def @@ -0,0 +1,29 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/ninput/ninput.spec; do not edit! + +LIBRARY ninput.dll + +EXPORTS + DefaultInputHandler@0 @1 PRIVATE + AddPointerInteractionContext@0 @2 PRIVATE + BufferPointerPacketsInteractionContext@0 @3 PRIVATE + CreateInteractionContext@4 @4 + DestroyInteractionContext@4 @5 + GetCrossSlideParameterInteractionContext@0 @6 PRIVATE + GetInertiaParameterInteractionContext@0 @7 PRIVATE + GetInteractionConfigurationInteractionContext@0 @8 PRIVATE + GetMouseWheelParameterInteractionContext@0 @9 PRIVATE + GetPropertyInteractionContext@12 @10 + GetStateInteractionContext@0 @11 PRIVATE + ProcessBufferedPacketsInteractionContext@0 @12 PRIVATE + ProcessInertiaInteractionContext@4 @13 + ProcessPointerFramesInteractionContext@0 @14 PRIVATE + RegisterOutputCallbackInteractionContext@12 @15 + RemovePointerInteractionContext@0 @16 PRIVATE + ResetInteractionContext@0 @17 PRIVATE + SetCrossSlideParametersInteractionContext@0 @18 PRIVATE + SetInertiaParameterInteractionContext@0 @19 PRIVATE + SetInteractionConfigurationInteractionContext@12 @20 + SetMouseWheelParameterInteractionContext@0 @21 PRIVATE + SetPivotInteractionContext@0 @22 PRIVATE + SetPropertyInteractionContext@12 @23 + StopInteractionContext@0 @24 PRIVATE diff --git a/lib/wine/libnormaliz.def b/lib/wine/libnormaliz.def new file mode 100644 index 0000000..f36391e --- /dev/null +++ b/lib/wine/libnormaliz.def @@ -0,0 +1,10 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/normaliz/normaliz.spec; do not edit! + +LIBRARY normaliz.dll + +EXPORTS + IdnToAscii@20=kernel32.IdnToAscii @1 + IdnToNameprepUnicode@20=kernel32.IdnToNameprepUnicode @2 + IdnToUnicode@20=kernel32.IdnToUnicode @3 + IsNormalizedString@12=kernel32.IsNormalizedString @4 + NormalizeString@20=kernel32.NormalizeString @5 diff --git a/lib/wine/libntdll.def b/lib/wine/libntdll.def new file mode 100644 index 0000000..70c1f5f --- /dev/null +++ b/lib/wine/libntdll.def @@ -0,0 +1,1279 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/ntdll/ntdll.spec; do not edit! + +LIBRARY ntdll.dll + +EXPORTS + ApiSetQueryApiSetPresence@8 @1 + CsrAllocateCaptureBuffer@0 @2 PRIVATE + CsrAllocateCapturePointer@0 @3 PRIVATE + CsrAllocateMessagePointer@0 @4 PRIVATE + CsrCaptureMessageBuffer@0 @5 PRIVATE + CsrCaptureMessageString@0 @6 PRIVATE + CsrCaptureTimeout@0 @7 PRIVATE + CsrClientCallServer@0 @8 PRIVATE + CsrClientConnectToServer@0 @9 PRIVATE + CsrClientMaxMessage@0 @10 PRIVATE + CsrClientSendMessage@0 @11 PRIVATE + CsrClientThreadConnect@0 @12 PRIVATE + CsrFreeCaptureBuffer@0 @13 PRIVATE + CsrIdentifyAlertableThread@0 @14 PRIVATE + CsrNewThread@0 @15 PRIVATE + CsrProbeForRead@0 @16 PRIVATE + CsrProbeForWrite@0 @17 PRIVATE + CsrSetPriorityClass@0 @18 PRIVATE + CsrpProcessCallbackRequest@0 @19 PRIVATE + DbgBreakPoint@0 @20 + DbgPrint @21 + DbgPrintEx @22 + DbgPrompt@0 @23 PRIVATE + DbgUiConnectToDbg@0 @24 PRIVATE + DbgUiContinue@0 @25 PRIVATE + DbgUiConvertStateChangeStructure@0 @26 PRIVATE + DbgUiRemoteBreakin@4 @27 + DbgUiWaitStateChange@0 @28 PRIVATE + DbgUserBreakPoint@0 @29 + EtwEventEnabled@12 @30 + EtwEventRegister@16 @31 + EtwEventSetInformation@20 @32 + EtwEventUnregister@8 @33 + EtwEventWrite@20 @34 + EtwRegisterTraceGuidsA@32 @35 + EtwRegisterTraceGuidsW@32 @36 + EtwUnregisterTraceGuids@8 @37 + KiRaiseUserExceptionDispatcher@0 @38 PRIVATE + KiUserApcDispatcher@0 @39 PRIVATE + KiUserCallbackDispatcher@0 @40 PRIVATE + KiUserExceptionDispatcher@0 @41 PRIVATE + LdrAccessResource@16 @42 + LdrAddRefDll@8 @43 + LdrDisableThreadCalloutsForDll@4 @44 + LdrEnumResources@0 @45 PRIVATE + LdrEnumerateLoadedModules@12 @46 + LdrFindEntryForAddress@8 @47 + LdrFindResourceDirectory_U@16 @48 + LdrFindResource_U@16 @49 + LdrFlushAlternateResourceModules@0 @50 PRIVATE + LdrGetDllHandle@16 @51 + LdrGetProcedureAddress@16 @52 + LdrInitShimEngineDynamic@0 @53 PRIVATE + LdrInitializeThunk@16 @54 + LdrLoadAlternateResourceModule@0 @55 PRIVATE + LdrLoadDll@16 @56 + LdrLockLoaderLock@12 @57 + LdrProcessRelocationBlock@16 @58 + LdrQueryImageFileExecutionOptions@24 @59 + LdrQueryProcessModuleInformation@12 @60 + LdrRegisterDllNotification@16 @61 + LdrResolveDelayLoadedAPI@24 @62 + LdrSetAppCompatDllRedirectionCallback@0 @63 PRIVATE + LdrSetDllManifestProber@0 @64 PRIVATE + LdrShutdownProcess@0 @65 + LdrShutdownThread@0 @66 + LdrUnloadAlternateResourceModule@0 @67 PRIVATE + LdrUnloadDll@4 @68 + LdrUnlockLoaderLock@8 @69 + LdrUnregisterDllNotification@4 @70 + LdrVerifyImageMatchesChecksum@0 @71 PRIVATE + NlsAnsiCodePage @72 DATA + NlsMbCodePageTag @73 DATA + NlsMbOemCodePageTag @74 DATA + NtAcceptConnectPort@24=__syscall_NtAcceptConnectPort @75 + NtAccessCheck@32=__syscall_NtAccessCheck @76 + NtAccessCheckAndAuditAlarm@44=__syscall_NtAccessCheckAndAuditAlarm @77 + NtAddAtom@12=__syscall_NtAddAtom @78 + NtAdjustGroupsToken@24=__syscall_NtAdjustGroupsToken @79 + NtAdjustPrivilegesToken@24=__syscall_NtAdjustPrivilegesToken @80 + NtAlertResumeThread@8=__syscall_NtAlertResumeThread @81 + NtAlertThread@4=__syscall_NtAlertThread @82 + NtAllocateLocallyUniqueId@4=__syscall_NtAllocateLocallyUniqueId @83 + NtAllocateUuids@16=__syscall_NtAllocateUuids @84 + NtAllocateVirtualMemory@24=__syscall_NtAllocateVirtualMemory @85 + NtAreMappedFilesTheSame@8=__syscall_NtAreMappedFilesTheSame @86 + NtAssignProcessToJobObject@8=__syscall_NtAssignProcessToJobObject @87 + NtCallbackReturn@0 @88 PRIVATE + NtCancelIoFile@8=__syscall_NtCancelIoFile @89 + NtCancelIoFileEx@12=__syscall_NtCancelIoFileEx @90 + NtCancelTimer@8=__syscall_NtCancelTimer @91 + NtClearEvent@4=__syscall_NtClearEvent @92 + NtClose@4=__syscall_NtClose @93 + NtCloseObjectAuditAlarm@0 @94 PRIVATE + NtCompleteConnectPort@4=__syscall_NtCompleteConnectPort @95 + NtConnectPort@32=__syscall_NtConnectPort @96 + NtContinue@8=__syscall_NtContinue @97 + NtCreateDirectoryObject@12=__syscall_NtCreateDirectoryObject @98 + NtCreateEvent@20=__syscall_NtCreateEvent @99 + NtCreateEventPair@0 @100 PRIVATE + NtCreateFile@44=__syscall_NtCreateFile @101 + NtCreateIoCompletion@16=__syscall_NtCreateIoCompletion @102 + NtCreateJobObject@12=__syscall_NtCreateJobObject @103 + NtCreateKey@28=__syscall_NtCreateKey @104 + NtCreateKeyTransacted@32=__syscall_NtCreateKeyTransacted @105 + NtCreateKeyedEvent@16=__syscall_NtCreateKeyedEvent @106 + NtCreateLowBoxToken@36=__syscall_NtCreateLowBoxToken @107 + NtCreateMailslotFile@32=__syscall_NtCreateMailslotFile @108 + NtCreateMutant@16=__syscall_NtCreateMutant @109 + NtCreateNamedPipeFile@56=__syscall_NtCreateNamedPipeFile @110 + NtCreatePagingFile@16=__syscall_NtCreatePagingFile @111 + NtCreatePort@20=__syscall_NtCreatePort @112 + NtCreateProcess@0 @113 PRIVATE + NtCreateProfile@0 @114 PRIVATE + NtCreateSection@28=__syscall_NtCreateSection @115 + NtCreateSemaphore@20=__syscall_NtCreateSemaphore @116 + NtCreateSymbolicLinkObject@16=__syscall_NtCreateSymbolicLinkObject @117 + NtCreateThread@32=__syscall_NtCreateThread @118 + NtCreateThreadEx@44=__syscall_NtCreateThreadEx @119 + NtCreateTimer@16=__syscall_NtCreateTimer @120 + NtCreateToken@0 @121 PRIVATE + NtCurrentTeb@0=__syscall_NtCurrentTeb @122 + NtDelayExecution@8=__syscall_NtDelayExecution @123 + NtDeleteAtom@4=__syscall_NtDeleteAtom @124 + NtDeleteFile@4=__syscall_NtDeleteFile @125 + NtDeleteKey@4=__syscall_NtDeleteKey @126 + NtDeleteValueKey@8=__syscall_NtDeleteValueKey @127 + NtDeviceIoControlFile@40=__syscall_NtDeviceIoControlFile @128 + NtDisplayString@4=__syscall_NtDisplayString @129 + NtDuplicateObject@28=__syscall_NtDuplicateObject @130 + NtDuplicateToken@24=__syscall_NtDuplicateToken @131 + NtEnumerateBus@0 @132 PRIVATE + NtEnumerateKey@24=__syscall_NtEnumerateKey @133 + NtEnumerateValueKey@24=__syscall_NtEnumerateValueKey @134 + NtExtendSection@0 @135 PRIVATE + NtFilterToken@24=__syscall_NtFilterToken @136 + NtFindAtom@12=__syscall_NtFindAtom @137 + NtFlushBuffersFile@8=__syscall_NtFlushBuffersFile @138 + NtFlushInstructionCache@12=__syscall_NtFlushInstructionCache @139 + NtFlushKey@4=__syscall_NtFlushKey @140 + NtFlushVirtualMemory@16=__syscall_NtFlushVirtualMemory @141 + NtFlushWriteBuffer@0 @142 PRIVATE + NtFreeVirtualMemory@16=__syscall_NtFreeVirtualMemory @143 + NtFsControlFile@40=__syscall_NtFsControlFile @144 + NtGetContextThread@8=__syscall_NtGetContextThread @145 + NtGetCurrentProcessorNumber@0=__syscall_NtGetCurrentProcessorNumber @146 + NtGetPlugPlayEvent@0 @147 PRIVATE + NtGetTickCount@0=__syscall_NtGetTickCount @148 + NtGetWriteWatch@28=__syscall_NtGetWriteWatch @149 + NtImpersonateAnonymousToken@4=__syscall_NtImpersonateAnonymousToken @150 + NtImpersonateClientOfPort@0 @151 PRIVATE + NtImpersonateThread@0 @152 PRIVATE + NtInitializeRegistry@0 @153 PRIVATE + NtInitiatePowerAction@16=__syscall_NtInitiatePowerAction @154 + NtIsProcessInJob@8=__syscall_NtIsProcessInJob @155 + NtListenPort@8=__syscall_NtListenPort @156 + NtLoadDriver@4=__syscall_NtLoadDriver @157 + NtLoadKey2@12=__syscall_NtLoadKey2 @158 + NtLoadKey@8=__syscall_NtLoadKey @159 + NtLockFile@40=__syscall_NtLockFile @160 + NtLockVirtualMemory@16=__syscall_NtLockVirtualMemory @161 + NtMakeTemporaryObject@4=__syscall_NtMakeTemporaryObject @162 + NtMapViewOfSection@40=__syscall_NtMapViewOfSection @163 + NtNotifyChangeDirectoryFile@36=__syscall_NtNotifyChangeDirectoryFile @164 + NtNotifyChangeKey@40=__syscall_NtNotifyChangeKey @165 + NtNotifyChangeMultipleKeys@48=__syscall_NtNotifyChangeMultipleKeys @166 + NtOpenDirectoryObject@12=__syscall_NtOpenDirectoryObject @167 + NtOpenEvent@12=__syscall_NtOpenEvent @168 + NtOpenEventPair@0 @169 PRIVATE + NtOpenFile@24=__syscall_NtOpenFile @170 + NtOpenIoCompletion@12=__syscall_NtOpenIoCompletion @171 + NtOpenJobObject@12=__syscall_NtOpenJobObject @172 + NtOpenKey@12=__syscall_NtOpenKey @173 + NtOpenKeyEx@16=__syscall_NtOpenKeyEx @174 + NtOpenKeyTransacted@16=__syscall_NtOpenKeyTransacted @175 + NtOpenKeyTransactedEx@20=__syscall_NtOpenKeyTransactedEx @176 + NtOpenKeyedEvent@12=__syscall_NtOpenKeyedEvent @177 + NtOpenMutant@12=__syscall_NtOpenMutant @178 + NtOpenObjectAuditAlarm@0 @179 PRIVATE + NtOpenProcess@16=__syscall_NtOpenProcess @180 + NtOpenProcessToken@12=__syscall_NtOpenProcessToken @181 + NtOpenProcessTokenEx@16=__syscall_NtOpenProcessTokenEx @182 + NtOpenSection@12=__syscall_NtOpenSection @183 + NtOpenSemaphore@12=__syscall_NtOpenSemaphore @184 + NtOpenSymbolicLinkObject@12=__syscall_NtOpenSymbolicLinkObject @185 + NtOpenThread@16=__syscall_NtOpenThread @186 + NtOpenThreadToken@16=__syscall_NtOpenThreadToken @187 + NtOpenThreadTokenEx@20=__syscall_NtOpenThreadTokenEx @188 + NtOpenTimer@12=__syscall_NtOpenTimer @189 + NtPlugPlayControl@0 @190 PRIVATE + NtPowerInformation@20=__syscall_NtPowerInformation @191 + NtPrivilegeCheck@12=__syscall_NtPrivilegeCheck @192 + NtPrivilegeObjectAuditAlarm@0 @193 PRIVATE + NtPrivilegedServiceAuditAlarm@0 @194 PRIVATE + NtProtectVirtualMemory@20=__syscall_NtProtectVirtualMemory @195 + NtPulseEvent@8=__syscall_NtPulseEvent @196 + NtQueryAttributesFile@8=__syscall_NtQueryAttributesFile @197 + NtQueryDefaultLocale@8=__syscall_NtQueryDefaultLocale @198 + NtQueryDefaultUILanguage@4=__syscall_NtQueryDefaultUILanguage @199 + NtQueryDirectoryFile@44=__syscall_NtQueryDirectoryFile @200 + NtQueryDirectoryObject@28=__syscall_NtQueryDirectoryObject @201 + NtQueryEaFile@36=__syscall_NtQueryEaFile @202 + NtQueryEvent@20=__syscall_NtQueryEvent @203 + NtQueryFullAttributesFile@8=__syscall_NtQueryFullAttributesFile @204 + NtQueryInformationAtom@20=__syscall_NtQueryInformationAtom @205 + NtQueryInformationFile@20=__syscall_NtQueryInformationFile @206 + NtQueryInformationJobObject@20=__syscall_NtQueryInformationJobObject @207 + NtQueryInformationPort@0 @208 PRIVATE + NtQueryInformationProcess@20=__syscall_NtQueryInformationProcess @209 + NtQueryInformationThread@20=__syscall_NtQueryInformationThread @210 + NtQueryInformationToken@20=__syscall_NtQueryInformationToken @211 + NtQueryInstallUILanguage@4=__syscall_NtQueryInstallUILanguage @212 + NtQueryIntervalProfile@0 @213 PRIVATE + NtQueryIoCompletion@20=__syscall_NtQueryIoCompletion @214 + NtQueryKey@20=__syscall_NtQueryKey @215 + NtQueryLicenseValue@20=__syscall_NtQueryLicenseValue @216 + NtQueryMultipleValueKey@24=__syscall_NtQueryMultipleValueKey @217 + NtQueryMutant@20=__syscall_NtQueryMutant @218 + NtQueryObject@20=__syscall_NtQueryObject @219 + NtQueryOpenSubKeys@0 @220 PRIVATE + NtQueryPerformanceCounter@8=__syscall_NtQueryPerformanceCounter @221 + NtQuerySection@20=__syscall_NtQuerySection @222 + NtQuerySecurityObject@20=__syscall_NtQuerySecurityObject @223 + NtQuerySemaphore@20=__syscall_NtQuerySemaphore @224 + NtQuerySymbolicLinkObject@12=__syscall_NtQuerySymbolicLinkObject @225 + NtQuerySystemEnvironmentValue@16=__syscall_NtQuerySystemEnvironmentValue @226 + NtQuerySystemEnvironmentValueEx@20=__syscall_NtQuerySystemEnvironmentValueEx @227 + NtQuerySystemInformation@16=__syscall_NtQuerySystemInformation @228 + NtQuerySystemInformationEx@24=__syscall_NtQuerySystemInformationEx @229 + NtQuerySystemTime@4=__syscall_NtQuerySystemTime @230 + NtQueryTimer@20=__syscall_NtQueryTimer @231 + NtQueryTimerResolution@12=__syscall_NtQueryTimerResolution @232 + NtQueryValueKey@24=__syscall_NtQueryValueKey @233 + NtQueryVirtualMemory@24=__syscall_NtQueryVirtualMemory @234 + NtQueryVolumeInformationFile@20=__syscall_NtQueryVolumeInformationFile @235 + NtQueueApcThread@20=__syscall_NtQueueApcThread @236 + NtRaiseException@12=__syscall_NtRaiseException @237 + NtRaiseHardError@24=__syscall_NtRaiseHardError @238 + NtReadFile@36=__syscall_NtReadFile @239 + NtReadFileScatter@36=__syscall_NtReadFileScatter @240 + NtReadRequestData@0 @241 PRIVATE + NtReadVirtualMemory@20=__syscall_NtReadVirtualMemory @242 + NtRegisterNewDevice@0 @243 PRIVATE + NtRegisterThreadTerminatePort@4=__syscall_NtRegisterThreadTerminatePort @244 + NtReleaseKeyedEvent@16=__syscall_NtReleaseKeyedEvent @245 + NtReleaseMutant@8=__syscall_NtReleaseMutant @246 + NtReleaseProcessMutant@0 @247 PRIVATE + NtReleaseSemaphore@12=__syscall_NtReleaseSemaphore @248 + NtRemoveIoCompletion@20=__syscall_NtRemoveIoCompletion @249 + NtRemoveIoCompletionEx@24=__syscall_NtRemoveIoCompletionEx @250 + NtRenameKey@8=__syscall_NtRenameKey @251 + NtReplaceKey@12=__syscall_NtReplaceKey @252 + NtReplyPort@0 @253 PRIVATE + NtReplyWaitReceivePort@16=__syscall_NtReplyWaitReceivePort @254 + NtReplyWaitReceivePortEx@0 @255 PRIVATE + NtReplyWaitReplyPort@0 @256 PRIVATE + NtRequestPort@0 @257 PRIVATE + NtRequestWaitReplyPort@12=__syscall_NtRequestWaitReplyPort @258 + NtResetEvent@8=__syscall_NtResetEvent @259 + NtResetWriteWatch@12=__syscall_NtResetWriteWatch @260 + NtRestoreKey@12=__syscall_NtRestoreKey @261 + NtResumeProcess@4=__syscall_NtResumeProcess @262 + NtResumeThread@8=__syscall_NtResumeThread @263 + NtSaveKey@8=__syscall_NtSaveKey @264 + NtSecureConnectPort@36=__syscall_NtSecureConnectPort @265 + NtSetContextThread@8=__syscall_NtSetContextThread @266 + NtSetDebugFilterState@0 @267 PRIVATE + NtSetDefaultHardErrorPort@0 @268 PRIVATE + NtSetDefaultLocale@8=__syscall_NtSetDefaultLocale @269 + NtSetDefaultUILanguage@4=__syscall_NtSetDefaultUILanguage @270 + NtSetEaFile@16=__syscall_NtSetEaFile @271 + NtSetEvent@8=__syscall_NtSetEvent @272 + NtSetHighEventPair@0 @273 PRIVATE + NtSetHighWaitLowEventPair@0 @274 PRIVATE + NtSetHighWaitLowThread@0 @275 PRIVATE + NtSetInformationFile@20=__syscall_NtSetInformationFile @276 + NtSetInformationJobObject@16=__syscall_NtSetInformationJobObject @277 + NtSetInformationKey@16=__syscall_NtSetInformationKey @278 + NtSetInformationObject@16=__syscall_NtSetInformationObject @279 + NtSetInformationProcess@16=__syscall_NtSetInformationProcess @280 + NtSetInformationThread@16=__syscall_NtSetInformationThread @281 + NtSetInformationToken@16=__syscall_NtSetInformationToken @282 + NtSetIntervalProfile@8=__syscall_NtSetIntervalProfile @283 + NtSetIoCompletion@20=__syscall_NtSetIoCompletion @284 + NtSetLdtEntries@24=__syscall_NtSetLdtEntries @285 + NtSetLowEventPair@0 @286 PRIVATE + NtSetLowWaitHighEventPair@0 @287 PRIVATE + NtSetLowWaitHighThread@0 @288 PRIVATE + NtSetSecurityObject@12=__syscall_NtSetSecurityObject @289 + NtSetSystemEnvironmentValue@0 @290 PRIVATE + NtSetSystemInformation@12=__syscall_NtSetSystemInformation @291 + NtSetSystemPowerState@0 @292 PRIVATE + NtSetSystemTime@8=__syscall_NtSetSystemTime @293 + NtSetTimer@28=__syscall_NtSetTimer @294 + NtSetTimerResolution@12=__syscall_NtSetTimerResolution @295 + NtSetValueKey@24=__syscall_NtSetValueKey @296 + NtSetVolumeInformationFile@20=__syscall_NtSetVolumeInformationFile @297 + NtShutdownSystem@4=__syscall_NtShutdownSystem @298 + NtSignalAndWaitForSingleObject@16=__syscall_NtSignalAndWaitForSingleObject @299 + NtStartProfile@0 @300 PRIVATE + NtStopProfile@0 @301 PRIVATE + NtSuspendProcess@4=__syscall_NtSuspendProcess @302 + NtSuspendThread@8=__syscall_NtSuspendThread @303 + NtSystemDebugControl@24=__syscall_NtSystemDebugControl @304 + NtTerminateJobObject@8=__syscall_NtTerminateJobObject @305 + NtTerminateProcess@8=__syscall_NtTerminateProcess @306 + NtTerminateThread@8=__syscall_NtTerminateThread @307 + NtTestAlert@0 @308 PRIVATE + NtUnloadDriver@4=__syscall_NtUnloadDriver @309 + NtUnloadKey@4=__syscall_NtUnloadKey @310 + NtUnloadKeyEx@0 @311 PRIVATE + NtUnlockFile@20=__syscall_NtUnlockFile @312 + NtUnlockVirtualMemory@16=__syscall_NtUnlockVirtualMemory @313 + NtUnmapViewOfSection@8=__syscall_NtUnmapViewOfSection @314 + NtVdmControl@0 @315 PRIVATE + NtW32Call@0 @316 PRIVATE + NtWaitForKeyedEvent@16=__syscall_NtWaitForKeyedEvent @317 + NtWaitForMultipleObjects@20=__syscall_NtWaitForMultipleObjects @318 + NtWaitForProcessMutant@0 @319 PRIVATE + NtWaitForSingleObject@12=__syscall_NtWaitForSingleObject @320 + NtWaitHighEventPair@0 @321 PRIVATE + NtWaitLowEventPair@0 @322 PRIVATE + NtWriteFile@36=__syscall_NtWriteFile @323 + NtWriteFileGather@36=__syscall_NtWriteFileGather @324 + NtWriteRequestData@0 @325 PRIVATE + NtWriteVirtualMemory@20=__syscall_NtWriteVirtualMemory @326 + NtYieldExecution@0=__syscall_NtYieldExecution @327 + PfxFindPrefix@0 @328 PRIVATE + PfxInitialize@0 @329 PRIVATE + PfxInsertPrefix@0 @330 PRIVATE + PfxRemovePrefix@0 @331 PRIVATE + RtlAbortRXact@0 @332 PRIVATE + RtlAbsoluteToSelfRelativeSD@12 @333 + RtlAcquirePebLock@0 @334 + RtlAcquireResourceExclusive@8 @335 + RtlAcquireResourceShared@8 @336 + RtlAcquireSRWLockExclusive@4 @337 + RtlAcquireSRWLockShared@4 @338 + RtlActivateActivationContext@12 @339 + RtlActivateActivationContextEx@0 @340 PRIVATE + RtlActivateActivationContextUnsafeFast@0 @341 PRIVATE + RtlAddAccessAllowedAce@16 @342 + RtlAddAccessAllowedAceEx@20 @343 + RtlAddAccessAllowedObjectAce@28 @344 + RtlAddAccessDeniedAce@16 @345 + RtlAddAccessDeniedAceEx@20 @346 + RtlAddAccessDeniedObjectAce@28 @347 + RtlAddAce@20 @348 + RtlAddActionToRXact@0 @349 PRIVATE + RtlAddAtomToAtomTable@12 @350 + RtlAddAttributeActionToRXact@0 @351 PRIVATE + RtlAddAuditAccessAce@24 @352 + RtlAddAuditAccessAceEx@28 @353 + RtlAddAuditAccessObjectAce@36 @354 + RtlAddMandatoryAce@24 @355 + RtlAddRefActivationContext@4 @356 + RtlAddVectoredContinueHandler@8 @357 + RtlAddVectoredExceptionHandler@8 @358 + RtlAdjustPrivilege@16 @359 + RtlAllocateAndInitializeSid@44 @360 + RtlAllocateHandle@8 @361 + RtlAllocateHeap@12 @362 + RtlAnsiCharToUnicodeChar@4 @363 + RtlAnsiStringToUnicodeSize@4 @364 + RtlAnsiStringToUnicodeString@12 @365 + RtlAppendAsciizToString@8 @366 + RtlAppendStringToString@8 @367 + RtlAppendUnicodeStringToString@8 @368 + RtlAppendUnicodeToString@8 @369 + RtlApplyRXact@0 @370 PRIVATE + RtlApplyRXactNoFlush@0 @371 PRIVATE + RtlAreAllAccessesGranted@8 @372 + RtlAreAnyAccessesGranted@8 @373 + RtlAreBitsClear@12 @374 + RtlAreBitsSet@12 @375 + RtlAssert@16 @376 + RtlCaptureContext@4 @377 + RtlCaptureStackBackTrace@16 @378 + RtlCharToInteger@12 @379 + RtlCheckRegistryKey@8 @380 + RtlClearAllBits@4 @381 + RtlClearBits@12 @382 + RtlClosePropertySet@0 @383 PRIVATE + RtlCompactHeap@8 @384 + RtlCompareMemory@12 @385 + RtlCompareMemoryUlong@12 @386 + RtlCompareString@12 @387 + RtlCompareUnicodeString@12 @388 + RtlCompareUnicodeStrings@20 @389 + RtlCompressBuffer@32 @390 + RtlComputeCrc32@12 @391 + RtlConsoleMultiByteToUnicodeN@0 @392 PRIVATE + RtlConvertExclusiveToShared@0 @393 PRIVATE + RtlConvertLongToLargeInteger@4 @394 + RtlConvertSharedToExclusive@0 @395 PRIVATE + RtlConvertSidToUnicodeString@12 @396 + RtlConvertToAutoInheritSecurityObject@24 @397 + RtlConvertUiListToApiList@0 @398 PRIVATE + RtlConvertUlongToLargeInteger@4 @399 + RtlCopyLuid@8 @400 + RtlCopyLuidAndAttributesArray@12 @401 + RtlCopySecurityDescriptor@8 @402 + RtlCopySid@12 @403 + RtlCopySidAndAttributesArray@0 @404 PRIVATE + RtlCopyString@8 @405 + RtlCopyUnicodeString@8 @406 + RtlCreateAcl@12 @407 + RtlCreateActivationContext@8 @408 + RtlCreateAndSetSD@0 @409 PRIVATE + RtlCreateAtomTable@8 @410 + RtlCreateEnvironment@8 @411 + RtlCreateHeap@24 @412 + RtlCreateProcessParameters@40 @413 + RtlCreateProcessParametersEx@44 @414 + RtlCreatePropertySet@0 @415 PRIVATE + RtlCreateQueryDebugBuffer@8 @416 + RtlCreateRegistryKey@8 @417 + RtlCreateSecurityDescriptor@8 @418 + RtlCreateTagHeap@0 @419 PRIVATE + RtlCreateTimer@28 @420 + RtlCreateTimerQueue@4 @421 + RtlCreateUnicodeString@8 @422 + RtlCreateUnicodeStringFromAsciiz@8 @423 + RtlCreateUserProcess@40 @424 + RtlCreateUserSecurityObject@0 @425 PRIVATE + RtlCreateUserThread@40 @426 + RtlCustomCPToUnicodeN@0 @427 PRIVATE + RtlCutoverTimeToSystemTime@0 @428 PRIVATE + RtlDeNormalizeProcessParams@4 @429 + RtlDeactivateActivationContext@8 @430 + RtlDeactivateActivationContextUnsafeFast@0 @431 PRIVATE + RtlDebugPrintTimes@0 @432 PRIVATE + RtlDecodePointer@4 @433 + RtlDecodeSystemPointer@4=RtlDecodePointer @434 + RtlDecompressBuffer@24 @435 + RtlDecompressFragment@32 @436 + RtlDefaultNpAcl@0 @437 PRIVATE + RtlDelete@0 @438 PRIVATE + RtlDeleteAce@8 @439 + RtlDeleteAtomFromAtomTable@8 @440 + RtlDeleteCriticalSection@4 @441 + RtlDeleteElementGenericTable@0 @442 PRIVATE + RtlDeleteElementGenericTableAvl@0 @443 PRIVATE + RtlDeleteNoSplay@0 @444 PRIVATE + RtlDeleteOwnersRanges@0 @445 PRIVATE + RtlDeleteRange@0 @446 PRIVATE + RtlDeleteRegistryValue@12 @447 + RtlDeleteResource@4 @448 + RtlDeleteSecurityObject@4 @449 + RtlDeleteTimer@12 @450 + RtlDeleteTimerQueueEx@8 @451 + RtlDeregisterWait@4 @452 + RtlDeregisterWaitEx@8 @453 + RtlDestroyAtomTable@4 @454 + RtlDestroyEnvironment@4 @455 + RtlDestroyHandleTable@4 @456 + RtlDestroyHeap@4 @457 + RtlDestroyProcessParameters@4 @458 + RtlDestroyQueryDebugBuffer@4 @459 + RtlDetermineDosPathNameType_U@4 @460 + RtlDllShutdownInProgress@0 @461 + RtlDoesFileExists_U@4 @462 + RtlDosPathNameToNtPathName_U@16 @463 + RtlDosPathNameToNtPathName_U_WithStatus@16 @464 + RtlDosPathNameToRelativeNtPathName_U_WithStatus@16 @465 + RtlDosSearchPath_U@24 @466 + RtlDowncaseUnicodeChar@4 @467 + RtlDowncaseUnicodeString@12 @468 + RtlDumpResource@4 @469 + RtlDuplicateUnicodeString@12 @470 + RtlEmptyAtomTable@8 @471 + RtlEncodePointer@4 @472 + RtlEncodeSystemPointer@4=RtlEncodePointer @473 + RtlEnlargedIntegerMultiply@8 @474 + RtlEnlargedUnsignedDivide@16 @475 + RtlEnlargedUnsignedMultiply@8 @476 + RtlEnterCriticalSection@4 @477 + RtlEnumProcessHeaps@0 @478 PRIVATE + RtlEnumerateGenericTable@0 @479 PRIVATE + RtlEnumerateGenericTableWithoutSplaying@8 @480 + RtlEnumerateProperties@0 @481 PRIVATE + RtlEqualComputerName@8 @482 + RtlEqualDomainName@8 @483 + RtlEqualLuid@8 @484 + RtlEqualPrefixSid@8 @485 + RtlEqualSid@8 @486 + RtlEqualString@12 @487 + RtlEqualUnicodeString@12 @488 + RtlEraseUnicodeString@4 @489 + RtlExitUserProcess@4 @490 + RtlExitUserThread@4 @491 + RtlExpandEnvironmentStrings@24 @492 + RtlExpandEnvironmentStrings_U@16 @493 + RtlExtendHeap@0 @494 PRIVATE + RtlExtendedIntegerMultiply@12 @495 + RtlExtendedLargeIntegerDivide@16 @496 + RtlExtendedMagicDivide@20 @497 + RtlFillMemory@12 @498 + RtlFillMemoryUlong@12 @499 + RtlFinalReleaseOutOfProcessMemoryStream@0 @500 PRIVATE + RtlFindActivationContextSectionGuid@20 @501 + RtlFindActivationContextSectionString@20 @502 + RtlFindCharInUnicodeString@16 @503 + RtlFindClearBits@12 @504 + RtlFindClearBitsAndSet@12 @505 + RtlFindClearRuns@16 @506 + RtlFindLastBackwardRunClear@12 @507 + RtlFindLastBackwardRunSet@12 @508 + RtlFindLeastSignificantBit@8 @509 + RtlFindLongestRunClear@8 @510 + RtlFindLongestRunSet@8 @511 + RtlFindMessage@20 @512 + RtlFindMostSignificantBit@8 @513 + RtlFindNextForwardRunClear@12 @514 + RtlFindNextForwardRunSet@12 @515 + RtlFindRange@0 @516 PRIVATE + RtlFindSetBits@12 @517 + RtlFindSetBitsAndClear@12 @518 + RtlFindSetRuns@16 @519 + RtlFirstEntrySList@4 @520 + RtlFirstFreeAce@8 @521 + RtlFlushPropertySet@0 @522 PRIVATE + RtlFormatCurrentUserKeyPath@4 @523 + RtlFormatMessage@32 @524 + RtlFreeAnsiString@4 @525 + RtlFreeHandle@8 @526 + RtlFreeHeap@12 @527 + RtlFreeOemString@4 @528 + RtlFreeSid@4 @529 + RtlFreeThreadActivationContextStack@0 @530 + RtlFreeUnicodeString@4 @531 + RtlFreeUserThreadStack@0 @532 PRIVATE + RtlGUIDFromString@8 @533 + RtlGenerate8dot3Name@0 @534 PRIVATE + RtlGetAce@12 @535 + RtlGetActiveActivationContext@4 @536 + RtlGetCallersAddress@0 @537 PRIVATE + RtlGetCompressionWorkSpaceSize@12 @538 + RtlGetControlSecurityDescriptor@12 @539 + RtlGetCurrentDirectory_U@8 @540 + RtlGetCurrentPeb@0 @541 + RtlGetCurrentProcessorNumberEx@4 @542 + RtlGetCurrentTransaction@0 @543 + RtlGetDaclSecurityDescriptor@16 @544 + RtlGetElementGenericTable@0 @545 PRIVATE + RtlGetFrame@0 @546 + RtlGetFullPathName_U@16 @547 + RtlGetGroupSecurityDescriptor@12 @548 + RtlGetLastNtStatus@0 @549 + RtlGetLastWin32Error@0 @550 + RtlGetLongestNtPathLength@0 @551 + RtlGetNtGlobalFlags@0 @552 + RtlGetNtProductType@4 @553 + RtlGetNtVersionNumbers@12 @554 + RtlGetOwnerSecurityDescriptor@12 @555 + RtlGetProductInfo@20 @556 + RtlGetProcessHeaps@8 @557 + RtlGetSaclSecurityDescriptor@16 @558 + RtlGetThreadErrorMode@0 @559 + RtlGetUnloadEventTrace@0 @560 + RtlGetUnloadEventTraceEx@12 @561 + RtlGetUserInfoHeap@0 @562 PRIVATE + RtlGetVersion@4 @563 + RtlGuidToPropertySetName@0 @564 PRIVATE + RtlHashUnicodeString@16 @565 + RtlIdentifierAuthoritySid@4 @566 + RtlImageDirectoryEntryToData@16 @567 + RtlImageNtHeader@4 @568 + RtlImageRvaToSection@12 @569 + RtlImageRvaToVa@16 @570 + RtlImpersonateSelf@4 @571 + RtlInitAnsiString@8 @572 + RtlInitAnsiStringEx@8 @573 + RtlInitCodePageTable@0 @574 PRIVATE + RtlInitNlsTables@0 @575 PRIVATE + RtlInitString@8 @576 + RtlInitUnicodeString@8 @577 + RtlInitUnicodeStringEx@8 @578 + RtlInitializeBitMap@12 @579 + RtlInitializeConditionVariable@4 @580 + RtlInitializeContext@0 @581 PRIVATE + RtlInitializeCriticalSection@4 @582 + RtlInitializeCriticalSectionAndSpinCount@8 @583 + RtlInitializeCriticalSectionEx@12 @584 + RtlInitializeGenericTable@20 @585 + RtlInitializeGenericTableAvl@20 @586 + RtlInitializeHandleTable@12 @587 + RtlInitializeRXact@0 @588 PRIVATE + RtlInitializeResource@4 @589 + RtlInitializeSListHead@4 @590 + RtlInitializeSRWLock@4 @591 + RtlInitializeSid@12 @592 + RtlInsertElementGenericTable@0 @593 PRIVATE + RtlInsertElementGenericTableAvl@16 @594 + RtlInt64ToUnicodeString@16 @595 + RtlIntegerToChar@16 @596 + RtlIntegerToUnicodeString@12 @597 + RtlInterlockedCompareExchange64@20 @598 + RtlInterlockedFlushSList@4 @599 + RtlInterlockedPopEntrySList@4 @600 + RtlInterlockedPushEntrySList@8 @601 + RtlInterlockedPushListSList@16=__fastcall_RtlInterlockedPushListSList @602 + RtlInterlockedPushListSListEx@16 @603 + RtlIpv4AddressToStringA@8 @604 + RtlIpv4AddressToStringExA@16 @605 + RtlIpv4AddressToStringExW@16 @606 + RtlIpv4AddressToStringW@8 @607 + RtlIpv4StringToAddressExW@16 @608 + RtlIpv4StringToAddressW@16 @609 + RtlIpv6StringToAddressExW@16 @610 + RtlIsActivationContextActive@4 @611 + RtlIsCriticalSectionLocked@4 @612 + RtlIsCriticalSectionLockedByThread@4 @613 + RtlIsDosDeviceName_U@4 @614 + RtlIsGenericTableEmpty@0 @615 PRIVATE + RtlIsNameLegalDOS8Dot3@12 @616 + RtlIsProcessorFeaturePresent@4 @617 + RtlIsTextUnicode@12 @618 + RtlIsValidHandle@8 @619 + RtlIsValidIndexHandle@12 @620 + RtlLargeIntegerAdd@16 @621 + RtlLargeIntegerArithmeticShift@12 @622 + RtlLargeIntegerDivide@20 @623 + RtlLargeIntegerNegate@8 @624 + RtlLargeIntegerShiftLeft@12 @625 + RtlLargeIntegerShiftRight@12 @626 + RtlLargeIntegerSubtract@16 @627 + RtlLargeIntegerToChar@16 @628 + RtlLeaveCriticalSection@4 @629 + RtlLengthRequiredSid@4 @630 + RtlLengthSecurityDescriptor@4 @631 + RtlLengthSid@4 @632 + RtlLocalTimeToSystemTime@8 @633 + RtlLockHeap@4 @634 + RtlLookupAtomInAtomTable@12 @635 + RtlLookupElementGenericTable@0 @636 PRIVATE + RtlMakeSelfRelativeSD@12 @637 + RtlMapGenericMask@8 @638 + RtlMoveMemory@12 @639 + RtlMultiByteToUnicodeN@20 @640 + RtlMultiByteToUnicodeSize@12 @641 + RtlNewInstanceSecurityObject@0 @642 PRIVATE + RtlNewSecurityGrantedAccess@0 @643 PRIVATE + RtlNewSecurityObject@24 @644 + RtlNormalizeProcessParams@4 @645 + RtlNtStatusToDosError@4 @646 + RtlNtStatusToDosErrorNoTeb@4 @647 + RtlNumberGenericTableElements@4 @648 + RtlNumberOfClearBits@4 @649 + RtlNumberOfSetBits@4 @650 + RtlOemStringToUnicodeSize@4 @651 + RtlOemStringToUnicodeString@12 @652 + RtlOemToUnicodeN@20 @653 + RtlOpenCurrentUser@8 @654 + RtlPcToFileHeader@8 @655 + RtlPinAtomInAtomTable@8 @656 + RtlPopFrame@4 @657 + RtlPrefixString@12 @658 + RtlPrefixUnicodeString@12 @659 + RtlPropertySetNameToGuid@0 @660 PRIVATE + RtlProtectHeap@0 @661 PRIVATE + RtlPushFrame@4 @662 + RtlQueryActivationContextApplicationSettings@28 @663 + RtlQueryAtomInAtomTable@24 @664 + RtlQueryDepthSList@4 @665 + RtlQueryDynamicTimeZoneInformation@4 @666 + RtlQueryEnvironmentVariable_U@12 @667 + RtlQueryHeapInformation@20 @668 + RtlQueryInformationAcl@16 @669 + RtlQueryInformationActivationContext@28 @670 + RtlQueryInformationActiveActivationContext@0 @671 PRIVATE + RtlQueryInterfaceMemoryStream@0 @672 PRIVATE + RtlQueryPackageIdentity@24 @673 + RtlQueryProcessBackTraceInformation@0 @674 PRIVATE + RtlQueryProcessDebugInformation@12 @675 + RtlQueryProcessHeapInformation@0 @676 PRIVATE + RtlQueryProcessLockInformation@0 @677 PRIVATE + RtlQueryProperties@0 @678 PRIVATE + RtlQueryPropertyNames@0 @679 PRIVATE + RtlQueryPropertySet@0 @680 PRIVATE + RtlQueryRegistryValues@20 @681 + RtlQuerySecurityObject@0 @682 PRIVATE + RtlQueryTagHeap@0 @683 PRIVATE + RtlQueryTimeZoneInformation@4 @684 + RtlQueryUnbiasedInterruptTime@4 @685 + RtlQueueApcWow64Thread@0 @686 PRIVATE + RtlQueueWorkItem@12 @687 + RtlRaiseException@4 @688 + RtlRaiseStatus@4 @689 + RtlRandom@4 @690 + RtlRandomEx@4 @691 + RtlReAllocateHeap@16 @692 + RtlReadMemoryStream@0 @693 PRIVATE + RtlReadOutOfProcessMemoryStream@0 @694 PRIVATE + RtlRealPredecessor@0 @695 PRIVATE + RtlRealSuccessor@0 @696 PRIVATE + RtlRegisterSecureMemoryCacheCallback@0 @697 PRIVATE + RtlRegisterWait@24 @698 + RtlReleaseActivationContext@4 @699 + RtlReleaseMemoryStream@0 @700 PRIVATE + RtlReleasePebLock@0 @701 + RtlReleaseRelativeName@4 @702 + RtlReleaseResource@4 @703 + RtlReleaseSRWLockExclusive@4 @704 + RtlReleaseSRWLockShared@4 @705 + RtlRemoteCall@0 @706 PRIVATE + RtlRemoveVectoredContinueHandler@4 @707 + RtlRemoveVectoredExceptionHandler@4 @708 + RtlResetRtlTranslations@0 @709 PRIVATE + RtlRestoreLastWin32Error@4=RtlSetLastWin32Error @710 + RtlRevertMemoryStream@0 @711 PRIVATE + RtlRunDecodeUnicodeString@0 @712 PRIVATE + RtlRunEncodeUnicodeString@0 @713 PRIVATE + RtlRunOnceBeginInitialize@12 @714 + RtlRunOnceComplete@12 @715 + RtlRunOnceExecuteOnce@16 @716 + RtlRunOnceInitialize@4 @717 + RtlSecondsSince1970ToTime@8 @718 + RtlSecondsSince1980ToTime@8 @719 + RtlSelfRelativeToAbsoluteSD@44 @720 + RtlSetAllBits@4 @721 + RtlSetBits@12 @722 + RtlSetControlSecurityDescriptor@12 @723 + RtlSetCriticalSectionSpinCount@8 @724 + RtlSetCurrentDirectory_U@4 @725 + RtlSetCurrentEnvironment@8 @726 + RtlSetCurrentTransaction@4 @727 + RtlSetDaclSecurityDescriptor@16 @728 + RtlSetEnvironmentVariable@12 @729 + RtlSetGroupSecurityDescriptor@12 @730 + RtlSetHeapInformation@16 @731 + RtlSetInformationAcl@0 @732 PRIVATE + RtlSetIoCompletionCallback@12 @733 + RtlSetLastWin32Error@4 @734 + RtlSetLastWin32ErrorAndNtStatusFromNtStatus@4 @735 + RtlSetOwnerSecurityDescriptor@12 @736 + RtlSetProperties@0 @737 PRIVATE + RtlSetPropertyClassId@0 @738 PRIVATE + RtlSetPropertyNames@0 @739 PRIVATE + RtlSetPropertySetClassId@0 @740 PRIVATE + RtlSetSaclSecurityDescriptor@16 @741 + RtlSetSecurityObject@0 @742 PRIVATE + RtlSetThreadErrorMode@8 @743 + RtlSetTimeZoneInformation@4 @744 + RtlSetUnhandledExceptionFilter@4 @745 + RtlSetUnicodeCallouts@0 @746 PRIVATE + RtlSetUserFlagsHeap@0 @747 PRIVATE + RtlSetUserValueHeap@0 @748 PRIVATE + RtlSizeHeap@12 @749 + RtlSleepConditionVariableCS@12 @750 + RtlSleepConditionVariableSRW@16 @751 + RtlSplay@0 @752 PRIVATE + RtlStartRXact@0 @753 PRIVATE + RtlStringFromGUID@8 @754 + RtlSubAuthorityCountSid@4 @755 + RtlSubAuthoritySid@8 @756 + RtlSubtreePredecessor@0 @757 PRIVATE + RtlSubtreeSuccessor@0 @758 PRIVATE + RtlSystemTimeToLocalTime@8 @759 + RtlTimeFieldsToTime@8 @760 + RtlTimeToElapsedTimeFields@8 @761 + RtlTimeToSecondsSince1970@8 @762 + RtlTimeToSecondsSince1980@8 @763 + RtlTimeToTimeFields@8 @764 + RtlTryAcquireSRWLockExclusive@4 @765 + RtlTryAcquireSRWLockShared@4 @766 + RtlTryEnterCriticalSection@4 @767 + RtlUlongByteSwap=NTDLL_RtlUlongByteSwap @768 + RtlUlonglongByteSwap @769 + RtlUnicodeStringToAnsiSize@4 @770 + RtlUnicodeStringToAnsiString@12 @771 + RtlUnicodeStringToCountedOemString@0 @772 PRIVATE + RtlUnicodeStringToInteger@12 @773 + RtlUnicodeStringToOemSize@4 @774 + RtlUnicodeStringToOemString@12 @775 + RtlUnicodeToCustomCPN@0 @776 PRIVATE + RtlUnicodeToMultiByteN@20 @777 + RtlUnicodeToMultiByteSize@12 @778 + RtlUnicodeToOemN@20 @779 + RtlUniform@4 @780 + RtlUnlockHeap@4 @781 + RtlUnwind@16 @782 + RtlUpcaseUnicodeChar@4 @783 + RtlUpcaseUnicodeString@12 @784 + RtlUpcaseUnicodeStringToAnsiString@12 @785 + RtlUpcaseUnicodeStringToCountedOemString@12 @786 + RtlUpcaseUnicodeStringToOemString@12 @787 + RtlUpcaseUnicodeToCustomCPN@0 @788 PRIVATE + RtlUpcaseUnicodeToMultiByteN@20 @789 + RtlUpcaseUnicodeToOemN@20 @790 + RtlUpdateTimer@16 @791 + RtlUpperChar@4 @792 + RtlUpperString@8 @793 + RtlUsageHeap@0 @794 PRIVATE + RtlUshortByteSwap=NTDLL_RtlUshortByteSwap @795 + RtlValidAcl@4 @796 + RtlValidRelativeSecurityDescriptor@12 @797 + RtlValidSecurityDescriptor@4 @798 + RtlValidSid@4 @799 + RtlValidateHeap@12 @800 + RtlValidateProcessHeaps@0 @801 PRIVATE + RtlVerifyVersionInfo@16 @802 + RtlWaitOnAddress@16 @803 + RtlWakeAddressAll@4 @804 + RtlWakeAddressSingle@4 @805 + RtlWakeAllConditionVariable@4 @806 + RtlWakeConditionVariable@4 @807 + RtlWalkFrameChain@0 @808 PRIVATE + RtlWalkHeap@8 @809 + RtlWow64EnableFsRedirection@4 @810 + RtlWow64EnableFsRedirectionEx@8 @811 + RtlWriteMemoryStream@0 @812 PRIVATE + RtlWriteRegistryValue@24 @813 + RtlZeroHeap@0 @814 PRIVATE + RtlZeroMemory@8 @815 + RtlZombifyActivationContext@4 @816 + RtlpNtCreateKey@28 @817 + RtlpNtEnumerateSubKey@12 @818 + RtlpNtMakeTemporaryKey@4 @819 + RtlpNtOpenKey@12 @820 + RtlpNtQueryValueKey@20 @821 + RtlpNtSetValueKey@16 @822 + RtlpUnWaitCriticalSection@4 @823 + RtlpWaitForCriticalSection@4 @824 + RtlxAnsiStringToUnicodeSize@4=RtlAnsiStringToUnicodeSize @825 + RtlxOemStringToUnicodeSize@4=RtlOemStringToUnicodeSize @826 + RtlxUnicodeStringToAnsiSize@4=RtlUnicodeStringToAnsiSize @827 + RtlxUnicodeStringToOemSize@4=RtlUnicodeStringToOemSize @828 + TpAllocCleanupGroup@4 @829 + TpAllocPool@8 @830 + TpAllocTimer@16 @831 + TpAllocWait@16 @832 + TpAllocWork@16 @833 + TpCallbackLeaveCriticalSectionOnCompletion@8 @834 + TpCallbackMayRunLong@4 @835 + TpCallbackReleaseMutexOnCompletion@8 @836 + TpCallbackReleaseSemaphoreOnCompletion@12 @837 + TpCallbackSetEventOnCompletion@8 @838 + TpCallbackUnloadDllOnCompletion@8 @839 + TpDisassociateCallback@4 @840 + TpIsTimerSet@4 @841 + TpPostWork@4 @842 + TpReleaseCleanupGroup@4 @843 + TpReleaseCleanupGroupMembers@12 @844 + TpReleasePool@4 @845 + TpReleaseTimer@4 @846 + TpReleaseWait@4 @847 + TpReleaseWork@4 @848 + TpSetPoolMaxThreads@8 @849 + TpSetPoolMinThreads@8 @850 + TpSetTimer@16 @851 + TpSetWait@12 @852 + TpSimpleTryPost@12 @853 + TpWaitForTimer@8 @854 + TpWaitForWait@8 @855 + TpWaitForWork@8 @856 + VerSetConditionMask@16 @857 + WinSqmEndSession@4 @858 + WinSqmIncrementDWORD@12 @859 + WinSqmIsOptedIn@0 @860 + WinSqmSetDWORD@12 @861 + WinSqmStartSession@12 @862 + Wow64Transition @863 DATA + ZwAcceptConnectPort@24=__syscall_NtAcceptConnectPort @864 PRIVATE + ZwAccessCheck@32=__syscall_NtAccessCheck @865 PRIVATE + ZwAccessCheckAndAuditAlarm@44=__syscall_NtAccessCheckAndAuditAlarm @866 PRIVATE + ZwAddAtom@12=__syscall_NtAddAtom @867 PRIVATE + ZwAdjustGroupsToken@24=__syscall_NtAdjustGroupsToken @868 PRIVATE + ZwAdjustPrivilegesToken@24=__syscall_NtAdjustPrivilegesToken @869 PRIVATE + ZwAlertResumeThread@8=__syscall_NtAlertResumeThread @870 PRIVATE + ZwAlertThread@4=__syscall_NtAlertThread @871 PRIVATE + ZwAllocateLocallyUniqueId@4=__syscall_NtAllocateLocallyUniqueId @872 PRIVATE + ZwAllocateUuids@16=__syscall_NtAllocateUuids @873 PRIVATE + ZwAllocateVirtualMemory@24=__syscall_NtAllocateVirtualMemory @874 PRIVATE + ZwAreMappedFilesTheSame@8=__syscall_NtAreMappedFilesTheSame @875 PRIVATE + ZwAssignProcessToJobObject@8=__syscall_NtAssignProcessToJobObject @876 PRIVATE + ZwCallbackReturn@0 @877 PRIVATE + ZwCancelIoFile@8=__syscall_NtCancelIoFile @878 PRIVATE + ZwCancelIoFileEx@12=__syscall_NtCancelIoFileEx @879 PRIVATE + ZwCancelTimer@8=__syscall_NtCancelTimer @880 PRIVATE + ZwClearEvent@4=__syscall_NtClearEvent @881 PRIVATE + ZwClose@4=__syscall_NtClose @882 PRIVATE + ZwCloseObjectAuditAlarm@0 @883 PRIVATE + ZwCompleteConnectPort@4=__syscall_NtCompleteConnectPort @884 PRIVATE + ZwConnectPort@32=__syscall_NtConnectPort @885 PRIVATE + ZwContinue@8=__syscall_NtContinue @886 PRIVATE + ZwCreateDirectoryObject@12=__syscall_NtCreateDirectoryObject @887 PRIVATE + ZwCreateEvent@20=__syscall_NtCreateEvent @888 PRIVATE + ZwCreateEventPair@0 @889 PRIVATE + ZwCreateFile@44=__syscall_NtCreateFile @890 PRIVATE + ZwCreateIoCompletion@16=__syscall_NtCreateIoCompletion @891 PRIVATE + ZwCreateJobObject@12=__syscall_NtCreateJobObject @892 PRIVATE + ZwCreateKey@28=__syscall_NtCreateKey @893 PRIVATE + ZwCreateKeyTransacted@32=__syscall_NtCreateKeyTransacted @894 PRIVATE + ZwCreateKeyedEvent@16=__syscall_NtCreateKeyedEvent @895 PRIVATE + ZwCreateMailslotFile@32=__syscall_NtCreateMailslotFile @896 PRIVATE + ZwCreateMutant@16=__syscall_NtCreateMutant @897 PRIVATE + ZwCreateNamedPipeFile@56=__syscall_NtCreateNamedPipeFile @898 PRIVATE + ZwCreatePagingFile@16=__syscall_NtCreatePagingFile @899 PRIVATE + ZwCreatePort@20=__syscall_NtCreatePort @900 PRIVATE + ZwCreateProcess@0 @901 PRIVATE + ZwCreateProfile@0 @902 PRIVATE + ZwCreateSection@28=__syscall_NtCreateSection @903 PRIVATE + ZwCreateSemaphore@20=__syscall_NtCreateSemaphore @904 PRIVATE + ZwCreateSymbolicLinkObject@16=__syscall_NtCreateSymbolicLinkObject @905 PRIVATE + ZwCreateThread@0 @906 PRIVATE + ZwCreateTimer@16=__syscall_NtCreateTimer @907 PRIVATE + ZwCreateToken@0 @908 PRIVATE + ZwDelayExecution@8=__syscall_NtDelayExecution @909 PRIVATE + ZwDeleteAtom@4=__syscall_NtDeleteAtom @910 PRIVATE + ZwDeleteFile@4=__syscall_NtDeleteFile @911 PRIVATE + ZwDeleteKey@4=__syscall_NtDeleteKey @912 PRIVATE + ZwDeleteValueKey@8=__syscall_NtDeleteValueKey @913 PRIVATE + ZwDeviceIoControlFile@40=__syscall_NtDeviceIoControlFile @914 PRIVATE + ZwDisplayString@4=__syscall_NtDisplayString @915 PRIVATE + ZwDuplicateObject@28=__syscall_NtDuplicateObject @916 PRIVATE + ZwDuplicateToken@24=__syscall_NtDuplicateToken @917 PRIVATE + ZwEnumerateBus@0 @918 PRIVATE + ZwEnumerateKey@24=__syscall_NtEnumerateKey @919 PRIVATE + ZwEnumerateValueKey@24=__syscall_NtEnumerateValueKey @920 PRIVATE + ZwExtendSection@0 @921 PRIVATE + ZwFindAtom@12=__syscall_NtFindAtom @922 PRIVATE + ZwFlushBuffersFile@8=__syscall_NtFlushBuffersFile @923 PRIVATE + ZwFlushInstructionCache@12=__syscall_NtFlushInstructionCache @924 PRIVATE + ZwFlushKey@4=__syscall_NtFlushKey @925 PRIVATE + ZwFlushVirtualMemory@16=__syscall_NtFlushVirtualMemory @926 PRIVATE + ZwFlushWriteBuffer@0 @927 PRIVATE + ZwFreeVirtualMemory@16=__syscall_NtFreeVirtualMemory @928 PRIVATE + ZwFsControlFile@40=__syscall_NtFsControlFile @929 PRIVATE + ZwGetContextThread@8=__syscall_NtGetContextThread @930 PRIVATE + ZwGetCurrentProcessorNumber@0=__syscall_NtGetCurrentProcessorNumber @931 PRIVATE + ZwGetPlugPlayEvent@0 @932 PRIVATE + ZwGetTickCount@0=__syscall_NtGetTickCount @933 PRIVATE + ZwGetWriteWatch@28=__syscall_NtGetWriteWatch @934 PRIVATE + ZwImpersonateAnonymousToken@4=__syscall_NtImpersonateAnonymousToken @935 PRIVATE + ZwImpersonateClientOfPort@0 @936 PRIVATE + ZwImpersonateThread@0 @937 PRIVATE + ZwInitializeRegistry@0 @938 PRIVATE + ZwInitiatePowerAction@16=__syscall_NtInitiatePowerAction @939 PRIVATE + ZwIsProcessInJob@8=__syscall_NtIsProcessInJob @940 PRIVATE + ZwListenPort@8=__syscall_NtListenPort @941 PRIVATE + ZwLoadDriver@4=__syscall_NtLoadDriver @942 PRIVATE + ZwLoadKey2@12=__syscall_NtLoadKey2 @943 PRIVATE + ZwLoadKey@8=__syscall_NtLoadKey @944 PRIVATE + ZwLockFile@40=__syscall_NtLockFile @945 PRIVATE + ZwLockVirtualMemory@16=__syscall_NtLockVirtualMemory @946 PRIVATE + ZwMakeTemporaryObject@4=__syscall_NtMakeTemporaryObject @947 PRIVATE + ZwMapViewOfSection@40=__syscall_NtMapViewOfSection @948 PRIVATE + ZwNotifyChangeDirectoryFile@36=__syscall_NtNotifyChangeDirectoryFile @949 PRIVATE + ZwNotifyChangeKey@40=__syscall_NtNotifyChangeKey @950 PRIVATE + ZwNotifyChangeMultipleKeys@48=__syscall_NtNotifyChangeMultipleKeys @951 PRIVATE + ZwOpenDirectoryObject@12=__syscall_NtOpenDirectoryObject @952 PRIVATE + ZwOpenEvent@12=__syscall_NtOpenEvent @953 PRIVATE + ZwOpenEventPair@0 @954 PRIVATE + ZwOpenFile@24=__syscall_NtOpenFile @955 PRIVATE + ZwOpenIoCompletion@12=__syscall_NtOpenIoCompletion @956 PRIVATE + ZwOpenJobObject@12=__syscall_NtOpenJobObject @957 PRIVATE + ZwOpenKey@12=__syscall_NtOpenKey @958 PRIVATE + ZwOpenKeyEx@16=__syscall_NtOpenKeyEx @959 PRIVATE + ZwOpenKeyTransacted@16=__syscall_NtOpenKeyTransacted @960 PRIVATE + ZwOpenKeyTransactedEx@20=__syscall_NtOpenKeyTransactedEx @961 PRIVATE + ZwOpenKeyedEvent@12=__syscall_NtOpenKeyedEvent @962 PRIVATE + ZwOpenMutant@12=__syscall_NtOpenMutant @963 PRIVATE + ZwOpenObjectAuditAlarm@0 @964 PRIVATE + ZwOpenProcess@16=__syscall_NtOpenProcess @965 PRIVATE + ZwOpenProcessToken@12=__syscall_NtOpenProcessToken @966 PRIVATE + ZwOpenProcessTokenEx@16=__syscall_NtOpenProcessTokenEx @967 PRIVATE + ZwOpenSection@12=__syscall_NtOpenSection @968 PRIVATE + ZwOpenSemaphore@12=__syscall_NtOpenSemaphore @969 PRIVATE + ZwOpenSymbolicLinkObject@12=__syscall_NtOpenSymbolicLinkObject @970 PRIVATE + ZwOpenThread@16=__syscall_NtOpenThread @971 PRIVATE + ZwOpenThreadToken@16=__syscall_NtOpenThreadToken @972 PRIVATE + ZwOpenThreadTokenEx@20=__syscall_NtOpenThreadTokenEx @973 PRIVATE + ZwOpenTimer@12=__syscall_NtOpenTimer @974 PRIVATE + ZwPlugPlayControl@0 @975 PRIVATE + ZwPowerInformation@20=__syscall_NtPowerInformation @976 PRIVATE + ZwPrivilegeCheck@12=__syscall_NtPrivilegeCheck @977 PRIVATE + ZwPrivilegeObjectAuditAlarm@0 @978 PRIVATE + ZwPrivilegedServiceAuditAlarm@0 @979 PRIVATE + ZwProtectVirtualMemory@20=__syscall_NtProtectVirtualMemory @980 PRIVATE + ZwPulseEvent@8=__syscall_NtPulseEvent @981 PRIVATE + ZwQueryAttributesFile@8=__syscall_NtQueryAttributesFile @982 PRIVATE + ZwQueryDefaultLocale@8=__syscall_NtQueryDefaultLocale @983 PRIVATE + ZwQueryDefaultUILanguage@4=__syscall_NtQueryDefaultUILanguage @984 PRIVATE + ZwQueryDirectoryFile@44=__syscall_NtQueryDirectoryFile @985 PRIVATE + ZwQueryDirectoryObject@28=__syscall_NtQueryDirectoryObject @986 PRIVATE + ZwQueryEaFile@36=__syscall_NtQueryEaFile @987 PRIVATE + ZwQueryEvent@20=__syscall_NtQueryEvent @988 PRIVATE + ZwQueryFullAttributesFile@8=__syscall_NtQueryFullAttributesFile @989 PRIVATE + ZwQueryInformationAtom@20=__syscall_NtQueryInformationAtom @990 PRIVATE + ZwQueryInformationFile@20=__syscall_NtQueryInformationFile @991 PRIVATE + ZwQueryInformationJobObject@20=__syscall_NtQueryInformationJobObject @992 PRIVATE + ZwQueryInformationPort@0 @993 PRIVATE + ZwQueryInformationProcess@20=__syscall_NtQueryInformationProcess @994 PRIVATE + ZwQueryInformationThread@20=__syscall_NtQueryInformationThread @995 PRIVATE + ZwQueryInformationToken@20=__syscall_NtQueryInformationToken @996 PRIVATE + ZwQueryInstallUILanguage@4=__syscall_NtQueryInstallUILanguage @997 PRIVATE + ZwQueryIntervalProfile@0 @998 PRIVATE + ZwQueryIoCompletion@20=__syscall_NtQueryIoCompletion @999 PRIVATE + ZwQueryKey@20=__syscall_NtQueryKey @1000 PRIVATE + ZwQueryLicenseValue@20=__syscall_NtQueryLicenseValue @1001 PRIVATE + ZwQueryMultipleValueKey@24=__syscall_NtQueryMultipleValueKey @1002 PRIVATE + ZwQueryMutant@20=__syscall_NtQueryMutant @1003 PRIVATE + ZwQueryObject@20=__syscall_NtQueryObject @1004 PRIVATE + ZwQueryOpenSubKeys@0 @1005 PRIVATE + ZwQueryPerformanceCounter@8=__syscall_NtQueryPerformanceCounter @1006 PRIVATE + ZwQuerySection@20=__syscall_NtQuerySection @1007 PRIVATE + ZwQuerySecurityObject@20=__syscall_NtQuerySecurityObject @1008 PRIVATE + ZwQuerySemaphore@20=__syscall_NtQuerySemaphore @1009 PRIVATE + ZwQuerySymbolicLinkObject@12=__syscall_NtQuerySymbolicLinkObject @1010 PRIVATE + ZwQuerySystemEnvironmentValue@16=__syscall_NtQuerySystemEnvironmentValue @1011 PRIVATE + ZwQuerySystemEnvironmentValueEx@20=__syscall_NtQuerySystemEnvironmentValueEx @1012 PRIVATE + ZwQuerySystemInformation@16=__syscall_NtQuerySystemInformation @1013 PRIVATE + ZwQuerySystemInformationEx@24=__syscall_NtQuerySystemInformationEx @1014 PRIVATE + ZwQuerySystemTime@4=__syscall_NtQuerySystemTime @1015 PRIVATE + ZwQueryTimer@20=__syscall_NtQueryTimer @1016 PRIVATE + ZwQueryTimerResolution@12=__syscall_NtQueryTimerResolution @1017 PRIVATE + ZwQueryValueKey@24=__syscall_NtQueryValueKey @1018 PRIVATE + ZwQueryVirtualMemory@24=__syscall_NtQueryVirtualMemory @1019 PRIVATE + ZwQueryVolumeInformationFile@20=__syscall_NtQueryVolumeInformationFile @1020 PRIVATE + ZwQueueApcThread@20=__syscall_NtQueueApcThread @1021 PRIVATE + ZwRaiseException@12=__syscall_NtRaiseException @1022 PRIVATE + ZwRaiseHardError@24=__syscall_NtRaiseHardError @1023 PRIVATE + ZwReadFile@36=__syscall_NtReadFile @1024 PRIVATE + ZwReadFileScatter@36=__syscall_NtReadFileScatter @1025 PRIVATE + ZwReadRequestData@0 @1026 PRIVATE + ZwReadVirtualMemory@20=__syscall_NtReadVirtualMemory @1027 PRIVATE + ZwRegisterNewDevice@0 @1028 PRIVATE + ZwRegisterThreadTerminatePort@4=__syscall_NtRegisterThreadTerminatePort @1029 PRIVATE + ZwReleaseKeyedEvent@16=__syscall_NtReleaseKeyedEvent @1030 PRIVATE + ZwReleaseMutant@8=__syscall_NtReleaseMutant @1031 PRIVATE + ZwReleaseProcessMutant@0 @1032 PRIVATE + ZwReleaseSemaphore@12=__syscall_NtReleaseSemaphore @1033 PRIVATE + ZwRemoveIoCompletion@20=__syscall_NtRemoveIoCompletion @1034 PRIVATE + ZwRemoveIoCompletionEx@24=__syscall_NtRemoveIoCompletionEx @1035 PRIVATE + ZwRenameKey@8=__syscall_NtRenameKey @1036 PRIVATE + ZwReplaceKey@12=__syscall_NtReplaceKey @1037 PRIVATE + ZwReplyPort@0 @1038 PRIVATE + ZwReplyWaitReceivePort@16=__syscall_NtReplyWaitReceivePort @1039 PRIVATE + ZwReplyWaitReceivePortEx@0 @1040 PRIVATE + ZwReplyWaitReplyPort@0 @1041 PRIVATE + ZwRequestPort@0 @1042 PRIVATE + ZwRequestWaitReplyPort@12=__syscall_NtRequestWaitReplyPort @1043 PRIVATE + ZwResetEvent@8=__syscall_NtResetEvent @1044 PRIVATE + ZwResetWriteWatch@12=__syscall_NtResetWriteWatch @1045 PRIVATE + ZwRestoreKey@12=__syscall_NtRestoreKey @1046 PRIVATE + ZwResumeProcess@4=__syscall_NtResumeProcess @1047 PRIVATE + ZwResumeThread@8=__syscall_NtResumeThread @1048 PRIVATE + ZwSaveKey@8=__syscall_NtSaveKey @1049 PRIVATE + ZwSecureConnectPort@36=__syscall_NtSecureConnectPort @1050 PRIVATE + ZwSetContextThread@8=__syscall_NtSetContextThread @1051 PRIVATE + ZwSetDebugFilterState@0 @1052 PRIVATE + ZwSetDefaultHardErrorPort@0 @1053 PRIVATE + ZwSetDefaultLocale@8=__syscall_NtSetDefaultLocale @1054 PRIVATE + ZwSetDefaultUILanguage@4=__syscall_NtSetDefaultUILanguage @1055 PRIVATE + ZwSetEaFile@16=__syscall_NtSetEaFile @1056 PRIVATE + ZwSetEvent@8=__syscall_NtSetEvent @1057 PRIVATE + ZwSetHighEventPair@0 @1058 PRIVATE + ZwSetHighWaitLowEventPair@0 @1059 PRIVATE + ZwSetHighWaitLowThread@0 @1060 PRIVATE + ZwSetInformationFile@20=__syscall_NtSetInformationFile @1061 PRIVATE + ZwSetInformationJobObject@16=__syscall_NtSetInformationJobObject @1062 PRIVATE + ZwSetInformationKey@16=__syscall_NtSetInformationKey @1063 PRIVATE + ZwSetInformationObject@16=__syscall_NtSetInformationObject @1064 PRIVATE + ZwSetInformationProcess@16=__syscall_NtSetInformationProcess @1065 PRIVATE + ZwSetInformationThread@16=__syscall_NtSetInformationThread @1066 PRIVATE + ZwSetInformationToken@16=__syscall_NtSetInformationToken @1067 PRIVATE + ZwSetIntervalProfile@8=__syscall_NtSetIntervalProfile @1068 PRIVATE + ZwSetIoCompletion@20=__syscall_NtSetIoCompletion @1069 PRIVATE + ZwSetLdtEntries@24=__syscall_NtSetLdtEntries @1070 PRIVATE + ZwSetLowEventPair@0 @1071 PRIVATE + ZwSetLowWaitHighEventPair@0 @1072 PRIVATE + ZwSetLowWaitHighThread@0 @1073 PRIVATE + ZwSetSecurityObject@12=__syscall_NtSetSecurityObject @1074 PRIVATE + ZwSetSystemEnvironmentValue@0 @1075 PRIVATE + ZwSetSystemInformation@12=__syscall_NtSetSystemInformation @1076 PRIVATE + ZwSetSystemPowerState@0 @1077 PRIVATE + ZwSetSystemTime@8=__syscall_NtSetSystemTime @1078 PRIVATE + ZwSetTimer@28=__syscall_NtSetTimer @1079 PRIVATE + ZwSetTimerResolution@12=__syscall_NtSetTimerResolution @1080 PRIVATE + ZwSetValueKey@24=__syscall_NtSetValueKey @1081 PRIVATE + ZwSetVolumeInformationFile@20=__syscall_NtSetVolumeInformationFile @1082 PRIVATE + ZwShutdownSystem@4=__syscall_NtShutdownSystem @1083 PRIVATE + ZwSignalAndWaitForSingleObject@16=__syscall_NtSignalAndWaitForSingleObject @1084 PRIVATE + ZwStartProfile@0 @1085 PRIVATE + ZwStopProfile@0 @1086 PRIVATE + ZwSuspendProcess@4=__syscall_NtSuspendProcess @1087 PRIVATE + ZwSuspendThread@8=__syscall_NtSuspendThread @1088 PRIVATE + ZwSystemDebugControl@24=__syscall_NtSystemDebugControl @1089 PRIVATE + ZwTerminateJobObject@8=__syscall_NtTerminateJobObject @1090 PRIVATE + ZwTerminateProcess@8=__syscall_NtTerminateProcess @1091 PRIVATE + ZwTerminateThread@8=__syscall_NtTerminateThread @1092 PRIVATE + ZwTestAlert@0 @1093 PRIVATE + ZwUnloadDriver@4=__syscall_NtUnloadDriver @1094 PRIVATE + ZwUnloadKey@4=__syscall_NtUnloadKey @1095 PRIVATE + ZwUnloadKeyEx@0 @1096 PRIVATE + ZwUnlockFile@20=__syscall_NtUnlockFile @1097 PRIVATE + ZwUnlockVirtualMemory@16=__syscall_NtUnlockVirtualMemory @1098 PRIVATE + ZwUnmapViewOfSection@8=__syscall_NtUnmapViewOfSection @1099 PRIVATE + ZwVdmControl@0 @1100 PRIVATE + ZwW32Call@0 @1101 PRIVATE + ZwWaitForKeyedEvent@16=__syscall_NtWaitForKeyedEvent @1102 PRIVATE + ZwWaitForMultipleObjects@20=__syscall_NtWaitForMultipleObjects @1103 PRIVATE + ZwWaitForProcessMutant@0 @1104 PRIVATE + ZwWaitForSingleObject@12=__syscall_NtWaitForSingleObject @1105 PRIVATE + ZwWaitHighEventPair@0 @1106 PRIVATE + ZwWaitLowEventPair@0 @1107 PRIVATE + ZwWriteFile@36=__syscall_NtWriteFile @1108 PRIVATE + ZwWriteFileGather@36=__syscall_NtWriteFileGather @1109 PRIVATE + ZwWriteRequestData@0 @1110 PRIVATE + ZwWriteVirtualMemory@20=__syscall_NtWriteVirtualMemory @1111 PRIVATE + ZwYieldExecution@0=__syscall_NtYieldExecution @1112 PRIVATE + _CIcos=NTDLL__CIcos @1113 PRIVATE + _CIlog=NTDLL__CIlog @1114 PRIVATE + _CIpow=NTDLL__CIpow @1115 PRIVATE + _CIsin=NTDLL__CIsin @1116 PRIVATE + _CIsqrt=NTDLL__CIsqrt @1117 PRIVATE + __isascii=NTDLL___isascii @1118 PRIVATE + __iscsym=NTDLL___iscsym @1119 PRIVATE + __iscsymf=NTDLL___iscsymf @1120 PRIVATE + __toascii=NTDLL___toascii @1121 PRIVATE + _alldiv@16 @1122 + _alldvrm@16 @1123 + _allmul@16 @1124 + _alloca_probe@0 @1125 + _allrem@16 @1126 + _allshl@12 @1127 + _allshr@12 @1128 + _atoi64 @1129 PRIVATE + _aulldiv@16 @1130 + _aulldvrm@16 @1131 + _aullrem@16 @1132 + _aullshr@12 @1133 + _chkstk@0 @1134 PRIVATE + _fltused@0 @1135 PRIVATE + _ftol=NTDLL__ftol @1136 PRIVATE + _i64toa @1137 PRIVATE + _i64tow @1138 PRIVATE + _itoa @1139 PRIVATE + _itow @1140 PRIVATE + _lfind @1141 PRIVATE + _ltoa @1142 PRIVATE + _ltow @1143 PRIVATE + _memccpy @1144 PRIVATE + _memicmp @1145 PRIVATE + _snprintf=NTDLL__snprintf @1146 PRIVATE + _snwprintf=NTDLL__snwprintf @1147 PRIVATE + _splitpath @1148 PRIVATE + _strcmpi=_stricmp @1149 PRIVATE + _stricmp @1150 PRIVATE + _strlwr @1151 PRIVATE + _strnicmp @1152 + _strupr @1153 PRIVATE + _tolower=NTDLL__tolower @1154 PRIVATE + _toupper=NTDLL__toupper @1155 PRIVATE + _ui64toa @1156 PRIVATE + _ui64tow @1157 PRIVATE + _ultoa @1158 PRIVATE + _ultow @1159 PRIVATE + _vsnprintf=NTDLL__vsnprintf @1160 PRIVATE + _vsnwprintf=NTDLL__vsnwprintf @1161 PRIVATE + _wcsicmp=NTDLL__wcsicmp @1162 PRIVATE + _wcslwr=NTDLL__wcslwr @1163 PRIVATE + _wcsnicmp=NTDLL__wcsnicmp @1164 PRIVATE + _wcsupr=NTDLL__wcsupr @1165 PRIVATE + _wtoi @1166 PRIVATE + _wtoi64 @1167 PRIVATE + _wtol @1168 PRIVATE + abs=NTDLL_abs @1169 PRIVATE + atan=NTDLL_atan @1170 PRIVATE + atoi=NTDLL_atoi @1171 PRIVATE + atol=NTDLL_atol @1172 PRIVATE + bsearch=NTDLL_bsearch @1173 PRIVATE + ceil=NTDLL_ceil @1174 PRIVATE + cos=NTDLL_cos @1175 PRIVATE + fabs=NTDLL_fabs @1176 PRIVATE + floor=NTDLL_floor @1177 PRIVATE + isalnum=NTDLL_isalnum @1178 PRIVATE + isalpha=NTDLL_isalpha @1179 PRIVATE + iscntrl=NTDLL_iscntrl @1180 PRIVATE + isdigit=NTDLL_isdigit @1181 PRIVATE + isgraph=NTDLL_isgraph @1182 PRIVATE + islower=NTDLL_islower @1183 PRIVATE + isprint=NTDLL_isprint @1184 PRIVATE + ispunct=NTDLL_ispunct @1185 PRIVATE + isspace=NTDLL_isspace @1186 PRIVATE + isupper=NTDLL_isupper @1187 PRIVATE + iswalpha=NTDLL_iswalpha @1188 PRIVATE + iswctype=NTDLL_iswctype @1189 PRIVATE + iswdigit=NTDLL_iswdigit @1190 PRIVATE + iswlower=NTDLL_iswlower @1191 PRIVATE + iswspace=NTDLL_iswspace @1192 PRIVATE + iswxdigit=NTDLL_iswxdigit @1193 PRIVATE + isxdigit=NTDLL_isxdigit @1194 PRIVATE + labs=NTDLL_labs @1195 PRIVATE + log=NTDLL_log @1196 PRIVATE + mbstowcs=NTDLL_mbstowcs @1197 PRIVATE + memchr=NTDLL_memchr @1198 PRIVATE + memcmp=NTDLL_memcmp @1199 PRIVATE + memcpy=NTDLL_memcpy @1200 PRIVATE + memmove=NTDLL_memmove @1201 PRIVATE + memset=NTDLL_memset @1202 PRIVATE + pow=NTDLL_pow @1203 PRIVATE + qsort=NTDLL_qsort @1204 PRIVATE + sin=NTDLL_sin @1205 PRIVATE + sprintf=NTDLL_sprintf @1206 PRIVATE + sqrt=NTDLL_sqrt @1207 PRIVATE + sscanf=NTDLL_sscanf @1208 PRIVATE + strcat=NTDLL_strcat @1209 PRIVATE + strchr=NTDLL_strchr @1210 PRIVATE + strcmp=NTDLL_strcmp @1211 PRIVATE + strcpy=NTDLL_strcpy @1212 PRIVATE + strcspn=NTDLL_strcspn @1213 PRIVATE + strlen=NTDLL_strlen @1214 PRIVATE + strncat=NTDLL_strncat @1215 PRIVATE + strncmp=NTDLL_strncmp @1216 PRIVATE + strncpy=NTDLL_strncpy @1217 PRIVATE + strnlen=NTDLL_strnlen @1218 PRIVATE + strpbrk=NTDLL_strpbrk @1219 PRIVATE + strrchr=NTDLL_strrchr @1220 PRIVATE + strspn=NTDLL_strspn @1221 PRIVATE + strstr=NTDLL_strstr @1222 PRIVATE + strtol=NTDLL_strtol @1223 PRIVATE + strtoul=NTDLL_strtoul @1224 PRIVATE + swprintf=NTDLL_swprintf @1225 PRIVATE + tan=NTDLL_tan @1226 PRIVATE + tolower=NTDLL_tolower @1227 PRIVATE + toupper=NTDLL_toupper @1228 PRIVATE + towlower=NTDLL_towlower @1229 PRIVATE + towupper=NTDLL_towupper @1230 PRIVATE + vDbgPrintEx@16 @1231 + vDbgPrintExWithPrefix@20 @1232 + vsprintf=NTDLL_vsprintf @1233 PRIVATE + wcscat=NTDLL_wcscat @1234 PRIVATE + wcschr=NTDLL_wcschr @1235 PRIVATE + wcscmp=NTDLL_wcscmp @1236 PRIVATE + wcscpy=NTDLL_wcscpy @1237 PRIVATE + wcscspn=NTDLL_wcscspn @1238 PRIVATE + wcslen=NTDLL_wcslen @1239 PRIVATE + wcsncat=NTDLL_wcsncat @1240 PRIVATE + wcsncmp=NTDLL_wcsncmp @1241 PRIVATE + wcsncpy=NTDLL_wcsncpy @1242 PRIVATE + wcspbrk=NTDLL_wcspbrk @1243 PRIVATE + wcsrchr=NTDLL_wcsrchr @1244 PRIVATE + wcsspn=NTDLL_wcsspn @1245 PRIVATE + wcsstr=NTDLL_wcsstr @1246 PRIVATE + wcstok=NTDLL_wcstok @1247 PRIVATE + wcstol=NTDLL_wcstol @1248 PRIVATE + wcstombs=NTDLL_wcstombs @1249 PRIVATE + wcstoul=NTDLL_wcstoul @1250 PRIVATE + __wine_esync_set_queue_fd @1251 + wine_server_call @1252 + wine_server_close_fds_by_type @1253 + wine_server_fd_to_handle @1254 + wine_server_handle_to_fd @1255 + wine_server_release_fd @1256 + wine_server_send_fd @1257 + __wine_make_process_system @1258 + __wine_dbg_get_channel_flags @1259 + __wine_dbg_header @1260 + __wine_dbg_output @1261 + __wine_dbg_strdup @1262 + __wine_locked_recvmsg @1263 + __wine_needs_override_large_address_aware @1264 + __wine_create_default_token @1265 + wine_get_version=NTDLL_wine_get_version @1266 + wine_get_patches=NTDLL_wine_get_patches @1267 + wine_get_build_id=NTDLL_wine_get_build_id @1268 + wine_get_host_version=NTDLL_wine_get_host_version @1269 + __wine_init_codepages @1270 + __wine_set_signal_handler @1271 + wine_nt_to_unix_file_name @1272 + wine_unix_to_nt_file_name @1273 + __wine_user_shared_data @1274 diff --git a/lib/wine/libntdsapi.def b/lib/wine/libntdsapi.def new file mode 100644 index 0000000..ca22ba9 --- /dev/null +++ b/lib/wine/libntdsapi.def @@ -0,0 +1,101 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/ntdsapi/ntdsapi.spec; do not edit! + +LIBRARY ntdsapi.dll + +EXPORTS + DsAddSidHistoryA@0 @1 PRIVATE + DsAddSidHistoryW@0 @2 PRIVATE + DsBindA@12 @3 + DsBindW@12 @4 + DsBindWithCredA@0 @5 PRIVATE + DsBindWithCredW@0 @6 PRIVATE + DsBindWithSpnA@0 @7 PRIVATE + DsBindWithSpnW@0 @8 PRIVATE + DsClientMakeSpnForTargetServerA@0 @9 PRIVATE + DsClientMakeSpnForTargetServerW@16 @10 + DsCrackNamesA@28 @11 + DsCrackNamesW@28 @12 + DsCrackSpn2A@0 @13 PRIVATE + DsCrackSpn2W@0 @14 PRIVATE + DsCrackSpn3W@0 @15 PRIVATE + DsCrackSpnA@0 @16 PRIVATE + DsCrackSpnW@0 @17 PRIVATE + DsCrackUnquotedMangledRdnA@0 @18 PRIVATE + DsCrackUnquotedMangledRdnW@0 @19 PRIVATE + DsFreeDomainControllerInfoA@0 @20 PRIVATE + DsFreeDomainControllerInfoW@0 @21 PRIVATE + DsFreeNameResultA@0 @22 PRIVATE + DsFreeNameResultW@0 @23 PRIVATE + DsFreePasswordCredentials@0 @24 PRIVATE + DsFreeSchemaGuidMapA@0 @25 PRIVATE + DsFreeSchemaGuidMapW@0 @26 PRIVATE + DsFreeSpnArrayA@0 @27 PRIVATE + DsFreeSpnArrayW@0 @28 PRIVATE + DsGetDomainControllerInfoA@0 @29 PRIVATE + DsGetDomainControllerInfoW@0 @30 PRIVATE + DsGetRdnW@0 @31 PRIVATE + DsGetSpnA@36 @32 + DsGetSpnW@0 @33 PRIVATE + DsInheritSecurityIdentityA@0 @34 PRIVATE + DsInheritSecurityIdentityW@0 @35 PRIVATE + DsIsMangledDnA@0 @36 PRIVATE + DsIsMangledDnW@0 @37 PRIVATE + DsIsMangledRdnValueA@0 @38 PRIVATE + DsIsMangledRdnValueW@0 @39 PRIVATE + DsListDomainsInSiteA@0 @40 PRIVATE + DsListDomainsInSiteW@0 @41 PRIVATE + DsListInfoForServerA@0 @42 PRIVATE + DsListInfoForServerW@0 @43 PRIVATE + DsListRolesA@0 @44 PRIVATE + DsListRolesW@0 @45 PRIVATE + DsListServersForDomainInSiteA@0 @46 PRIVATE + DsListServersForDomainInSiteW@0 @47 PRIVATE + DsListServersInSiteA@0 @48 PRIVATE + DsListServersInSiteW@0 @49 PRIVATE + DsListSitesA@0 @50 PRIVATE + DsListSitesW@0 @51 PRIVATE + DsLogEntry@0 @52 PRIVATE + DsMakePasswordCredentialsA@0 @53 PRIVATE + DsMakePasswordCredentialsW@0 @54 PRIVATE + DsMakeSpnA@28 @55 + DsMakeSpnW@28 @56 + DsMapSchemaGuidsA@0 @57 PRIVATE + DsMapSchemaGuidsW@0 @58 PRIVATE + DsQuoteRdnValueA@0 @59 PRIVATE + DsQuoteRdnValueW@0 @60 PRIVATE + DsRemoveDsDomainA@0 @61 PRIVATE + DsRemoveDsDomainW@0 @62 PRIVATE + DsRemoveDsServerA@0 @63 PRIVATE + DsRemoveDsServerW@0 @64 PRIVATE + DsReplicaAddA@0 @65 PRIVATE + DsReplicaAddW@0 @66 PRIVATE + DsReplicaConsistencyCheck@0 @67 PRIVATE + DsReplicaDelA@0 @68 PRIVATE + DsReplicaDelW@0 @69 PRIVATE + DsReplicaFreeInfo@0 @70 PRIVATE + DsReplicaGetInfo2W@0 @71 PRIVATE + DsReplicaGetInfoW@0 @72 PRIVATE + DsReplicaModifyA@0 @73 PRIVATE + DsReplicaModifyW@0 @74 PRIVATE + DsReplicaSyncA@0 @75 PRIVATE + DsReplicaSyncAllA@0 @76 PRIVATE + DsReplicaSyncAllW@0 @77 PRIVATE + DsReplicaSyncW@0 @78 PRIVATE + DsReplicaUpdateRefsA@0 @79 PRIVATE + DsReplicaUpdateRefsW@0 @80 PRIVATE + DsReplicaVerifyObjectsA@0 @81 PRIVATE + DsReplicaVerifyObjectsW@0 @82 PRIVATE + DsServerRegisterSpnA@12 @83 + DsServerRegisterSpnW@12 @84 + DsUnBindA@0 @85 PRIVATE + DsUnBindW@0 @86 PRIVATE + DsUnquoteRdnValueA@0 @87 PRIVATE + DsUnquoteRdnValueW@0 @88 PRIVATE + DsWriteAccountSpnA@0 @89 PRIVATE + DsWriteAccountSpnW@0 @90 PRIVATE + DsaopBind@0 @91 PRIVATE + DsaopBindWithCred@0 @92 PRIVATE + DsaopBindWithSpn@0 @93 PRIVATE + DsaopExecuteScript@0 @94 PRIVATE + DsaopPrepareScript@0 @95 PRIVATE + DsaopUnBind@0 @96 PRIVATE diff --git a/lib/wine/libntoskrnl.def b/lib/wine/libntoskrnl.def new file mode 100644 index 0000000..146896e --- /dev/null +++ b/lib/wine/libntoskrnl.def @@ -0,0 +1,1506 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/ntoskrnl.exe/ntoskrnl.exe.spec; do not edit! + +LIBRARY ntoskrnl.exe + +EXPORTS + ExAcquireFastMutexUnsafe@4=__fastcall_ExAcquireFastMutexUnsafe @1 + ExAcquireRundownProtection@0 @2 PRIVATE + ExAcquireRundownProtectionEx@0 @3 PRIVATE + ExInitializeRundownProtection@0 @4 PRIVATE + ExInterlockedAddLargeStatistic@0 @5 PRIVATE + ExInterlockedCompareExchange64@0 @6 PRIVATE + ExInterlockedFlushSList@0 @7 PRIVATE + ExInterlockedPopEntrySList@8=__fastcall_NTOSKRNL_ExInterlockedPopEntrySList @8 + ExInterlockedPushEntrySList@12=__fastcall_NTOSKRNL_ExInterlockedPushEntrySList @9 + ExReInitializeRundownProtection@0 @10 PRIVATE + ExReleaseFastMutexUnsafe@4=__fastcall_ExReleaseFastMutexUnsafe @11 + ExReleaseResourceLite@4=__fastcall_ExReleaseResourceLite @12 + ExReleaseRundownProtection@0 @13 PRIVATE + ExReleaseRundownProtectionEx@0 @14 PRIVATE + ExRundownCompleted@0 @15 PRIVATE + ExWaitForRundownProtectionRelease@0 @16 PRIVATE + ExfAcquirePushLockExclusive@0 @17 PRIVATE + ExfAcquirePushLockShared@0 @18 PRIVATE + ExfInterlockedAddUlong@0 @19 PRIVATE + ExfInterlockedCompareExchange64@0 @20 PRIVATE + ExfInterlockedInsertHeadList@0 @21 PRIVATE + ExfInterlockedInsertTailList@0 @22 PRIVATE + ExfInterlockedPopEntryList@0 @23 PRIVATE + ExfInterlockedPushEntryList@0 @24 PRIVATE + ExfInterlockedRemoveHeadList@8=__fastcall_ExfInterlockedRemoveHeadList @25 + ExfReleasePushLock@0 @26 PRIVATE + Exfi386InterlockedDecrementLong@0 @27 PRIVATE + Exfi386InterlockedExchangeUlong@0 @28 PRIVATE + Exfi386InterlockedIncrementLong@0 @29 PRIVATE + HalExamineMBR@0 @30 PRIVATE + InterlockedCompareExchange@12=__fastcall_NTOSKRNL_InterlockedCompareExchange @31 + InterlockedDecrement@4=__fastcall_NTOSKRNL_InterlockedDecrement @32 + InterlockedExchange@8=__fastcall_NTOSKRNL_InterlockedExchange @33 + InterlockedExchangeAdd@8=__fastcall_NTOSKRNL_InterlockedExchangeAdd @34 + InterlockedIncrement@4=__fastcall_NTOSKRNL_InterlockedIncrement @35 + InterlockedPopEntrySList@4=__fastcall_NTOSKRNL_InterlockedPopEntrySList @36 + InterlockedPushEntrySList@8=__fastcall_NTOSKRNL_InterlockedPushEntrySList @37 + IoAssignDriveLetters@0 @38 PRIVATE + IoReadPartitionTable@0 @39 PRIVATE + IoSetPartitionInformation@0 @40 PRIVATE + IoWritePartitionTable@0 @41 PRIVATE + IofCallDriver@8=__fastcall_IofCallDriver @42 + IofCompleteRequest@8=__fastcall_IofCompleteRequest @43 + KeAcquireInStackQueuedSpinLockAtDpcLevel@8=__fastcall_KeAcquireInStackQueuedSpinLockAtDpcLevel @44 + KeEnterGuardedRegion@0 @45 + KeExpandKernelStackAndCallout@12 @46 + KeExpandKernelStackAndCalloutEx@20 @47 + KeLeaveGuardedRegion@0 @48 + KeReleaseInStackQueuedSpinLockFromDpcLevel@4=__fastcall_KeReleaseInStackQueuedSpinLockFromDpcLevel @49 + KeSetTimeUpdateNotifyRoutine@0 @50 PRIVATE + KefAcquireSpinLockAtDpcLevel@0 @51 PRIVATE + KefReleaseSpinLockFromDpcLevel@0 @52 PRIVATE + KiAcquireSpinLock@0 @53 PRIVATE + KiReleaseSpinLock@0 @54 PRIVATE + ObfDereferenceObject@4=__fastcall_ObfDereferenceObject @55 + ObfReferenceObject@4=__fastcall_ObfReferenceObject @56 + RtlPrefetchMemoryNonTemporal@0 @57 PRIVATE + RtlUlongByteSwap @58 + RtlUlonglongByteSwap @59 + RtlUshortByteSwap @60 + WmiGetClock@0 @61 PRIVATE + Kei386EoiHelper@0 @62 PRIVATE + Kii386SpinOnSpinLock@0 @63 PRIVATE + CcCanIWrite@0 @64 PRIVATE + CcCopyRead@0 @65 PRIVATE + CcCopyWrite@0 @66 PRIVATE + CcDeferWrite@0 @67 PRIVATE + CcFastCopyRead@0 @68 PRIVATE + CcFastCopyWrite@0 @69 PRIVATE + CcFastMdlReadWait@0 @70 PRIVATE + CcFastReadNotPossible@0 @71 PRIVATE + CcFastReadWait@0 @72 PRIVATE + CcFlushCache@0 @73 PRIVATE + CcGetDirtyPages@0 @74 PRIVATE + CcGetFileObjectFromBcb@0 @75 PRIVATE + CcGetFileObjectFromSectionPtrs@0 @76 PRIVATE + CcGetFlushedValidData@0 @77 PRIVATE + CcGetLsnForFileObject@0 @78 PRIVATE + CcInitializeCacheMap@0 @79 PRIVATE + CcIsThereDirtyData@0 @80 PRIVATE + CcMapData@0 @81 PRIVATE + CcMdlRead@0 @82 PRIVATE + CcMdlReadComplete@0 @83 PRIVATE + CcMdlWriteAbort@0 @84 PRIVATE + CcMdlWriteComplete@0 @85 PRIVATE + CcPinMappedData@0 @86 PRIVATE + CcPinRead@0 @87 PRIVATE + CcPrepareMdlWrite@0 @88 PRIVATE + CcPreparePinWrite@0 @89 PRIVATE + CcPurgeCacheSection@0 @90 PRIVATE + CcRemapBcb@0 @91 PRIVATE + CcRepinBcb@0 @92 PRIVATE + CcScheduleReadAhead@0 @93 PRIVATE + CcSetAdditionalCacheAttributes@0 @94 PRIVATE + CcSetBcbOwnerPointer@0 @95 PRIVATE + CcSetDirtyPageThreshold@0 @96 PRIVATE + CcSetDirtyPinnedData@0 @97 PRIVATE + CcSetFileSizes@0 @98 PRIVATE + CcSetLogHandleForFile@0 @99 PRIVATE + CcSetReadAheadGranularity@0 @100 PRIVATE + CcUninitializeCacheMap@0 @101 PRIVATE + CcUnpinData@0 @102 PRIVATE + CcUnpinDataForThread@0 @103 PRIVATE + CcUnpinRepinnedBcb@0 @104 PRIVATE + CcWaitForCurrentLazyWriterActivity@0 @105 PRIVATE + CcZeroData@0 @106 PRIVATE + CmRegisterCallback@12 @107 + CmUnRegisterCallback@8 @108 + DbgBreakPoint@0 @109 + DbgBreakPointWithStatus@0 @110 PRIVATE + DbgLoadImageSymbols@0 @111 PRIVATE + DbgPrint @112 + DbgPrintEx @113 + DbgPrintReturnControlC@0 @114 PRIVATE + DbgPrompt@0 @115 PRIVATE + DbgQueryDebugFilterState@8 @116 + DbgSetDebugFilterState@0 @117 PRIVATE + ExAcquireResourceExclusiveLite@8 @118 + ExAcquireResourceSharedLite@8 @119 + ExAcquireSharedStarveExclusive@8 @120 + ExAcquireSharedWaitForExclusive@8 @121 + ExAllocateFromPagedLookasideList@0 @122 PRIVATE + ExAllocatePool@8 @123 + ExAllocatePoolWithQuota@8 @124 + ExAllocatePoolWithQuotaTag@12 @125 + ExAllocatePoolWithTag@12 @126 + ExAllocatePoolWithTagPriority@0 @127 PRIVATE + ExConvertExclusiveToSharedLite@0 @128 PRIVATE + ExCreateCallback@16 @129 + ExDeleteNPagedLookasideList@4 @130 + ExDeletePagedLookasideList@4 @131 + ExDeleteResourceLite@4 @132 + ExDesktopObjectType@0 @133 PRIVATE + ExDisableResourceBoostLite@0 @134 PRIVATE + ExEnumHandleTable@0 @135 PRIVATE + ExEventObjectType @136 DATA + ExExtendZone@0 @137 PRIVATE + ExfUnblockPushLock@8=__fastcall_ExfUnblockPushLock @138 + ExFreePool@4 @139 + ExFreePoolWithTag@8 @140 + ExFreeToPagedLookasideList@0 @141 PRIVATE + ExGetCurrentProcessorCounts@0 @142 PRIVATE + ExGetCurrentProcessorCpuUsage@0 @143 PRIVATE + ExGetExclusiveWaiterCount@4 @144 + ExGetPreviousMode@0 @145 PRIVATE + ExGetSharedWaiterCount@4 @146 + ExInitializeNPagedLookasideList@28 @147 + ExInitializePagedLookasideList@28 @148 + ExInitializeResourceLite@4 @149 + ExInitializeZone@16 @150 + ExInterlockedAddLargeInteger@0 @151 PRIVATE + ExInterlockedAddUlong@0 @152 PRIVATE + ExInterlockedDecrementLong@0 @153 PRIVATE + ExInterlockedExchangeUlong@0 @154 PRIVATE + ExInterlockedExtendZone@0 @155 PRIVATE + ExInterlockedIncrementLong@0 @156 PRIVATE + ExInterlockedInsertHeadList@0 @157 PRIVATE + ExInterlockedInsertTailList@0 @158 PRIVATE + ExInterlockedPopEntryList@0 @159 PRIVATE + ExInterlockedPushEntryList@0 @160 PRIVATE + ExInterlockedRemoveHeadList@8 @161 + ExIsProcessorFeaturePresent@0 @162 PRIVATE + ExIsResourceAcquiredExclusiveLite@4 @163 + ExIsResourceAcquiredSharedLite@4 @164 + ExLocalTimeToSystemTime@8=RtlLocalTimeToSystemTime @165 + ExNotifyCallback@0 @166 PRIVATE + ExQueryPoolBlockSize@0 @167 PRIVATE + ExQueueWorkItem@0 @168 PRIVATE + ExRaiseAccessViolation@0 @169 PRIVATE + ExRaiseDatatypeMisalignment@0 @170 PRIVATE + ExRaiseException@0 @171 PRIVATE + ExRaiseHardError@0 @172 PRIVATE + ExRaiseStatus@0 @173 PRIVATE + ExRegisterCallback@0 @174 PRIVATE + ExReinitializeResourceLite@0 @175 PRIVATE + ExReleaseResourceForThreadLite@8 @176 + ExSemaphoreObjectType @177 DATA + ExSetResourceOwnerPointer@0 @178 PRIVATE + ExSetTimerResolution@8 @179 + ExSystemExceptionFilter@0 @180 PRIVATE + ExSystemTimeToLocalTime@8=RtlSystemTimeToLocalTime @181 + ExUnregisterCallback@0 @182 PRIVATE + ExUuidCreate@4 @183 + ExVerifySuite@0 @184 PRIVATE + ExWindowStationObjectType@0 @185 PRIVATE + Exi386InterlockedDecrementLong@0 @186 PRIVATE + Exi386InterlockedExchangeUlong@0 @187 PRIVATE + Exi386InterlockedIncrementLong@0 @188 PRIVATE + FsRtlAcquireFileExclusive@0 @189 PRIVATE + FsRtlAddLargeMcbEntry@0 @190 PRIVATE + FsRtlAddMcbEntry@0 @191 PRIVATE + FsRtlAddToTunnelCache@0 @192 PRIVATE + FsRtlAllocateFileLock@0 @193 PRIVATE + FsRtlAllocatePool@0 @194 PRIVATE + FsRtlAllocatePoolWithQuota@0 @195 PRIVATE + FsRtlAllocatePoolWithQuotaTag@0 @196 PRIVATE + FsRtlAllocatePoolWithTag@0 @197 PRIVATE + FsRtlAllocateResource@0 @198 PRIVATE + FsRtlAreNamesEqual@0 @199 PRIVATE + FsRtlBalanceReads@0 @200 PRIVATE + FsRtlCheckLockForReadAccess@0 @201 PRIVATE + FsRtlCheckLockForWriteAccess@0 @202 PRIVATE + FsRtlCheckOplock@0 @203 PRIVATE + FsRtlCopyRead@0 @204 PRIVATE + FsRtlCopyWrite@0 @205 PRIVATE + FsRtlCurrentBatchOplock@0 @206 PRIVATE + FsRtlDeleteKeyFromTunnelCache@0 @207 PRIVATE + FsRtlDeleteTunnelCache@0 @208 PRIVATE + FsRtlDeregisterUncProvider@0 @209 PRIVATE + FsRtlDissectDbcs@0 @210 PRIVATE + FsRtlDissectName@0 @211 PRIVATE + FsRtlDoesDbcsContainWildCards@0 @212 PRIVATE + FsRtlDoesNameContainWildCards@0 @213 PRIVATE + FsRtlFastCheckLockForRead@0 @214 PRIVATE + FsRtlFastCheckLockForWrite@0 @215 PRIVATE + FsRtlFastUnlockAll@0 @216 PRIVATE + FsRtlFastUnlockAllByKey@0 @217 PRIVATE + FsRtlFastUnlockSingle@0 @218 PRIVATE + FsRtlFindInTunnelCache@0 @219 PRIVATE + FsRtlFreeFileLock@0 @220 PRIVATE + FsRtlGetFileSize@0 @221 PRIVATE + FsRtlGetNextFileLock@0 @222 PRIVATE + FsRtlGetNextLargeMcbEntry@0 @223 PRIVATE + FsRtlGetNextMcbEntry@0 @224 PRIVATE + FsRtlIncrementCcFastReadNoWait@0 @225 PRIVATE + FsRtlIncrementCcFastReadNotPossible@0 @226 PRIVATE + FsRtlIncrementCcFastReadResourceMiss@0 @227 PRIVATE + FsRtlIncrementCcFastReadWait@0 @228 PRIVATE + FsRtlInitializeFileLock@0 @229 PRIVATE + FsRtlInitializeLargeMcb@0 @230 PRIVATE + FsRtlInitializeMcb@0 @231 PRIVATE + FsRtlInitializeOplock@0 @232 PRIVATE + FsRtlInitializeTunnelCache@0 @233 PRIVATE + FsRtlInsertPerFileObjectContext@0 @234 PRIVATE + FsRtlInsertPerStreamContext@0 @235 PRIVATE + FsRtlIsDbcsInExpression@0 @236 PRIVATE + FsRtlIsFatDbcsLegal@0 @237 PRIVATE + FsRtlIsHpfsDbcsLegal@0 @238 PRIVATE + FsRtlIsNameInExpression@16 @239 + FsRtlIsNtstatusExpected@0 @240 PRIVATE + FsRtlIsPagingFile@0 @241 PRIVATE + FsRtlIsTotalDeviceFailure@0 @242 PRIVATE + FsRtlLegalAnsiCharacterArray@0 @243 PRIVATE + FsRtlLookupLargeMcbEntry@0 @244 PRIVATE + FsRtlLookupLastLargeMcbEntry@0 @245 PRIVATE + FsRtlLookupLastLargeMcbEntryAndIndex@0 @246 PRIVATE + FsRtlLookupLastMcbEntry@0 @247 PRIVATE + FsRtlLookupMcbEntry@0 @248 PRIVATE + FsRtlLookupPerFileObjectContext@0 @249 PRIVATE + FsRtlLookupPerStreamContextInternal@0 @250 PRIVATE + FsRtlMdlRead@0 @251 PRIVATE + FsRtlMdlReadComplete@0 @252 PRIVATE + FsRtlMdlReadCompleteDev@0 @253 PRIVATE + FsRtlMdlReadDev@0 @254 PRIVATE + FsRtlMdlWriteComplete@0 @255 PRIVATE + FsRtlMdlWriteCompleteDev@0 @256 PRIVATE + FsRtlNormalizeNtstatus@0 @257 PRIVATE + FsRtlNotifyChangeDirectory@0 @258 PRIVATE + FsRtlNotifyCleanup@0 @259 PRIVATE + FsRtlNotifyFilterChangeDirectory@0 @260 PRIVATE + FsRtlNotifyFilterReportChange@0 @261 PRIVATE + FsRtlNotifyFullChangeDirectory@0 @262 PRIVATE + FsRtlNotifyFullReportChange@0 @263 PRIVATE + FsRtlNotifyInitializeSync@0 @264 PRIVATE + FsRtlNotifyReportChange@0 @265 PRIVATE + FsRtlNotifyUninitializeSync@0 @266 PRIVATE + FsRtlNotifyVolumeEvent@0 @267 PRIVATE + FsRtlNumberOfRunsInLargeMcb@0 @268 PRIVATE + FsRtlNumberOfRunsInMcb@0 @269 PRIVATE + FsRtlOplockFsctrl@0 @270 PRIVATE + FsRtlOplockIsFastIoPossible@0 @271 PRIVATE + FsRtlPostPagingFileStackOverflow@0 @272 PRIVATE + FsRtlPostStackOverflow@0 @273 PRIVATE + FsRtlPrepareMdlWrite@0 @274 PRIVATE + FsRtlPrepareMdlWriteDev@0 @275 PRIVATE + FsRtlPrivateLock@0 @276 PRIVATE + FsRtlProcessFileLock@0 @277 PRIVATE + FsRtlRegisterFileSystemFilterCallbacks@8 @278 + FsRtlRegisterUncProvider@12 @279 + FsRtlReleaseFile@0 @280 PRIVATE + FsRtlRemoveLargeMcbEntry@0 @281 PRIVATE + FsRtlRemoveMcbEntry@0 @282 PRIVATE + FsRtlRemovePerFileObjectContext@0 @283 PRIVATE + FsRtlRemovePerStreamContext@0 @284 PRIVATE + FsRtlResetLargeMcb@0 @285 PRIVATE + FsRtlSplitLargeMcb@0 @286 PRIVATE + FsRtlSyncVolumes@0 @287 PRIVATE + FsRtlTeardownPerStreamContexts@0 @288 PRIVATE + FsRtlTruncateLargeMcb@0 @289 PRIVATE + FsRtlTruncateMcb@0 @290 PRIVATE + FsRtlUninitializeFileLock@0 @291 PRIVATE + FsRtlUninitializeLargeMcb@0 @292 PRIVATE + FsRtlUninitializeMcb@0 @293 PRIVATE + FsRtlUninitializeOplock@0 @294 PRIVATE + HalDispatchTable@0 @295 PRIVATE + HalPrivateDispatchTable@0 @296 PRIVATE + HeadlessDispatch@0 @297 PRIVATE + InbvAcquireDisplayOwnership@0 @298 PRIVATE + InbvCheckDisplayOwnership@0 @299 PRIVATE + InbvDisplayString@0 @300 PRIVATE + InbvEnableBootDriver@0 @301 PRIVATE + InbvEnableDisplayString@0 @302 PRIVATE + InbvInstallDisplayStringFilter@0 @303 PRIVATE + InbvIsBootDriverInstalled@0 @304 PRIVATE + InbvNotifyDisplayOwnershipLost@0 @305 PRIVATE + InbvResetDisplay@0 @306 PRIVATE + InbvSetScrollRegion@0 @307 PRIVATE + InbvSetTextColor@0 @308 PRIVATE + InbvSolidColorFill@0 @309 PRIVATE + InitSafeBootMode @310 DATA + IoAcquireCancelSpinLock@4 @311 + IoAcquireRemoveLockEx@20 @312 + IoAcquireVpbSpinLock@0 @313 PRIVATE + IoAdapterObjectType@0 @314 PRIVATE + IoAllocateAdapterChannel@0 @315 PRIVATE + IoAllocateController@0 @316 PRIVATE + IoAllocateDriverObjectExtension@16 @317 + IoAllocateErrorLogEntry@8 @318 + IoAllocateIrp@8 @319 + IoAllocateMdl@20 @320 + IoAllocateWorkItem@4 @321 + IoAssignResources@0 @322 PRIVATE + IoAttachDevice@12 @323 + IoAttachDeviceByPointer@0 @324 PRIVATE + IoAttachDeviceToDeviceStack@8 @325 + IoAttachDeviceToDeviceStackSafe@0 @326 PRIVATE + IoBuildAsynchronousFsdRequest@0 @327 PRIVATE + IoBuildDeviceIoControlRequest@36 @328 + IoBuildPartialMdl@0 @329 PRIVATE + IoBuildSynchronousFsdRequest@28 @330 + IoCallDriver@8 @331 + IoCancelFileOpen@0 @332 PRIVATE + IoCancelIrp@0 @333 PRIVATE + IoCheckDesiredAccess@0 @334 PRIVATE + IoCheckEaBufferValidity@0 @335 PRIVATE + IoCheckFunctionAccess@0 @336 PRIVATE + IoCheckQuerySetFileInformation@0 @337 PRIVATE + IoCheckQuerySetVolumeInformation@0 @338 PRIVATE + IoCheckQuotaBufferValidity@0 @339 PRIVATE + IoCheckShareAccess@0 @340 PRIVATE + IoCompleteRequest@8 @341 + IoConnectInterrupt@0 @342 PRIVATE + IoCreateController@0 @343 PRIVATE + IoCreateDevice@28 @344 + IoCreateDisk@0 @345 PRIVATE + IoCreateDriver@8 @346 + IoCreateFile@56 @347 + IoCreateFileSpecifyDeviceObjectHint@0 @348 PRIVATE + IoCreateNotificationEvent@8 @349 + IoCreateStreamFileObject@0 @350 PRIVATE + IoCreateStreamFileObjectEx@0 @351 PRIVATE + IoCreateStreamFileObjectLite@0 @352 PRIVATE + IoCreateSymbolicLink@8 @353 + IoCreateSynchronizationEvent@8 @354 + IoCreateUnprotectedSymbolicLink@0 @355 PRIVATE + IoCsqInitialize@28 @356 + IoCsqInsertIrp@0 @357 PRIVATE + IoCsqRemoveIrp@0 @358 PRIVATE + IoCsqRemoveNextIrp@0 @359 PRIVATE + IoDeleteController@0 @360 PRIVATE + IoDeleteDevice@4 @361 + IoDeleteDriver@4 @362 + IoDeleteSymbolicLink@4 @363 + IoDetachDevice@0 @364 PRIVATE + IoDeviceHandlerObjectSize@0 @365 PRIVATE + IoDeviceHandlerObjectType@0 @366 PRIVATE + IoDeviceObjectType @367 DATA + IoDisconnectInterrupt@0 @368 PRIVATE + IoDriverObjectType @369 DATA + IoEnqueueIrp@0 @370 PRIVATE + IoEnumerateDeviceObjectList@0 @371 PRIVATE + IoFastQueryNetworkAttributes@0 @372 PRIVATE + IoFileObjectType @373 DATA + IoForwardAndCatchIrp@0 @374 PRIVATE + IoForwardIrpSynchronously@0 @375 PRIVATE + IoFreeController@0 @376 PRIVATE + IoFreeErrorLogEntry@0 @377 PRIVATE + IoFreeIrp@4 @378 + IoFreeMdl@4 @379 + IoFreeWorkItem@0 @380 PRIVATE + IoGetAttachedDevice@4 @381 + IoGetAttachedDeviceReference@4 @382 + IoGetBaseFileSystemDeviceObject@0 @383 PRIVATE + IoGetBootDiskInformation@0 @384 PRIVATE + IoGetConfigurationInformation@0 @385 + IoGetCurrentProcess@0 @386 + IoGetDeviceAttachmentBaseRef@4 @387 + IoGetDeviceInterfaceAlias@0 @388 PRIVATE + IoGetDeviceInterfaces@16 @389 + IoGetDeviceObjectPointer@16 @390 + IoGetDeviceProperty@20 @391 + IoGetDeviceToVerify@0 @392 PRIVATE + IoGetDiskDeviceObject@0 @393 PRIVATE + IoGetDmaAdapter@0 @394 PRIVATE + IoGetDriverObjectExtension@8 @395 + IoGetFileObjectGenericMapping@0 @396 PRIVATE + IoGetInitialStack@0 @397 PRIVATE + IoGetLowerDeviceObject@0 @398 PRIVATE + IoGetRelatedDeviceObject@4 @399 + IoGetRequestorProcess@0 @400 PRIVATE + IoGetRequestorProcessId@0 @401 PRIVATE + IoGetRequestorSessionId@0 @402 PRIVATE + IoGetStackLimits@0 @403 PRIVATE + IoGetTopLevelIrp@0 @404 PRIVATE + IoInitializeIrp@12 @405 + IoInitializeRemoveLockEx@20 @406 + IoInitializeTimer@12 @407 + IoInvalidateDeviceRelations@8 @408 + IoInvalidateDeviceState@0 @409 PRIVATE + IoIsFileOriginRemote@0 @410 PRIVATE + IoIsOperationSynchronous@0 @411 PRIVATE + IoIsSystemThread@0 @412 PRIVATE + IoIsValidNameGraftingBuffer@0 @413 PRIVATE + IoIsWdmVersionAvailable@8 @414 + IoMakeAssociatedIrp@0 @415 PRIVATE + IoOpenDeviceInterfaceRegistryKey@0 @416 PRIVATE + IoOpenDeviceRegistryKey@0 @417 PRIVATE + IoPageRead@0 @418 PRIVATE + IoPnPDeliverServicePowerNotification@0 @419 PRIVATE + IoQueryDeviceDescription@32 @420 + IoQueryFileDosDeviceName@0 @421 PRIVATE + IoQueryFileInformation@0 @422 PRIVATE + IoQueryVolumeInformation@0 @423 PRIVATE + IoQueueThreadIrp@0 @424 PRIVATE + IoQueueWorkItem@0 @425 PRIVATE + IoRaiseHardError@0 @426 PRIVATE + IoRaiseInformationalHardError@0 @427 PRIVATE + IoReadDiskSignature@0 @428 PRIVATE + IoReadOperationCount@0 @429 PRIVATE + IoReadPartitionTableEx@0 @430 PRIVATE + IoReadTransferCount@0 @431 PRIVATE + IoRegisterBootDriverReinitialization@0 @432 PRIVATE + IoRegisterDeviceInterface@16 @433 + IoRegisterDriverReinitialization@12 @434 + IoRegisterFileSystem@4 @435 + IoRegisterFsRegistrationChange@0 @436 PRIVATE + IoRegisterLastChanceShutdownNotification@0 @437 PRIVATE + IoRegisterPlugPlayNotification@28 @438 + IoRegisterShutdownNotification@4 @439 + IoReleaseCancelSpinLock@4 @440 + IoReleaseRemoveLockAndWaitEx@12 @441 + IoReleaseRemoveLockEx@0 @442 PRIVATE + IoReleaseVpbSpinLock@0 @443 PRIVATE + IoRemoveShareAccess@0 @444 PRIVATE + IoReportDetectedDevice@0 @445 PRIVATE + IoReportHalResourceUsage@0 @446 PRIVATE + IoReportResourceForDetection@28 @447 + IoReportResourceUsage@36 @448 + IoReportTargetDeviceChange@0 @449 PRIVATE + IoReportTargetDeviceChangeAsynchronous@0 @450 PRIVATE + IoRequestDeviceEject@0 @451 PRIVATE + IoReuseIrp@0 @452 PRIVATE + IoSetCompletionRoutineEx@0 @453 PRIVATE + IoSetDeviceInterfaceState@8 @454 + IoSetDeviceToVerify@0 @455 PRIVATE + IoSetFileOrigin@0 @456 PRIVATE + IoSetHardErrorOrVerifyDevice@0 @457 PRIVATE + IoSetInformation@0 @458 PRIVATE + IoSetIoCompletion@0 @459 PRIVATE + IoSetPartitionInformationEx@0 @460 PRIVATE + IoSetShareAccess@0 @461 PRIVATE + IoSetStartIoAttributes@0 @462 PRIVATE + IoSetSystemPartition@0 @463 PRIVATE + IoSetThreadHardErrorMode@4 @464 + IoSetTopLevelIrp@0 @465 PRIVATE + IoStartNextPacket@8 @466 + IoStartNextPacketByKey@0 @467 PRIVATE + IoStartPacket@0 @468 PRIVATE + IoStartTimer@4 @469 + IoStatisticsLock@0 @470 PRIVATE + IoStopTimer@4 @471 + IoSynchronousInvalidateDeviceRelations@0 @472 PRIVATE + IoSynchronousPageWrite@0 @473 PRIVATE + IoThreadToProcess@0 @474 PRIVATE + IoUnregisterFileSystem@4 @475 + IoUnregisterFsRegistrationChange@0 @476 PRIVATE + IoUnregisterPlugPlayNotification@4 @477 + IoUnregisterShutdownNotification@4 @478 + IoUpdateShareAccess@0 @479 PRIVATE + IoValidateDeviceIoControlAccess@0 @480 PRIVATE + IoVerifyPartitionTable@0 @481 PRIVATE + IoVerifyVolume@0 @482 PRIVATE + IoVolumeDeviceToDosName@0 @483 PRIVATE + IoWMIAllocateInstanceIds@0 @484 PRIVATE + IoWMIDeviceObjectToInstanceName@0 @485 PRIVATE + IoWMIExecuteMethod@0 @486 PRIVATE + IoWMIHandleToInstanceName@0 @487 PRIVATE + IoWMIOpenBlock@12 @488 + IoWMIQueryAllData@0 @489 PRIVATE + IoWMIQueryAllDataMultiple@0 @490 PRIVATE + IoWMIQuerySingleInstance@0 @491 PRIVATE + IoWMIQuerySingleInstanceMultiple@0 @492 PRIVATE + IoWMIRegistrationControl@8 @493 + IoWMISetNotificationCallback@0 @494 PRIVATE + IoWMISetSingleInstance@0 @495 PRIVATE + IoWMISetSingleItem@0 @496 PRIVATE + IoWMISuggestInstanceName@0 @497 PRIVATE + IoWMIWriteEvent@0 @498 PRIVATE + IoWriteErrorLogEntry@0 @499 PRIVATE + IoWriteOperationCount@0 @500 PRIVATE + IoWritePartitionTableEx@0 @501 PRIVATE + IoWriteTransferCount@0 @502 PRIVATE + KdDebuggerEnabled @503 DATA + KdDebuggerNotPresent@0 @504 PRIVATE + KdDisableDebugger@0 @505 PRIVATE + KdEnableDebugger@0 @506 PRIVATE + KdEnteredDebugger@0 @507 PRIVATE + KdPollBreakIn@0 @508 PRIVATE + KdPowerTransition@0 @509 PRIVATE + Ke386CallBios@0 @510 PRIVATE + Ke386IoSetAccessProcess@8 @511 + Ke386QueryIoAccessMap@0 @512 PRIVATE + Ke386SetIoAccessMap@8 @513 + KeAcquireInterruptSpinLock@0 @514 PRIVATE + KeAcquireSpinLockAtDpcLevel@4 @515 + KeAddSystemServiceTable@0 @516 PRIVATE + KeAreApcsDisabled@0 @517 PRIVATE + KeAttachProcess@0 @518 PRIVATE + KeBugCheck@0 @519 PRIVATE + KeBugCheckEx@0 @520 PRIVATE + KeCancelTimer@4 @521 + KeCapturePersistentThreadState@0 @522 PRIVATE + KeClearEvent@4 @523 + KeConnectInterrupt@0 @524 PRIVATE + KeDcacheFlushCount@0 @525 PRIVATE + KeDelayExecutionThread@12 @526 + KeDeregisterBugCheckCallback@0 @527 PRIVATE + KeDeregisterBugCheckReasonCallback@0 @528 PRIVATE + KeDetachProcess@0 @529 PRIVATE + KeDisconnectInterrupt@0 @530 PRIVATE + KeEnterCriticalRegion@0 @531 + KeEnterKernelDebugger@0 @532 PRIVATE + KeFindConfigurationEntry@0 @533 PRIVATE + KeFindConfigurationNextEntry@0 @534 PRIVATE + KeFlushEntireTb@0 @535 PRIVATE + KeFlushQueuedDpcs@0 @536 + KeGetCurrentThread@0 @537 + KeGetPreviousMode@0 @538 PRIVATE + KeGetRecommendedSharedDataAlignment@0 @539 PRIVATE + KeI386AbiosCall@0 @540 PRIVATE + KeI386AllocateGdtSelectors@0 @541 PRIVATE + KeI386Call16BitCStyleFunction@0 @542 PRIVATE + KeI386Call16BitFunction@0 @543 PRIVATE + KeI386FlatToGdtSelector@0 @544 PRIVATE + KeI386GetLid@0 @545 PRIVATE + KeI386MachineType@0 @546 PRIVATE + KeI386ReleaseGdtSelectors@0 @547 PRIVATE + KeI386ReleaseLid@0 @548 PRIVATE + KeI386SetGdtSelector@0 @549 PRIVATE + KeIcacheFlushCount@0 @550 PRIVATE + KeInitializeApc@0 @551 PRIVATE + KeInitializeDeviceQueue@0 @552 PRIVATE + KeInitializeDpc@12 @553 + KeInitializeEvent@12 @554 + KeInitializeInterrupt@0 @555 PRIVATE + KeInitializeMutant@0 @556 PRIVATE + KeInitializeMutex@8 @557 + KeInitializeQueue@0 @558 PRIVATE + KeInitializeSemaphore@12 @559 + KeInitializeSpinLock@4 @560 + KeInitializeTimer@4 @561 + KeInitializeTimerEx@8 @562 + KeInsertByKeyDeviceQueue@0 @563 PRIVATE + KeInsertDeviceQueue@0 @564 PRIVATE + KeInsertHeadQueue@0 @565 PRIVATE + KeInsertQueue@8 @566 + KeInsertQueueApc@0 @567 PRIVATE + KeInsertQueueDpc@0 @568 PRIVATE + KeIsAttachedProcess@0 @569 PRIVATE + KeIsExecutingDpc@0 @570 PRIVATE + KeLeaveCriticalRegion@0 @571 + KeLoaderBlock@0 @572 PRIVATE + KeNumberProcessors@0 @573 PRIVATE + KeProfileInterrupt@0 @574 PRIVATE + KeProfileInterruptWithSource@0 @575 PRIVATE + KePulseEvent@0 @576 PRIVATE + KeQueryActiveProcessors@0 @577 + KeQueryInterruptTime@0 @578 + KeQueryPriorityThread@0 @579 PRIVATE + KeQueryRuntimeThread@0 @580 PRIVATE + KeQuerySystemTime@4 @581 + KeQueryTickCount@4 @582 + KeQueryTimeIncrement@0 @583 + KeRaiseUserException@0 @584 PRIVATE + KeReadStateEvent@0 @585 PRIVATE + KeReadStateMutant@0 @586 PRIVATE + KeReadStateMutex@0 @587 PRIVATE + KeReadStateQueue@0 @588 PRIVATE + KeReadStateSemaphore@0 @589 PRIVATE + KeReadStateTimer@0 @590 PRIVATE + KeRegisterBugCheckCallback@0 @591 PRIVATE + KeRegisterBugCheckReasonCallback@0 @592 PRIVATE + KeReleaseInterruptSpinLock@0 @593 PRIVATE + KeReleaseMutant@0 @594 PRIVATE + KeReleaseMutex@8 @595 + KeReleaseSemaphore@16 @596 + KeReleaseSpinLockFromDpcLevel@4 @597 + KeRemoveByKeyDeviceQueue@0 @598 PRIVATE + KeRemoveByKeyDeviceQueueIfBusy@0 @599 PRIVATE + KeRemoveDeviceQueue@0 @600 PRIVATE + KeRemoveEntryDeviceQueue@0 @601 PRIVATE + KeRemoveQueue@0 @602 PRIVATE + KeRemoveQueueDpc@0 @603 PRIVATE + KeRemoveSystemServiceTable@0 @604 PRIVATE + KeResetEvent@4 @605 + KeRestoreFloatingPointState@0 @606 PRIVATE + KeRevertToUserAffinityThread@0 @607 + KeRundownQueue@0 @608 PRIVATE + KeSaveFloatingPointState@0 @609 PRIVATE + KeSaveStateForHibernate@0 @610 PRIVATE + KeServiceDescriptorTable @611 DATA + KeSetAffinityThread@0 @612 PRIVATE + KeSetBasePriorityThread@0 @613 PRIVATE + KeSetDmaIoCoherency@0 @614 PRIVATE + KeSetEvent@12 @615 + KeSetEventBoostPriority@0 @616 PRIVATE + KeSetIdealProcessorThread@0 @617 PRIVATE + KeSetImportanceDpc@0 @618 PRIVATE + KeSetKernelStackSwapEnable@0 @619 PRIVATE + KeSetPriorityThread@8 @620 + KeSetProfileIrql@0 @621 PRIVATE + KeSetSystemAffinityThread@4 @622 + KeSetTargetProcessorDpc@8 @623 + KeSetTimeIncrement@0 @624 PRIVATE + KeSetTimer@0 @625 PRIVATE + KeSetTimerEx@20 @626 + KeStackAttachProcess@0 @627 PRIVATE + KeSynchronizeExecution@0 @628 PRIVATE + KeTerminateThread@0 @629 PRIVATE + KeTickCount @630 DATA + KeUnstackDetachProcess@0 @631 PRIVATE + KeUpdateRunTime@0 @632 PRIVATE + KeUpdateSystemTime@0 @633 PRIVATE + KeUserModeCallback@0 @634 PRIVATE + KeWaitForMultipleObjects@32 @635 + KeWaitForMutexObject@20 @636 + KeWaitForSingleObject@20 @637 + KiBugCheckData@0 @638 PRIVATE + KiCoprocessorError@0 @639 PRIVATE + KiDeliverApc@0 @640 PRIVATE + KiDispatchInterrupt@0 @641 PRIVATE + KiEnableTimerWatchdog@0 @642 PRIVATE + KiIpiServiceRoutine@0 @643 PRIVATE + KiUnexpectedInterrupt@0 @644 PRIVATE + LdrAccessResource@16 @645 + LdrEnumResources@0 @646 PRIVATE + LdrFindResourceDirectory_U@16 @647 + LdrFindResource_U@16 @648 + LpcPortObjectType@0 @649 PRIVATE + LpcRequestPort@0 @650 PRIVATE + LpcRequestWaitReplyPort@0 @651 PRIVATE + LsaCallAuthenticationPackage@0 @652 PRIVATE + LsaDeregisterLogonProcess@0 @653 PRIVATE + LsaFreeReturnBuffer@0 @654 PRIVATE + LsaLogonUser@0 @655 PRIVATE + LsaLookupAuthenticationPackage@0 @656 PRIVATE + LsaRegisterLogonProcess@0 @657 PRIVATE + Mm64BitPhysicalAddress@0 @658 PRIVATE + MmAddPhysicalMemory@0 @659 PRIVATE + MmAddVerifierThunks@0 @660 PRIVATE + MmAdjustWorkingSetSize@0 @661 PRIVATE + MmAdvanceMdl@0 @662 PRIVATE + MmAllocateContiguousMemory@12 @663 + MmAllocateContiguousMemorySpecifyCache@32 @664 + MmAllocateMappingAddress@0 @665 PRIVATE + MmAllocateNonCachedMemory@4 @666 + MmAllocatePagesForMdl@28 @667 + MmBuildMdlForNonPagedPool@4 @668 + MmCanFileBeTruncated@0 @669 PRIVATE + MmCommitSessionMappedView@0 @670 PRIVATE + MmCopyVirtualMemory@28 @671 + MmCreateMdl@0 @672 PRIVATE + MmCreateSection@32 @673 + MmDisableModifiedWriteOfSection@0 @674 PRIVATE + MmFlushImageSection@0 @675 PRIVATE + MmForceSectionClosed@0 @676 PRIVATE + MmFreeContiguousMemory@0 @677 PRIVATE + MmFreeContiguousMemorySpecifyCache@0 @678 PRIVATE + MmFreeMappingAddress@0 @679 PRIVATE + MmFreeNonCachedMemory@8 @680 + MmFreePagesFromMdl@0 @681 PRIVATE + MmGetPhysicalAddress@0 @682 PRIVATE + MmGetPhysicalMemoryRanges@0 @683 PRIVATE + MmGetSystemRoutineAddress@4 @684 + MmGetVirtualForPhysical@0 @685 PRIVATE + MmGrowKernelStack@0 @686 PRIVATE + MmHighestUserAddress@0 @687 PRIVATE + MmIsAddressValid@4 @688 + MmIsDriverVerifying@0 @689 PRIVATE + MmIsNonPagedSystemAddressValid@0 @690 PRIVATE + MmIsRecursiveIoFault@0 @691 PRIVATE + MmIsThisAnNtAsSystem@0 @692 PRIVATE + MmIsVerifierEnabled@0 @693 PRIVATE + MmLockPagableDataSection@0 @694 PRIVATE + MmLockPagableImageSection@0 @695 PRIVATE + MmLockPagableSectionByHandle@4 @696 + MmMapIoSpace@16 @697 + MmMapLockedPages@8 @698 + MmMapLockedPagesSpecifyCache@24 @699 + MmMapLockedPagesWithReservedMapping@0 @700 PRIVATE + MmMapMemoryDumpMdl@0 @701 PRIVATE + MmMapUserAddressesToPage@0 @702 PRIVATE + MmMapVideoDisplay@0 @703 PRIVATE + MmMapViewInSessionSpace@0 @704 PRIVATE + MmMapViewInSystemSpace@0 @705 PRIVATE + MmMapViewOfSection@0 @706 PRIVATE + MmMarkPhysicalMemoryAsBad@0 @707 PRIVATE + MmMarkPhysicalMemoryAsGood@0 @708 PRIVATE + MmPageEntireDriver@4 @709 + MmPrefetchPages@0 @710 PRIVATE + MmProbeAndLockPages@12 @711 + MmProbeAndLockProcessPages@0 @712 PRIVATE + MmProbeAndLockSelectedPages@0 @713 PRIVATE + MmProtectMdlSystemAddress@0 @714 PRIVATE + MmQuerySystemSize@0 @715 + MmRemovePhysicalMemory@0 @716 PRIVATE + MmResetDriverPaging@4 @717 + MmSectionObjectType@0 @718 PRIVATE + MmSecureVirtualMemory@0 @719 PRIVATE + MmSetAddressRangeModified@0 @720 PRIVATE + MmSetBankedSection@0 @721 PRIVATE + MmSizeOfMdl@0 @722 PRIVATE + MmSystemRangeStart@0 @723 PRIVATE + MmTrimAllSystemPagableMemory@0 @724 PRIVATE + MmUnlockPagableImageSection@4 @725 + MmUnlockPages@4 @726 + MmUnmapIoSpace@8 @727 + MmUnmapLockedPages@8 @728 + MmUnmapReservedMapping@0 @729 PRIVATE + MmUnmapVideoDisplay@0 @730 PRIVATE + MmUnmapViewInSessionSpace@0 @731 PRIVATE + MmUnmapViewInSystemSpace@0 @732 PRIVATE + MmUnmapViewOfSection@0 @733 PRIVATE + MmUnsecureVirtualMemory@0 @734 PRIVATE + MmUserProbeAddress@0 @735 PRIVATE + NlsAnsiCodePage=ntdll.NlsAnsiCodePage @736 DATA + NlsLeadByteInfo@0 @737 PRIVATE + NlsMbCodePageTag=ntdll.NlsMbCodePageTag @738 DATA + NlsMbOemCodePageTag=ntdll.NlsMbOemCodePageTag @739 DATA + NlsOemCodePage@0 @740 PRIVATE + NlsOemLeadByteInfo@0 @741 PRIVATE + NtAddAtom@12 @742 + NtAdjustPrivilegesToken@24 @743 + NtAllocateLocallyUniqueId@4 @744 + NtAllocateUuids@16 @745 + NtAllocateVirtualMemory@24 @746 + NtBuildNumber @747 DATA + NtClose@4 @748 + NtConnectPort@32 @749 + NtCreateEvent@20 @750 + NtCreateFile@44 @751 + NtCreateSection@28 @752 + NtDeleteAtom@4 @753 + NtDeleteFile@4 @754 + NtDeviceIoControlFile@40 @755 + NtDuplicateObject@28 @756 + NtDuplicateToken@24 @757 + NtFindAtom@12 @758 + NtFreeVirtualMemory@16 @759 + NtFsControlFile@40 @760 + NtGlobalFlag@0 @761 PRIVATE + NtLockFile@40 @762 + NtMakePermanentObject@0 @763 PRIVATE + NtMapViewOfSection@40 @764 + NtNotifyChangeDirectoryFile@36 @765 + NtOpenFile@24 @766 + NtOpenProcess@16 @767 + NtOpenProcessToken@12 @768 + NtOpenProcessTokenEx@16 @769 + NtOpenThread@16 @770 + NtOpenThreadToken@16 @771 + NtOpenThreadTokenEx@20 @772 + NtQueryDirectoryFile@44 @773 + NtQueryEaFile@36 @774 + NtQueryInformationAtom@20 @775 + NtQueryInformationFile@20 @776 + NtQueryInformationProcess@20 @777 + NtQueryInformationThread@20 @778 + NtQueryInformationToken@20 @779 + NtQueryQuotaInformationFile@0 @780 PRIVATE + NtQuerySecurityObject@20 @781 + NtQuerySystemInformation@16 @782 + NtQueryVolumeInformationFile@20 @783 + NtReadFile@36 @784 + NtRequestPort@0 @785 PRIVATE + NtRequestWaitReplyPort@12 @786 + NtSetEaFile@16 @787 + NtSetEvent@8 @788 + NtSetInformationFile@20 @789 + NtSetInformationProcess@16 @790 + NtSetInformationThread@16 @791 + NtSetQuotaInformationFile@0 @792 PRIVATE + NtSetSecurityObject@12 @793 + NtSetVolumeInformationFile@20 @794 + NtShutdownSystem@4 @795 + NtTraceEvent@0 @796 PRIVATE + NtUnlockFile@20 @797 + NtVdmControl@0 @798 PRIVATE + NtWaitForSingleObject@12 @799 + NtWriteFile@36 @800 + ObAssignSecurity@0 @801 PRIVATE + ObCheckCreateObjectAccess@0 @802 PRIVATE + ObCheckObjectAccess@0 @803 PRIVATE + ObCloseHandle@0 @804 PRIVATE + ObCreateObject@0 @805 PRIVATE + ObCreateObjectType@0 @806 PRIVATE + ObDereferenceObject@4 @807 + ObDereferenceSecurityDescriptor@0 @808 PRIVATE + ObFindHandleForObject@0 @809 PRIVATE + ObGetFilterVersion@0 @810 + ObGetObjectSecurity@0 @811 PRIVATE + ObGetObjectType@4 @812 + ObInsertObject@0 @813 PRIVATE + ObLogSecurityDescriptor@0 @814 PRIVATE + ObMakeTemporaryObject@0 @815 PRIVATE + ObOpenObjectByName@0 @816 PRIVATE + ObOpenObjectByPointer@0 @817 PRIVATE + ObQueryNameString@16 @818 + ObQueryObjectAuditingByHandle@0 @819 PRIVATE + ObReferenceObjectByHandle@24 @820 + ObReferenceObjectByName@32 @821 + ObReferenceObjectByPointer@16 @822 + ObReferenceSecurityDescriptor@0 @823 PRIVATE + ObRegisterCallbacks@8 @824 + ObReleaseObjectSecurity@0 @825 PRIVATE + ObSetHandleAttributes@0 @826 PRIVATE + ObSetSecurityDescriptorInfo@0 @827 PRIVATE + ObSetSecurityObjectByPointer@0 @828 PRIVATE + ObUnRegisterCallbacks@4 @829 + PfxFindPrefix@0 @830 PRIVATE + PfxInitialize@0 @831 PRIVATE + PfxInsertPrefix@0 @832 PRIVATE + PfxRemovePrefix@0 @833 PRIVATE + PoCallDriver@0 @834 PRIVATE + PoCancelDeviceNotify@0 @835 PRIVATE + PoQueueShutdownWorkItem@0 @836 PRIVATE + PoRegisterDeviceForIdleDetection@0 @837 PRIVATE + PoRegisterDeviceNotify@0 @838 PRIVATE + PoRegisterSystemState@0 @839 PRIVATE + PoRequestPowerIrp@0 @840 PRIVATE + PoRequestShutdownEvent@0 @841 PRIVATE + PoSetHiberRange@0 @842 PRIVATE + PoSetPowerState@12 @843 + PoSetSystemState@0 @844 PRIVATE + PoShutdownBugCheck@0 @845 PRIVATE + PoStartNextPowerIrp@0 @846 PRIVATE + PoUnregisterSystemState@0 @847 PRIVATE + ProbeForRead@12 @848 + ProbeForWrite@12 @849 + PsAcquireProcessExitSynchronization@4 @850 + PsAssignImpersonationToken@0 @851 PRIVATE + PsChargePoolQuota@0 @852 PRIVATE + PsChargeProcessNonPagedPoolQuota@0 @853 PRIVATE + PsChargeProcessPagedPoolQuota@0 @854 PRIVATE + PsChargeProcessPoolQuota@0 @855 PRIVATE + PsCreateSystemProcess@0 @856 PRIVATE + PsCreateSystemThread@28 @857 + PsDereferenceImpersonationToken@0 @858 PRIVATE + PsDereferencePrimaryToken@0 @859 PRIVATE + PsDisableImpersonation@0 @860 PRIVATE + PsEstablishWin32Callouts@0 @861 PRIVATE + PsGetContextThread@0 @862 PRIVATE + PsGetCurrentProcess@0=IoGetCurrentProcess @863 + PsGetCurrentProcessId@0 @864 + PsGetCurrentProcessSessionId@0 @865 PRIVATE + PsGetCurrentThread@0=KeGetCurrentThread @866 + PsGetCurrentThreadId@0 @867 + PsGetCurrentThreadPreviousMode@0 @868 PRIVATE + PsGetCurrentThreadStackBase@0 @869 PRIVATE + PsGetCurrentThreadStackLimit@0 @870 PRIVATE + PsGetJobLock@0 @871 PRIVATE + PsGetJobSessionId@0 @872 PRIVATE + PsGetJobUIRestrictionsClass@0 @873 PRIVATE + PsGetProcessCreateTimeQuadPart@0 @874 PRIVATE + PsGetProcessDebugPort@0 @875 PRIVATE + PsGetProcessExitProcessCalled@0 @876 PRIVATE + PsGetProcessExitStatus@0 @877 PRIVATE + PsGetProcessExitTime@0 @878 PRIVATE + PsGetProcessId@4 @879 + PsGetProcessImageFileName@0 @880 PRIVATE + PsGetProcessInheritedFromUniqueProcessId@0 @881 PRIVATE + PsGetProcessJob@0 @882 PRIVATE + PsGetProcessPeb@0 @883 PRIVATE + PsGetProcessPriorityClass@0 @884 PRIVATE + PsGetProcessSectionBaseAddress@0 @885 PRIVATE + PsGetProcessSecurityPort@0 @886 PRIVATE + PsGetProcessSessionId@0 @887 PRIVATE + PsGetProcessWin32Process@0 @888 PRIVATE + PsGetProcessWin32WindowStation@0 @889 PRIVATE + PsGetThreadFreezeCount@0 @890 PRIVATE + PsGetThreadHardErrorsAreDisabled@0 @891 PRIVATE + PsGetThreadId@0 @892 PRIVATE + PsGetThreadProcess@0 @893 PRIVATE + PsGetThreadProcessId@0 @894 PRIVATE + PsGetThreadSessionId@0 @895 PRIVATE + PsGetThreadTeb@0 @896 PRIVATE + PsGetThreadWin32Thread@0 @897 PRIVATE + PsGetVersion@16 @898 + PsImpersonateClient@20 @899 + PsInitialSystemProcess@0 @900 PRIVATE + PsIsProcessBeingDebugged@0 @901 PRIVATE + PsIsSystemThread@0 @902 PRIVATE + PsIsThreadImpersonating@0 @903 PRIVATE + PsIsThreadTerminating@0 @904 PRIVATE + PsJobType@0 @905 PRIVATE + PsLookupProcessByProcessId@8 @906 + PsLookupProcessThreadByCid@0 @907 PRIVATE + PsLookupThreadByThreadId@0 @908 PRIVATE + PsProcessType @909 DATA + PsReferenceImpersonationToken@0 @910 PRIVATE + PsReferencePrimaryToken@0 @911 PRIVATE + PsReferenceProcessFilePointer@8 @912 + PsReleaseProcessExitSynchronization@4 @913 + PsRemoveCreateThreadNotifyRoutine@4 @914 + PsRemoveLoadImageNotifyRoutine@4 @915 + PsRestoreImpersonation@0 @916 PRIVATE + PsResumeProcess@4 @917 + PsReturnPoolQuota@0 @918 PRIVATE + PsReturnProcessNonPagedPoolQuota@0 @919 PRIVATE + PsReturnProcessPagedPoolQuota@0 @920 PRIVATE + PsRevertThreadToSelf@0 @921 PRIVATE + PsRevertToSelf@0 @922 + PsSetContextThread@0 @923 PRIVATE + PsSetCreateProcessNotifyRoutine@8 @924 + PsSetCreateProcessNotifyRoutineEx@8 @925 + PsSetCreateThreadNotifyRoutine@4 @926 + PsSetJobUIRestrictionsClass@0 @927 PRIVATE + PsSetLegoNotifyRoutine@0 @928 PRIVATE + PsSetLoadImageNotifyRoutine@4 @929 + PsSetProcessPriorityByClass@0 @930 PRIVATE + PsSetProcessPriorityClass@0 @931 PRIVATE + PsSetProcessSecurityPort@0 @932 PRIVATE + PsSetProcessWin32Process@0 @933 PRIVATE + PsSetProcessWindowStation@0 @934 PRIVATE + PsSetThreadHardErrorsAreDisabled@0 @935 PRIVATE + PsSetThreadWin32Thread@0 @936 PRIVATE + PsSuspendProcess@4 @937 + PsTerminateSystemThread@4 @938 + PsThreadType @939 DATA + READ_REGISTER_BUFFER_UCHAR@12 @940 + READ_REGISTER_BUFFER_ULONG@0 @941 PRIVATE + READ_REGISTER_BUFFER_USHORT@0 @942 PRIVATE + READ_REGISTER_UCHAR@0 @943 PRIVATE + READ_REGISTER_ULONG@0 @944 PRIVATE + READ_REGISTER_USHORT@0 @945 PRIVATE + RtlAbsoluteToSelfRelativeSD@12 @946 + RtlAddAccessAllowedAce@16 @947 + RtlAddAccessAllowedAceEx@20 @948 + RtlAddAce@20 @949 + RtlAddAtomToAtomTable@12 @950 + RtlAddRange@0 @951 PRIVATE + RtlAllocateHeap@12 @952 + RtlAnsiCharToUnicodeChar@4 @953 + RtlAnsiStringToUnicodeSize@4 @954 + RtlAnsiStringToUnicodeString@12 @955 + RtlAppendAsciizToString@8 @956 + RtlAppendStringToString@8 @957 + RtlAppendUnicodeStringToString@8 @958 + RtlAppendUnicodeToString@8 @959 + RtlAreAllAccessesGranted@8 @960 + RtlAreAnyAccessesGranted@8 @961 + RtlAreBitsClear@12 @962 + RtlAreBitsSet@12 @963 + RtlAssert@16 @964 + RtlCaptureContext@4 @965 + RtlCaptureStackBackTrace@16 @966 + RtlCharToInteger@12 @967 + RtlCheckRegistryKey@8 @968 + RtlClearAllBits@4 @969 + RtlClearBit@0 @970 PRIVATE + RtlClearBits@12 @971 + RtlCompareMemory@12 @972 + RtlCompareMemoryUlong@12 @973 + RtlCompareString@12 @974 + RtlCompareUnicodeString@12 @975 + RtlCompressBuffer@32 @976 + RtlCompressChunks@0 @977 PRIVATE + RtlConvertLongToLargeInteger@4 @978 + RtlConvertSidToUnicodeString@12 @979 + RtlConvertUlongToLargeInteger@4 @980 + RtlCopyLuid@8 @981 + RtlCopyRangeList@0 @982 PRIVATE + RtlCopySid@12 @983 + RtlCopyString@8 @984 + RtlCopyUnicodeString@8 @985 + RtlCreateAcl@12 @986 + RtlCreateAtomTable@8 @987 + RtlCreateHeap@24 @988 + RtlCreateRegistryKey@8 @989 + RtlCreateSecurityDescriptor@8 @990 + RtlCreateSystemVolumeInformationFolder@0 @991 PRIVATE + RtlCreateUnicodeString@8 @992 + RtlCustomCPToUnicodeN@0 @993 PRIVATE + RtlDecompressBuffer@24 @994 + RtlDecompressChunks@0 @995 PRIVATE + RtlDecompressFragment@32 @996 + RtlDelete@0 @997 PRIVATE + RtlDeleteAce@8 @998 + RtlDeleteAtomFromAtomTable@8 @999 + RtlDeleteElementGenericTable@0 @1000 PRIVATE + RtlDeleteElementGenericTableAvl@0 @1001 PRIVATE + RtlDeleteNoSplay@0 @1002 PRIVATE + RtlDeleteOwnersRanges@0 @1003 PRIVATE + RtlDeleteRange@0 @1004 PRIVATE + RtlDeleteRegistryValue@12 @1005 + RtlDescribeChunk@0 @1006 PRIVATE + RtlDestroyAtomTable@4 @1007 + RtlDestroyHeap@4 @1008 + RtlDowncaseUnicodeString@12 @1009 + RtlEmptyAtomTable@8 @1010 + RtlEnlargedIntegerMultiply@8 @1011 + RtlEnlargedUnsignedDivide@16 @1012 + RtlEnlargedUnsignedMultiply@8 @1013 + RtlEnumerateGenericTable@0 @1014 PRIVATE + RtlEnumerateGenericTableAvl@0 @1015 PRIVATE + RtlEnumerateGenericTableLikeADirectory@0 @1016 PRIVATE + RtlEnumerateGenericTableWithoutSplaying@8 @1017 + RtlEnumerateGenericTableWithoutSplayingAvl@0 @1018 PRIVATE + RtlEqualLuid@8 @1019 + RtlEqualSid@8 @1020 + RtlEqualString@12 @1021 + RtlEqualUnicodeString@12 @1022 + RtlExtendedIntegerMultiply@12 @1023 + RtlExtendedLargeIntegerDivide@16 @1024 + RtlExtendedMagicDivide@20 @1025 + RtlFillMemory@12 @1026 + RtlFillMemoryUlong@12 @1027 + RtlFindClearBits@12 @1028 + RtlFindClearBitsAndSet@12 @1029 + RtlFindClearRuns@16 @1030 + RtlFindFirstRunClear@0 @1031 PRIVATE + RtlFindLastBackwardRunClear@12 @1032 + RtlFindLeastSignificantBit@8 @1033 + RtlFindLongestRunClear@8 @1034 + RtlFindMessage@20 @1035 + RtlFindMostSignificantBit@8 @1036 + RtlFindNextForwardRunClear@12 @1037 + RtlFindRange@0 @1038 PRIVATE + RtlFindSetBits@12 @1039 + RtlFindSetBitsAndClear@12 @1040 + RtlFindUnicodePrefix@0 @1041 PRIVATE + RtlFormatCurrentUserKeyPath@4 @1042 + RtlFreeAnsiString@4 @1043 + RtlFreeHeap@12 @1044 + RtlFreeOemString@4 @1045 + RtlFreeRangeList@0 @1046 PRIVATE + RtlFreeUnicodeString@4 @1047 + RtlGUIDFromString@8 @1048 + RtlGenerate8dot3Name@0 @1049 PRIVATE + RtlGetAce@12 @1050 + RtlGetCallersAddress@0 @1051 PRIVATE + RtlGetCompressionWorkSpaceSize@12 @1052 + RtlGetDaclSecurityDescriptor@16 @1053 + RtlGetDefaultCodePage@0 @1054 PRIVATE + RtlGetElementGenericTable@0 @1055 PRIVATE + RtlGetElementGenericTableAvl@0 @1056 PRIVATE + RtlGetFirstRange@0 @1057 PRIVATE + RtlGetGroupSecurityDescriptor@12 @1058 + RtlGetNextRange@0 @1059 PRIVATE + RtlGetNtGlobalFlags@0 @1060 + RtlGetOwnerSecurityDescriptor@12 @1061 + RtlGetSaclSecurityDescriptor@16 @1062 + RtlGetSetBootStatusData@0 @1063 PRIVATE + RtlGetVersion@4 @1064 + RtlHashUnicodeString@16 @1065 + RtlImageDirectoryEntryToData@16 @1066 + RtlImageNtHeader@4 @1067 + RtlInitAnsiString@8 @1068 + RtlInitCodePageTable@0 @1069 PRIVATE + RtlInitString@8 @1070 + RtlInitUnicodeString@8 @1071 + RtlInitializeBitMap@12 @1072 + RtlInitializeGenericTable@20 @1073 + RtlInitializeGenericTableAvl@20 @1074 + RtlInitializeRangeList@0 @1075 PRIVATE + RtlInitializeSid@12 @1076 + RtlInitializeUnicodePrefix@0 @1077 PRIVATE + RtlInsertElementGenericTable@0 @1078 PRIVATE + RtlInsertElementGenericTableAvl@16 @1079 + RtlInsertElementGenericTableFull@0 @1080 PRIVATE + RtlInsertElementGenericTableFullAvl@0 @1081 PRIVATE + RtlInsertUnicodePrefix@0 @1082 PRIVATE + RtlInt64ToUnicodeString@16 @1083 + RtlIntegerToChar@16 @1084 + RtlIntegerToUnicode@0 @1085 PRIVATE + RtlIntegerToUnicodeString@12 @1086 + RtlInvertRangeList@0 @1087 PRIVATE + RtlIpv4AddressToStringA@8 @1088 + RtlIpv4AddressToStringExA@16 @1089 + RtlIpv4AddressToStringExW@16 @1090 + RtlIpv4AddressToStringW@8 @1091 + RtlIpv4StringToAddressA@0 @1092 PRIVATE + RtlIpv4StringToAddressExA@0 @1093 PRIVATE + RtlIpv4StringToAddressExW@16 @1094 + RtlIpv4StringToAddressW@16 @1095 + RtlIpv6AddressToStringA@0 @1096 PRIVATE + RtlIpv6AddressToStringExA@0 @1097 PRIVATE + RtlIpv6AddressToStringExW@0 @1098 PRIVATE + RtlIpv6AddressToStringW@0 @1099 PRIVATE + RtlIpv6StringToAddressA@0 @1100 PRIVATE + RtlIpv6StringToAddressExA@0 @1101 PRIVATE + RtlIpv6StringToAddressExW@16 @1102 + RtlIpv6StringToAddressW@0 @1103 PRIVATE + RtlIsGenericTableEmpty@0 @1104 PRIVATE + RtlIsGenericTableEmptyAvl@0 @1105 PRIVATE + RtlIsNameLegalDOS8Dot3@12 @1106 + RtlIsRangeAvailable@0 @1107 PRIVATE + RtlIsValidOemCharacter@0 @1108 PRIVATE + RtlLargeIntegerAdd@16 @1109 + RtlLargeIntegerArithmeticShift@12 @1110 + RtlLargeIntegerDivide@20 @1111 + RtlLargeIntegerNegate@8 @1112 + RtlLargeIntegerShiftLeft@12 @1113 + RtlLargeIntegerShiftRight@12 @1114 + RtlLargeIntegerSubtract@16 @1115 + RtlLengthRequiredSid@4 @1116 + RtlLengthSecurityDescriptor@4 @1117 + RtlLengthSid@4 @1118 + RtlLockBootStatusData@0 @1119 PRIVATE + RtlLookupAtomInAtomTable@12 @1120 + RtlLookupElementGenericTable@0 @1121 PRIVATE + RtlLookupElementGenericTableAvl@0 @1122 PRIVATE + RtlLookupElementGenericTableFull@0 @1123 PRIVATE + RtlLookupElementGenericTableFullAvl@0 @1124 PRIVATE + RtlMapGenericMask@8 @1125 + RtlMapSecurityErrorToNtStatus@0 @1126 PRIVATE + RtlMergeRangeLists@0 @1127 PRIVATE + RtlMoveMemory@12 @1128 + RtlMultiByteToUnicodeN@20 @1129 + RtlMultiByteToUnicodeSize@12 @1130 + RtlNextUnicodePrefix@0 @1131 PRIVATE + RtlNtStatusToDosError@4 @1132 + RtlNtStatusToDosErrorNoTeb@4 @1133 + RtlNumberGenericTableElements@4 @1134 + RtlNumberGenericTableElementsAvl@0 @1135 PRIVATE + RtlNumberOfClearBits@4 @1136 + RtlNumberOfSetBits@4 @1137 + RtlOemStringToCountedUnicodeString@0 @1138 PRIVATE + RtlOemStringToUnicodeSize@4 @1139 + RtlOemStringToUnicodeString@12 @1140 + RtlOemToUnicodeN@20 @1141 + RtlPinAtomInAtomTable@8 @1142 + RtlPrefixString@12 @1143 + RtlPrefixUnicodeString@12 @1144 + RtlQueryAtomInAtomTable@24 @1145 + RtlQueryRegistryValues@20 @1146 + RtlQueryTimeZoneInformation@4 @1147 + RtlRaiseException@4 @1148 + RtlRandom@4 @1149 + RtlRandomEx@4 @1150 + RtlRealPredecessor@0 @1151 PRIVATE + RtlRealSuccessor@0 @1152 PRIVATE + RtlRemoveUnicodePrefix@0 @1153 PRIVATE + RtlReserveChunk@0 @1154 PRIVATE + RtlSecondsSince1970ToTime@8 @1155 + RtlSecondsSince1980ToTime@8 @1156 + RtlSelfRelativeToAbsoluteSD2@0 @1157 PRIVATE + RtlSelfRelativeToAbsoluteSD@44 @1158 + RtlSetAllBits@4 @1159 + RtlSetBit@0 @1160 PRIVATE + RtlSetBits@12 @1161 + RtlSetDaclSecurityDescriptor@16 @1162 + RtlSetGroupSecurityDescriptor@12 @1163 + RtlSetOwnerSecurityDescriptor@12 @1164 + RtlSetSaclSecurityDescriptor@16 @1165 + RtlSetTimeZoneInformation@4 @1166 + RtlSizeHeap@12 @1167 + RtlSplay@0 @1168 PRIVATE + RtlStringFromGUID@8 @1169 + RtlSubAuthorityCountSid@4 @1170 + RtlSubAuthoritySid@8 @1171 + RtlSubtreePredecessor@0 @1172 PRIVATE + RtlSubtreeSuccessor@0 @1173 PRIVATE + RtlTestBit@0 @1174 PRIVATE + RtlTimeFieldsToTime@8 @1175 + RtlTimeToElapsedTimeFields@8 @1176 + RtlTimeToSecondsSince1970@8 @1177 + RtlTimeToSecondsSince1980@8 @1178 + RtlTimeToTimeFields@8 @1179 + RtlTraceDatabaseAdd@0 @1180 PRIVATE + RtlTraceDatabaseCreate@0 @1181 PRIVATE + RtlTraceDatabaseDestroy@0 @1182 PRIVATE + RtlTraceDatabaseEnumerate@0 @1183 PRIVATE + RtlTraceDatabaseFind@0 @1184 PRIVATE + RtlTraceDatabaseLock@0 @1185 PRIVATE + RtlTraceDatabaseUnlock@0 @1186 PRIVATE + RtlTraceDatabaseValidate@0 @1187 PRIVATE + RtlUnicodeStringToAnsiSize@4 @1188 + RtlUnicodeStringToAnsiString@12 @1189 + RtlUnicodeStringToCountedOemString@0 @1190 PRIVATE + RtlUnicodeStringToInteger@12 @1191 + RtlUnicodeStringToOemSize@4 @1192 + RtlUnicodeStringToOemString@12 @1193 + RtlUnicodeToCustomCPN@0 @1194 PRIVATE + RtlUnicodeToMultiByteN@20 @1195 + RtlUnicodeToMultiByteSize@12 @1196 + RtlUnicodeToOemN@20 @1197 + RtlUnlockBootStatusData@0 @1198 PRIVATE + RtlUnwind@16 @1199 + RtlUpcaseUnicodeChar@4 @1200 + RtlUpcaseUnicodeString@12 @1201 + RtlUpcaseUnicodeStringToAnsiString@12 @1202 + RtlUpcaseUnicodeStringToCountedOemString@12 @1203 + RtlUpcaseUnicodeStringToOemString@12 @1204 + RtlUpcaseUnicodeToCustomCPN@0 @1205 PRIVATE + RtlUpcaseUnicodeToMultiByteN@20 @1206 + RtlUpcaseUnicodeToOemN@20 @1207 + RtlUpperChar@4 @1208 + RtlUpperString@8 @1209 + RtlValidRelativeSecurityDescriptor@12 @1210 + RtlValidSecurityDescriptor@4 @1211 + RtlValidSid@4 @1212 + RtlVerifyVersionInfo@16 @1213 + RtlVolumeDeviceToDosName@0 @1214 PRIVATE + RtlWalkFrameChain@0 @1215 PRIVATE + RtlWriteRegistryValue@24 @1216 + RtlZeroHeap@0 @1217 PRIVATE + RtlZeroMemory@8 @1218 + RtlxAnsiStringToUnicodeSize@4 @1219 + RtlxOemStringToUnicodeSize@4 @1220 + RtlxUnicodeStringToAnsiSize@4 @1221 + RtlxUnicodeStringToOemSize@4 @1222 + SeAccessCheck@0 @1223 PRIVATE + SeAppendPrivileges@0 @1224 PRIVATE + SeAssignSecurity@0 @1225 PRIVATE + SeAssignSecurityEx@0 @1226 PRIVATE + SeAuditHardLinkCreation@0 @1227 PRIVATE + SeAuditingFileEvents@0 @1228 PRIVATE + SeAuditingFileEventsWithContext@0 @1229 PRIVATE + SeAuditingFileOrGlobalEvents@0 @1230 PRIVATE + SeAuditingHardLinkEvents@0 @1231 PRIVATE + SeAuditingHardLinkEventsWithContext@0 @1232 PRIVATE + SeCaptureSecurityDescriptor@0 @1233 PRIVATE + SeCaptureSubjectContext@0 @1234 PRIVATE + SeCloseObjectAuditAlarm@0 @1235 PRIVATE + SeCreateAccessState@0 @1236 PRIVATE + SeCreateClientSecurity@0 @1237 PRIVATE + SeCreateClientSecurityFromSubjectContext@0 @1238 PRIVATE + SeDeassignSecurity@0 @1239 PRIVATE + SeDeleteAccessState@0 @1240 PRIVATE + SeDeleteObjectAuditAlarm@0 @1241 PRIVATE + SeExports@0 @1242 PRIVATE + SeFilterToken@0 @1243 PRIVATE + SeFreePrivileges@0 @1244 PRIVATE + SeImpersonateClient@0 @1245 PRIVATE + SeImpersonateClientEx@0 @1246 PRIVATE + SeLockSubjectContext@0 @1247 PRIVATE + SeMarkLogonSessionForTerminationNotification@0 @1248 PRIVATE + SeOpenObjectAuditAlarm@0 @1249 PRIVATE + SeOpenObjectForDeleteAuditAlarm@0 @1250 PRIVATE + SePrivilegeCheck@0 @1251 PRIVATE + SePrivilegeObjectAuditAlarm@0 @1252 PRIVATE + SePublicDefaultDacl@0 @1253 PRIVATE + SeQueryAuthenticationIdToken@0 @1254 PRIVATE + SeQueryInformationToken@0 @1255 PRIVATE + SeQuerySecurityDescriptorInfo@0 @1256 PRIVATE + SeQuerySessionIdToken@0 @1257 PRIVATE + SeRegisterLogonSessionTerminatedRoutine@0 @1258 PRIVATE + SeReleaseSecurityDescriptor@0 @1259 PRIVATE + SeReleaseSubjectContext@0 @1260 PRIVATE + SeSetAccessStateGenericMapping@0 @1261 PRIVATE + SeSetSecurityDescriptorInfo@0 @1262 PRIVATE + SeSetSecurityDescriptorInfoEx@0 @1263 PRIVATE + SeSinglePrivilegeCheck@12 @1264 + SeSystemDefaultDacl@0 @1265 PRIVATE + SeTokenImpersonationLevel@0 @1266 PRIVATE + SeTokenIsAdmin@0 @1267 PRIVATE + SeTokenIsRestricted@0 @1268 PRIVATE + SeTokenIsWriteRestricted@0 @1269 PRIVATE + SeTokenObjectType @1270 DATA + SeTokenType@0 @1271 PRIVATE + SeUnlockSubjectContext@0 @1272 PRIVATE + SeUnregisterLogonSessionTerminatedRoutine@0 @1273 PRIVATE + SeValidSecurityDescriptor@0 @1274 PRIVATE + VerSetConditionMask@16 @1275 + VfFailDeviceNode@0 @1276 PRIVATE + VfFailDriver@0 @1277 PRIVATE + VfFailSystemBIOS@0 @1278 PRIVATE + VfIsVerificationEnabled@0 @1279 PRIVATE + WRITE_REGISTER_BUFFER_UCHAR@0 @1280 PRIVATE + WRITE_REGISTER_BUFFER_ULONG@0 @1281 PRIVATE + WRITE_REGISTER_BUFFER_USHORT@0 @1282 PRIVATE + WRITE_REGISTER_UCHAR@0 @1283 PRIVATE + WRITE_REGISTER_ULONG@0 @1284 PRIVATE + WRITE_REGISTER_USHORT@0 @1285 PRIVATE + WmiFlushTrace@0 @1286 PRIVATE + WmiQueryTrace@0 @1287 PRIVATE + WmiQueryTraceInformation@0 @1288 PRIVATE + WmiStartTrace@0 @1289 PRIVATE + WmiStopTrace@0 @1290 PRIVATE + WmiTraceMessage@0 @1291 PRIVATE + WmiTraceMessageVa@0 @1292 PRIVATE + WmiUpdateTrace@0 @1293 PRIVATE + XIPDispatch@0 @1294 PRIVATE + ZwAccessCheckAndAuditAlarm@44=NtAccessCheckAndAuditAlarm @1295 PRIVATE + ZwAddBootEntry@0 @1296 PRIVATE + ZwAdjustPrivilegesToken@24=NtAdjustPrivilegesToken @1297 PRIVATE + ZwAlertThread@4=NtAlertThread @1298 PRIVATE + ZwAllocateVirtualMemory@24=NtAllocateVirtualMemory @1299 PRIVATE + ZwAssignProcessToJobObject@8=NtAssignProcessToJobObject @1300 PRIVATE + ZwCancelIoFile@8=NtCancelIoFile @1301 PRIVATE + ZwCancelTimer@8=NtCancelTimer @1302 PRIVATE + ZwClearEvent@4=NtClearEvent @1303 PRIVATE + ZwClose@4=NtClose @1304 + ZwCloseObjectAuditAlarm@0 @1305 PRIVATE + ZwConnectPort@32=NtConnectPort @1306 PRIVATE + ZwCreateDirectoryObject@12=NtCreateDirectoryObject @1307 PRIVATE + ZwCreateEvent@20=NtCreateEvent @1308 + ZwCreateFile@44=NtCreateFile @1309 + ZwCreateJobObject@12=NtCreateJobObject @1310 PRIVATE + ZwCreateKey@28=NtCreateKey @1311 PRIVATE + ZwCreateSection@28=NtCreateSection @1312 PRIVATE + ZwCreateSymbolicLinkObject@16=NtCreateSymbolicLinkObject @1313 PRIVATE + ZwCreateTimer@16=NtCreateTimer @1314 PRIVATE + ZwDeleteBootEntry@0 @1315 PRIVATE + ZwDeleteFile@4=NtDeleteFile @1316 PRIVATE + ZwDeleteKey@4=NtDeleteKey @1317 PRIVATE + ZwDeleteValueKey@8=NtDeleteValueKey @1318 PRIVATE + ZwDeviceIoControlFile@40=NtDeviceIoControlFile @1319 PRIVATE + ZwDisplayString@4=NtDisplayString @1320 PRIVATE + ZwDuplicateObject@28=NtDuplicateObject @1321 + ZwDuplicateToken@24=NtDuplicateToken @1322 PRIVATE + ZwEnumerateBootEntries@0 @1323 PRIVATE + ZwEnumerateKey@24=NtEnumerateKey @1324 PRIVATE + ZwEnumerateValueKey@24=NtEnumerateValueKey @1325 PRIVATE + ZwFlushInstructionCache@12=NtFlushInstructionCache @1326 PRIVATE + ZwFlushKey@4=NtFlushKey @1327 PRIVATE + ZwFlushVirtualMemory@16=NtFlushVirtualMemory @1328 PRIVATE + ZwFreeVirtualMemory@16=NtFreeVirtualMemory @1329 PRIVATE + ZwFsControlFile@40=NtFsControlFile @1330 PRIVATE + ZwInitiatePowerAction@16=NtInitiatePowerAction @1331 PRIVATE + ZwIsProcessInJob@8=NtIsProcessInJob @1332 PRIVATE + ZwLoadDriver@4 @1333 + ZwLoadKey@8=NtLoadKey @1334 PRIVATE + ZwMakeTemporaryObject@4=NtMakeTemporaryObject @1335 PRIVATE + ZwMapViewOfSection@40=NtMapViewOfSection @1336 PRIVATE + ZwNotifyChangeKey@40=NtNotifyChangeKey @1337 PRIVATE + ZwOpenDirectoryObject@12=NtOpenDirectoryObject @1338 PRIVATE + ZwOpenEvent@12=NtOpenEvent @1339 PRIVATE + ZwOpenFile@24=NtOpenFile @1340 + ZwOpenJobObject@12=NtOpenJobObject @1341 PRIVATE + ZwOpenKey@12=NtOpenKey @1342 PRIVATE + ZwOpenProcess@16=NtOpenProcess @1343 PRIVATE + ZwOpenProcessToken@12=NtOpenProcessToken @1344 PRIVATE + ZwOpenProcessTokenEx@16=NtOpenProcessTokenEx @1345 PRIVATE + ZwOpenSection@12=NtOpenSection @1346 PRIVATE + ZwOpenSymbolicLinkObject@12=NtOpenSymbolicLinkObject @1347 PRIVATE + ZwOpenThread@16=NtOpenThread @1348 PRIVATE + ZwOpenThreadToken@16=NtOpenThreadToken @1349 PRIVATE + ZwOpenThreadTokenEx@20=NtOpenThreadTokenEx @1350 PRIVATE + ZwOpenTimer@12=NtOpenTimer @1351 PRIVATE + ZwPowerInformation@20=NtPowerInformation @1352 PRIVATE + ZwPulseEvent@8=NtPulseEvent @1353 PRIVATE + ZwQueryBootEntryOrder@0 @1354 PRIVATE + ZwQueryBootOptions@0 @1355 PRIVATE + ZwQueryDefaultLocale@8=NtQueryDefaultLocale @1356 PRIVATE + ZwQueryDefaultUILanguage@4=NtQueryDefaultUILanguage @1357 PRIVATE + ZwQueryDirectoryFile@44=NtQueryDirectoryFile @1358 PRIVATE + ZwQueryDirectoryObject@28=NtQueryDirectoryObject @1359 PRIVATE + ZwQueryEaFile@36=NtQueryEaFile @1360 PRIVATE + ZwQueryFullAttributesFile@8=NtQueryFullAttributesFile @1361 PRIVATE + ZwQueryInformationFile@20=NtQueryInformationFile @1362 PRIVATE + ZwQueryInformationJobObject@20=NtQueryInformationJobObject @1363 PRIVATE + ZwQueryInformationProcess@20=NtQueryInformationProcess @1364 PRIVATE + ZwQueryInformationThread@20=NtQueryInformationThread @1365 PRIVATE + ZwQueryInformationToken@20=NtQueryInformationToken @1366 PRIVATE + ZwQueryInstallUILanguage@4=NtQueryInstallUILanguage @1367 PRIVATE + ZwQueryKey@20=NtQueryKey @1368 PRIVATE + ZwQueryObject@20=NtQueryObject @1369 PRIVATE + ZwQuerySection@20=NtQuerySection @1370 PRIVATE + ZwQuerySecurityObject@20=NtQuerySecurityObject @1371 PRIVATE + ZwQuerySymbolicLinkObject@12=NtQuerySymbolicLinkObject @1372 PRIVATE + ZwQuerySystemInformation@16=NtQuerySystemInformation @1373 PRIVATE + ZwQueryValueKey@24=NtQueryValueKey @1374 PRIVATE + ZwQueryVolumeInformationFile@20=NtQueryVolumeInformationFile @1375 PRIVATE + ZwReadFile@36=NtReadFile @1376 PRIVATE + ZwReplaceKey@12=NtReplaceKey @1377 PRIVATE + ZwRequestWaitReplyPort@12=NtRequestWaitReplyPort @1378 PRIVATE + ZwResetEvent@8=NtResetEvent @1379 PRIVATE + ZwRestoreKey@12=NtRestoreKey @1380 PRIVATE + ZwSaveKey@8=NtSaveKey @1381 PRIVATE + ZwSaveKeyEx@0 @1382 PRIVATE + ZwSetBootEntryOrder@0 @1383 PRIVATE + ZwSetBootOptions@0 @1384 PRIVATE + ZwSetDefaultLocale@8=NtSetDefaultLocale @1385 PRIVATE + ZwSetDefaultUILanguage@4=NtSetDefaultUILanguage @1386 PRIVATE + ZwSetEaFile@16=NtSetEaFile @1387 PRIVATE + ZwSetEvent@8=NtSetEvent @1388 + ZwSetInformationFile@20=NtSetInformationFile @1389 PRIVATE + ZwSetInformationJobObject@16=NtSetInformationJobObject @1390 PRIVATE + ZwSetInformationObject@16=NtSetInformationObject @1391 PRIVATE + ZwSetInformationProcess@16=NtSetInformationProcess @1392 PRIVATE + ZwSetInformationThread@16=NtSetInformationThread @1393 PRIVATE + ZwSetSecurityObject@12=NtSetSecurityObject @1394 PRIVATE + ZwSetSystemInformation@12=NtSetSystemInformation @1395 PRIVATE + ZwSetSystemTime@8=NtSetSystemTime @1396 PRIVATE + ZwSetTimer@28=NtSetTimer @1397 PRIVATE + ZwSetValueKey@24=NtSetValueKey @1398 PRIVATE + ZwSetVolumeInformationFile@20=NtSetVolumeInformationFile @1399 PRIVATE + ZwTerminateJobObject@8=NtTerminateJobObject @1400 PRIVATE + ZwTerminateProcess@8=NtTerminateProcess @1401 PRIVATE + ZwTranslateFilePath@0 @1402 PRIVATE + ZwUnloadDriver@4 @1403 + ZwUnloadKey@4=NtUnloadKey @1404 PRIVATE + ZwUnmapViewOfSection@8=NtUnmapViewOfSection @1405 PRIVATE + ZwWaitForMultipleObjects@20=NtWaitForMultipleObjects @1406 PRIVATE + ZwWaitForSingleObject@12=NtWaitForSingleObject @1407 + ZwWriteFile@36=NtWriteFile @1408 + ZwYieldExecution@0=NtYieldExecution @1409 PRIVATE + _CIcos=msvcrt._CIcos @1410 PRIVATE + _CIsin=msvcrt._CIsin @1411 PRIVATE + _CIsqrt=msvcrt._CIsqrt @1412 PRIVATE + _abnormal_termination=msvcrt._abnormal_termination @1413 PRIVATE + _alldiv@16 @1414 PRIVATE + _alldvrm@16 @1415 PRIVATE + _allmul@16 @1416 PRIVATE + _alloca_probe@0 @1417 PRIVATE + _allrem@16 @1418 PRIVATE + _allshl@12 @1419 PRIVATE + _allshr@12 @1420 PRIVATE + _aulldiv@16 @1421 PRIVATE + _aulldvrm@16 @1422 PRIVATE + _aullrem@16 @1423 PRIVATE + _aullshr@12 @1424 PRIVATE + _chkstk@0 @1425 PRIVATE + _except_handler2=msvcrt._except_handler2 @1426 PRIVATE + _except_handler3=msvcrt._except_handler3 @1427 PRIVATE + _global_unwind2=msvcrt._global_unwind2 @1428 PRIVATE + _itoa=msvcrt._itoa @1429 PRIVATE + _itow=msvcrt._itow @1430 PRIVATE + _local_unwind2=msvcrt._local_unwind2 @1431 PRIVATE + _purecall=msvcrt._purecall @1432 PRIVATE + _snprintf=msvcrt._snprintf @1433 PRIVATE + _snwprintf=msvcrt._snwprintf @1434 PRIVATE + _stricmp=NTOSKRNL__stricmp @1435 PRIVATE + _strlwr=msvcrt._strlwr @1436 PRIVATE + _strnicmp=NTOSKRNL__strnicmp @1437 PRIVATE + _strnset=msvcrt._strnset @1438 PRIVATE + _strrev=msvcrt._strrev @1439 PRIVATE + _strset=msvcrt._strset @1440 PRIVATE + _strupr=msvcrt._strupr @1441 PRIVATE + _vsnprintf=msvcrt._vsnprintf @1442 + _vsnwprintf=msvcrt._vsnwprintf @1443 PRIVATE + _wcsicmp=msvcrt._wcsicmp @1444 PRIVATE + _wcslwr=msvcrt._wcslwr @1445 PRIVATE + _wcsnicmp=NTOSKRNL__wcsnicmp @1446 PRIVATE + _wcsnset=msvcrt._wcsnset @1447 PRIVATE + _wcsrev=msvcrt._wcsrev @1448 PRIVATE + _wcsupr=msvcrt._wcsupr @1449 PRIVATE + atoi=msvcrt.atoi @1450 PRIVATE + atol=msvcrt.atol @1451 PRIVATE + isdigit=msvcrt.isdigit @1452 PRIVATE + islower=msvcrt.islower @1453 PRIVATE + isprint=msvcrt.isprint @1454 PRIVATE + isspace=msvcrt.isspace @1455 PRIVATE + isupper=msvcrt.isupper @1456 PRIVATE + isxdigit=msvcrt.isxdigit @1457 PRIVATE + mbstowcs=msvcrt.mbstowcs @1458 PRIVATE + mbtowc=msvcrt.mbtowc @1459 PRIVATE + memchr=msvcrt.memchr @1460 PRIVATE + memcpy=NTOSKRNL_memcpy @1461 PRIVATE + memmove=msvcrt.memmove @1462 PRIVATE + memset=NTOSKRNL_memset @1463 PRIVATE + qsort=msvcrt.qsort @1464 PRIVATE + rand=msvcrt.rand @1465 PRIVATE + sprintf=msvcrt.sprintf @1466 PRIVATE + srand=msvcrt.srand @1467 PRIVATE + strcat=msvcrt.strcat @1468 PRIVATE + strchr=msvcrt.strchr @1469 PRIVATE + strcmp=msvcrt.strcmp @1470 PRIVATE + strcpy=msvcrt.strcpy @1471 PRIVATE + strlen=msvcrt.strlen @1472 PRIVATE + strncat=msvcrt.strncat @1473 PRIVATE + strncmp=msvcrt.strncmp @1474 PRIVATE + strncpy=msvcrt.strncpy @1475 PRIVATE + strrchr=msvcrt.strrchr @1476 PRIVATE + strspn=msvcrt.strspn @1477 PRIVATE + strstr=msvcrt.strstr @1478 PRIVATE + swprintf=msvcrt.swprintf @1479 PRIVATE + tolower=msvcrt.tolower @1480 PRIVATE + toupper=msvcrt.toupper @1481 PRIVATE + towlower=msvcrt.towlower @1482 PRIVATE + towupper=msvcrt.towupper @1483 PRIVATE + vDbgPrintEx@16 @1484 + vDbgPrintExWithPrefix@20 @1485 + vsprintf=msvcrt.vsprintf @1486 PRIVATE + wcscat=msvcrt.wcscat @1487 PRIVATE + wcschr=msvcrt.wcschr @1488 PRIVATE + wcscmp=msvcrt.wcscmp @1489 PRIVATE + wcscpy=msvcrt.wcscpy @1490 PRIVATE + wcscspn=msvcrt.wcscspn @1491 PRIVATE + wcslen=msvcrt.wcslen @1492 PRIVATE + wcsncat=msvcrt.wcsncat @1493 PRIVATE + wcsncmp=NTOSKRNL_wcsncmp @1494 PRIVATE + wcsncpy=msvcrt.wcsncpy @1495 PRIVATE + wcsrchr=msvcrt.wcsrchr @1496 PRIVATE + wcsspn=msvcrt.wcsspn @1497 PRIVATE + wcsstr=msvcrt.wcsstr @1498 PRIVATE + wcstombs=msvcrt.wcstombs @1499 PRIVATE + wctomb=msvcrt.wctomb @1500 PRIVATE + wine_ntoskrnl_main_loop @1501 diff --git a/lib/wine/libodbc32.def b/lib/wine/libodbc32.def new file mode 100644 index 0000000..314df3e --- /dev/null +++ b/lib/wine/libodbc32.def @@ -0,0 +1,179 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/odbc32/odbc32.spec; do not edit! + +LIBRARY odbc32.dll + +EXPORTS + SQLAllocConnect@8=ODBC32_SQLAllocConnect @1 + SQLAllocEnv@4=ODBC32_SQLAllocEnv @2 + SQLAllocStmt@8=ODBC32_SQLAllocStmt @3 + SQLBindCol@24=ODBC32_SQLBindCol @4 + SQLCancel@4=ODBC32_SQLCancel @5 + SQLColAttributes@28=ODBC32_SQLColAttributes @6 + SQLConnect@28=ODBC32_SQLConnect @7 + SQLDescribeCol@36=ODBC32_SQLDescribeCol @8 + SQLDisconnect@4=ODBC32_SQLDisconnect @9 + SQLError@32=ODBC32_SQLError @10 + SQLExecDirect@12=ODBC32_SQLExecDirect @11 + SQLExecute@4=ODBC32_SQLExecute @12 + SQLFetch@4=ODBC32_SQLFetch @13 + SQLFreeConnect@4=ODBC32_SQLFreeConnect @14 + SQLFreeEnv@4=ODBC32_SQLFreeEnv @15 + SQLFreeStmt@8=ODBC32_SQLFreeStmt @16 + SQLGetCursorName@16=ODBC32_SQLGetCursorName @17 + SQLNumResultCols@8=ODBC32_SQLNumResultCols @18 + SQLPrepare@12=ODBC32_SQLPrepare @19 + SQLRowCount@8=ODBC32_SQLRowCount @20 + SQLSetCursorName@12=ODBC32_SQLSetCursorName @21 + SQLSetParam@32=ODBC32_SQLSetParam @22 + SQLTransact@12=ODBC32_SQLTransact @23 + SQLAllocHandle@12=ODBC32_SQLAllocHandle @24 + SQLBindParam@32=ODBC32_SQLBindParam @25 + SQLCloseCursor@4=ODBC32_SQLCloseCursor @26 + SQLColAttribute@28=ODBC32_SQLColAttribute @27 + SQLCopyDesc@8=ODBC32_SQLCopyDesc @28 + SQLEndTran@12=ODBC32_SQLEndTran @29 + SQLFetchScroll@12=ODBC32_SQLFetchScroll @30 + SQLFreeHandle@8=ODBC32_SQLFreeHandle @31 + SQLGetConnectAttr@20=ODBC32_SQLGetConnectAttr @32 + SQLGetDescField@24=ODBC32_SQLGetDescField @33 + SQLGetDescRec@44=ODBC32_SQLGetDescRec @34 + SQLGetDiagField@28=ODBC32_SQLGetDiagField @35 + SQLGetDiagRec@32=ODBC32_SQLGetDiagRec @36 + SQLGetEnvAttr@20=ODBC32_SQLGetEnvAttr @37 + SQLGetStmtAttr@20=ODBC32_SQLGetStmtAttr @38 + SQLSetConnectAttr@16=ODBC32_SQLSetConnectAttr @39 + SQLColumns@36=ODBC32_SQLColumns @40 + SQLDriverConnect@32=ODBC32_SQLDriverConnect @41 + SQLGetConnectOption@12=ODBC32_SQLGetConnectOption @42 + SQLGetData@24=ODBC32_SQLGetData @43 + SQLGetFunctions@12=ODBC32_SQLGetFunctions @44 + SQLGetInfo@20=ODBC32_SQLGetInfo @45 + SQLGetStmtOption@12=ODBC32_SQLGetStmtOption @46 + SQLGetTypeInfo@8=ODBC32_SQLGetTypeInfo @47 + SQLParamData@8=ODBC32_SQLParamData @48 + SQLPutData@12=ODBC32_SQLPutData @49 + SQLSetConnectOption@12=ODBC32_SQLSetConnectOption @50 + SQLSetStmtOption@12=ODBC32_SQLSetStmtOption @51 + SQLSpecialColumns@40=ODBC32_SQLSpecialColumns @52 + SQLStatistics@36=ODBC32_SQLStatistics @53 + SQLTables@36=ODBC32_SQLTables @54 + SQLBrowseConnect@24=ODBC32_SQLBrowseConnect @55 + SQLColumnPrivileges@36=ODBC32_SQLColumnPrivileges @56 + SQLDataSources@32=ODBC32_SQLDataSources @57 + SQLDescribeParam@24=ODBC32_SQLDescribeParam @58 + SQLExtendedFetch@20=ODBC32_SQLExtendedFetch @59 + SQLForeignKeys@52=ODBC32_SQLForeignKeys @60 + SQLMoreResults@4=ODBC32_SQLMoreResults @61 + SQLNativeSql@24=ODBC32_SQLNativeSql @62 + SQLNumParams@8=ODBC32_SQLNumParams @63 + SQLParamOptions@12=ODBC32_SQLParamOptions @64 + SQLPrimaryKeys@28=ODBC32_SQLPrimaryKeys @65 + SQLProcedureColumns@36=ODBC32_SQLProcedureColumns @66 + SQLProcedures@28=ODBC32_SQLProcedures @67 + SQLSetPos@16=ODBC32_SQLSetPos @68 + SQLSetScrollOptions@16=ODBC32_SQLSetScrollOptions @69 + SQLTablePrivileges@28=ODBC32_SQLTablePrivileges @70 + SQLDrivers@32=ODBC32_SQLDrivers @71 + SQLBindParameter@40=ODBC32_SQLBindParameter @72 + SQLSetDescField@20=ODBC32_SQLSetDescField @73 + SQLSetDescRec@40=ODBC32_SQLSetDescRec @74 + SQLSetEnvAttr@16=ODBC32_SQLSetEnvAttr @75 + SQLSetStmtAttr@16=ODBC32_SQLSetStmtAttr @76 + SQLAllocHandleStd@12=ODBC32_SQLAllocHandleStd @77 + SQLBulkOperations@8=ODBC32_SQLBulkOperations @78 + CloseODBCPerfData@0 @79 PRIVATE + CollectODBCPerfData@0 @80 PRIVATE + CursorLibLockDbc@0 @81 PRIVATE + CursorLibLockDesc@0 @82 PRIVATE + CursorLibLockStmt@0 @83 PRIVATE + ODBCGetTryWaitValue@0 @84 PRIVATE + CursorLibTransact@0 @85 PRIVATE + ODBSetTryWaitValue@0 @86 PRIVATE + ODBCSharedPerfMon@0 @89 PRIVATE + ODBCSharedVSFlag@0 @90 PRIVATE + SQLColAttributesW@28=ODBC32_SQLColAttributesW @106 + SQLConnectW@28=ODBC32_SQLConnectW @107 + SQLDescribeColW@36=ODBC32_SQLDescribeColW @108 + SQLErrorW@32=ODBC32_SQLErrorW @110 + SQLExecDirectW@12=ODBC32_SQLExecDirectW @111 + SQLGetCursorNameW@16=ODBC32_SQLGetCursorNameW @117 + SQLPrepareW@12=ODBC32_SQLPrepareW @119 + SQLSetCursorNameW@12=ODBC32_SQLSetCursorNameW @121 + SQLColAttributeW@28=ODBC32_SQLColAttributeW @127 + SQLGetConnectAttrW@20=ODBC32_SQLGetConnectAttrW @132 + SQLGetDescFieldW@24=ODBC32_SQLGetDescFieldW @133 + SQLGetDescRecW@44=ODBC32_SQLGetDescRecW @134 + SQLGetDiagFieldW@28=ODBC32_SQLGetDiagFieldW @135 + SQLGetDiagRecW@32=ODBC32_SQLGetDiagRecW @136 + SQLGetStmtAttrW@20=ODBC32_SQLGetStmtAttrW @138 + SQLSetConnectAttrW@16=ODBC32_SQLSetConnectAttrW @139 + SQLColumnsW@36=ODBC32_SQLColumnsW @140 + SQLDriverConnectW@32=ODBC32_SQLDriverConnectW @141 + SQLGetConnectOptionW@12=ODBC32_SQLGetConnectOptionW @142 + SQLGetInfoW@20=ODBC32_SQLGetInfoW @145 + SQLGetTypeInfoW@8=ODBC32_SQLGetTypeInfoW @147 + SQLSetConnectOptionW@12=ODBC32_SQLSetConnectOptionW @150 + SQLSpecialColumnsW@40=ODBC32_SQLSpecialColumnsW @152 + SQLStatisticsW@36=ODBC32_SQLStatisticsW @153 + SQLTablesW@36=ODBC32_SQLTablesW @154 + SQLBrowseConnectW@24=ODBC32_SQLBrowseConnectW @155 + SQLColumnPrivilegesW@36=ODBC32_SQLColumnPrivilegesW @156 + SQLDataSourcesW@32=ODBC32_SQLDataSourcesW @157 + SQLForeignKeysW@52=ODBC32_SQLForeignKeysW @160 + SQLNativeSqlW@24=ODBC32_SQLNativeSqlW @162 + SQLPrimaryKeysW@28=ODBC32_SQLPrimaryKeysW @165 + SQLProcedureColumnsW@36=ODBC32_SQLProcedureColumnsW @166 + SQLProceduresW@28=ODBC32_SQLProceduresW @167 + SQLTablePrivilegesW@28=ODBC32_SQLTablePrivilegesW @170 + SQLDriversW@32=ODBC32_SQLDriversW @171 + SQLSetDescFieldW@20=ODBC32_SQLSetDescFieldW @173 + SQLSetStmtAttrW@16=ODBC32_SQLSetStmtAttrW @176 + SQLColAttributesA@0 @206 PRIVATE + SQLConnectA@0 @207 PRIVATE + SQLDescribeColA@0 @208 PRIVATE + SQLErrorA@0 @210 PRIVATE + SQLExecDirectA@0 @211 PRIVATE + SQLGetCursorNameA@0 @217 PRIVATE + SQLPrepareA@0 @219 PRIVATE + SQLSetCursorNameA@0 @221 PRIVATE + SQLColAttributeA@0 @227 PRIVATE + SQLGetConnectAttrA@0 @232 PRIVATE + SQLGetDescFieldA@0 @233 PRIVATE + SQLGetDescRecA@0 @234 PRIVATE + SQLGetDiagFieldA@0 @235 PRIVATE + SQLGetDiagRecA@32=ODBC32_SQLGetDiagRecA @236 + SQLGetStmtAttrA@0 @238 PRIVATE + SQLSetConnectAttrA@0 @239 PRIVATE + SQLColumnsA@0 @240 PRIVATE + SQLDriverConnectA@0 @241 PRIVATE + SQLGetConnectOptionA@0 @242 PRIVATE + SQLGetInfoA@0 @245 PRIVATE + SQLGetTypeInfoA@0 @247 PRIVATE + SQLSetConnectOptionA@0 @250 PRIVATE + SQLSpecialColumnsA@0 @252 PRIVATE + SQLStatisticsA@0 @253 PRIVATE + SQLTablesA@0 @254 PRIVATE + SQLBrowseConnectA@0 @255 PRIVATE + SQLColumnPrivilegesA@0 @256 PRIVATE + SQLDataSourcesA@32=ODBC32_SQLDataSourcesA @257 + SQLForeignKeysA@0 @260 PRIVATE + SQLNativeSqlA@0 @262 PRIVATE + SQLPrimaryKeysA@0 @265 PRIVATE + SQLProcedureColumnsA@0 @266 PRIVATE + SQLProceduresA@0 @267 PRIVATE + SQLTablePrivilegesA@0 @270 PRIVATE + SQLDriversA@0 @271 PRIVATE + SQLSetDescFieldA@0 @273 PRIVATE + SQLSetStmtAttrA@0 @276 PRIVATE + ODBCSharedTraceFlag@0 @300 PRIVATE + ODBCQualifyFileDSNW@0 @301 PRIVATE + LockHandle@0 @87 PRIVATE + ODBCInternalConnectW@0 @88 PRIVATE + OpenODBCPerfData@0 @91 PRIVATE + PostComponentError@0 @92 PRIVATE + PostODBCComponentError@0 @93 PRIVATE + PostODBCError@0 @94 PRIVATE + SearchStatusCode@0 @95 PRIVATE + VFreeErrors@0 @96 PRIVATE + VRetrieveDriverErrorsRowCol@0 @97 PRIVATE + ValidateErrorQueue@0 @98 PRIVATE diff --git a/lib/wine/libodbccp32.def b/lib/wine/libodbccp32.def new file mode 100644 index 0000000..70c9bed --- /dev/null +++ b/lib/wine/libodbccp32.def @@ -0,0 +1,62 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/odbccp32/odbccp32.spec; do not edit! + +LIBRARY odbccp32.dll + +EXPORTS + SQLInstallDriver@20 @2 + SQLInstallDriverManager@12 @3 + SQLGetInstalledDrivers@12 @4 + SQLGetAvailableDrivers@16 @5 + SQLConfigDataSource@16 @6 + SQLRemoveDefaultDataSource@0 @7 + SQLWriteDSNToIni@8 @8 + SQLRemoveDSNFromIni@4 @9 + SQLInstallODBC@16 @10 + SQLManageDataSources@4 @11 + SQLCreateDataSource@8 @12 + SQLGetTranslator@32 @13 + SQLWritePrivateProfileString@16 @14 + SQLGetPrivateProfileString@24 @15 + SQLValidDSN@4 @16 + SQLRemoveDriverManager@4 @17 + SQLInstallTranslator@32 @18 + SQLRemoveTranslator@8 @19 + SQLRemoveDriver@12 @20 + SQLConfigDriver@28 @21 + SQLInstallerError@20 @22 + SQLPostInstallerError@8 @23 + SQLReadFileDSN@24 @24 + SQLWriteFileDSN@16 @25 + SQLInstallDriverEx@28 @26 + SQLGetConfigMode@4 @27 + SQLSetConfigMode@4 @28 + SQLInstallTranslatorEx@28 @29 + SQLCreateDataSourceEx@0 @30 PRIVATE + ODBCCPlApplet@16 @101 + SelectTransDlg@0 @112 PRIVATE + SQLInstallDriverW@20 @202 + SQLInstallDriverManagerW@12 @203 + SQLGetInstalledDriversW@12 @204 + SQLGetAvailableDriversW@16 @205 + SQLConfigDataSourceW@16 @206 + SQLWriteDSNToIniW@8 @208 + SQLRemoveDSNFromIniW@4 @209 + SQLInstallODBCW@16 @210 + SQLCreateDataSourceW@8 @212 + SQLGetTranslatorW@32 @213 + SQLWritePrivateProfileStringW@16 @214 + SQLGetPrivateProfileStringW@24 @215 + SQLValidDSNW@4 @216 + SQLInstallTranslatorW@32 @218 + SQLRemoveTranslatorW@8 @219 + SQLRemoveDriverW@12 @220 + SQLConfigDriverW@28 @221 + SQLInstallerErrorW@20 @222 + SQLPostInstallerErrorW@8 @223 + SQLReadFileDSNW@24 @224 + SQLWriteFileDSNW@16 @225 + SQLInstallDriverExW@28 @226 + SQLInstallTranslatorExW@28 @229 + SQLCreateDataSourceExW@0 @230 PRIVATE + SQLLoadDriverListBox@0 @231 PRIVATE + SQLLoadDataSourcesListBox@0 @232 PRIVATE diff --git a/lib/wine/libole32.def b/lib/wine/libole32.def new file mode 100644 index 0000000..d1d43fa --- /dev/null +++ b/lib/wine/libole32.def @@ -0,0 +1,301 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/ole32/ole32.spec; do not edit! + +LIBRARY ole32.dll + +EXPORTS + BindMoniker@16 @1 + CLIPFORMAT_UserFree@8 @2 + CLIPFORMAT_UserMarshal@12 @3 + CLIPFORMAT_UserSize@12 @4 + CLIPFORMAT_UserUnmarshal@12 @5 + CLSIDFromProgID@8 @6 + CLSIDFromProgIDEx@8 @7 + CLSIDFromString@8 @8 + CoAddRefServerProcess@0 @9 + CoAllowSetForegroundWindow@8 @10 + CoBuildVersion@0 @11 + CoCopyProxy@8 @12 + CoCreateFreeThreadedMarshaler@8 @13 + CoCreateGuid@4 @14 + CoCreateInstance@20 @15 + CoCreateInstanceEx@24 @16 + CoDisableCallCancellation@4 @17 + CoDisconnectObject@8 @18 + CoDosDateTimeToFileTime@12=kernel32.DosDateTimeToFileTime @19 + CoEnableCallCancellation@4 @20 + CoFileTimeNow@4 @21 + CoFileTimeToDosDateTime@12=kernel32.FileTimeToDosDateTime @22 + CoFreeAllLibraries@0 @23 + CoFreeLibrary@4 @24 + CoFreeUnusedLibraries@0 @25 + CoFreeUnusedLibrariesEx@8 @26 + CoGetActivationState@24 @27 + CoGetApartmentType@8 @28 + CoGetCallContext@8 @29 + CoGetCallState@8 @30 + CoGetCallerTID@4 @31 + CoGetClassObject@20 @32 + CoGetContextToken@4 @33 + CoGetCurrentLogicalThreadId@4 @34 + CoGetCurrentProcess@0 @35 + CoGetDefaultContext@12 @36 + CoGetInstanceFromFile@32 @37 + CoGetInstanceFromIStorage@28 @38 + CoGetInterfaceAndReleaseStream@12 @39 + CoGetMalloc@8 @40 + CoGetMarshalSizeMax@24 @41 + CoGetObject@16 @42 + CoGetObjectContext@8 @43 + CoGetPSClsid@8 @44 + CoGetStandardMarshal@24 @45 + CoGetState@4 @46 + CoGetTIDFromIPID@0 @47 PRIVATE + CoGetTreatAsClass@8 @48 + CoImpersonateClient@0 @49 + CoInitialize@4 @50 + CoInitializeEx@8 @51 + CoInitializeSecurity@36 @52 + CoInitializeWOW@8 @53 + CoIsHandlerConnected@4 @54 + CoIsOle1Class@4 @55 + CoLoadLibrary@8 @56 + CoLockObjectExternal@12 @57 + CoMarshalHresult@8 @58 + CoMarshalInterThreadInterfaceInStream@12 @59 + CoMarshalInterface@24 @60 + CoQueryAuthenticationServices@0 @61 PRIVATE + CoQueryClientBlanket@28 @62 + CoQueryProxyBlanket@32 @63 + CoQueryReleaseObject@0 @64 PRIVATE + CoRegisterChannelHook@8 @65 + CoRegisterClassObject@20 @66 + CoRegisterInitializeSpy@8 @67 + CoRegisterMallocSpy@4 @68 + CoRegisterMessageFilter@8 @69 + CoRegisterPSClsid@8 @70 + CoRegisterSurrogate@4 @71 + CoRegisterSurrogateEx@8 @72 + CoReleaseMarshalData@4 @73 + CoReleaseServerProcess@0 @74 + CoResumeClassObjects@0 @75 + CoRevertToSelf@0 @76 + CoRevokeClassObject@4 @77 + CoRevokeInitializeSpy@8 @78 + CoRevokeMallocSpy@0 @79 + CoSetProxyBlanket@32 @80 + CoSetState@4 @81 + CoSuspendClassObjects@0 @82 + CoSwitchCallContext@8 @83 + CoTaskMemAlloc@4 @84 + CoTaskMemFree@4 @85 + CoTaskMemRealloc@8 @86 + CoTreatAsClass@8 @87 + CoUninitialize@0 @88 + CoUnloadingWOW@0 @89 PRIVATE + CoUnmarshalHresult@8 @90 + CoUnmarshalInterface@12 @91 + CoWaitForMultipleHandles@20 @92 + CreateAntiMoniker@4 @93 + CreateBindCtx@8 @94 + CreateClassMoniker@8 @95 + CreateDataAdviseHolder@4 @96 + CreateDataCache@16 @97 + CreateErrorInfo@4 @98 + CreateFileMoniker@8 @99 + CreateGenericComposite@12 @100 + CreateILockBytesOnHGlobal@12 @101 + CreateItemMoniker@12 @102 + CreateObjrefMoniker@0 @103 PRIVATE + CreateOleAdviseHolder@4 @104 + CreatePointerMoniker@8 @105 + CreateStreamOnHGlobal@12 @106 + DllDebugObjectRPCHook@8 @107 + DllGetClassObject@12 @108 PRIVATE + DllGetClassObjectWOW@0 @109 PRIVATE + DllRegisterServer@0 @110 PRIVATE + DllUnregisterServer@0 @111 PRIVATE + DoDragDrop@16 @112 + EnableHookObject@0 @113 PRIVATE + FmtIdToPropStgName@8 @114 + FreePropVariantArray@8 @115 + GetClassFile@8 @116 + GetConvertStg@4 @117 + GetDocumentBitStg@0 @118 PRIVATE + GetErrorInfo@8 @119 + GetHGlobalFromILockBytes@8 @120 + GetHGlobalFromStream@8 @121 + GetHookInterface@0 @122 PRIVATE + GetRunningObjectTable@8 @123 + HACCEL_UserFree@8 @124 + HACCEL_UserMarshal@12 @125 + HACCEL_UserSize@12 @126 + HACCEL_UserUnmarshal@12 @127 + HBITMAP_UserFree@8 @128 + HBITMAP_UserMarshal@12 @129 + HBITMAP_UserSize@12 @130 + HBITMAP_UserUnmarshal@12 @131 + HBRUSH_UserFree@8 @132 + HBRUSH_UserMarshal@12 @133 + HBRUSH_UserSize@12 @134 + HBRUSH_UserUnmarshal@12 @135 + HDC_UserFree@8 @136 + HDC_UserMarshal@12 @137 + HDC_UserSize@12 @138 + HDC_UserUnmarshal@12 @139 + HENHMETAFILE_UserFree@8 @140 + HENHMETAFILE_UserMarshal@12 @141 + HENHMETAFILE_UserSize@12 @142 + HENHMETAFILE_UserUnmarshal@12 @143 + HGLOBAL_UserFree@8 @144 + HGLOBAL_UserMarshal@12 @145 + HGLOBAL_UserSize@12 @146 + HGLOBAL_UserUnmarshal@12 @147 + HICON_UserFree@8 @148 + HICON_UserMarshal@12 @149 + HICON_UserSize@12 @150 + HICON_UserUnmarshal@12 @151 + HMENU_UserFree@8 @152 + HMENU_UserMarshal@12 @153 + HMENU_UserSize@12 @154 + HMENU_UserUnmarshal@12 @155 + HMETAFILEPICT_UserFree@8 @156 + HMETAFILEPICT_UserMarshal@12 @157 + HMETAFILEPICT_UserSize@12 @158 + HMETAFILEPICT_UserUnmarshal@12 @159 + HMETAFILE_UserFree@8 @160 + HMETAFILE_UserMarshal@12 @161 + HMETAFILE_UserSize@12 @162 + HMETAFILE_UserUnmarshal@12 @163 + HPALETTE_UserFree@8 @164 + HPALETTE_UserMarshal@12 @165 + HPALETTE_UserSize@12 @166 + HPALETTE_UserUnmarshal@12 @167 + HWND_UserFree@8 @168 + HWND_UserMarshal@12 @169 + HWND_UserSize@12 @170 + HWND_UserUnmarshal@12 @171 + IIDFromString@8 @172 + I_RemoteMain@0 @173 PRIVATE + IsAccelerator@16 @174 + IsEqualGUID@8 @175 + IsValidIid@0 @176 PRIVATE + IsValidInterface@4 @177 + IsValidPtrIn@0 @178 PRIVATE + IsValidPtrOut@0 @179 PRIVATE + MkParseDisplayName@16 @180 + MonikerCommonPrefixWith@12 @181 + MonikerRelativePathTo@0 @182 PRIVATE + OleBuildVersion@0 @183 + OleConvertIStorageToOLESTREAM@8 @184 + OleConvertIStorageToOLESTREAMEx@0 @185 PRIVATE + OleConvertOLESTREAMToIStorage@12 @186 + OleConvertOLESTREAMToIStorageEx@0 @187 PRIVATE + OleCreate@28 @188 + OleCreateDefaultHandler@16 @189 + OleCreateEmbeddingHelper@24 @190 + OleCreateEx@0 @191 PRIVATE + OleCreateFromData@28 @192 + OleCreateFromDataEx@48 @193 + OleCreateFromFile@32 @194 + OleCreateFromFileEx@52 @195 + OleCreateLink@28 @196 + OleCreateLinkEx@0 @197 PRIVATE + OleCreateLinkFromData@28 @198 + OleCreateLinkFromDataEx@0 @199 PRIVATE + OleCreateLinkToFile@28 @200 + OleCreateLinkToFileEx@0 @201 PRIVATE + OleCreateMenuDescriptor@8 @202 + OleCreateStaticFromData@28 @203 + OleDestroyMenuDescriptor@4 @204 + OleDoAutoConvert@8 @205 + OleDraw@16 @206 + OleDuplicateData@12 @207 + OleFlushClipboard@0 @208 + OleGetAutoConvert@8 @209 + OleGetClipboard@4 @210 + OleGetIconOfClass@12 @211 + OleGetIconOfFile@8 @212 + OleInitialize@4 @213 + OleInitializeWOW@8 @214 + OleIsCurrentClipboard@4 @215 + OleIsRunning@4 @216 + OleLoad@16 @217 + OleLoadFromStream@12 @218 + OleLockRunning@12 @219 + OleMetafilePictFromIconAndLabel@16 @220 + OleNoteObjectVisible@8 @221 + OleQueryCreateFromData@4 @222 + OleQueryLinkFromData@4 @223 + OleRegEnumFormatEtc@12 @224 + OleRegEnumVerbs@8 @225 + OleRegGetMiscStatus@12 @226 + OleRegGetUserType@12 @227 + OleRun@4 @228 + OleSave@12 @229 + OleSaveToStream@8 @230 + OleSetAutoConvert@8 @231 + OleSetClipboard@4 @232 + OleSetContainedObject@8 @233 + OleSetMenuDescriptor@20 @234 + OleTranslateAccelerator@12 @235 + OleUninitialize@0 @236 + OpenOrCreateStream@0 @237 PRIVATE + ProgIDFromCLSID@8 @238 + PropStgNameToFmtId@8 @239 + PropSysAllocString@4 @240 + PropSysFreeString@4 @241 + PropVariantClear@4 @242 + PropVariantCopy@8 @243 + ReadClassStg@8 @244 + ReadClassStm@8 @245 + ReadFmtUserTypeStg@12 @246 + ReadOleStg@0 @247 PRIVATE + ReadStringStream@0 @248 PRIVATE + RegisterDragDrop@8 @249 + ReleaseStgMedium@4 @250 + RevokeDragDrop@4 @251 + SNB_UserFree@8 @252 + SNB_UserMarshal@12 @253 + SNB_UserSize@12 @254 + SNB_UserUnmarshal@12 @255 + STGMEDIUM_UserFree@8 @256 + STGMEDIUM_UserMarshal@12 @257 + STGMEDIUM_UserSize@12 @258 + STGMEDIUM_UserUnmarshal@12 @259 + SetConvertStg@8 @260 + SetDocumentBitStg@0 @261 PRIVATE + SetErrorInfo@8 @262 + StgConvertPropertyToVariant@16 @263 + StgConvertVariantToProperty@28 @264 + StgCreateDocfile@16 @265 + StgCreateDocfileOnILockBytes@16 @266 + StgCreatePropSetStg@12 @267 + StgCreatePropStg@24 @268 + StgCreateStorageEx@32 @269 + StgGetIFillLockBytesOnFile@0 @270 PRIVATE + StgGetIFillLockBytesOnILockBytes@0 @271 PRIVATE + StgIsStorageFile@4 @272 + StgIsStorageILockBytes@4 @273 + StgOpenAsyncDocfileOnIFillLockBytes@0 @274 PRIVATE + StgOpenPropStg@20 @275 + StgOpenStorage@24 @276 + StgOpenStorageEx@32 @277 + StgOpenStorageOnILockBytes@24 @278 + StgSetTimes@16 @279 + StringFromCLSID@8 @280 + StringFromGUID2@12 @281 + StringFromIID@8=StringFromCLSID @282 + UpdateDCOMSettings@0 @283 PRIVATE + UtConvertDvtd16toDvtd32@0 @284 PRIVATE + UtConvertDvtd32toDvtd16@0 @285 PRIVATE + UtGetDvtd16Info@0 @286 PRIVATE + UtGetDvtd32Info@0 @287 PRIVATE + WdtpInterfacePointer_UserFree@4 @288 + WdtpInterfacePointer_UserMarshal@20 @289 + WdtpInterfacePointer_UserSize@20 @290 + WdtpInterfacePointer_UserUnmarshal@16 @291 + WriteClassStg@8 @292 + WriteClassStm@8 @293 + WriteFmtUserTypeStg@12 @294 + WriteOleStg@0 @295 PRIVATE + WriteStringStream@0 @296 PRIVATE diff --git a/lib/wine/liboleacc.def b/lib/wine/liboleacc.def new file mode 100644 index 0000000..378452e --- /dev/null +++ b/lib/wine/liboleacc.def @@ -0,0 +1,27 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/oleacc/oleacc.spec; do not edit! + +LIBRARY oleacc.dll + +EXPORTS + AccessibleChildren@20 @1 + AccessibleObjectFromEvent@0 @2 PRIVATE + AccessibleObjectFromPoint@16 @3 + AccessibleObjectFromWindow@16 @4 + CreateStdAccessibleObject@16 @5 + CreateStdAccessibleProxyA@0 @6 PRIVATE + CreateStdAccessibleProxyW@0 @7 PRIVATE + DllGetClassObject@12 @8 PRIVATE + DllRegisterServer@0 @9 PRIVATE + DllUnregisterServer@0 @10 PRIVATE + GetOleaccVersionInfo@8 @11 + GetProcessHandleFromHwnd@4 @12 + GetRoleTextA@12 @13 + GetRoleTextW@12 @14 + GetStateTextA@12 @15 + GetStateTextW@12 @16 + IID_IAccessible @17 DATA + IID_IAccessibleHandler @18 DATA + LIBID_Accessibility @19 DATA + LresultFromObject@12 @20 + ObjectFromLresult@16 @21 + WindowFromAccessibleObject@8 @22 diff --git a/lib/wine/liboleaut32.def b/lib/wine/liboleaut32.def new file mode 100644 index 0000000..1f88bf9 --- /dev/null +++ b/lib/wine/liboleaut32.def @@ -0,0 +1,423 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/oleaut32/oleaut32.spec; do not edit! + +LIBRARY oleaut32.dll + +EXPORTS + SysAllocString@4 @2 + SysReAllocString@8 @3 + SysAllocStringLen@8 @4 + SysReAllocStringLen@12 @5 + SysFreeString@4 @6 + SysStringLen@4 @7 + VariantInit@4 @8 + VariantClear@4 @9 + VariantCopy@8 @10 + VariantCopyInd@8 @11 + VariantChangeType@16 @12 + VariantTimeToDosDateTime@16 @13 + DosDateTimeToVariantTime@12 @14 + SafeArrayCreate@12 @15 + SafeArrayDestroy@4 @16 + SafeArrayGetDim@4 @17 + SafeArrayGetElemsize@4 @18 + SafeArrayGetUBound@12 @19 + SafeArrayGetLBound@12 @20 + SafeArrayLock@4 @21 + SafeArrayUnlock@4 @22 + SafeArrayAccessData@8 @23 + SafeArrayUnaccessData@4 @24 + SafeArrayGetElement@12 @25 + SafeArrayPutElement@12 @26 + SafeArrayCopy@8 @27 + DispGetParam@20 @28 + DispGetIDsOfNames@16 @29 + DispInvoke@32 @30 + CreateDispTypeInfo@12 @31 + CreateStdDispatch@16 @32 + RegisterActiveObject@16 @33 + RevokeActiveObject@8 @34 + GetActiveObject@12 @35 + SafeArrayAllocDescriptor@8 @36 + SafeArrayAllocData@4 @37 + SafeArrayDestroyDescriptor@4 @38 + SafeArrayDestroyData@4 @39 + SafeArrayRedim@8 @40 + SafeArrayAllocDescriptorEx@12 @41 + SafeArrayCreateEx@16 @42 + SafeArrayCreateVectorEx@16 @43 + SafeArraySetRecordInfo@8 @44 + SafeArrayGetRecordInfo@8 @45 + VarParseNumFromStr@20 @46 + VarNumFromParseNum@16 @47 + VarI2FromUI1@8 @48 + VarI2FromI4@8 @49 + VarI2FromR4@8 @50 + VarI2FromR8@12 @51 + VarI2FromCy@12 @52 + VarI2FromDate@12 @53 + VarI2FromStr@16 @54 + VarI2FromDisp@12 @55 + VarI2FromBool@8 @56 + SafeArraySetIID@8 @57 + VarI4FromUI1@8 @58 + VarI4FromI2@8 @59 + VarI4FromR4@8 @60 + VarI4FromR8@12 @61 + VarI4FromCy@12 @62 + VarI4FromDate@12 @63 + VarI4FromStr@16 @64 + VarI4FromDisp@12 @65 + VarI4FromBool@8 @66 + SafeArrayGetIID@8 @67 + VarR4FromUI1@8 @68 + VarR4FromI2@8 @69 + VarR4FromI4@8 @70 + VarR4FromR8@12 @71 + VarR4FromCy@12 @72 + VarR4FromDate@12 @73 + VarR4FromStr@16 @74 + VarR4FromDisp@12 @75 + VarR4FromBool@8 @76 + SafeArrayGetVartype@8 @77 + VarR8FromUI1@8 @78 + VarR8FromI2@8 @79 + VarR8FromI4@8 @80 + VarR8FromR4@8 @81 + VarR8FromCy@12 @82 + VarR8FromDate@12 @83 + VarR8FromStr@16 @84 + VarR8FromDisp@12 @85 + VarR8FromBool@8 @86 + VarFormat@24 @87 + VarDateFromUI1@8 @88 + VarDateFromI2@8 @89 + VarDateFromI4@8 @90 + VarDateFromR4@8 @91 + VarDateFromR8@12 @92 + VarDateFromCy@12 @93 + VarDateFromStr@16 @94 + VarDateFromDisp@12 @95 + VarDateFromBool@8 @96 + VarFormatDateTime@16 @97 + VarCyFromUI1@8 @98 + VarCyFromI2@8 @99 + VarCyFromI4@8 @100 + VarCyFromR4@8 @101 + VarCyFromR8@12 @102 + VarCyFromDate@12 @103 + VarCyFromStr@16 @104 + VarCyFromDisp@12 @105 + VarCyFromBool@8 @106 + VarFormatNumber@28 @107 + VarBstrFromUI1@16 @108 + VarBstrFromI2@16 @109 + VarBstrFromI4@16 @110 + VarBstrFromR4@16 @111 + VarBstrFromR8@20 @112 + VarBstrFromCy@20 @113 + VarBstrFromDate@20 @114 + VarBstrFromDisp@16 @115 + VarBstrFromBool@16 @116 + VarFormatPercent@28 @117 + VarBoolFromUI1@8 @118 + VarBoolFromI2@8 @119 + VarBoolFromI4@8 @120 + VarBoolFromR4@8 @121 + VarBoolFromR8@12 @122 + VarBoolFromDate@12 @123 + VarBoolFromCy@12 @124 + VarBoolFromStr@16 @125 + VarBoolFromDisp@12 @126 + VarFormatCurrency@28 @127 + VarWeekdayName@20 @128 + VarMonthName@16 @129 + VarUI1FromI2@8 @130 + VarUI1FromI4@8 @131 + VarUI1FromR4@8 @132 + VarUI1FromR8@12 @133 + VarUI1FromCy@12 @134 + VarUI1FromDate@12 @135 + VarUI1FromStr@16 @136 + VarUI1FromDisp@12 @137 + VarUI1FromBool@8 @138 + VarFormatFromTokens@24 @139 + VarTokenizeFormatString@28 @140 + VarAdd@12 @141 + VarAnd@12 @142 + VarDiv@12 @143 + OACreateTypeLib2@0 @144 PRIVATE + DispCallFunc@32 @146 + VariantChangeTypeEx@20 @147 + SafeArrayPtrOfIndex@12 @148 + SysStringByteLen@4 @149 + SysAllocStringByteLen@8 @150 + VarEqv@12 @152 + VarIdiv@12 @153 + VarImp@12 @154 + VarMod@12 @155 + VarMul@12 @156 + VarOr@12 @157 + VarPow@12 @158 + VarSub@12 @159 + CreateTypeLib@12 @160 + LoadTypeLib@8 @161 + LoadRegTypeLib@20 @162 + RegisterTypeLib@12 @163 + QueryPathOfRegTypeLib@20 @164 + LHashValOfNameSys@12 @165 + LHashValOfNameSysA@12 @166 + VarXor@12 @167 + VarAbs@8 @168 + VarFix@8 @169 + OaBuildVersion@0 @170 + ClearCustData@4 @171 + VarInt@8 @172 + VarNeg@8 @173 + VarNot@8 @174 + VarRound@12 @175 + VarCmp@16 @176 + VarDecAdd@12 @177 + VarDecDiv@12 @178 + VarDecMul@12 @179 + CreateTypeLib2@12 @180 + VarDecSub@12 @181 + VarDecAbs@8 @182 + LoadTypeLibEx@12 @183 + SystemTimeToVariantTime@8 @184 + VariantTimeToSystemTime@12 @185 + UnRegisterTypeLib@20 @186 + VarDecFix@8 @187 + VarDecInt@8 @188 + VarDecNeg@8 @189 + VarDecFromUI1@8 @190 + VarDecFromI2@8 @191 + VarDecFromI4@8 @192 + VarDecFromR4@8 @193 + VarDecFromR8@12 @194 + VarDecFromDate@12 @195 + VarDecFromCy@12 @196 + VarDecFromStr@16 @197 + VarDecFromDisp@12 @198 + VarDecFromBool@8 @199 + GetErrorInfo@8=ole32.GetErrorInfo @200 + SetErrorInfo@8=ole32.SetErrorInfo @201 + CreateErrorInfo@4=ole32.CreateErrorInfo @202 + VarDecRound@12 @203 + VarDecCmp@8 @204 + VarI2FromI1@8 @205 + VarI2FromUI2@8 @206 + VarI2FromUI4@8 @207 + VarI2FromDec@8 @208 + VarI4FromI1@8 @209 + VarI4FromUI2@8 @210 + VarI4FromUI4@8 @211 + VarI4FromDec@8 @212 + VarR4FromI1@8 @213 + VarR4FromUI2@8 @214 + VarR4FromUI4@8 @215 + VarR4FromDec@8 @216 + VarR8FromI1@8 @217 + VarR8FromUI2@8 @218 + VarR8FromUI4@8 @219 + VarR8FromDec@8 @220 + VarDateFromI1@8 @221 + VarDateFromUI2@8 @222 + VarDateFromUI4@8 @223 + VarDateFromDec@8 @224 + VarCyFromI1@8 @225 + VarCyFromUI2@8 @226 + VarCyFromUI4@8 @227 + VarCyFromDec@8 @228 + VarBstrFromI1@16 @229 + VarBstrFromUI2@16 @230 + VarBstrFromUI4@16 @231 + VarBstrFromDec@16 @232 + VarBoolFromI1@8 @233 + VarBoolFromUI2@8 @234 + VarBoolFromUI4@8 @235 + VarBoolFromDec@8 @236 + VarUI1FromI1@8 @237 + VarUI1FromUI2@8 @238 + VarUI1FromUI4@8 @239 + VarUI1FromDec@8 @240 + VarDecFromI1@8 @241 + VarDecFromUI2@8 @242 + VarDecFromUI4@8 @243 + VarI1FromUI1@8 @244 + VarI1FromI2@8 @245 + VarI1FromI4@8 @246 + VarI1FromR4@8 @247 + VarI1FromR8@12 @248 + VarI1FromDate@12 @249 + VarI1FromCy@12 @250 + VarI1FromStr@16 @251 + VarI1FromDisp@12 @252 + VarI1FromBool@8 @253 + VarI1FromUI2@8 @254 + VarI1FromUI4@8 @255 + VarI1FromDec@8 @256 + VarUI2FromUI1@8 @257 + VarUI2FromI2@8 @258 + VarUI2FromI4@8 @259 + VarUI2FromR4@8 @260 + VarUI2FromR8@12 @261 + VarUI2FromDate@12 @262 + VarUI2FromCy@12 @263 + VarUI2FromStr@16 @264 + VarUI2FromDisp@12 @265 + VarUI2FromBool@8 @266 + VarUI2FromI1@8 @267 + VarUI2FromUI4@8 @268 + VarUI2FromDec@8 @269 + VarUI4FromUI1@8 @270 + VarUI4FromI2@8 @271 + VarUI4FromI4@8 @272 + VarUI4FromR4@8 @273 + VarUI4FromR8@12 @274 + VarUI4FromDate@12 @275 + VarUI4FromCy@12 @276 + VarUI4FromStr@16 @277 + VarUI4FromDisp@12 @278 + VarUI4FromBool@8 @279 + VarUI4FromI1@8 @280 + VarUI4FromUI2@8 @281 + VarUI4FromDec@8 @282 + BSTR_UserSize@12 @283 + BSTR_UserMarshal@12 @284 + BSTR_UserUnmarshal@12 @285 + BSTR_UserFree@8 @286 + VARIANT_UserSize@12 @287 + VARIANT_UserMarshal@12 @288 + VARIANT_UserUnmarshal@12 @289 + VARIANT_UserFree@8 @290 + LPSAFEARRAY_UserSize@12 @291 + LPSAFEARRAY_UserMarshal@12 @292 + LPSAFEARRAY_UserUnmarshal@12 @293 + LPSAFEARRAY_UserFree@8 @294 + LPSAFEARRAY_Size@0 @295 PRIVATE + LPSAFEARRAY_Marshal@0 @296 PRIVATE + LPSAFEARRAY_Unmarshal@0 @297 PRIVATE + VarDecCmpR8@12 @298 + VarCyAdd@20 @299 + VarCyMul@20 @303 + VarCyMulI4@16 @304 + VarCySub@20 @305 + VarCyAbs@12 @306 + VarCyFix@12 @307 + VarCyInt@12 @308 + VarCyNeg@12 @309 + VarCyRound@16 @310 + VarCyCmp@16 @311 + VarCyCmpR8@16 @312 + VarBstrCat@12 @313 + VarBstrCmp@16 @314 + VarR8Pow@20 @315 + VarR4CmpR8@12 @316 + VarR8Round@16 @317 + VarCat@12 @318 + VarDateFromUdateEx@16 @319 + GetRecordInfoFromGuids@24 @322 + GetRecordInfoFromTypeInfo@8 @323 + SetVarConversionLocaleSetting@0 @325 PRIVATE + GetVarConversionLocaleSetting@0 @326 PRIVATE + SetOaNoCache@0 @327 + VarCyMulI8@20 @329 + VarDateFromUdate@12 @330 + VarUdateFromDate@16 @331 + GetAltMonthNames@8 @332 + VarI8FromUI1@8 @333 + VarI8FromI2@8 @334 + VarI8FromR4@8 @335 + VarI8FromR8@12 @336 + VarI8FromCy@12 @337 + VarI8FromDate@12 @338 + VarI8FromStr@16 @339 + VarI8FromDisp@12 @340 + VarI8FromBool@8 @341 + VarI8FromI1@8 @342 + VarI8FromUI2@8 @343 + VarI8FromUI4@8 @344 + VarI8FromDec@8 @345 + VarI2FromI8@12 @346 + VarI2FromUI8@12 @347 + VarI4FromI8@12 @348 + VarI4FromUI8@12 @349 + VarR4FromI8@12 @360 + VarR4FromUI8@12 @361 + VarR8FromI8@12 @362 + VarR8FromUI8@12 @363 + VarDateFromI8@12 @364 + VarDateFromUI8@12 @365 + VarCyFromI8@12 @366 + VarCyFromUI8@12 @367 + VarBstrFromI8@20 @368 + VarBstrFromUI8@20 @369 + VarBoolFromI8@12 @370 + VarBoolFromUI8@12 @371 + VarUI1FromI8@12 @372 + VarUI1FromUI8@12 @373 + VarDecFromI8@12 @374 + VarDecFromUI8@12 @375 + VarI1FromI8@12 @376 + VarI1FromUI8@12 @377 + VarUI2FromI8@12 @378 + VarUI2FromUI8@12 @379 + UserHWND_from_local@0 @380 PRIVATE + UserHWND_to_local@0 @381 PRIVATE + UserHWND_free_inst@0 @382 PRIVATE + UserHWND_free_local@0 @383 PRIVATE + UserBSTR_from_local@0 @384 PRIVATE + UserBSTR_to_local@0 @385 PRIVATE + UserBSTR_free_inst@0 @386 PRIVATE + UserBSTR_free_local@0 @387 PRIVATE + UserVARIANT_from_local@0 @388 PRIVATE + UserVARIANT_to_local@0 @389 PRIVATE + UserVARIANT_free_inst@0 @390 PRIVATE + UserVARIANT_free_local@0 @391 PRIVATE + UserEXCEPINFO_from_local@0 @392 PRIVATE + UserEXCEPINFO_to_local@0 @393 PRIVATE + UserEXCEPINFO_free_inst@0 @394 PRIVATE + UserEXCEPINFO_free_local@0 @395 PRIVATE + UserMSG_from_local@0 @396 PRIVATE + UserMSG_to_local@0 @397 PRIVATE + UserMSG_free_inst@0 @398 PRIVATE + UserMSG_free_local@0 @399 PRIVATE + OleLoadPictureEx@32 @401 + OleLoadPictureFileEx@0 @402 PRIVATE + SafeArrayCreateVector@12 @411 + SafeArrayCopyData@8 @412 + VectorFromBstr@8 @413 + BstrFromVector@8 @414 + OleIconToCursor@8 @415 + OleCreatePropertyFrameIndirect@4 @416 + OleCreatePropertyFrame@44 @417 + OleLoadPicture@20 @418 + OleCreatePictureIndirect@16 @419 + OleCreateFontIndirect@12 @420 + OleTranslateColor@12 @421 + OleLoadPictureFile@20 @422 + OleSavePictureFile@8 @423 + OleLoadPicturePath@24 @424 + VarUI4FromI8@12 @425 + VarUI4FromUI8@12 @426 + VarI8FromUI8@12 @427 + VarUI8FromI8@12 @428 + VarUI8FromUI1@8 @429 + VarUI8FromI2@8 @430 + VarUI8FromR4@8 @431 + VarUI8FromR8@12 @432 + VarUI8FromCy@12 @433 + VarUI8FromDate@12 @434 + VarUI8FromStr@16 @435 + VarUI8FromDisp@12 @436 + VarUI8FromBool@8 @437 + VarUI8FromI1@8 @438 + VarUI8FromUI2@8 @439 + VarUI8FromUI4@8 @440 + VarUI8FromDec@8 @441 + RegisterTypeLibForUser@12 @442 + UnRegisterTypeLibForUser@20 @443 + DllCanUnloadNow@0 @145 PRIVATE + DllGetClassObject@12 @151 PRIVATE + DllRegisterServer@0 @300 PRIVATE + DllUnregisterServer@0 @301 PRIVATE diff --git a/lib/wine/libolecli32.def b/lib/wine/libolecli32.def new file mode 100644 index 0000000..a76866f --- /dev/null +++ b/lib/wine/libolecli32.def @@ -0,0 +1,61 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/olecli32/olecli32.spec; do not edit! + +LIBRARY olecli32.dll + +EXPORTS + WEP@0 @1 PRIVATE + OleDelete@0 @2 PRIVATE + OleSaveToStream@8=ole32.OleSaveToStream @3 + OleLoadFromStream@12=ole32.OleLoadFromStream @4 + OleClone@0 @6 PRIVATE + OleCopyFromLink@0 @7 PRIVATE + OleEqual@0 @8 PRIVATE + OleQueryLinkFromClip@12 @9 + OleQueryCreateFromClip@12 @10 + OleCreateLinkFromClip@28 @11 + OleCreateFromClip@28 @12 + OleCopyToClipboard@0 @13 PRIVATE + OleQueryType@8 @14 + OleSetHostNames@12 @15 + OleSetTargetDevice@0 @16 PRIVATE + OleSetBounds@0 @17 PRIVATE + OleQueryBounds@0 @18 PRIVATE + OleDraw@0 @19 PRIVATE + OleQueryOpen@0 @20 PRIVATE + OleActivate@0 @21 PRIVATE + OleUpdate@0 @22 PRIVATE + OleReconnect@0 @23 PRIVATE + OleGetLinkUpdateOptions@0 @24 PRIVATE + OleSetLinkUpdateOptions@0 @25 PRIVATE + OleEnumFormats@0 @26 PRIVATE + OleClose@0 @27 PRIVATE + OleGetData@0 @28 PRIVATE + OleSetData@0 @29 PRIVATE + OleQueryProtocol@0 @30 PRIVATE + OleQueryOutOfDate@0 @31 PRIVATE + OleObjectConvert@0 @32 PRIVATE + OleCreateFromTemplate@0 @33 PRIVATE + OleCreate@28=ole32.OleCreate @34 + OleQueryReleaseStatus@0 @35 PRIVATE + OleQueryReleaseError@0 @36 PRIVATE + OleQueryReleaseMethod@0 @37 PRIVATE + OleCreateFromFile@32=ole32.OleCreateFromFile @38 + OleCreateLinkFromFile@0 @39 PRIVATE + OleRelease@0 @40 PRIVATE + OleRegisterClientDoc@16 @41 + OleRevokeClientDoc@4 @42 + OleRenameClientDoc@8 @43 + OleRevertClientDoc@0 @44 PRIVATE + OleSavedClientDoc@4 @45 + OleRename@0 @46 PRIVATE + OleEnumObjects@0 @47 PRIVATE + OleQueryName@0 @48 PRIVATE + OleSetColorScheme@0 @49 PRIVATE + OleRequestData@0 @50 PRIVATE + OleLockServer@0 @54 PRIVATE + OleUnlockServer@0 @55 PRIVATE + OleQuerySize@0 @56 PRIVATE + OleExecute@0 @57 PRIVATE + OleCreateInvisible@0 @58 PRIVATE + OleQueryClientVersion@0 @59 PRIVATE + OleIsDcMeta@4 @60 diff --git a/lib/wine/liboledlg.def b/lib/wine/liboledlg.def new file mode 100644 index 0000000..c224e28 --- /dev/null +++ b/lib/wine/liboledlg.def @@ -0,0 +1,28 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/oledlg/oledlg.spec; do not edit! + +LIBRARY oledlg.dll + +EXPORTS + OleUIAddVerbMenuA@36 @1 + OleUICanConvertOrActivateAs@12 @2 + OleUIInsertObjectA@4 @3 + OleUIPasteSpecialA@4 @4 + OleUIEditLinksA@4 @5 + OleUIChangeIconA@4 @6 + OleUIConvertA@4 @7 + OleUIBusyA@4 @8 + OleUIUpdateLinksA@16 @9 + OleUIPromptUserA @10 + OleUIObjectPropertiesA@4 @11 + OleUIChangeSourceA@4 @12 + OleUIPromptUserW @13 + OleUIAddVerbMenuW@36 @14 + OleUIBusyW@4 @15 + OleUIChangeIconW@4 @16 + OleUIChangeSourceW@4 @17 + OleUIConvertW@4 @18 + OleUIEditLinksW@4 @19 + OleUIInsertObjectW@4 @20 + OleUIObjectPropertiesW@4 @21 + OleUIPasteSpecialW@4 @22 + OleUIUpdateLinksW@16 @23 diff --git a/lib/wine/libolepro32.def b/lib/wine/libolepro32.def new file mode 100644 index 0000000..f5c8962 --- /dev/null +++ b/lib/wine/libolepro32.def @@ -0,0 +1,16 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/olepro32/olepro32.spec; do not edit! + +LIBRARY olepro32.dll + +EXPORTS + OleIconToCursor@8=oleaut32.OleIconToCursor @248 + OleCreatePropertyFrameIndirect@4=oleaut32.OleCreatePropertyFrameIndirect @249 + OleCreatePropertyFrame@44=oleaut32.OleCreatePropertyFrame @250 + OleLoadPicture@20=oleaut32.OleLoadPicture @251 + OleCreatePictureIndirect@16=oleaut32.OleCreatePictureIndirect @252 + OleCreateFontIndirect@12=oleaut32.OleCreateFontIndirect @253 + OleTranslateColor@12=oleaut32.OleTranslateColor @254 + DllCanUnloadNow@0 @255 PRIVATE + DllGetClassObject@12 @256 PRIVATE + DllRegisterServer@0 @257 PRIVATE + DllUnregisterServer@0 @258 PRIVATE diff --git a/lib/wine/libolesvr32.def b/lib/wine/libolesvr32.def new file mode 100644 index 0000000..cdea0ee --- /dev/null +++ b/lib/wine/libolesvr32.def @@ -0,0 +1,17 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/olesvr32/olesvr32.spec; do not edit! + +LIBRARY olesvr32.dll + +EXPORTS + WEP@0 @1 PRIVATE + OleRegisterServer@20 @2 + OleRevokeServer@4 @3 + OleBlockServer@4 @4 + OleUnblockServer@8 @5 + OleRegisterServerDoc@16 @6 + OleRevokeServerDoc@4 @7 + OleRenameServerDoc@8 @8 + OleRevertServerDoc@4 @9 + OleSavedServerDoc@4 @10 + OleRevokeObject@0 @11 PRIVATE + OleQueryServerVersion@0 @12 PRIVATE diff --git a/lib/wine/libopengl32.def b/lib/wine/libopengl32.def new file mode 100644 index 0000000..f828e35 --- /dev/null +++ b/lib/wine/libopengl32.def @@ -0,0 +1,365 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/opengl32/opengl32.spec; do not edit! + +LIBRARY opengl32.dll + +EXPORTS + glAccum@8 @1 + glAlphaFunc@8 @2 + glAreTexturesResident@12 @3 + glArrayElement@4 @4 + glBegin@4 @5 + glBindTexture@8 @6 + glBitmap@28 @7 + glBlendFunc@8 @8 + glCallList@4 @9 + glCallLists@12 @10 + glClear@4 @11 + glClearAccum@16 @12 + glClearColor@16 @13 + glClearDepth@8 @14 + glClearIndex@4 @15 + glClearStencil@4 @16 + glClipPlane@8 @17 + glColor3b@12 @18 + glColor3bv@4 @19 + glColor3d@24 @20 + glColor3dv@4 @21 + glColor3f@12 @22 + glColor3fv@4 @23 + glColor3i@12 @24 + glColor3iv@4 @25 + glColor3s@12 @26 + glColor3sv@4 @27 + glColor3ub@12 @28 + glColor3ubv@4 @29 + glColor3ui@12 @30 + glColor3uiv@4 @31 + glColor3us@12 @32 + glColor3usv@4 @33 + glColor4b@16 @34 + glColor4bv@4 @35 + glColor4d@32 @36 + glColor4dv@4 @37 + glColor4f@16 @38 + glColor4fv@4 @39 + glColor4i@16 @40 + glColor4iv@4 @41 + glColor4s@16 @42 + glColor4sv@4 @43 + glColor4ub@16 @44 + glColor4ubv@4 @45 + glColor4ui@16 @46 + glColor4uiv@4 @47 + glColor4us@16 @48 + glColor4usv@4 @49 + glColorMask@16 @50 + glColorMaterial@8 @51 + glColorPointer@16 @52 + glCopyPixels@20 @53 + glCopyTexImage1D@28 @54 + glCopyTexImage2D@32 @55 + glCopyTexSubImage1D@24 @56 + glCopyTexSubImage2D@32 @57 + glCullFace@4 @58 + glDebugEntry@8 @59 + glDeleteLists@8 @60 + glDeleteTextures@8 @61 + glDepthFunc@4 @62 + glDepthMask@4 @63 + glDepthRange@16 @64 + glDisable@4 @65 + glDisableClientState@4 @66 + glDrawArrays@12 @67 + glDrawBuffer@4 @68 + glDrawElements@16 @69 + glDrawPixels@20 @70 + glEdgeFlag@4 @71 + glEdgeFlagPointer@8 @72 + glEdgeFlagv@4 @73 + glEnable@4 @74 + glEnableClientState@4 @75 + glEnd@0 @76 + glEndList@0 @77 + glEvalCoord1d@8 @78 + glEvalCoord1dv@4 @79 + glEvalCoord1f@4 @80 + glEvalCoord1fv@4 @81 + glEvalCoord2d@16 @82 + glEvalCoord2dv@4 @83 + glEvalCoord2f@8 @84 + glEvalCoord2fv@4 @85 + glEvalMesh1@12 @86 + glEvalMesh2@20 @87 + glEvalPoint1@4 @88 + glEvalPoint2@8 @89 + glFeedbackBuffer@12 @90 + glFinish@0 @91 + glFlush@0 @92 + glFogf@8 @93 + glFogfv@8 @94 + glFogi@8 @95 + glFogiv@8 @96 + glFrontFace@4 @97 + glFrustum@48 @98 + glGenLists@4 @99 + glGenTextures@8 @100 + glGetBooleanv@8 @101 + glGetClipPlane@8 @102 + glGetDoublev@8 @103 + glGetError@0 @104 + glGetFloatv@8 @105 + glGetIntegerv@8 @106 + glGetLightfv@12 @107 + glGetLightiv@12 @108 + glGetMapdv@12 @109 + glGetMapfv@12 @110 + glGetMapiv@12 @111 + glGetMaterialfv@12 @112 + glGetMaterialiv@12 @113 + glGetPixelMapfv@8 @114 + glGetPixelMapuiv@8 @115 + glGetPixelMapusv@8 @116 + glGetPointerv@8 @117 + glGetPolygonStipple@4 @118 + glGetString@4 @119 + glGetTexEnvfv@12 @120 + glGetTexEnviv@12 @121 + glGetTexGendv@12 @122 + glGetTexGenfv@12 @123 + glGetTexGeniv@12 @124 + glGetTexImage@20 @125 + glGetTexLevelParameterfv@16 @126 + glGetTexLevelParameteriv@16 @127 + glGetTexParameterfv@12 @128 + glGetTexParameteriv@12 @129 + glHint@8 @130 + glIndexMask@4 @131 + glIndexPointer@12 @132 + glIndexd@8 @133 + glIndexdv@4 @134 + glIndexf@4 @135 + glIndexfv@4 @136 + glIndexi@4 @137 + glIndexiv@4 @138 + glIndexs@4 @139 + glIndexsv@4 @140 + glIndexub@4 @141 + glIndexubv@4 @142 + glInitNames@0 @143 + glInterleavedArrays@12 @144 + glIsEnabled@4 @145 + glIsList@4 @146 + glIsTexture@4 @147 + glLightModelf@8 @148 + glLightModelfv@8 @149 + glLightModeli@8 @150 + glLightModeliv@8 @151 + glLightf@12 @152 + glLightfv@12 @153 + glLighti@12 @154 + glLightiv@12 @155 + glLineStipple@8 @156 + glLineWidth@4 @157 + glListBase@4 @158 + glLoadIdentity@0 @159 + glLoadMatrixd@4 @160 + glLoadMatrixf@4 @161 + glLoadName@4 @162 + glLogicOp@4 @163 + glMap1d@32 @164 + glMap1f@24 @165 + glMap2d@56 @166 + glMap2f@40 @167 + glMapGrid1d@20 @168 + glMapGrid1f@12 @169 + glMapGrid2d@40 @170 + glMapGrid2f@24 @171 + glMaterialf@12 @172 + glMaterialfv@12 @173 + glMateriali@12 @174 + glMaterialiv@12 @175 + glMatrixMode@4 @176 + glMultMatrixd@4 @177 + glMultMatrixf@4 @178 + glNewList@8 @179 + glNormal3b@12 @180 + glNormal3bv@4 @181 + glNormal3d@24 @182 + glNormal3dv@4 @183 + glNormal3f@12 @184 + glNormal3fv@4 @185 + glNormal3i@12 @186 + glNormal3iv@4 @187 + glNormal3s@12 @188 + glNormal3sv@4 @189 + glNormalPointer@12 @190 + glOrtho@48 @191 + glPassThrough@4 @192 + glPixelMapfv@12 @193 + glPixelMapuiv@12 @194 + glPixelMapusv@12 @195 + glPixelStoref@8 @196 + glPixelStorei@8 @197 + glPixelTransferf@8 @198 + glPixelTransferi@8 @199 + glPixelZoom@8 @200 + glPointSize@4 @201 + glPolygonMode@8 @202 + glPolygonOffset@8 @203 + glPolygonStipple@4 @204 + glPopAttrib@0 @205 + glPopClientAttrib@0 @206 + glPopMatrix@0 @207 + glPopName@0 @208 + glPrioritizeTextures@12 @209 + glPushAttrib@4 @210 + glPushClientAttrib@4 @211 + glPushMatrix@0 @212 + glPushName@4 @213 + glRasterPos2d@16 @214 + glRasterPos2dv@4 @215 + glRasterPos2f@8 @216 + glRasterPos2fv@4 @217 + glRasterPos2i@8 @218 + glRasterPos2iv@4 @219 + glRasterPos2s@8 @220 + glRasterPos2sv@4 @221 + glRasterPos3d@24 @222 + glRasterPos3dv@4 @223 + glRasterPos3f@12 @224 + glRasterPos3fv@4 @225 + glRasterPos3i@12 @226 + glRasterPos3iv@4 @227 + glRasterPos3s@12 @228 + glRasterPos3sv@4 @229 + glRasterPos4d@32 @230 + glRasterPos4dv@4 @231 + glRasterPos4f@16 @232 + glRasterPos4fv@4 @233 + glRasterPos4i@16 @234 + glRasterPos4iv@4 @235 + glRasterPos4s@16 @236 + glRasterPos4sv@4 @237 + glReadBuffer@4 @238 + glReadPixels@28 @239 + glRectd@32 @240 + glRectdv@8 @241 + glRectf@16 @242 + glRectfv@8 @243 + glRecti@16 @244 + glRectiv@8 @245 + glRects@16 @246 + glRectsv@8 @247 + glRenderMode@4 @248 + glRotated@32 @249 + glRotatef@16 @250 + glScaled@24 @251 + glScalef@12 @252 + glScissor@16 @253 + glSelectBuffer@8 @254 + glShadeModel@4 @255 + glStencilFunc@12 @256 + glStencilMask@4 @257 + glStencilOp@12 @258 + glTexCoord1d@8 @259 + glTexCoord1dv@4 @260 + glTexCoord1f@4 @261 + glTexCoord1fv@4 @262 + glTexCoord1i@4 @263 + glTexCoord1iv@4 @264 + glTexCoord1s@4 @265 + glTexCoord1sv@4 @266 + glTexCoord2d@16 @267 + glTexCoord2dv@4 @268 + glTexCoord2f@8 @269 + glTexCoord2fv@4 @270 + glTexCoord2i@8 @271 + glTexCoord2iv@4 @272 + glTexCoord2s@8 @273 + glTexCoord2sv@4 @274 + glTexCoord3d@24 @275 + glTexCoord3dv@4 @276 + glTexCoord3f@12 @277 + glTexCoord3fv@4 @278 + glTexCoord3i@12 @279 + glTexCoord3iv@4 @280 + glTexCoord3s@12 @281 + glTexCoord3sv@4 @282 + glTexCoord4d@32 @283 + glTexCoord4dv@4 @284 + glTexCoord4f@16 @285 + glTexCoord4fv@4 @286 + glTexCoord4i@16 @287 + glTexCoord4iv@4 @288 + glTexCoord4s@16 @289 + glTexCoord4sv@4 @290 + glTexCoordPointer@16 @291 + glTexEnvf@12 @292 + glTexEnvfv@12 @293 + glTexEnvi@12 @294 + glTexEnviv@12 @295 + glTexGend@16 @296 + glTexGendv@12 @297 + glTexGenf@12 @298 + glTexGenfv@12 @299 + glTexGeni@12 @300 + glTexGeniv@12 @301 + glTexImage1D@32 @302 + glTexImage2D@36 @303 + glTexParameterf@12 @304 + glTexParameterfv@12 @305 + glTexParameteri@12 @306 + glTexParameteriv@12 @307 + glTexSubImage1D@28 @308 + glTexSubImage2D@36 @309 + glTranslated@24 @310 + glTranslatef@12 @311 + glVertex2d@16 @312 + glVertex2dv@4 @313 + glVertex2f@8 @314 + glVertex2fv@4 @315 + glVertex2i@8 @316 + glVertex2iv@4 @317 + glVertex2s@8 @318 + glVertex2sv@4 @319 + glVertex3d@24 @320 + glVertex3dv@4 @321 + glVertex3f@12 @322 + glVertex3fv@4 @323 + glVertex3i@12 @324 + glVertex3iv@4 @325 + glVertex3s@12 @326 + glVertex3sv@4 @327 + glVertex4d@32 @328 + glVertex4dv@4 @329 + glVertex4f@16 @330 + glVertex4fv@4 @331 + glVertex4i@16 @332 + glVertex4iv@4 @333 + glVertex4s@16 @334 + glVertex4sv@4 @335 + glVertexPointer@16 @336 + glViewport@16 @337 + wglChoosePixelFormat@8 @338 + wglCopyContext@12 @339 + wglCreateContext@4 @340 + wglCreateLayerContext@8 @341 + wglDeleteContext@4 @342 + wglDescribeLayerPlane@20 @343 + wglDescribePixelFormat@16 @344 + wglGetCurrentContext@0 @345 + wglGetCurrentDC@0 @346 + wglGetLayerPaletteEntries@20 @347 + wglGetPixelFormat@4 @348 + wglGetProcAddress@4 @349 + wglMakeCurrent@8 @350 + wglRealizeLayerPalette@12 @351 + wglSetLayerPaletteEntries@20 @352 + wglSetPixelFormat@12 @353 + wglShareLists@8 @354 + wglSwapBuffers@4 @355 + wglSwapLayerBuffers@8 @356 + wglUseFontBitmapsA@16 @357 + wglUseFontBitmapsW@16 @358 + wglUseFontOutlinesA@32 @359 + wglUseFontOutlinesW@32 @360 diff --git a/lib/wine/libpdh.def b/lib/wine/libpdh.def new file mode 100644 index 0000000..5652f2f --- /dev/null +++ b/lib/wine/libpdh.def @@ -0,0 +1,168 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/pdh/pdh.spec; do not edit! + +LIBRARY pdh.dll + +EXPORTS + PdhPlaGetLogFileNameA@0 @1 PRIVATE + PdhAdd009CounterA@0 @2 PRIVATE + PdhAdd009CounterW@0 @3 PRIVATE + PdhAddCounterA@16 @4 + PdhAddCounterW@16 @5 + PdhAddEnglishCounterA@16 @6 + PdhAddEnglishCounterW@16 @7 + PdhBindInputDataSourceA@8 @8 + PdhBindInputDataSourceW@8 @9 + PdhBrowseCountersA@0 @10 PRIVATE + PdhBrowseCountersHA@0 @11 PRIVATE + PdhBrowseCountersHW@0 @12 PRIVATE + PdhBrowseCountersW@0 @13 PRIVATE + PdhCalculateCounterFromRawValue@20 @14 + PdhCloseLog@0 @15 PRIVATE + PdhCloseQuery@4 @16 + PdhCollectQueryData@4 @17 + PdhCollectQueryDataWithTime@8 @18 + PdhCollectQueryDataEx@12 @19 + PdhComputeCounterStatistics@0 @20 PRIVATE + PdhConnectMachineA@0 @21 PRIVATE + PdhConnectMachineW@0 @22 PRIVATE + PdhCreateSQLTablesA@0 @23 PRIVATE + PdhCreateSQLTablesW@0 @24 PRIVATE + PdhEnumLogSetNamesA@0 @25 PRIVATE + PdhEnumLogSetNamesW@0 @26 PRIVATE + PdhEnumMachinesA@0 @27 PRIVATE + PdhEnumMachinesHA@0 @28 PRIVATE + PdhEnumMachinesHW@0 @29 PRIVATE + PdhEnumMachinesW@0 @30 PRIVATE + PdhEnumObjectItemsA@36 @31 + PdhEnumObjectItemsHA@0 @32 PRIVATE + PdhEnumObjectItemsHW@0 @33 PRIVATE + PdhEnumObjectItemsW@36 @34 + PdhEnumObjectsA@0 @35 PRIVATE + PdhEnumObjectsHA@0 @36 PRIVATE + PdhEnumObjectsHW@0 @37 PRIVATE + PdhEnumObjectsW@0 @38 PRIVATE + PdhExpandCounterPathA@12 @39 + PdhExpandCounterPathW@12 @40 + PdhExpandWildCardPathA@20 @41 + PdhExpandWildCardPathHA@0 @42 PRIVATE + PdhExpandWildCardPathHW@0 @43 PRIVATE + PdhExpandWildCardPathW@20 @44 + PdhFormatFromRawValue@0 @45 PRIVATE + PdhGetCounterInfoA@16 @46 + PdhGetCounterInfoW@16 @47 + PdhGetCounterTimeBase@8 @48 + PdhGetDataSourceTimeRangeA@0 @49 PRIVATE + PdhGetDataSourceTimeRangeH@0 @50 PRIVATE + PdhGetDataSourceTimeRangeW@0 @51 PRIVATE + PdhGetDefaultPerfCounterA@0 @52 PRIVATE + PdhGetDefaultPerfCounterHA@0 @53 PRIVATE + PdhGetDefaultPerfCounterHW@0 @54 PRIVATE + PdhGetDefaultPerfCounterW@0 @55 PRIVATE + PdhGetDefaultPerfObjectA@0 @56 PRIVATE + PdhGetDefaultPerfObjectHA@0 @57 PRIVATE + PdhGetDefaultPerfObjectHW@0 @58 PRIVATE + PdhGetDefaultPerfObjectW@0 @59 PRIVATE + PdhGetDllVersion@4 @60 + PdhGetFormattedCounterArrayA@0 @61 PRIVATE + PdhGetFormattedCounterArrayW@0 @62 PRIVATE + PdhGetFormattedCounterValue@16 @63 + PdhGetLogFileSize@0 @64 PRIVATE + PdhGetLogFileTypeA@8 @65 + PdhGetLogFileTypeW@8 @66 + PdhGetLogSetGUID@0 @67 PRIVATE + PdhGetRawCounterArrayA@0 @68 PRIVATE + PdhGetRawCounterArrayW@0 @69 PRIVATE + PdhGetRawCounterValue@12 @70 + PdhIsRealTimeQuery@0 @71 PRIVATE + PdhListLogFileHeaderA@0 @72 PRIVATE + PdhListLogFileHeaderW@0 @73 PRIVATE + PdhLogServiceCommandA@0 @74 PRIVATE + PdhLogServiceCommandW@0 @75 PRIVATE + PdhLogServiceControlA@0 @76 PRIVATE + PdhLogServiceControlW@0 @77 PRIVATE + PdhLookupPerfIndexByNameA@12 @78 + PdhLookupPerfIndexByNameW@12 @79 + PdhLookupPerfNameByIndexA@16 @80 + PdhLookupPerfNameByIndexW@16 @81 + PdhMakeCounterPathA@16 @82 + PdhMakeCounterPathW@16 @83 + PdhOpenLogA@0 @84 PRIVATE + PdhOpenLogW@0 @85 PRIVATE + PdhOpenQuery@12=PdhOpenQueryW @86 + PdhOpenQueryA@12 @87 + PdhOpenQueryH@0 @88 PRIVATE + PdhOpenQueryW@12 @89 + PdhParseCounterPathA@0 @90 PRIVATE + PdhParseCounterPathW@0 @91 PRIVATE + PdhParseInstanceNameA@0 @92 PRIVATE + PdhParseInstanceNameW@0 @93 PRIVATE + PdhPlaAddItemA@0 @94 PRIVATE + PdhPlaAddItemW@0 @95 PRIVATE + PdhPlaCreateA@0 @96 PRIVATE + PdhPlaCreateW@0 @97 PRIVATE + PdhPlaDeleteA@0 @98 PRIVATE + PdhPlaDeleteW@0 @99 PRIVATE + PdhPlaEnumCollectionsA@0 @100 PRIVATE + PdhPlaEnumCollectionsW@0 @101 PRIVATE + PdhPlaGetInfoA@0 @102 PRIVATE + PdhPlaGetInfoW@0 @103 PRIVATE + PdhPlaGetLogFileNameW@0 @104 PRIVATE + PdhPlaGetScheduleA@0 @105 PRIVATE + PdhPlaGetScheduleW@0 @106 PRIVATE + PdhPlaRemoveAllItemsA@0 @107 PRIVATE + PdhPlaRemoveAllItemsW@0 @108 PRIVATE + PdhPlaScheduleA@0 @109 PRIVATE + PdhPlaScheduleW@0 @110 PRIVATE + PdhPlaSetInfoA@0 @111 PRIVATE + PdhPlaSetInfoW@0 @112 PRIVATE + PdhPlaSetItemListA@0 @113 PRIVATE + PdhPlaSetItemListW@0 @114 PRIVATE + PdhPlaSetRunAsA@0 @115 PRIVATE + PdhPlaSetRunAsW@0 @116 PRIVATE + PdhPlaStartA@0 @117 PRIVATE + PdhPlaStartW@0 @118 PRIVATE + PdhPlaStopA@0 @119 PRIVATE + PdhPlaStopW@0 @120 PRIVATE + PdhPlaValidateInfoA@0 @121 PRIVATE + PdhPlaValidateInfoW@0 @122 PRIVATE + PdhReadRawLogRecord@0 @123 PRIVATE + PdhRelogA@0 @124 PRIVATE + PdhRelogW@0 @125 PRIVATE + PdhRemoveCounter@4 @126 + PdhSelectDataSourceA@0 @127 PRIVATE + PdhSelectDataSourceW@0 @128 PRIVATE + PdhSetCounterScaleFactor@8 @129 + PdhSetDefaultRealTimeDataSource@4 @130 + PdhSetLogSetRunID@0 @131 PRIVATE + PdhSetQueryTimeRange@0 @132 PRIVATE + PdhTranslate009CounterA@0 @133 PRIVATE + PdhTranslate009CounterW@0 @134 PRIVATE + PdhTranslateLocaleCounterA@0 @135 PRIVATE + PdhTranslateLocaleCounterW@0 @136 PRIVATE + PdhUpdateLogA@0 @137 PRIVATE + PdhUpdateLogFileCatalog@0 @138 PRIVATE + PdhUpdateLogW@0 @139 PRIVATE + PdhValidatePathA@4 @140 + PdhValidatePathExA@8 @141 + PdhValidatePathExW@8 @142 + PdhValidatePathW@4 @143 + PdhVbAddCounter@12 @144 + PdhVbCreateCounterPathList@0 @145 PRIVATE + PdhVbGetCounterPathElements@0 @146 PRIVATE + PdhVbGetCounterPathFromList@0 @147 PRIVATE + PdhVbGetDoubleCounterValue@0 @148 PRIVATE + PdhVbGetLogFileSize@0 @149 PRIVATE + PdhVbGetOneCounterPath@0 @150 PRIVATE + PdhVbIsGoodStatus@0 @151 PRIVATE + PdhVbOpenLog@0 @152 PRIVATE + PdhVbOpenQuery@0 @153 PRIVATE + PdhVbUpdateLog@0 @154 PRIVATE + PdhVerifySQLDBA@0 @155 PRIVATE + PdhVerifySQLDBW@0 @156 PRIVATE + PdhiPla2003SP1Installed@0 @157 PRIVATE + PdhiPlaFormatBlanksA@0 @158 PRIVATE + PdhiPlaFormatBlanksW@0 @159 PRIVATE + PdhiPlaGetVersion@0 @160 PRIVATE + PdhiPlaRunAs@0 @161 PRIVATE + PdhiPlaSetRunAs@0 @162 PRIVATE + PlaTimeInfoToMilliSeconds@0 @163 PRIVATE diff --git a/lib/wine/libpowrprof.def b/lib/wine/libpowrprof.def new file mode 100644 index 0000000..b6f8123 --- /dev/null +++ b/lib/wine/libpowrprof.def @@ -0,0 +1,31 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/powrprof/powrprof.spec; do not edit! + +LIBRARY powrprof.dll + +EXPORTS + CallNtPowerInformation@20 @1 + CanUserWritePwrScheme@0 @2 + DeletePwrScheme@4 @3 + EnumPwrSchemes@8 @4 + GetActivePwrScheme@4 @5 + GetCurrentPowerPolicies@8 @6 + GetPwrCapabilities@4 @7 + GetPwrDiskSpindownRange@8 @8 + IsAdminOverrideActive@4 @9 + IsPwrHibernateAllowed@0 @10 + IsPwrShutdownAllowed@0 @11 + IsPwrSuspendAllowed@0 @12 + PowerDeterminePlatformRole@0 @13 + PowerDeterminePlatformRoleEx@4 @14 + PowerEnumerate@28 @15 + PowerGetActiveScheme@8 @16 + PowerSetActiveScheme@8 @17 + PowerReadDCValue@28 @18 + ReadGlobalPwrPolicy@4 @19 + ReadProcessorPwrScheme@8 @20 + ReadPwrScheme@8 @21 + SetActivePwrScheme@12 @22 + SetSuspendState@12 @23 + WriteGlobalPwrPolicy@4 @24 + WriteProcessorPwrScheme@8 @25 + WritePwrScheme@16 @26 diff --git a/lib/wine/libpropsys.def b/lib/wine/libpropsys.def new file mode 100644 index 0000000..7b57c58 --- /dev/null +++ b/lib/wine/libpropsys.def @@ -0,0 +1,192 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/propsys/propsys.spec; do not edit! + +LIBRARY propsys.dll + +EXPORTS + GetProxyDllInfo@0 @3 PRIVATE + ClearPropVariantArray@0 @4 PRIVATE + ClearVariantArray@0 @5 PRIVATE + DllCanUnloadNow@0 @6 PRIVATE + DllGetClassObject@12 @7 PRIVATE + DllRegisterServer@0 @8 PRIVATE + DllUnregisterServer@0 @9 PRIVATE + InitPropVariantFromBooleanVector@0 @10 PRIVATE + InitPropVariantFromBuffer@12 @11 + InitPropVariantFromCLSID@8 @12 + InitPropVariantFromDoubleVector@0 @13 PRIVATE + InitPropVariantFromFileTime@0 @14 PRIVATE + InitPropVariantFromFileTimeVector@0 @15 PRIVATE + InitPropVariantFromGUIDAsString@8 @16 + InitPropVariantFromInt16Vector@0 @17 PRIVATE + InitPropVariantFromInt32Vector@0 @18 PRIVATE + InitPropVariantFromInt64Vector@0 @19 PRIVATE + InitPropVariantFromPropVariantVectorElem@0 @20 PRIVATE + InitPropVariantFromResource@0 @21 PRIVATE + InitPropVariantFromStrRet@0 @22 PRIVATE + InitPropVariantFromStringAsVector@0 @23 PRIVATE + InitPropVariantFromStringVector@0 @24 PRIVATE + InitPropVariantFromUInt16Vector@0 @25 PRIVATE + InitPropVariantFromUInt32Vector@0 @26 PRIVATE + InitPropVariantFromUInt64Vector@0 @27 PRIVATE + InitPropVariantVectorFromPropVariant@0 @28 PRIVATE + InitVariantFromBooleanArray@0 @29 PRIVATE + InitVariantFromBuffer@12 @30 + InitVariantFromDoubleArray@0 @31 PRIVATE + InitVariantFromFileTime@0 @32 PRIVATE + InitVariantFromFileTimeArray@0 @33 PRIVATE + InitVariantFromGUIDAsString@8 @34 + InitVariantFromInt16Array@0 @35 PRIVATE + InitVariantFromInt32Array@0 @36 PRIVATE + InitVariantFromInt64Array@0 @37 PRIVATE + InitVariantFromResource@0 @38 PRIVATE + InitVariantFromStrRet@0 @39 PRIVATE + InitVariantFromStringArray@0 @40 PRIVATE + InitVariantFromUInt16Array@0 @41 PRIVATE + InitVariantFromUInt32Array@0 @42 PRIVATE + InitVariantFromUInt64Array@0 @43 PRIVATE + InitVariantFromVariantArrayElem@0 @44 PRIVATE + PSCoerceToCanonicalValue@0 @45 PRIVATE + PSCreateAdapterFromPropertyStore@0 @46 PRIVATE + PSCreateDelayedMultiplexPropertyStore@0 @47 PRIVATE + PSCreateMemoryPropertyStore@8 @48 + PSCreateMultiplexPropertyStore@0 @49 PRIVATE + PSCreatePropertyChangeArray@0 @50 PRIVATE + PSCreatePropertyStoreFromObject@0 @51 PRIVATE + PSCreatePropertyStoreFromPropertySetStorage@0 @52 PRIVATE + PSCreateSimplePropertyChange@0 @53 PRIVATE + PSEnumeratePropertyDescriptions@0 @54 PRIVATE + PSFormatForDisplay@0 @55 PRIVATE + PSFormatForDisplayAlloc@0 @56 PRIVATE + PSFormatPropertyValue@0 @57 PRIVATE + PSGetItemPropertyHandler@0 @58 PRIVATE + PSGetItemPropertyHandlerWithCreateObject@0 @59 PRIVATE + PSGetNameFromPropertyKey@0 @60 PRIVATE + PSGetNamedPropertyFromPropertyStorage@0 @61 PRIVATE + PSGetPropertyDescription@12 @62 + PSGetPropertyDescriptionByName@0 @63 PRIVATE + PSGetPropertyDescriptionListFromString@12 @64 + PSGetPropertyFromPropertyStorage@0 @65 PRIVATE + PSGetPropertyKeyFromName@8 @66 + PSGetPropertySystem@8 @67 + PSGetPropertyValue@0 @68 PRIVATE + PSLookupPropertyHandlerCLSID@0 @69 PRIVATE + PSPropertyKeyFromString@8 @70 + PSRefreshPropertySchema@0 @71 + PSRegisterPropertySchema@4 @72 + PSSetPropertyValue@0 @73 PRIVATE + PSStringFromPropertyKey@12 @74 + PSUnregisterPropertySchema@4 @75 + PropVariantChangeType@16 @76 + PropVariantCompareEx@16 @77 + PropVariantGetBooleanElem@0 @78 PRIVATE + PropVariantGetDoubleElem@0 @79 PRIVATE + PropVariantGetElementCount@0 @80 PRIVATE + PropVariantGetFileTimeElem@0 @81 PRIVATE + PropVariantGetInt16Elem@0 @82 PRIVATE + PropVariantGetInt32Elem@0 @83 PRIVATE + PropVariantGetInt64Elem@0 @84 PRIVATE + PropVariantGetStringElem@0 @85 PRIVATE + PropVariantGetUInt16Elem@0 @86 PRIVATE + PropVariantGetUInt32Elem@0 @87 PRIVATE + PropVariantGetUInt64Elem@0 @88 PRIVATE + PropVariantToBSTR@0 @89 PRIVATE + PropVariantToBoolean@8 @90 + PropVariantToBooleanVector@0 @91 PRIVATE + PropVariantToBooleanVectorAlloc@0 @92 PRIVATE + PropVariantToBooleanWithDefault@0 @93 PRIVATE + PropVariantToBuffer@12 @94 + PropVariantToDouble@8 @95 + PropVariantToDoubleVector@0 @96 PRIVATE + PropVariantToDoubleVectorAlloc@0 @97 PRIVATE + PropVariantToDoubleWithDefault@0 @98 PRIVATE + PropVariantToFileTime@0 @99 PRIVATE + PropVariantToFileTimeVector@0 @100 PRIVATE + PropVariantToFileTimeVectorAlloc@0 @101 PRIVATE + PropVariantToGUID@8 @102 + PropVariantToInt16@8 @103 + PropVariantToInt16Vector@0 @104 PRIVATE + PropVariantToInt16VectorAlloc@0 @105 PRIVATE + PropVariantToInt16WithDefault@0 @106 PRIVATE + PropVariantToInt32@8 @107 + PropVariantToInt32Vector@0 @108 PRIVATE + PropVariantToInt32VectorAlloc@0 @109 PRIVATE + PropVariantToInt32WithDefault@0 @110 PRIVATE + PropVariantToInt64@8 @111 + PropVariantToInt64Vector@0 @112 PRIVATE + PropVariantToInt64VectorAlloc@0 @113 PRIVATE + PropVariantToInt64WithDefault@0 @114 PRIVATE + PropVariantToStrRet@0 @115 PRIVATE + PropVariantToString@12 @116 + PropVariantToStringAlloc@8 @117 + PropVariantToStringVector@0 @118 PRIVATE + PropVariantToStringVectorAlloc@0 @119 PRIVATE + PropVariantToStringWithDefault@8 @120 + PropVariantToUInt16@8 @121 + PropVariantToUInt16Vector@0 @122 PRIVATE + PropVariantToUInt16VectorAlloc@0 @123 PRIVATE + PropVariantToUInt16WithDefault@0 @124 PRIVATE + PropVariantToUInt32@8 @125 + PropVariantToUInt32Vector@0 @126 PRIVATE + PropVariantToUInt32VectorAlloc@0 @127 PRIVATE + PropVariantToUInt32WithDefault@0 @128 PRIVATE + PropVariantToUInt64@8 @129 + PropVariantToUInt64Vector@0 @130 PRIVATE + PropVariantToUInt64VectorAlloc@0 @131 PRIVATE + PropVariantToUInt64WithDefault@0 @132 PRIVATE + PropVariantToVariant@0 @133 PRIVATE + StgDeserializePropVariant@0 @134 PRIVATE + StgSerializePropVariant@0 @135 PRIVATE + VariantCompare@0 @136 PRIVATE + VariantGetBooleanElem@0 @137 PRIVATE + VariantGetDoubleElem@0 @138 PRIVATE + VariantGetElementCount@0 @139 PRIVATE + VariantGetInt16Elem@0 @140 PRIVATE + VariantGetInt32Elem@0 @141 PRIVATE + VariantGetInt64Elem@0 @142 PRIVATE + VariantGetStringElem@0 @143 PRIVATE + VariantGetUInt16Elem@0 @144 PRIVATE + VariantGetUInt32Elem@0 @145 PRIVATE + VariantGetUInt64Elem@0 @146 PRIVATE + VariantToBoolean@0 @147 PRIVATE + VariantToBooleanArray@0 @148 PRIVATE + VariantToBooleanArrayAlloc@0 @149 PRIVATE + VariantToBooleanWithDefault@0 @150 PRIVATE + VariantToBuffer@0 @151 PRIVATE + VariantToDosDateTime@0 @152 PRIVATE + VariantToDouble@0 @153 PRIVATE + VariantToDoubleArray@0 @154 PRIVATE + VariantToDoubleArrayAlloc@0 @155 PRIVATE + VariantToDoubleWithDefault@0 @156 PRIVATE + VariantToFileTime@0 @157 PRIVATE + VariantToGUID@8 @158 + VariantToInt16@0 @159 PRIVATE + VariantToInt16Array@0 @160 PRIVATE + VariantToInt16ArrayAlloc@0 @161 PRIVATE + VariantToInt16WithDefault@0 @162 PRIVATE + VariantToInt32@0 @163 PRIVATE + VariantToInt32Array@0 @164 PRIVATE + VariantToInt32ArrayAlloc@0 @165 PRIVATE + VariantToInt32WithDefault@0 @166 PRIVATE + VariantToInt64@0 @167 PRIVATE + VariantToInt64Array@0 @168 PRIVATE + VariantToInt64ArrayAlloc@0 @169 PRIVATE + VariantToInt64WithDefault@0 @170 PRIVATE + VariantToPropVariant@0 @171 PRIVATE + VariantToStrRet@0 @172 PRIVATE + VariantToString@0 @173 PRIVATE + VariantToStringAlloc@0 @174 PRIVATE + VariantToStringArray@0 @175 PRIVATE + VariantToStringArrayAlloc@0 @176 PRIVATE + VariantToStringWithDefault@0 @177 PRIVATE + VariantToUInt16@0 @178 PRIVATE + VariantToUInt16Array@0 @179 PRIVATE + VariantToUInt16ArrayAlloc@0 @180 PRIVATE + VariantToUInt16WithDefault@0 @181 PRIVATE + VariantToUInt32@0 @182 PRIVATE + VariantToUInt32Array@0 @183 PRIVATE + VariantToUInt32ArrayAlloc@0 @184 PRIVATE + VariantToUInt32WithDefault@0 @185 PRIVATE + VariantToUInt64@0 @186 PRIVATE + VariantToUInt64Array@0 @187 PRIVATE + VariantToUInt64ArrayAlloc@0 @188 PRIVATE + VariantToUInt64WithDefault@0 @189 PRIVATE diff --git a/lib/wine/libpsapi.def b/lib/wine/libpsapi.def new file mode 100644 index 0000000..ebaaa82 --- /dev/null +++ b/lib/wine/libpsapi.def @@ -0,0 +1,31 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/psapi/psapi.spec; do not edit! + +LIBRARY psapi.dll + +EXPORTS + EmptyWorkingSet@4=kernel32.K32EmptyWorkingSet @1 + EnumDeviceDrivers@12=kernel32.K32EnumDeviceDrivers @2 + EnumPageFilesA@8=kernel32.K32EnumPageFilesA @3 + EnumPageFilesW@8=kernel32.K32EnumPageFilesW @4 + EnumProcessModules@16=kernel32.K32EnumProcessModules @5 + EnumProcessModulesEx@20=kernel32.K32EnumProcessModulesEx @6 + EnumProcesses@12=kernel32.K32EnumProcesses @7 + GetDeviceDriverBaseNameA@12=kernel32.K32GetDeviceDriverBaseNameA @8 + GetDeviceDriverBaseNameW@12=kernel32.K32GetDeviceDriverBaseNameW @9 + GetDeviceDriverFileNameA@12=kernel32.K32GetDeviceDriverFileNameA @10 + GetDeviceDriverFileNameW@12=kernel32.K32GetDeviceDriverFileNameW @11 + GetMappedFileNameA@16=kernel32.K32GetMappedFileNameA @12 + GetMappedFileNameW@16=kernel32.K32GetMappedFileNameW @13 + GetModuleBaseNameA@16=kernel32.K32GetModuleBaseNameA @14 + GetModuleBaseNameW@16=kernel32.K32GetModuleBaseNameW @15 + GetModuleFileNameExA@16=kernel32.K32GetModuleFileNameExA @16 + GetModuleFileNameExW@16=kernel32.K32GetModuleFileNameExW @17 + GetModuleInformation@16=kernel32.K32GetModuleInformation @18 + GetPerformanceInfo@8=kernel32.K32GetPerformanceInfo @19 + GetProcessImageFileNameA@12=kernel32.K32GetProcessImageFileNameA @20 + GetProcessImageFileNameW@12=kernel32.K32GetProcessImageFileNameW @21 + GetProcessMemoryInfo@12=kernel32.K32GetProcessMemoryInfo @22 + GetWsChanges@12=kernel32.K32GetWsChanges @23 + InitializeProcessForWsWatch@4=kernel32.K32InitializeProcessForWsWatch @24 + QueryWorkingSet@12=kernel32.K32QueryWorkingSet @25 + QueryWorkingSetEx@12=kernel32.K32QueryWorkingSetEx @26 diff --git a/lib/wine/libquartz.def b/lib/wine/libquartz.def new file mode 100644 index 0000000..b7ce898 --- /dev/null +++ b/lib/wine/libquartz.def @@ -0,0 +1,14 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/quartz/quartz.spec; do not edit! + +LIBRARY quartz.dll + +EXPORTS + AMGetErrorTextA@12 @1 + AMGetErrorTextW@12 @2 + AmpFactorToDB@4 @3 + DBToAmpFactor@4 @4 + DllCanUnloadNow@0 @5 PRIVATE + DllGetClassObject@12 @6 PRIVATE + DllRegisterServer@0 @7 PRIVATE + DllUnregisterServer@0 @8 PRIVATE + GetProxyDllInfo@0 @9 PRIVATE diff --git a/lib/wine/librasapi32.def b/lib/wine/librasapi32.def new file mode 100644 index 0000000..801719d --- /dev/null +++ b/lib/wine/librasapi32.def @@ -0,0 +1,132 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/rasapi32/rasapi32.spec; do not edit! + +LIBRARY rasapi32.dll + +EXPORTS + RasAutodialAddressToNetwork@0 @538 PRIVATE + RasAutodialEntryToNetwork@0 @539 PRIVATE + RasConnectionNotificationA@12 @540 + RasConnectionNotificationW@12 @541 + RasCreatePhonebookEntryA@8 @542 + RasCreatePhonebookEntryW@8 @543 + RasDeleteEntryA@8 @544 + RasDeleteEntryW@8 @545 + RasDeleteSubEntryA@12 @546 + RasDeleteSubEntryW@12 @547 + RasDialA@24 @548 + RasDialW@24 @549 + RasDialWow@0 @550 PRIVATE + RasEditPhonebookEntryA@12 @551 + RasEditPhonebookEntryW@12 @552 + RasEnumAutodialAddressesA@12 @553 + RasEnumAutodialAddressesW@12 @554 + RasEnumConnectionsA@12 @555 + RasEnumConnectionsW@12 @556 + RasEnumConnectionsWow@0 @557 PRIVATE + RasEnumDevicesA@12 @558 + RasEnumDevicesW@12 @559 + RasEnumEntriesA@20 @570 + RasEnumEntriesW@20 @571 + RasEnumEntriesWow@0 @572 PRIVATE + RasGetAutodialAddressA@20 @573 + RasGetAutodialAddressW@20 @574 + RasGetAutodialEnableA@8 @575 + RasGetAutodialEnableW@8 @576 + RasGetAutodialParamA@12 @577 + RasGetAutodialParamW@12 @578 + RasGetConnectResponse@0 @579 PRIVATE + RasGetConnectStatusA@8 @580 + RasGetConnectStatusW@8 @581 + RasGetConnectStatusWow@0 @582 PRIVATE + RasGetConnectionStatistics@8 @583 + RasGetCountryInfoA@0 @584 PRIVATE + RasGetCountryInfoW@0 @585 PRIVATE + RasGetCredentialsA@0 @586 PRIVATE + RasGetCredentialsW@0 @587 PRIVATE + RasGetEntryDialParamsA@12 @588 + RasGetEntryDialParamsW@12 @589 + RasGetEntryPropertiesA@24 @590 + RasGetEntryPropertiesW@24 @591 + RasGetErrorStringA@12 @592 + RasGetErrorStringW@12 @593 + RasGetErrorStringWow@0 @594 PRIVATE + RasGetHport@0 @595 PRIVATE + RasGetLinkStatistics@12 @596 + RasGetProjectionInfoA@16 @597 + RasGetProjectionInfoW@16 @598 + RasGetSubEntryHandleA@0 @599 PRIVATE + RasGetSubEntryHandleW@0 @600 PRIVATE + RasGetSubEntryPropertiesA@0 @601 PRIVATE + RasGetSubEntryPropertiesW@0 @602 PRIVATE + RasHangUpA@4 @603 + RasHangUpW@4 @604 + RasHangUpWow@0 @605 PRIVATE + RasRenameEntryA@12 @606 + RasRenameEntryW@12 @607 + RasSetAutodialAddressA@20 @608 + RasSetAutodialAddressW@20 @609 + RasSetAutodialEnableA@8 @610 + RasSetAutodialEnableW@8 @611 + RasSetAutodialParamA@12 @612 + RasSetAutodialParamW@12 @613 + RasSetCredentialsA@0 @614 PRIVATE + RasSetCredentialsW@0 @615 PRIVATE + RasSetCustomAuthDataA@16 @616 + RasSetCustomAuthDataW@16 @617 + RasSetEntryDialParamsA@12 @618 + RasSetEntryDialParamsW@12 @619 + RasSetEntryPropertiesA@24 @620 + RasSetEntryPropertiesW@24 @621 + RasSetOldPassword@0 @622 PRIVATE + RasSetSubEntryPropertiesA@28 @623 + RasSetSubEntryPropertiesW@28 @624 + RasValidateEntryNameA@8 @625 + RasValidateEntryNameW@8 @626 + RnaEngineRequest@0 @500 PRIVATE + DialEngineRequest@0 @501 PRIVATE + SuprvRequest@0 @502 PRIVATE + DialInMessage@0 @503 PRIVATE + RnaEnumConnEntries@0 @504 PRIVATE + RnaGetConnEntry@0 @505 PRIVATE + RnaFreeConnEntry@0 @506 PRIVATE + RnaSaveConnEntry@0 @507 PRIVATE + RnaDeleteConnEntry@0 @508 PRIVATE + RnaRenameConnEntry@0 @509 PRIVATE + RnaValidateEntryName@0 @510 PRIVATE + RnaEnumDevices@0 @511 PRIVATE + RnaGetDeviceInfo@0 @512 PRIVATE + RnaGetDefaultDevConfig@0 @513 PRIVATE + RnaBuildDevConfig@0 @514 PRIVATE + RnaDevConfigDlg@0 @515 PRIVATE + RnaFreeDevConfig@0 @516 PRIVATE + RnaActivateEngine@0 @517 PRIVATE + RnaDeactivateEngine@0 @518 PRIVATE + SuprvEnumAccessInfo@0 @519 PRIVATE + SuprvGetAccessInfo@0 @520 PRIVATE + SuprvSetAccessInfo@0 @521 PRIVATE + SuprvGetAdminConfig@0 @522 PRIVATE + SuprvInitialize@0 @523 PRIVATE + SuprvDeInitialize@0 @524 PRIVATE + RnaUIDial@0 @525 PRIVATE + RnaImplicitDial@0 @526 PRIVATE + RasDial16@0 @527 PRIVATE + RnaSMMInfoDialog@0 @528 PRIVATE + RnaEnumerateMacNames@0 @529 PRIVATE + RnaEnumCountryInfo@0 @530 PRIVATE + RnaGetAreaCodeList@0 @531 PRIVATE + RnaFindDriver@0 @532 PRIVATE + RnaInstallDriver@0 @533 PRIVATE + RnaGetDialSettings@0 @534 PRIVATE + RnaSetDialSettings@0 @535 PRIVATE + RnaGetIPInfo@0 @536 PRIVATE + RnaSetIPInfo@0 @537 PRIVATE + RnaCloseMac@0 @560 PRIVATE + RnaComplete@0 @561 PRIVATE + RnaGetDevicePort@0 @562 PRIVATE + RnaGetUserProfile@0 @563 PRIVATE + RnaOpenMac@0 @564 PRIVATE + RnaSessInitialize@0 @565 PRIVATE + RnaStartCallback@0 @566 PRIVATE + RnaTerminate@0 @567 PRIVATE + RnaUICallbackDialog@0 @568 PRIVATE + RnaUIUsernamePassword@0 @569 PRIVATE diff --git a/lib/wine/librasdlg.def b/lib/wine/librasdlg.def new file mode 100644 index 0000000..234c6f5 --- /dev/null +++ b/lib/wine/librasdlg.def @@ -0,0 +1,41 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/rasdlg/rasdlg.spec; do not edit! + +LIBRARY rasdlg.dll + +EXPORTS + DwTerminalDlg@0 @1 PRIVATE + GetRasDialOutProtocols@0 @2 PRIVATE + RasAutodialDisableDlgA@0 @3 PRIVATE + RasAutodialDisableDlgW@0 @4 PRIVATE + RasAutodialQueryDlgA@0 @5 PRIVATE + RasAutodialQueryDlgW@0 @6 PRIVATE + RasDialDlgA@0 @7 PRIVATE + RasDialDlgW@0 @8 PRIVATE + RasEntryDlgA@0 @9 PRIVATE + RasEntryDlgW@12 @10 + RasMonitorDlgA@0 @11 PRIVATE + RasMonitorDlgW@0 @12 PRIVATE + RasPhonebookDlgA@0 @13 PRIVATE + RasPhonebookDlgW@0 @14 PRIVATE + RasSrvAddPropPages@0 @15 PRIVATE + RasSrvAddWizPages@0 @16 PRIVATE + RasSrvAllowConnectionsConfig@0 @17 PRIVATE + RasSrvCleanupService@0 @18 PRIVATE + RasSrvEnumConnections@0 @19 PRIVATE + RasSrvHangupConnection@0 @20 PRIVATE + RasSrvInitializeService@0 @21 PRIVATE + RasSrvIsConnectionConnected@0 @22 PRIVATE + RasSrvIsServiceRunning@0 @23 PRIVATE + RasSrvQueryShowIcon@0 @24 PRIVATE + RasUserEnableManualDial@0 @25 PRIVATE + RasUserGetManualDial@0 @26 PRIVATE + RasUserPrefsDlg@0 @27 PRIVATE + RasWizCreateNewEntry@0 @28 PRIVATE + RasWizGetNCCFlags@0 @29 PRIVATE + RasWizGetSuggestedEntryName@0 @30 PRIVATE + RasWizGetUserInputConnectionName@0 @31 PRIVATE + RasWizIsEntryRenamable@0 @32 PRIVATE + RasWizQueryMaxPageCount@0 @33 PRIVATE + RasWizSetEntryName@0 @34 PRIVATE + RouterEntryDlgA@0 @35 PRIVATE + RouterEntryDlgW@0 @36 PRIVATE diff --git a/lib/wine/libresutils.def b/lib/wine/libresutils.def new file mode 100644 index 0000000..b797698 --- /dev/null +++ b/lib/wine/libresutils.def @@ -0,0 +1,76 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/resutils/resutils.spec; do not edit! + +LIBRARY resutils.dll + +EXPORTS + ClusWorkerCheckTerminate@0 @1 PRIVATE + ClusWorkerCreate@0 @2 PRIVATE + ClusWorkerStart@0 @3 PRIVATE + ClusWorkerTerminate@0 @4 PRIVATE + ResUtilAddUnknownProperties@0 @5 PRIVATE + ResUtilCreateDirectoryTree@0 @6 PRIVATE + ResUtilDupParameterBlock@0 @7 PRIVATE + ResUtilDupString@0 @8 PRIVATE + ResUtilEnumPrivateProperties@0 @9 PRIVATE + ResUtilEnumProperties@0 @10 PRIVATE + ResUtilEnumResources@0 @11 PRIVATE + ResUtilEnumResourcesEx@0 @12 PRIVATE + ResUtilExpandEnvironmentStrings@0 @13 PRIVATE + ResUtilFindBinaryProperty@0 @14 PRIVATE + ResUtilFindDependentDiskResourceDriveLetter@0 @15 PRIVATE + ResUtilFindDwordProperty@0 @16 PRIVATE + ResUtilFindExpandSzProperty@0 @17 PRIVATE + ResUtilFindExpandedSzProperty@0 @18 PRIVATE + ResUtilFindLongProperty@0 @19 PRIVATE + ResUtilFindMultiSzProperty@0 @20 PRIVATE + ResUtilFindSzProperty@0 @21 PRIVATE + ResUtilFreeEnvironment@0 @22 PRIVATE + ResUtilFreeParameterBlock@0 @23 PRIVATE + ResUtilGetAllProperties@0 @24 PRIVATE + ResUtilGetBinaryProperty@0 @25 PRIVATE + ResUtilGetBinaryValue@0 @26 PRIVATE + ResUtilGetCoreClusterResources@0 @27 PRIVATE + ResUtilGetDwordProperty@0 @28 PRIVATE + ResUtilGetDwordValue@0 @29 PRIVATE + ResUtilGetEnvironmentWithNetName@0 @30 PRIVATE + ResUtilGetMultiSzProperty@0 @31 PRIVATE + ResUtilGetPrivateProperties@0 @32 PRIVATE + ResUtilGetProperties@0 @33 PRIVATE + ResUtilGetPropertiesToParameterBlock@0 @34 PRIVATE + ResUtilGetProperty@0 @35 PRIVATE + ResUtilGetPropertyFormats@0 @36 PRIVATE + ResUtilGetPropertySize@0 @37 PRIVATE + ResUtilGetResourceDependency@0 @38 PRIVATE + ResUtilGetResourceDependencyByClass@0 @39 PRIVATE + ResUtilGetResourceDependencyByName@0 @40 PRIVATE + ResUtilGetResourceDependentIPAddressProps@0 @41 PRIVATE + ResUtilGetResourceName@0 @42 PRIVATE + ResUtilGetResourceNameDependency@0 @43 PRIVATE + ResUtilGetSzProperty@0 @44 PRIVATE + ResUtilGetSzValue@0 @45 PRIVATE + ResUtilIsPathValid@0 @46 PRIVATE + ResUtilIsResourceClassEqual@0 @47 PRIVATE + ResUtilPropertyListFromParameterBlock@0 @48 PRIVATE + ResUtilResourceTypesEqual@0 @49 PRIVATE + ResUtilResourcesEqual@0 @50 PRIVATE + ResUtilSetBinaryValue@0 @51 PRIVATE + ResUtilSetDwordValue@0 @52 PRIVATE + ResUtilSetExpandSzValue@0 @53 PRIVATE + ResUtilSetMultiSzValue@0 @54 PRIVATE + ResUtilSetPrivatePropertyList@0 @55 PRIVATE + ResUtilSetPropertyParameterBlock@0 @56 PRIVATE + ResUtilSetPropertyParameterBlockEx@0 @57 PRIVATE + ResUtilSetPropertyTable@0 @58 PRIVATE + ResUtilSetPropertyTableEx@0 @59 PRIVATE + ResUtilSetResourceServiceEnvironment@0 @60 PRIVATE + ResUtilSetResourceServiceStartParameters@0 @61 PRIVATE + ResUtilSetSzValue@0 @62 PRIVATE + ResUtilSetUnknownProperties@0 @63 PRIVATE + ResUtilStartResourceService@0 @64 PRIVATE + ResUtilStopResourceService@0 @65 PRIVATE + ResUtilStopService@0 @66 PRIVATE + ResUtilTerminateServiceProcessFromResDll@0 @67 PRIVATE + ResUtilVerifyPrivatePropertyList@0 @68 PRIVATE + ResUtilVerifyPropertyTable@0 @69 PRIVATE + ResUtilVerifyResourceService@0 @70 PRIVATE + ResUtilVerifyService@0 @71 PRIVATE diff --git a/lib/wine/libriched20.def b/lib/wine/libriched20.def new file mode 100644 index 0000000..744503e --- /dev/null +++ b/lib/wine/libriched20.def @@ -0,0 +1,14 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/riched20/riched20.spec; do not edit! + +LIBRARY riched20.dll + +EXPORTS + IID_IRichEditOle @2 DATA + IID_IRichEditOleCallback @3 DATA + CreateTextServices@12 @4 + IID_ITextServices @5 DATA + IID_ITextHost @6 DATA + IID_ITextHost2 @7 DATA + REExtendedRegisterClass@0 @8 + RichEdit10ANSIWndProc@16 @9 + RichEditANSIWndProc@16 @10 diff --git a/lib/wine/librpcrt4.def b/lib/wine/librpcrt4.def new file mode 100644 index 0000000..28cca3f --- /dev/null +++ b/lib/wine/librpcrt4.def @@ -0,0 +1,534 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/rpcrt4/rpcrt4.spec; do not edit! + +LIBRARY rpcrt4.dll + +EXPORTS + CreateProxyFromTypeInfo@20 @1 + CreateStubFromTypeInfo@16 @2 + CStdStubBuffer_AddRef@4 @3 + CStdStubBuffer_Connect@8 @4 + CStdStubBuffer_CountRefs@4 @5 + CStdStubBuffer_DebugServerQueryInterface@8 @6 + CStdStubBuffer_DebugServerRelease@8 @7 + CStdStubBuffer_Disconnect@4 @8 + CStdStubBuffer_Invoke@12 @9 + CStdStubBuffer_IsIIDSupported@8 @10 + CStdStubBuffer_QueryInterface@12 @11 + CreateServerInterfaceFromStub@0 @12 PRIVATE + DceErrorInqTextA@8 @13 + DceErrorInqTextW@8 @14 + DllRegisterServer@0 @15 PRIVATE + GlobalMutexClearExternal@0 @16 PRIVATE + GlobalMutexRequestExternal@0 @17 PRIVATE + IUnknown_AddRef_Proxy@4 @18 + IUnknown_QueryInterface_Proxy@12 @19 + IUnknown_Release_Proxy@4 @20 + I_RpcAbortAsyncCall@8=I_RpcAsyncAbortCall @21 + I_RpcAllocate@4 @22 + I_RpcAsyncAbortCall@8 @23 + I_RpcAsyncSetHandle@8 @24 + I_RpcBCacheAllocate@0 @25 PRIVATE + I_RpcBCacheFree@0 @26 PRIVATE + I_RpcBindingCopy@0 @27 PRIVATE + I_RpcBindingInqConnId@0 @28 PRIVATE + I_RpcBindingInqDynamicEndPoint@0 @29 PRIVATE + I_RpcBindingInqDynamicEndPointA@0 @30 PRIVATE + I_RpcBindingInqDynamicEndPointW@0 @31 PRIVATE + I_RpcBindingInqLocalClientPID@8 @32 + I_RpcBindingInqSecurityContext@0 @33 PRIVATE + I_RpcBindingInqTransportType@8 @34 + I_RpcBindingInqWireIdForSnego@0 @35 PRIVATE + I_RpcBindingIsClientLocal@0 @36 PRIVATE + I_RpcBindingSetAsync@8 @37 + I_RpcBindingToStaticStringBindingW@0 @38 PRIVATE + I_RpcClearMutex@0 @39 PRIVATE + I_RpcConnectionInqSockBuffSize@0 @40 PRIVATE + I_RpcConnectionSetSockBuffSize@0 @41 PRIVATE + I_RpcDeleteMutex@0 @42 PRIVATE + I_RpcEnableWmiTrace@0 @43 PRIVATE + I_RpcExceptionFilter@4=RpcExceptionFilter @44 + I_RpcFree@4 @45 + I_RpcFreeBuffer@4 @46 + I_RpcFreePipeBuffer@0 @47 PRIVATE + I_RpcGetBuffer@4 @48 + I_RpcGetBufferWithObject@0 @49 PRIVATE + I_RpcGetCurrentCallHandle@0 @50 + I_RpcGetExtendedError@0 @51 PRIVATE + I_RpcIfInqTransferSyntaxes@0 @52 PRIVATE + I_RpcLogEvent@0 @53 PRIVATE + I_RpcMapWin32Status@4 @54 + I_RpcNegotiateTransferSyntax@4 @55 + I_RpcNsBindingSetEntryName@0 @56 PRIVATE + I_RpcNsBindingSetEntryNameA@0 @57 PRIVATE + I_RpcNsBindingSetEntryNameW@0 @58 PRIVATE + I_RpcNsInterfaceExported@0 @59 PRIVATE + I_RpcNsInterfaceUnexported@0 @60 PRIVATE + I_RpcParseSecurity@0 @61 PRIVATE + I_RpcPauseExecution@0 @62 PRIVATE + I_RpcProxyNewConnection@0 @63 PRIVATE + I_RpcReallocPipeBuffer@0 @64 PRIVATE + I_RpcReceive@4 @65 + I_RpcRequestMutex@0 @66 PRIVATE + I_RpcSend@4 @67 + I_RpcSendReceive@4 @68 + I_RpcServerAllocateIpPort@0 @69 PRIVATE + I_RpcServerInqAddressChangeFn@0 @70 PRIVATE + I_RpcServerInqLocalConnAddress@0 @71 PRIVATE + I_RpcServerInqTransportType@0 @72 PRIVATE + I_RpcServerRegisterForwardFunction@0 @73 PRIVATE + I_RpcServerSetAddressChangeFn@0 @74 PRIVATE + I_RpcServerStartListening@4 @75 + I_RpcServerStopListening@0 @76 + I_RpcServerUseProtseq2A@0 @77 PRIVATE + I_RpcServerUseProtseq2W@0 @78 PRIVATE + I_RpcServerUseProtseqEp2A@0 @79 PRIVATE + I_RpcServerUseProtseqEp2W@0 @80 PRIVATE + I_RpcSetAsyncHandle@0 @81 PRIVATE + I_RpcSsDontSerializeContext@0 @82 PRIVATE + I_RpcSystemFunction001@0 @83 PRIVATE + I_RpcTransConnectionAllocatePacket@0 @84 PRIVATE + I_RpcTransConnectionFreePacket@0 @85 PRIVATE + I_RpcTransConnectionReallocPacket@0 @86 PRIVATE + I_RpcTransDatagramAllocate2@0 @87 PRIVATE + I_RpcTransDatagramAllocate@0 @88 PRIVATE + I_RpcTransDatagramFree@0 @89 PRIVATE + I_RpcTransGetThreadEvent@0 @90 PRIVATE + I_RpcTransIoCancelled@0 @91 PRIVATE + I_RpcTransServerNewConnection@0 @92 PRIVATE + I_RpcTurnOnEEInfoPropagation@0 @93 PRIVATE + I_RpcWindowProc@16 @94 + I_UuidCreate@4 @95 + MIDL_wchar_strcpy@0 @96 PRIVATE + MIDL_wchar_strlen@0 @97 PRIVATE + MesBufferHandleReset@24 @98 + MesDecodeBufferHandleCreate@12 @99 + MesDecodeIncrementalHandleCreate@12 @100 + MesEncodeDynBufferHandleCreate@12 @101 + MesEncodeFixedBufferHandleCreate@16 @102 + MesEncodeIncrementalHandleCreate@16 @103 + MesHandleFree@4 @104 + MesIncrementalHandleReset@24 @105 + MesInqProcEncodingId@0 @106 PRIVATE + NDRCContextBinding@4 @107 + NDRCContextMarshall@8 @108 + NDRCContextUnmarshall@16 @109 + NDRSContextMarshall2@24 @110 + NDRSContextMarshall@12 @111 + NDRSContextMarshallEx@16 @112 + NDRSContextUnmarshall2@20 @113 + NDRSContextUnmarshall@8 @114 + NDRSContextUnmarshallEx@12 @115 + NDRcopy@0 @116 PRIVATE + NdrAllocate@8 @117 + NdrAsyncClientCall @118 + NdrAsyncServerCall@4 @119 + NdrAsyncStubCall@16 @120 + NdrByteCountPointerBufferSize@12 @121 + NdrByteCountPointerFree@12 @122 + NdrByteCountPointerMarshall@12 @123 + NdrByteCountPointerUnmarshall@16 @124 + NdrCStdStubBuffer2_Release@8 @125 + NdrCStdStubBuffer_Release@8 @126 + NdrClearOutParameters@12 @127 + NdrClientCall2 @128 + NdrClientCall=NdrClientCall2 @129 + NdrClientContextMarshall@12 @130 + NdrClientContextUnmarshall@12 @131 + NdrClientInitialize@0 @132 PRIVATE + NdrClientInitializeNew@16 @133 + NdrComplexArrayBufferSize@12 @134 + NdrComplexArrayFree@12 @135 + NdrComplexArrayMarshall@12 @136 + NdrComplexArrayMemorySize@8 @137 + NdrComplexArrayUnmarshall@16 @138 + NdrComplexStructBufferSize@12 @139 + NdrComplexStructFree@12 @140 + NdrComplexStructMarshall@12 @141 + NdrComplexStructMemorySize@8 @142 + NdrComplexStructUnmarshall@16 @143 + NdrConformantArrayBufferSize@12 @144 + NdrConformantArrayFree@12 @145 + NdrConformantArrayMarshall@12 @146 + NdrConformantArrayMemorySize@8 @147 + NdrConformantArrayUnmarshall@16 @148 + NdrConformantStringBufferSize@12 @149 + NdrConformantStringMarshall@12 @150 + NdrConformantStringMemorySize@8 @151 + NdrConformantStringUnmarshall@16 @152 + NdrConformantStructBufferSize@12 @153 + NdrConformantStructFree@12 @154 + NdrConformantStructMarshall@12 @155 + NdrConformantStructMemorySize@8 @156 + NdrConformantStructUnmarshall@16 @157 + NdrConformantVaryingArrayBufferSize@12 @158 + NdrConformantVaryingArrayFree@12 @159 + NdrConformantVaryingArrayMarshall@12 @160 + NdrConformantVaryingArrayMemorySize@8 @161 + NdrConformantVaryingArrayUnmarshall@16 @162 + NdrConformantVaryingStructBufferSize@12 @163 + NdrConformantVaryingStructFree@12 @164 + NdrConformantVaryingStructMarshall@12 @165 + NdrConformantVaryingStructMemorySize@8 @166 + NdrConformantVaryingStructUnmarshall@16 @167 + NdrContextHandleInitialize@8 @168 + NdrContextHandleSize@12 @169 + NdrConvert2@12 @170 + NdrConvert@8 @171 + NdrCorrelationFree@4 @172 + NdrCorrelationInitialize@16 @173 + NdrCorrelationPass@4 @174 + NdrDcomAsyncClientCall@0 @175 PRIVATE + NdrDcomAsyncStubCall@0 @176 PRIVATE + NdrDllCanUnloadNow@4 @177 + NdrDllGetClassObject@24 @178 + NdrDllRegisterProxy@12 @179 + NdrDllUnregisterProxy@12 @180 + NdrEncapsulatedUnionBufferSize@12 @181 + NdrEncapsulatedUnionFree@12 @182 + NdrEncapsulatedUnionMarshall@12 @183 + NdrEncapsulatedUnionMemorySize@8 @184 + NdrEncapsulatedUnionUnmarshall@16 @185 + NdrFixedArrayBufferSize@12 @186 + NdrFixedArrayFree@12 @187 + NdrFixedArrayMarshall@12 @188 + NdrFixedArrayMemorySize@8 @189 + NdrFixedArrayUnmarshall@16 @190 + NdrFreeBuffer@4 @191 + NdrFullPointerFree@8 @192 + NdrFullPointerInsertRefId@12 @193 + NdrFullPointerQueryPointer@16 @194 + NdrFullPointerQueryRefId@16 @195 + NdrFullPointerXlatFree@4 @196 + NdrFullPointerXlatInit@8 @197 + NdrGetBuffer@12 @198 + NdrGetDcomProtocolVersion@0 @199 PRIVATE + NdrGetPartialBuffer@0 @200 PRIVATE + NdrGetPipeBuffer@0 @201 PRIVATE + NdrGetSimpleTypeBufferAlignment@0 @202 PRIVATE + NdrGetSimpleTypeBufferSize@0 @203 PRIVATE + NdrGetSimpleTypeMemorySize@0 @204 PRIVATE + NdrGetTypeFlags@0 @205 PRIVATE + NdrGetUserMarshalInfo@12 @206 + NdrHardStructBufferSize@0 @207 PRIVATE + NdrHardStructFree@0 @208 PRIVATE + NdrHardStructMarshall@0 @209 PRIVATE + NdrHardStructMemorySize@0 @210 PRIVATE + NdrHardStructUnmarshall@0 @211 PRIVATE + NdrInterfacePointerBufferSize@12 @212 + NdrInterfacePointerFree@12 @213 + NdrInterfacePointerMarshall@12 @214 + NdrInterfacePointerMemorySize@8 @215 + NdrInterfacePointerUnmarshall@16 @216 + NdrIsAppDoneWithPipes@0 @217 PRIVATE + NdrMapCommAndFaultStatus@16 @218 + NdrMarkNextActivePipe@0 @219 PRIVATE + NdrMesProcEncodeDecode2@0 @220 PRIVATE + NdrMesProcEncodeDecode @221 + NdrMesSimpleTypeAlignSize@0 @222 PRIVATE + NdrMesSimpleTypeDecode@0 @223 PRIVATE + NdrMesSimpleTypeEncode@0 @224 PRIVATE + NdrMesTypeAlignSize2@0 @225 PRIVATE + NdrMesTypeAlignSize@0 @226 PRIVATE + NdrMesTypeDecode2@20 @227 + NdrMesTypeDecode@0 @228 PRIVATE + NdrMesTypeEncode2@20 @229 + NdrMesTypeEncode@0 @230 PRIVATE + NdrMesTypeFree2@20 @231 + NdrNonConformantStringBufferSize@12 @232 + NdrNonConformantStringMarshall@12 @233 + NdrNonConformantStringMemorySize@8 @234 + NdrNonConformantStringUnmarshall@16 @235 + NdrNonEncapsulatedUnionBufferSize@12 @236 + NdrNonEncapsulatedUnionFree@12 @237 + NdrNonEncapsulatedUnionMarshall@12 @238 + NdrNonEncapsulatedUnionMemorySize@8 @239 + NdrNonEncapsulatedUnionUnmarshall@16 @240 + NdrNsGetBuffer@0 @241 PRIVATE + NdrNsSendReceive@0 @242 PRIVATE + NdrOleAllocate@4 @243 + NdrOleFree@4 @244 + NdrOutInit@0 @245 PRIVATE + NdrPartialIgnoreClientBufferSize@0 @246 PRIVATE + NdrPartialIgnoreClientMarshall@0 @247 PRIVATE + NdrPartialIgnoreServerInitialize@0 @248 PRIVATE + NdrPartialIgnoreServerUnmarshall@0 @249 PRIVATE + NdrPipePull@0 @250 PRIVATE + NdrPipePush@0 @251 PRIVATE + NdrPipeSendReceive@0 @252 PRIVATE + NdrPipesDone@0 @253 PRIVATE + NdrPipesInitialize@0 @254 PRIVATE + NdrPointerBufferSize@12 @255 + NdrPointerFree@12 @256 + NdrPointerMarshall@12 @257 + NdrPointerMemorySize@8 @258 + NdrPointerUnmarshall@16 @259 + NdrProxyErrorHandler@4 @260 + NdrProxyFreeBuffer@8 @261 + NdrProxyGetBuffer@8 @262 + NdrProxyInitialize@20 @263 + NdrProxySendReceive@8 @264 + NdrRangeUnmarshall@16 @265 + NdrRpcSmClientAllocate@0 @266 PRIVATE + NdrRpcSmClientFree@0 @267 PRIVATE + NdrRpcSmSetClientToOsf@0 @268 PRIVATE + NdrRpcSsDefaultAllocate@0 @269 PRIVATE + NdrRpcSsDefaultFree@0 @270 PRIVATE + NdrRpcSsDisableAllocate@0 @271 PRIVATE + NdrRpcSsEnableAllocate@0 @272 PRIVATE + NdrSendReceive@8 @273 + NdrServerCall2@4 @274 + NdrServerCall@4 @275 + NdrServerContextMarshall@12 @276 + NdrServerContextNewMarshall@16 @277 + NdrServerContextNewUnmarshall@8 @278 + NdrServerContextUnmarshall@4 @279 + NdrServerInitialize@0 @280 PRIVATE + NdrServerInitializeMarshall@0 @281 PRIVATE + NdrServerInitializeNew@12 @282 + NdrServerInitializePartial@0 @283 PRIVATE + NdrServerInitializeUnmarshall@0 @284 PRIVATE + NdrServerMarshall@0 @285 PRIVATE + NdrServerUnmarshall@0 @286 PRIVATE + NdrSimpleStructBufferSize@12 @287 + NdrSimpleStructFree@12 @288 + NdrSimpleStructMarshall@12 @289 + NdrSimpleStructMemorySize@8 @290 + NdrSimpleStructUnmarshall@16 @291 + NdrSimpleTypeMarshall@12 @292 + NdrSimpleTypeUnmarshall@12 @293 + NdrStubCall2@16 @294 + NdrStubCall@16 @295 + NdrStubForwardingFunction@16 @296 + NdrStubGetBuffer@12 @297 + NdrStubInitialize@16 @298 + NdrStubInitializeMarshall@0 @299 PRIVATE + NdrTypeFlags@0 @300 PRIVATE + NdrTypeFree@0 @301 PRIVATE + NdrTypeMarshall@0 @302 PRIVATE + NdrTypeSize@0 @303 PRIVATE + NdrTypeUnmarshall@0 @304 PRIVATE + NdrUnmarshallBasetypeInline@0 @305 PRIVATE + NdrUserMarshalBufferSize@12 @306 + NdrUserMarshalFree@12 @307 + NdrUserMarshalMarshall@12 @308 + NdrUserMarshalMemorySize@8 @309 + NdrUserMarshalSimpleTypeConvert@0 @310 PRIVATE + NdrUserMarshalUnmarshall@16 @311 + NdrVaryingArrayBufferSize@12 @312 + NdrVaryingArrayFree@12 @313 + NdrVaryingArrayMarshall@12 @314 + NdrVaryingArrayMemorySize@8 @315 + NdrVaryingArrayUnmarshall@16 @316 + NdrXmitOrRepAsBufferSize@12 @317 + NdrXmitOrRepAsFree@12 @318 + NdrXmitOrRepAsMarshall@12 @319 + NdrXmitOrRepAsMemorySize@8 @320 + NdrXmitOrRepAsUnmarshall@16 @321 + NdrpCreateProxy@0 @322 PRIVATE + NdrpCreateStub@0 @323 PRIVATE + NdrpGetProcFormatString@0 @324 PRIVATE + NdrpGetTypeFormatString@0 @325 PRIVATE + NdrpGetTypeGenCookie@0 @326 PRIVATE + NdrpMemoryIncrement@0 @327 PRIVATE + NdrpReleaseTypeFormatString@0 @328 PRIVATE + NdrpReleaseTypeGenCookie@0 @329 PRIVATE + NdrpSetRpcSsDefaults@0 @330 PRIVATE + NdrpVarVtOfTypeDesc@0 @331 PRIVATE + RpcAbortAsyncCall@8=RpcAsyncAbortCall @332 + RpcAsyncAbortCall@8 @333 + RpcAsyncCancelCall@8 @334 + RpcAsyncCompleteCall@8 @335 + RpcAsyncGetCallStatus@4 @336 + RpcAsyncInitializeHandle@8 @337 + RpcAsyncRegisterInfo@0 @338 PRIVATE + RpcBindingCopy@8 @339 + RpcBindingFree@4 @340 + RpcBindingFromStringBindingA@8 @341 + RpcBindingFromStringBindingW@8 @342 + RpcBindingInqAuthClientA@24 @343 + RpcBindingInqAuthClientExA@28 @344 + RpcBindingInqAuthClientExW@28 @345 + RpcBindingInqAuthClientW@24 @346 + RpcBindingInqAuthInfoA@24 @347 + RpcBindingInqAuthInfoExA@32 @348 + RpcBindingInqAuthInfoExW@32 @349 + RpcBindingInqAuthInfoW@24 @350 + RpcBindingInqObject@8 @351 + RpcBindingInqOption@0 @352 PRIVATE + RpcBindingReset@4 @353 + RpcBindingServerFromClient@8 @354 + RpcBindingSetAuthInfoA@24 @355 + RpcBindingSetAuthInfoExA@28 @356 + RpcBindingSetAuthInfoExW@28 @357 + RpcBindingSetAuthInfoW@24 @358 + RpcBindingSetObject@8 @359 + RpcBindingSetOption@12 @360 + RpcBindingToStringBindingA@8 @361 + RpcBindingToStringBindingW@8 @362 + RpcBindingVectorFree@4 @363 + RpcCancelAsyncCall@8=RpcAsyncCancelCall @364 + RpcCancelThread@4 @365 + RpcCancelThreadEx@8 @366 + RpcCertGeneratePrincipalNameA@0 @367 PRIVATE + RpcCertGeneratePrincipalNameW@0 @368 PRIVATE + RpcCompleteAsyncCall@8=RpcAsyncCompleteCall @369 + RpcEpRegisterA@16 @370 + RpcEpRegisterNoReplaceA@16 @371 + RpcEpRegisterNoReplaceW@16 @372 + RpcEpRegisterW@16 @373 + RpcEpResolveBinding@8 @374 + RpcEpUnregister@12 @375 + RpcErrorAddRecord@0 @376 PRIVATE + RpcErrorClearInformation@0 @377 PRIVATE + RpcErrorEndEnumeration@4 @378 + RpcErrorGetNextRecord@12 @379 + RpcErrorLoadErrorInfo@12 @380 + RpcErrorNumberOfRecords@0 @381 PRIVATE + RpcErrorResetEnumeration@0 @382 PRIVATE + RpcErrorSaveErrorInfo@12 @383 + RpcErrorStartEnumeration@4 @384 + RpcExceptionFilter@4 @385 + RpcFreeAuthorizationContext@0 @386 PRIVATE + RpcGetAsyncCallStatus@4=RpcAsyncGetCallStatus @387 + RpcIfIdVectorFree@0 @388 PRIVATE + RpcIfInqId@0 @389 PRIVATE + RpcImpersonateClient@4 @390 + RpcInitializeAsyncHandle@8=RpcAsyncInitializeHandle @391 + RpcMgmtEnableIdleCleanup@0 @392 + RpcMgmtEpEltInqBegin@24 @393 + RpcMgmtEpEltInqDone@0 @394 PRIVATE + RpcMgmtEpEltInqNextA@0 @395 PRIVATE + RpcMgmtEpEltInqNextW@0 @396 PRIVATE + RpcMgmtEpUnregister@0 @397 PRIVATE + RpcMgmtInqComTimeout@0 @398 PRIVATE + RpcMgmtInqDefaultProtectLevel@0 @399 PRIVATE + RpcMgmtInqIfIds@8 @400 + RpcMgmtInqServerPrincNameA@0 @401 PRIVATE + RpcMgmtInqServerPrincNameW@0 @402 PRIVATE + RpcMgmtInqStats@8 @403 + RpcMgmtIsServerListening@4 @404 + RpcMgmtSetAuthorizationFn@4 @405 + RpcMgmtSetCancelTimeout@4 @406 + RpcMgmtSetComTimeout@8 @407 + RpcMgmtSetServerStackSize@4 @408 + RpcMgmtStatsVectorFree@4 @409 + RpcMgmtStopServerListening@4 @410 + RpcMgmtWaitServerListen@0 @411 + RpcNetworkInqProtseqsA@4 @412 + RpcNetworkInqProtseqsW@4 @413 + RpcNetworkIsProtseqValidA@4 @414 + RpcNetworkIsProtseqValidW@4 @415 + RpcNsBindingInqEntryNameA@0 @416 PRIVATE + RpcNsBindingInqEntryNameW@0 @417 PRIVATE + RpcObjectInqType@0 @418 PRIVATE + RpcObjectSetInqFn@0 @419 PRIVATE + RpcObjectSetType@8 @420 + RpcProtseqVectorFreeA@4 @421 + RpcProtseqVectorFreeW@4 @422 + RpcRaiseException@4 @423 + RpcRegisterAsyncInfo@0 @424 PRIVATE + RpcRevertToSelf@0 @425 + RpcRevertToSelfEx@4 @426 + RpcServerInqBindings@4 @427 + RpcServerInqCallAttributesA@0 @428 PRIVATE + RpcServerInqCallAttributesW@0 @429 PRIVATE + RpcServerInqDefaultPrincNameA@8 @430 + RpcServerInqDefaultPrincNameW@8 @431 + RpcServerInqIf@0 @432 PRIVATE + RpcServerListen@12 @433 + RpcServerRegisterAuthInfoA@16 @434 + RpcServerRegisterAuthInfoW@16 @435 + RpcServerRegisterIf2@28 @436 + RpcServerRegisterIf3@32 @437 + RpcServerRegisterIf@12 @438 + RpcServerRegisterIfEx@24 @439 + RpcServerTestCancel@0 @440 PRIVATE + RpcServerUnregisterIf@12 @441 + RpcServerUnregisterIfEx@12 @442 + RpcServerUseAllProtseqs@0 @443 PRIVATE + RpcServerUseAllProtseqsEx@0 @444 PRIVATE + RpcServerUseAllProtseqsIf@0 @445 PRIVATE + RpcServerUseAllProtseqsIfEx@0 @446 PRIVATE + RpcServerUseProtseqA@12 @447 + RpcServerUseProtseqEpA@16 @448 + RpcServerUseProtseqEpExA@20 @449 + RpcServerUseProtseqEpExW@20 @450 + RpcServerUseProtseqEpW@16 @451 + RpcServerUseProtseqExA@0 @452 PRIVATE + RpcServerUseProtseqExW@0 @453 PRIVATE + RpcServerUseProtseqIfA@0 @454 PRIVATE + RpcServerUseProtseqIfExA@0 @455 PRIVATE + RpcServerUseProtseqIfExW@0 @456 PRIVATE + RpcServerUseProtseqIfW@0 @457 PRIVATE + RpcServerUseProtseqW@12 @458 + RpcServerYield@0 @459 PRIVATE + RpcSmAllocate@0 @460 PRIVATE + RpcSmClientFree@0 @461 PRIVATE + RpcSmDestroyClientContext@4 @462 + RpcSmDisableAllocate@0 @463 PRIVATE + RpcSmEnableAllocate@0 @464 PRIVATE + RpcSmFree@0 @465 PRIVATE + RpcSmGetThreadHandle@0 @466 PRIVATE + RpcSmSetClientAllocFree@0 @467 PRIVATE + RpcSmSetThreadHandle@0 @468 PRIVATE + RpcSmSwapClientAllocFree@0 @469 PRIVATE + RpcSsAllocate@0 @470 PRIVATE + RpcSsContextLockExclusive@0 @471 PRIVATE + RpcSsContextLockShared@0 @472 PRIVATE + RpcSsDestroyClientContext@4 @473 + RpcSsDisableAllocate@0 @474 PRIVATE + RpcSsDontSerializeContext@0 @475 + RpcSsEnableAllocate@0 @476 PRIVATE + RpcSsFree@0 @477 PRIVATE + RpcSsGetContextBinding@0 @478 PRIVATE + RpcSsGetThreadHandle@0 @479 PRIVATE + RpcSsSetClientAllocFree@0 @480 PRIVATE + RpcSsSetThreadHandle@0 @481 PRIVATE + RpcSsSwapClientAllocFree@0 @482 PRIVATE + RpcStringBindingComposeA@24 @483 + RpcStringBindingComposeW@24 @484 + RpcStringBindingParseA@24 @485 + RpcStringBindingParseW@24 @486 + RpcStringFreeA@4 @487 + RpcStringFreeW@4 @488 + RpcTestCancel@0 @489 PRIVATE + RpcUserFree@0 @490 PRIVATE + SimpleTypeAlignment@0 @491 PRIVATE + SimpleTypeBufferSize@0 @492 PRIVATE + SimpleTypeMemorySize@0 @493 PRIVATE + TowerConstruct@24 @494 + TowerExplode@24 @495 + UuidCompare@12 @496 + UuidCreate@4 @497 + UuidCreateNil@4 @498 + UuidCreateSequential@4 @499 + UuidEqual@12 @500 + UuidFromStringA@8 @501 + UuidFromStringW@8 @502 + UuidHash@8 @503 + UuidIsNil@8 @504 + UuidToStringA@8 @505 + UuidToStringW@8 @506 + char_array_from_ndr@0 @507 PRIVATE + char_from_ndr@0 @508 PRIVATE + data_from_ndr@0 @509 PRIVATE + data_into_ndr@0 @510 PRIVATE + data_size_ndr@0 @511 PRIVATE + double_array_from_ndr@0 @512 PRIVATE + double_from_ndr@0 @513 PRIVATE + enum_from_ndr@0 @514 PRIVATE + float_array_from_ndr@0 @515 PRIVATE + float_from_ndr@0 @516 PRIVATE + long_array_from_ndr@0 @517 PRIVATE + long_from_ndr@0 @518 PRIVATE + long_from_ndr_temp@0 @519 PRIVATE + pfnFreeRoutines@0 @520 PRIVATE + pfnMarshallRoutines@0 @521 PRIVATE + pfnSizeRoutines@0 @522 PRIVATE + pfnUnmarshallRoutines@0 @523 PRIVATE + short_array_from_ndr@0 @524 PRIVATE + short_from_ndr@0 @525 PRIVATE + short_from_ndr_temp@0 @526 PRIVATE + tree_into_ndr@0 @527 PRIVATE + tree_peek_ndr@0 @528 PRIVATE + tree_size_ndr@0 @529 PRIVATE diff --git a/lib/wine/librsaenh.def b/lib/wine/librsaenh.def new file mode 100644 index 0000000..9befb86 --- /dev/null +++ b/lib/wine/librsaenh.def @@ -0,0 +1,32 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/rsaenh/rsaenh.spec; do not edit! + +LIBRARY rsaenh.dll + +EXPORTS + CPAcquireContext@16=RSAENH_CPAcquireContext @1 + CPCreateHash@20=RSAENH_CPCreateHash @2 + CPDecrypt@28=RSAENH_CPDecrypt @3 + CPDeriveKey@20=RSAENH_CPDeriveKey @4 + CPDestroyHash@8=RSAENH_CPDestroyHash @5 + CPDestroyKey@8=RSAENH_CPDestroyKey @6 + CPDuplicateHash@20=RSAENH_CPDuplicateHash @7 + CPDuplicateKey@20=RSAENH_CPDuplicateKey @8 + CPEncrypt@32=RSAENH_CPEncrypt @9 + CPExportKey@28=RSAENH_CPExportKey @10 + CPGenKey@16=RSAENH_CPGenKey @11 + CPGenRandom@12=RSAENH_CPGenRandom @12 + CPGetHashParam@24=RSAENH_CPGetHashParam @13 + CPGetKeyParam@24=RSAENH_CPGetKeyParam @14 + CPGetProvParam@20=RSAENH_CPGetProvParam @15 + CPGetUserKey@12=RSAENH_CPGetUserKey @16 + CPHashData@20=RSAENH_CPHashData @17 + CPHashSessionKey@16=RSAENH_CPHashSessionKey @18 + CPImportKey@24=RSAENH_CPImportKey @19 + CPReleaseContext@8=RSAENH_CPReleaseContext @20 + CPSetHashParam@20=RSAENH_CPSetHashParam @21 + CPSetKeyParam@20=RSAENH_CPSetKeyParam @22 + CPSetProvParam@16=RSAENH_CPSetProvParam @23 + CPSignHash@28=RSAENH_CPSignHash @24 + CPVerifySignature@28=RSAENH_CPVerifySignature @25 + DllRegisterServer@0 @26 PRIVATE + DllUnregisterServer@0 @27 PRIVATE diff --git a/lib/wine/librtutils.def b/lib/wine/librtutils.def new file mode 100644 index 0000000..0703e58 --- /dev/null +++ b/lib/wine/librtutils.def @@ -0,0 +1,61 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/rtutils/rtutils.spec; do not edit! + +LIBRARY rtutils.dll + +EXPORTS + CreateWaitEvent@0 @1 PRIVATE + CreateWaitEventBinding@0 @2 PRIVATE + CreateWaitTimer@0 @3 PRIVATE + DeRegisterWaitEventBinding@0 @4 PRIVATE + DeRegisterWaitEventBindingSelf@0 @5 PRIVATE + DeRegisterWaitEventsTimers@0 @6 PRIVATE + DeRegisterWaitEventsTimersSelf@0 @7 PRIVATE + DebugPrintWaitWorkerThreads@0 @8 PRIVATE + LogErrorA@0 @9 PRIVATE + LogErrorW@0 @10 PRIVATE + LogEventA@0 @11 PRIVATE + LogEventW@0 @12 PRIVATE + MprSetupProtocolEnum@0 @13 PRIVATE + MprSetupProtocolFree@0 @14 PRIVATE + QueueWorkItem@0 @15 PRIVATE + RegisterWaitEventBinding@0 @16 PRIVATE + RegisterWaitEventsTimers@0 @17 PRIVATE + RouterAssert@0 @18 PRIVATE + RouterGetErrorStringA@0 @19 PRIVATE + RouterGetErrorStringW@0 @20 PRIVATE + RouterLogDeregisterA@0 @21 PRIVATE + RouterLogDeregisterW@0 @22 PRIVATE + RouterLogEventA@0 @23 PRIVATE + RouterLogEventDataA@0 @24 PRIVATE + RouterLogEventDataW@0 @25 PRIVATE + RouterLogEventExA@0 @26 PRIVATE + RouterLogEventExW@0 @27 PRIVATE + RouterLogEventStringA@0 @28 PRIVATE + RouterLogEventStringW@0 @29 PRIVATE + RouterLogEventValistExA@0 @30 PRIVATE + RouterLogEventValistExW@0 @31 PRIVATE + RouterLogEventW@0 @32 PRIVATE + RouterLogRegisterA@0 @33 PRIVATE + RouterLogRegisterW@0 @34 PRIVATE + SetIoCompletionProc@0 @35 PRIVATE + TraceDeregisterA@0 @36 PRIVATE + TraceDeregisterExA@0 @37 PRIVATE + TraceDeregisterExW@0 @38 PRIVATE + TraceDeregisterW@0 @39 PRIVATE + TraceDumpExA@0 @40 PRIVATE + TraceDumpExW@0 @41 PRIVATE + TraceGetConsoleA@0 @42 PRIVATE + TraceGetConsoleW@0 @43 PRIVATE + TracePrintfA@0 @44 PRIVATE + TracePrintfExA@0 @45 PRIVATE + TracePrintfExW@0 @46 PRIVATE + TracePrintfW@0 @47 PRIVATE + TracePutsExA@0 @48 PRIVATE + TracePutsExW@0 @49 PRIVATE + TraceRegisterExA@8 @50 + TraceRegisterExW@8 @51 + TraceVprintfExA@0 @52 PRIVATE + TraceVprintfExW@0 @53 PRIVATE + UpdateWaitTimer@0 @54 PRIVATE + WTFreeEvent@0 @55 PRIVATE + WTFreeTimer@0 @56 PRIVATE diff --git a/lib/wine/libsecur32.def b/lib/wine/libsecur32.def new file mode 100644 index 0000000..13a6478 --- /dev/null +++ b/lib/wine/libsecur32.def @@ -0,0 +1,85 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/secur32/secur32.spec; do not edit! + +LIBRARY secur32.dll + +EXPORTS + SecDeleteUserModeContext@0 @1 PRIVATE + SecInitUserModeContext@0 @2 PRIVATE + AcceptSecurityContext@36 @3 + AcquireCredentialsHandleA@36 @4 + AcquireCredentialsHandleW@36 @5 + AddCredentialsA@32 @6 + AddCredentialsW@32 @7 + AddSecurityPackageA@8 @8 + AddSecurityPackageW@8 @9 + ApplyControlToken@8 @10 + CompleteAuthToken@8 @11 + DecryptMessage@16 @12 + DeleteSecurityContext@4 @13 + DeleteSecurityPackageA@0 @14 PRIVATE + DeleteSecurityPackageW@0 @15 PRIVATE + EncryptMessage@16 @16 + EnumerateSecurityPackagesA@8 @17 + EnumerateSecurityPackagesW@8 @18 + ExportSecurityContext@16 @19 + FreeContextBuffer@4 @20 + FreeCredentialsHandle@4 @21 + GetComputerObjectNameA@12 @22 + GetComputerObjectNameW@12 @23 + GetSecurityUserInfo@0 @24 PRIVATE + GetUserNameExA@12 @25 + GetUserNameExW@12 @26 + ImpersonateSecurityContext@4 @27 + ImportSecurityContextA@16 @28 + ImportSecurityContextW@16 @29 + InitSecurityInterfaceA@0 @30 + InitSecurityInterfaceW@0 @31 + InitializeSecurityContextA@48 @32 + InitializeSecurityContextW@48 @33 + LsaCallAuthenticationPackage@28 @34 + LsaConnectUntrusted@4 @35 + LsaDeregisterLogonProcess@4 @36 + LsaEnumerateLogonSessions@8 @37 + LsaFreeReturnBuffer@4 @38 + LsaGetLogonSessionData@8 @39 + LsaLogonUser@56 @40 + LsaLookupAuthenticationPackage@12 @41 + LsaRegisterLogonProcess@12 @42 + LsaRegisterPolicyChangeNotification@0 @43 PRIVATE + LsaUnregisterPolicyChangeNotification@0 @44 PRIVATE + MakeSignature@16 @45 + QueryContextAttributesA@12 @46 + QueryContextAttributesW@12 @47 + QueryCredentialsAttributesA@12 @48 + QueryCredentialsAttributesW@12 @49 + QuerySecurityContextToken@8 @50 + QuerySecurityPackageInfoA@8 @51 + QuerySecurityPackageInfoW@8 @52 + RevertSecurityContext@4 @53 + SaslAcceptSecurityContext@0 @54 PRIVATE + SaslEnumerateProfilesA@0 @55 PRIVATE + SaslEnumerateProfilesW@0 @56 PRIVATE + SaslGetProfilePackageA@0 @57 PRIVATE + SaslGetProfilePackageW@0 @58 PRIVATE + SaslIdentifyPackageA@0 @59 PRIVATE + SaslIdentifyPackageW@0 @60 PRIVATE + SaslInitializeSecurityContextA@0 @61 PRIVATE + SaslInitializeSecurityContextW@0 @62 PRIVATE + SealMessage@16=EncryptMessage @63 + SecCacheSspiPackages@0 @64 PRIVATE + SecGetLocaleSpecificEncryptionRules@0 @65 PRIVATE + SecpFreeMemory@0 @66 PRIVATE + SecpTranslateName@0 @67 PRIVATE + SecpTranslateNameEx@0 @68 PRIVATE + SetContextAttributesA@16 @69 + SetContextAttributesW@16 @70 + SspiEncodeAuthIdentityAsStrings@16=sspicli.SspiEncodeAuthIdentityAsStrings @71 + SspiEncodeStringsAsAuthIdentity@16=sspicli.SspiEncodeStringsAsAuthIdentity @72 + SspiFreeAuthIdentity@4=sspicli.SspiFreeAuthIdentity @73 + SspiLocalFree@4=sspicli.SspiLocalFree @74 + SspiPrepareForCredWrite@28=sspicli.SspiPrepareForCredWrite @75 + SspiZeroAuthIdentity@4=sspicli.SspiZeroAuthIdentity @76 + TranslateNameA@20 @77 + TranslateNameW@20 @78 + UnsealMessage@16=DecryptMessage @79 + VerifySignature@16 @80 diff --git a/lib/wine/libsensapi.def b/lib/wine/libsensapi.def new file mode 100644 index 0000000..503ea9c --- /dev/null +++ b/lib/wine/libsensapi.def @@ -0,0 +1,8 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/sensapi/sensapi.spec; do not edit! + +LIBRARY sensapi.dll + +EXPORTS + IsDestinationReachableA@8 @1 + IsDestinationReachableW@8 @2 + IsNetworkAlive@4 @3 diff --git a/lib/wine/libsetupapi.def b/lib/wine/libsetupapi.def new file mode 100644 index 0000000..7d7b33c --- /dev/null +++ b/lib/wine/libsetupapi.def @@ -0,0 +1,602 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/setupapi/setupapi.spec; do not edit! + +LIBRARY setupapi.dll + +EXPORTS + AcquireSCMLock@0 @1 PRIVATE + AddMiniIconToList@0 @2 PRIVATE + AddTagToGroupOrderListEntry@0 @3 PRIVATE + AppendStringToMultiSz@0 @4 PRIVATE + AssertFail@12 @5 + CMP_Init_Detection@0 @6 PRIVATE + CMP_RegisterNotification@0 @7 PRIVATE + CMP_Report_LogOn@0 @8 PRIVATE + CMP_UnregisterNotification@0 @9 PRIVATE + CMP_WaitNoPendingInstallEvents@4 @10 + CMP_WaitServices@0 @11 PRIVATE + CM_Add_Empty_Log_Conf@0 @12 PRIVATE + CM_Add_Empty_Log_Conf_Ex@0 @13 PRIVATE + CM_Add_IDA@0 @14 PRIVATE + CM_Add_IDW@0 @15 PRIVATE + CM_Add_ID_ExA@0 @16 PRIVATE + CM_Add_ID_ExW@0 @17 PRIVATE + CM_Add_Range@0 @18 PRIVATE + CM_Add_Res_Des@0 @19 PRIVATE + CM_Add_Res_Des_Ex@0 @20 PRIVATE + CM_Connect_MachineA@8 @21 + CM_Connect_MachineW@8 @22 + CM_Create_DevNodeA@16 @23 + CM_Create_DevNodeW@16 @24 + CM_Create_DevNode_ExA@0 @25 PRIVATE + CM_Create_DevNode_ExW@0 @26 PRIVATE + CM_Create_Range_List@0 @27 PRIVATE + CM_Delete_Class_Key@0 @28 PRIVATE + CM_Delete_Class_Key_Ex@0 @29 PRIVATE + CM_Delete_DevNode_Key@0 @30 PRIVATE + CM_Delete_DevNode_Key_Ex@0 @31 PRIVATE + CM_Delete_Range@0 @32 PRIVATE + CM_Detect_Resource_Conflict@0 @33 PRIVATE + CM_Detect_Resource_Conflict_Ex@0 @34 PRIVATE + CM_Disable_DevNode@0 @35 PRIVATE + CM_Disable_DevNode_Ex@0 @36 PRIVATE + CM_Disconnect_Machine@4 @37 + CM_Dup_Range_List@0 @38 PRIVATE + CM_Enable_DevNode@0 @39 PRIVATE + CM_Enable_DevNode_Ex@0 @40 PRIVATE + CM_Enumerate_Classes@12 @41 + CM_Enumerate_Classes_Ex@0 @42 PRIVATE + CM_Enumerate_EnumeratorsA@0 @43 PRIVATE + CM_Enumerate_EnumeratorsW@0 @44 PRIVATE + CM_Enumerate_Enumerators_ExA@0 @45 PRIVATE + CM_Enumerate_Enumerators_ExW@0 @46 PRIVATE + CM_Find_Range@0 @47 PRIVATE + CM_First_Range@0 @48 PRIVATE + CM_Free_Log_Conf@0 @49 PRIVATE + CM_Free_Log_Conf_Ex@0 @50 PRIVATE + CM_Free_Log_Conf_Handle@0 @51 PRIVATE + CM_Free_Range_List@0 @52 PRIVATE + CM_Free_Res_Des@0 @53 PRIVATE + CM_Free_Res_Des_Ex@0 @54 PRIVATE + CM_Free_Res_Des_Handle@0 @55 PRIVATE + CM_Get_Child@12 @56 + CM_Get_Child_Ex@16 @57 + CM_Get_Class_Key_NameA@0 @58 PRIVATE + CM_Get_Class_Key_NameW@0 @59 PRIVATE + CM_Get_Class_Key_Name_ExA@0 @60 PRIVATE + CM_Get_Class_Key_Name_ExW@0 @61 PRIVATE + CM_Get_Class_NameA@0 @62 PRIVATE + CM_Get_Class_NameW@0 @63 PRIVATE + CM_Get_Class_Name_ExA@0 @64 PRIVATE + CM_Get_Class_Name_ExW@0 @65 PRIVATE + CM_Get_Class_Registry_PropertyA@28 @66 + CM_Get_Class_Registry_PropertyW@28 @67 + CM_Get_Depth@0 @68 PRIVATE + CM_Get_Depth_Ex@0 @69 PRIVATE + CM_Get_DevNode_Registry_PropertyA@24 @70 + CM_Get_DevNode_Registry_PropertyW@24 @71 + CM_Get_DevNode_Registry_Property_ExA@28 @72 + CM_Get_DevNode_Registry_Property_ExW@28 @73 + CM_Get_DevNode_Status@16 @74 + CM_Get_DevNode_Status_Ex@20 @75 + CM_Get_Device_IDA@16 @76 + CM_Get_Device_IDW@16 @77 + CM_Get_Device_ID_ExA@20 @78 + CM_Get_Device_ID_ExW@20 @79 + CM_Get_Device_ID_ListA@16 @80 + CM_Get_Device_ID_ListW@16 @81 + CM_Get_Device_ID_List_ExA@0 @82 PRIVATE + CM_Get_Device_ID_List_ExW@0 @83 PRIVATE + CM_Get_Device_ID_List_SizeA@12 @84 + CM_Get_Device_ID_List_SizeW@12 @85 + CM_Get_Device_ID_List_Size_ExA@0 @86 PRIVATE + CM_Get_Device_ID_List_Size_ExW@0 @87 PRIVATE + CM_Get_Device_ID_Size@12 @88 + CM_Get_Device_ID_Size_Ex@0 @89 PRIVATE + CM_Get_Device_Interface_AliasA@0 @90 PRIVATE + CM_Get_Device_Interface_AliasW@0 @91 PRIVATE + CM_Get_Device_Interface_Alias_ExA@0 @92 PRIVATE + CM_Get_Device_Interface_Alias_ExW@0 @93 PRIVATE + CM_Get_Device_Interface_ListA@0 @94 PRIVATE + CM_Get_Device_Interface_ListW@0 @95 PRIVATE + CM_Get_Device_Interface_List_ExA@0 @96 PRIVATE + CM_Get_Device_Interface_List_ExW@0 @97 PRIVATE + CM_Get_Device_Interface_List_SizeA@16 @98 + CM_Get_Device_Interface_List_SizeW@16 @99 + CM_Get_Device_Interface_List_Size_ExA@20 @100 + CM_Get_Device_Interface_List_Size_ExW@20 @101 + CM_Get_First_Log_Conf@0 @102 PRIVATE + CM_Get_First_Log_Conf_Ex@0 @103 PRIVATE + CM_Get_Global_State@0 @104 PRIVATE + CM_Get_Global_State_Ex@0 @105 PRIVATE + CM_Get_HW_Prof_FlagsA@0 @106 PRIVATE + CM_Get_HW_Prof_FlagsW@0 @107 PRIVATE + CM_Get_HW_Prof_Flags_ExA@0 @108 PRIVATE + CM_Get_HW_Prof_Flags_ExW@0 @109 PRIVATE + CM_Get_Hardware_Profile_InfoA@0 @110 PRIVATE + CM_Get_Hardware_Profile_InfoW@0 @111 PRIVATE + CM_Get_Hardware_Profile_Info_ExA@0 @112 PRIVATE + CM_Get_Hardware_Profile_Info_ExW@0 @113 PRIVATE + CM_Get_Log_Conf_Priority@0 @114 PRIVATE + CM_Get_Log_Conf_Priority_Ex@0 @115 PRIVATE + CM_Get_Next_Log_Conf@0 @116 PRIVATE + CM_Get_Next_Log_Conf_Ex@0 @117 PRIVATE + CM_Get_Next_Res_Des@0 @118 PRIVATE + CM_Get_Next_Res_Des_Ex@0 @119 PRIVATE + CM_Get_Parent@12 @120 + CM_Get_Parent_Ex@0 @121 PRIVATE + CM_Get_Res_Des_Data@0 @122 PRIVATE + CM_Get_Res_Des_Data_Ex@0 @123 PRIVATE + CM_Get_Res_Des_Data_Size@0 @124 PRIVATE + CM_Get_Res_Des_Data_Size_Ex@0 @125 PRIVATE + CM_Get_Sibling@12 @126 + CM_Get_Sibling_Ex@16 @127 + CM_Get_Version@0 @128 + CM_Get_Version_Ex@0 @129 PRIVATE + CM_Intersect_Range_List@0 @130 PRIVATE + CM_Invert_Range_List@0 @131 PRIVATE + CM_Is_Dock_Station_Present@0 @132 PRIVATE + CM_Locate_DevNodeA@12 @133 + CM_Locate_DevNodeW@12 @134 + CM_Locate_DevNode_ExA@16 @135 + CM_Locate_DevNode_ExW@16 @136 + CM_Merge_Range_List@0 @137 PRIVATE + CM_Modify_Res_Des@0 @138 PRIVATE + CM_Modify_Res_Des_Ex@0 @139 PRIVATE + CM_Move_DevNode@0 @140 PRIVATE + CM_Move_DevNode_Ex@0 @141 PRIVATE + CM_Next_Range@0 @142 PRIVATE + CM_Open_Class_KeyA@0 @143 PRIVATE + CM_Open_Class_KeyW@0 @144 PRIVATE + CM_Open_Class_Key_ExA@0 @145 PRIVATE + CM_Open_Class_Key_ExW@0 @146 PRIVATE + CM_Open_DevNode_Key@24 @147 + CM_Open_DevNode_Key_Ex@0 @148 PRIVATE + CM_Query_And_Remove_SubTreeA@0 @149 PRIVATE + CM_Query_And_Remove_SubTreeW@0 @150 PRIVATE + CM_Query_And_Remove_SubTree_ExA@0 @151 PRIVATE + CM_Query_And_Remove_SubTree_ExW@0 @152 PRIVATE + CM_Query_Arbitrator_Free_Data@0 @153 PRIVATE + CM_Query_Arbitrator_Free_Data_Ex@0 @154 PRIVATE + CM_Query_Arbitrator_Free_Size@0 @155 PRIVATE + CM_Query_Arbitrator_Free_Size_Ex@0 @156 PRIVATE + CM_Query_Remove_SubTree@0 @157 PRIVATE + CM_Query_Remove_SubTree_Ex@0 @158 PRIVATE + CM_Reenumerate_DevNode@8 @159 + CM_Reenumerate_DevNode_Ex@12 @160 + CM_Register_Device_Driver@0 @161 PRIVATE + CM_Register_Device_Driver_Ex@0 @162 PRIVATE + CM_Register_Device_InterfaceA@0 @163 PRIVATE + CM_Register_Device_InterfaceW@0 @164 PRIVATE + CM_Register_Device_Interface_ExA@0 @165 PRIVATE + CM_Register_Device_Interface_ExW@0 @166 PRIVATE + CM_Remove_SubTree@0 @167 PRIVATE + CM_Remove_SubTree_Ex@0 @168 PRIVATE + CM_Remove_Unmarked_Children@0 @169 PRIVATE + CM_Remove_Unmarked_Children_Ex@0 @170 PRIVATE + CM_Request_Device_EjectA@20 @171 + CM_Request_Device_EjectW@20 @172 + CM_Request_Eject_PC@0 @173 PRIVATE + CM_Reset_Children_Marks@0 @174 PRIVATE + CM_Reset_Children_Marks_Ex@0 @175 PRIVATE + CM_Run_Detection@0 @176 PRIVATE + CM_Run_Detection_Ex@0 @177 PRIVATE + CM_Set_Class_Registry_PropertyA@24 @178 + CM_Set_Class_Registry_PropertyW@24 @179 + CM_Set_DevNode_Problem@0 @180 PRIVATE + CM_Set_DevNode_Problem_Ex@0 @181 PRIVATE + CM_Set_DevNode_Registry_PropertyA@0 @182 PRIVATE + CM_Set_DevNode_Registry_PropertyW@0 @183 PRIVATE + CM_Set_DevNode_Registry_Property_ExA@0 @184 PRIVATE + CM_Set_DevNode_Registry_Property_ExW@0 @185 PRIVATE + CM_Set_HW_Prof@0 @186 PRIVATE + CM_Set_HW_Prof_Ex@0 @187 PRIVATE + CM_Set_HW_Prof_FlagsA@0 @188 PRIVATE + CM_Set_HW_Prof_FlagsW@0 @189 PRIVATE + CM_Set_HW_Prof_Flags_ExA@0 @190 PRIVATE + CM_Set_HW_Prof_Flags_ExW@0 @191 PRIVATE + CM_Setup_DevNode@0 @192 PRIVATE + CM_Setup_DevNode_Ex@0 @193 PRIVATE + CM_Test_Range_Available@0 @194 PRIVATE + CM_Uninstall_DevNode@0 @195 PRIVATE + CM_Uninstall_DevNode_Ex@0 @196 PRIVATE + CM_Unregister_Device_InterfaceA@0 @197 PRIVATE + CM_Unregister_Device_InterfaceW@0 @198 PRIVATE + CM_Unregister_Device_Interface_ExA@0 @199 PRIVATE + CM_Unregister_Device_Interface_ExW@0 @200 PRIVATE + CaptureAndConvertAnsiArg@8 @201 + CaptureStringArg@8 @202 + CenterWindowRelativeToParent@0 @203 PRIVATE + ConcatenatePaths@0 @204 PRIVATE + DelayedMove@8 @205 + DelimStringToMultiSz@0 @206 PRIVATE + DestroyTextFileReadBuffer@0 @207 PRIVATE + DoesUserHavePrivilege@4 @208 + DuplicateString@4 @209 + EnablePrivilege@8 @210 + ExtensionPropSheetPageProc@0 @211 PRIVATE + FileExists@8 @212 + FreeStringArray@0 @213 PRIVATE + GetCurrentDriverSigningPolicy@0 @214 PRIVATE + GetNewInfName@0 @215 PRIVATE + GetSetFileTimestamp@0 @216 PRIVATE + GetVersionInfoFromImage@0 @217 PRIVATE + InfIsFromOemLocation@0 @218 PRIVATE + InstallCatalog@12 @219 + InstallHinfSection@16=InstallHinfSectionA @220 + InstallHinfSectionA@16 @221 + InstallHinfSectionW@16 @222 + InstallStop@0 @223 PRIVATE + InstallStopEx@0 @224 PRIVATE + IsUserAdmin@0 @225 + LookUpStringInTable@0 @226 PRIVATE + MemoryInitialize@0 @227 PRIVATE + MultiByteToUnicode@8 @228 + MultiSzFromSearchControl@0 @229 PRIVATE + MyFree@4 @230 + MyGetFileTitle@0 @231 PRIVATE + MyMalloc@4 @232 + MyRealloc@8 @233 + OpenAndMapFileForRead@20 @234 + OutOfMemory@0 @235 PRIVATE + QueryMultiSzValueToArray@0 @236 PRIVATE + QueryRegistryValue@20 @237 + ReadAsciiOrUnicodeTextFile@0 @238 PRIVATE + RegistryDelnode@8 @239 + RetreiveFileSecurity@8 @240 + RetrieveServiceConfig@0 @241 PRIVATE + SearchForInfFile@0 @242 PRIVATE + SetArrayToMultiSzValue@0 @243 PRIVATE + SetupAddInstallSectionToDiskSpaceListA@24 @244 + SetupAddInstallSectionToDiskSpaceListW@24 @245 + SetupAddSectionToDiskSpaceListA@28 @246 + SetupAddSectionToDiskSpaceListW@28 @247 + SetupAddToDiskSpaceListA@28 @248 + SetupAddToDiskSpaceListW@28 @249 + SetupAddToSourceListA@8 @250 + SetupAddToSourceListW@8 @251 + SetupAdjustDiskSpaceListA@0 @252 PRIVATE + SetupAdjustDiskSpaceListW@0 @253 PRIVATE + SetupCancelTemporarySourceList@0 @254 PRIVATE + SetupCloseFileQueue@4 @255 + SetupCloseInfFile@4 @256 + SetupCloseLog@0 @257 + SetupCommitFileQueue@16=SetupCommitFileQueueW @258 + SetupCommitFileQueueA@16 @259 + SetupCommitFileQueueW@16 @260 + SetupCopyErrorA@44 @261 + SetupCopyErrorW@44 @262 + SetupCopyOEMInfA@32 @263 + SetupCopyOEMInfW@32 @264 + SetupCreateDiskSpaceListA@12 @265 + SetupCreateDiskSpaceListW@12 @266 + SetupDecompressOrCopyFileA@12 @267 + SetupDecompressOrCopyFileW@12 @268 + SetupDefaultQueueCallback@0 @269 PRIVATE + SetupDefaultQueueCallbackA@16 @270 + SetupDefaultQueueCallbackW@16 @271 + SetupDeleteErrorA@20 @272 + SetupDeleteErrorW@20 @273 + SetupDestroyDiskSpaceList@4 @274 + SetupDiAskForOEMDisk@0 @275 PRIVATE + SetupDiBuildClassInfoList@16 @276 + SetupDiBuildClassInfoListExA@24 @277 + SetupDiBuildClassInfoListExW@24 @278 + SetupDiBuildDriverInfoList@12 @279 + SetupDiCallClassInstaller@12 @280 + SetupDiCancelDriverInfoSearch@0 @281 PRIVATE + SetupDiChangeState@0 @282 PRIVATE + SetupDiClassGuidsFromNameA@16 @283 + SetupDiClassGuidsFromNameExA@24 @284 + SetupDiClassGuidsFromNameExW@24 @285 + SetupDiClassGuidsFromNameW@16 @286 + SetupDiClassNameFromGuidA@16 @287 + SetupDiClassNameFromGuidExA@24 @288 + SetupDiClassNameFromGuidExW@24 @289 + SetupDiClassNameFromGuidW@16 @290 + SetupDiCreateDevRegKeyA@28 @291 + SetupDiCreateDevRegKeyW@28 @292 + SetupDiCreateDeviceInfoA@28 @293 + SetupDiCreateDeviceInfoList@8 @294 + SetupDiCreateDeviceInfoListExA@16 @295 + SetupDiCreateDeviceInfoListExW@16 @296 + SetupDiCreateDeviceInfoW@28 @297 + SetupDiCreateDeviceInterfaceA@24 @298 + SetupDiCreateDeviceInterfaceW@24 @299 + SetupDiCreateDeviceInterfaceRegKeyA@24 @300 + SetupDiCreateDeviceInterfaceRegKeyW@24 @301 + SetupDiDeleteDevRegKey@20 @302 + SetupDiDeleteDeviceInfo@8 @303 + SetupDiDeleteDeviceInterfaceData@8 @304 + SetupDiDeleteDeviceInterfaceRegKey@12 @305 + SetupDiDeleteDeviceRegKey@0 @306 PRIVATE + SetupDiDestroyClassImageList@4 @307 + SetupDiDestroyDeviceInfoList@4 @308 + SetupDiDestroyDriverInfoList@12 @309 + SetupDiDrawMiniIcon@28 @310 + SetupDiEnumDeviceInfo@12 @311 + SetupDiEnumDeviceInterfaces@20 @312 + SetupDiEnumDriverInfoA@20 @313 + SetupDiEnumDriverInfoW@20 @314 + SetupDiGetActualSectionToInstallA@24 @315 + SetupDiGetActualSectionToInstallW@24 @316 + SetupDiGetClassBitmapIndex@8 @317 + SetupDiGetClassDescriptionA@16 @318 + SetupDiGetClassDescriptionExA@24 @319 + SetupDiGetClassDescriptionExW@24 @320 + SetupDiGetClassDescriptionW@16 @321 + SetupDiGetClassDevPropertySheetsA@0 @322 PRIVATE + SetupDiGetClassDevPropertySheetsW@0 @323 PRIVATE + SetupDiGetClassDevsA@16 @324 + SetupDiGetClassDevsExA@28 @325 + SetupDiGetClassDevsExW@28 @326 + SetupDiGetClassDevsW@16 @327 + SetupDiGetClassImageIndex@12 @328 + SetupDiGetClassImageList@4 @329 + SetupDiGetClassImageListExA@0 @330 PRIVATE + SetupDiGetClassImageListExW@0 @331 PRIVATE + SetupDiGetClassInstallParamsA@0 @332 PRIVATE + SetupDiGetClassInstallParamsW@0 @333 PRIVATE + SetupDiGetDeviceInfoListClass@0 @334 PRIVATE + SetupDiGetDeviceInfoListDetailA@8 @335 + SetupDiGetDeviceInfoListDetailW@8 @336 + SetupDiGetDeviceInstallParamsA@12 @337 + SetupDiGetDeviceInstallParamsW@12 @338 + SetupDiGetDeviceInstanceIdA@20 @339 + SetupDiGetDeviceInstanceIdW@20 @340 + SetupDiGetDeviceInterfaceAlias@0 @341 PRIVATE + SetupDiGetDeviceInterfaceDetailA@24 @342 + SetupDiGetDeviceInterfaceDetailW@24 @343 + SetupDiGetDevicePropertyW@32 @344 + SetupDiGetDeviceRegistryPropertyA@28 @345 + SetupDiGetDeviceRegistryPropertyW@28 @346 + SetupDiGetDriverInfoDetailA@0 @347 PRIVATE + SetupDiGetDriverInfoDetailW@0 @348 PRIVATE + SetupDiGetDriverInstallParamsA@0 @349 PRIVATE + SetupDiGetDriverInstallParamsW@0 @350 PRIVATE + SetupDiGetHwProfileFriendlyNameA@0 @351 PRIVATE + SetupDiGetHwProfileFriendlyNameExA@0 @352 PRIVATE + SetupDiGetHwProfileFriendlyNameExW@0 @353 PRIVATE + SetupDiGetHwProfileFriendlyNameW@0 @354 PRIVATE + SetupDiGetHwProfileList@0 @355 PRIVATE + SetupDiGetHwProfileListExA@0 @356 PRIVATE + SetupDiGetHwProfileListExW@0 @357 PRIVATE + SetupDiGetINFClassA@20 @358 + SetupDiGetINFClassW@20 @359 + SetupDiGetSelectedDevice@0 @360 PRIVATE + SetupDiGetSelectedDriverA@0 @361 PRIVATE + SetupDiGetSelectedDriverW@0 @362 PRIVATE + SetupDiGetWizardPage@0 @363 PRIVATE + SetupDiInstallClassA@16 @364 + SetupDiInstallClassExA@0 @365 PRIVATE + SetupDiInstallClassExW@0 @366 PRIVATE + SetupDiInstallClassW@16 @367 + SetupDiInstallDevice@0 @368 PRIVATE + SetupDiInstallDeviceInterfaces@8 @369 + SetupDiInstallDriverFiles@0 @370 PRIVATE + SetupDiLoadClassIcon@12 @371 + SetupDiMoveDuplicateDevice@0 @372 PRIVATE + SetupDiOpenClassRegKey@8 @373 + SetupDiOpenClassRegKeyExA@20 @374 + SetupDiOpenClassRegKeyExW@20 @375 + SetupDiOpenDevRegKey@24 @376 + SetupDiOpenDeviceInfoA@20 @377 + SetupDiOpenDeviceInfoW@20 @378 + SetupDiOpenDeviceInterfaceA@16 @379 + SetupDiOpenDeviceInterfaceRegKey@0 @380 PRIVATE + SetupDiOpenDeviceInterfaceW@16 @381 + SetupDiRegisterCoDeviceInstallers@8 @382 + SetupDiRegisterDeviceInfo@24 @383 + SetupDiRemoveDevice@8 @384 + SetupDiRemoveDeviceInterface@8 @385 + SetupDiSelectBestCompatDrv@8 @386 + SetupDiSelectDevice@0 @387 PRIVATE + SetupDiSelectOEMDrv@0 @388 PRIVATE + SetupDiSetClassInstallParamsA@16 @389 + SetupDiSetClassInstallParamsW@16 @390 + SetupDiSetDeviceInstallParamsA@12 @391 + SetupDiSetDeviceInstallParamsW@12 @392 + SetupDiSetDevicePropertyW@28 @393 + SetupDiSetDeviceRegistryPropertyA@20 @394 + SetupDiSetDeviceRegistryPropertyW@20 @395 + SetupDiSetDriverInstallParamsA@0 @396 PRIVATE + SetupDiSetDriverInstallParamsW@0 @397 PRIVATE + SetupDiSetSelectedDevice@8 @398 + SetupDiSetSelectedDriverA@0 @399 PRIVATE + SetupDiSetSelectedDriverW@0 @400 PRIVATE + SetupDiUnremoveDevice@0 @401 PRIVATE + SetupDuplicateDiskSpaceListA@16 @402 + SetupDuplicateDiskSpaceListW@16 @403 + SetupEnumInfSectionsA@20 @404 + SetupEnumInfSectionsW@20 @405 + SetupFindFirstLineA@16 @406 + SetupFindFirstLineW@16 @407 + SetupFindNextLine@8 @408 + SetupFindNextMatchLineA@12 @409 + SetupFindNextMatchLineW@12 @410 + SetupFreeSourceListA@0 @411 PRIVATE + SetupFreeSourceListW@0 @412 PRIVATE + SetupGetBackupInformationA@0 @413 PRIVATE + SetupGetBackupInformationW@0 @414 PRIVATE + SetupGetBinaryField@20 @415 + SetupGetFieldCount@4 @416 + SetupGetFileCompressionInfoA@20 @417 + SetupGetFileCompressionInfoExA@28 @418 + SetupGetFileCompressionInfoExW@28 @419 + SetupGetFileCompressionInfoW@20 @420 + SetupGetFileQueueCount@12 @421 + SetupGetFileQueueFlags@8 @422 + SetupGetInfFileListA@20 @423 + SetupGetInfFileListW@20 @424 + SetupGetInfInformationA@20 @425 + SetupGetInfInformationW@20 @426 + SetupGetInfSections@0 @427 PRIVATE + SetupGetIntField@12 @428 + SetupGetLineByIndexA@16 @429 + SetupGetLineByIndexW@16 @430 + SetupGetLineCountA@8 @431 + SetupGetLineCountW@8 @432 + SetupGetLineTextA@28 @433 + SetupGetLineTextW@28 @434 + SetupGetMultiSzFieldA@20 @435 + SetupGetMultiSzFieldW@20 @436 + SetupGetNonInteractiveMode@0 @437 + SetupGetSourceFileLocationA@28 @438 + SetupGetSourceFileLocationW@28 @439 + SetupGetSourceFileSizeA@0 @440 PRIVATE + SetupGetSourceFileSizeW@0 @441 PRIVATE + SetupGetSourceInfoA@24 @442 + SetupGetSourceInfoW@24 @443 + SetupGetStringFieldA@20 @444 + SetupGetStringFieldW@20 @445 + SetupGetTargetPathA@24 @446 + SetupGetTargetPathW@24 @447 + SetupInitDefaultQueueCallback@4 @448 + SetupInitDefaultQueueCallbackEx@20 @449 + SetupInitializeFileLogA@8 @450 + SetupInitializeFileLogW@8 @451 + SetupInstallFileA@32 @452 + SetupInstallFileExA@36 @453 + SetupInstallFileExW@36 @454 + SetupInstallFileW@32 @455 + SetupInstallFilesFromInfSectionA@24 @456 + SetupInstallFilesFromInfSectionW@24 @457 + SetupInstallFromInfSectionA@44 @458 + SetupInstallFromInfSectionW@44 @459 + SetupInstallServicesFromInfSectionA@12 @460 + SetupInstallServicesFromInfSectionExA@0 @461 PRIVATE + SetupInstallServicesFromInfSectionExW@0 @462 PRIVATE + SetupInstallServicesFromInfSectionW@12 @463 + SetupIterateCabinetA@16 @464 + SetupIterateCabinetW@16 @465 + SetupLogErrorA@8 @466 + SetupLogErrorW@8 @467 + SetupLogFileA@36 @468 + SetupLogFileW@36 @469 + SetupOpenAppendInfFileA@12 @470 + SetupOpenAppendInfFileW@12 @471 + SetupOpenFileQueue@0 @472 + SetupOpenInfFileA@16 @473 + SetupOpenInfFileW@16 @474 + SetupOpenLog@4 @475 + SetupOpenMasterInf@0 @476 + SetupPromptForDiskA@40 @477 + SetupPromptForDiskW@40 @478 + SetupPromptReboot@12 @479 + SetupQueryDrivesInDiskSpaceListA@16 @480 + SetupQueryDrivesInDiskSpaceListW@16 @481 + SetupQueryFileLogA@0 @482 PRIVATE + SetupQueryFileLogW@0 @483 PRIVATE + SetupQueryInfFileInformationA@20 @484 + SetupQueryInfFileInformationW@20 @485 + SetupQueryInfOriginalFileInformationA@16 @486 + SetupQueryInfOriginalFileInformationW@16 @487 + SetupQueryInfVersionInformationA@0 @488 PRIVATE + SetupQueryInfVersionInformationW@0 @489 PRIVATE + SetupQuerySourceListA@0 @490 PRIVATE + SetupQuerySourceListW@0 @491 PRIVATE + SetupQuerySpaceRequiredOnDriveA@20 @492 + SetupQuerySpaceRequiredOnDriveW@20 @493 + SetupQueueCopyA@36 @494 + SetupQueueCopyIndirectA@4 @495 + SetupQueueCopyIndirectW@4 @496 + SetupQueueCopySectionA@24 @497 + SetupQueueCopySectionW@24 @498 + SetupQueueCopyW@36 @499 + SetupQueueDefaultCopyA@24 @500 + SetupQueueDefaultCopyW@24 @501 + SetupQueueDeleteA@12 @502 + SetupQueueDeleteSectionA@16 @503 + SetupQueueDeleteSectionW@16 @504 + SetupQueueDeleteW@12 @505 + SetupQueueRenameA@20 @506 + SetupQueueRenameSectionA@16 @507 + SetupQueueRenameSectionW@16 @508 + SetupQueueRenameW@20 @509 + SetupRemoveFileLogEntryA@0 @510 PRIVATE + SetupRemoveFileLogEntryW@0 @511 PRIVATE + SetupRemoveFromDiskSpaceListA@0 @512 PRIVATE + SetupRemoveFromDiskSpaceListW@0 @513 PRIVATE + SetupRemoveFromSourceListA@0 @514 PRIVATE + SetupRemoveFromSourceListW@0 @515 PRIVATE + SetupRemoveInstallSectionFromDiskSpaceListA@0 @516 PRIVATE + SetupRemoveInstallSectionFromDiskSpaceListW@0 @517 PRIVATE + SetupRemoveSectionFromDiskSpaceListA@0 @518 PRIVATE + SetupRemoveSectionFromDiskSpaceListW@0 @519 PRIVATE + SetupRenameErrorA@24 @520 + SetupRenameErrorW@24 @521 + SetupScanFileQueue@0 @522 PRIVATE + SetupScanFileQueueA@24 @523 + SetupScanFileQueueW@24 @524 + SetupSetDirectoryIdA@12 @525 + SetupSetDirectoryIdExA@0 @526 PRIVATE + SetupSetDirectoryIdExW@0 @527 PRIVATE + SetupSetDirectoryIdW@12 @528 + SetupSetFileQueueAlternatePlatformA@12 @529 + SetupSetFileQueueAlternatePlatformW@12 @530 + SetupSetFileQueueFlags@12 @531 + SetupSetNonInteractiveMode@4 @532 + SetupSetPlatformPathOverrideA@0 @533 PRIVATE + SetupSetPlatformPathOverrideW@0 @534 PRIVATE + SetupSetSourceListA@12 @535 + SetupSetSourceListW@12 @536 + SetupTermDefaultQueueCallback@4 @537 + SetupTerminateFileLog@4 @538 + SetupUninstallOEMInfA@12 @539 + SetupUninstallOEMInfW@12 @540 + ShouldDeviceBeExcluded@0 @541 PRIVATE + StampFileSecurity@8 @542 + StringTableAddString@12 @543 + StringTableAddStringEx@20 @544 + StringTableDestroy@4 @545 + StringTableDuplicate@4 @546 + StringTableEnum@0 @547 PRIVATE + StringTableGetExtraData@16 @548 + StringTableInitialize@0 @549 + StringTableInitializeEx@8 @550 + StringTableLookUpString@12 @551 + StringTableLookUpStringEx@20 @552 + StringTableSetExtraData@16 @553 + StringTableStringFromId@8 @554 + StringTableStringFromIdEx@16 @555 + StringTableTrim@4 @556 + TakeOwnershipOfFile@4 @557 + UnicodeToMultiByte@8 @558 + UnmapAndCloseFile@12 @559 + VerifyCatalogFile@0 @560 PRIVATE + VerifyFile@0 @561 PRIVATE + pSetupAccessRunOnceNodeList@0 @562 PRIVATE + pSetupAddMiniIconToList@0 @563 PRIVATE + pSetupAddTagToGroupOrderListEntry@0 @564 PRIVATE + pSetupAppendStringToMultiSz@0 @565 PRIVATE + pSetupDestroyRunOnceNodeList@0 @566 PRIVATE + pSetupDirectoryIdToPath@0 @567 PRIVATE + pSetupFree@4=MyFree @568 + pSetupGetField@8 @569 + pSetupGetGlobalFlags@0 @570 + pSetupGetOsLoaderDriveAndPath@0 @571 PRIVATE + pSetupGetQueueFlags@4 @572 + pSetupGetVersionDatum@0 @573 PRIVATE + pSetupGuidFromString@0 @574 PRIVATE + pSetupIsGuidNull@0 @575 PRIVATE + pSetupInstallCatalog@12 @576 + pSetupIsUserAdmin@0=IsUserAdmin @577 + pSetupMakeSurePathExists@0 @578 PRIVATE + pSetupMalloc@4=MyMalloc @579 + pSetupRealloc@8=MyRealloc @580 + pSetupSetGlobalFlags@4 @581 + pSetupSetQueueFlags@8 @582 + pSetupSetSystemSourceFlags@0 @583 PRIVATE + pSetupStringFromGuid@0 @584 PRIVATE + pSetupStringTableAddString@12=StringTableAddString @585 + pSetupStringTableAddStringEx@20=StringTableAddStringEx @586 + pSetupStringTableDestroy@4=StringTableDestroy @587 + pSetupStringTableDuplicate@4=StringTableDuplicate @588 + pSetupStringTableEnum@0 @589 PRIVATE + pSetupStringTableGetExtraData@16=StringTableGetExtraData @590 + pSetupStringTableInitialize@0=StringTableInitialize @591 + pSetupStringTableInitializeEx@8=StringTableInitializeEx @592 + pSetupStringTableLookUpString@12=StringTableLookUpString @593 + pSetupStringTableLookUpStringEx@20=StringTableLookUpStringEx @594 + pSetupStringTableSetExtraData@16=StringTableSetExtraData @595 + pSetupVerifyCatalogFile@0 @596 PRIVATE + pSetupVerifyQueuedCatalogs@0 @597 PRIVATE diff --git a/lib/wine/libsfc.def b/lib/wine/libsfc.def new file mode 100644 index 0000000..213efe1 --- /dev/null +++ b/lib/wine/libsfc.def @@ -0,0 +1,14 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/sfc/sfc.spec; do not edit! + +LIBRARY sfc.dll + +EXPORTS + SRSetRestorePoint@8=sfc_os.SRSetRestorePointA @10 + SRSetRestorePointA@8=sfc_os.SRSetRestorePointA @11 + SRSetRestorePointW@8=sfc_os.SRSetRestorePointW @12 + SfcGetNextProtectedFile@8=sfc_os.SfcGetNextProtectedFile @13 + SfcIsFileProtected@8=sfc_os.SfcIsFileProtected @14 + SfcIsKeyProtected@12=sfc_os.SfcIsKeyProtected @15 + SfcWLEventLogoff@0 @16 PRIVATE + SfcWLEventLogon@0 @17 PRIVATE + SfpVerifyFile@0 @18 PRIVATE diff --git a/lib/wine/libsfc_os.def b/lib/wine/libsfc_os.def new file mode 100644 index 0000000..ac6e919 --- /dev/null +++ b/lib/wine/libsfc_os.def @@ -0,0 +1,23 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/sfc_os/sfc_os.spec; do not edit! + +LIBRARY sfc_os.dll + +EXPORTS + BeginFileMapEnumeration@0 @1 PRIVATE + CloseFileMapEnumeration@0 @2 PRIVATE + GetNextFileMapContent@0 @3 PRIVATE + SRSetRestorePointA@8 @4 + SRSetRestorePointW@8 @5 + SfcClose@0 @6 PRIVATE + SfcConnectToServer@4 @7 + SfcFileException@0 @8 PRIVATE + SfcGetNextProtectedFile@8 @9 + SfcInitProt@0 @10 PRIVATE + SfcInitiateScan@0 @11 PRIVATE + SfcInstallProtectedFiles@0 @12 PRIVATE + SfcIsFileProtected@8 @13 + SfcIsKeyProtected@12 @14 + SfcTerminateWatcherThread@0 @15 PRIVATE + SfpDeleteCatalog@0 @16 PRIVATE + SfpInstallCatalog@0 @17 PRIVATE + SfpVerifyFile@0 @18 PRIVATE diff --git a/lib/wine/libshdocvw.def b/lib/wine/libshdocvw.def new file mode 100644 index 0000000..3804768 --- /dev/null +++ b/lib/wine/libshdocvw.def @@ -0,0 +1,129 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/shdocvw/shdocvw.spec; do not edit! + +LIBRARY shdocvw.dll + +EXPORTS + IEWinMain@8 @101 NONAME + CreateShortcutInDirA@0 @102 NONAME PRIVATE + CreateShortcutInDirW@0 @103 NONAME PRIVATE + WhichPlatformFORWARD@0 @104 NONAME + CreateShortcutInDirEx@0 @105 NONAME PRIVATE + HlinkFindFrame@0 @106 PRIVATE + SetShellOfflineState@0 @107 PRIVATE + AddUrlToFavorites@0 @108 PRIVATE + WinList_Init@0 @110 NONAME + WinList_Terminate@0 @111 NONAME PRIVATE + CreateFromDesktop@0 @115 NONAME PRIVATE + DDECreatePostNotify@0 @116 NONAME PRIVATE + DDEHandleViewFolderNotify@0 @117 NONAME PRIVATE + ShellDDEInit@4 @118 NONAME + SHCreateDesktop@0 @119 NONAME PRIVATE + SHDesktopMessageLoop@0 @120 NONAME PRIVATE + StopWatchModeFORWARD@0 @121 NONAME + StopWatchFlushFORWARD@0 @122 NONAME + StopWatchAFORWARD@20 @123 NONAME + StopWatchWFORWARD@20 @124 NONAME + RunInstallUninstallStubs@0 @125 NONAME + RunInstallUninstallStubs2@4 @130 NONAME + SHCreateSplashScreen@0 @131 NONAME PRIVATE + IsFileUrl@0 @135 NONAME PRIVATE + IsFileUrlW@0 @136 NONAME PRIVATE + PathIsFilePath@0 @137 NONAME PRIVATE + URLSubLoadString@0 @138 NONAME PRIVATE + OpenPidlOrderStream@0 @139 NONAME PRIVATE + DragDrop@0 @140 NONAME PRIVATE + IEInvalidateImageList@0 @141 NONAME PRIVATE + IEMapPIDLToSystemImageListIndex@0 @142 NONAME PRIVATE + ILIsWeb@0 @143 NONAME PRIVATE + IEGetAttributesOf@0 @145 NONAME PRIVATE + IEBindToObject@0 @146 NONAME PRIVATE + IEGetNameAndFlags@0 @147 NONAME PRIVATE + IEGetDisplayName@0 @148 NONAME PRIVATE + IEBindToObjectEx@0 @149 NONAME PRIVATE + _GetStdLocation@0 @150 NONAME PRIVATE + URLSubRegQueryA@24 @151 NONAME + CShellUIHelper_CreateInstance2@0 @152 NONAME PRIVATE + IsURLChild@0 @153 NONAME PRIVATE + SHRestricted2A@12 @158 NONAME + SHRestricted2W@12 @159 NONAME + SHIsRestricted2W@0 @160 NONAME PRIVATE + CDDEAuto_Navigate@0 @162 NONAME PRIVATE + SHAddSubscribeFavorite@0 @163 PRIVATE + ResetProfileSharing@4 @164 NONAME + URLSubstitution@0 @165 NONAME PRIVATE + IsIEDefaultBrowser@0 @167 NONAME PRIVATE + ParseURLFromOutsideSourceA@16 @169 NONAME + ParseURLFromOutsideSourceW@16 @170 NONAME + _DeletePidlDPA@0 @171 NONAME PRIVATE + IURLQualify@0 @172 NONAME PRIVATE + SHIsRestricted@0 @173 NONAME PRIVATE + SHIsGlobalOffline@0 @174 NONAME PRIVATE + DetectAndFixAssociations@0 @175 NONAME PRIVATE + EnsureWebViewRegSettings@0 @176 NONAME PRIVATE + WinList_NotifyNewLocation@0 @177 NONAME PRIVATE + WinList_FindFolderWindow@0 @178 NONAME PRIVATE + WinList_GetShellWindows@0 @179 NONAME PRIVATE + WinList_RegisterPending@0 @180 NONAME PRIVATE + WinList_Revoke@0 @181 NONAME PRIVATE + SHMapNbspToSp@0 @183 NONAME PRIVATE + FireEvent_Quit@0 @185 NONAME PRIVATE + SHDGetPageLocation@0 @187 NONAME PRIVATE + SHIEErrorMsgBox@0 @188 NONAME PRIVATE + SHRunIndirectRegClientCommandForward@0 @190 NONAME PRIVATE + SHIsRegisteredClient@0 @191 NONAME PRIVATE + SHGetHistoryPIDL@0 @192 NONAME PRIVATE + IECleanUpAutomationObject@0 @194 NONAME PRIVATE + IEOnFirstBrowserCreation@0 @195 NONAME PRIVATE + IEDDE_WindowDestroyed@0 @196 NONAME PRIVATE + IEDDE_NewWindow@0 @197 NONAME PRIVATE + IsErrorUrl@0 @198 NONAME PRIVATE + SHGetViewStream@0 @200 NONAME PRIVATE + NavToUrlUsingIEA@0 @203 NONAME PRIVATE + NavToUrlUsingIEW@0 @204 NONAME PRIVATE + SearchForElementInHead@0 @208 NONAME PRIVATE + JITCoCreateInstance@0 @209 NONAME PRIVATE + UrlHitsNetW@0 @210 NONAME PRIVATE + ClearAutoSuggestForForms@0 @211 NONAME PRIVATE + GetLinkInfo@0 @212 NONAME PRIVATE + UseCustomInternetSearch@0 @213 NONAME PRIVATE + GetSearchAssistantUrlW@0 @214 NONAME PRIVATE + GetSearchAssistantUrlA@0 @215 NONAME PRIVATE + GetDefaultInternetSearchUrlW@0 @216 NONAME PRIVATE + GetDefaultInternetSearchUrlA@0 @217 NONAME PRIVATE + IEParseDisplayNameWithBCW@16 @218 NONAME + IEILIsEqual@0 @219 NONAME PRIVATE + IECreateFromPathCPWithBCA@0 @221 NONAME PRIVATE + IECreateFromPathCPWithBCW@0 @222 NONAME PRIVATE + ResetWebSettings@0 @223 NONAME PRIVATE + IsResetWebSettingsRequired@0 @224 NONAME PRIVATE + PrepareURLForDisplayUTF8W@0 @225 NONAME PRIVATE + IEIsLinkSafe@0 @226 NONAME PRIVATE + SHUseClassicToolbarGlyphs@0 @227 NONAME PRIVATE + SafeOpenPromptForShellExec@0 @228 NONAME PRIVATE + SafeOpenPromptForPackager@0 @229 NONAME PRIVATE + DllCanUnloadNow@0 @109 PRIVATE + DllGetClassObject@12 @112 PRIVATE + DllGetVersion@4 @113 PRIVATE + DllInstall@8 @114 PRIVATE + DllRegisterServer@0 @126 PRIVATE + DllRegisterWindowClasses@0 @127 PRIVATE + DllUnregisterServer@0 @128 PRIVATE + DoAddToFavDlg@0 @129 PRIVATE + DoAddToFavDlgW@0 @132 PRIVATE + DoFileDownload@4 @133 + DoFileDownloadEx@0 @134 PRIVATE + DoOrganizeFavDlg@8 @144 + DoOrganizeFavDlgW@8 @154 + DoPrivacyDlg@0 @155 PRIVATE + HlinkFrameNavigate@0 @156 PRIVATE + HlinkFrameNavigateNHL@0 @157 PRIVATE + IEAboutBox@0 @166 PRIVATE + IEWriteErrorLog@0 @168 PRIVATE + ImportPrivacySettings@12 @182 + InstallReg_RunDLL@16 @184 + OpenURL@16=ieframe.OpenURL @186 + SHGetIDispatchForFolder@0 @193 PRIVATE + SetQueryNetSessionCount@4 @201 + SoftwareUpdateMessageBox@0 @202 PRIVATE + URLQualifyA@0 @205 PRIVATE + URLQualifyW@0 @206 PRIVATE diff --git a/lib/wine/libshell32.def b/lib/wine/libshell32.def new file mode 100644 index 0000000..565d62b --- /dev/null +++ b/lib/wine/libshell32.def @@ -0,0 +1,467 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/shell32/shell32.spec; do not edit! + +LIBRARY shell32.dll + +EXPORTS + SHChangeNotifyRegister@24 @2 NONAME + SHDefExtractIconA@24 @3 + SHChangeNotifyDeregister@4 @4 NONAME + SHChangeNotifyUpdateEntryList@16 @5 NONAME + SHDefExtractIconW@24 @6 + PifMgr_OpenProperties@0 @9 NONAME PRIVATE + PifMgr_GetProperties@0 @10 NONAME PRIVATE + PifMgr_SetProperties@0 @11 NONAME PRIVATE + PifMgr_CloseProperties@0 @13 NONAME PRIVATE + ILGetDisplayName@8 @15 NONAME + ILFindLastID@4 @16 NONAME + ILRemoveLastID@4 @17 NONAME + ILClone@4 @18 NONAME + ILCloneFirst@4 @19 NONAME + ILGlobalClone@4 @20 NONAME + ILIsEqual@8 @21 NONAME + ILIsParent@12 @23 NONAME + ILFindChild@8 @24 NONAME + ILCombine@8 @25 NONAME + ILLoadFromStream@8 @26 NONAME + ILSaveToStream@8 @27 NONAME + SHILCreateFromPath@12=SHILCreateFromPathAW @28 + PathIsRoot@4=PathIsRootAW @29 NONAME + PathBuildRoot@8=PathBuildRootAW @30 NONAME + PathFindExtension@4=PathFindExtensionAW @31 NONAME + PathAddBackslash@4=PathAddBackslashAW @32 NONAME + PathRemoveBlanks@4=PathRemoveBlanksAW @33 NONAME + PathFindFileName@4=PathFindFileNameAW @34 NONAME + PathRemoveFileSpec@4=PathRemoveFileSpecAW @35 NONAME + PathAppend@8=PathAppendAW @36 NONAME + PathCombine@12=PathCombineAW @37 NONAME + PathStripPath@4=PathStripPathAW @38 NONAME + PathIsUNC@4=PathIsUNCAW @39 NONAME + PathIsRelative@4=PathIsRelativeAW @40 NONAME + IsLFNDriveA@4 @41 NONAME + IsLFNDriveW@4 @42 NONAME + PathIsExe@4=PathIsExeAW @43 NONAME + PathFileExists@4=PathFileExistsAW @45 NONAME + PathMatchSpec@8=PathMatchSpecAW @46 NONAME + PathMakeUniqueName@20=PathMakeUniqueNameAW @47 NONAME + PathSetDlgItemPath@12=PathSetDlgItemPathAW @48 NONAME + PathQualify@4=PathQualifyAW @49 NONAME + PathStripToRoot@4=PathStripToRootAW @50 NONAME + PathResolve@12=PathResolveAW @51 + PathGetArgs@4=PathGetArgsAW @52 NONAME + DoEnvironmentSubst@8=DoEnvironmentSubstAW @53 + LogoffWindowsDialog@0 @54 PRIVATE + PathQuoteSpaces@4=PathQuoteSpacesAW @55 NONAME + PathUnquoteSpaces@4=PathUnquoteSpacesAW @56 NONAME + PathGetDriveNumber@4=PathGetDriveNumberAW @57 NONAME + ParseField@16=ParseFieldAW @58 NONAME + RestartDialog@12 @59 NONAME + ExitWindowsDialog@4 @60 NONAME + RunFileDlg@24=RunFileDlgAW @61 NONAME + PickIconDlg@16 @62 NONAME + GetFileNameFromBrowse@28=GetFileNameFromBrowseAW @63 NONAME + DriveType@4 @64 NONAME + InvalidateDriveType@4 @65 NONAME + IsNetDrive@4 @66 NONAME + Shell_MergeMenus@24 @67 NONAME + SHGetSetSettings@12 @68 NONAME + SHGetNetResource@0 @69 NONAME PRIVATE + SHCreateDefClassObject@20 @70 NONAME + Shell_GetImageLists@8 @71 NONAME + Shell_GetCachedImageIndex@12=Shell_GetCachedImageIndexAW @72 NONAME + SHShellFolderView_Message@12 @73 NONAME + SHCreateStdEnumFmtEtc@12 @74 NONAME + PathYetAnotherMakeUniqueName@16 @75 NONAME + DragQueryInfo@0 @76 PRIVATE + SHMapPIDLToSystemImageListIndex@12 @77 NONAME + OleStrToStrN@16=OleStrToStrNAW @78 NONAME + StrToOleStrN@16=StrToOleStrNAW @79 NONAME + CIDLData_CreateFromIDArray@16 @83 NONAME + SHIsBadInterfacePtr@0 @84 PRIVATE + OpenRegStream@16=shlwapi.SHOpenRegStreamA @85 NONAME + SHRegisterDragDrop@8 @86 NONAME + SHRevokeDragDrop@4 @87 NONAME + SHDoDragDrop@20 @88 NONAME + SHCloneSpecialIDList@12 @89 NONAME + SHFindFiles@8 @90 NONAME + SHFindComputer@0 @91 PRIVATE + PathGetShortPath@4=PathGetShortPathAW @92 NONAME + Win32CreateDirectory@8=Win32CreateDirectoryAW @93 NONAME + Win32RemoveDirectory@4=Win32RemoveDirectoryAW @94 NONAME + SHLogILFromFSIL@4 @95 NONAME + StrRetToStrN@16=StrRetToStrNAW @96 NONAME + SHWaitForFileToOpen@12 @97 NONAME + SHGetRealIDL@12 @98 NONAME + SetAppStartingCursor@8 @99 NONAME + SHRestricted@4 @100 NONAME + SHCoCreateInstance@20 @102 NONAME + SignalFileOpen@4 @103 NONAME + FileMenu_DeleteAllItems@4 @104 NONAME + FileMenu_DrawItem@8 @105 NONAME + FileMenu_FindSubMenuByPidl@8 @106 NONAME + FileMenu_GetLastSelectedItemPidls@12 @107 NONAME + FileMenu_HandleMenuChar@8 @108 NONAME + FileMenu_InitMenuPopup@4 @109 NONAME + FileMenu_InsertUsingPidl@24 @110 NONAME + FileMenu_Invalidate@4 @111 NONAME + FileMenu_MeasureItem@8 @112 NONAME + FileMenu_ReplaceUsingPidl@20 @113 NONAME + FileMenu_Create@20 @114 NONAME + FileMenu_AppendItem@24=FileMenu_AppendItemAW @115 NONAME + FileMenu_TrackPopupMenuEx@24 @116 NONAME + FileMenu_DeleteItemByCmd@8 @117 NONAME + FileMenu_Destroy@4 @118 NONAME + IsLFNDrive@4=IsLFNDriveAW @119 NONAME + FileMenu_AbortInitMenu@0 @120 NONAME + SHFlushClipboard@0 @121 NONAME + RunDLL_CallEntry16@20 @122 NONAME + SHFreeUnusedLibraries@0 @123 NONAME + FileMenu_AppendFilesForPidl@12 @124 NONAME + FileMenu_AddFilesForPidl@28 @125 NONAME + SHOutOfMemoryMessageBox@12 @126 NONAME + SHWinHelp@16 @127 NONAME + SHDllGetClassObject@12=DllGetClassObject @128 NONAME + DAD_AutoScroll@12 @129 NONAME + DAD_DragEnter@4 @130 NONAME + DAD_DragEnterEx@12 @131 NONAME + DAD_DragLeave@0 @132 NONAME + DAD_DragMove@8 @134 NONAME + DAD_SetDragImage@8 @136 NONAME + DAD_ShowDragImage@4 @137 NONAME + Desktop_UpdateBriefcaseOnEvent@0 @139 PRIVATE + FileMenu_DeleteItemByIndex@8 @140 NONAME + FileMenu_DeleteItemByFirstID@8 @141 NONAME + FileMenu_DeleteSeparator@4 @142 NONAME + FileMenu_EnableItemByCmd@12 @143 NONAME + FileMenu_GetItemExtent@8 @144 NONAME + PathFindOnPath@8=PathFindOnPathAW @145 NONAME + RLBuildListOfPaths@0 @146 NONAME + SHCLSIDFromString@8=SHCLSIDFromStringAW @147 NONAME + SHMapIDListToImageListIndexAsync@36 @148 NONAME + SHFind_InitMenuPopup@16 @149 NONAME + SHLoadOLE@4 @151 NONAME + ILGetSize@4 @152 NONAME + ILGetNext@4 @153 NONAME + ILAppendID@12 @154 NONAME + ILFree@4 @155 NONAME + ILGlobalFree@4 @156 NONAME + ILCreateFromPath@4=ILCreateFromPathAW @157 NONAME + PathGetExtension@12=PathGetExtensionAW @158 NONAME + PathIsDirectory@4=PathIsDirectoryAW @159 NONAME + SHNetConnectionDialog@0 @160 PRIVATE + SHRunControlPanel@8 @161 NONAME + SHSimpleIDListFromPath@4=SHSimpleIDListFromPathAW @162 NONAME + StrToOleStr@8=StrToOleStrAW @163 NONAME + Win32DeleteFile@4=Win32DeleteFileAW @164 NONAME + SHCreateDirectory@8 @165 NONAME + CallCPLEntry16@24 @166 NONAME + SHAddFromPropSheetExtArray@12 @167 NONAME + SHCreatePropSheetExtArray@12 @168 NONAME + SHDestroyPropSheetExtArray@4 @169 NONAME + SHReplaceFromPropSheetExtArray@16 @170 NONAME + PathCleanupSpec@8 @171 NONAME + SHCreateLinks@20 @172 NONAME + SHValidateUNC@12 @173 NONAME + SHCreateShellFolderViewEx@8 @174 NONAME + SHGetSpecialFolderPath@16=SHGetSpecialFolderPathAW @175 NONAME + SHSetInstanceExplorer@4=shcore.SetProcessReference @176 NONAME + DAD_SetDragImageFromListView@0 @177 PRIVATE + SHObjectProperties@16 @178 NONAME + SHGetNewLinkInfoA@20 @179 NONAME + SHGetNewLinkInfoW@20 @180 NONAME + RegisterShellHook@8 @181 NONAME + ShellMessageBoxW @182 NONAME + ShellMessageBoxA @183 NONAME + ArrangeWindows@20 @184 NONAME + SHHandleDiskFull@0 @185 PRIVATE + ILGetDisplayNameEx@16 @186 NONAME + ILGetPseudoNameW@0 @187 PRIVATE + ShellDDEInit@4 @188 NONAME + ILCreateFromPathA@4 @189 NONAME + ILCreateFromPathW@4 @190 NONAME + SHUpdateImageA@16 @191 NONAME + SHUpdateImageW@16 @192 NONAME + SHHandleUpdateImage@4 @193 NONAME + SHCreatePropSheetExtArrayEx@16 @194 NONAME + SHFree@4 @195 NONAME + SHAlloc@4 @196 NONAME + SHGlobalDefect@0 @197 PRIVATE + SHAbortInvokeCommand@0 @198 NONAME + SHGetFileIcon@0 @199 PRIVATE + SHLocalAlloc@0 @200 PRIVATE + SHLocalFree@0 @201 PRIVATE + SHLocalReAlloc@0 @202 PRIVATE + AddCommasW@0 @203 PRIVATE + ShortSizeFormatW@0 @204 PRIVATE + Printer_LoadIconsW@12 @205 + Link_AddExtraDataSection@0 @206 PRIVATE + Link_ReadExtraDataSection@0 @207 PRIVATE + Link_RemoveExtraDataSection@0 @208 PRIVATE + Int64ToString@0 @209 PRIVATE + LargeIntegerToString@0 @210 PRIVATE + Printers_GetPidl@0 @211 PRIVATE + Printers_AddPrinterPropPages@0 @212 PRIVATE + Printers_RegisterWindowW@16 @213 + Printers_UnregisterWindow@8 @214 + SHStartNetConnectionDialog@12 @215 NONAME + SHInitRestricted@8 @244 NONAME + PathParseIconLocation@4=PathParseIconLocationAW @249 NONAME + PathRemoveExtension@4=PathRemoveExtensionAW @250 NONAME + PathRemoveArgs@4=PathRemoveArgsAW @251 NONAME + SHCreateShellFolderView@8 @256 + LinkWindow_RegisterClass@0 @258 NONAME + LinkWindow_UnregisterClass@0 @259 NONAME + SHRegCloseKey@4 @505 + SHRegOpenKeyA@12 @506 + SHRegOpenKeyW@12 @507 + SHRegQueryValueA@16 @508 + SHRegQueryValueExA@24 @509 + SHRegQueryValueW@16 @510 + SHRegQueryValueExW@24 @511 + SHRegDeleteKeyW@8 @512 + SHAllocShared@12 @520 NONAME + SHLockShared@8 @521 NONAME + SHUnlockShared@4 @522 NONAME + SHFreeShared@8 @523 NONAME + RealDriveType@8 @524 NONAME + RealDriveTypeFlags@0 @525 PRIVATE + SHFlushSFCache@0 @526 + NTSHChangeNotifyRegister@24 @640 NONAME + NTSHChangeNotifyDeregister@4 @641 NONAME + SHChangeNotifyReceive@0 @643 PRIVATE + SHChangeNotification_Lock@16 @644 NONAME + SHChangeNotification_Unlock@4 @645 NONAME + SHChangeRegistrationReceive@0 @646 PRIVATE + ReceiveAddToRecentDocs@0 @647 PRIVATE + SHWaitOp_Operate@0 @648 PRIVATE + PathIsSameRoot@8=PathIsSameRootAW @650 NONAME + WriteCabinetState@4 @652 NONAME + PathProcessCommand@16=PathProcessCommandAW @653 NONAME + ReadCabinetState@8 @654 + FileIconInit@4 @660 NONAME + IsUserAnAdmin@0 @680 + SHPropStgCreate@32 @685 + SHPropStgReadMultiple@20 @688 + SHPropStgWriteMultiple@24 @689 + CDefFolderMenu_Create2@36 @701 + GUIDFromStringW@8 @704 NONAME + SHGetSetFolderCustomSettings@12 @709 + PathIsTemporaryW@4 @714 NONAME + SHCreateSessionKey@8 @723 NONAME + SHGetImageList@12 @727 + RestartDialogEx@16 @730 NONAME + SHCreateFileExtractIconW@16 @743 + SHLimitInputEdit@8 @747 + FOOBAR1217@0 @1217 PRIVATE + CheckEscapesA@8 @7 + CheckEscapesW@8 @8 + CommandLineToArgvW@8=shcore.CommandLineToArgvW @12 + Control_FillCache_RunDLL@16=Control_FillCache_RunDLLA @14 + Control_FillCache_RunDLLA@16 @22 + Control_FillCache_RunDLLW@16 @44 + Control_RunDLL@16=Control_RunDLLA @80 + Control_RunDLLA@16 @81 + Control_RunDLLAsUserW@0 @82 PRIVATE + Control_RunDLLW@16 @101 + DllCanUnloadNow@0 @133 PRIVATE + DllGetClassObject@12 @135 PRIVATE + DllGetVersion@4 @138 PRIVATE + DllInstall@8 @150 PRIVATE + DllRegisterServer@0 @216 PRIVATE + DllUnregisterServer@0 @217 PRIVATE + DoEnvironmentSubstA@8 @218 + DoEnvironmentSubstW@8 @219 + DragAcceptFiles@8 @220 + DragFinish@4 @221 + DragQueryFile@16=DragQueryFileA @222 + DragQueryFileA@16 @223 + DragQueryFileAorW@0 @224 PRIVATE + DragQueryFileW@16 @225 + DragQueryPoint@8 @226 + DuplicateIcon@8 @227 + ExtractAssociatedIconA@12 @228 + ExtractAssociatedIconExA@16 @229 + ExtractAssociatedIconExW@16 @230 + ExtractAssociatedIconW@12 @231 + ExtractIconA@12 @232 + ExtractIconEx@20=ExtractIconExA @233 + ExtractIconExA@20 @234 + ExtractIconExW@20 @235 + ExtractIconResInfoA@0 @236 PRIVATE + ExtractIconResInfoW@0 @237 PRIVATE + ExtractIconW@12 @238 + ExtractVersionResource16W@8 @239 + FindExeDlgProc@0 @240 PRIVATE + FindExecutableA@12 @241 + FindExecutableW@12 @242 + FixupOptionalComponents@0 @245 PRIVATE + FreeIconList@4 @246 + GetCurrentProcessExplicitAppUserModelID@4=shcore.GetCurrentProcessExplicitAppUserModelID @247 + InitNetworkAddressControl@0 @248 + InternalExtractIconListA@0 @252 PRIVATE + InternalExtractIconListW@0 @253 PRIVATE + OCInstall@0 @254 PRIVATE + OpenAs_RunDLL@16=OpenAs_RunDLLA @255 + OpenAs_RunDLLA@16 @257 + OpenAs_RunDLLW@16 @260 + PrintersGetCommand_RunDLL@0 @261 PRIVATE + PrintersGetCommand_RunDLLA@0 @262 PRIVATE + PrintersGetCommand_RunDLLW@0 @263 PRIVATE + RealShellExecuteA@0 @264 PRIVATE + RealShellExecuteExA@0 @265 PRIVATE + RealShellExecuteExW@0 @266 PRIVATE + RealShellExecuteW@0 @267 PRIVATE + RegenerateUserEnvironment@8 @268 + SetCurrentProcessExplicitAppUserModelID@4=shcore.SetCurrentProcessExplicitAppUserModelID @269 + SHAddToRecentDocs@8 @270 + SHAppBarMessage@8 @271 + SHAssocEnumHandlers@12 @272 + SHBindToParent@16 @273 + SHBrowseForFolder@4=SHBrowseForFolderA @274 + SHBrowseForFolderA@4 @275 + SHBrowseForFolderW@4 @276 + SHChangeNotify@16 @277 + SHChangeNotifySuspendResume@0 @278 PRIVATE + SHCreateQueryCancelAutoPlayMoniker@4 @279 + SHCreateDefaultContextMenu@12 @280 + SHCreateDirectoryExA@12 @281 + SHCreateDirectoryExW@12 @282 + SHCreateItemFromIDList@12 @283 + SHCreateItemFromParsingName@16 @284 + SHCreateItemInKnownFolder@20 @285 + SHCreateItemFromRelativeName@20 @286 + SHCreateProcessAsUserW@0 @287 PRIVATE + SHCreateShellItem@16 @288 + SHCreateShellItemArray@20 @289 + SHCreateShellItemArrayFromDataObject@12 @290 + SHCreateShellItemArrayFromShellItem@12 @291 + SHCreateShellItemArrayFromIDLists@12 @292 + SHEmptyRecycleBinA@12 @293 + SHEmptyRecycleBinW@12 @294 + SHEnumerateUnreadMailAccountsW@16 @295 + SHExtractIconsW@32=user32.PrivateExtractIconsW @296 + SHFileOperation@4=SHFileOperationA @297 + SHFileOperationA@4 @298 + SHFileOperationW@4 @299 + SHFormatDrive@16 @300 + SHFreeNameMappings@4 @301 + SHGetDataFromIDListA@20 @302 + SHGetDataFromIDListW@20 @303 + SHGetDesktopFolder@4 @304 + SHGetDiskFreeSpaceA@16=kernel32.GetDiskFreeSpaceExA @305 + SHGetDiskFreeSpaceExA@16=kernel32.GetDiskFreeSpaceExA @306 + SHGetDiskFreeSpaceExW@16=kernel32.GetDiskFreeSpaceExW @307 + SHGetFileInfo@20=SHGetFileInfoA @308 + SHGetFileInfoA@20 @309 + SHGetFileInfoW@20 @310 + SHGetFolderLocation@20 @311 + SHGetFolderPathA@20 @312 + SHGetFolderPathEx@20 @313 + SHGetFolderPathAndSubDirA@24 @314 + SHGetFolderPathAndSubDirW@24 @315 + SHGetFolderPathW@20 @316 + SHGetFreeDiskSpace@0 @317 PRIVATE + SHGetIconOverlayIndexA@8 @318 + SHGetIconOverlayIndexW@8 @319 + SHGetIDListFromObject@8 @320 + SHGetInstanceExplorer@4=shcore.GetProcessReference @321 + SHGetItemFromDataObject@16 @322 + SHGetItemFromObject@12 @323 + SHGetKnownFolderIDList@16 @324 + SHGetKnownFolderItem@20 @325 + SHGetKnownFolderPath@16 @326 + SHGetLocalizedName@16 @327 + SHGetMalloc@4 @328 + SHGetNameFromIDList@12 @329 + SHGetNewLinkInfo@20=SHGetNewLinkInfoA @330 + SHGetPathFromIDList@8=SHGetPathFromIDListA @331 + SHGetPathFromIDListA@8 @332 + SHGetPathFromIDListEx@16 @333 + SHGetPathFromIDListW@8 @334 + SHGetPropertyStoreForWindow@12 @335 + SHGetPropertyStoreFromParsingName@20 @336 + SHGetSettings@8 @337 + SHGetSpecialFolderLocation@12 @338 + SHGetSpecialFolderPathA@16 @339 + SHGetSpecialFolderPathW@16 @340 + SHGetStockIconInfo@12 @341 + SHHelpShortcuts_RunDLL@16=SHHelpShortcuts_RunDLLA @342 + SHHelpShortcuts_RunDLLA@16 @343 + SHHelpShortcuts_RunDLLW@16 @344 + SHInvokePrinterCommandA@0 @345 PRIVATE + SHInvokePrinterCommandW@0 @346 PRIVATE + SHIsFileAvailableOffline@8 @347 + SHLoadInProc@4 @348 + SHLoadNonloadedIconOverlayIdentifiers@0 @349 + SHOpenFolderAndSelectItems@16 @350 + SHOpenWithDialog@8 @351 + SHParseDisplayName@20 @352 + SHPathPrepareForWriteA@16 @353 + SHPathPrepareForWriteW@16 @354 + SHQueryRecycleBinA@8 @355 + SHQueryRecycleBinW@8 @356 + SHQueryUserNotificationState@4 @357 + SHRemoveLocalizedName@4 @358 + SHSetLocalizedName@12 @359 + SHSetUnreadMailCountW@12 @360 + SHUpdateRecycleBinIcon@0 @361 + SheChangeDirA@4 @362 + SheChangeDirExA@0 @363 PRIVATE + SheChangeDirExW@0 @364 PRIVATE + SheChangeDirW@4 @365 + SheConvertPathW@0 @366 PRIVATE + SheFullPathA@0 @367 PRIVATE + SheFullPathW@0 @368 PRIVATE + SheGetCurDrive@0 @369 PRIVATE + SheGetDirA@8 @370 + SheGetDirExW@0 @371 PRIVATE + SheGetDirW@8 @372 + SheGetPathOffsetW@0 @373 PRIVATE + SheRemoveQuotesA@0 @374 PRIVATE + SheRemoveQuotesW@0 @375 PRIVATE + SheSetCurDrive@0 @376 PRIVATE + SheShortenPathA@0 @377 PRIVATE + SheShortenPathW@0 @378 PRIVATE + ShellAboutA@16 @379 + ShellAboutW@16 @380 + ShellExec_RunDLL@16=ShellExec_RunDLLA @381 + ShellExec_RunDLLA@16 @382 + ShellExec_RunDLLW@16 @383 + ShellExecuteA@24 @384 + ShellExecuteEx@4=ShellExecuteExA @385 + ShellExecuteExA@4 @386 + ShellExecuteExW@4 @387 + ShellExecuteW@24 @388 + ShellHookProc@12 @389 + Shell_NotifyIcon@8=Shell_NotifyIconA @390 + Shell_NotifyIconA@8 @391 + Shell_NotifyIconW@8 @392 + Shell_NotifyIconGetRect@8 @393 + StrChrA@8=shlwapi.StrChrA @394 + StrChrIA@8=shlwapi.StrChrIA @395 + StrChrIW@8=shlwapi.StrChrIW @396 + StrChrW@8=shlwapi.StrChrW @397 + StrCmpNA@12=shlwapi.StrCmpNA @398 + StrCmpNIA@12=shlwapi.StrCmpNIA @399 + StrCmpNIW@12=shlwapi.StrCmpNIW @400 + StrCmpNW@12=shlwapi.StrCmpNW @401 + StrCpyNA@12=kernel32.lstrcpynA @402 + StrCpyNW@12=shlwapi.StrCpyNW @403 + StrNCmpA@12=shlwapi.StrCmpNA @404 + StrNCmpIA@12=shlwapi.StrCmpNIA @405 + StrNCmpIW@12=shlwapi.StrCmpNIW @406 + StrNCmpW@12=shlwapi.StrCmpNW @407 + StrNCpyA@12=kernel32.lstrcpynA @408 + StrNCpyW@12=shlwapi.StrCpyNW @409 + StrRChrA@12=shlwapi.StrRChrA @410 + StrRChrIA@12=shlwapi.StrRChrIA @411 + StrRChrIW@12=shlwapi.StrRChrIW @412 + StrRChrW@12=shlwapi.StrRChrW @413 + StrRStrA@0 @414 PRIVATE + StrRStrIA@12=shlwapi.StrRStrIA @415 + StrRStrIW@12=shlwapi.StrRStrIW @416 + StrRStrW@0 @417 PRIVATE + StrStrA@8=shlwapi.StrStrA @418 + StrStrIA@8=shlwapi.StrStrIA @419 + StrStrIW@8=shlwapi.StrStrIW @420 + StrStrW@8=shlwapi.StrStrW @421 + WOWShellExecute@28 @422 diff --git a/lib/wine/libshfolder.def b/lib/wine/libshfolder.def new file mode 100644 index 0000000..9bba80f --- /dev/null +++ b/lib/wine/libshfolder.def @@ -0,0 +1,7 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/shfolder/shfolder.spec; do not edit! + +LIBRARY shfolder.dll + +EXPORTS + SHGetFolderPathA@20=shell32.SHGetFolderPathA @1 + SHGetFolderPathW@20=shell32.SHGetFolderPathW @2 diff --git a/lib/wine/libshlwapi.def b/lib/wine/libshlwapi.def new file mode 100644 index 0000000..30ba889 --- /dev/null +++ b/lib/wine/libshlwapi.def @@ -0,0 +1,851 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/shlwapi/shlwapi.spec; do not edit! + +LIBRARY shlwapi.dll + +EXPORTS + ParseURLA@8 @1 NONAME + ParseURLW@8 @2 NONAME + PathFileExistsDefExtA@8 @3 NONAME + PathFileExistsDefExtW@8 @4 NONAME + PathFindOnPathExA@12 @5 NONAME + PathFindOnPathExW@12 @6 NONAME + SHAllocShared@12 @7 NONAME + SHLockShared@8 @8 NONAME + SHUnlockShared@4 @9 NONAME + SHFreeShared@8 @10 NONAME + SHMapHandle@20 @11 NONAME + SHCreateMemStream@8=shcore.SHCreateMemStream @12 NONAME + RegisterDefaultAcceptHeaders@8 @13 NONAME + GetAcceptLanguagesA@8 @14 NONAME + GetAcceptLanguagesW@8 @15 NONAME + SHCreateThread@16=shcore.SHCreateThread @16 NONAME + SHWriteDataBlockList@8 @17 NONAME + SHReadDataBlockList@8 @18 NONAME + SHFreeDataBlockList@4 @19 NONAME + SHAddDataBlock@8 @20 NONAME + SHRemoveDataBlock@8 @21 NONAME + SHFindDataBlock@8 @22 NONAME + SHStringFromGUIDA@12 @23 NONAME + SHStringFromGUIDW@12 @24 NONAME + IsCharAlphaWrapW@4=user32.IsCharAlphaW @25 NONAME + IsCharUpperWrapW@4=user32.IsCharUpperW @26 NONAME + IsCharLowerWrapW@4=user32.IsCharLowerW @27 NONAME + IsCharAlphaNumericWrapW@4=user32.IsCharAlphaNumericW @28 NONAME + IsCharSpaceW@4 @29 NONAME + IsCharBlankW@4 @30 NONAME + IsCharPunctW@4 @31 NONAME + IsCharCntrlW@4 @32 NONAME + IsCharDigitW@4 @33 NONAME + IsCharXDigitW@4 @34 NONAME + GetStringType3ExW@12 @35 NONAME + AppendMenuWrapW@16=user32.AppendMenuW @36 NONAME + CallWindowProcWrapW@20=user32.CallWindowProcW @37 NONAME + CharLowerWrapW@4=user32.CharLowerW @38 NONAME + CharLowerBuffWrapW@8=user32.CharLowerBuffW @39 NONAME + CharNextWrapW@4=user32.CharNextW @40 NONAME + CharPrevWrapW@8=user32.CharPrevW @41 NONAME + CharToOemWrapW@4=user32.CharToOemW @42 NONAME + CharUpperWrapW@4=user32.CharUpperW @43 NONAME + CharUpperBuffWrapW@8=user32.CharUpperBuffW @44 NONAME + CompareStringWrapW@24=kernel32.CompareStringW @45 NONAME + CopyAcceleratorTableWrapW@12=user32.CopyAcceleratorTableW @46 NONAME + CreateAcceleratorTableWrapW@8=user32.CreateAcceleratorTableW @47 NONAME + CreateDCWrapW@16=gdi32.CreateDCW @48 NONAME + CreateDialogParamWrapW@20=user32.CreateDialogParamW @49 NONAME + CreateDirectoryWrapW@8=kernel32.CreateDirectoryW @50 NONAME + CreateEventWrapW@16=kernel32.CreateEventW @51 NONAME + CreateFileWrapW@28=kernel32.CreateFileW @52 NONAME + CreateFontIndirectWrapW@4=gdi32.CreateFontIndirectW @53 NONAME + CreateICWrapW@16=gdi32.CreateICW @54 NONAME + CreateWindowExWrapW@48=user32.CreateWindowExW @55 NONAME + DefWindowProcWrapW@16=user32.DefWindowProcW @56 NONAME + DeleteFileWrapW@4=kernel32.DeleteFileW @57 NONAME + DialogBoxIndirectParamWrapW@20=user32.DialogBoxIndirectParamW @58 NONAME + DialogBoxParamWrapW@20=user32.DialogBoxParamW @59 NONAME + DispatchMessageWrapW@4=user32.DispatchMessageW @60 NONAME + DrawTextWrapW@20=user32.DrawTextW @61 NONAME + EnumFontFamiliesWrapW@16=gdi32.EnumFontFamiliesW @62 NONAME + EnumFontFamiliesExWrapW@20=gdi32.EnumFontFamiliesExW @63 NONAME + EnumResourceNamesWrapW@16=kernel32.EnumResourceNamesW @64 NONAME + FindFirstFileWrapW@8=kernel32.FindFirstFileW @65 NONAME + FindResourceWrapW@12=kernel32.FindResourceW @66 NONAME + FindWindowWrapW@8=user32.FindWindowW @67 NONAME + FormatMessageWrapW@28=kernel32.FormatMessageW @68 NONAME + GetClassInfoWrapW@12=user32.GetClassInfoW @69 NONAME + GetClassLongWrapW@8=user32.GetClassLongW @70 NONAME + GetClassNameWrapW@12=user32.GetClassNameW @71 NONAME + GetClipboardFormatNameWrapW@12=user32.GetClipboardFormatNameW @72 NONAME + GetCurrentDirectoryWrapW@8=kernel32.GetCurrentDirectoryW @73 NONAME + GetDlgItemTextWrapW@16=user32.GetDlgItemTextW @74 NONAME + GetFileAttributesWrapW@4=kernel32.GetFileAttributesW @75 NONAME + GetFullPathNameWrapW@16=kernel32.GetFullPathNameW @76 NONAME + GetLocaleInfoWrapW@16=kernel32.GetLocaleInfoW @77 NONAME + GetMenuStringWrapW@20=user32.GetMenuStringW @78 NONAME + GetMessageWrapW@16=user32.GetMessageW @79 NONAME + GetModuleFileNameWrapW@12=kernel32.GetModuleFileNameW @80 NONAME + GetSystemDirectoryWrapW@8=kernel32.GetSystemDirectoryW @81 NONAME + SearchPathWrapW@24=kernel32.SearchPathW @82 NONAME + GetModuleHandleWrapW@4=kernel32.GetModuleHandleW @83 NONAME + GetObjectWrapW@12=gdi32.GetObjectW @84 NONAME + GetPrivateProfileIntWrapW@16=kernel32.GetPrivateProfileIntW @85 NONAME + GetProfileStringWrapW@20=kernel32.GetProfileStringW @86 NONAME + GetPropWrapW@8=user32.GetPropW @87 NONAME + GetStringTypeExWrapW@20=kernel32.GetStringTypeExW @88 NONAME + GetTempFileNameWrapW@16=kernel32.GetTempFileNameW @89 NONAME + GetTempPathWrapW@8=kernel32.GetTempPathW @90 NONAME + GetTextExtentPoint32WrapW@16=gdi32.GetTextExtentPoint32W @91 NONAME + GetTextFaceWrapW@12=gdi32.GetTextFaceW @92 NONAME + GetTextMetricsWrapW@8=gdi32.GetTextMetricsW @93 NONAME + GetWindowLongWrapW@8=user32.GetWindowLongW @94 NONAME + GetWindowTextWrapW@12=user32.GetWindowTextW @95 NONAME + GetWindowTextLengthWrapW@4=user32.GetWindowTextLengthW @96 NONAME + GetWindowsDirectoryWrapW@8=kernel32.GetWindowsDirectoryW @97 NONAME + InsertMenuWrapW@20=user32.InsertMenuW @98 NONAME + IsDialogMessageWrapW@8=user32.IsDialogMessageW @99 NONAME + LoadAcceleratorsWrapW@8=user32.LoadAcceleratorsW @100 NONAME + LoadBitmapWrapW@8=user32.LoadBitmapW @101 NONAME + LoadCursorWrapW@8=user32.LoadCursorW @102 NONAME + LoadIconWrapW@8=user32.LoadIconW @103 NONAME + LoadImageWrapW@24=user32.LoadImageW @104 NONAME + LoadLibraryExWrapW@12=kernel32.LoadLibraryExW @105 NONAME + LoadMenuWrapW@8=user32.LoadMenuW @106 NONAME + LoadStringWrapW@16=user32.LoadStringW @107 NONAME + MessageBoxIndirectWrapW@4=user32.MessageBoxIndirectW @108 NONAME + ModifyMenuWrapW@20=user32.ModifyMenuW @109 NONAME + GetCharWidth32WrapW@16=gdi32.GetCharWidth32W @110 NONAME + GetCharacterPlacementWrapW@24=gdi32.GetCharacterPlacementW @111 NONAME + CopyFileWrapW@12=kernel32.CopyFileW @112 NONAME + MoveFileWrapW@8=kernel32.MoveFileW @113 NONAME + OemToCharWrapW@8=user32.OemToCharW @114 NONAME + OutputDebugStringWrapW@4=kernel32.OutputDebugStringW @115 NONAME + PeekMessageWrapW@20=user32.PeekMessageW @116 NONAME + PostMessageWrapW@16=user32.PostMessageW @117 NONAME + PostThreadMessageWrapW@16=user32.PostThreadMessageW @118 NONAME + RegCreateKeyWrapW@12=advapi32.RegCreateKeyW @119 NONAME + RegCreateKeyExWrapW@36=advapi32.RegCreateKeyExW @120 NONAME + RegDeleteKeyWrapW@8=advapi32.RegDeleteKeyW @121 NONAME + RegEnumKeyWrapW@16=advapi32.RegEnumKeyW @122 NONAME + RegEnumKeyExWrapW@32=advapi32.RegEnumKeyExW @123 NONAME + RegOpenKeyWrapW@12=advapi32.RegOpenKeyW @124 NONAME + RegOpenKeyExWrapW@20=advapi32.RegOpenKeyExW @125 NONAME + RegQueryInfoKeyWrapW@48=advapi32.RegQueryInfoKeyW @126 NONAME + RegQueryValueWrapW@16=advapi32.RegQueryValueW @127 NONAME + RegQueryValueExWrapW@24=advapi32.RegQueryValueExW @128 NONAME + RegSetValueWrapW@20=advapi32.RegSetValueW @129 NONAME + RegSetValueExWrapW@24=advapi32.RegSetValueExW @130 NONAME + RegisterClassWrapW@4=user32.RegisterClassW @131 NONAME + RegisterClipboardFormatWrapW@4=user32.RegisterClipboardFormatW @132 NONAME + RegisterWindowMessageWrapW@4=user32.RegisterWindowMessageW @133 NONAME + RemovePropWrapW@8=user32.RemovePropW @134 NONAME + SendDlgItemMessageWrapW@20=user32.SendDlgItemMessageW @135 NONAME + SendMessageWrapW@16=user32.SendMessageW @136 NONAME + SetCurrentDirectoryWrapW@4=kernel32.SetCurrentDirectoryW @137 NONAME + SetDlgItemTextWrapW@12=user32.SetDlgItemTextW @138 NONAME + SetMenuItemInfoWrapW@16=user32.SetMenuItemInfoW @139 NONAME + SetPropWrapW@12=user32.SetPropW @140 NONAME + SetWindowLongWrapW@12=user32.SetWindowLongW @141 NONAME + SetWindowsHookExWrapW@16=user32.SetWindowsHookExW @142 NONAME + SetWindowTextWrapW@8=user32.SetWindowTextW @143 NONAME + StartDocWrapW@8=gdi32.StartDocW @144 NONAME + SystemParametersInfoWrapW@16=user32.SystemParametersInfoW @145 NONAME + TranslateAcceleratorWrapW@12=user32.TranslateAcceleratorW @146 NONAME + UnregisterClassWrapW@8=user32.UnregisterClassW @147 NONAME + VkKeyScanWrapW@4=user32.VkKeyScanW @148 NONAME + WinHelpWrapW@16=user32.WinHelpW @149 NONAME + wvsprintfWrapW@12=user32.wvsprintfW @150 NONAME + StrCmpNCA@12 @151 NONAME + StrCmpNCW@12 @152 NONAME + StrCmpNICA@12 @153 NONAME + StrCmpNICW@12 @154 NONAME + StrCmpCA@8 @155 NONAME + StrCmpCW@8 @156 NONAME + StrCmpICA@8 @157 NONAME + StrCmpICW@8 @158 NONAME + CompareStringAltW@24=kernel32.CompareStringW @159 NONAME + SHAboutInfoA@8 @160 NONAME + SHAboutInfoW@8 @161 NONAME + SHTruncateString@8 @162 NONAME + IUnknown_QueryStatus@20 @163 NONAME + IUnknown_Exec@24 @164 NONAME + SHSetWindowBits@16 @165 NONAME + SHIsEmptyStream@4 @166 NONAME + SHSetParentHwnd@8 @167 NONAME + ConnectToConnectionPoint@24 @168 NONAME + IUnknown_AtomicRelease@4=shcore.IUnknown_AtomicRelease @169 NONAME + PathSkipLeadingSlashesA@4 @170 NONAME + SHIsSameObject@8 @171 NONAME + IUnknown_GetWindow@8 @172 NONAME + IUnknown_SetOwner@8 @173 NONAME + IUnknown_SetSite@8=shcore.IUnknown_SetSite @174 NONAME + IUnknown_GetClassID@8 @175 NONAME + IUnknown_QueryService@16=shcore.IUnknown_QueryService @176 NONAME + SHLoadMenuPopup@8 @177 NONAME + SHPropagateMessage@20 @178 NONAME + SHMenuIndexFromID@8 @179 NONAME + SHRemoveAllSubMenus@4 @180 NONAME + SHEnableMenuItem@12 @181 NONAME + SHCheckMenuItem@12 @182 NONAME + SHRegisterClassA@4 @183 NONAME + IStream_Read@12=shcore.IStream_Read @184 NONAME + SHMessageBoxCheckA@24 @185 NONAME + SHSimulateDrop@20 @186 NONAME + SHLoadFromPropertyBag@8 @187 NONAME + IUnknown_TranslateAcceleratorOCS@12 @188 NONAME + IUnknown_OnFocusOCS@8 @189 NONAME + IUnknown_HandleIRestrict@20 @190 NONAME + SHMessageBoxCheckW@24 @191 NONAME + SHGetMenuFromID@8 @192 NONAME + SHGetCurColorRes@0 @193 NONAME + SHWaitForSendMessageThread@8 @194 NONAME + SHIsExpandableFolder@8 @195 NONAME + SHVerbExistsNA@16 @196 NONAME + SHFillRectClr@12 @197 NONAME + SHSearchMapInt@16 @198 NONAME + IUnknown_Set@8=shcore.IUnknown_Set @199 NONAME + MayQSForward@24 @200 NONAME + MayExecForward@28 @201 NONAME + IsQSForward@12 @202 NONAME + SHStripMneumonicA@4 @203 NONAME + SHIsChildOrSelf@8 @204 NONAME + SHGetValueGoodBootA@24 @205 NONAME + SHGetValueGoodBootW@24 @206 NONAME + IContextMenu_Invoke@0 @207 NONAME PRIVATE + FDSA_Initialize@20 @208 NONAME + FDSA_Destroy@4 @209 NONAME + FDSA_InsertItem@12 @210 NONAME + FDSA_DeleteItem@8 @211 NONAME + IStream_Write@12=shcore.IStream_Write @212 NONAME + IStream_Reset@4=shcore.IStream_Reset @213 NONAME + IStream_Size@8=shcore.IStream_Size @214 NONAME + SHAnsiToUnicode@12 @215 NONAME + SHAnsiToUnicodeCP@16 @216 NONAME + SHUnicodeToAnsi@12 @217 NONAME + SHUnicodeToAnsiCP@16 @218 NONAME + QISearch@16 @219 + SHSetDefaultDialogFont@8 @220 NONAME + SHRemoveDefaultDialogFont@4 @221 NONAME + SHGlobalCounterCreate@4 @222 NONAME + SHGlobalCounterGetValue@4 @223 NONAME + SHGlobalCounterIncrement@4 @224 NONAME + SHStripMneumonicW@4 @225 NONAME + ZoneCheckPathA@0 @226 NONAME PRIVATE + ZoneCheckPathW@0 @227 NONAME PRIVATE + ZoneCheckUrlA@0 @228 NONAME PRIVATE + ZoneCheckUrlW@0 @229 NONAME PRIVATE + ZoneCheckUrlExA@0 @230 NONAME PRIVATE + ZoneCheckUrlExW@32 @231 NONAME + ZoneCheckUrlExCacheA@0 @232 NONAME PRIVATE + ZoneCheckUrlExCacheW@0 @233 NONAME PRIVATE + ZoneCheckHost@0 @234 NONAME PRIVATE + ZoneCheckHostEx@0 @235 NONAME PRIVATE + SHPinDllOfCLSID@4 @236 NONAME + SHRegisterClassW@4 @237 NONAME + SHUnregisterClassesA@12 @238 NONAME + SHUnregisterClassesW@12 @239 NONAME + SHDefWindowProc@16 @240 NONAME + StopWatchMode@0 @241 NONAME + StopWatchFlush@0 @242 NONAME + StopWatchA@20 @243 NONAME + StopWatchW@20 @244 NONAME + StopWatch_TimerHandler@16 @245 NONAME + StopWatch_CheckMsg@0 @246 NONAME PRIVATE + StopWatch_MarkFrameStart@4 @247 NONAME + StopWatch_MarkSameFrameStart@0 @248 NONAME PRIVATE + StopWatch_MarkJavaStop@12 @249 NONAME + GetPerfTime@0 @250 NONAME + StopWatch_DispatchTime@0 @251 NONAME PRIVATE + StopWatch_SetMsgLastLocation@4 @252 NONAME + StopWatchExA@0 @253 NONAME PRIVATE + StopWatchExW@0 @254 NONAME PRIVATE + EventTraceHandler@0 @255 NONAME PRIVATE + IUnknown_GetSite@12=shcore.IUnknown_GetSite @256 NONAME + SHCreateWorkerWindowA@24 @257 NONAME + SHRegisterWaitForSingleObject@0 @258 NONAME PRIVATE + SHUnregisterWait@0 @259 NONAME PRIVATE + SHQueueUserWorkItem@28 @260 NONAME + SHCreateTimerQueue@0 @261 NONAME PRIVATE + SHDeleteTimerQueue@0 @262 NONAME PRIVATE + SHSetTimerQueueTimer@28 @263 NONAME + SHChangeTimerQueueTimer@0 @264 NONAME PRIVATE + SHCancelTimerQueueTimer@0 @265 NONAME PRIVATE + SHRestrictionLookup@16 @266 NONAME + SHWeakQueryInterface@16 @267 NONAME + SHWeakReleaseInterface@8 @268 NONAME + GUIDFromStringA@8 @269 NONAME + GUIDFromStringW@8 @270 NONAME + SHGetRestriction@12 @271 NONAME + SHSetThreadPoolLimits@0 @272 NONAME PRIVATE + SHTerminateThreadPool@0 @273 NONAME PRIVATE + RegisterGlobalHotkeyW@0 @274 NONAME PRIVATE + RegisterGlobalHotkeyA@0 @275 NONAME PRIVATE + WhichPlatform@0 @276 NONAME + SHDialogBox@0 @277 NONAME PRIVATE + SHCreateWorkerWindowW@24 @278 NONAME + SHInvokeDefaultCommand@12 @279 NONAME + SHRegGetIntW@12=shcore.SHRegGetIntW @280 NONAME + SHPackDispParamsV@16 @281 NONAME + SHPackDispParams @282 NONAME + IConnectionPoint_InvokeWithCancel@20 @283 NONAME + IConnectionPoint_SimpleInvoke@12 @284 NONAME + IConnectionPoint_OnChanged@8 @285 NONAME + IUnknown_CPContainerInvokeParam @286 NONAME + IUnknown_CPContainerOnChanged@8 @287 NONAME + IUnknown_CPContainerInvokeIndirect@0 @288 NONAME PRIVATE + PlaySoundWrapW@12 @289 NONAME + SHMirrorIcon@0 @290 NONAME PRIVATE + SHMessageBoxCheckExA@28 @291 NONAME + SHMessageBoxCheckExW@28 @292 NONAME + SHCancelUserWorkItems@0 @293 NONAME PRIVATE + SHGetIniStringW@20 @294 NONAME + SHSetIniStringW@16 @295 NONAME + CreateURLFileContentsW@0 @296 NONAME PRIVATE + CreateURLFileContentsA@0 @297 NONAME PRIVATE + WritePrivateProfileStringWrapW@16=kernel32.WritePrivateProfileStringW @298 NONAME + ExtTextOutWrapW@32=gdi32.ExtTextOutW @299 NONAME + CreateFontWrapW@56=gdi32.CreateFontW @300 NONAME + DrawTextExWrapW@24=user32.DrawTextExW @301 NONAME + GetMenuItemInfoWrapW@16=user32.GetMenuItemInfoW @302 NONAME + InsertMenuItemWrapW@16=user32.InsertMenuItemW @303 NONAME + CreateMetaFileWrapW@4=gdi32.CreateMetaFileW @304 NONAME + CreateMutexWrapW@12=kernel32.CreateMutexW @305 NONAME + ExpandEnvironmentStringsWrapW@12=kernel32.ExpandEnvironmentStringsW @306 NONAME + CreateSemaphoreWrapW@16=kernel32.CreateSemaphoreW @307 NONAME + IsBadStringPtrWrapW@8=kernel32.IsBadStringPtrW @308 NONAME + LoadLibraryWrapW@4=kernel32.LoadLibraryW @309 NONAME + GetTimeFormatWrapW@24=kernel32.GetTimeFormatW @310 NONAME + GetDateFormatWrapW@24=kernel32.GetDateFormatW @311 NONAME + GetPrivateProfileStringWrapW@24=kernel32.GetPrivateProfileStringW @312 NONAME + SHGetFileInfoWrapW@20 @313 NONAME + RegisterClassExWrapW@4=user32.RegisterClassExW @314 NONAME + GetClassInfoExWrapW@12=user32.GetClassInfoExW @315 NONAME + IShellFolder_GetDisplayNameOf@0 @316 NONAME PRIVATE + IShellFolder_ParseDisplayName@0 @317 NONAME PRIVATE + DragQueryFileWrapW@16 @318 NONAME + FindWindowExWrapW@16=user32.FindWindowExW @319 NONAME + RegisterMIMETypeForExtensionA@8 @320 NONAME + RegisterMIMETypeForExtensionW@8 @321 NONAME + UnregisterMIMETypeForExtensionA@4 @322 NONAME + UnregisterMIMETypeForExtensionW@4 @323 NONAME + RegisterExtensionForMIMETypeA@8 @324 NONAME + RegisterExtensionForMIMETypeW@8 @325 NONAME + UnregisterExtensionForMIMETypeA@4 @326 NONAME + UnregisterExtensionForMIMETypeW@4 @327 NONAME + GetMIMETypeSubKeyA@12 @328 NONAME + GetMIMETypeSubKeyW@12 @329 NONAME + MIME_GetExtensionA@12 @330 NONAME + MIME_GetExtensionW@12 @331 NONAME + CallMsgFilterWrapW@8=user32.CallMsgFilterW @332 NONAME + SHBrowseForFolderWrapW@4 @333 NONAME + SHGetPathFromIDListWrapW@8 @334 NONAME + ShellExecuteExWrapW@4 @335 NONAME + SHFileOperationWrapW@4 @336 NONAME + ExtractIconExWrapW@20=user32.PrivateExtractIconExW @337 NONAME + SetFileAttributesWrapW@8=kernel32.SetFileAttributesW @338 NONAME + GetNumberFormatWrapW@24=kernel32.GetNumberFormatW @339 NONAME + MessageBoxWrapW@16=user32.MessageBoxW @340 NONAME + FindNextFileWrapW@8=kernel32.FindNextFileW @341 NONAME + SHInterlockedCompareExchange@12 @342 NONAME + SHRegGetCLSIDKeyA@20 @343 NONAME + SHRegGetCLSIDKeyW@20 @344 NONAME + SHAnsiToAnsi@12=shcore.SHAnsiToAnsi @345 NONAME + SHUnicodeToUnicode@12=shcore.SHUnicodeToUnicode @346 NONAME + RegDeleteValueWrapW@8=advapi32.RegDeleteValueW @347 NONAME + SHGetFileDescriptionW@0 @348 NONAME PRIVATE + SHGetFileDescriptionA@0 @349 NONAME PRIVATE + GetFileVersionInfoSizeWrapW@8 @350 NONAME + GetFileVersionInfoWrapW@16 @351 NONAME + VerQueryValueWrapW@16 @352 NONAME + SHFormatDateTimeA@16 @353 NONAME + SHFormatDateTimeW@16 @354 NONAME + IUnknown_EnableModeless@8 @355 NONAME + CreateAllAccessSecurityAttributes@12 @356 NONAME + SHGetNewLinkInfoWrapW@20 @357 NONAME + SHDefExtractIconWrapW@24 @358 NONAME + OpenEventWrapW@12=kernel32.OpenEventW @359 NONAME + RemoveDirectoryWrapW@4=kernel32.RemoveDirectoryW @360 NONAME + GetShortPathNameWrapW@12=kernel32.GetShortPathNameW @361 NONAME + GetUserNameWrapW@8=advapi32.GetUserNameW @362 NONAME + SHInvokeCommand@16 @363 NONAME + DoesStringRoundTripA@12 @364 NONAME + DoesStringRoundTripW@12 @365 NONAME + RegEnumValueWrapW@32=advapi32.RegEnumValueW @366 NONAME + WritePrivateProfileStructWrapW@20=kernel32.WritePrivateProfileStructW @367 NONAME + GetPrivateProfileStructWrapW@20=kernel32.GetPrivateProfileStructW @368 NONAME + CreateProcessWrapW@40=kernel32.CreateProcessW @369 NONAME + ExtractIconWrapW@12 @370 NONAME + DdeInitializeWrapW@16=user32.DdeInitializeW @371 NONAME + DdeCreateStringHandleWrapW@12=user32.DdeCreateStringHandleW @372 NONAME + DdeQueryStringWrapW@20=user32.DdeQueryStringW @373 NONAME + SHCheckDiskForMediaA@0 @374 NONAME PRIVATE + SHCheckDiskForMediaW@0 @375 NONAME PRIVATE + MLGetUILanguage@0=kernel32.GetUserDefaultUILanguage @376 NONAME + MLLoadLibraryA@12 @377 NONAME + MLLoadLibraryW@12 @378 NONAME + Shell_GetCachedImageIndexWrapW@0 @379 NONAME PRIVATE + Shell_GetCachedImageIndexWrapA@0 @380 NONAME PRIVATE + AssocCopyVerbs@0 @381 NONAME PRIVATE + ZoneComputePaneSize@4 @382 NONAME + ZoneConfigureW@0 @383 NONAME PRIVATE + SHRestrictedMessageBox@0 @384 NONAME PRIVATE + SHLoadRawAccelerators@0 @385 NONAME PRIVATE + SHQueryRawAccelerator@0 @386 NONAME PRIVATE + SHQueryRawAcceleratorMsg@0 @387 NONAME PRIVATE + ShellMessageBoxWrapW @388 NONAME + GetSaveFileNameWrapW@4 @389 NONAME + WNetRestoreConnectionWrapW@8 @390 NONAME + WNetGetLastErrorWrapW@20 @391 NONAME + EndDialogWrap@8=user32.EndDialog @392 NONAME + CreateDialogIndirectParamWrapW@20=user32.CreateDialogIndirectParamW @393 NONAME + SHChangeNotifyWrap@16 @394 NONAME + MLWinHelpA@0 @395 NONAME PRIVATE + MLHtmlHelpA@0 @396 NONAME PRIVATE + MLWinHelpW@0 @397 NONAME PRIVATE + MLHtmlHelpW@0 @398 NONAME PRIVATE + StrCpyNXA@12 @399 NONAME + StrCpyNXW@12 @400 NONAME + PageSetupDlgWrapW@4 @401 NONAME + PrintDlgWrapW@4 @402 NONAME + GetOpenFileNameWrapW@4 @403 NONAME + IShellFolder_EnumObjects@16=SHIShellFolder_EnumObjects @404 NONAME + MLBuildResURLA@24 @405 NONAME + MLBuildResURLW@24 @406 NONAME + AssocMakeProgid@0 @407 NONAME PRIVATE + AssocMakeShell@0 @408 NONAME PRIVATE + AssocMakeApplicationByKeyW@0 @409 NONAME PRIVATE + AssocMakeApplicationByKeyA@0 @410 NONAME PRIVATE + AssocMakeFileExtsToApplicationW@0 @411 NONAME PRIVATE + AssocMakeFileExtsToApplicationA@0 @412 NONAME PRIVATE + SHGetMachineInfo@4 @413 NONAME + SHHtmlHelpOnDemandW@0 @414 NONAME PRIVATE + SHHtmlHelpOnDemandA@0 @415 NONAME PRIVATE + SHWinHelpOnDemandW@20 @416 NONAME + SHWinHelpOnDemandA@20 @417 NONAME + MLFreeLibrary@4 @418 NONAME + SHFlushSFCacheWrap@0 @419 NONAME + SHLoadPersistedDataObject@0 @421 NONAME PRIVATE + SHGlobalCounterCreateNamedA@8 @422 NONAME + SHGlobalCounterCreateNamedW@8 @423 NONAME + SHGlobalCounterDecrement@4 @424 NONAME + DeleteMenuWrap@12=user32.DeleteMenu @425 NONAME + DestroyMenuWrap@4=user32.DestroyMenu @426 NONAME + TrackPopupMenuWrap@28=user32.TrackPopupMenu @427 NONAME + TrackPopupMenuExWrap@24=user32.TrackPopupMenuEx @428 NONAME + MLIsMLHInstance@4 @429 NONAME + MLSetMLHInstance@8 @430 NONAME + MLClearMLHInstance@4 @431 NONAME + SHSendMessageBroadcastA@12 @432 NONAME + SHSendMessageBroadcastW@12 @433 NONAME + SendMessageTimeoutWrapW@28=user32.SendMessageTimeoutW @434 NONAME + CLSIDFromProgIDWrap@8=ole32.CLSIDFromProgID @435 NONAME + CLSIDFromStringWrap@8 @436 NONAME + IsOS@4=shcore.IsOS @437 NONAME + SHLoadRegUIStringA@0 @438 NONAME PRIVATE + SHLoadRegUIStringW@16 @439 NONAME + SHGetWebFolderFilePathA@12 @440 NONAME + SHGetWebFolderFilePathW@12 @441 NONAME + GetEnvironmentVariableWrapW@12=kernel32.GetEnvironmentVariableW @442 NONAME + SHGetSystemWindowsDirectoryA@8=kernel32.GetSystemWindowsDirectoryA @443 NONAME + SHGetSystemWindowsDirectoryW@8=kernel32.GetSystemWindowsDirectoryW @444 NONAME + PathFileExistsAndAttributesA@8 @445 NONAME + PathFileExistsAndAttributesW@8 @446 NONAME + FixSlashesAndColonA@0 @447 NONAME PRIVATE + FixSlashesAndColonW@4 @448 NONAME + NextPathA@0 @449 NONAME PRIVATE + NextPathW@0 @450 NONAME PRIVATE + CharUpperNoDBCSA@0 @451 NONAME PRIVATE + CharUpperNoDBCSW@0 @452 NONAME PRIVATE + CharLowerNoDBCSA@0 @453 NONAME PRIVATE + CharLowerNoDBCSW@0 @454 NONAME PRIVATE + PathIsValidCharA@8 @455 NONAME + PathIsValidCharW@8 @456 NONAME + GetLongPathNameWrapW@12=kernel32.GetLongPathNameW @457 NONAME + GetLongPathNameWrapA@12=kernel32.GetLongPathNameA @458 NONAME + SHExpandEnvironmentStringsA@12=kernel32.ExpandEnvironmentStringsA @459 NONAME + SHExpandEnvironmentStringsW@12=kernel32.ExpandEnvironmentStringsW @460 NONAME + SHGetAppCompatFlags@4 @461 NONAME + UrlFixupW@12 @462 NONAME + SHExpandEnvironmentStringsForUserA@16=userenv.ExpandEnvironmentStringsForUserA @463 NONAME + SHExpandEnvironmentStringsForUserW@16=userenv.ExpandEnvironmentStringsForUserW @464 NONAME + PathUnExpandEnvStringsForUserA@0 @465 NONAME PRIVATE + PathUnExpandEnvStringsForUserW@0 @466 NONAME PRIVATE + SHRunIndirectRegClientCommand@0 @467 NONAME PRIVATE + RunIndirectRegCommand@0 @468 NONAME PRIVATE + RunRegCommand@0 @469 NONAME PRIVATE + IUnknown_ProfferServiceOld@0 @470 NONAME PRIVATE + SHCreatePropertyBagOnRegKey@20 @471 NONAME + SHCreatePropertyBagOnProfileSelection@0 @472 NONAME PRIVATE + SHGetIniStringUTF7W@0 @473 NONAME PRIVATE + SHSetIniStringUTF7W@0 @474 NONAME PRIVATE + GetShellSecurityDescriptor@8 @475 NONAME + SHGetObjectCompatFlags@8 @476 NONAME + SHCreatePropertyBagOnMemory@0 @477 NONAME PRIVATE + IUnknown_TranslateAcceleratorIO@8 @478 NONAME + IUnknown_UIActivateIO@12 @479 NONAME + UrlCrackW@16=wininet.InternetCrackUrlW @480 NONAME + IUnknown_HasFocusIO@4 @481 NONAME + SHMessageBoxHelpA@0 @482 NONAME PRIVATE + SHMessageBoxHelpW@0 @483 NONAME PRIVATE + IUnknown_QueryServiceExec@28 @484 NONAME + MapWin32ErrorToSTG@0 @485 NONAME PRIVATE + ModeToCreateFileFlags@0 @486 NONAME PRIVATE + SHLoadIndirectString@16 @487 NONAME + SHConvertGraphicsFile@0 @488 NONAME PRIVATE + GlobalAddAtomWrapW@4=kernel32.GlobalAddAtomW @489 NONAME + GlobalFindAtomWrapW@4=kernel32.GlobalFindAtomW @490 NONAME + SHGetShellKey@12 @491 NONAME + PrettifyFileDescriptionW@0 @492 NONAME PRIVATE + SHPropertyBag_ReadType@0 @493 NONAME PRIVATE + SHPropertyBag_ReadStr@0 @494 NONAME PRIVATE + SHPropertyBag_WriteStr@0 @495 NONAME PRIVATE + SHPropertyBag_ReadLONG@12 @496 NONAME + SHPropertyBag_WriteLONG@0 @497 NONAME PRIVATE + SHPropertyBag_ReadBOOLOld@0 @498 NONAME PRIVATE + SHPropertyBag_WriteBOOL@0 @499 NONAME PRIVATE + SHPropertyBag_ReadGUID@0 @505 NONAME PRIVATE + SHPropertyBag_WriteGUID@0 @506 NONAME PRIVATE + SHPropertyBag_ReadDWORD@0 @507 NONAME PRIVATE + SHPropertyBag_WriteDWORD@0 @508 NONAME PRIVATE + IUnknown_OnFocusChangeIS@12 @509 NONAME + SHLockSharedEx@0 @510 NONAME PRIVATE + PathFileExistsDefExtAndAttributesW@0 @511 NONAME PRIVATE + IStream_ReadPidl@0 @512 NONAME PRIVATE + IStream_WritePidl@0 @513 NONAME PRIVATE + IUnknown_ProfferService@16 @514 NONAME + SHGetViewStatePropertyBag@20 @515 NONAME + SKGetValueW@24 @516 NONAME + SKSetValueW@24 @517 NONAME + SKDeleteValueW@12 @518 NONAME + SKAllocValueW@24 @519 NONAME + SHPropertyBag_ReadBSTR@0 @520 NONAME PRIVATE + SHPropertyBag_ReadPOINTL@0 @521 NONAME PRIVATE + SHPropertyBag_WritePOINTL@0 @522 NONAME PRIVATE + SHPropertyBag_ReadRECTL@0 @523 NONAME PRIVATE + SHPropertyBag_WriteRECTL@0 @524 NONAME PRIVATE + SHPropertyBag_ReadPOINTS@0 @525 NONAME PRIVATE + SHPropertyBag_WritePOINTS@0 @526 NONAME PRIVATE + SHPropertyBag_ReadSHORT@0 @527 NONAME PRIVATE + SHPropertyBag_WriteSHORT@0 @528 NONAME PRIVATE + SHPropertyBag_ReadInt@0 @529 NONAME PRIVATE + SHPropertyBag_WriteInt@0 @530 NONAME PRIVATE + SHPropertyBag_ReadStream@0 @531 NONAME PRIVATE + SHPropertyBag_WriteStream@0 @532 NONAME PRIVATE + SHGetPerScreenResName@0 @533 NONAME PRIVATE + SHPropertyBag_ReadBOOL@0 @534 NONAME PRIVATE + SHPropertyBag_Delete@0 @535 NONAME PRIVATE + IUnknown_QueryServicePropertyBag@0 @536 NONAME PRIVATE + SHBoolSystemParametersInfo@0 @537 NONAME PRIVATE + IUnknown_QueryServiceForWebBrowserApp@12 @538 NONAME + IUnknown_ShowBrowserBar@0 @539 NONAME PRIVATE + SHInvokeCommandOnContextMenu@0 @540 NONAME PRIVATE + SHInvokeCommandsOnContextMen@0 @541 NONAME PRIVATE + GetUIVersion@0 @542 NONAME + CreateColorSpaceWrapW@4=gdi32.CreateColorSpaceW @543 NONAME + QuerySourceCreateFromKey@0 @544 NONAME PRIVATE + SHForwardContextMenuMsg@0 @545 NONAME PRIVATE + IUnknown_DoContextMenuPopup@0 @546 NONAME PRIVATE + SHAreIconsEqual@0 @548 NONAME PRIVATE + SHCoCreateInstanceAC@20 @549 NONAME + GetTemplateInfoFromHandle@0 @550 NONAME PRIVATE + IShellFolder_CompareIDs@0 @551 NONAME PRIVATE + AssocCreate@24 @500 + AssocGetPerceivedType@16 @501 + AssocIsDangerous@4 @502 + AssocQueryKeyA@20 @503 + AssocQueryKeyW@20 @504 + AssocQueryStringA@24 @547 + AssocQueryStringByKeyA@24 @552 + AssocQueryStringByKeyW@24 @553 + AssocQueryStringW@24 @554 + ChrCmpIA@8 @555 + ChrCmpIW@8 @556 + ColorAdjustLuma@12 @557 + ColorHLSToRGB@12 @558 + ColorRGBToHLS@16 @559 + DelayLoadFailureHook@8=kernel32.DelayLoadFailureHook @560 + DllGetVersion@4 @561 PRIVATE + GetMenuPosFromID@8 @562 + HashData@16 @563 + IntlStrEqWorkerA@16=StrIsIntlEqualA @564 + IntlStrEqWorkerW@16=StrIsIntlEqualW @565 + IsCharSpaceA@4 @566 + IsInternetESCEnabled@0 @567 + PathAddBackslashA@4 @568 + PathAddBackslashW@4 @569 + PathAddExtensionA@8 @570 + PathAddExtensionW@8 @571 + PathAppendA@8 @572 + PathAppendW@8 @573 + PathBuildRootA@8 @574 + PathBuildRootW@8 @575 + PathCanonicalizeA@8 @576 + PathCanonicalizeW@8 @577 + PathCombineA@12 @578 + PathCombineW@12 @579 + PathCommonPrefixA@12 @580 + PathCommonPrefixW@12 @581 + PathCompactPathA@12 @582 + PathCompactPathExA@16 @583 + PathCompactPathExW@16 @584 + PathCompactPathW@12 @585 + PathCreateFromUrlA@16 @586 + PathCreateFromUrlW@16 @587 + PathCreateFromUrlAlloc@12 @588 + PathFileExistsA@4 @589 + PathFileExistsW@4 @590 + PathFindExtensionA@4 @591 + PathFindExtensionW@4 @592 + PathFindFileNameA@4 @593 + PathFindFileNameW@4 @594 + PathFindNextComponentA@4 @595 + PathFindNextComponentW@4 @596 + PathFindOnPathA@8 @597 + PathFindOnPathW@8 @598 + PathFindSuffixArrayA@12 @599 + PathFindSuffixArrayW@12 @600 + PathGetArgsA@4 @601 + PathGetArgsW@4 @602 + PathGetCharTypeA@4 @603 + PathGetCharTypeW@4 @604 + PathGetDriveNumberA@4 @605 + PathGetDriveNumberW@4 @606 + PathIsContentTypeA@8 @607 + PathIsContentTypeW@8 @608 + PathIsDirectoryA@4 @609 + PathIsDirectoryEmptyA@4 @610 + PathIsDirectoryEmptyW@4 @611 + PathIsDirectoryW@4 @612 + PathIsFileSpecA@4 @613 + PathIsFileSpecW@4 @614 + PathIsLFNFileSpecA@4 @615 + PathIsLFNFileSpecW@4 @616 + PathIsNetworkPathA@4 @617 + PathIsNetworkPathW@4 @618 + PathIsPrefixA@8 @619 + PathIsPrefixW@8 @620 + PathIsRelativeA@4 @621 + PathIsRelativeW@4 @622 + PathIsRootA@4 @623 + PathIsRootW@4 @624 + PathIsSameRootA@8 @625 + PathIsSameRootW@8 @626 + PathIsSystemFolderA@8 @627 + PathIsSystemFolderW@8 @628 + PathIsUNCA@4 @629 + PathIsUNCServerA@4 @630 + PathIsUNCServerShareA@4 @631 + PathIsUNCServerShareW@4 @632 + PathIsUNCServerW@4 @633 + PathIsUNCW@4 @634 + PathIsURLA@4 @635 + PathIsURLW@4 @636 + PathMakePrettyA@4 @637 + PathMakePrettyW@4 @638 + PathMakeSystemFolderA@4 @639 + PathMakeSystemFolderW@4 @640 + PathMatchSpecA@8 @641 + PathMatchSpecW@8 @642 + PathParseIconLocationA@4 @643 + PathParseIconLocationW@4 @644 + PathQuoteSpacesA@4 @645 + PathQuoteSpacesW@4 @646 + PathRelativePathToA@20 @647 + PathRelativePathToW@20 @648 + PathRemoveArgsA@4 @649 + PathRemoveArgsW@4 @650 + PathRemoveBackslashA@4 @651 + PathRemoveBackslashW@4 @652 + PathRemoveBlanksA@4 @653 + PathRemoveBlanksW@4 @654 + PathRemoveExtensionA@4 @655 + PathRemoveExtensionW@4 @656 + PathRemoveFileSpecA@4 @657 + PathRemoveFileSpecW@4 @658 + PathRenameExtensionA@8 @659 + PathRenameExtensionW@8 @660 + PathSearchAndQualifyA@12 @661 + PathSearchAndQualifyW@12 @662 + PathSetDlgItemPathA@12 @663 + PathSetDlgItemPathW@12 @664 + PathSkipRootA@4 @665 + PathSkipRootW@4 @666 + PathStripPathA@4 @667 + PathStripPathW@4 @668 + PathStripToRootA@4 @669 + PathStripToRootW@4 @670 + PathUnExpandEnvStringsA@12 @671 + PathUnExpandEnvStringsW@12 @672 + PathUndecorateA@4 @673 + PathUndecorateW@4 @674 + PathUnmakeSystemFolderA@4 @675 + PathUnmakeSystemFolderW@4 @676 + PathUnquoteSpacesA@4 @677 + PathUnquoteSpacesW@4 @678 + SHAutoComplete@8 @679 + SHCopyKeyA@16=shcore.SHCopyKeyA @680 + SHCopyKeyW@16=shcore.SHCopyKeyW @681 + SHCreateShellPalette@4 @682 + SHCreateStreamOnFileA@12=shcore.SHCreateStreamOnFileA @683 + SHCreateStreamOnFileEx@24=shcore.SHCreateStreamOnFileEx @684 + SHCreateStreamOnFileW@12=shcore.SHCreateStreamOnFileW @685 + SHCreateStreamWrapper@16 @686 + SHCreateThreadRef@8=shcore.SHCreateThreadRef @687 + SHDeleteEmptyKeyA@8=shcore.SHDeleteEmptyKeyA @688 + SHDeleteEmptyKeyW@8=shcore.SHDeleteEmptyKeyW @689 + SHDeleteKeyA@8=shcore.SHDeleteKeyA @690 + SHDeleteKeyW@8=shcore.SHDeleteKeyW @691 + SHDeleteOrphanKeyA@8 @692 + SHDeleteOrphanKeyW@8 @693 + SHDeleteValueA@12 @694 + SHDeleteValueW@12 @695 + SHEnumKeyExA@16=shcore.SHEnumKeyExA @696 + SHEnumKeyExW@16=shcore.SHEnumKeyExW @697 + SHEnumValueA@28=shcore.SHEnumValueA @698 + SHEnumValueW@28=shcore.SHEnumValueW @699 + SHGetInverseCMAP@8 @700 + SHGetThreadRef@4=shcore.SHGetThreadRef @701 + SHGetValueA@24 @702 + SHGetValueW@24 @703 + SHIsLowMemoryMachine@4 @704 + SHOpenRegStream2A@16=shcore.SHOpenRegStream2A @705 + SHOpenRegStream2W@16=shcore.SHOpenRegStream2W @706 + SHOpenRegStreamA@16=shcore.SHOpenRegStreamA @707 + SHOpenRegStreamW@16=shcore.SHOpenRegStreamW @708 + SHQueryInfoKeyA@20 @709 + SHQueryInfoKeyW@20 @710 + SHQueryValueExA@24 @711 + SHQueryValueExW@24 @712 + SHRegCloseUSKey@4 @713 + SHRegCreateUSKeyA@20 @714 + SHRegCreateUSKeyW@20 @715 + SHRegDeleteEmptyUSKeyA@12 @716 + SHRegDeleteEmptyUSKeyW@12 @717 + SHRegDeleteUSValueA@12 @718 + SHRegDeleteUSValueW@12 @719 + SHRegDuplicateHKey@4 @720 + SHRegEnumUSKeyA@20 @721 + SHRegEnumUSKeyW@20 @722 + SHRegEnumUSValueA@32 @723 + SHRegEnumUSValueW@32 @724 + SHRegGetBoolUSValueA@16 @725 + SHRegGetBoolUSValueW@16 @726 + SHRegGetPathA@20 @727 + SHRegGetPathW@20 @728 + SHRegGetUSValueA@32 @729 + SHRegGetUSValueW@32 @730 + SHRegGetValueA@28=advapi32.RegGetValueA @731 + SHRegGetValueW@28=advapi32.RegGetValueW @732 + SHRegOpenUSKeyA@20 @733 + SHRegOpenUSKeyW@20 @734 + SHRegQueryInfoUSKeyA@24 @735 + SHRegQueryInfoUSKeyW@24 @736 + SHRegQueryUSValueA@32 @737 + SHRegQueryUSValueW@32 @738 + SHRegSetPathA@20 @739 + SHRegSetPathW@20 @740 + SHRegSetUSValueA@24 @741 + SHRegSetUSValueW@24 @742 + SHRegWriteUSValueA@24 @743 + SHRegWriteUSValueW@24 @744 + SHRegisterValidateTemplate@8 @745 + SHReleaseThreadRef@0=shcore.SHReleaseThreadRef @746 + SHSetThreadRef@4=shcore.SHSetThreadRef @747 + SHSetValueA@24 @748 + SHSetValueW@24 @749 + SHSkipJunction@8 @750 + SHStrDupA@8 @751 + SHStrDupW@8 @752 + StrCSpnA@8 @753 + StrCSpnIA@8 @754 + StrCSpnIW@8 @755 + StrCSpnW@8 @756 + StrCatBuffA@12 @757 + StrCatBuffW@12 @758 + StrCatChainW@16 @759 + StrCatW@8 @760 + StrChrA@8 @761 + StrChrIA@8 @762 + StrChrIW@8 @763 + StrChrNW@12 @764 + StrChrW@8 @765 + StrCmpIW@8 @766 + StrCmpLogicalW@8 @767 + StrCmpNA@12 @768 + StrCmpNIA@12 @769 + StrCmpNIW@12 @770 + StrCmpNW@12 @771 + StrCmpW@8 @772 + StrCpyNW@12 @773 + StrCpyW@8 @774 + StrDupA@4 @775 + StrDupW@4 @776 + StrFormatByteSize64A@16 @777 + StrFormatByteSizeA@12 @778 + StrFormatByteSizeW@16 @779 + StrFormatKBSizeA@16 @780 + StrFormatKBSizeW@16 @781 + StrFromTimeIntervalA@16 @782 + StrFromTimeIntervalW@16 @783 + StrIsIntlEqualA@16 @784 + StrIsIntlEqualW@16 @785 + StrNCatA@12 @786 + StrNCatW@12 @787 + StrPBrkA@8 @788 + StrPBrkW@8 @789 + StrRChrA@12 @790 + StrRChrIA@12 @791 + StrRChrIW@12 @792 + StrRChrW@12 @793 + StrRStrIA@12 @794 + StrRStrIW@12 @795 + StrRetToBSTR@12 @796 + StrRetToBufA@16 @797 + StrRetToBufW@16 @798 + StrRetToStrA@12 @799 + StrRetToStrW@12 @800 + StrSpnA@8 @801 + StrSpnW@8 @802 + StrStrA@8 @803 + StrStrIA@8 @804 + StrStrIW@8 @805 + StrStrNW@12 @806 + StrStrNIW@12 @807 + StrStrW@8 @808 + StrToInt64ExA@12 @809 + StrToInt64ExW@12 @810 + StrToIntA@4 @811 + StrToIntExA@12 @812 + StrToIntExW@12 @813 + StrToIntW@4 @814 + StrTrimA@8 @815 + StrTrimW@8 @816 + UrlApplySchemeA@16 @817 + UrlApplySchemeW@16 @818 + UrlCanonicalizeA@16 @819 + UrlCanonicalizeW@16 @820 + UrlCombineA@20 @821 + UrlCombineW@20 @822 + UrlCompareA@12 @823 + UrlCompareW@12 @824 + UrlCreateFromPathA@16 @825 + UrlCreateFromPathW@16 @826 + UrlEscapeA@16 @827 + UrlEscapeW@16 @828 + UrlGetLocationA@4 @829 + UrlGetLocationW@4 @830 + UrlGetPartA@20 @831 + UrlGetPartW@20 @832 + UrlHashA@12 @833 + UrlHashW@12 @834 + UrlIsA@8 @835 + UrlIsNoHistoryA@4 @836 + UrlIsNoHistoryW@4 @837 + UrlIsOpaqueA@4 @838 + UrlIsOpaqueW@4 @839 + UrlIsW@8 @840 + UrlUnescapeA@16 @841 + UrlUnescapeW@16 @842 + _SHGetInstanceExplorer@4 @843 + wnsprintfA @844 + wnsprintfW @845 + wvnsprintfA@16 @846 + wvnsprintfW@16 @847 diff --git a/lib/wine/libslc.def b/lib/wine/libslc.def new file mode 100644 index 0000000..286cf2a --- /dev/null +++ b/lib/wine/libslc.def @@ -0,0 +1,46 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/slc/slc.spec; do not edit! + +LIBRARY slc.dll + +EXPORTS + SLpAuthenticateGenuineTicketResponse@0 @1 PRIVATE + SLpBeginGenuineTicketTransaction@0 @2 PRIVATE + SLpCheckProductKey@0 @3 PRIVATE + SLpGetGenuineBlob@0 @4 PRIVATE + SLpGetGenuineLocal@0 @5 PRIVATE + SLpGetLicenseAcquisitionInfo@0 @6 PRIVATE + SLpGetMachineUGUID@0 @7 PRIVATE + SLpVLActivateProduct@0 @8 PRIVATE + SLClose@0 @9 PRIVATE + SLConsumeRight@0 @10 PRIVATE + SLConsumeWindowsRight@0 @11 PRIVATE + SLDepositOfflineConfirmationId@0 @12 PRIVATE + SLFireEvent@0 @13 PRIVATE + SLGenerateOfflineInstallationId@0 @14 PRIVATE + SLGetInstalledSAMLicenseApplications@0 @15 PRIVATE + SLGetLicense@0 @16 PRIVATE + SLGetLicenseFileId@0 @17 PRIVATE + SLGetLicenseInformation@0 @18 PRIVATE + SLGetLicensingStatusInformation@24 @19 + SLGetPKeyId@0 @20 PRIVATE + SLGetPKeyInformation@0 @21 PRIVATE + SLGetPolicyInformation@0 @22 PRIVATE + SLGetPolicyInformationDWORD@0 @23 PRIVATE + SLGetProductSkuInformation@0 @24 PRIVATE + SLGetSAMLicense@0 @25 PRIVATE + SLGetSLIDList@0 @26 PRIVATE + SLGetServiceInformation@0 @27 PRIVATE + SLGetWindowsInformation@16 @28 + SLGetWindowsInformationDWORD@8 @29 + SLInstallLicense@0 @30 PRIVATE + SLInstallProofOfPurchase@0 @31 PRIVATE + SLInstallSAMLicense@0 @32 PRIVATE + SLOpen@4 @33 + SLReArmWindows@0 @34 PRIVATE + SLRegisterEvent@0 @35 PRIVATE + SLRegisterWindowsEvent@0 @36 PRIVATE + SLUninstallLicense@0 @37 PRIVATE + SLUninstallProofOfPurchase@0 @38 PRIVATE + SLUninstallSAMLicense@0 @39 PRIVATE + SLUnregisterEvent@0 @40 PRIVATE + SLUnregisterWindowsEvent@0 @41 PRIVATE diff --git a/lib/wine/libsnmpapi.def b/lib/wine/libsnmpapi.def new file mode 100644 index 0000000..bfdd35a --- /dev/null +++ b/lib/wine/libsnmpapi.def @@ -0,0 +1,50 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/snmpapi/snmpapi.spec; do not edit! + +LIBRARY snmpapi.dll + +EXPORTS + SnmpSvcAddrIsIpx@0 @1 PRIVATE + SnmpSvcAddrToSocket@0 @2 PRIVATE + SnmpSvcBufRevAndCpy@0 @3 PRIVATE + SnmpSvcBufRevInPlace@0 @4 PRIVATE + SnmpSvcDecodeMessage@0 @5 PRIVATE + SnmpSvcEncodeMessage@0 @6 PRIVATE + SnmpSvcGenerateAuthFailTrap@0 @7 PRIVATE + SnmpSvcGenerateColdStartTrap@0 @8 PRIVATE + SnmpSvcGenerateLinkDownTrap@0 @9 PRIVATE + SnmpSvcGenerateLinkUpTrap@0 @10 PRIVATE + SnmpSvcGenerateTrap@0 @11 PRIVATE + SnmpSvcGenerateWarmStartTrap@0 @12 PRIVATE + SnmpSvcGetEnterpriseOID@0 @13 PRIVATE + SnmpSvcGetUptime@0 @14 + SnmpSvcInitUptime@0 @15 PRIVATE + SnmpSvcReleaseMessage@0 @16 PRIVATE + SnmpSvcReportEvent@0 @17 PRIVATE + SnmpSvcSetLogLevel@0 @18 PRIVATE + SnmpSvcSetLogType@0 @19 PRIVATE + SnmpUtilAnsiToUnicode@0 @20 PRIVATE + SnmpUtilAsnAnyCpy@8 @21 + SnmpUtilAsnAnyFree@4 @22 + SnmpUtilDbgPrint @23 + SnmpUtilIdsToA@8 @24 + SnmpUtilMemAlloc@4 @25 + SnmpUtilMemFree@4 @26 + SnmpUtilMemReAlloc@8 @27 + SnmpUtilOctetsCmp@8 @28 + SnmpUtilOctetsCpy@8 @29 + SnmpUtilOctetsFree@4 @30 + SnmpUtilOctetsNCmp@12 @31 + SnmpUtilOidAppend@8 @32 + SnmpUtilOidCmp@8 @33 + SnmpUtilOidCpy@8 @34 + SnmpUtilOidFree@4 @35 + SnmpUtilOidNCmp@12 @36 + SnmpUtilOidToA@4 @37 + SnmpUtilPrintAsnAny@4 @38 + SnmpUtilPrintOid@4 @39 + SnmpUtilStrlenW@0 @40 PRIVATE + SnmpUtilUnicodeToAnsi@0 @41 PRIVATE + SnmpUtilVarBindCpy@8 @42 + SnmpUtilVarBindFree@4 @43 + SnmpUtilVarBindListCpy@8 @44 + SnmpUtilVarBindListFree@4 @45 diff --git a/lib/wine/libspoolss.def b/lib/wine/libspoolss.def new file mode 100644 index 0000000..7261f26 --- /dev/null +++ b/lib/wine/libspoolss.def @@ -0,0 +1,156 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/spoolss/spoolss.spec; do not edit! + +LIBRARY spoolss.dll + +EXPORTS + AbortPrinter@0 @1 PRIVATE + AddFormW@0 @2 PRIVATE + AddJobW@0 @3 PRIVATE + AddMonitorW@12 @4 + AddPerMachineConnectionW@0 @5 PRIVATE + AddPortExW@0 @6 PRIVATE + AddPortW@0 @7 PRIVATE + AddPrintProcessorW@0 @8 PRIVATE + AddPrintProvidorW@0 @9 PRIVATE + AddPrinterConnectionW@0 @10 PRIVATE + AddPrinterDriverExW@16 @11 + AddPrinterDriverW@0 @12 PRIVATE + AddPrinterExW@0 @13 PRIVATE + AddPrinterW@0 @14 PRIVATE + AllocSplStr@4 @15 + AppendPrinterNotifyInfoData@0 @16 PRIVATE + BuildOtherNamesFromMachineName@8 @17 + CallDrvDevModeConversion@0 @18 PRIVATE + CallRouterFindFirstPrinterChangeNotification@0 @19 PRIVATE + ClosePrinter@0 @20 PRIVATE + ClusterSplClose@0 @21 PRIVATE + ClusterSplIsAlive@0 @22 PRIVATE + ClusterSplOpen@0 @23 PRIVATE + ConfigurePortW@0 @24 PRIVATE + CreatePrinterIC@0 @25 PRIVATE + DbgGetPointers@0 @26 PRIVATE + DeleteFormW@0 @27 PRIVATE + DeleteMonitorW@12 @28 + DeletePerMachineConnectionW@0 @29 PRIVATE + DeletePortW@0 @30 PRIVATE + DeletePrintProcessorW@0 @31 PRIVATE + DeletePrintProvidorW@0 @32 PRIVATE + DeletePrinter@0 @33 PRIVATE + DeletePrinterConnectionW@0 @34 PRIVATE + DeletePrinterDataExW@0 @35 PRIVATE + DeletePrinterDataW@0 @36 PRIVATE + DeletePrinterDriverExW@0 @37 PRIVATE + DeletePrinterDriverW@0 @38 PRIVATE + DeletePrinterIC@0 @39 PRIVATE + DeletePrinterKeyW@0 @40 PRIVATE + DllAllocSplMem@4 @41 + DllFreeSplMem@4 @42 + DllFreeSplStr@4 @43 + EndDocPrinter@0 @44 PRIVATE + EndPagePrinter@0 @45 PRIVATE + EnumFormsW@0 @46 PRIVATE + EnumJobsW@0 @47 PRIVATE + EnumMonitorsW@24 @48 + EnumPerMachineConnectionsW@0 @49 PRIVATE + EnumPortsW@24 @50 + EnumPrintProcessorDatatypesW@0 @51 PRIVATE + EnumPrintProcessorsW@0 @52 PRIVATE + EnumPrinterDataExW@0 @53 PRIVATE + EnumPrinterDataW@0 @54 PRIVATE + EnumPrinterDriversW@0 @55 PRIVATE + EnumPrinterKeyW@0 @56 PRIVATE + EnumPrintersW@0 @57 PRIVATE + FindClosePrinterChangeNotification@0 @58 PRIVATE + FlushPrinter@0 @59 PRIVATE + FormatPrinterForRegistryKey@0 @60 PRIVATE + FormatRegistryKeyForPrinter@0 @61 PRIVATE + FreeOtherNames@0 @62 PRIVATE + GetClientUserHandle@0 @63 PRIVATE + GetFormW@0 @64 PRIVATE + GetJobAttributes@0 @65 PRIVATE + GetJobW@0 @66 PRIVATE + GetNetworkId@0 @67 PRIVATE + GetPrintProcessorDirectoryW@0 @68 PRIVATE + GetPrinterDataExW@0 @69 PRIVATE + GetPrinterDataW@0 @70 PRIVATE + GetPrinterDriverDirectoryW@24 @71 + GetPrinterDriverExW@0 @72 PRIVATE + GetPrinterDriverW@0 @73 PRIVATE + GetPrinterW@0 @74 PRIVATE + ImpersonatePrinterClient@4 @75 + InitializeRouter@0 @76 + IsLocalCall@0 @77 + IsNamedPipeRpcCall@0 @78 PRIVATE + LoadDriver@0 @79 PRIVATE + LoadDriverFiletoConvertDevmode@0 @80 PRIVATE + MIDL_user_allocate1@0 @81 PRIVATE + MIDL_user_free1@0 @82 PRIVATE + MarshallDownStructure@0 @83 PRIVATE + MarshallUpStructure@0 @84 PRIVATE + OldGetPrinterDriverW@0 @85 PRIVATE + OpenPrinterExW@0 @86 PRIVATE + OpenPrinterPortW@0 @87 PRIVATE + OpenPrinterW@0 @88 PRIVATE + PackStrings@0 @89 PRIVATE + PartialReplyPrinterChangeNotification@0 @90 PRIVATE + PlayGdiScriptOnPrinterIC@0 @91 PRIVATE + PrinterHandleRundown@0 @92 PRIVATE + PrinterMessageBoxW@0 @93 PRIVATE + ProvidorFindClosePrinterChangeNotification@0 @94 PRIVATE + ProvidorFindFirstPrinterChangeNotification@0 @95 PRIVATE + ReadPrinter@0 @96 PRIVATE + ReallocSplMem@0 @97 PRIVATE + ReallocSplStr@0 @98 PRIVATE + RemoteFindFirstPrinterChangeNotification@0 @99 PRIVATE + ReplyClosePrinter@0 @100 PRIVATE + ReplyOpenPrinter@0 @101 PRIVATE + ReplyPrinterChangeNotification@0 @102 PRIVATE + ResetPrinterW@0 @103 PRIVATE + RevertToPrinterSelf@0 @104 + RouterAllocPrinterNotifyInfo@0 @105 PRIVATE + RouterFindFirstPrinterChangeNotification@0 @106 PRIVATE + RouterFindNextPrinterChangeNotification@0 @107 PRIVATE + RouterFreePrinterNotifyInfo@0 @108 PRIVATE + RouterRefreshPrinterChangeNotification@0 @109 PRIVATE + RouterReplyPrinter@0 @110 PRIVATE + ScheduleJob@0 @111 PRIVATE + SeekPrinter@0 @112 PRIVATE + SetAllocFailCount@0 @113 PRIVATE + SetFormW@0 @114 PRIVATE + SetJobW@0 @115 PRIVATE + SetPortW@0 @116 PRIVATE + SetPrinterDataExW@0 @117 PRIVATE + SetPrinterDataW@0 @118 PRIVATE + SetPrinterW@0 @119 PRIVATE + SplCloseSpoolFileHandle@0 @120 PRIVATE + SplCommitSpoolData@0 @121 PRIVATE + SplDriverUnloadComplete@0 @122 PRIVATE + SplGetSpoolFileInfo@0 @123 PRIVATE + SplInitializeWinSpoolDrv@4 @124 + SplIsUpgrade@0 @125 + SplProcessPnPEvent@0 @126 PRIVATE + SplReadPrinter@0 @127 PRIVATE + SplRegisterForDeviceEvents@0 @128 PRIVATE + SplStartPhase2Init@0 @129 PRIVATE + SplUnregisterForDeviceEvents@0 @130 PRIVATE + SpoolerFindClosePrinterChangeNotification@0 @131 PRIVATE + SpoolerFindFirstPrinterChangeNotification@0 @132 PRIVATE + SpoolerFindNextPrinterChangeNotification@0 @133 PRIVATE + SpoolerFreePrinterNotifyInfo@0 @134 PRIVATE + SpoolerHasInitialized@0 @135 + SpoolerInit@0 @136 + StartDocPrinterW@0 @137 PRIVATE + StartPagePrinter@0 @138 PRIVATE + UnloadDriver@0 @139 PRIVATE + UnloadDriverFile@0 @140 PRIVATE + UpdateBufferSize@0 @141 PRIVATE + UpdatePrinterRegAll@0 @142 PRIVATE + UpdatePrinterRegUser@0 @143 PRIVATE + WaitForPrinterChange@0 @144 PRIVATE + WaitForSpoolerInitialization@0 @145 + WritePrinter@0 @146 PRIVATE + XcvDataW@0 @147 PRIVATE + bGetDevModePerUser@0 @148 PRIVATE + bSetDevModePerUser@0 @149 PRIVATE + pszDbgAllocMsgA@0 @150 PRIVATE + vDbgLogError@0 @151 PRIVATE diff --git a/lib/wine/libsti.def b/lib/wine/libsti.def new file mode 100644 index 0000000..0f0e1fd --- /dev/null +++ b/lib/wine/libsti.def @@ -0,0 +1,12 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/sti/sti.spec; do not edit! + +LIBRARY sti.dll + +EXPORTS + DllCanUnloadNow@0 @1 PRIVATE + DllGetClassObject@12 @2 PRIVATE + DllRegisterServer@0 @3 PRIVATE + DllUnregisterServer@0 @4 PRIVATE + StiCreateInstance@16=StiCreateInstanceW @5 + StiCreateInstanceA@16 @6 + StiCreateInstanceW@16 @7 diff --git a/lib/wine/libstrmbase.a b/lib/wine/libstrmbase.a new file mode 100644 index 0000000..033a201 Binary files /dev/null and b/lib/wine/libstrmbase.a differ diff --git a/lib/wine/libstrmiids.a b/lib/wine/libstrmiids.a new file mode 100644 index 0000000..d42a6c7 Binary files /dev/null and b/lib/wine/libstrmiids.a differ diff --git a/lib/wine/libsxs.def b/lib/wine/libsxs.def new file mode 100644 index 0000000..eed5119 --- /dev/null +++ b/lib/wine/libsxs.def @@ -0,0 +1,8 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/sxs/sxs.spec; do not edit! + +LIBRARY sxs.dll + +EXPORTS + CreateAssemblyCache@8 @1 + CreateAssemblyNameObject@16 @2 + SxsLookupClrGuid@24 @3 diff --git a/lib/wine/libt2embed.def b/lib/wine/libt2embed.def new file mode 100644 index 0000000..c9559f9 --- /dev/null +++ b/lib/wine/libt2embed.def @@ -0,0 +1,30 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/t2embed/t2embed.spec; do not edit! + +LIBRARY t2embed.dll + +EXPORTS + TTCharToUnicode@0 @1 PRIVATE + TTDeleteEmbeddedFont@12 @2 + TTEmbedFont@44 @3 + TTEmbedFontFromFileA@0 @4 PRIVATE + TTEnableEmbeddingForFacename@0 @5 PRIVATE + TTGetEmbeddedFontInfo@0 @6 PRIVATE + TTGetEmbeddingType@8 @7 + TTIsEmbeddingEnabled@8 @8 + TTIsEmbeddingEnabledForFacename@8 @9 + TTLoadEmbeddedFont@40 @10 + TTRunValidationTests@0 @11 PRIVATE + _TTCharToUnicode@24@0 @12 PRIVATE + _TTDeleteEmbeddedFont@12@0 @13 PRIVATE + _TTEmbedFont@44@44=TTEmbedFont @14 + _TTEmbedFontFromFileA@52@0 @15 PRIVATE + _TTEnableEmbeddingForFacename@8@0 @16 PRIVATE + _TTGetEmbeddedFontInfo@28@0 @17 PRIVATE + _TTGetEmbeddingType@8@8=TTGetEmbeddingType @18 + _TTIsEmbeddingEnabled@8@8=TTIsEmbeddingEnabled @19 + _TTIsEmbeddingEnabledForFacename@8@8=TTIsEmbeddingEnabledForFacename @20 + _TTLoadEmbeddedFont@40@40=TTLoadEmbeddedFont @21 + _TTRunValidationTests@8@0 @22 PRIVATE + TTEmbedFontEx@0 @23 PRIVATE + TTRunValidationTestsEx@0 @24 PRIVATE + TTGetNewFontName@0 @25 PRIVATE diff --git a/lib/wine/libtapi32.def b/lib/wine/libtapi32.def new file mode 100644 index 0000000..12c2344 --- /dev/null +++ b/lib/wine/libtapi32.def @@ -0,0 +1,183 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/tapi32/tapi32.spec; do not edit! + +LIBRARY tapi32.dll + +EXPORTS + lineAccept@12 @1 + lineAddProvider@12=lineAddProviderA @2 + lineAddProviderA@12 @3 + lineAddProviderW@12 @4 + lineAddToConference@8 @5 + lineAnswer@12 @6 + lineBlindTransfer@12=lineBlindTransferA @7 + lineBlindTransferA@12 @8 + lineClose@4 @9 + lineCompleteCall@16 @10 + lineCompleteTransfer@16 @11 + lineConfigDialog@12=lineConfigDialogA @12 + lineConfigDialogA@12 @13 + lineConfigDialogW@12 @14 + lineConfigDialogEdit@24=lineConfigDialogEditA @15 + lineConfigDialogEditA@24 @16 + lineConfigProvider@8 @17 + lineDeallocateCall@4 @18 + lineDevSpecific@20 @19 + lineDevSpecificFeature@16 @20 + lineDial@12=lineDialA @21 + lineDialA@12 @22 + lineDialW@12 @23 + lineDrop@12 @24 + lineForward@28=lineForwardA @25 + lineForwardA@28 @26 + lineGatherDigits@28=lineGatherDigitsA @27 + lineGatherDigitsA@28 @28 + lineGenerateDigits@16=lineGenerateDigitsA @29 + lineGenerateDigitsA@16 @30 + lineGenerateTone@20 @31 + lineGetAddressCaps@24=lineGetAddressCapsA @32 + lineGetAddressCapsA@24 @33 + lineGetAddressID@20=lineGetAddressIDA @34 + lineGetAddressIDA@20 @35 + lineGetAddressStatus@12=lineGetAddressStatusA @36 + lineGetAddressStatusA@12 @37 + lineGetAppPriority@24=lineGetAppPriorityA @38 + lineGetAppPriorityA@24 @39 + lineGetCallInfo@8=lineGetCallInfoA @40 + lineGetCallInfoA@8 @41 + lineGetCallStatus@8 @42 + lineGetConfRelatedCalls@8 @43 + lineGetCountry@12=lineGetCountryA @44 + lineGetCountryA@12 @45 + lineGetCountryW@12 @46 + lineGetDevCaps@20=lineGetDevCapsA @47 + lineGetDevCapsA@20 @48 + lineGetDevCapsW@20 @49 + lineGetDevConfig@12=lineGetDevConfigA @50 + lineGetDevConfigA@12 @51 + lineGetID@24=lineGetIDA @52 + lineGetIDA@24 @53 + lineGetIDW@24 @54 + lineGetIcon@12=lineGetIconA @55 + lineGetIconA@12 @56 + lineGetLineDevStatus@8=lineGetLineDevStatusA @57 + lineGetLineDevStatusA@8 @58 + lineGetMessage@12 @59 + lineGetNewCalls@16 @60 + lineGetNumRings@12 @61 + lineGetProviderList@8=lineGetProviderListA @62 + lineGetProviderListA@8 @63 + lineGetProviderListW@8 @64 + lineGetRequest@12=lineGetRequestA @65 + lineGetRequestA@12 @66 + lineGetStatusMessages@12 @67 + lineGetTranslateCaps@12=lineGetTranslateCapsA @68 + lineGetTranslateCapsA@12 @69 + lineHandoff@12=lineHandoffA @70 + lineHandoffA@12 @71 + lineHold@4 @72 + lineInitialize@20 @73 + lineInitializeExA@28 @74 + lineInitializeExW@28 @75 + lineMakeCall@20=lineMakeCallA @76 + lineMakeCallA@20 @77 + lineMakeCallW@20 @78 + lineMonitorDigits@8 @79 + lineMonitorMedia@8 @80 + lineMonitorTones@12 @81 + lineNegotiateAPIVersion@24 @82 + lineNegotiateExtVersion@24 @83 + lineOpen@36=lineOpenA @84 + lineOpenA@36 @85 + lineOpenW@36 @86 + linePark@16=lineParkA @87 + lineParkA@16 @88 + linePickup@20=linePickupA @89 + linePickupA@20 @90 + linePrepareAddToConference@12=linePrepareAddToConferenceA @91 + linePrepareAddToConferenceA@12 @92 + lineRedirect@12=lineRedirectA @93 + lineRedirectA@12 @94 + lineRegisterRequestRecipient@16 @95 + lineReleaseUserUserInfo@4 @96 + lineRemoveFromConference@4 @97 + lineRemoveProvider@8 @98 + lineSecureCall@4 @99 + lineSendUserUserInfo@12 @100 + lineSetAppPriority@24=lineSetAppPriorityA @101 + lineSetAppPriorityA@24 @102 + lineSetAppSpecific@8 @103 + lineSetCallParams@20 @104 + lineSetCallPrivilege@8 @105 + lineSetCurrentLocation@8 @106 + lineSetDevConfig@16=lineSetDevConfigA @107 + lineSetDevConfigA@16 @108 + lineSetMediaControl@48 @109 + lineSetMediaMode@8 @110 + lineSetNumRings@12 @111 + lineSetStatusMessages@12 @112 + lineSetTerminal@28 @113 + lineSetTollList@16=lineSetTollListA @114 + lineSetTollListA@16 @115 + lineSetupConference@24=lineSetupConferenceA @116 + lineSetupConferenceA@24 @117 + lineSetupTransfer@12=lineSetupTransferA @118 + lineSetupTransferA@12 @119 + lineShutdown@4 @120 + lineSwapHold@8 @121 + lineTranslateAddress@28=lineTranslateAddressA @122 + lineTranslateAddressA@28 @123 + lineTranslateAddressW@28 @124 + lineTranslateDialog@20=lineTranslateDialogA @125 + lineTranslateDialogA@20 @126 + lineTranslateDialogW@20 @127 + lineUncompleteCall@8 @128 + lineUnhold@4 @129 + lineUnpark@16=lineUnparkA @130 + lineUnparkA@16 @131 + phoneClose@4 @132 + phoneConfigDialog@12=phoneConfigDialogA @133 + phoneConfigDialogA@12 @134 + phoneDevSpecific@12 @135 + phoneGetButtonInfo@12=phoneGetButtonInfoA @136 + phoneGetButtonInfoA@12 @137 + phoneGetData@16 @138 + phoneGetDevCaps@20=phoneGetDevCapsA @139 + phoneGetDevCapsA@20 @140 + phoneGetDisplay@8 @141 + phoneGetGain@12 @142 + phoneGetHookSwitch@8 @143 + phoneGetID@12=phoneGetIDA @144 + phoneGetIDA@12 @145 + phoneGetIcon@12=phoneGetIconA @146 + phoneGetIconA@12 @147 + phoneGetLamp@12 @148 + phoneGetMessage@12 @149 + phoneGetRing@12 @150 + phoneGetStatus@8=phoneGetStatusA @151 + phoneGetStatusA@8 @152 + phoneGetStatusMessages@16 @153 + phoneGetVolume@12 @154 + phoneInitialize@20 @155 + phoneInitializeExA@28 @156 + phoneInitializeExW@28 @157 + phoneNegotiateAPIVersion@24 @158 + phoneNegotiateExtVersion@24 @159 + phoneOpen@28 @160 + phoneSetButtonInfo@12=phoneSetButtonInfoA @161 + phoneSetButtonInfoA@12 @162 + phoneSetData@16 @163 + phoneSetDisplay@20 @164 + phoneSetGain@12 @165 + phoneSetHookSwitch@12 @166 + phoneSetLamp@12 @167 + phoneSetRing@12 @168 + phoneSetStatusMessages@16 @169 + phoneSetVolume@12 @170 + phoneShutdown@4 @171 + tapiGetLocationInfo@8=tapiGetLocationInfoA @172 + tapiGetLocationInfoA@8 @173 + tapiGetLocationInfoW@8 @174 + tapiRequestDrop@0 @175 PRIVATE + tapiRequestMakeCall@16=tapiRequestMakeCallA @176 + tapiRequestMakeCallA@16 @177 + tapiRequestMediaCall@0 @178 PRIVATE diff --git a/lib/wine/libucrtbase.def b/lib/wine/libucrtbase.def new file mode 100644 index 0000000..129105b --- /dev/null +++ b/lib/wine/libucrtbase.def @@ -0,0 +1,2574 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/ucrtbase/ucrtbase.spec; do not edit! + +LIBRARY ucrtbase.dll + +EXPORTS + _CIacos @1 + _CIasin @2 + _CIatan @3 + _CIatan2 @4 + _CIcos @5 + _CIcosh @6 + _CIexp @7 + _CIfmod @8 + _CIlog @9 + _CIlog10 @10 + _CIpow @11 + _CIsin @12 + _CIsinh @13 + _CIsqrt @14 + _CItan @15 + _CItanh @16 + _Cbuild=MSVCR120__Cbuild @17 + _Cmulcc@0 @18 PRIVATE + _Cmulcr@0 @19 PRIVATE + _CreateFrameInfo @20 + _CxxThrowException@8 @21 + _EH_prolog @22 + _Exit=MSVCRT__exit @23 + _FCbuild@0 @24 PRIVATE + _FCmulcc@0 @25 PRIVATE + _FCmulcr@0 @26 PRIVATE + _FindAndUnlinkFrame @27 + _GetImageBase@0 @28 PRIVATE + _GetThrowImageBase@0 @29 PRIVATE + _Getdays @30 + _Getmonths @31 + _Gettnames @32 + _IsExceptionObjectToBeDestroyed @33 + _LCbuild@0 @34 PRIVATE + _LCmulcc@0 @35 PRIVATE + _LCmulcr@0 @36 PRIVATE + _SetImageBase@0 @37 PRIVATE + _SetThrowImageBase@0 @38 PRIVATE + _NLG_Dispatch2@0 @39 PRIVATE + _NLG_Return@0 @40 PRIVATE + _NLG_Return2@0 @41 PRIVATE + _SetWinRTOutOfMemoryExceptionCallback=MSVCR120__SetWinRTOutOfMemoryExceptionCallback @42 + _Strftime @43 + _W_Getdays @44 + _W_Getmonths @45 + _W_Gettnames @46 + _Wcsftime @47 + __AdjustPointer @48 + __BuildCatchObject@0 @49 PRIVATE + __BuildCatchObjectHelper@0 @50 PRIVATE + __CxxDetectRethrow @51 + __CxxExceptionFilter @52 + __CxxFrameHandler @53 + __CxxFrameHandler2=__CxxFrameHandler @54 + __CxxFrameHandler3=__CxxFrameHandler @55 + __CxxLongjmpUnwind@4 @56 + __CxxQueryExceptionSize @57 + __CxxRegisterExceptionObject @58 + __CxxUnregisterExceptionObject @59 + __DestructExceptionObject @60 + __FrameUnwindFilter@0 @61 PRIVATE + __GetPlatformExceptionInfo@0 @62 PRIVATE + __NLG_Dispatch2@0 @63 PRIVATE + __NLG_Return2@0 @64 PRIVATE + __RTCastToVoid=MSVCRT___RTCastToVoid @65 + __RTDynamicCast=MSVCRT___RTDynamicCast @66 + __RTtypeid=MSVCRT___RTtypeid @67 + __TypeMatch@0 @68 PRIVATE + ___lc_codepage_func @69 + ___lc_collate_cp_func @70 + ___lc_locale_name_func @71 + ___mb_cur_max_func=MSVCRT____mb_cur_max_func @72 + ___mb_cur_max_l_func @73 + __acrt_iob_func=MSVCRT___acrt_iob_func @74 + __conio_common_vcprintf=MSVCRT__conio_common_vcprintf @75 + __conio_common_vcprintf_p@0 @76 PRIVATE + __conio_common_vcprintf_s@0 @77 PRIVATE + __conio_common_vcscanf@0 @78 PRIVATE + __conio_common_vcwprintf=MSVCRT__conio_common_vcwprintf @79 + __conio_common_vcwprintf_p@0 @80 PRIVATE + __conio_common_vcwprintf_s@0 @81 PRIVATE + __conio_common_vcwscanf@0 @82 PRIVATE + __control87_2 @83 + __current_exception @84 + __current_exception_context @85 + __daylight=MSVCRT___p__daylight @86 + __dcrt_get_wide_environment_from_os@0 @87 PRIVATE + __dcrt_initial_narrow_environment@0 @88 PRIVATE + __doserrno=MSVCRT___doserrno @89 + __dstbias=MSVCRT___p__dstbias @90 + __fpe_flt_rounds @91 + __fpecode @92 + __initialize_lconv_for_unsigned_char=__lconv_init @93 + __intrinsic_abnormal_termination@0 @94 PRIVATE + __intrinsic_setjmp=MSVCRT__setjmp @95 + __isascii=MSVCRT___isascii @96 + __iscsym=MSVCRT___iscsym @97 + __iscsymf=MSVCRT___iscsymf @98 + __iswcsym@0 @99 PRIVATE + __iswcsymf@0 @100 PRIVATE + __libm_sse2_acos=MSVCRT___libm_sse2_acos @101 + __libm_sse2_acosf=MSVCRT___libm_sse2_acosf @102 + __libm_sse2_asin=MSVCRT___libm_sse2_asin @103 + __libm_sse2_asinf=MSVCRT___libm_sse2_asinf @104 + __libm_sse2_atan=MSVCRT___libm_sse2_atan @105 + __libm_sse2_atan2=MSVCRT___libm_sse2_atan2 @106 + __libm_sse2_atanf=MSVCRT___libm_sse2_atanf @107 + __libm_sse2_cos=MSVCRT___libm_sse2_cos @108 + __libm_sse2_cosf=MSVCRT___libm_sse2_cosf @109 + __libm_sse2_exp=MSVCRT___libm_sse2_exp @110 + __libm_sse2_expf=MSVCRT___libm_sse2_expf @111 + __libm_sse2_log=MSVCRT___libm_sse2_log @112 + __libm_sse2_log10=MSVCRT___libm_sse2_log10 @113 + __libm_sse2_log10f=MSVCRT___libm_sse2_log10f @114 + __libm_sse2_logf=MSVCRT___libm_sse2_logf @115 + __libm_sse2_pow=MSVCRT___libm_sse2_pow @116 + __libm_sse2_powf=MSVCRT___libm_sse2_powf @117 + __libm_sse2_sin=MSVCRT___libm_sse2_sin @118 + __libm_sse2_sinf=MSVCRT___libm_sse2_sinf @119 + __libm_sse2_tan=MSVCRT___libm_sse2_tan @120 + __libm_sse2_tanf=MSVCRT___libm_sse2_tanf @121 + __p___argc=MSVCRT___p___argc @122 + __p___argv=MSVCRT___p___argv @123 + __p___wargv=MSVCRT___p___wargv @124 + __p__acmdln=MSVCRT___p__acmdln @125 + __p__commode @126 + __p__environ=MSVCRT___p__environ @127 + __p__fmode=MSVCRT___p__fmode @128 + __p__mbcasemap@0 @129 PRIVATE + __p__mbctype @130 + __p__pgmptr=MSVCRT___p__pgmptr @131 + __p__wcmdln=MSVCRT___p__wcmdln @132 + __p__wenviron=MSVCRT___p__wenviron @133 + __p__wpgmptr=MSVCRT___p__wpgmptr @134 + __pctype_func=MSVCRT___pctype_func @135 + __processing_throw @136 + __pwctype_func@0 @137 PRIVATE + __pxcptinfoptrs=MSVCRT___pxcptinfoptrs @138 + __report_gsfailure@0 @139 PRIVATE + __setusermatherr=MSVCRT___setusermatherr @140 + __std_exception_copy=MSVCRT___std_exception_copy @141 + __std_exception_destroy=MSVCRT___std_exception_destroy @142 + __std_type_info_compare=MSVCRT_type_info_compare @143 + __std_type_info_destroy_list=MSVCRT_type_info_destroy_list @144 + __std_type_info_hash=MSVCRT_type_info_hash @145 + __std_type_info_name=MSVCRT_type_info_name_list @146 + __stdio_common_vfprintf=MSVCRT__stdio_common_vfprintf @147 + __stdio_common_vfprintf_p@0 @148 PRIVATE + __stdio_common_vfprintf_s=MSVCRT__stdio_common_vfprintf_s @149 + __stdio_common_vfscanf=MSVCRT__stdio_common_vfscanf @150 + __stdio_common_vfwprintf=MSVCRT__stdio_common_vfwprintf @151 + __stdio_common_vfwprintf_p@0 @152 PRIVATE + __stdio_common_vfwprintf_s=MSVCRT__stdio_common_vfwprintf_s @153 + __stdio_common_vfwscanf=MSVCRT__stdio_common_vfwscanf @154 + __stdio_common_vsnprintf_s=MSVCRT__stdio_common_vsnprintf_s @155 + __stdio_common_vsnwprintf_s=MSVCRT__stdio_common_vsnwprintf_s @156 + __stdio_common_vsprintf=MSVCRT__stdio_common_vsprintf @157 + __stdio_common_vsprintf_p=MSVCRT__stdio_common_vsprintf_p @158 + __stdio_common_vsprintf_s=MSVCRT__stdio_common_vsprintf_s @159 + __stdio_common_vsscanf=MSVCRT__stdio_common_vsscanf @160 + __stdio_common_vswprintf=MSVCRT__stdio_common_vswprintf @161 + __stdio_common_vswprintf_p=MSVCRT__stdio_common_vswprintf_p @162 + __stdio_common_vswprintf_s=MSVCRT__stdio_common_vswprintf_s @163 + __stdio_common_vswscanf=MSVCRT__stdio_common_vswscanf @164 + __strncnt=MSVCRT___strncnt @165 + __sys_errlist @166 + __sys_nerr @167 + __threadhandle=kernel32.GetCurrentThread @168 + __threadid=kernel32.GetCurrentThreadId @169 + __timezone=MSVCRT___p__timezone @170 + __toascii=MSVCRT___toascii @171 + __tzname=__p__tzname @172 + __unDName @173 + __unDNameEx @174 + __uncaught_exception=MSVCRT___uncaught_exception @175 + __wcserror=MSVCRT___wcserror @176 + __wcserror_s=MSVCRT___wcserror_s @177 + __wcsncnt@0 @178 PRIVATE + _abs64 @179 + _access=MSVCRT__access @180 + _access_s=MSVCRT__access_s @181 + _aligned_free @182 + _aligned_malloc @183 + _aligned_msize @184 + _aligned_offset_malloc @185 + _aligned_offset_realloc @186 + _aligned_offset_recalloc@0 @187 PRIVATE + _aligned_realloc @188 + _aligned_recalloc@0 @189 PRIVATE + _assert=MSVCRT__assert @190 + _atodbl=MSVCRT__atodbl @191 + _atodbl_l=MSVCRT__atodbl_l @192 + _atof_l=MSVCRT__atof_l @193 + _atoflt=MSVCRT__atoflt @194 + _atoflt_l=MSVCRT__atoflt_l @195 + _atoi64=MSVCRT__atoi64 @196 + _atoi64_l=MSVCRT__atoi64_l @197 + _atoi_l=MSVCRT__atoi_l @198 + _atol_l=MSVCRT__atol_l @199 + _atoldbl=MSVCRT__atoldbl @200 + _atoldbl_l@0 @201 PRIVATE + _atoll_l=MSVCRT__atoll_l @202 + _beep=MSVCRT__beep @203 + _beginthread @204 + _beginthreadex @205 + _byteswap_uint64 @206 + _byteswap_ulong=MSVCRT__byteswap_ulong @207 + _byteswap_ushort @208 + _c_exit=MSVCRT__c_exit @209 + _cabs=MSVCRT__cabs @210 + _callnewh @211 + _calloc_base @212 + _cexit=MSVCRT__cexit @213 + _cgets @214 + _cgets_s@0 @215 PRIVATE + _cgetws@0 @216 PRIVATE + _cgetws_s@0 @217 PRIVATE + _chdir=MSVCRT__chdir @218 + _chdrive=MSVCRT__chdrive @219 + _chgsign=MSVCRT__chgsign @220 + _chgsignf=MSVCRT__chgsignf @221 + _chkesp @222 + _chmod=MSVCRT__chmod @223 + _chsize=MSVCRT__chsize @224 + _chsize_s=MSVCRT__chsize_s @225 + _clearfp @226 + _close=MSVCRT__close @227 + _commit=MSVCRT__commit @228 + _configthreadlocale @229 + _configure_narrow_argv @230 + _configure_wide_argv @231 + _control87 @232 + _controlfp @233 + _controlfp_s @234 + _copysign=MSVCRT__copysign @235 + _copysignf=MSVCRT__copysignf @236 + _cputs @237 + _cputws @238 + _creat=MSVCRT__creat @239 + _create_locale=MSVCRT__create_locale @240 + _crt_at_quick_exit=MSVCRT__crt_at_quick_exit @241 + _crt_atexit=MSVCRT__crt_atexit @242 + _crt_debugger_hook=MSVCRT__crt_debugger_hook @243 + _ctime32=MSVCRT__ctime32 @244 + _ctime32_s=MSVCRT__ctime32_s @245 + _ctime64=MSVCRT__ctime64 @246 + _ctime64_s=MSVCRT__ctime64_s @247 + _cwait @248 + _d_int@0 @249 PRIVATE + _dclass=MSVCR120__dclass @250 + _dexp@0 @251 PRIVATE + _difftime32=MSVCRT__difftime32 @252 + _difftime64=MSVCRT__difftime64 @253 + _dlog@0 @254 PRIVATE + _dnorm@0 @255 PRIVATE + _dpcomp=MSVCR120__dpcomp @256 + _dpoly@0 @257 PRIVATE + _dscale@0 @258 PRIVATE + _dsign=MSVCR120__dsign @259 + _dsin@0 @260 PRIVATE + _dtest=MSVCR120__dtest @261 + _dunscale@0 @262 PRIVATE + _dup=MSVCRT__dup @263 + _dup2=MSVCRT__dup2 @264 + _dupenv_s @265 + _ecvt=MSVCRT__ecvt @266 + _ecvt_s=MSVCRT__ecvt_s @267 + _endthread @268 + _endthreadex @269 + _eof=MSVCRT__eof @270 + _errno=MSVCRT__errno @271 + _except1 @272 + _except_handler2 @273 + _except_handler3 @274 + _except_handler4_common @275 + _execl @276 + _execle @277 + _execlp @278 + _execlpe @279 + _execute_onexit_table=MSVCRT__execute_onexit_table @280 + _execv @281 + _execve=MSVCRT__execve @282 + _execvp @283 + _execvpe @284 + _exit=MSVCRT__exit @285 + _expand @286 + _fclose_nolock=MSVCRT__fclose_nolock @287 + _fcloseall=MSVCRT__fcloseall @288 + _fcvt=MSVCRT__fcvt @289 + _fcvt_s=MSVCRT__fcvt_s @290 + _fd_int@0 @291 PRIVATE + _fdclass=MSVCR120__fdclass @292 + _fdexp@0 @293 PRIVATE + _fdlog@0 @294 PRIVATE + _fdnorm@0 @295 PRIVATE + _fdopen=MSVCRT__fdopen @296 + _fdpcomp=MSVCR120__fdpcomp @297 + _fdpoly@0 @298 PRIVATE + _fdscale@0 @299 PRIVATE + _fdsign=MSVCR120__fdsign @300 + _fdsin@0 @301 PRIVATE + _fdtest=MSVCR120__fdtest @302 + _fdunscale@0 @303 PRIVATE + _fflush_nolock=MSVCRT__fflush_nolock @304 + _fgetc_nolock=MSVCRT__fgetc_nolock @305 + _fgetchar=MSVCRT__fgetchar @306 + _fgetwc_nolock=MSVCRT__fgetwc_nolock @307 + _fgetwchar=MSVCRT__fgetwchar @308 + _filelength=MSVCRT__filelength @309 + _filelengthi64=MSVCRT__filelengthi64 @310 + _fileno=MSVCRT__fileno @311 + _findclose=MSVCRT__findclose @312 + _findfirst32=MSVCRT__findfirst32 @313 + _findfirst32i64@0 @314 PRIVATE + _findfirst64=MSVCRT__findfirst64 @315 + _findfirst64i32=MSVCRT__findfirst64i32 @316 + _findnext32=MSVCRT__findnext32 @317 + _findnext32i64@0 @318 PRIVATE + _findnext64=MSVCRT__findnext64 @319 + _findnext64i32=MSVCRT__findnext64i32 @320 + _finite=MSVCRT__finite @321 + _flushall=MSVCRT__flushall @322 + _fpclass=MSVCRT__fpclass @323 + _fpclassf@0 @324 PRIVATE + _fpieee_flt @325 + _fpreset @326 + _fputc_nolock=MSVCRT__fputc_nolock @327 + _fputchar=MSVCRT__fputchar @328 + _fputwc_nolock=MSVCRT__fputwc_nolock @329 + _fputwchar=MSVCRT__fputwchar @330 + _fread_nolock=MSVCRT__fread_nolock @331 + _fread_nolock_s=MSVCRT__fread_nolock_s @332 + _free_base @333 + _free_locale=MSVCRT__free_locale @334 + _fseek_nolock=MSVCRT__fseek_nolock @335 + _fseeki64=MSVCRT__fseeki64 @336 + _fseeki64_nolock=MSVCRT__fseeki64_nolock @337 + _fsopen=MSVCRT__fsopen @338 + _fstat32=MSVCRT__fstat32 @339 + _fstat32i64=MSVCRT__fstat32i64 @340 + _fstat64=MSVCRT__fstat64 @341 + _fstat64i32=MSVCRT__fstat64i32 @342 + _ftell_nolock=MSVCRT__ftell_nolock @343 + _ftelli64=MSVCRT__ftelli64 @344 + _ftelli64_nolock=MSVCRT__ftelli64_nolock @345 + _ftime32=MSVCRT__ftime32 @346 + _ftime32_s=MSVCRT__ftime32_s @347 + _ftime64=MSVCRT__ftime64 @348 + _ftime64_s=MSVCRT__ftime64_s @349 + _ftol=MSVCRT__ftol @350 + _fullpath=MSVCRT__fullpath @351 + _futime32 @352 + _futime64 @353 + _fwrite_nolock=MSVCRT__fwrite_nolock @354 + _gcvt=MSVCRT__gcvt @355 + _gcvt_s=MSVCRT__gcvt_s @356 + _get_FMA3_enable@0 @357 PRIVATE + _get_current_locale=MSVCRT__get_current_locale @358 + _get_daylight @359 + _get_doserrno @360 + _get_dstbias=MSVCRT__get_dstbias @361 + _get_errno @362 + _get_fmode=MSVCRT__get_fmode @363 + _get_heap_handle @364 + _get_initial_narrow_environment @365 + _get_initial_wide_environment @366 + _get_invalid_parameter_handler @367 + _get_narrow_winmain_command_line @368 + _get_osfhandle=MSVCRT__get_osfhandle @369 + _get_pgmptr @370 + _get_printf_count_output=MSVCRT__get_printf_count_output @371 + _get_purecall_handler @372 + _get_stream_buffer_pointers=MSVCRT__get_stream_buffer_pointers @373 + _get_terminate=MSVCRT__get_terminate @374 + _get_thread_local_invalid_parameter_handler @375 + _get_timezone @376 + _get_tzname=MSVCRT__get_tzname @377 + _get_unexpected=MSVCRT__get_unexpected @378 + _get_wide_winmain_command_line @379 + _get_wpgmptr @380 + _getc_nolock=MSVCRT__fgetc_nolock @381 + _getch @382 + _getch_nolock @383 + _getche @384 + _getche_nolock @385 + _getcwd=MSVCRT__getcwd @386 + _getdcwd=MSVCRT__getdcwd @387 + _getdiskfree=MSVCRT__getdiskfree @388 + _getdllprocaddr @389 + _getdrive=MSVCRT__getdrive @390 + _getdrives=kernel32.GetLogicalDrives @391 + _getmaxstdio=MSVCRT__getmaxstdio @392 + _getmbcp @393 + _getpid @394 + _getsystime@4 @395 PRIVATE + _getw=MSVCRT__getw @396 + _getwc_nolock=MSVCRT__fgetwc_nolock @397 + _getwch @398 + _getwch_nolock @399 + _getwche @400 + _getwche_nolock @401 + _getws=MSVCRT__getws @402 + _getws_s@0 @403 PRIVATE + _global_unwind2 @404 + _gmtime32=MSVCRT__gmtime32 @405 + _gmtime32_s=MSVCRT__gmtime32_s @406 + _gmtime64=MSVCRT__gmtime64 @407 + _gmtime64_s=MSVCRT__gmtime64_s @408 + _heapchk @409 + _heapmin @410 + _heapwalk @411 + _hypot @412 + _hypotf=MSVCRT__hypotf @413 + _i64toa=ntdll._i64toa @414 + _i64toa_s=MSVCRT__i64toa_s @415 + _i64tow=ntdll._i64tow @416 + _i64tow_s=MSVCRT__i64tow_s @417 + _initialize_narrow_environment @418 + _initialize_onexit_table=MSVCRT__initialize_onexit_table @419 + _initialize_wide_environment @420 + _initterm @421 + _initterm_e @422 + _invalid_parameter_noinfo @423 + _invalid_parameter_noinfo_noreturn @424 + _invoke_watson@0 @425 PRIVATE + _is_exception_typeof@0 @426 PRIVATE + _isalnum_l=MSVCRT__isalnum_l @427 + _isalpha_l=MSVCRT__isalpha_l @428 + _isatty=MSVCRT__isatty @429 + _isblank_l=MSVCRT__isblank_l @430 + _iscntrl_l=MSVCRT__iscntrl_l @431 + _isctype=MSVCRT__isctype @432 + _isctype_l=MSVCRT__isctype_l @433 + _isdigit_l=MSVCRT__isdigit_l @434 + _isgraph_l=MSVCRT__isgraph_l @435 + _isleadbyte_l=MSVCRT__isleadbyte_l @436 + _islower_l=MSVCRT__islower_l @437 + _ismbbalnum@4 @438 PRIVATE + _ismbbalnum_l@0 @439 PRIVATE + _ismbbalpha@4 @440 PRIVATE + _ismbbalpha_l@0 @441 PRIVATE + _ismbbblank@0 @442 PRIVATE + _ismbbblank_l@0 @443 PRIVATE + _ismbbgraph@4 @444 PRIVATE + _ismbbgraph_l@0 @445 PRIVATE + _ismbbkalnum@4 @446 PRIVATE + _ismbbkalnum_l@0 @447 PRIVATE + _ismbbkana @448 + _ismbbkana_l@0 @449 PRIVATE + _ismbbkprint@4 @450 PRIVATE + _ismbbkprint_l@0 @451 PRIVATE + _ismbbkpunct@4 @452 PRIVATE + _ismbbkpunct_l@0 @453 PRIVATE + _ismbblead @454 + _ismbblead_l @455 + _ismbbprint@4 @456 PRIVATE + _ismbbprint_l@0 @457 PRIVATE + _ismbbpunct@4 @458 PRIVATE + _ismbbpunct_l@0 @459 PRIVATE + _ismbbtrail @460 + _ismbbtrail_l @461 + _ismbcalnum @462 + _ismbcalnum_l@0 @463 PRIVATE + _ismbcalpha @464 + _ismbcalpha_l@0 @465 PRIVATE + _ismbcblank@0 @466 PRIVATE + _ismbcblank_l@0 @467 PRIVATE + _ismbcdigit @468 + _ismbcdigit_l@0 @469 PRIVATE + _ismbcgraph @470 + _ismbcgraph_l@0 @471 PRIVATE + _ismbchira @472 + _ismbchira_l@0 @473 PRIVATE + _ismbckata @474 + _ismbckata_l@0 @475 PRIVATE + _ismbcl0 @476 + _ismbcl0_l @477 + _ismbcl1 @478 + _ismbcl1_l @479 + _ismbcl2 @480 + _ismbcl2_l @481 + _ismbclegal @482 + _ismbclegal_l @483 + _ismbclower@4 @484 PRIVATE + _ismbclower_l@0 @485 PRIVATE + _ismbcprint @486 + _ismbcprint_l@0 @487 PRIVATE + _ismbcpunct @488 + _ismbcpunct_l@0 @489 PRIVATE + _ismbcspace @490 + _ismbcspace_l@0 @491 PRIVATE + _ismbcsymbol @492 + _ismbcsymbol_l@0 @493 PRIVATE + _ismbcupper @494 + _ismbcupper_l@0 @495 PRIVATE + _ismbslead @496 + _ismbslead_l@0 @497 PRIVATE + _ismbstrail @498 + _ismbstrail_l@0 @499 PRIVATE + _isnan=MSVCRT__isnan @500 + _isprint_l=MSVCRT__isprint_l @501 + _ispunct_l@0 @502 PRIVATE + _isspace_l=MSVCRT__isspace_l @503 + _isupper_l=MSVCRT__isupper_l @504 + _iswalnum_l=MSVCRT__iswalnum_l @505 + _iswalpha_l=MSVCRT__iswalpha_l @506 + _iswblank_l=MSVCRT__iswblank_l @507 + _iswcntrl_l=MSVCRT__iswcntrl_l @508 + _iswcsym_l@0 @509 PRIVATE + _iswcsymf_l@0 @510 PRIVATE + _iswctype_l=MSVCRT__iswctype_l @511 + _iswdigit_l=MSVCRT__iswdigit_l @512 + _iswgraph_l=MSVCRT__iswgraph_l @513 + _iswlower_l=MSVCRT__iswlower_l @514 + _iswprint_l=MSVCRT__iswprint_l @515 + _iswpunct_l=MSVCRT__iswpunct_l @516 + _iswspace_l=MSVCRT__iswspace_l @517 + _iswupper_l=MSVCRT__iswupper_l @518 + _iswxdigit_l=MSVCRT__iswxdigit_l @519 + _isxdigit_l=MSVCRT__isxdigit_l @520 + _itoa=MSVCRT__itoa @521 + _itoa_s=MSVCRT__itoa_s @522 + _itow=ntdll._itow @523 + _itow_s=MSVCRT__itow_s @524 + _j0=MSVCRT__j0 @525 + _j1=MSVCRT__j1 @526 + _jn=MSVCRT__jn @527 + _kbhit @528 + _ld_int@0 @529 PRIVATE + _ldclass=MSVCR120__ldclass @530 + _ldexp@0 @531 PRIVATE + _ldlog@0 @532 PRIVATE + _ldpcomp=MSVCR120__dpcomp @533 + _ldpoly@0 @534 PRIVATE + _ldscale@0 @535 PRIVATE + _ldsign=MSVCR120__dsign @536 + _ldsin@0 @537 PRIVATE + _ldtest=MSVCR120__ldtest @538 + _ldunscale@0 @539 PRIVATE + _lfind @540 + _lfind_s @541 + _libm_sse2_acos_precise=MSVCRT___libm_sse2_acos @542 + _libm_sse2_asin_precise=MSVCRT___libm_sse2_asin @543 + _libm_sse2_atan_precise=MSVCRT___libm_sse2_atan @544 + _libm_sse2_cos_precise=MSVCRT___libm_sse2_cos @545 + _libm_sse2_exp_precise=MSVCRT___libm_sse2_exp @546 + _libm_sse2_log10_precise=MSVCRT___libm_sse2_log10 @547 + _libm_sse2_log_precise=MSVCRT___libm_sse2_log @548 + _libm_sse2_pow_precise=MSVCRT___libm_sse2_pow @549 + _libm_sse2_sin_precise=MSVCRT___libm_sse2_sin @550 + _libm_sse2_sqrt_precise=MSVCRT___libm_sse2_sqrt_precise @551 + _libm_sse2_tan_precise=MSVCRT___libm_sse2_tan @552 + _loaddll @553 + _local_unwind2 @554 + _local_unwind4 @555 + _localtime32=MSVCRT__localtime32 @556 + _localtime32_s @557 + _localtime64=MSVCRT__localtime64 @558 + _localtime64_s @559 + _lock_file=MSVCRT__lock_file @560 + _lock_locales @561 + _locking=MSVCRT__locking @562 + _logb=MSVCRT__logb @563 + _longjmpex=MSVCRT_longjmp @564 + _lrotl=MSVCRT__lrotl @565 + _lrotr=MSVCRT__lrotr @566 + _lsearch @567 + _lsearch_s@0 @568 PRIVATE + _lseek=MSVCRT__lseek @569 + _lseeki64=MSVCRT__lseeki64 @570 + _ltoa=ntdll._ltoa @571 + _ltoa_s=MSVCRT__ltoa_s @572 + _ltow=ntdll._ltow @573 + _ltow_s=MSVCRT__ltow_s @574 + _makepath=MSVCRT__makepath @575 + _makepath_s=MSVCRT__makepath_s @576 + _malloc_base @577 + _mbbtombc @578 + _mbbtombc_l@0 @579 PRIVATE + _mbbtype @580 + _mbbtype_l@0 @581 PRIVATE + _mbcasemap@0 @582 PRIVATE + _mbccpy @583 + _mbccpy_l @584 + _mbccpy_s @585 + _mbccpy_s_l @586 + _mbcjistojms @587 + _mbcjistojms_l@0 @588 PRIVATE + _mbcjmstojis @589 + _mbcjmstojis_l@0 @590 PRIVATE + _mbclen @591 + _mbclen_l@0 @592 PRIVATE + _mbctohira @593 + _mbctohira_l@0 @594 PRIVATE + _mbctokata @595 + _mbctokata_l@0 @596 PRIVATE + _mbctolower @597 + _mbctolower_l@0 @598 PRIVATE + _mbctombb @599 + _mbctombb_l@0 @600 PRIVATE + _mbctoupper @601 + _mbctoupper_l@0 @602 PRIVATE + _mblen_l@0 @603 PRIVATE + _mbsbtype @604 + _mbsbtype_l@0 @605 PRIVATE + _mbscat_s @606 + _mbscat_s_l @607 + _mbschr @608 + _mbschr_l@0 @609 PRIVATE + _mbscmp @610 + _mbscmp_l@0 @611 PRIVATE + _mbscoll @612 + _mbscoll_l @613 + _mbscpy_s @614 + _mbscpy_s_l @615 + _mbscspn @616 + _mbscspn_l@0 @617 PRIVATE + _mbsdec @618 + _mbsdec_l@0 @619 PRIVATE + _mbsdup@4 @620 PRIVATE + _mbsicmp @621 + _mbsicmp_l@0 @622 PRIVATE + _mbsicoll @623 + _mbsicoll_l @624 + _mbsinc @625 + _mbsinc_l@0 @626 PRIVATE + _mbslen @627 + _mbslen_l @628 + _mbslwr @629 + _mbslwr_l@0 @630 PRIVATE + _mbslwr_s @631 + _mbslwr_s_l@0 @632 PRIVATE + _mbsnbcat @633 + _mbsnbcat_l@0 @634 PRIVATE + _mbsnbcat_s @635 + _mbsnbcat_s_l@0 @636 PRIVATE + _mbsnbcmp @637 + _mbsnbcmp_l@0 @638 PRIVATE + _mbsnbcnt @639 + _mbsnbcnt_l@0 @640 PRIVATE + _mbsnbcoll @641 + _mbsnbcoll_l @642 + _mbsnbcpy @643 + _mbsnbcpy_l@0 @644 PRIVATE + _mbsnbcpy_s @645 + _mbsnbcpy_s_l @646 + _mbsnbicmp @647 + _mbsnbicmp_l@0 @648 PRIVATE + _mbsnbicoll @649 + _mbsnbicoll_l @650 + _mbsnbset @651 + _mbsnbset_l@0 @652 PRIVATE + _mbsnbset_s@0 @653 PRIVATE + _mbsnbset_s_l@0 @654 PRIVATE + _mbsncat @655 + _mbsncat_l@0 @656 PRIVATE + _mbsncat_s@0 @657 PRIVATE + _mbsncat_s_l@0 @658 PRIVATE + _mbsnccnt @659 + _mbsnccnt_l@0 @660 PRIVATE + _mbsncmp @661 + _mbsncmp_l@0 @662 PRIVATE + _mbsncoll@12 @663 PRIVATE + _mbsncoll_l@0 @664 PRIVATE + _mbsncpy @665 + _mbsncpy_l@0 @666 PRIVATE + _mbsncpy_s@0 @667 PRIVATE + _mbsncpy_s_l@0 @668 PRIVATE + _mbsnextc @669 + _mbsnextc_l@0 @670 PRIVATE + _mbsnicmp @671 + _mbsnicmp_l@0 @672 PRIVATE + _mbsnicoll@12 @673 PRIVATE + _mbsnicoll_l@0 @674 PRIVATE + _mbsninc @675 + _mbsninc_l@0 @676 PRIVATE + _mbsnlen @677 + _mbsnlen_l @678 + _mbsnset @679 + _mbsnset_l@0 @680 PRIVATE + _mbsnset_s@0 @681 PRIVATE + _mbsnset_s_l@0 @682 PRIVATE + _mbspbrk @683 + _mbspbrk_l@0 @684 PRIVATE + _mbsrchr @685 + _mbsrchr_l@0 @686 PRIVATE + _mbsrev @687 + _mbsrev_l@0 @688 PRIVATE + _mbsset @689 + _mbsset_l@0 @690 PRIVATE + _mbsset_s@0 @691 PRIVATE + _mbsset_s_l@0 @692 PRIVATE + _mbsspn @693 + _mbsspn_l@0 @694 PRIVATE + _mbsspnp @695 + _mbsspnp_l@0 @696 PRIVATE + _mbsstr @697 + _mbsstr_l@0 @698 PRIVATE + _mbstok @699 + _mbstok_l @700 + _mbstok_s @701 + _mbstok_s_l @702 + _mbstowcs_l=MSVCRT__mbstowcs_l @703 + _mbstowcs_s_l=MSVCRT__mbstowcs_s_l @704 + _mbstrlen @705 + _mbstrlen_l @706 + _mbstrnlen@0 @707 PRIVATE + _mbstrnlen_l@0 @708 PRIVATE + _mbsupr @709 + _mbsupr_l@0 @710 PRIVATE + _mbsupr_s @711 + _mbsupr_s_l@0 @712 PRIVATE + _mbtowc_l=MSVCRT_mbtowc_l @713 + _memccpy=ntdll._memccpy @714 + _memicmp=MSVCRT__memicmp @715 + _memicmp_l=MSVCRT__memicmp_l @716 + _mkdir=MSVCRT__mkdir @717 + _mkgmtime32=MSVCRT__mkgmtime32 @718 + _mkgmtime64=MSVCRT__mkgmtime64 @719 + _mktemp=MSVCRT__mktemp @720 + _mktemp_s=MSVCRT__mktemp_s @721 + _mktime32=MSVCRT__mktime32 @722 + _mktime64=MSVCRT__mktime64 @723 + _msize @724 + _nextafter=MSVCRT__nextafter @725 + _o__CIacos@0 @726 PRIVATE + _o__CIasin@0 @727 PRIVATE + _o__CIatan@0 @728 PRIVATE + _o__CIatan2@0 @729 PRIVATE + _o__CIcos@0 @730 PRIVATE + _o__CIcosh@0 @731 PRIVATE + _o__CIexp@0 @732 PRIVATE + _o__CIfmod@0 @733 PRIVATE + _o__CIlog@0 @734 PRIVATE + _o__CIlog10@0 @735 PRIVATE + _o__CIpow@0 @736 PRIVATE + _o__CIsin@0 @737 PRIVATE + _o__CIsinh@0 @738 PRIVATE + _o__CIsqrt@0 @739 PRIVATE + _o__CItan@0 @740 PRIVATE + _o__CItanh@0 @741 PRIVATE + _o__Getdays@0 @742 PRIVATE + _o__Getmonths@0 @743 PRIVATE + _o__Gettnames@0 @744 PRIVATE + _o__Strftime@0 @745 PRIVATE + _o__W_Getdays@0 @746 PRIVATE + _o__W_Getmonths@0 @747 PRIVATE + _o__W_Gettnames@0 @748 PRIVATE + _o__Wcsftime@0 @749 PRIVATE + _o____lc_codepage_func@0 @750 PRIVATE + _o____lc_collate_cp_func@0 @751 PRIVATE + _o____lc_locale_name_func@0 @752 PRIVATE + _o____mb_cur_max_func@0 @753 PRIVATE + _o___acrt_iob_func=MSVCRT___acrt_iob_func @754 + _o___conio_common_vcprintf@0 @755 PRIVATE + _o___conio_common_vcprintf_p@0 @756 PRIVATE + _o___conio_common_vcprintf_s@0 @757 PRIVATE + _o___conio_common_vcscanf@0 @758 PRIVATE + _o___conio_common_vcwprintf@0 @759 PRIVATE + _o___conio_common_vcwprintf_p@0 @760 PRIVATE + _o___conio_common_vcwprintf_s@0 @761 PRIVATE + _o___conio_common_vcwscanf@0 @762 PRIVATE + _o___daylight@0 @763 PRIVATE + _o___dstbias@0 @764 PRIVATE + _o___fpe_flt_rounds@0 @765 PRIVATE + _o___libm_sse2_acos@0 @766 PRIVATE + _o___libm_sse2_acosf@0 @767 PRIVATE + _o___libm_sse2_asin@0 @768 PRIVATE + _o___libm_sse2_asinf@0 @769 PRIVATE + _o___libm_sse2_atan@0 @770 PRIVATE + _o___libm_sse2_atan2@0 @771 PRIVATE + _o___libm_sse2_atanf@0 @772 PRIVATE + _o___libm_sse2_cos@0 @773 PRIVATE + _o___libm_sse2_cosf@0 @774 PRIVATE + _o___libm_sse2_exp@0 @775 PRIVATE + _o___libm_sse2_expf@0 @776 PRIVATE + _o___libm_sse2_log@0 @777 PRIVATE + _o___libm_sse2_log10@0 @778 PRIVATE + _o___libm_sse2_log10f@0 @779 PRIVATE + _o___libm_sse2_logf@0 @780 PRIVATE + _o___libm_sse2_pow@0 @781 PRIVATE + _o___libm_sse2_powf@0 @782 PRIVATE + _o___libm_sse2_sin@0 @783 PRIVATE + _o___libm_sse2_sinf@0 @784 PRIVATE + _o___libm_sse2_tan@0 @785 PRIVATE + _o___libm_sse2_tanf@0 @786 PRIVATE + _o___p___argc=MSVCRT___p___argc @787 + _o___p___argv@0 @788 PRIVATE + _o___p___wargv=MSVCRT___p___wargv @789 + _o___p__acmdln@0 @790 PRIVATE + _o___p__commode=__p__commode @791 + _o___p__environ@0 @792 PRIVATE + _o___p__fmode@0 @793 PRIVATE + _o___p__mbcasemap@0 @794 PRIVATE + _o___p__mbctype@0 @795 PRIVATE + _o___p__pgmptr@0 @796 PRIVATE + _o___p__wcmdln@0 @797 PRIVATE + _o___p__wenviron@0 @798 PRIVATE + _o___p__wpgmptr@0 @799 PRIVATE + _o___pctype_func@0 @800 PRIVATE + _o___pwctype_func@0 @801 PRIVATE + _o___std_exception_copy@0 @802 PRIVATE + _o___std_exception_destroy=MSVCRT___std_exception_destroy @803 + _o___std_type_info_destroy_list=MSVCRT_type_info_destroy_list @804 + _o___std_type_info_name@0 @805 PRIVATE + _o___stdio_common_vfprintf=MSVCRT__stdio_common_vfprintf @806 + _o___stdio_common_vfprintf_p@0 @807 PRIVATE + _o___stdio_common_vfprintf_s@0 @808 PRIVATE + _o___stdio_common_vfscanf@0 @809 PRIVATE + _o___stdio_common_vfwprintf@0 @810 PRIVATE + _o___stdio_common_vfwprintf_p@0 @811 PRIVATE + _o___stdio_common_vfwprintf_s@0 @812 PRIVATE + _o___stdio_common_vfwscanf@0 @813 PRIVATE + _o___stdio_common_vsnprintf_s=MSVCRT__stdio_common_vsnprintf_s @814 + _o___stdio_common_vsnwprintf_s@0 @815 PRIVATE + _o___stdio_common_vsprintf@0 @816 PRIVATE + _o___stdio_common_vsprintf_p@0 @817 PRIVATE + _o___stdio_common_vsprintf_s=MSVCRT__stdio_common_vsprintf_s @818 + _o___stdio_common_vsscanf@0 @819 PRIVATE + _o___stdio_common_vswprintf@0 @820 PRIVATE + _o___stdio_common_vswprintf_p@0 @821 PRIVATE + _o___stdio_common_vswprintf_s@0 @822 PRIVATE + _o___stdio_common_vswscanf@0 @823 PRIVATE + _o___timezone@0 @824 PRIVATE + _o___tzname@0 @825 PRIVATE + _o___wcserror@0 @826 PRIVATE + _o__access@0 @827 PRIVATE + _o__access_s@0 @828 PRIVATE + _o__aligned_free@0 @829 PRIVATE + _o__aligned_malloc@0 @830 PRIVATE + _o__aligned_msize@0 @831 PRIVATE + _o__aligned_offset_malloc@0 @832 PRIVATE + _o__aligned_offset_realloc@0 @833 PRIVATE + _o__aligned_offset_recalloc@0 @834 PRIVATE + _o__aligned_realloc@0 @835 PRIVATE + _o__aligned_recalloc@0 @836 PRIVATE + _o__atodbl@0 @837 PRIVATE + _o__atodbl_l@0 @838 PRIVATE + _o__atof_l@0 @839 PRIVATE + _o__atoflt@0 @840 PRIVATE + _o__atoflt_l@0 @841 PRIVATE + _o__atoi64@0 @842 PRIVATE + _o__atoi64_l@0 @843 PRIVATE + _o__atoi_l@0 @844 PRIVATE + _o__atol_l@0 @845 PRIVATE + _o__atoldbl@0 @846 PRIVATE + _o__atoldbl_l@0 @847 PRIVATE + _o__atoll_l@0 @848 PRIVATE + _o__beep@0 @849 PRIVATE + _o__beginthread@0 @850 PRIVATE + _o__beginthreadex@0 @851 PRIVATE + _o__cabs@0 @852 PRIVATE + _o__callnewh@0 @853 PRIVATE + _o__calloc_base@0 @854 PRIVATE + _o__cexit@0 @855 PRIVATE + _o__cgets@0 @856 PRIVATE + _o__cgets_s@0 @857 PRIVATE + _o__cgetws@0 @858 PRIVATE + _o__cgetws_s@0 @859 PRIVATE + _o__chdir@0 @860 PRIVATE + _o__chdrive@0 @861 PRIVATE + _o__chmod@0 @862 PRIVATE + _o__chsize@0 @863 PRIVATE + _o__chsize_s@0 @864 PRIVATE + _o__close@0 @865 PRIVATE + _o__commit@0 @866 PRIVATE + _o__configthreadlocale=_configthreadlocale @867 + _o__configure_narrow_argv@0 @868 PRIVATE + _o__configure_wide_argv=_configure_wide_argv @869 + _o__controlfp_s=_controlfp_s @870 + _o__cputs@0 @871 PRIVATE + _o__cputws@0 @872 PRIVATE + _o__creat@0 @873 PRIVATE + _o__create_locale@0 @874 PRIVATE + _o__crt_atexit=MSVCRT__crt_atexit @875 + _o__ctime32_s@0 @876 PRIVATE + _o__ctime64_s@0 @877 PRIVATE + _o__cwait@0 @878 PRIVATE + _o__d_int@0 @879 PRIVATE + _o__dclass@0 @880 PRIVATE + _o__difftime32@0 @881 PRIVATE + _o__difftime64@0 @882 PRIVATE + _o__dlog@0 @883 PRIVATE + _o__dnorm@0 @884 PRIVATE + _o__dpcomp@0 @885 PRIVATE + _o__dpoly@0 @886 PRIVATE + _o__dscale@0 @887 PRIVATE + _o__dsign@0 @888 PRIVATE + _o__dsin@0 @889 PRIVATE + _o__dtest@0 @890 PRIVATE + _o__dunscale@0 @891 PRIVATE + _o__dup@0 @892 PRIVATE + _o__dup2@0 @893 PRIVATE + _o__dupenv_s@0 @894 PRIVATE + _o__ecvt@0 @895 PRIVATE + _o__ecvt_s@0 @896 PRIVATE + _o__endthread@0 @897 PRIVATE + _o__endthreadex@0 @898 PRIVATE + _o__eof@0 @899 PRIVATE + _o__errno=MSVCRT__errno @900 + _o__except1@0 @901 PRIVATE + _o__execute_onexit_table=MSVCRT__execute_onexit_table @902 + _o__execv@0 @903 PRIVATE + _o__execve@0 @904 PRIVATE + _o__execvp@0 @905 PRIVATE + _o__execvpe@0 @906 PRIVATE + _o__exit@0 @907 PRIVATE + _o__expand@0 @908 PRIVATE + _o__fclose_nolock@0 @909 PRIVATE + _o__fcloseall@0 @910 PRIVATE + _o__fcvt@0 @911 PRIVATE + _o__fcvt_s@0 @912 PRIVATE + _o__fd_int@0 @913 PRIVATE + _o__fdclass@0 @914 PRIVATE + _o__fdexp@0 @915 PRIVATE + _o__fdlog@0 @916 PRIVATE + _o__fdopen@0 @917 PRIVATE + _o__fdpcomp@0 @918 PRIVATE + _o__fdpoly@0 @919 PRIVATE + _o__fdscale@0 @920 PRIVATE + _o__fdsign@0 @921 PRIVATE + _o__fdsin@0 @922 PRIVATE + _o__fflush_nolock@0 @923 PRIVATE + _o__fgetc_nolock@0 @924 PRIVATE + _o__fgetchar@0 @925 PRIVATE + _o__fgetwc_nolock@0 @926 PRIVATE + _o__fgetwchar@0 @927 PRIVATE + _o__filelength@0 @928 PRIVATE + _o__filelengthi64@0 @929 PRIVATE + _o__fileno@0 @930 PRIVATE + _o__findclose@0 @931 PRIVATE + _o__findfirst32@0 @932 PRIVATE + _o__findfirst32i64@0 @933 PRIVATE + _o__findfirst64@0 @934 PRIVATE + _o__findfirst64i32@0 @935 PRIVATE + _o__findnext32@0 @936 PRIVATE + _o__findnext32i64@0 @937 PRIVATE + _o__findnext64@0 @938 PRIVATE + _o__findnext64i32@0 @939 PRIVATE + _o__flushall@0 @940 PRIVATE + _o__fpclass=MSVCRT__fpclass @941 + _o__fpclassf@0 @942 PRIVATE + _o__fputc_nolock@0 @943 PRIVATE + _o__fputchar@0 @944 PRIVATE + _o__fputwc_nolock@0 @945 PRIVATE + _o__fputwchar@0 @946 PRIVATE + _o__fread_nolock@0 @947 PRIVATE + _o__fread_nolock_s@0 @948 PRIVATE + _o__free_base@0 @949 PRIVATE + _o__free_locale@0 @950 PRIVATE + _o__fseek_nolock@0 @951 PRIVATE + _o__fseeki64@0 @952 PRIVATE + _o__fseeki64_nolock@0 @953 PRIVATE + _o__fsopen@0 @954 PRIVATE + _o__fstat32@0 @955 PRIVATE + _o__fstat32i64@0 @956 PRIVATE + _o__fstat64@0 @957 PRIVATE + _o__fstat64i32@0 @958 PRIVATE + _o__ftell_nolock@0 @959 PRIVATE + _o__ftelli64@0 @960 PRIVATE + _o__ftelli64_nolock@0 @961 PRIVATE + _o__ftime32@0 @962 PRIVATE + _o__ftime32_s@0 @963 PRIVATE + _o__ftime64@0 @964 PRIVATE + _o__ftime64_s@0 @965 PRIVATE + _o__fullpath@0 @966 PRIVATE + _o__futime32@0 @967 PRIVATE + _o__futime64@0 @968 PRIVATE + _o__fwrite_nolock@0 @969 PRIVATE + _o__gcvt@0 @970 PRIVATE + _o__gcvt_s@0 @971 PRIVATE + _o__get_daylight@0 @972 PRIVATE + _o__get_doserrno@0 @973 PRIVATE + _o__get_dstbias@0 @974 PRIVATE + _o__get_errno@0 @975 PRIVATE + _o__get_fmode@0 @976 PRIVATE + _o__get_heap_handle@0 @977 PRIVATE + _o__get_initial_narrow_environment@0 @978 PRIVATE + _o__get_initial_wide_environment=_get_initial_wide_environment @979 + _o__get_invalid_parameter_handler@0 @980 PRIVATE + _o__get_narrow_winmain_command_line@0 @981 PRIVATE + _o__get_osfhandle@0 @982 PRIVATE + _o__get_pgmptr@0 @983 PRIVATE + _o__get_stream_buffer_pointers@0 @984 PRIVATE + _o__get_terminate@0 @985 PRIVATE + _o__get_thread_local_invalid_parameter_handler@0 @986 PRIVATE + _o__get_timezone@0 @987 PRIVATE + _o__get_tzname@0 @988 PRIVATE + _o__get_wide_winmain_command_line@0 @989 PRIVATE + _o__get_wpgmptr@0 @990 PRIVATE + _o__getc_nolock@0 @991 PRIVATE + _o__getch@0 @992 PRIVATE + _o__getch_nolock@0 @993 PRIVATE + _o__getche@0 @994 PRIVATE + _o__getche_nolock@0 @995 PRIVATE + _o__getcwd@0 @996 PRIVATE + _o__getdcwd@0 @997 PRIVATE + _o__getdiskfree@0 @998 PRIVATE + _o__getdllprocaddr@0 @999 PRIVATE + _o__getdrive@0 @1000 PRIVATE + _o__getdrives@0 @1001 PRIVATE + _o__getmbcp@0 @1002 PRIVATE + _o__getsystime@0 @1003 PRIVATE + _o__getw@0 @1004 PRIVATE + _o__getwc_nolock@0 @1005 PRIVATE + _o__getwch@0 @1006 PRIVATE + _o__getwch_nolock@0 @1007 PRIVATE + _o__getwche@0 @1008 PRIVATE + _o__getwche_nolock@0 @1009 PRIVATE + _o__getws@0 @1010 PRIVATE + _o__getws_s@0 @1011 PRIVATE + _o__gmtime32@0 @1012 PRIVATE + _o__gmtime32_s@0 @1013 PRIVATE + _o__gmtime64@0 @1014 PRIVATE + _o__gmtime64_s@0 @1015 PRIVATE + _o__heapchk@0 @1016 PRIVATE + _o__heapmin@0 @1017 PRIVATE + _o__hypot@0 @1018 PRIVATE + _o__hypotf@0 @1019 PRIVATE + _o__i64toa@0 @1020 PRIVATE + _o__i64toa_s@0 @1021 PRIVATE + _o__i64tow@0 @1022 PRIVATE + _o__i64tow_s@0 @1023 PRIVATE + _o__initialize_narrow_environment@0 @1024 PRIVATE + _o__initialize_onexit_table=MSVCRT__initialize_onexit_table @1025 + _o__initialize_wide_environment=_initialize_wide_environment @1026 + _o__invalid_parameter_noinfo@0 @1027 PRIVATE + _o__invalid_parameter_noinfo_noreturn@0 @1028 PRIVATE + _o__isatty@0 @1029 PRIVATE + _o__isctype@0 @1030 PRIVATE + _o__isctype_l@0 @1031 PRIVATE + _o__isleadbyte_l@0 @1032 PRIVATE + _o__ismbbalnum@0 @1033 PRIVATE + _o__ismbbalnum_l@0 @1034 PRIVATE + _o__ismbbalpha@0 @1035 PRIVATE + _o__ismbbalpha_l@0 @1036 PRIVATE + _o__ismbbblank@0 @1037 PRIVATE + _o__ismbbblank_l@0 @1038 PRIVATE + _o__ismbbgraph@0 @1039 PRIVATE + _o__ismbbgraph_l@0 @1040 PRIVATE + _o__ismbbkalnum@0 @1041 PRIVATE + _o__ismbbkalnum_l@0 @1042 PRIVATE + _o__ismbbkana@0 @1043 PRIVATE + _o__ismbbkana_l@0 @1044 PRIVATE + _o__ismbbkprint@0 @1045 PRIVATE + _o__ismbbkprint_l@0 @1046 PRIVATE + _o__ismbbkpunct@0 @1047 PRIVATE + _o__ismbbkpunct_l@0 @1048 PRIVATE + _o__ismbblead@0 @1049 PRIVATE + _o__ismbblead_l@0 @1050 PRIVATE + _o__ismbbprint@0 @1051 PRIVATE + _o__ismbbprint_l@0 @1052 PRIVATE + _o__ismbbpunct@0 @1053 PRIVATE + _o__ismbbpunct_l@0 @1054 PRIVATE + _o__ismbbtrail@0 @1055 PRIVATE + _o__ismbbtrail_l@0 @1056 PRIVATE + _o__ismbcalnum@0 @1057 PRIVATE + _o__ismbcalnum_l@0 @1058 PRIVATE + _o__ismbcalpha@0 @1059 PRIVATE + _o__ismbcalpha_l@0 @1060 PRIVATE + _o__ismbcblank@0 @1061 PRIVATE + _o__ismbcblank_l@0 @1062 PRIVATE + _o__ismbcdigit@0 @1063 PRIVATE + _o__ismbcdigit_l@0 @1064 PRIVATE + _o__ismbcgraph@0 @1065 PRIVATE + _o__ismbcgraph_l@0 @1066 PRIVATE + _o__ismbchira@0 @1067 PRIVATE + _o__ismbchira_l@0 @1068 PRIVATE + _o__ismbckata@0 @1069 PRIVATE + _o__ismbckata_l@0 @1070 PRIVATE + _o__ismbcl0@0 @1071 PRIVATE + _o__ismbcl0_l@0 @1072 PRIVATE + _o__ismbcl1@0 @1073 PRIVATE + _o__ismbcl1_l@0 @1074 PRIVATE + _o__ismbcl2@0 @1075 PRIVATE + _o__ismbcl2_l@0 @1076 PRIVATE + _o__ismbclegal@0 @1077 PRIVATE + _o__ismbclegal_l@0 @1078 PRIVATE + _o__ismbclower@0 @1079 PRIVATE + _o__ismbclower_l@0 @1080 PRIVATE + _o__ismbcprint@0 @1081 PRIVATE + _o__ismbcprint_l@0 @1082 PRIVATE + _o__ismbcpunct@0 @1083 PRIVATE + _o__ismbcpunct_l@0 @1084 PRIVATE + _o__ismbcspace@0 @1085 PRIVATE + _o__ismbcspace_l@0 @1086 PRIVATE + _o__ismbcsymbol@0 @1087 PRIVATE + _o__ismbcsymbol_l@0 @1088 PRIVATE + _o__ismbcupper@0 @1089 PRIVATE + _o__ismbcupper_l@0 @1090 PRIVATE + _o__ismbslead@0 @1091 PRIVATE + _o__ismbslead_l@0 @1092 PRIVATE + _o__ismbstrail@0 @1093 PRIVATE + _o__ismbstrail_l@0 @1094 PRIVATE + _o__iswctype_l@0 @1095 PRIVATE + _o__itoa@0 @1096 PRIVATE + _o__itoa_s@0 @1097 PRIVATE + _o__itow@0 @1098 PRIVATE + _o__itow_s@0 @1099 PRIVATE + _o__j0@0 @1100 PRIVATE + _o__j1@0 @1101 PRIVATE + _o__jn@0 @1102 PRIVATE + _o__kbhit@0 @1103 PRIVATE + _o__ld_int@0 @1104 PRIVATE + _o__ldclass@0 @1105 PRIVATE + _o__ldexp@0 @1106 PRIVATE + _o__ldlog@0 @1107 PRIVATE + _o__ldpcomp@0 @1108 PRIVATE + _o__ldpoly@0 @1109 PRIVATE + _o__ldscale@0 @1110 PRIVATE + _o__ldsign@0 @1111 PRIVATE + _o__ldsin@0 @1112 PRIVATE + _o__ldtest@0 @1113 PRIVATE + _o__ldunscale@0 @1114 PRIVATE + _o__lfind@0 @1115 PRIVATE + _o__lfind_s@0 @1116 PRIVATE + _o__libm_sse2_acos_precise@0 @1117 PRIVATE + _o__libm_sse2_asin_precise@0 @1118 PRIVATE + _o__libm_sse2_atan_precise@0 @1119 PRIVATE + _o__libm_sse2_cos_precise@0 @1120 PRIVATE + _o__libm_sse2_exp_precise@0 @1121 PRIVATE + _o__libm_sse2_log10_precise@0 @1122 PRIVATE + _o__libm_sse2_log_precise@0 @1123 PRIVATE + _o__libm_sse2_pow_precise@0 @1124 PRIVATE + _o__libm_sse2_sin_precise@0 @1125 PRIVATE + _o__libm_sse2_sqrt_precise@0 @1126 PRIVATE + _o__libm_sse2_tan_precise@0 @1127 PRIVATE + _o__loaddll@0 @1128 PRIVATE + _o__localtime32@0 @1129 PRIVATE + _o__localtime32_s@0 @1130 PRIVATE + _o__localtime64@0 @1131 PRIVATE + _o__localtime64_s@0 @1132 PRIVATE + _o__lock_file@0 @1133 PRIVATE + _o__locking@0 @1134 PRIVATE + _o__logb@0 @1135 PRIVATE + _o__logbf@0 @1136 PRIVATE + _o__lsearch@0 @1137 PRIVATE + _o__lsearch_s@0 @1138 PRIVATE + _o__lseek@0 @1139 PRIVATE + _o__lseeki64@0 @1140 PRIVATE + _o__ltoa@0 @1141 PRIVATE + _o__ltoa_s@0 @1142 PRIVATE + _o__ltow@0 @1143 PRIVATE + _o__ltow_s@0 @1144 PRIVATE + _o__makepath@0 @1145 PRIVATE + _o__makepath_s@0 @1146 PRIVATE + _o__malloc_base@0 @1147 PRIVATE + _o__mbbtombc@0 @1148 PRIVATE + _o__mbbtombc_l@0 @1149 PRIVATE + _o__mbbtype@0 @1150 PRIVATE + _o__mbbtype_l@0 @1151 PRIVATE + _o__mbccpy@0 @1152 PRIVATE + _o__mbccpy_l@0 @1153 PRIVATE + _o__mbccpy_s@0 @1154 PRIVATE + _o__mbccpy_s_l@0 @1155 PRIVATE + _o__mbcjistojms@0 @1156 PRIVATE + _o__mbcjistojms_l@0 @1157 PRIVATE + _o__mbcjmstojis@0 @1158 PRIVATE + _o__mbcjmstojis_l@0 @1159 PRIVATE + _o__mbclen@0 @1160 PRIVATE + _o__mbclen_l@0 @1161 PRIVATE + _o__mbctohira@0 @1162 PRIVATE + _o__mbctohira_l@0 @1163 PRIVATE + _o__mbctokata@0 @1164 PRIVATE + _o__mbctokata_l@0 @1165 PRIVATE + _o__mbctolower@0 @1166 PRIVATE + _o__mbctolower_l@0 @1167 PRIVATE + _o__mbctombb@0 @1168 PRIVATE + _o__mbctombb_l@0 @1169 PRIVATE + _o__mbctoupper@0 @1170 PRIVATE + _o__mbctoupper_l@0 @1171 PRIVATE + _o__mblen_l@0 @1172 PRIVATE + _o__mbsbtype@0 @1173 PRIVATE + _o__mbsbtype_l@0 @1174 PRIVATE + _o__mbscat_s@0 @1175 PRIVATE + _o__mbscat_s_l@0 @1176 PRIVATE + _o__mbschr@0 @1177 PRIVATE + _o__mbschr_l@0 @1178 PRIVATE + _o__mbscmp@0 @1179 PRIVATE + _o__mbscmp_l@0 @1180 PRIVATE + _o__mbscoll@0 @1181 PRIVATE + _o__mbscoll_l@0 @1182 PRIVATE + _o__mbscpy_s@0 @1183 PRIVATE + _o__mbscpy_s_l@0 @1184 PRIVATE + _o__mbscspn@0 @1185 PRIVATE + _o__mbscspn_l@0 @1186 PRIVATE + _o__mbsdec@0 @1187 PRIVATE + _o__mbsdec_l@0 @1188 PRIVATE + _o__mbsicmp@0 @1189 PRIVATE + _o__mbsicmp_l@0 @1190 PRIVATE + _o__mbsicoll@0 @1191 PRIVATE + _o__mbsicoll_l@0 @1192 PRIVATE + _o__mbsinc@0 @1193 PRIVATE + _o__mbsinc_l@0 @1194 PRIVATE + _o__mbslen@0 @1195 PRIVATE + _o__mbslen_l@0 @1196 PRIVATE + _o__mbslwr@0 @1197 PRIVATE + _o__mbslwr_l@0 @1198 PRIVATE + _o__mbslwr_s@0 @1199 PRIVATE + _o__mbslwr_s_l@0 @1200 PRIVATE + _o__mbsnbcat@0 @1201 PRIVATE + _o__mbsnbcat_l@0 @1202 PRIVATE + _o__mbsnbcat_s@0 @1203 PRIVATE + _o__mbsnbcat_s_l@0 @1204 PRIVATE + _o__mbsnbcmp@0 @1205 PRIVATE + _o__mbsnbcmp_l@0 @1206 PRIVATE + _o__mbsnbcnt@0 @1207 PRIVATE + _o__mbsnbcnt_l@0 @1208 PRIVATE + _o__mbsnbcoll@0 @1209 PRIVATE + _o__mbsnbcoll_l@0 @1210 PRIVATE + _o__mbsnbcpy@0 @1211 PRIVATE + _o__mbsnbcpy_l@0 @1212 PRIVATE + _o__mbsnbcpy_s@0 @1213 PRIVATE + _o__mbsnbcpy_s_l@0 @1214 PRIVATE + _o__mbsnbicmp@0 @1215 PRIVATE + _o__mbsnbicmp_l@0 @1216 PRIVATE + _o__mbsnbicoll@0 @1217 PRIVATE + _o__mbsnbicoll_l@0 @1218 PRIVATE + _o__mbsnbset@0 @1219 PRIVATE + _o__mbsnbset_l@0 @1220 PRIVATE + _o__mbsnbset_s@0 @1221 PRIVATE + _o__mbsnbset_s_l@0 @1222 PRIVATE + _o__mbsncat@0 @1223 PRIVATE + _o__mbsncat_l@0 @1224 PRIVATE + _o__mbsncat_s@0 @1225 PRIVATE + _o__mbsncat_s_l@0 @1226 PRIVATE + _o__mbsnccnt@0 @1227 PRIVATE + _o__mbsnccnt_l@0 @1228 PRIVATE + _o__mbsncmp@0 @1229 PRIVATE + _o__mbsncmp_l@0 @1230 PRIVATE + _o__mbsncoll@0 @1231 PRIVATE + _o__mbsncoll_l@0 @1232 PRIVATE + _o__mbsncpy@0 @1233 PRIVATE + _o__mbsncpy_l@0 @1234 PRIVATE + _o__mbsncpy_s@0 @1235 PRIVATE + _o__mbsncpy_s_l@0 @1236 PRIVATE + _o__mbsnextc@0 @1237 PRIVATE + _o__mbsnextc_l@0 @1238 PRIVATE + _o__mbsnicmp@0 @1239 PRIVATE + _o__mbsnicmp_l@0 @1240 PRIVATE + _o__mbsnicoll@0 @1241 PRIVATE + _o__mbsnicoll_l@0 @1242 PRIVATE + _o__mbsninc@0 @1243 PRIVATE + _o__mbsninc_l@0 @1244 PRIVATE + _o__mbsnlen@0 @1245 PRIVATE + _o__mbsnlen_l@0 @1246 PRIVATE + _o__mbsnset@0 @1247 PRIVATE + _o__mbsnset_l@0 @1248 PRIVATE + _o__mbsnset_s@0 @1249 PRIVATE + _o__mbsnset_s_l@0 @1250 PRIVATE + _o__mbspbrk@0 @1251 PRIVATE + _o__mbspbrk_l@0 @1252 PRIVATE + _o__mbsrchr@0 @1253 PRIVATE + _o__mbsrchr_l@0 @1254 PRIVATE + _o__mbsrev@0 @1255 PRIVATE + _o__mbsrev_l@0 @1256 PRIVATE + _o__mbsset@0 @1257 PRIVATE + _o__mbsset_l@0 @1258 PRIVATE + _o__mbsset_s@0 @1259 PRIVATE + _o__mbsset_s_l@0 @1260 PRIVATE + _o__mbsspn@0 @1261 PRIVATE + _o__mbsspn_l@0 @1262 PRIVATE + _o__mbsspnp@0 @1263 PRIVATE + _o__mbsspnp_l@0 @1264 PRIVATE + _o__mbsstr@0 @1265 PRIVATE + _o__mbsstr_l@0 @1266 PRIVATE + _o__mbstok@0 @1267 PRIVATE + _o__mbstok_l@0 @1268 PRIVATE + _o__mbstok_s@0 @1269 PRIVATE + _o__mbstok_s_l@0 @1270 PRIVATE + _o__mbstowcs_l@0 @1271 PRIVATE + _o__mbstowcs_s_l@0 @1272 PRIVATE + _o__mbstrlen@0 @1273 PRIVATE + _o__mbstrlen_l@0 @1274 PRIVATE + _o__mbstrnlen@0 @1275 PRIVATE + _o__mbstrnlen_l@0 @1276 PRIVATE + _o__mbsupr@0 @1277 PRIVATE + _o__mbsupr_l@0 @1278 PRIVATE + _o__mbsupr_s@0 @1279 PRIVATE + _o__mbsupr_s_l@0 @1280 PRIVATE + _o__mbtowc_l@0 @1281 PRIVATE + _o__memicmp@0 @1282 PRIVATE + _o__memicmp_l@0 @1283 PRIVATE + _o__mkdir@0 @1284 PRIVATE + _o__mkgmtime32@0 @1285 PRIVATE + _o__mkgmtime64@0 @1286 PRIVATE + _o__mktemp@0 @1287 PRIVATE + _o__mktemp_s@0 @1288 PRIVATE + _o__mktime32@0 @1289 PRIVATE + _o__mktime64@0 @1290 PRIVATE + _o__msize@0 @1291 PRIVATE + _o__nextafter@0 @1292 PRIVATE + _o__nextafterf@0 @1293 PRIVATE + _o__open_osfhandle@0 @1294 PRIVATE + _o__pclose@0 @1295 PRIVATE + _o__pipe@0 @1296 PRIVATE + _o__popen@0 @1297 PRIVATE + _o__purecall@0 @1298 PRIVATE + _o__putc_nolock@0 @1299 PRIVATE + _o__putch@0 @1300 PRIVATE + _o__putch_nolock@0 @1301 PRIVATE + _o__putenv@0 @1302 PRIVATE + _o__putenv_s@0 @1303 PRIVATE + _o__putw@0 @1304 PRIVATE + _o__putwc_nolock@0 @1305 PRIVATE + _o__putwch@0 @1306 PRIVATE + _o__putwch_nolock@0 @1307 PRIVATE + _o__putws@0 @1308 PRIVATE + _o__read@0 @1309 PRIVATE + _o__realloc_base@0 @1310 PRIVATE + _o__recalloc@0 @1311 PRIVATE + _o__register_onexit_function=MSVCRT__register_onexit_function @1312 + _o__resetstkoflw@0 @1313 PRIVATE + _o__rmdir@0 @1314 PRIVATE + _o__rmtmp@0 @1315 PRIVATE + _o__scalb@0 @1316 PRIVATE + _o__scalbf@0 @1317 PRIVATE + _o__searchenv@0 @1318 PRIVATE + _o__searchenv_s@0 @1319 PRIVATE + _o__seh_filter_dll=__CppXcptFilter @1320 + _o__seh_filter_exe=_XcptFilter @1321 + _o__set_abort_behavior@0 @1322 PRIVATE + _o__set_app_type=MSVCRT___set_app_type @1323 + _o__set_doserrno@0 @1324 PRIVATE + _o__set_errno@0 @1325 PRIVATE + _o__set_fmode=MSVCRT__set_fmode @1326 + _o__set_invalid_parameter_handler@0 @1327 PRIVATE + _o__set_new_handler@0 @1328 PRIVATE + _o__set_new_mode=MSVCRT__set_new_mode @1329 + _o__set_thread_local_invalid_parameter_handler@0 @1330 PRIVATE + _o__seterrormode@0 @1331 PRIVATE + _o__setmbcp@0 @1332 PRIVATE + _o__setmode@0 @1333 PRIVATE + _o__setsystime@0 @1334 PRIVATE + _o__sleep@0 @1335 PRIVATE + _o__sopen@0 @1336 PRIVATE + _o__sopen_dispatch@0 @1337 PRIVATE + _o__sopen_s@0 @1338 PRIVATE + _o__spawnv@0 @1339 PRIVATE + _o__spawnve@0 @1340 PRIVATE + _o__spawnvp@0 @1341 PRIVATE + _o__spawnvpe@0 @1342 PRIVATE + _o__splitpath@0 @1343 PRIVATE + _o__splitpath_s@0 @1344 PRIVATE + _o__stat32@0 @1345 PRIVATE + _o__stat32i64@0 @1346 PRIVATE + _o__stat64@0 @1347 PRIVATE + _o__stat64i32@0 @1348 PRIVATE + _o__strcoll_l@0 @1349 PRIVATE + _o__strdate@0 @1350 PRIVATE + _o__strdate_s@0 @1351 PRIVATE + _o__strdup@0 @1352 PRIVATE + _o__strerror@0 @1353 PRIVATE + _o__strerror_s@0 @1354 PRIVATE + _o__strftime_l@0 @1355 PRIVATE + _o__stricmp@0 @1356 PRIVATE + _o__stricmp_l@0 @1357 PRIVATE + _o__stricoll@0 @1358 PRIVATE + _o__stricoll_l@0 @1359 PRIVATE + _o__strlwr@0 @1360 PRIVATE + _o__strlwr_l@0 @1361 PRIVATE + _o__strlwr_s@0 @1362 PRIVATE + _o__strlwr_s_l@0 @1363 PRIVATE + _o__strncoll@0 @1364 PRIVATE + _o__strncoll_l@0 @1365 PRIVATE + _o__strnicmp@0 @1366 PRIVATE + _o__strnicmp_l@0 @1367 PRIVATE + _o__strnicoll@0 @1368 PRIVATE + _o__strnicoll_l@0 @1369 PRIVATE + _o__strnset_s@0 @1370 PRIVATE + _o__strset_s@0 @1371 PRIVATE + _o__strtime@0 @1372 PRIVATE + _o__strtime_s@0 @1373 PRIVATE + _o__strtod_l@0 @1374 PRIVATE + _o__strtof_l@0 @1375 PRIVATE + _o__strtoi64@0 @1376 PRIVATE + _o__strtoi64_l@0 @1377 PRIVATE + _o__strtol_l@0 @1378 PRIVATE + _o__strtold_l@0 @1379 PRIVATE + _o__strtoll_l@0 @1380 PRIVATE + _o__strtoui64@0 @1381 PRIVATE + _o__strtoui64_l@0 @1382 PRIVATE + _o__strtoul_l@0 @1383 PRIVATE + _o__strtoull_l@0 @1384 PRIVATE + _o__strupr@0 @1385 PRIVATE + _o__strupr_l@0 @1386 PRIVATE + _o__strupr_s@0 @1387 PRIVATE + _o__strupr_s_l@0 @1388 PRIVATE + _o__strxfrm_l@0 @1389 PRIVATE + _o__swab@0 @1390 PRIVATE + _o__tell@0 @1391 PRIVATE + _o__telli64@0 @1392 PRIVATE + _o__timespec32_get@0 @1393 PRIVATE + _o__timespec64_get@0 @1394 PRIVATE + _o__tolower@0 @1395 PRIVATE + _o__tolower_l@0 @1396 PRIVATE + _o__toupper@0 @1397 PRIVATE + _o__toupper_l@0 @1398 PRIVATE + _o__towlower_l@0 @1399 PRIVATE + _o__towupper_l@0 @1400 PRIVATE + _o__tzset@0 @1401 PRIVATE + _o__ui64toa@0 @1402 PRIVATE + _o__ui64toa_s@0 @1403 PRIVATE + _o__ui64tow@0 @1404 PRIVATE + _o__ui64tow_s@0 @1405 PRIVATE + _o__ultoa@0 @1406 PRIVATE + _o__ultoa_s@0 @1407 PRIVATE + _o__ultow@0 @1408 PRIVATE + _o__ultow_s@0 @1409 PRIVATE + _o__umask@0 @1410 PRIVATE + _o__umask_s@0 @1411 PRIVATE + _o__ungetc_nolock@0 @1412 PRIVATE + _o__ungetch@0 @1413 PRIVATE + _o__ungetch_nolock@0 @1414 PRIVATE + _o__ungetwc_nolock@0 @1415 PRIVATE + _o__ungetwch@0 @1416 PRIVATE + _o__ungetwch_nolock@0 @1417 PRIVATE + _o__unlink@0 @1418 PRIVATE + _o__unloaddll@0 @1419 PRIVATE + _o__unlock_file@0 @1420 PRIVATE + _o__utime32@0 @1421 PRIVATE + _o__utime64@0 @1422 PRIVATE + _o__waccess@0 @1423 PRIVATE + _o__waccess_s@0 @1424 PRIVATE + _o__wasctime@0 @1425 PRIVATE + _o__wasctime_s@0 @1426 PRIVATE + _o__wchdir@0 @1427 PRIVATE + _o__wchmod@0 @1428 PRIVATE + _o__wcreat@0 @1429 PRIVATE + _o__wcreate_locale@0 @1430 PRIVATE + _o__wcscoll_l@0 @1431 PRIVATE + _o__wcsdup@0 @1432 PRIVATE + _o__wcserror@0 @1433 PRIVATE + _o__wcserror_s@0 @1434 PRIVATE + _o__wcsftime_l@0 @1435 PRIVATE + _o__wcsicmp@0 @1436 PRIVATE + _o__wcsicmp_l@0 @1437 PRIVATE + _o__wcsicoll@0 @1438 PRIVATE + _o__wcsicoll_l@0 @1439 PRIVATE + _o__wcslwr@0 @1440 PRIVATE + _o__wcslwr_l@0 @1441 PRIVATE + _o__wcslwr_s@0 @1442 PRIVATE + _o__wcslwr_s_l@0 @1443 PRIVATE + _o__wcsncoll@0 @1444 PRIVATE + _o__wcsncoll_l@0 @1445 PRIVATE + _o__wcsnicmp@0 @1446 PRIVATE + _o__wcsnicmp_l@0 @1447 PRIVATE + _o__wcsnicoll@0 @1448 PRIVATE + _o__wcsnicoll_l@0 @1449 PRIVATE + _o__wcsnset@0 @1450 PRIVATE + _o__wcsnset_s@0 @1451 PRIVATE + _o__wcsset@0 @1452 PRIVATE + _o__wcsset_s@0 @1453 PRIVATE + _o__wcstod_l@0 @1454 PRIVATE + _o__wcstof_l@0 @1455 PRIVATE + _o__wcstoi64@0 @1456 PRIVATE + _o__wcstoi64_l@0 @1457 PRIVATE + _o__wcstol_l@0 @1458 PRIVATE + _o__wcstold_l@0 @1459 PRIVATE + _o__wcstoll_l@0 @1460 PRIVATE + _o__wcstombs_l@0 @1461 PRIVATE + _o__wcstombs_s_l@0 @1462 PRIVATE + _o__wcstoui64@0 @1463 PRIVATE + _o__wcstoui64_l@0 @1464 PRIVATE + _o__wcstoul_l@0 @1465 PRIVATE + _o__wcstoull_l@0 @1466 PRIVATE + _o__wcsupr@0 @1467 PRIVATE + _o__wcsupr_l@0 @1468 PRIVATE + _o__wcsupr_s@0 @1469 PRIVATE + _o__wcsupr_s_l@0 @1470 PRIVATE + _o__wcsxfrm_l@0 @1471 PRIVATE + _o__wctime32@0 @1472 PRIVATE + _o__wctime32_s@0 @1473 PRIVATE + _o__wctime64@0 @1474 PRIVATE + _o__wctime64_s@0 @1475 PRIVATE + _o__wctomb_l@0 @1476 PRIVATE + _o__wctomb_s_l@0 @1477 PRIVATE + _o__wdupenv_s@0 @1478 PRIVATE + _o__wexecv@0 @1479 PRIVATE + _o__wexecve@0 @1480 PRIVATE + _o__wexecvp@0 @1481 PRIVATE + _o__wexecvpe@0 @1482 PRIVATE + _o__wfdopen@0 @1483 PRIVATE + _o__wfindfirst32@0 @1484 PRIVATE + _o__wfindfirst32i64@0 @1485 PRIVATE + _o__wfindfirst64@0 @1486 PRIVATE + _o__wfindfirst64i32@0 @1487 PRIVATE + _o__wfindnext32@0 @1488 PRIVATE + _o__wfindnext32i64@0 @1489 PRIVATE + _o__wfindnext64@0 @1490 PRIVATE + _o__wfindnext64i32@0 @1491 PRIVATE + _o__wfopen@0 @1492 PRIVATE + _o__wfopen_s@0 @1493 PRIVATE + _o__wfreopen@0 @1494 PRIVATE + _o__wfreopen_s@0 @1495 PRIVATE + _o__wfsopen@0 @1496 PRIVATE + _o__wfullpath@0 @1497 PRIVATE + _o__wgetcwd@0 @1498 PRIVATE + _o__wgetdcwd@0 @1499 PRIVATE + _o__wgetenv@0 @1500 PRIVATE + _o__wgetenv_s@0 @1501 PRIVATE + _o__wmakepath@0 @1502 PRIVATE + _o__wmakepath_s@0 @1503 PRIVATE + _o__wmkdir@0 @1504 PRIVATE + _o__wmktemp@0 @1505 PRIVATE + _o__wmktemp_s@0 @1506 PRIVATE + _o__wperror@0 @1507 PRIVATE + _o__wpopen@0 @1508 PRIVATE + _o__wputenv@0 @1509 PRIVATE + _o__wputenv_s@0 @1510 PRIVATE + _o__wremove@0 @1511 PRIVATE + _o__wrename@0 @1512 PRIVATE + _o__write@0 @1513 PRIVATE + _o__wrmdir@0 @1514 PRIVATE + _o__wsearchenv@0 @1515 PRIVATE + _o__wsearchenv_s@0 @1516 PRIVATE + _o__wsetlocale@0 @1517 PRIVATE + _o__wsopen_dispatch@0 @1518 PRIVATE + _o__wsopen_s@0 @1519 PRIVATE + _o__wspawnv@0 @1520 PRIVATE + _o__wspawnve@0 @1521 PRIVATE + _o__wspawnvp@0 @1522 PRIVATE + _o__wspawnvpe@0 @1523 PRIVATE + _o__wsplitpath@0 @1524 PRIVATE + _o__wsplitpath_s@0 @1525 PRIVATE + _o__wstat32@0 @1526 PRIVATE + _o__wstat32i64@0 @1527 PRIVATE + _o__wstat64@0 @1528 PRIVATE + _o__wstat64i32@0 @1529 PRIVATE + _o__wstrdate@0 @1530 PRIVATE + _o__wstrdate_s@0 @1531 PRIVATE + _o__wstrtime@0 @1532 PRIVATE + _o__wstrtime_s@0 @1533 PRIVATE + _o__wsystem@0 @1534 PRIVATE + _o__wtmpnam_s@0 @1535 PRIVATE + _o__wtof@0 @1536 PRIVATE + _o__wtof_l@0 @1537 PRIVATE + _o__wtoi@0 @1538 PRIVATE + _o__wtoi64@0 @1539 PRIVATE + _o__wtoi64_l@0 @1540 PRIVATE + _o__wtoi_l@0 @1541 PRIVATE + _o__wtol@0 @1542 PRIVATE + _o__wtol_l@0 @1543 PRIVATE + _o__wtoll@0 @1544 PRIVATE + _o__wtoll_l@0 @1545 PRIVATE + _o__wunlink@0 @1546 PRIVATE + _o__wutime32@0 @1547 PRIVATE + _o__wutime64@0 @1548 PRIVATE + _o__y0@0 @1549 PRIVATE + _o__y1@0 @1550 PRIVATE + _o__yn@0 @1551 PRIVATE + _o_abort@0 @1552 PRIVATE + _o_acos@0 @1553 PRIVATE + _o_acosf@0 @1554 PRIVATE + _o_acosh@0 @1555 PRIVATE + _o_acoshf@0 @1556 PRIVATE + _o_acoshl@0 @1557 PRIVATE + _o_asctime@0 @1558 PRIVATE + _o_asctime_s@0 @1559 PRIVATE + _o_asin@0 @1560 PRIVATE + _o_asinf@0 @1561 PRIVATE + _o_asinh@0 @1562 PRIVATE + _o_asinhf@0 @1563 PRIVATE + _o_asinhl@0 @1564 PRIVATE + _o_atan@0 @1565 PRIVATE + _o_atan2@0 @1566 PRIVATE + _o_atan2f@0 @1567 PRIVATE + _o_atanf@0 @1568 PRIVATE + _o_atanh@0 @1569 PRIVATE + _o_atanhf@0 @1570 PRIVATE + _o_atanhl@0 @1571 PRIVATE + _o_atof@0 @1572 PRIVATE + _o_atoi@0 @1573 PRIVATE + _o_atol@0 @1574 PRIVATE + _o_atoll@0 @1575 PRIVATE + _o_bsearch@0 @1576 PRIVATE + _o_bsearch_s@0 @1577 PRIVATE + _o_btowc@0 @1578 PRIVATE + _o_calloc=MSVCRT_calloc @1579 + _o_cbrt@0 @1580 PRIVATE + _o_cbrtf@0 @1581 PRIVATE + _o_ceil@0 @1582 PRIVATE + _o_ceilf@0 @1583 PRIVATE + _o_clearerr@0 @1584 PRIVATE + _o_clearerr_s@0 @1585 PRIVATE + _o_cos@0 @1586 PRIVATE + _o_cosf@0 @1587 PRIVATE + _o_cosh@0 @1588 PRIVATE + _o_coshf@0 @1589 PRIVATE + _o_erf@0 @1590 PRIVATE + _o_erfc@0 @1591 PRIVATE + _o_erfcf@0 @1592 PRIVATE + _o_erfcl@0 @1593 PRIVATE + _o_erff@0 @1594 PRIVATE + _o_erfl@0 @1595 PRIVATE + _o_exit=MSVCRT_exit @1596 + _o_exp@0 @1597 PRIVATE + _o_exp2@0 @1598 PRIVATE + _o_exp2f@0 @1599 PRIVATE + _o_exp2l@0 @1600 PRIVATE + _o_expf@0 @1601 PRIVATE + _o_fabs@0 @1602 PRIVATE + _o_fclose@0 @1603 PRIVATE + _o_feof@0 @1604 PRIVATE + _o_ferror@0 @1605 PRIVATE + _o_fflush@0 @1606 PRIVATE + _o_fgetc@0 @1607 PRIVATE + _o_fgetpos@0 @1608 PRIVATE + _o_fgets@0 @1609 PRIVATE + _o_fgetwc@0 @1610 PRIVATE + _o_fgetws@0 @1611 PRIVATE + _o_floor@0 @1612 PRIVATE + _o_floorf@0 @1613 PRIVATE + _o_fma@0 @1614 PRIVATE + _o_fmaf@0 @1615 PRIVATE + _o_fmal@0 @1616 PRIVATE + _o_fmod@0 @1617 PRIVATE + _o_fmodf@0 @1618 PRIVATE + _o_fopen@0 @1619 PRIVATE + _o_fopen_s@0 @1620 PRIVATE + _o_fputc@0 @1621 PRIVATE + _o_fputs@0 @1622 PRIVATE + _o_fputwc@0 @1623 PRIVATE + _o_fputws@0 @1624 PRIVATE + _o_fread@0 @1625 PRIVATE + _o_fread_s@0 @1626 PRIVATE + _o_free=MSVCRT_free @1627 + _o_freopen@0 @1628 PRIVATE + _o_freopen_s@0 @1629 PRIVATE + _o_frexp@0 @1630 PRIVATE + _o_fseek@0 @1631 PRIVATE + _o_fsetpos@0 @1632 PRIVATE + _o_ftell@0 @1633 PRIVATE + _o_fwrite@0 @1634 PRIVATE + _o_getc@0 @1635 PRIVATE + _o_getchar@0 @1636 PRIVATE + _o_getenv@0 @1637 PRIVATE + _o_getenv_s@0 @1638 PRIVATE + _o_gets@0 @1639 PRIVATE + _o_gets_s@0 @1640 PRIVATE + _o_getwc@0 @1641 PRIVATE + _o_getwchar@0 @1642 PRIVATE + _o_hypot@0 @1643 PRIVATE + _o_is_wctype@0 @1644 PRIVATE + _o_isalnum=MSVCRT_isalnum @1645 + _o_isalpha=MSVCRT_isalpha @1646 + _o_isblank@0 @1647 PRIVATE + _o_iscntrl@0 @1648 PRIVATE + _o_isdigit=MSVCRT_isdigit @1649 + _o_isgraph@0 @1650 PRIVATE + _o_isleadbyte@0 @1651 PRIVATE + _o_islower@0 @1652 PRIVATE + _o_isprint=MSVCRT_isprint @1653 + _o_ispunct@0 @1654 PRIVATE + _o_isspace@0 @1655 PRIVATE + _o_isupper@0 @1656 PRIVATE + _o_iswalnum@0 @1657 PRIVATE + _o_iswalpha@0 @1658 PRIVATE + _o_iswascii@0 @1659 PRIVATE + _o_iswblank@0 @1660 PRIVATE + _o_iswcntrl@0 @1661 PRIVATE + _o_iswctype@0 @1662 PRIVATE + _o_iswdigit@0 @1663 PRIVATE + _o_iswgraph@0 @1664 PRIVATE + _o_iswlower@0 @1665 PRIVATE + _o_iswprint@0 @1666 PRIVATE + _o_iswpunct@0 @1667 PRIVATE + _o_iswspace@0 @1668 PRIVATE + _o_iswupper@0 @1669 PRIVATE + _o_iswxdigit@0 @1670 PRIVATE + _o_isxdigit@0 @1671 PRIVATE + _o_ldexp@0 @1672 PRIVATE + _o_lgamma@0 @1673 PRIVATE + _o_lgammaf@0 @1674 PRIVATE + _o_lgammal@0 @1675 PRIVATE + _o_llrint@0 @1676 PRIVATE + _o_llrintf@0 @1677 PRIVATE + _o_llrintl@0 @1678 PRIVATE + _o_llround@0 @1679 PRIVATE + _o_llroundf@0 @1680 PRIVATE + _o_llroundl@0 @1681 PRIVATE + _o_localeconv@0 @1682 PRIVATE + _o_log@0 @1683 PRIVATE + _o_log10@0 @1684 PRIVATE + _o_log10f@0 @1685 PRIVATE + _o_log1p@0 @1686 PRIVATE + _o_log1pf@0 @1687 PRIVATE + _o_log1pl@0 @1688 PRIVATE + _o_log2@0 @1689 PRIVATE + _o_log2f@0 @1690 PRIVATE + _o_log2l@0 @1691 PRIVATE + _o_logb@0 @1692 PRIVATE + _o_logbf@0 @1693 PRIVATE + _o_logbl@0 @1694 PRIVATE + _o_logf@0 @1695 PRIVATE + _o_lrint@0 @1696 PRIVATE + _o_lrintf@0 @1697 PRIVATE + _o_lrintl@0 @1698 PRIVATE + _o_lround@0 @1699 PRIVATE + _o_lroundf@0 @1700 PRIVATE + _o_lroundl@0 @1701 PRIVATE + _o_malloc=MSVCRT_malloc @1702 + _o_mblen@0 @1703 PRIVATE + _o_mbrlen@0 @1704 PRIVATE + _o_mbrtoc16@0 @1705 PRIVATE + _o_mbrtoc32@0 @1706 PRIVATE + _o_mbrtowc@0 @1707 PRIVATE + _o_mbsrtowcs@0 @1708 PRIVATE + _o_mbsrtowcs_s@0 @1709 PRIVATE + _o_mbstowcs@0 @1710 PRIVATE + _o_mbstowcs_s@0 @1711 PRIVATE + _o_mbtowc@0 @1712 PRIVATE + _o_memcpy_s@0 @1713 PRIVATE + _o_memset@0 @1714 PRIVATE + _o_modf@0 @1715 PRIVATE + _o_modff@0 @1716 PRIVATE + _o_nan@0 @1717 PRIVATE + _o_nanf@0 @1718 PRIVATE + _o_nanl@0 @1719 PRIVATE + _o_nearbyint@0 @1720 PRIVATE + _o_nearbyintf@0 @1721 PRIVATE + _o_nearbyintl@0 @1722 PRIVATE + _o_nextafter@0 @1723 PRIVATE + _o_nextafterf@0 @1724 PRIVATE + _o_nextafterl@0 @1725 PRIVATE + _o_nexttoward@0 @1726 PRIVATE + _o_nexttowardf@0 @1727 PRIVATE + _o_nexttowardl@0 @1728 PRIVATE + _o_pow@0 @1729 PRIVATE + _o_powf@0 @1730 PRIVATE + _o_putc@0 @1731 PRIVATE + _o_putchar@0 @1732 PRIVATE + _o_puts@0 @1733 PRIVATE + _o_putwc@0 @1734 PRIVATE + _o_putwchar@0 @1735 PRIVATE + _o_qsort=MSVCRT_qsort @1736 + _o_qsort_s@0 @1737 PRIVATE + _o_raise@0 @1738 PRIVATE + _o_rand@0 @1739 PRIVATE + _o_rand_s@0 @1740 PRIVATE + _o_realloc=MSVCRT_realloc @1741 + _o_remainder@0 @1742 PRIVATE + _o_remainderf@0 @1743 PRIVATE + _o_remainderl@0 @1744 PRIVATE + _o_remove@0 @1745 PRIVATE + _o_remquo@0 @1746 PRIVATE + _o_remquof@0 @1747 PRIVATE + _o_remquol@0 @1748 PRIVATE + _o_rename@0 @1749 PRIVATE + _o_rewind@0 @1750 PRIVATE + _o_rint@0 @1751 PRIVATE + _o_rintf@0 @1752 PRIVATE + _o_rintl@0 @1753 PRIVATE + _o_round@0 @1754 PRIVATE + _o_roundf@0 @1755 PRIVATE + _o_roundl@0 @1756 PRIVATE + _o_scalbln@0 @1757 PRIVATE + _o_scalblnf@0 @1758 PRIVATE + _o_scalblnl@0 @1759 PRIVATE + _o_scalbn@0 @1760 PRIVATE + _o_scalbnf@0 @1761 PRIVATE + _o_scalbnl@0 @1762 PRIVATE + _o_set_terminate@0 @1763 PRIVATE + _o_setbuf@0 @1764 PRIVATE + _o_setlocale@0 @1765 PRIVATE + _o_setvbuf@0 @1766 PRIVATE + _o_sin@0 @1767 PRIVATE + _o_sinf@0 @1768 PRIVATE + _o_sinh@0 @1769 PRIVATE + _o_sinhf@0 @1770 PRIVATE + _o_sqrt@0 @1771 PRIVATE + _o_sqrtf@0 @1772 PRIVATE + _o_srand@0 @1773 PRIVATE + _o_strcat_s=MSVCRT_strcat_s @1774 + _o_strcoll@0 @1775 PRIVATE + _o_strcpy_s@0 @1776 PRIVATE + _o_strerror@0 @1777 PRIVATE + _o_strerror_s@0 @1778 PRIVATE + _o_strftime@0 @1779 PRIVATE + _o_strncat_s@0 @1780 PRIVATE + _o_strncpy_s@0 @1781 PRIVATE + _o_strtod@0 @1782 PRIVATE + _o_strtof@0 @1783 PRIVATE + _o_strtok@0 @1784 PRIVATE + _o_strtok_s@0 @1785 PRIVATE + _o_strtol@0 @1786 PRIVATE + _o_strtold@0 @1787 PRIVATE + _o_strtoll@0 @1788 PRIVATE + _o_strtoul=MSVCRT_strtoul @1789 + _o_strtoull@0 @1790 PRIVATE + _o_system@0 @1791 PRIVATE + _o_tan@0 @1792 PRIVATE + _o_tanf@0 @1793 PRIVATE + _o_tanh@0 @1794 PRIVATE + _o_tanhf@0 @1795 PRIVATE + _o_terminate@0 @1796 PRIVATE + _o_tgamma@0 @1797 PRIVATE + _o_tgammaf@0 @1798 PRIVATE + _o_tgammal@0 @1799 PRIVATE + _o_tmpfile_s@0 @1800 PRIVATE + _o_tmpnam_s@0 @1801 PRIVATE + _o_tolower=MSVCRT__tolower @1802 + _o_toupper=MSVCRT__toupper @1803 + _o_towlower@0 @1804 PRIVATE + _o_towupper@0 @1805 PRIVATE + _o_ungetc@0 @1806 PRIVATE + _o_ungetwc@0 @1807 PRIVATE + _o_wcrtomb@0 @1808 PRIVATE + _o_wcrtomb_s@0 @1809 PRIVATE + _o_wcscat_s@0 @1810 PRIVATE + _o_wcscoll@0 @1811 PRIVATE + _o_wcscpy@0 @1812 PRIVATE + _o_wcscpy_s@0 @1813 PRIVATE + _o_wcsftime@0 @1814 PRIVATE + _o_wcsncat_s@0 @1815 PRIVATE + _o_wcsncpy_s@0 @1816 PRIVATE + _o_wcsrtombs@0 @1817 PRIVATE + _o_wcsrtombs_s@0 @1818 PRIVATE + _o_wcstod@0 @1819 PRIVATE + _o_wcstof@0 @1820 PRIVATE + _o_wcstok@0 @1821 PRIVATE + _o_wcstok_s@0 @1822 PRIVATE + _o_wcstol@0 @1823 PRIVATE + _o_wcstold@0 @1824 PRIVATE + _o_wcstoll@0 @1825 PRIVATE + _o_wcstombs@0 @1826 PRIVATE + _o_wcstombs_s@0 @1827 PRIVATE + _o_wcstoul@0 @1828 PRIVATE + _o_wcstoull@0 @1829 PRIVATE + _o_wctob@0 @1830 PRIVATE + _o_wctomb@0 @1831 PRIVATE + _o_wctomb_s@0 @1832 PRIVATE + _o_wmemcpy_s@0 @1833 PRIVATE + _o_wmemmove_s@0 @1834 PRIVATE + _open=MSVCRT__open @1835 + _open_osfhandle=MSVCRT__open_osfhandle @1836 + _pclose=MSVCRT__pclose @1837 + _pipe=MSVCRT__pipe @1838 + _popen=MSVCRT__popen @1839 + _purecall @1840 + _putc_nolock=MSVCRT__fputc_nolock @1841 + _putch @1842 + _putch_nolock @1843 + _putenv @1844 + _putenv_s @1845 + _putw=MSVCRT__putw @1846 + _putwc_nolock=MSVCRT__fputwc_nolock @1847 + _putwch @1848 + _putwch_nolock @1849 + _putws=MSVCRT__putws @1850 + _query_app_type@0 @1851 PRIVATE + _query_new_handler@0 @1852 PRIVATE + _query_new_mode@0 @1853 PRIVATE + _read=MSVCRT__read @1854 + _realloc_base @1855 + _recalloc @1856 + _register_onexit_function=MSVCRT__register_onexit_function @1857 + _register_thread_local_exe_atexit_callback @1858 + _resetstkoflw=MSVCRT__resetstkoflw @1859 + _rmdir=MSVCRT__rmdir @1860 + _rmtmp=MSVCRT__rmtmp @1861 + _rotl @1862 + _rotl64 @1863 + _rotr @1864 + _rotr64 @1865 + _scalb=MSVCRT__scalb @1866 + _searchenv=MSVCRT__searchenv @1867 + _searchenv_s=MSVCRT__searchenv_s @1868 + _seh_filter_dll=__CppXcptFilter @1869 + _seh_filter_exe=_XcptFilter @1870 + _seh_longjmp_unwind4@4 @1871 + _seh_longjmp_unwind@4 @1872 + _set_SSE2_enable=MSVCRT__set_SSE2_enable @1873 + _set_abort_behavior=MSVCRT__set_abort_behavior @1874 + _set_app_type=MSVCRT___set_app_type @1875 + _set_controlfp @1876 + _set_doserrno @1877 + _set_errno @1878 + _set_error_mode @1879 + _set_fmode=MSVCRT__set_fmode @1880 + _set_invalid_parameter_handler @1881 + _set_new_handler=MSVCRT_set_new_handler @1882 + _set_new_mode=MSVCRT__set_new_mode @1883 + _set_printf_count_output=MSVCRT__set_printf_count_output @1884 + _set_purecall_handler @1885 + _set_se_translator=MSVCRT__set_se_translator @1886 + _set_thread_local_invalid_parameter_handler @1887 + _seterrormode @1888 + _setjmp3=MSVCRT__setjmp3 @1889 + _setmaxstdio=MSVCRT__setmaxstdio @1890 + _setmbcp @1891 + _setmode=MSVCRT__setmode @1892 + _setsystime@8 @1893 PRIVATE + _sleep=MSVCRT__sleep @1894 + _sopen=MSVCRT__sopen @1895 + _sopen_dispatch=MSVCRT__sopen_dispatch @1896 + _sopen_s=MSVCRT__sopen_s @1897 + _spawnl=MSVCRT__spawnl @1898 + _spawnle=MSVCRT__spawnle @1899 + _spawnlp=MSVCRT__spawnlp @1900 + _spawnlpe=MSVCRT__spawnlpe @1901 + _spawnv=MSVCRT__spawnv @1902 + _spawnve=MSVCRT__spawnve @1903 + _spawnvp=MSVCRT__spawnvp @1904 + _spawnvpe=MSVCRT__spawnvpe @1905 + _splitpath=MSVCRT__splitpath @1906 + _splitpath_s=MSVCRT__splitpath_s @1907 + _stat32=MSVCRT__stat32 @1908 + _stat32i64=MSVCRT__stat32i64 @1909 + _stat64=MSVCRT_stat64 @1910 + _stat64i32=MSVCRT__stat64i32 @1911 + _statusfp @1912 + _statusfp2 @1913 + _strcoll_l=MSVCRT_strcoll_l @1914 + _strdate=MSVCRT__strdate @1915 + _strdate_s @1916 + _strdup=MSVCRT__strdup @1917 + _strerror=MSVCRT__strerror @1918 + _strerror_s@0 @1919 PRIVATE + _strftime_l=MSVCRT__strftime_l @1920 + _stricmp=MSVCRT__stricmp @1921 + _stricmp_l=MSVCRT__stricmp_l @1922 + _stricoll=MSVCRT__stricoll @1923 + _stricoll_l=MSVCRT__stricoll_l @1924 + _strlwr=MSVCRT__strlwr @1925 + _strlwr_l @1926 + _strlwr_s=MSVCRT__strlwr_s @1927 + _strlwr_s_l=MSVCRT__strlwr_s_l @1928 + _strncoll=MSVCRT__strncoll @1929 + _strncoll_l=MSVCRT__strncoll_l @1930 + _strnicmp=MSVCRT__strnicmp @1931 + _strnicmp_l=MSVCRT__strnicmp_l @1932 + _strnicoll=MSVCRT__strnicoll @1933 + _strnicoll_l=MSVCRT__strnicoll_l @1934 + _strnset=MSVCRT__strnset @1935 + _strnset_s=MSVCRT__strnset_s @1936 + _strrev=MSVCRT__strrev @1937 + _strset @1938 + _strset_s@0 @1939 PRIVATE + _strtime=MSVCRT__strtime @1940 + _strtime_s @1941 + _strtod_l=MSVCRT_strtod_l @1942 + _strtof_l=MSVCRT__strtof_l @1943 + _strtoi64=MSVCRT_strtoi64 @1944 + _strtoi64_l=MSVCRT_strtoi64_l @1945 + _strtoimax_l@0 @1946 PRIVATE + _strtol_l=MSVCRT__strtol_l @1947 + _strtold_l@0 @1948 PRIVATE + _strtoll_l=MSVCRT_strtoi64_l @1949 + _strtoui64=MSVCRT_strtoui64 @1950 + _strtoui64_l=MSVCRT_strtoui64_l @1951 + _strtoul_l=MSVCRT_strtoul_l @1952 + _strtoull_l=MSVCRT_strtoui64_l @1953 + _strtoumax_l@0 @1954 PRIVATE + _strupr=MSVCRT__strupr @1955 + _strupr_l=MSVCRT__strupr_l @1956 + _strupr_s=MSVCRT__strupr_s @1957 + _strupr_s_l=MSVCRT__strupr_s_l @1958 + _strxfrm_l=MSVCRT__strxfrm_l @1959 + _swab=MSVCRT__swab @1960 + _tell=MSVCRT__tell @1961 + _telli64 @1962 + _tempnam=MSVCRT__tempnam @1963 + _time32=MSVCRT__time32 @1964 + _time64=MSVCRT__time64 @1965 + _timespec32_get @1966 + _timespec64_get @1967 + _tolower=MSVCRT__tolower @1968 + _tolower_l=MSVCRT__tolower_l @1969 + _toupper=MSVCRT__toupper @1970 + _toupper_l=MSVCRT__toupper_l @1971 + _towlower_l=MSVCRT__towlower_l @1972 + _towupper_l=MSVCRT__towupper_l @1973 + _tzset=MSVCRT__tzset @1974 + _ui64toa=ntdll._ui64toa @1975 + _ui64toa_s=MSVCRT__ui64toa_s @1976 + _ui64tow=ntdll._ui64tow @1977 + _ui64tow_s=MSVCRT__ui64tow_s @1978 + _ultoa=ntdll._ultoa @1979 + _ultoa_s=MSVCRT__ultoa_s @1980 + _ultow=ntdll._ultow @1981 + _ultow_s=MSVCRT__ultow_s @1982 + _umask=MSVCRT__umask @1983 + _umask_s@0 @1984 PRIVATE + _ungetc_nolock=MSVCRT__ungetc_nolock @1985 + _ungetch @1986 + _ungetch_nolock @1987 + _ungetwc_nolock=MSVCRT__ungetwc_nolock @1988 + _ungetwch @1989 + _ungetwch_nolock @1990 + _unlink=MSVCRT__unlink @1991 + _unloaddll @1992 + _unlock_file=MSVCRT__unlock_file @1993 + _unlock_locales @1994 + _utime32 @1995 + _utime64 @1996 + _waccess=MSVCRT__waccess @1997 + _waccess_s=MSVCRT__waccess_s @1998 + _wasctime=MSVCRT__wasctime @1999 + _wasctime_s=MSVCRT__wasctime_s @2000 + _wassert=MSVCRT__wassert @2001 + _wchdir=MSVCRT__wchdir @2002 + _wchmod=MSVCRT__wchmod @2003 + _wcreat=MSVCRT__wcreat @2004 + _wcreate_locale=MSVCRT__wcreate_locale @2005 + _wcscoll_l=MSVCRT__wcscoll_l @2006 + _wcsdup=MSVCRT__wcsdup @2007 + _wcserror=MSVCRT__wcserror @2008 + _wcserror_s=MSVCRT__wcserror_s @2009 + _wcsftime_l=MSVCRT__wcsftime_l @2010 + _wcsicmp=MSVCRT__wcsicmp @2011 + _wcsicmp_l=MSVCRT__wcsicmp_l @2012 + _wcsicoll=MSVCRT__wcsicoll @2013 + _wcsicoll_l=MSVCRT__wcsicoll_l @2014 + _wcslwr=MSVCRT__wcslwr @2015 + _wcslwr_l=MSVCRT__wcslwr_l @2016 + _wcslwr_s=MSVCRT__wcslwr_s @2017 + _wcslwr_s_l=MSVCRT__wcslwr_s_l @2018 + _wcsncoll=MSVCRT__wcsncoll @2019 + _wcsncoll_l=MSVCRT__wcsncoll_l @2020 + _wcsnicmp=MSVCRT__wcsnicmp @2021 + _wcsnicmp_l=MSVCRT__wcsnicmp_l @2022 + _wcsnicoll=MSVCRT__wcsnicoll @2023 + _wcsnicoll_l=MSVCRT__wcsnicoll_l @2024 + _wcsnset=MSVCRT__wcsnset @2025 + _wcsnset_s=MSVCRT__wcsnset_s @2026 + _wcsrev=MSVCRT__wcsrev @2027 + _wcsset=MSVCRT__wcsset @2028 + _wcsset_s=MSVCRT__wcsset_s @2029 + _wcstod_l=MSVCRT__wcstod_l @2030 + _wcstof_l=MSVCRT__wcstof_l @2031 + _wcstoi64=MSVCRT__wcstoi64 @2032 + _wcstoi64_l=MSVCRT__wcstoi64_l @2033 + _wcstoimax_l@0 @2034 PRIVATE + _wcstol_l=MSVCRT__wcstol_l @2035 + _wcstold_l@0 @2036 PRIVATE + _wcstoll_l=MSVCRT__wcstoi64_l @2037 + _wcstombs_l=MSVCRT__wcstombs_l @2038 + _wcstombs_s_l=MSVCRT__wcstombs_s_l @2039 + _wcstoui64=MSVCRT__wcstoui64 @2040 + _wcstoui64_l=MSVCRT__wcstoui64_l @2041 + _wcstoul_l=MSVCRT__wcstoul_l @2042 + _wcstoull_l=MSVCRT__wcstoui64_l @2043 + _wcstoumax_l@0 @2044 PRIVATE + _wcsupr=MSVCRT__wcsupr @2045 + _wcsupr_l=MSVCRT__wcsupr_l @2046 + _wcsupr_s=MSVCRT__wcsupr_s @2047 + _wcsupr_s_l=MSVCRT__wcsupr_s_l @2048 + _wcsxfrm_l=MSVCRT__wcsxfrm_l @2049 + _wctime32=MSVCRT__wctime32 @2050 + _wctime32_s=MSVCRT__wctime32_s @2051 + _wctime64=MSVCRT__wctime64 @2052 + _wctime64_s=MSVCRT__wctime64_s @2053 + _wctomb_l=MSVCRT__wctomb_l @2054 + _wctomb_s_l=MSVCRT__wctomb_s_l @2055 + _wctype@0 @2056 PRIVATE + _wdupenv_s @2057 + _wexecl @2058 + _wexecle @2059 + _wexeclp @2060 + _wexeclpe @2061 + _wexecv @2062 + _wexecve @2063 + _wexecvp @2064 + _wexecvpe @2065 + _wfdopen=MSVCRT__wfdopen @2066 + _wfindfirst32=MSVCRT__wfindfirst32 @2067 + _wfindfirst32i64@0 @2068 PRIVATE + _wfindfirst64=MSVCRT__wfindfirst64 @2069 + _wfindfirst64i32=MSVCRT__wfindfirst64i32 @2070 + _wfindnext32=MSVCRT__wfindnext32 @2071 + _wfindnext32i64@0 @2072 PRIVATE + _wfindnext64=MSVCRT__wfindnext64 @2073 + _wfindnext64i32=MSVCRT__wfindnext64i32 @2074 + _wfopen=MSVCRT__wfopen @2075 + _wfopen_s=MSVCRT__wfopen_s @2076 + _wfreopen=MSVCRT__wfreopen @2077 + _wfreopen_s=MSVCRT__wfreopen_s @2078 + _wfsopen=MSVCRT__wfsopen @2079 + _wfullpath=MSVCRT__wfullpath @2080 + _wgetcwd=MSVCRT__wgetcwd @2081 + _wgetdcwd=MSVCRT__wgetdcwd @2082 + _wgetenv=MSVCRT__wgetenv @2083 + _wgetenv_s @2084 + _wmakepath=MSVCRT__wmakepath @2085 + _wmakepath_s=MSVCRT__wmakepath_s @2086 + _wmkdir=MSVCRT__wmkdir @2087 + _wmktemp=MSVCRT__wmktemp @2088 + _wmktemp_s=MSVCRT__wmktemp_s @2089 + _wopen=MSVCRT__wopen @2090 + _wperror=MSVCRT__wperror @2091 + _wpopen=MSVCRT__wpopen @2092 + _wputenv @2093 + _wputenv_s @2094 + _wremove=MSVCRT__wremove @2095 + _wrename=MSVCRT__wrename @2096 + _write=MSVCRT__write @2097 + _wrmdir=MSVCRT__wrmdir @2098 + _wsearchenv=MSVCRT__wsearchenv @2099 + _wsearchenv_s=MSVCRT__wsearchenv_s @2100 + _wsetlocale=MSVCRT__wsetlocale @2101 + _wsopen=MSVCRT__wsopen @2102 + _wsopen_dispatch=MSVCRT__wsopen_dispatch @2103 + _wsopen_s=MSVCRT__wsopen_s @2104 + _wspawnl=MSVCRT__wspawnl @2105 + _wspawnle=MSVCRT__wspawnle @2106 + _wspawnlp=MSVCRT__wspawnlp @2107 + _wspawnlpe=MSVCRT__wspawnlpe @2108 + _wspawnv=MSVCRT__wspawnv @2109 + _wspawnve=MSVCRT__wspawnve @2110 + _wspawnvp=MSVCRT__wspawnvp @2111 + _wspawnvpe=MSVCRT__wspawnvpe @2112 + _wsplitpath=MSVCRT__wsplitpath @2113 + _wsplitpath_s=MSVCRT__wsplitpath_s @2114 + _wstat32=MSVCRT__wstat32 @2115 + _wstat32i64=MSVCRT__wstat32i64 @2116 + _wstat64=MSVCRT__wstat64 @2117 + _wstat64i32=MSVCRT__wstat64i32 @2118 + _wstrdate=MSVCRT__wstrdate @2119 + _wstrdate_s @2120 + _wstrtime=MSVCRT__wstrtime @2121 + _wstrtime_s @2122 + _wsystem @2123 + _wtempnam=MSVCRT__wtempnam @2124 + _wtmpnam=MSVCRT__wtmpnam @2125 + _wtmpnam_s=MSVCRT__wtmpnam_s @2126 + _wtof=MSVCRT__wtof @2127 + _wtof_l=MSVCRT__wtof_l @2128 + _wtoi=MSVCRT__wtoi @2129 + _wtoi64=MSVCRT__wtoi64 @2130 + _wtoi64_l=MSVCRT__wtoi64_l @2131 + _wtoi_l=MSVCRT__wtoi_l @2132 + _wtol=MSVCRT__wtol @2133 + _wtol_l=MSVCRT__wtol_l @2134 + _wtoll=MSVCRT__wtoll @2135 + _wtoll_l=MSVCRT__wtoll_l @2136 + _wunlink=MSVCRT__wunlink @2137 + _wutime32 @2138 + _wutime64 @2139 + _y0=MSVCRT__y0 @2140 + _y1=MSVCRT__y1 @2141 + _yn=MSVCRT__yn @2142 + abort=MSVCRT_abort @2143 + abs=MSVCRT_abs @2144 + acos=MSVCRT_acos @2145 + acosh=MSVCR120_acosh @2146 + acoshf=MSVCR120_acoshf @2147 + acoshl=MSVCR120_acoshl @2148 + asctime=MSVCRT_asctime @2149 + asctime_s=MSVCRT_asctime_s @2150 + asin=MSVCRT_asin @2151 + asinh=MSVCR120_asinh @2152 + asinhf=MSVCR120_asinhf @2153 + asinhl=MSVCR120_asinhl @2154 + atan=MSVCRT_atan @2155 + atan2=MSVCRT_atan2 @2156 + atanh=MSVCR120_atanh @2157 + atanhf=MSVCR120_atanhf @2158 + atanhl=MSVCR120_atanhl @2159 + atof=MSVCRT_atof @2160 + atoi=MSVCRT_atoi @2161 + atol=MSVCRT_atol @2162 + atoll=MSVCRT_atoll @2163 + bsearch=MSVCRT_bsearch @2164 + bsearch_s=MSVCRT_bsearch_s @2165 + btowc=MSVCRT_btowc @2166 + c16rtomb@0 @2167 PRIVATE + c32rtomb@0 @2168 PRIVATE + cabs@0 @2169 PRIVATE + cabsf@0 @2170 PRIVATE + cabsl@0 @2171 PRIVATE + cacos@0 @2172 PRIVATE + cacosf@0 @2173 PRIVATE + cacosh@0 @2174 PRIVATE + cacoshf@0 @2175 PRIVATE + cacoshl@0 @2176 PRIVATE + cacosl@0 @2177 PRIVATE + calloc=MSVCRT_calloc @2178 + carg@0 @2179 PRIVATE + cargf@0 @2180 PRIVATE + cargl@0 @2181 PRIVATE + casin@0 @2182 PRIVATE + casinf@0 @2183 PRIVATE + casinh@0 @2184 PRIVATE + casinhf@0 @2185 PRIVATE + casinhl@0 @2186 PRIVATE + casinl@0 @2187 PRIVATE + catan@0 @2188 PRIVATE + catanf@0 @2189 PRIVATE + catanh@0 @2190 PRIVATE + catanhf@0 @2191 PRIVATE + catanhl@0 @2192 PRIVATE + catanl@0 @2193 PRIVATE + cbrt=MSVCR120_cbrt @2194 + cbrtf=MSVCR120_cbrtf @2195 + cbrtl=MSVCR120_cbrtl @2196 + ccos@0 @2197 PRIVATE + ccosf@0 @2198 PRIVATE + ccosh@0 @2199 PRIVATE + ccoshf@0 @2200 PRIVATE + ccoshl@0 @2201 PRIVATE + ccosl@0 @2202 PRIVATE + ceil=MSVCRT_ceil @2203 + cexp@0 @2204 PRIVATE + cexpf@0 @2205 PRIVATE + cexpl@0 @2206 PRIVATE + cimag@0 @2207 PRIVATE + cimagf@0 @2208 PRIVATE + cimagl@0 @2209 PRIVATE + clearerr=MSVCRT_clearerr @2210 + clearerr_s=MSVCRT_clearerr_s @2211 + clock=MSVCRT_clock @2212 + clog@0 @2213 PRIVATE + clog10@0 @2214 PRIVATE + clog10f@0 @2215 PRIVATE + clog10l@0 @2216 PRIVATE + clogf@0 @2217 PRIVATE + clogl@0 @2218 PRIVATE + conj@0 @2219 PRIVATE + conjf@0 @2220 PRIVATE + conjl@0 @2221 PRIVATE + copysign=MSVCRT__copysign @2222 + copysignf=MSVCRT__copysignf @2223 + copysignl=MSVCRT__copysign @2224 + cos=MSVCRT_cos @2225 + cosh=MSVCRT_cosh @2226 + cpow@0 @2227 PRIVATE + cpowf@0 @2228 PRIVATE + cpowl@0 @2229 PRIVATE + cproj@0 @2230 PRIVATE + cprojf@0 @2231 PRIVATE + cprojl@0 @2232 PRIVATE + creal=MSVCR120_creal @2233 + crealf@0 @2234 PRIVATE + creall@0 @2235 PRIVATE + csin@0 @2236 PRIVATE + csinf@0 @2237 PRIVATE + csinh@0 @2238 PRIVATE + csinhf@0 @2239 PRIVATE + csinhl@0 @2240 PRIVATE + csinl@0 @2241 PRIVATE + csqrt@0 @2242 PRIVATE + csqrtf@0 @2243 PRIVATE + csqrtl@0 @2244 PRIVATE + ctan@0 @2245 PRIVATE + ctanf@0 @2246 PRIVATE + ctanh@0 @2247 PRIVATE + ctanhf@0 @2248 PRIVATE + ctanhl@0 @2249 PRIVATE + ctanl@0 @2250 PRIVATE + div=MSVCRT_div @2251 + erf=MSVCR120_erf @2252 + erfc=MSVCR120_erfc @2253 + erfcf=MSVCR120_erfcf @2254 + erfcl=MSVCR120_erfcl @2255 + erff=MSVCR120_erff @2256 + erfl=MSVCR120_erfl @2257 + exit=MSVCRT_exit @2258 + exp=MSVCRT_exp @2259 + exp2=MSVCR120_exp2 @2260 + exp2f=MSVCR120_exp2f @2261 + exp2l=MSVCR120_exp2l @2262 + expm1=MSVCR120_expm1 @2263 + expm1f=MSVCR120_expm1f @2264 + expm1l=MSVCR120_expm1l @2265 + fabs=MSVCRT_fabs @2266 + fclose=MSVCRT_fclose @2267 + fdim@0 @2268 PRIVATE + fdimf@0 @2269 PRIVATE + fdiml@0 @2270 PRIVATE + feclearexcept@0 @2271 PRIVATE + fegetenv=MSVCRT_fegetenv @2272 + fegetexceptflag@0 @2273 PRIVATE + fegetround=MSVCRT_fegetround @2274 + feholdexcept@0 @2275 PRIVATE + feof=MSVCRT_feof @2276 + ferror=MSVCRT_ferror @2277 + fesetenv=MSVCRT_fesetenv @2278 + fesetexceptflag@0 @2279 PRIVATE + fesetround=MSVCRT_fesetround @2280 + fetestexcept@0 @2281 PRIVATE + fflush=MSVCRT_fflush @2282 + fgetc=MSVCRT_fgetc @2283 + fgetpos=MSVCRT_fgetpos @2284 + fgets=MSVCRT_fgets @2285 + fgetwc=MSVCRT_fgetwc @2286 + fgetws=MSVCRT_fgetws @2287 + floor=MSVCRT_floor @2288 + fma@0 @2289 PRIVATE + fmaf@0 @2290 PRIVATE + fmal@0 @2291 PRIVATE + fmax=MSVCR120_fmax @2292 + fmaxf=MSVCR120_fmaxf @2293 + fmaxl=MSVCR120_fmax @2294 + fmin=MSVCR120_fmin @2295 + fminf=MSVCR120_fminf @2296 + fminl=MSVCR120_fmin @2297 + fmod=MSVCRT_fmod @2298 + fopen=MSVCRT_fopen @2299 + fopen_s=MSVCRT_fopen_s @2300 + fputc=MSVCRT_fputc @2301 + fputs=MSVCRT_fputs @2302 + fputwc=MSVCRT_fputwc @2303 + fputws=MSVCRT_fputws @2304 + fread=MSVCRT_fread @2305 + fread_s=MSVCRT_fread_s @2306 + free=MSVCRT_free @2307 + freopen=MSVCRT_freopen @2308 + freopen_s=MSVCRT_freopen_s @2309 + frexp=MSVCRT_frexp @2310 + fseek=MSVCRT_fseek @2311 + fsetpos=MSVCRT_fsetpos @2312 + ftell=MSVCRT_ftell @2313 + fwrite=MSVCRT_fwrite @2314 + getc=MSVCRT_getc @2315 + getchar=MSVCRT_getchar @2316 + getenv=MSVCRT_getenv @2317 + getenv_s @2318 + gets=MSVCRT_gets @2319 + gets_s=MSVCRT_gets_s @2320 + getwc=MSVCRT_getwc @2321 + getwchar=MSVCRT_getwchar @2322 + hypot=_hypot @2323 + ilogb=MSVCR120_ilogb @2324 + ilogbf=MSVCR120_ilogbf @2325 + ilogbl=MSVCR120_ilogbl @2326 + imaxabs@0 @2327 PRIVATE + imaxdiv@0 @2328 PRIVATE + is_wctype=ntdll.iswctype @2329 + isalnum=MSVCRT_isalnum @2330 + isalpha=MSVCRT_isalpha @2331 + isblank=MSVCRT_isblank @2332 + iscntrl=MSVCRT_iscntrl @2333 + isdigit=MSVCRT_isdigit @2334 + isgraph=MSVCRT_isgraph @2335 + isleadbyte=MSVCRT_isleadbyte @2336 + islower=MSVCRT_islower @2337 + isprint=MSVCRT_isprint @2338 + ispunct=MSVCRT_ispunct @2339 + isspace=MSVCRT_isspace @2340 + isupper=MSVCRT_isupper @2341 + iswalnum=MSVCRT_iswalnum @2342 + iswalpha=ntdll.iswalpha @2343 + iswascii=MSVCRT_iswascii @2344 + iswblank=MSVCRT_iswblank @2345 + iswcntrl=MSVCRT_iswcntrl @2346 + iswctype=ntdll.iswctype @2347 + iswdigit=MSVCRT_iswdigit @2348 + iswgraph=MSVCRT_iswgraph @2349 + iswlower=MSVCRT_iswlower @2350 + iswprint=MSVCRT_iswprint @2351 + iswpunct=MSVCRT_iswpunct @2352 + iswspace=MSVCRT_iswspace @2353 + iswupper=MSVCRT_iswupper @2354 + iswxdigit=MSVCRT_iswxdigit @2355 + isxdigit=MSVCRT_isxdigit @2356 + labs=MSVCRT_labs @2357 + ldexp=MSVCRT_ldexp @2358 + ldiv=MSVCRT_ldiv @2359 + lgamma=MSVCR120_lgamma @2360 + lgammaf=MSVCR120_lgammaf @2361 + lgammal=MSVCR120_lgammal @2362 + llabs=MSVCRT_llabs @2363 + lldiv=MSVCRT_lldiv @2364 + llrint=MSVCR120_llrint @2365 + llrintf=MSVCR120_llrintf @2366 + llrintl=MSVCR120_llrintl @2367 + llround=MSVCR120_llround @2368 + llroundf=MSVCR120_llroundf @2369 + llroundl=MSVCR120_llroundl @2370 + localeconv=MSVCRT_localeconv @2371 + log=MSVCRT_log @2372 + log10=MSVCRT_log10 @2373 + log1p=MSVCR120_log1p @2374 + log1pf=MSVCR120_log1pf @2375 + log1pl=MSVCR120_log1pl @2376 + log2=MSVCR120_log2 @2377 + log2f=MSVCR120_log2f @2378 + log2l=MSVCR120_log2l @2379 + logb@0 @2380 PRIVATE + logbf@0 @2381 PRIVATE + logbl@0 @2382 PRIVATE + longjmp=MSVCRT_longjmp @2383 + lrint=MSVCR120_lrint @2384 + lrintf=MSVCR120_lrintf @2385 + lrintl=MSVCR120_lrintl @2386 + lround=MSVCR120_lround @2387 + lroundf=MSVCR120_lroundf @2388 + lroundl=MSVCR120_lroundl @2389 + malloc=MSVCRT_malloc @2390 + mblen=MSVCRT_mblen @2391 + mbrlen=MSVCRT_mbrlen @2392 + mbrtoc16@0 @2393 PRIVATE + mbrtoc32@0 @2394 PRIVATE + mbrtowc=MSVCRT_mbrtowc @2395 + mbsrtowcs=MSVCRT_mbsrtowcs @2396 + mbsrtowcs_s=MSVCRT_mbsrtowcs_s @2397 + mbstowcs=MSVCRT_mbstowcs @2398 + mbstowcs_s=MSVCRT__mbstowcs_s @2399 + mbtowc=MSVCRT_mbtowc @2400 + memchr=MSVCRT_memchr @2401 + memcmp=MSVCRT_memcmp @2402 + memcpy=MSVCRT_memcpy @2403 + memcpy_s=MSVCRT_memcpy_s @2404 + memmove=MSVCRT_memmove @2405 + memmove_s=MSVCRT_memmove_s @2406 + memset=MSVCRT_memset @2407 + modf=MSVCRT_modf @2408 + nan=MSVCR120_nan @2409 + nanf=MSVCR120_nanf @2410 + nanl=MSVCR120_nan @2411 + nearbyint=MSVCRT_nearbyint @2412 + nearbyintf=MSVCRT_nearbyintf @2413 + nearbyintl=MSVCRT_nearbyint @2414 + nextafter=MSVCRT__nextafter @2415 + nextafterf=MSVCRT__nextafterf @2416 + nextafterl=MSVCRT__nextafter @2417 + nexttoward=MSVCRT_nexttoward @2418 + nexttowardf=MSVCRT_nexttowardf @2419 + nexttowardl=MSVCRT_nexttoward @2420 + norm@0 @2421 PRIVATE + normf@0 @2422 PRIVATE + norml@0 @2423 PRIVATE + perror=MSVCRT_perror @2424 + pow=MSVCRT_pow @2425 + putc=MSVCRT_putc @2426 + putchar=MSVCRT_putchar @2427 + puts=MSVCRT_puts @2428 + putwc=MSVCRT_fputwc @2429 + putwchar=MSVCRT__fputwchar @2430 + qsort=MSVCRT_qsort @2431 + qsort_s=MSVCRT_qsort_s @2432 + quick_exit=MSVCRT_quick_exit @2433 + raise=MSVCRT_raise @2434 + rand=MSVCRT_rand @2435 + rand_s=MSVCRT_rand_s @2436 + realloc=MSVCRT_realloc @2437 + remainder=MSVCR120_remainder @2438 + remainderf=MSVCR120_remainderf @2439 + remainderl=MSVCR120_remainderl @2440 + remove=MSVCRT_remove @2441 + remquo=MSVCR120_remquo @2442 + remquof=MSVCR120_remquof @2443 + remquol=MSVCR120_remquol @2444 + rename=MSVCRT_rename @2445 + rewind=MSVCRT_rewind @2446 + rint=MSVCR120_rint @2447 + rintf=MSVCR120_rintf @2448 + rintl=MSVCR120_rintl @2449 + round=MSVCR120_round @2450 + roundf=MSVCR120_roundf @2451 + roundl=MSVCR120_roundl @2452 + scalbln=MSVCRT__scalb @2453 + scalblnf=MSVCRT__scalbf @2454 + scalblnl=MSVCR120_scalbnl @2455 + scalbn=MSVCRT__scalb @2456 + scalbnf=MSVCRT__scalbf @2457 + scalbnl=MSVCR120_scalbnl @2458 + set_terminate=MSVCRT_set_terminate @2459 + set_unexpected=MSVCRT_set_unexpected @2460 + setbuf=MSVCRT_setbuf @2461 + setlocale=MSVCRT_setlocale @2462 + setvbuf=MSVCRT_setvbuf @2463 + signal=MSVCRT_signal @2464 + sin=MSVCRT_sin @2465 + sinh=MSVCRT_sinh @2466 + sqrt=MSVCRT_sqrt @2467 + srand=MSVCRT_srand @2468 + strcat=ntdll.strcat @2469 + strcat_s=MSVCRT_strcat_s @2470 + strchr=MSVCRT_strchr @2471 + strcmp=MSVCRT_strcmp @2472 + strcoll=MSVCRT_strcoll @2473 + strcpy=MSVCRT_strcpy @2474 + strcpy_s=MSVCRT_strcpy_s @2475 + strcspn=MSVCRT_strcspn @2476 + strerror=MSVCRT_strerror @2477 + strerror_s=MSVCRT_strerror_s @2478 + strftime=MSVCRT_strftime @2479 + strlen=MSVCRT_strlen @2480 + strncat=MSVCRT_strncat @2481 + strncat_s=MSVCRT_strncat_s @2482 + strncmp=MSVCRT_strncmp @2483 + strncpy=MSVCRT_strncpy @2484 + strncpy_s=MSVCRT_strncpy_s @2485 + strnlen=MSVCRT_strnlen @2486 + strpbrk=MSVCRT_strpbrk @2487 + strrchr=MSVCRT_strrchr @2488 + strspn=ntdll.strspn @2489 + strstr=MSVCRT_strstr @2490 + strtod=MSVCRT_strtod @2491 + strtof=MSVCRT_strtof @2492 + strtoimax@0 @2493 PRIVATE + strtok=MSVCRT_strtok @2494 + strtok_s=MSVCRT_strtok_s @2495 + strtol=MSVCRT_strtol @2496 + strtold@0 @2497 PRIVATE + strtoll=MSVCRT_strtoi64 @2498 + strtoul=MSVCRT_strtoul @2499 + strtoull=MSVCRT_strtoui64 @2500 + strtoumax@0 @2501 PRIVATE + strxfrm=MSVCRT_strxfrm @2502 + system=MSVCRT_system @2503 + tan=MSVCRT_tan @2504 + tanh=MSVCRT_tanh @2505 + terminate=MSVCRT_terminate @2506 + tgamma@0 @2507 PRIVATE + tgammaf@0 @2508 PRIVATE + tgammal@0 @2509 PRIVATE + tmpfile=MSVCRT_tmpfile @2510 + tmpfile_s=MSVCRT_tmpfile_s @2511 + tmpnam=MSVCRT_tmpnam @2512 + tmpnam_s=MSVCRT_tmpnam_s @2513 + tolower=MSVCRT_tolower @2514 + toupper=MSVCRT_toupper @2515 + towctrans=MSVCR120_towctrans @2516 + towlower=MSVCRT_towlower @2517 + towupper=MSVCRT_towupper @2518 + trunc=MSVCR120_trunc @2519 + truncf=MSVCR120_truncf @2520 + truncl=MSVCR120_truncl @2521 + unexpected@0 @2522 PRIVATE + ungetc=MSVCRT_ungetc @2523 + ungetwc=MSVCRT_ungetwc @2524 + wcrtomb=MSVCRT_wcrtomb @2525 + wcrtomb_s@0 @2526 PRIVATE + wcscat=ntdll.wcscat @2527 + wcscat_s=MSVCRT_wcscat_s @2528 + wcschr=MSVCRT_wcschr @2529 + wcscmp=MSVCRT_wcscmp @2530 + wcscoll=MSVCRT_wcscoll @2531 + wcscpy=ntdll.wcscpy @2532 + wcscpy_s=MSVCRT_wcscpy_s @2533 + wcscspn=ntdll.wcscspn @2534 + wcsftime=MSVCRT_wcsftime @2535 + wcslen=MSVCRT_wcslen @2536 + wcsncat=ntdll.wcsncat @2537 + wcsncat_s=MSVCRT_wcsncat_s @2538 + wcsncmp=MSVCRT_wcsncmp @2539 + wcsncpy=MSVCRT_wcsncpy @2540 + wcsncpy_s=MSVCRT_wcsncpy_s @2541 + wcsnlen=MSVCRT_wcsnlen @2542 + wcspbrk=MSVCRT_wcspbrk @2543 + wcsrchr=MSVCRT_wcsrchr @2544 + wcsrtombs=MSVCRT_wcsrtombs @2545 + wcsrtombs_s=MSVCRT_wcsrtombs_s @2546 + wcsspn=ntdll.wcsspn @2547 + wcsstr=MSVCRT_wcsstr @2548 + wcstod=MSVCRT_wcstod @2549 + wcstof=MSVCRT_wcstof @2550 + wcstoimax@0 @2551 PRIVATE + wcstok=MSVCRT_wcstok @2552 + wcstok_s=MSVCRT_wcstok_s @2553 + wcstol=MSVCRT_wcstol @2554 + wcstold@0 @2555 PRIVATE + wcstoll=MSVCRT__wcstoi64 @2556 + wcstombs=MSVCRT_wcstombs @2557 + wcstombs_s=MSVCRT_wcstombs_s @2558 + wcstoul=MSVCRT_wcstoul @2559 + wcstoull=MSVCRT__wcstoui64 @2560 + wcstoumax@0 @2561 PRIVATE + wcsxfrm=MSVCRT_wcsxfrm @2562 + wctob=MSVCRT_wctob @2563 + wctomb=MSVCRT_wctomb @2564 + wctomb_s=MSVCRT_wctomb_s @2565 + wctrans=MSVCR120_wctrans @2566 + wctype @2567 + wmemcpy_s @2568 + wmemmove_s @2569 diff --git a/lib/wine/libuiautomationcore.def b/lib/wine/libuiautomationcore.def new file mode 100644 index 0000000..fe9e44c --- /dev/null +++ b/lib/wine/libuiautomationcore.def @@ -0,0 +1,98 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/uiautomationcore/uiautomationcore.spec; do not edit! + +LIBRARY uiautomationcore.dll + +EXPORTS + DllCanUnloadNow@0 @1 PRIVATE + DllGetClassObject@0 @2 PRIVATE + DllRegisterServer@0 @3 PRIVATE + DllUnregisterServer@0 @4 PRIVATE + DockPattern_SetDockPosition@0 @5 PRIVATE + ExpandCollapsePattern_Collapse@0 @6 PRIVATE + ExpandCollapsePattern_Expand@0 @7 PRIVATE + GridPattern_GetItem@0 @8 PRIVATE + InvokePattern_Invoke@0 @9 PRIVATE + ItemContainerPattern_FindItemByProperty@0 @10 PRIVATE + LegacyIAccessiblePattern_DoDefaultAction@0 @11 PRIVATE + LegacyIAccessiblePattern_GetIAccessible@0 @12 PRIVATE + LegacyIAccessiblePattern_Select@0 @13 PRIVATE + LegacyIAccessiblePattern_SetValue@0 @14 PRIVATE + MultipleViewPattern_GetViewName@0 @15 PRIVATE + MultipleViewPattern_SetCurrentView@0 @16 PRIVATE + RangeValuePattern_SetValue@0 @17 PRIVATE + ScrollItemPattern_ScrollIntoView@0 @18 PRIVATE + ScrollPattern_Scroll@0 @19 PRIVATE + ScrollPattern_SetScrollPercent@0 @20 PRIVATE + SelectionItemPattern_AddToSelection@0 @21 PRIVATE + SelectionItemPattern_RemoveFromSelection@0 @22 PRIVATE + SelectionItemPattern_Select@0 @23 PRIVATE + SynchronizedInputPattern_Cancel@0 @24 PRIVATE + SynchronizedInputPattern_StartListening@0 @25 PRIVATE + TextPattern_GetSelection@0 @26 PRIVATE + TextPattern_GetVisibleRanges@0 @27 PRIVATE + TextPattern_RangeFromChild@0 @28 PRIVATE + TextPattern_RangeFromPoint@0 @29 PRIVATE + TextPattern_get_DocumentRange@0 @30 PRIVATE + TextPattern_get_SupportedTextSelection@0 @31 PRIVATE + TextRange_AddToSelection@0 @32 PRIVATE + TextRange_Clone@0 @33 PRIVATE + TextRange_Compare@0 @34 PRIVATE + TextRange_CompareEndpoints@0 @35 PRIVATE + TextRange_ExpandToEnclosingUnit@0 @36 PRIVATE + TextRange_FindAttribute@0 @37 PRIVATE + TextRange_FindText@0 @38 PRIVATE + TextRange_GetAttributeValue@0 @39 PRIVATE + TextRange_GetBoundingRectangles@0 @40 PRIVATE + TextRange_GetChildren@0 @41 PRIVATE + TextRange_GetEnclosingElement@0 @42 PRIVATE + TextRange_GetText@0 @43 PRIVATE + TextRange_Move@0 @44 PRIVATE + TextRange_MoveEndpointByRange@0 @45 PRIVATE + TextRange_MoveEndpointByUnit@0 @46 PRIVATE + TextRange_RemoveFromSelection@0 @47 PRIVATE + TextRange_ScrollIntoView@0 @48 PRIVATE + TextRange_Select@0 @49 PRIVATE + TogglePattern_Toggle@0 @50 PRIVATE + TransformPattern_Move@0 @51 PRIVATE + TransformPattern_Resize@0 @52 PRIVATE + TransformPattern_Rotate@0 @53 PRIVATE + UiaAddEvent@0 @54 PRIVATE + UiaClientsAreListening@0 @55 + UiaEventAddWindow@0 @56 PRIVATE + UiaEventRemoveWindow@0 @57 PRIVATE + UiaFind@0 @58 PRIVATE + UiaGetErrorDescription@0 @59 PRIVATE + UiaGetPatternProvider@0 @60 PRIVATE + UiaGetPropertyValue@0 @61 PRIVATE + UiaGetReservedMixedAttributeValue@4 @62 + UiaGetReservedNotSupportedValue@4 @63 + UiaGetRootNode@0 @64 PRIVATE + UiaGetRuntimeId@0 @65 PRIVATE + UiaGetUpdatedCache@0 @66 PRIVATE + UiaHPatternObjectFromVariant@0 @67 PRIVATE + UiaHTextRangeFromVariant@0 @68 PRIVATE + UiaHUiaNodeFromVariant@0 @69 PRIVATE + UiaHasServerSideProvider@0 @70 PRIVATE + UiaHostProviderFromHwnd@8 @71 + UiaLookupId@8 @72 + UiaNavigate@0 @73 PRIVATE + UiaNodeFromFocus@0 @74 PRIVATE + UiaNodeFromHandle@0 @75 PRIVATE + UiaNodeFromPoint@0 @76 PRIVATE + UiaNodeFromProvider@0 @77 PRIVATE + UiaNodeRelease@0 @78 PRIVATE + UiaPatternRelease@0 @79 PRIVATE + UiaRaiseAsyncContentLoadedEvent@0 @80 PRIVATE + UiaRaiseAutomationEvent@8 @81 + UiaRaiseAutomationPropertyChangedEvent@0 @82 PRIVATE + UiaRaiseStructureChangedEvent@0 @83 PRIVATE + UiaRegisterProviderCallback@0 @84 PRIVATE + UiaRemoveEvent@0 @85 PRIVATE + UiaReturnRawElementProvider@16 @86 + UiaSetFocus@0 @87 PRIVATE + UiaTextRangeRelease@0 @88 PRIVATE + ValuePattern_SetValue@0 @89 PRIVATE + VirtualizedItemPattern_Realize@0 @90 PRIVATE + WindowPattern_Close@0 @91 PRIVATE + WindowPattern_SetWindowVisualState@0 @92 PRIVATE + WindowPattern_WaitForInputIdle@0 @93 PRIVATE diff --git a/lib/wine/libunicows.def b/lib/wine/libunicows.def new file mode 100644 index 0000000..7eb6413 --- /dev/null +++ b/lib/wine/libunicows.def @@ -0,0 +1,512 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/unicows/unicows.spec; do not edit! + +LIBRARY unicows.dll + +EXPORTS + AcquireCredentialsHandleW@36 @1 + AddAtomW@4 @2 + AddFontResourceW@4 @3 + AddJobW@20 @4 + AddMonitorW@12 @5 + AddPortW@12 @6 + AddPrintProcessorW@16 @7 + AddPrintProvidorW@12 @8 + AddPrinterDriverW@12 @9 + AddPrinterW@12 @10 + AdvancedDocumentPropertiesW@20 @11 + AppendMenuW@16 @12 + BeginUpdateResourceA@8 @13 + BeginUpdateResourceW@8 @14 + BroadcastSystemMessageW@20 @15 + BuildCommDCBAndTimeoutsW@12 @16 + BuildCommDCBW@8 @17 + CallMsgFilterW@8 @18 + CallNamedPipeW@28 @19 + CallWindowProcA@20 @20 + CallWindowProcW@20 @21 + ChangeDisplaySettingsExW@20 @22 + ChangeDisplaySettingsW@8 @23 + ChangeMenuW@20 @24 + CharLowerBuffW@8 @25 + CharLowerW@4 @26 + CharNextW@4 @27 + CharPrevW@8 @28 + CharToOemBuffW@12 @29 + CharToOemW@8 @30 + CharUpperBuffW@8 @31 + CharUpperW@4 @32 + ChooseColorW@4 @33 + ChooseFontW@4 @34 + CommConfigDialogW@12 @35 + CompareStringW@24 @36 + ConfigurePortW@12 @37 + CopyAcceleratorTableW@12 @38 + CopyEnhMetaFileW@8 @39 + CopyFileExW@24 @40 + CopyFileW@12 @41 + CopyMetaFileW@8 @42 + CreateAcceleratorTableW@8 @43 + CreateColorSpaceW@4 @44 + CreateDCW@16 @45 + CreateDialogIndirectParamW@20 @46 + CreateDialogParamW@20 @47 + CreateDirectoryExW@12 @48 + CreateDirectoryW@8 @49 + CreateEnhMetaFileW@16 @50 + CreateEventW@16 @51 + CreateFileMappingW@24 @52 + CreateFileW@28 @53 + CreateFontIndirectW@4 @54 + CreateFontW@56 @55 + CreateICW@16 @56 + CreateMDIWindowW@40 @57 + CreateMailslotW@16 @58 + CreateMetaFileW@4 @59 + CreateMutexW@12 @60 + CreateNamedPipeW@32 @61 + CreateProcessW@40 @62 + CreateScalableFontResourceW@16 @63 + CreateSemaphoreW@16 @64 + CreateStdAccessibleProxyW@0 @65 PRIVATE + CreateWaitableTimerW@12 @66 + CreateWindowExW@48 @67 + CryptAcquireContextW@20 @68 + CryptEnumProviderTypesW@24 @69 + CryptEnumProvidersW@24 @70 + CryptGetDefaultProviderW@20 @71 + CryptSetProviderExW@16 @72 + CryptSetProviderW@8 @73 + CryptSignHashW@24 @74 + CryptVerifySignatureW@24 @75 + DdeConnect@16 @76 + DdeConnectList@20 @77 + DdeCreateStringHandleW@12 @78 + DdeInitializeW@16 @79 + DdeQueryConvInfo@12 @80 + DdeQueryStringW@20 @81 + DefDlgProcW@16 @82 + DefFrameProcW@20 @83 + DefMDIChildProcW@16 @84 + DefWindowProcW@16 @85 + DeleteFileW@4 @86 + DeleteMonitorW@12 @87 + DeletePortW@12 @88 + DeletePrintProcessorW@12 @89 + DeletePrintProvidorW@12 @90 + DeletePrinterDriverW@12 @91 + DeviceCapabilitiesW@20 @92 + DialogBoxIndirectParamW@20 @93 + DialogBoxParamW@20 @94 + DispatchMessageW@4 @95 + DlgDirListComboBoxW@20 @96 + DlgDirListW@20 @97 + DlgDirSelectComboBoxExW@16 @98 + DlgDirSelectExW@16 @99 + DocumentPropertiesW@24 @100 + DragQueryFileW@16 @101 + DrawStateW@40 @102 + DrawTextExW@24 @103 + DrawTextW@20 @104 + EnableWindow@8 @105 + EndUpdateResourceA@8 @106 + EndUpdateResourceW@8 @107 + EnumCalendarInfoExW@16 @108 + EnumCalendarInfoW@16 @109 + EnumClipboardFormats@4 @110 + EnumDateFormatsExW@12 @111 + EnumDateFormatsW@12 @112 + EnumDisplayDevicesW@16 @113 + EnumDisplaySettingsExW@16 @114 + EnumDisplaySettingsW@12 @115 + EnumFontFamiliesExW@20 @116 + EnumFontFamiliesW@16 @117 + EnumFontsW@16 @118 + EnumICMProfilesW@12 @119 + EnumMonitorsW@24 @120 + EnumPortsW@24 @121 + EnumPrintProcessorDatatypesW@28 @122 + EnumPrintProcessorsW@28 @123 + EnumPrinterDriversW@28 @124 + EnumPrintersW@28 @125 + EnumPropsA@8 @126 + EnumPropsExA@12 @127 + EnumPropsExW@12 @128 + EnumPropsW@8 @129 + EnumSystemCodePagesW@8 @130 + EnumSystemLocalesW@8 @131 + EnumTimeFormatsW@12 @132 + EnumerateSecurityPackagesW@8 @133 + ExpandEnvironmentStringsW@12 @134 + ExtTextOutW@32 @135 + ExtractIconExW@20 @136 + ExtractIconW@12 @137 + FatalAppExitW@8 @138 + FillConsoleOutputCharacterW@20 @139 + FindAtomW@4 @140 + FindExecutableW@12 @141 + FindFirstChangeNotificationW@12 @142 + FindFirstFileW@8 @143 + FindNextFileW@8 @144 + FindResourceExW@16 @145 + FindResourceW@12 @146 + FindTextW@4 @147 + FindWindowExW@16 @148 + FindWindowW@8 @149 + FormatMessageW@28 @150 + FreeContextBuffer@4 @151 + FreeEnvironmentStringsW@4 @152 + GetAltTabInfoW@20 @153 + GetAtomNameW@12 @154 + GetCPInfo@8 @155 + GetCPInfoExW@12 @156 + GetCalendarInfoW@24 @157 + GetCharABCWidthsFloatW@16 @158 + GetCharABCWidthsW@16 @159 + GetCharWidth32W@16 @160 + GetCharWidthFloatW@16 @161 + GetCharWidthW@16 @162 + GetCharacterPlacementW@24 @163 + GetClassInfoExW@12 @164 + GetClassInfoW@12 @165 + GetClassLongW@8 @166 + GetClassNameW@12 @167 + GetClipboardData@4 @168 + GetClipboardFormatNameW@12 @169 + GetComputerNameW@8 @170 + GetConsoleTitleW@8 @171 + GetCurrencyFormatW@24 @172 + GetCurrentDirectoryW@8 @173 + GetCurrentHwProfileW@4 @174 + GetDateFormatW@24 @175 + GetDefaultCommConfigW@12 @176 + GetDiskFreeSpaceExW@16 @177 + GetDiskFreeSpaceW@20 @178 + GetDlgItemTextW@16 @179 + GetDriveTypeW@4 @180 + GetEnhMetaFileDescriptionW@12 @181 + GetEnhMetaFileW@4 @182 + GetEnvironmentStringsW@0 @183 + GetEnvironmentVariableW@12 @184 + GetFileAttributesExW@12 @185 + GetFileAttributesW@4 @186 + GetFileTitleW@12 @187 + GetFileVersionInfoSizeW@8 @188 + GetFileVersionInfoW@16 @189 + GetFullPathNameW@16 @190 + GetGlyphOutlineW@28 @191 + GetICMProfileW@12 @192 + GetJobW@24 @193 + GetKerningPairsW@12 @194 + GetKeyNameTextW@12 @195 + GetKeyboardLayoutNameW@4 @196 + GetLocaleInfoW@16 @197 + GetLogColorSpaceW@12 @198 + GetLogicalDriveStringsW@8 @199 + GetLongPathNameW@12 @200 + GetMenuItemInfoW@16 @201 + GetMenuStringW@20 @202 + GetMessageW@16 @203 + GetMetaFileW@4 @204 + GetModuleFileNameW@12 @205 + GetModuleHandleW@4 @206 + GetMonitorInfoW@8 @207 + GetNamedPipeHandleStateW@28 @208 + GetNumberFormatW@24 @209 + GetObjectW@12 @210 + GetOpenFileNamePreviewW@4 @211 + GetOpenFileNameW@4 @212 + GetOutlineTextMetricsW@12 @213 + GetPrintProcessorDirectoryW@24 @214 + GetPrinterDataW@24 @215 + GetPrinterDriverDirectoryW@24 @216 + GetPrinterDriverW@24 @217 + GetPrinterW@20 @218 + GetPrivateProfileIntW@16 @219 + GetPrivateProfileSectionNamesW@12 @220 + GetPrivateProfileSectionW@16 @221 + GetPrivateProfileStringW@24 @222 + GetPrivateProfileStructW@20 @223 + GetProcAddress@8 @224 + GetProfileIntW@12 @225 + GetProfileSectionW@12 @226 + GetProfileStringW@20 @227 + GetPropA@8 @228 + GetPropW@8 @229 + GetRoleTextW@12 @230 + GetSaveFileNamePreviewW@4 @231 + GetSaveFileNameW@4 @232 + GetShortPathNameW@12 @233 + GetStartupInfoW@4 @234 + GetStateTextW@0 @235 PRIVATE + GetStringTypeExW@20 @236 + GetStringTypeW@16 @237 + GetSystemDirectoryW@8 @238 + GetSystemWindowsDirectoryW@8 @239 + GetTabbedTextExtentW@20 @240 + GetTempFileNameW@16 @241 + GetTempPathW@8 @242 + GetTextExtentExPointW@28 @243 + GetTextExtentPoint32W@16 @244 + GetTextExtentPointW@16 @245 + GetTextFaceW@12 @246 + GetTextMetricsW@8 @247 + GetTimeFormatW@24 @248 + GetUserNameW@8 @249 + GetVersionExW@4 @250 + GetVolumeInformationW@32 @251 + GetWindowLongA@8 @252 + GetWindowLongW@8 @253 + GetWindowModuleFileNameW@12 @254 + GetWindowTextLengthW@4 @255 + GetWindowTextW@12 @256 + GetWindowsDirectoryW@8 @257 + GlobalAddAtomW@4 @258 + GlobalFindAtomW@4 @259 + GlobalGetAtomNameW@12 @260 + GrayStringW@36 @261 + InitSecurityInterfaceW@0 @262 + InitializeSecurityContextW@48 @263 + InsertMenuItemW@16 @264 + InsertMenuW@20 @265 + IsBadStringPtrW@8 @266 + IsCharAlphaNumericW@4 @267 + IsCharAlphaW@4 @268 + IsCharLowerW@4 @269 + IsCharUpperW@4 @270 + IsClipboardFormatAvailable@4 @271 + IsDestinationReachableW@8 @272 + IsDialogMessageW@8 @273 + IsTextUnicode@12 @274 + IsValidCodePage@4 @275 + IsWindowUnicode@4 @276 + LCMapStringW@24 @277 + LoadAcceleratorsW@8 @278 + LoadBitmapW@8 @279 + LoadCursorFromFileW@4 @280 + LoadCursorW@8 @281 + LoadIconW@8 @282 + LoadImageW@24 @283 + LoadKeyboardLayoutW@8 @284 + LoadLibraryExW@12 @285 + LoadLibraryW@4 @286 + LoadMenuIndirectW@4 @287 + LoadMenuW@8 @288 + LoadStringW@16 @289 + MCIWndCreateW @290 + MapVirtualKeyExW@12 @291 + MapVirtualKeyW@8 @292 + MessageBoxExW@20 @293 + MessageBoxIndirectW@4 @294 + MessageBoxW@16 @295 + ModifyMenuW@20 @296 + MoveFileW@8 @297 + MultiByteToWideChar@24 @298 + MultinetGetConnectionPerformanceW@8 @299 + OemToCharBuffW@12 @300 + OemToCharW@8 @301 + OleUIAddVerbMenuW@36 @302 + OleUIBusyW@4 @303 + OleUIChangeIconW@4 @304 + OleUIChangeSourceW@4 @305 + OleUIConvertW@4 @306 + OleUIEditLinksW@4 @307 + OleUIInsertObjectW@4 @308 + OleUIObjectPropertiesW@4 @309 + OleUIPasteSpecialW@4 @310 + OleUIPromptUserW @311 + OleUIUpdateLinksW@16 @312 + OpenEventW@12 @313 + OpenFileMappingW@12 @314 + OpenMutexW@12 @315 + OpenPrinterW@12 @316 + OpenSemaphoreW@12 @317 + OpenWaitableTimerW@12 @318 + OutputDebugStringW@4 @319 + PageSetupDlgW@4 @320 + PeekConsoleInputW@16 @321 + PeekMessageW@20 @322 + PlaySoundW@12 @323 + PolyTextOutW@12 @324 + PostMessageW@16 @325 + PostThreadMessageW@16 @326 + PrintDlgW@4 @327 + QueryContextAttributesW@12 @328 + QueryCredentialsAttributesW@12 @329 + QueryDosDeviceW@12 @330 + QuerySecurityPackageInfoW@8 @331 + RasConnectionNotificationW@12 @332 + RasCreatePhonebookEntryW@8 @333 + RasDeleteEntryW@8 @334 + RasDeleteSubEntryW@12 @335 + RasDialW@24 @336 + RasEditPhonebookEntryW@12 @337 + RasEnumConnectionsW@12 @338 + RasEnumDevicesW@12 @339 + RasEnumEntriesW@20 @340 + RasGetConnectStatusW@8 @341 + RasGetEntryDialParamsW@12 @342 + RasGetEntryPropertiesW@24 @343 + RasGetErrorStringW@12 @344 + RasGetProjectionInfoW@16 @345 + RasHangUpW@4 @346 + RasRenameEntryW@12 @347 + RasSetEntryDialParamsW@12 @348 + RasSetEntryPropertiesW@24 @349 + RasSetSubEntryPropertiesW@28 @350 + RasValidateEntryNameW@8 @351 + ReadConsoleInputW@16 @352 + ReadConsoleOutputCharacterW@20 @353 + ReadConsoleOutputW@20 @354 + ReadConsoleW@20 @355 + RegConnectRegistryW@12 @356 + RegCreateKeyExW@36 @357 + RegCreateKeyW@12 @358 + RegDeleteKeyW@8 @359 + RegDeleteValueW@8 @360 + RegEnumKeyExW@32 @361 + RegEnumKeyW@16 @362 + RegEnumValueW@32 @363 + RegLoadKeyW@12 @364 + RegOpenKeyExW@20 @365 + RegOpenKeyW@12 @366 + RegQueryInfoKeyW@48 @367 + RegQueryMultipleValuesW@20 @368 + RegQueryValueExW@24 @369 + RegQueryValueW@16 @370 + RegReplaceKeyW@16 @371 + RegSaveKeyW@12 @372 + RegSetValueExW@24 @373 + RegSetValueW@20 @374 + RegUnLoadKeyW@8 @375 + RegisterClassExW@4 @376 + RegisterClassW@4 @377 + RegisterClipboardFormatW@4 @378 + RegisterDeviceNotificationW@12 @379 + RegisterWindowMessageW@4 @380 + RemoveDirectoryW@4 @381 + RemoveFontResourceW@4 @382 + RemovePropA@8 @383 + RemovePropW@8 @384 + ReplaceTextW@4 @385 + ResetDCW@8 @386 + ResetPrinterW@8 @387 + SHBrowseForFolderW@4 @388 + SHChangeNotify@16 @389 + SHFileOperationW@4 @390 + SHGetFileInfoW@20 @391 + SHGetNewLinkInfoW@20 @392 + SHGetPathFromIDListW@8 @393 + ScrollConsoleScreenBufferW@20 @394 + SearchPathW@24 @395 + SendDlgItemMessageW@20 @396 + SendMessageCallbackW@24 @397 + SendMessageTimeoutW@28 @398 + SendMessageW@16 @399 + SendNotifyMessageW@16 @400 + SetCalendarInfoW@16 @401 + SetClassLongW@12 @402 + SetComputerNameW@4 @403 + SetConsoleTitleW@4 @404 + SetCurrentDirectoryW@4 @405 + SetDefaultCommConfigW@12 @406 + SetDlgItemTextW@12 @407 + SetEnvironmentVariableW@8 @408 + SetFileAttributesW@8 @409 + SetICMProfileW@8 @410 + SetJobW@20 @411 + SetLocaleInfoW@12 @412 + SetMenuItemInfoW@16 @413 + SetPrinterDataW@20 @414 + SetPrinterW@16 @415 + SetPropA@12 @416 + SetPropW@12 @417 + SetVolumeLabelW@8 @418 + SetWindowLongA@12 @419 + SetWindowLongW@12 @420 + SetWindowTextW@8 @421 + SetWindowsHookExW@16 @422 + SetWindowsHookW@8 @423 + ShellAboutW@16 @424 + ShellExecuteExW@4 @425 + ShellExecuteW@24 @426 + Shell_NotifyIconW@8 @427 + StartDocPrinterW@12 @428 + StartDocW@8 @429 + SystemParametersInfoW@16 @430 + TabbedTextOutW@32 @431 + TextOutW@20 @432 + TranslateAcceleratorW@12 @433 + UnregisterClassW@8 @434 + UpdateICMRegKeyW@16 @435 + UpdateResourceA@24 @436 + UpdateResourceW@24 @437 + VerFindFileW@32 @438 + VerInstallFileW@32 @439 + VerLanguageNameW@12 @440 + VerQueryValueW@16 @441 + VkKeyScanExW@8 @442 + VkKeyScanW@4 @443 + WNetAddConnection2W@16 @444 + WNetAddConnection3W@20 @445 + WNetAddConnectionW@12 @446 + WNetCancelConnection2W@12 @447 + WNetCancelConnectionW@8 @448 + WNetConnectionDialog1W@4 @449 + WNetDisconnectDialog1W@4 @450 + WNetEnumResourceW@16 @451 + WNetGetConnectionW@12 @452 + WNetGetLastErrorW@20 @453 + WNetGetNetworkInformationW@8 @454 + WNetGetProviderNameW@12 @455 + WNetGetResourceInformationW@16 @456 + WNetGetResourceParentW@12 @457 + WNetGetUniversalNameW@16 @458 + WNetGetUserW@12 @459 + WNetOpenEnumW@20 @460 + WNetUseConnectionW@32 @461 + WaitNamedPipeW@8 @462 + WideCharToMultiByte@32 @463 + WinHelpW@16 @464 + WriteConsoleInputW@16 @465 + WriteConsoleOutputCharacterW@20 @466 + WriteConsoleOutputW@20 @467 + WriteConsoleW@20 @468 + WritePrivateProfileSectionW@12 @469 + WritePrivateProfileStringW@16 @470 + WritePrivateProfileStructW@20 @471 + WriteProfileSectionW@8 @472 + WriteProfileStringW@12 @473 + __FreeAllLibrariesInMsluDll@0 @474 PRIVATE + auxGetDevCapsW@12 @475 + capCreateCaptureWindowW@32 @476 + capGetDriverDescriptionW@20 @477 + joyGetDevCapsW@12 @478 + lstrcatW@8 @479 + lstrcmpW@8 @480 + lstrcmpiW@8 @481 + lstrcpyW@8 @482 + lstrcpynW@12 @483 + lstrlenW@4 @484 + mciGetDeviceIDW@4 @485 + mciGetErrorStringW@12 @486 + mciSendCommandW@16 @487 + mciSendStringW@16 @488 + midiInGetDevCapsW@12 @489 + midiInGetErrorTextW@12 @490 + midiOutGetDevCapsW@12 @491 + midiOutGetErrorTextW@12 @492 + mixerGetControlDetailsW@12 @493 + mixerGetDevCapsW@12 @494 + mixerGetLineControlsW@12 @495 + mixerGetLineInfoW@12 @496 + mmioInstallIOProcW@12 @497 + mmioOpenW@12 @498 + mmioRenameW@16 @499 + mmioStringToFOURCCW@8 @500 + sndPlaySoundW@8 @501 + waveInGetDevCapsW@12 @502 + waveInGetErrorTextW@12 @503 + waveOutGetDevCapsW@12 @504 + waveOutGetErrorTextW@12 @505 + wsprintfW @506 + wvsprintfW@12 @507 diff --git a/lib/wine/liburl.def b/lib/wine/liburl.def new file mode 100644 index 0000000..bc8c165 --- /dev/null +++ b/lib/wine/liburl.def @@ -0,0 +1,26 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/url/url.spec; do not edit! + +LIBRARY url.dll + +EXPORTS + AddMIMEFileTypesPS@8 @1 + AutodialHookCallback@0 @2 PRIVATE + DummyEntryPoint@0 @3 PRIVATE + DummyEntryPointA@0 @4 PRIVATE + FileProtocolHandler@16=FileProtocolHandlerA @5 + FileProtocolHandlerA@16 @6 + InetIsOffline@4 @7 + MIMEAssociationDialogA@0 @8 PRIVATE + MIMEAssociationDialogW@0 @9 PRIVATE + MailToProtocolHandler@0 @10 PRIVATE + MailToProtocolHandlerA@0 @11 PRIVATE + NewsProtocolHandler@0 @12 PRIVATE + NewsProtocolHandlerA@0 @13 PRIVATE + OpenURL@16=OpenURLA @14 + OpenURLA@16 @15 + TelnetProtocolHandler@8=TelnetProtocolHandlerA @16 + TelnetProtocolHandlerA@8 @17 + TranslateURLA@0 @18 PRIVATE + TranslateURLW@0 @19 PRIVATE + URLAssociationDialogA@0 @20 PRIVATE + URLAssociationDialogW@0 @21 PRIVATE diff --git a/lib/wine/liburlmon.def b/lib/wine/liburlmon.def new file mode 100644 index 0000000..8d8b461 --- /dev/null +++ b/lib/wine/liburlmon.def @@ -0,0 +1,96 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/urlmon/urlmon.spec; do not edit! + +LIBRARY urlmon.dll + +EXPORTS + CDLGetLongPathNameA@0 @1 PRIVATE + CDLGetLongPathNameW@0 @2 PRIVATE + AsyncGetClassBits@0 @3 PRIVATE + AsyncInstallDistributionUnit@36 @4 + BindAsyncMoniker@20 @5 + CoGetClassObjectFromURL@40 @6 + CoInstall@0 @7 PRIVATE + CoInternetCombineUrl@28 @8 + CoInternetCombineUrlEx@20 @9 + CoInternetCompareUrl@12 @10 + CoInternetCombineIUri@20 @11 + CoInternetCreateSecurityManager@12 @12 + CoInternetCreateZoneManager@12 @13 + CoInternetGetProtocolFlags@0 @14 PRIVATE + CoInternetGetSecurityUrl@16 @15 + CoInternetGetSecurityUrlEx@16 @16 + CoInternetGetSession@12 @17 + CoInternetIsFeatureEnabled@8 @18 + CoInternetIsFeatureEnabledForUrl@16 @19 + CoInternetIsFeatureZoneElevationEnabled@16 @20 + CoInternetParseUrl@28 @21 + CoInternetParseIUri@28 @22 + CoInternetQueryInfo@28 @23 + CoInternetSetFeatureEnabled@12 @24 + CompareSecurityIds@20 @25 + CopyBindInfo@8 @26 + CopyStgMedium@8 @27 + CreateAsyncBindCtx@16 @28 + CreateAsyncBindCtxEx@24 @29 + CreateFormatEnumerator@12 @30 + CreateIUriBuilder@16 @31 + CreateUri@16 @32 + CreateUriWithFragment@20 @33 + CreateURLMoniker@12 @34 + CreateURLMonikerEx@16 @35 + CreateURLMonikerEx2@16 @36 + DllCanUnloadNow@0 @37 PRIVATE + DllGetClassObject@12 @38 PRIVATE + DllInstall@8 @39 PRIVATE + DllRegisterServer@0 @40 PRIVATE + DllRegisterServerEx@0 @41 PRIVATE + DllUnregisterServer@0 @42 PRIVATE + Extract@8 @43 + FaultInIEFeature@16 @44 + FindMediaType@0 @45 PRIVATE + FindMediaTypeClass@0 @46 PRIVATE + FindMimeFromData@32 @47 + GetClassFileOrMime@28 @48 + GetClassURL@0 @49 PRIVATE + GetComponentIDFromCLSSPEC@0 @50 PRIVATE + GetMarkOfTheWeb@0 @51 PRIVATE + GetSoftwareUpdateInfo@8 @52 + HlinkGoBack@0 @53 PRIVATE + HlinkGoForward@0 @54 PRIVATE + HlinkNavigateMoniker@0 @55 PRIVATE + HlinkNavigateString@8 @56 + HlinkSimpleNavigateToMoniker@32 @57 + HlinkSimpleNavigateToString@32 @58 + IEInstallScope@0 @59 PRIVATE + IsAsyncMoniker@4 @60 + IsLoggingEnabledA@4 @61 + IsLoggingEnabledW@4 @62 + IsValidURL@12 @63 + MkParseDisplayNameEx@16 @64 + ObtainUserAgentString@12 @65 + PrivateCoInstall@0 @66 PRIVATE + RegisterBindStatusCallback@16 @67 + RegisterFormatEnumerator@12 @68 + RegisterMediaTypeClass@0 @69 PRIVATE + RegisterMediaTypes@12 @70 + ReleaseBindInfo@4 @71 + RevokeBindStatusCallback@8 @72 + RevokeFormatEnumerator@8 @73 + SetSoftwareUpdateAdvertisementState@0 @74 PRIVATE + URLDownloadA@0 @75 PRIVATE + URLDownloadToCacheFileA@24 @76 + URLDownloadToCacheFileW@24 @77 + URLDownloadToFileA@20 @78 + URLDownloadToFileW@20 @79 + URLDownloadW@0 @80 PRIVATE + URLOpenBlockingStreamA@20 @81 + URLOpenBlockingStreamW@20 @82 + URLOpenPullStreamA@0 @83 PRIVATE + URLOpenPullStreamW@0 @84 PRIVATE + URLOpenStreamA@16 @85 + URLOpenStreamW@16 @86 + UrlMkBuildVersion@0 @87 PRIVATE + UrlMkGetSessionOption@20 @88 + UrlMkSetSessionOption@16 @89 + WriteHitLogging@0 @90 PRIVATE + ZonesReInit@0 @91 PRIVATE diff --git a/lib/wine/libusbd.def b/lib/wine/libusbd.def new file mode 100644 index 0000000..050e97e --- /dev/null +++ b/lib/wine/libusbd.def @@ -0,0 +1,40 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/usbd.sys/usbd.sys.spec; do not edit! + +LIBRARY usbd.sys + +EXPORTS + USBD_CreateConfigurationRequestEx@8 @1 + USBD_ParseConfigurationDescriptorEx@28 @2 + USBD_ParseDescriptors@16 @3 + USBD_AllocateDeviceName@0 @4 PRIVATE + USBD_CalculateUsbBandwidth@0 @5 PRIVATE + USBD_CompleteRequest@0 @6 PRIVATE + USBD_CreateConfigurationRequest@8 @7 + _USBD_CreateConfigurationRequestEx@8@8=USBD_CreateConfigurationRequestEx @8 + USBD_CreateDevice@0 @9 PRIVATE + USBD_Debug_GetHeap@0 @10 PRIVATE + USBD_Debug_LogEntry@0 @11 PRIVATE + USBD_Debug_RetHeap@0 @12 PRIVATE + USBD_Dispatch@0 @13 PRIVATE + USBD_FreeDeviceMutex@0 @14 PRIVATE + USBD_FreeDeviceName@0 @15 PRIVATE + USBD_GetDeviceInformation@0 @16 PRIVATE + USBD_GetInterfaceLength@8 @17 + USBD_GetPdoRegistryParameter@0 @18 PRIVATE + USBD_GetRegistryKeyValue@0 @19 PRIVATE + USBD_GetSuspendPowerState@0 @20 PRIVATE + USBD_GetUSBDIVersion@4 @21 + USBD_InitializeDevice@0 @22 PRIVATE + USBD_MakePdoName@0 @23 PRIVATE + USBD_ParseConfigurationDescriptor@12 @24 + _USBD_ParseConfigurationDescriptorEx@28@28=USBD_ParseConfigurationDescriptorEx @25 + _USBD_ParseDescriptors@16@16=USBD_ParseDescriptors @26 + USBD_QueryBusTime@0 @27 PRIVATE + USBD_RegisterHcDeviceCapabilities@0 @28 PRIVATE + USBD_RegisterHcFilter@0 @29 PRIVATE + USBD_RegisterHostController@0 @30 PRIVATE + USBD_RemoveDevice@0 @31 PRIVATE + USBD_RestoreDevice@0 @32 PRIVATE + USBD_SetSuspendPowerState@0 @33 PRIVATE + USBD_ValidateConfigurationDescriptor@20 @34 + USBD_WaitDeviceMutex@0 @35 PRIVATE diff --git a/lib/wine/libuser32.def b/lib/wine/libuser32.def new file mode 100644 index 0000000..ab5e507 --- /dev/null +++ b/lib/wine/libuser32.def @@ -0,0 +1,769 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/user32/user32.spec; do not edit! + +LIBRARY user32.dll + +EXPORTS + ActivateKeyboardLayout@8 @1 + AddClipboardFormatListener@4 @2 + AdjustWindowRect@12 @3 + AdjustWindowRectEx@16 @4 + AdjustWindowRectExForDpi@20 @5 + AlignRects@16 @6 + AllowSetForegroundWindow@4 @7 + AnimateWindow@12 @8 + AnyPopup@0 @9 + AppendMenuA@16 @10 + AppendMenuW@16 @11 + AreDpiAwarenessContextsEqual@8 @12 + ArrangeIconicWindows@4 @13 + AttachThreadInput@12 @14 + BeginDeferWindowPos@4 @15 + BeginPaint@8 @16 + BlockInput@4 @17 + BringWindowToTop@4 @18 + BroadcastSystemMessage@20=BroadcastSystemMessageA @19 + BroadcastSystemMessageA@20 @20 + BroadcastSystemMessageExA@24 @21 + BroadcastSystemMessageExW@24 @22 + BroadcastSystemMessageW@20 @23 + CalcChildScroll@8 @24 + CalcMenuBar@20 @25 + CallMsgFilter@8=CallMsgFilterA @26 + CallMsgFilterA@8 @27 + CallMsgFilterW@8 @28 + CallNextHookEx@16 @29 + CallWindowProcA@20 @30 + CallWindowProcW@20 @31 + CascadeChildWindows@8 @32 + CascadeWindows@20 @33 + ChangeClipboardChain@8 @34 + ChangeDisplaySettingsA@8 @35 + ChangeDisplaySettingsExA@20 @36 + ChangeDisplaySettingsExW@20 @37 + ChangeDisplaySettingsW@8 @38 + ChangeMenuA@20 @39 + ChangeMenuW@20 @40 + ChangeWindowMessageFilter@8 @41 + ChangeWindowMessageFilterEx@16 @42 + CharLowerA@4 @43 + CharLowerBuffA@8 @44 + CharLowerBuffW@8 @45 + CharLowerW@4 @46 + CharNextA@4 @47 + CharNextExA@12 @48 + CharNextExW@12 @49 + CharNextW@4 @50 + CharPrevA@8 @51 + CharPrevExA@16 @52 + CharPrevExW@16 @53 + CharPrevW@8 @54 + CharToOemA@8 @55 + CharToOemBuffA@12 @56 + CharToOemBuffW@12 @57 + CharToOemW@8 @58 + CharUpperA@4 @59 + CharUpperBuffA@8 @60 + CharUpperBuffW@8 @61 + CharUpperW@4 @62 + CheckDlgButton@12 @63 + CheckMenuItem@12 @64 + CheckMenuRadioItem@20 @65 + CheckRadioButton@16 @66 + ChildWindowFromPoint@12 @67 + ChildWindowFromPointEx@16 @68 + CliImmSetHotKey@0 @69 PRIVATE + ClientThreadConnect@0 @70 PRIVATE + ClientThreadSetup@0 @71 PRIVATE + ClientToScreen@8 @72 + ClipCursor@4 @73 + CloseClipboard@0 @74 + CloseDesktop@4 @75 + CloseTouchInputHandle@4 @76 + CloseWindow@4 @77 + CloseWindowStation@4 @78 + CopyAcceleratorTableA@12 @79 + CopyAcceleratorTableW@12 @80 + CopyIcon@4 @81 + CopyImage@20 @82 + CopyRect@8 @83 + CountClipboardFormats@0 @84 + CreateAcceleratorTableA@8 @85 + CreateAcceleratorTableW@8 @86 + CreateCaret@16 @87 + CreateCursor@28 @88 + CreateDesktopA@24 @89 + CreateDesktopW@24 @90 + CreateDialogIndirectParamA@20 @91 + CreateDialogIndirectParamAorW@24 @92 + CreateDialogIndirectParamW@20 @93 + CreateDialogParamA@20 @94 + CreateDialogParamW@20 @95 + CreateIcon@28 @96 + CreateIconFromResource@16 @97 + CreateIconFromResourceEx@28 @98 + CreateIconIndirect@4 @99 + CreateMDIWindowA@40 @100 + CreateMDIWindowW@40 @101 + CreateMenu@0 @102 + CreatePopupMenu@0 @103 + CreateWindowExA@48 @104 + CreateWindowExW@48 @105 + CreateWindowStationA@16 @106 + CreateWindowStationW@16 @107 + DdeAbandonTransaction@12 @108 + DdeAccessData@8 @109 + DdeAddData@16 @110 + DdeClientTransaction@32 @111 + DdeCmpStringHandles@8 @112 + DdeConnect@16 @113 + DdeConnectList@20 @114 + DdeCreateDataHandle@28 @115 + DdeCreateStringHandleA@12 @116 + DdeCreateStringHandleW@12 @117 + DdeDisconnect@4 @118 + DdeDisconnectList@4 @119 + DdeEnableCallback@12 @120 + DdeFreeDataHandle@4 @121 + DdeFreeStringHandle@8 @122 + DdeGetData@16 @123 + DdeGetLastError@4 @124 + DdeGetQualityOfService@0 @125 PRIVATE + DdeImpersonateClient@4 @126 + DdeInitializeA@16 @127 + DdeInitializeW@16 @128 + DdeKeepStringHandle@8 @129 + DdeNameService@16 @130 + DdePostAdvise@12 @131 + DdeQueryConvInfo@12 @132 + DdeQueryNextServer@8 @133 + DdeQueryStringA@20 @134 + DdeQueryStringW@20 @135 + DdeReconnect@4 @136 + DdeSetQualityOfService@12 @137 + DdeSetUserHandle@12 @138 + DdeUnaccessData@4 @139 + DdeUninitialize@4 @140 + DefDlgProcA@16 @141 + DefDlgProcW@16 @142 + DefFrameProcA@20 @143 + DefFrameProcW@20 @144 + DefMDIChildProcA@16 @145 + DefMDIChildProcW@16 @146 + DefRawInputProc@12 @147 + DefWindowProcA@16 @148 + DefWindowProcW@16 @149 + DeferWindowPos@32 @150 + DeleteMenu@12 @151 + DeregisterShellHookWindow@4 @152 + DestroyAcceleratorTable@4 @153 + DestroyCaret@0 @154 + DestroyCursor@4 @155 + DestroyIcon@4 @156 + DestroyMenu@4 @157 + DestroyWindow@4 @158 + DialogBoxIndirectParamA@20 @159 + DialogBoxIndirectParamAorW@24 @160 + DialogBoxIndirectParamW@20 @161 + DialogBoxParamA@20 @162 + DialogBoxParamW@20 @163 + DisableProcessWindowsGhosting@0 @164 + DispatchMessageA@4 @165 + DispatchMessageW@4 @166 + DisplayConfigGetDeviceInfo@4 @167 + DlgDirListA@20 @168 + DlgDirListComboBoxA@20 @169 + DlgDirListComboBoxW@20 @170 + DlgDirListW@20 @171 + DlgDirSelectComboBoxExA@16 @172 + DlgDirSelectComboBoxExW@16 @173 + DlgDirSelectExA@16 @174 + DlgDirSelectExW@16 @175 + DragDetect@12 @176 + DragObject@0 @177 PRIVATE + DrawAnimatedRects@16 @178 + DrawCaption@16 @179 + DrawCaptionTempA@28 @180 + DrawCaptionTempW@28 @181 + DrawEdge@16 @182 + DrawFocusRect@8 @183 + DrawFrame@0 @184 PRIVATE + DrawFrameControl@16 @185 + DrawIcon@16 @186 + DrawIconEx@36 @187 + DrawMenuBar@4 @188 + DrawMenuBarTemp@20 @189 + DrawStateA@40 @190 + DrawStateW@40 @191 + DrawTextA@20 @192 + DrawTextExA@24 @193 + DrawTextExW@24 @194 + DrawTextW@20 @195 + EditWndProc@16=EditWndProcA @196 + EmptyClipboard@0 @197 + EnableMenuItem@12 @198 + EnableMouseInPointer@4 @199 + EnableScrollBar@12 @200 + EnableWindow@8 @201 + EndDeferWindowPos@4 @202 + EndDialog@8 @203 + EndMenu@0 @204 + EndPaint@8 @205 + EndTask@0 @206 PRIVATE + EnumChildWindows@12 @207 + EnumClipboardFormats@4 @208 + EnumDesktopWindows@12 @209 + EnumDesktopsA@12 @210 + EnumDesktopsW@12 @211 + EnumDisplayDeviceModesA@0 @212 PRIVATE + EnumDisplayDeviceModesW@0 @213 PRIVATE + EnumDisplayDevicesA@16 @214 + EnumDisplayDevicesW@16 @215 + EnumDisplayMonitors@16 @216 + EnumDisplaySettingsA@12 @217 + EnumDisplaySettingsExA@16 @218 + EnumDisplaySettingsExW@16 @219 + EnumDisplaySettingsW@12 @220 + EnumPropsA@8 @221 + EnumPropsExA@12 @222 + EnumPropsExW@12 @223 + EnumPropsW@8 @224 + EnumThreadWindows@12 @225 + EnumWindowStationsA@8 @226 + EnumWindowStationsW@8 @227 + EnumWindows@8 @228 + EqualRect@8 @229 + ExcludeUpdateRgn@8 @230 + ExitWindowsEx@8 @231 + FillRect@12 @232 + FindWindowA@8 @233 + FindWindowExA@16 @234 + FindWindowExW@16 @235 + FindWindowW@8 @236 + FlashWindow@8 @237 + FlashWindowEx@4 @238 + FrameRect@12 @239 + FreeDDElParam@8 @240 + GetActiveWindow@0 @241 + GetAltTabInfo@20=GetAltTabInfoA @242 + GetAltTabInfoA@20 @243 + GetAltTabInfoW@20 @244 + GetAncestor@8 @245 + GetAppCompatFlags@4 @246 + GetAppCompatFlags2@4 @247 + GetAsyncKeyState@4 @248 + GetAutoRotationState@4 @249 + GetAwarenessFromDpiAwarenessContext@4 @250 + GetCapture@0 @251 + GetCaretBlinkTime@0 @252 + GetCaretPos@4 @253 + GetClassInfoA@12 @254 + GetClassInfoExA@12 @255 + GetClassInfoExW@12 @256 + GetClassInfoW@12 @257 + GetClassLongA@8 @258 + GetClassLongW@8 @259 + GetClassNameA@12 @260 + GetClassNameW@12 @261 + GetClassWord@8 @262 + GetClientRect@8 @263 + GetClipCursor@4 @264 + GetClipboardData@4 @265 + GetClipboardFormatNameA@12 @266 + GetClipboardFormatNameW@12 @267 + GetClipboardOwner@0 @268 + GetClipboardSequenceNumber@0 @269 + GetClipboardViewer@0 @270 + GetComboBoxInfo@8 @271 + GetCurrentInputMessageSource@4 @272 + GetCursor@0 @273 + GetCursorFrameInfo@20 @274 + GetCursorInfo@4 @275 + GetCursorPos@4 @276 + GetDC@4 @277 + GetDCEx@12 @278 + GetDesktopWindow@0 @279 + GetDialogBaseUnits@0 @280 + GetDisplayAutoRotationPreferences@4 @281 + GetDisplayConfigBufferSizes@12 @282 + GetDlgCtrlID@4 @283 + GetDlgItem@8 @284 + GetDlgItemInt@16 @285 + GetDlgItemTextA@16 @286 + GetDlgItemTextW@16 @287 + GetDoubleClickTime@0 @288 + GetDpiForMonitorInternal@16 @289 + GetDpiForSystem@0 @290 + GetDpiForWindow@4 @291 + GetFocus@0 @292 + GetForegroundWindow@0 @293 + GetGestureConfig@24 @294 + GetGestureInfo@8 @295 + GetGUIThreadInfo@8 @296 + GetGuiResources@8 @297 + GetIconInfo@8 @298 + GetIconInfoExA@8 @299 + GetIconInfoExW@8 @300 + GetInputDesktop@0 @301 PRIVATE + GetInputState@0 @302 + GetInternalWindowPos@12 @303 + GetKBCodePage@0 @304 + GetKeyNameTextA@12 @305 + GetKeyNameTextW@12 @306 + GetKeyState@4 @307 + GetKeyboardLayout@4 @308 + GetKeyboardLayoutList@8 @309 + GetKeyboardLayoutNameA@4 @310 + GetKeyboardLayoutNameW@4 @311 + GetKeyboardState@4 @312 + GetKeyboardType@4 @313 + GetLastActivePopup@4 @314 + GetLastInputInfo@4 @315 + GetLayeredWindowAttributes@16 @316 + GetListBoxInfo@4 @317 + GetMenu@4 @318 + GetMenuBarInfo@16 @319 + GetMenuCheckMarkDimensions@0 @320 + GetMenuContextHelpId@4 @321 + GetMenuDefaultItem@12 @322 + GetMenuIndex@0 @323 PRIVATE + GetMenuInfo@8 @324 + GetMenuItemCount@4 @325 + GetMenuItemID@8 @326 + GetMenuItemInfoA@16 @327 + GetMenuItemInfoW@16 @328 + GetMenuItemRect@16 @329 + GetMenuState@12 @330 + GetMenuStringA@20 @331 + GetMenuStringW@20 @332 + GetMessageA@16 @333 + GetMessageExtraInfo@0 @334 + GetMessagePos@0 @335 + GetMessageTime@0 @336 + GetMessageW@16 @337 + GetMonitorInfoA@8 @338 + GetMonitorInfoW@8 @339 + GetMouseMovePointsEx@20 @340 + GetNextDlgGroupItem@12 @341 + GetNextDlgTabItem@12 @342 + GetOpenClipboardWindow@0 @343 + GetParent@4 @344 + GetPhysicalCursorPos@4 @345 + GetPointerDevices@8 @346 + GetPointerType@8 @347 + GetPriorityClipboardFormat@8 @348 + GetProcessDefaultLayout@4 @349 + GetProcessDpiAwarenessInternal@8 @350 + GetProcessWindowStation@0 @351 + GetProgmanWindow@0 @352 + GetPropA@8 @353 + GetPropW@8 @354 + GetQueueStatus@4 @355 + GetRawInputBuffer@12 @356 + GetRawInputData@20 @357 + GetRawInputDeviceInfoA@16 @358 + GetRawInputDeviceInfoW@16 @359 + GetRawInputDeviceList@12 @360 + GetRegisteredRawInputDevices@12 @361 + GetScrollBarInfo@12 @362 + GetScrollInfo@12 @363 + GetScrollPos@8 @364 + GetScrollRange@16 @365 + GetShellWindow@0 @366 + GetSubMenu@8 @367 + GetSysColor@4 @368 + GetSysColorBrush@4 @369 + GetSystemMenu@8 @370 + GetSystemMetrics@4 @371 + GetSystemMetricsForDpi@8 @372 + GetTabbedTextExtentA@20 @373 + GetTabbedTextExtentW@20 @374 + GetTaskmanWindow@0 @375 + GetThreadDesktop@4 @376 + GetThreadDpiAwarenessContext@0 @377 + GetTitleBarInfo@8 @378 + GetTopWindow@4 @379 + GetTouchInputInfo@16 @380 + GetUpdateRect@12 @381 + GetUpdateRgn@12 @382 + GetUpdatedClipboardFormats@12 @383 + GetUserObjectInformationA@20 @384 + GetUserObjectInformationW@20 @385 + GetUserObjectSecurity@20 @386 + GetWindow@8 @387 + GetWindowContextHelpId@4 @388 + GetWindowDC@4 @389 + GetWindowDisplayAffinity@8 @390 + GetWindowDpiAwarenessContext@4 @391 + GetWindowInfo@8 @392 + GetWindowLongA@8 @393 + GetWindowLongW@8 @394 + GetWindowModuleFileName@12=GetWindowModuleFileNameA @395 + GetWindowModuleFileNameA@12 @396 + GetWindowModuleFileNameW@12 @397 + GetWindowPlacement@8 @398 + GetWindowRect@8 @399 + GetWindowRgn@8 @400 + GetWindowRgnBox@8 @401 + GetWindowTextA@12 @402 + GetWindowTextLengthA@4 @403 + GetWindowTextLengthW@4 @404 + GetWindowTextW@12 @405 + GetWindowThreadProcessId@8 @406 + GetWindowWord@8 @407 + GrayStringA@36 @408 + GrayStringW@36 @409 + HideCaret@4 @410 + HiliteMenuItem@16 @411 + ImpersonateDdeClientWindow@8 @412 + InSendMessage@0 @413 + InSendMessageEx@4 @414 + InflateRect@12 @415 + InsertMenuA@20 @416 + InsertMenuItemA@16 @417 + InsertMenuItemW@16 @418 + InsertMenuW@20 @419 + InternalGetWindowText@12 @420 + IntersectRect@12 @421 + InvalidateRect@12 @422 + InvalidateRgn@12 @423 + InvertRect@8 @424 + IsCharAlphaA@4 @425 + IsCharAlphaNumericA@4 @426 + IsCharAlphaNumericW@4 @427 + IsCharAlphaW@4 @428 + IsCharLowerA@4 @429 + IsCharLowerW@4 @430 + IsCharUpperA@4 @431 + IsCharUpperW@4 @432 + IsChild@8 @433 + IsClipboardFormatAvailable@4 @434 + IsDialogMessage@8=IsDialogMessageA @435 + IsDialogMessageA@8 @436 + IsDialogMessageW@8 @437 + IsDlgButtonChecked@8 @438 + IsGUIThread@4 @439 + IsHungAppWindow@4 @440 + IsIconic@4 @441 + IsMenu@4 @442 + IsProcessDPIAware@0 @443 + IsRectEmpty@4 @444 + IsTouchWindow@8 @445 + IsValidDpiAwarenessContext@4 @446 + IsWinEventHookInstalled@4 @447 + IsWindow@4 @448 + IsWindowEnabled@4 @449 + IsWindowRedirectedForPrint@4 @450 + IsWindowUnicode@4 @451 + IsWindowVisible@4 @452 + IsZoomed@4 @453 + KillSystemTimer@8 @454 + KillTimer@8 @455 + LoadAcceleratorsA@8 @456 + LoadAcceleratorsW@8 @457 + LoadBitmapA@8 @458 + LoadBitmapW@8 @459 + LoadCursorA@8 @460 + LoadCursorFromFileA@4 @461 + LoadCursorFromFileW@4 @462 + LoadCursorW@8 @463 + LoadIconA@8 @464 + LoadIconW@8 @465 + LoadImageA@24 @466 + LoadImageW@24 @467 + LoadKeyboardLayoutA@8 @468 + LoadKeyboardLayoutW@8 @469 + LoadLocalFonts@0 @470 + LoadMenuA@8 @471 + LoadMenuIndirectA@4 @472 + LoadMenuIndirectW@4 @473 + LoadMenuW@8 @474 + LoadRemoteFonts@0 @475 PRIVATE + LoadStringA@16 @476 + LoadStringW@16 @477 + LockSetForegroundWindow@4 @478 + LockWindowStation@0 @479 PRIVATE + LockWindowUpdate@4 @480 + LockWorkStation@0 @481 + LogicalToPhysicalPoint@8 @482 + LogicalToPhysicalPointForPerMonitorDPI@8 @483 + LookupIconIdFromDirectory@8 @484 + LookupIconIdFromDirectoryEx@20 @485 + MBToWCSEx@0 @486 PRIVATE + MapDialogRect@8 @487 + MapVirtualKeyA@8 @488 + MapVirtualKeyExA@12 @489 + MapVirtualKeyExW@12 @490 + MapVirtualKeyW@8 @491 + MapWindowPoints@16 @492 + MenuItemFromPoint@16 @493 + MenuWindowProcA@0 @494 PRIVATE + MenuWindowProcW@0 @495 PRIVATE + MessageBeep@4 @496 + MessageBoxA@16 @497 + MessageBoxExA@20 @498 + MessageBoxExW@20 @499 + MessageBoxIndirectA@4 @500 + MessageBoxIndirectW@4 @501 + MessageBoxTimeoutA@24 @502 + MessageBoxTimeoutW@24 @503 + MessageBoxW@16 @504 + ModifyMenuA@20 @505 + ModifyMenuW@20 @506 + MonitorFromPoint@12 @507 + MonitorFromRect@8 @508 + MonitorFromWindow@8 @509 + MoveWindow@24 @510 + MsgWaitForMultipleObjects@20 @511 + MsgWaitForMultipleObjectsEx@20 @512 + NotifyWinEvent@16 @513 + OemKeyScan@4 @514 + OemToCharA@8 @515 + OemToCharBuffA@12 @516 + OemToCharBuffW@12 @517 + OemToCharW@8 @518 + OffsetRect@12 @519 + OpenClipboard@4 @520 + OpenDesktopA@16 @521 + OpenDesktopW@16 @522 + OpenIcon@4 @523 + OpenInputDesktop@12 @524 + OpenWindowStationA@12 @525 + OpenWindowStationW@12 @526 + PackDDElParam@12 @527 + PaintDesktop@4 @528 + PeekMessageA@20 @529 + PeekMessageW@20 @530 + PhysicalToLogicalPoint@8 @531 + PhysicalToLogicalPointForPerMonitorDPI@8 @532 + PlaySoundEvent@0 @533 PRIVATE + PostMessageA@16 @534 + PostMessageW@16 @535 + PostQuitMessage@4 @536 + PostThreadMessageA@16 @537 + PostThreadMessageW@16 @538 + PrintWindow@12 @539 + PrivateExtractIconExA@20 @540 + PrivateExtractIconExW@20 @541 + PrivateExtractIconsA@32 @542 + PrivateExtractIconsW@32 @543 + PtInRect@12 @544 + QueryDisplayConfig@24 @545 + QuerySendMessage@0 @546 PRIVATE + RealChildWindowFromPoint@12 @547 + RealGetWindowClass@12=RealGetWindowClassA @548 + RealGetWindowClassA@12 @549 + RealGetWindowClassW@12 @550 + RedrawWindow@16 @551 + RegisterClassA@4 @552 + RegisterClassExA@4 @553 + RegisterClassExW@4 @554 + RegisterClassW@4 @555 + RegisterClipboardFormatA@4 @556 + RegisterClipboardFormatW@4 @557 + RegisterDeviceNotificationA@12 @558 + RegisterDeviceNotificationW@12 @559 + RegisterHotKey@16 @560 + RegisterLogonProcess@8 @561 + RegisterNetworkCapabilities@0 @562 PRIVATE + RegisterPointerDeviceNotifications@8 @563 + RegisterPowerSettingNotification@12 @564 + RegisterRawInputDevices@12 @565 + RegisterServicesProcess@4 @566 + RegisterShellHookWindow@4 @567 + RegisterSystemThread@8 @568 + RegisterTasklist@4 @569 + RegisterTouchHitTestingWindow@8 @570 + RegisterTouchWindow@8 @571 + RegisterWindowMessageA@4 @572 + RegisterWindowMessageW@4 @573 + ReleaseCapture@0 @574 + ReleaseDC@8 @575 + RemoveClipboardFormatListener@4 @576 + RemoveMenu@12 @577 + RemovePropA@8 @578 + RemovePropW@8 @579 + ReplyMessage@4 @580 + ResetDisplay@0 @581 PRIVATE + ReuseDDElParam@20 @582 + ScreenToClient@8 @583 + ScrollChildren@16 @584 + ScrollDC@28 @585 + ScrollWindow@20 @586 + ScrollWindowEx@32 @587 + SendDlgItemMessageA@20 @588 + SendDlgItemMessageW@20 @589 + SendIMEMessageExA@8 @590 + SendIMEMessageExW@8 @591 + SendInput@12 @592 + SendMessageA@16 @593 + SendMessageCallbackA@24 @594 + SendMessageCallbackW@24 @595 + SendMessageTimeoutA@28 @596 + SendMessageTimeoutW@28 @597 + SendMessageW@16 @598 + SendNotifyMessageA@16 @599 + SendNotifyMessageW@16 @600 + ServerSetFunctionPointers@0 @601 PRIVATE + SetActiveWindow@4 @602 + SetCapture@4 @603 + SetCaretBlinkTime@4 @604 + SetCaretPos@8 @605 + SetClassLongA@12 @606 + SetClassLongW@12 @607 + SetClassWord@12 @608 + SetClipboardData@8 @609 + SetClipboardViewer@4 @610 + SetCoalescableTimer@20 @611 + SetCursor@4 @612 + SetCursorContents@0 @613 PRIVATE + SetCursorPos@8 @614 + SetDebugErrorLevel@4 @615 + SetDeskWallPaper@4 @616 + SetDlgItemInt@16 @617 + SetDlgItemTextA@12 @618 + SetDlgItemTextW@12 @619 + SetDoubleClickTime@4 @620 + SetFocus@4 @621 + SetForegroundWindow@4 @622 + SetGestureConfig@20 @623 + SetInternalWindowPos@16 @624 + SetKeyboardState@4 @625 + SetLastErrorEx@8 @626 + SetLayeredWindowAttributes@16 @627 + SetLogonNotifyWindow@8 @628 + SetMenu@8 @629 + SetMenuContextHelpId@8 @630 + SetMenuDefaultItem@12 @631 + SetMenuInfo@8 @632 + SetMenuItemBitmaps@20 @633 + SetMenuItemInfoA@16 @634 + SetMenuItemInfoW@16 @635 + SetMessageExtraInfo@4 @636 + SetMessageQueue@4 @637 + SetParent@8 @638 + SetPhysicalCursorPos@8 @639 + SetProcessDPIAware@0 @640 + SetProcessDefaultLayout@4 @641 + SetProcessDpiAwarenessContext@4 @642 + SetProcessDpiAwarenessInternal@4 @643 + SetProcessWindowStation@4 @644 + SetProgmanWindow@4 @645 + SetPropA@12 @646 + SetPropW@12 @647 + SetRect@20 @648 + SetRectEmpty@4 @649 + SetScrollInfo@16 @650 + SetScrollPos@16 @651 + SetScrollRange@20 @652 + SetShellWindow@4 @653 + SetShellWindowEx@8 @654 + SetSysColors@12 @655 + SetSysColorsTemp@12 @656 + SetSystemCursor@8 @657 + SetSystemMenu@8 @658 + SetSystemTimer@16 @659 + SetTaskmanWindow@4 @660 + SetThreadDesktop@4 @661 + SetThreadDpiAwarenessContext@4 @662 + SetTimer@16 @663 + SetUserObjectInformationA@16 @664 + SetUserObjectInformationW@16 @665 + SetUserObjectSecurity@12 @666 + SetWinEventHook@28 @667 + SetWindowCompositionAttribute@8 @668 + SetWindowContextHelpId@8 @669 + SetWindowDisplayAffinity@8 @670 + SetWindowFullScreenState@0 @671 PRIVATE + SetWindowLongA@12 @672 + SetWindowLongW@12 @673 + SetWindowPlacement@8 @674 + SetWindowPos@28 @675 + SetWindowRgn@12 @676 + SetWindowStationUser@8 @677 + SetWindowTextA@8 @678 + SetWindowTextW@8 @679 + SetWindowWord@12 @680 + SetWindowsHookA@8 @681 + SetWindowsHookExA@16 @682 + SetWindowsHookExW@16 @683 + SetWindowsHookW@8 @684 + ShowCaret@4 @685 + ShowCursor@4 @686 + ShowOwnedPopups@8 @687 + ShowScrollBar@12 @688 + ShowStartGlass@0 @689 PRIVATE + ShowWindow@8 @690 + ShowWindowAsync@8 @691 + ShutdownBlockReasonCreate@8 @692 + ShutdownBlockReasonDestroy@4 @693 + SubtractRect@12 @694 + SwapMouseButton@4 @695 + SwitchDesktop@4 @696 + SwitchToThisWindow@8 @697 + SystemParametersInfoA@16 @698 + SystemParametersInfoForDpi@20 @699 + SystemParametersInfoW@16 @700 + TabbedTextOutA@32 @701 + TabbedTextOutW@32 @702 + TileChildWindows@8 @703 + TileWindows@20 @704 + ToAscii@20 @705 + ToAsciiEx@24 @706 + ToUnicode@24 @707 + ToUnicodeEx@28 @708 + TrackMouseEvent@4 @709 + TrackPopupMenu@28 @710 + TrackPopupMenuEx@24 @711 + TranslateAccelerator@12=TranslateAcceleratorA @712 + TranslateAcceleratorA@12 @713 + TranslateAcceleratorW@12 @714 + TranslateMDISysAccel@8 @715 + TranslateMessage@4 @716 + UnhookWinEvent@4 @717 + UnhookWindowsHook@8 @718 + UnhookWindowsHookEx@4 @719 + UnionRect@12 @720 + UnloadKeyboardLayout@4 @721 + UnlockWindowStation@0 @722 PRIVATE + UnpackDDElParam@16 @723 + UnregisterClassA@8 @724 + UnregisterClassW@8 @725 + UnregisterDeviceNotification@4 @726 + UnregisterHotKey@8 @727 + UnregisterPowerSettingNotification@4 @728 + UnregisterTouchWindow@4 @729 + UpdateLayeredWindow@36 @730 + UpdateLayeredWindowIndirect@8 @731 + UpdatePerUserSystemParameters@0 @732 PRIVATE + UpdateWindow@4 @733 + User32InitializeImmEntryTable@4 @734 + UserClientDllInitialize@12=DllMain @735 + UserHandleGrantAccess@12 @736 + UserRealizePalette@4 @737 + UserRegisterWowHandlers@8 @738 + UserSignalProc@16 @739 + ValidateRect@8 @740 + ValidateRgn@8 @741 + VkKeyScanA@4 @742 + VkKeyScanExA@8 @743 + VkKeyScanExW@8 @744 + VkKeyScanW@4 @745 + WCSToMBEx@0 @746 PRIVATE + WINNLSEnableIME@8 @747 + WINNLSGetEnableStatus@4 @748 + WINNLSGetIMEHotkey@4 @749 + WNDPROC_CALLBACK@0 @750 PRIVATE + WaitForInputIdle@8 @751 + WaitMessage@0 @752 + WinHelpA@16 @753 + WinHelpW@16 @754 + WindowFromDC@4 @755 + WindowFromPoint@8 @756 + keybd_event@16 @757 + mouse_event@20 @758 + wsprintfA @759 + wsprintfW @760 + wvsprintfA@12 @761 + wvsprintfW@12 @762 + __wine_send_input @763 + __wine_set_pixel_format @764 diff --git a/lib/wine/libuserenv.def b/lib/wine/libuserenv.def new file mode 100644 index 0000000..8f15851 --- /dev/null +++ b/lib/wine/libuserenv.def @@ -0,0 +1,26 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/userenv/userenv.spec; do not edit! + +LIBRARY userenv.dll + +EXPORTS + CreateEnvironmentBlock@12 @139 + DestroyEnvironmentBlock@4 @140 + EnterCriticalPolicySection@4 @141 + ExpandEnvironmentStringsForUserA@16 @142 + ExpandEnvironmentStringsForUserW@16 @143 + GetAllUsersProfileDirectoryA@8 @144 + GetAllUsersProfileDirectoryW@8 @145 + GetAppliedGPOListW@20 @146 + GetDefaultUserProfileDirectoryA@8 @147 + GetDefaultUserProfileDirectoryW@8 @148 + GetProfilesDirectoryA@8 @149 + GetProfilesDirectoryW@8 @150 + GetProfileType@4 @151 + GetUserProfileDirectoryA@12 @152 + GetUserProfileDirectoryW@12 @153 + LeaveCriticalPolicySection@4 @154 + LoadUserProfileA@8 @155 + LoadUserProfileW@8 @156 + RegisterGPNotification@8 @157 + UnloadUserProfile@8 @158 + UnregisterGPNotification@4 @159 diff --git a/lib/wine/libusp10.def b/lib/wine/libusp10.def new file mode 100644 index 0000000..83bd394 --- /dev/null +++ b/lib/wine/libusp10.def @@ -0,0 +1,49 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/usp10/usp10.spec; do not edit! + +LIBRARY usp10.dll + +EXPORTS + LpkPresent@0 @1 PRIVATE + ScriptApplyDigitSubstitution@12 @2 + ScriptApplyLogicalWidth@36 @3 + ScriptBreak@16 @4 + ScriptCPtoX@36 @5 + ScriptCacheGetHeight@12 @6 + ScriptFreeCache@4 @7 + ScriptGetCMap@24 @8 + ScriptGetFontAlternateGlyphs@0 @9 PRIVATE + ScriptGetFontFeatureTags@32 @10 + ScriptGetFontLanguageTags@28 @11 + ScriptGetFontProperties@12 @12 + ScriptGetFontScriptTags@24 @13 + ScriptGetGlyphABCWidth@16 @14 + ScriptGetLogicalWidths@28 @15 + ScriptGetProperties@8 @16 + ScriptIsComplex@12 @17 + ScriptItemize@28 @18 + ScriptItemizeOpenType@32 @19 + ScriptJustify@24 @20 + ScriptLayout@16 @21 + ScriptPlace@36 @22 + ScriptPlaceOpenType@72 @23 + ScriptPositionSingleGlyph@0 @24 PRIVATE + ScriptRecordDigitSubstitution@8 @25 + ScriptShape@40 @26 + ScriptShapeOpenType@64 @27 + ScriptStringAnalyse@52 @28 + ScriptStringCPtoX@16 @29 + ScriptStringFree@4 @30 + ScriptStringGetLogicalWidths@8 @31 + ScriptStringGetOrder@8 @32 + ScriptStringOut@32 @33 + ScriptStringValidate@4 @34 + ScriptStringXtoCP@16 @35 + ScriptString_pLogAttr@4 @36 + ScriptString_pSize@4 @37 + ScriptString_pcOutChars@4 @38 + ScriptSubstituteSingleGlyph@0 @39 PRIVATE + ScriptTextOut@56 @40 + ScriptXtoCP@36 @41 + UspAllocCache@0 @42 PRIVATE + UspAllocTemp@0 @43 PRIVATE + UspFreeMem@0 @44 PRIVATE diff --git a/lib/wine/libuuid.a b/lib/wine/libuuid.a new file mode 100644 index 0000000..3785af3 Binary files /dev/null and b/lib/wine/libuuid.a differ diff --git a/lib/wine/libuxtheme.def b/lib/wine/libuxtheme.def new file mode 100644 index 0000000..f0f3721 --- /dev/null +++ b/lib/wine/libuxtheme.def @@ -0,0 +1,113 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/uxtheme/uxtheme.spec; do not edit! + +LIBRARY uxtheme.dll + +EXPORTS + QueryThemeServices@0 @1 NONAME + OpenThemeFile@20 @2 NONAME + CloseThemeFile@4 @3 NONAME + ApplyTheme@12 @4 NONAME + GetThemeDefaults@20 @7 NONAME + EnumThemes@12 @8 NONAME + EnumThemeColors@16 @9 NONAME + EnumThemeSizes@16 @10 NONAME + ParseThemeIniFile@16 @11 NONAME + DrawNCPreview@0 @13 NONAME PRIVATE + RegisterDefaultTheme@0 @14 NONAME PRIVATE + DumpLoadedThemeToTextFile@0 @15 NONAME PRIVATE + OpenThemeDataFromFile@0 @16 NONAME PRIVATE + OpenThemeFileFromData@0 @17 NONAME PRIVATE + GetThemeSysSize96@0 @18 NONAME PRIVATE + GetThemeSysFont96@0 @19 NONAME PRIVATE + SessionAllocate@0 @20 NONAME PRIVATE + SessionFree@0 @21 NONAME PRIVATE + ThemeHooksOn@0 @22 NONAME PRIVATE + ThemeHooksOff@0 @23 NONAME PRIVATE + AreThemeHooksActive@0 @24 NONAME PRIVATE + GetCurrentChangeNumber@0 @25 NONAME PRIVATE + GetNewChangeNumber@0 @26 NONAME PRIVATE + SetGlobalTheme@0 @27 NONAME PRIVATE + GetGlobalTheme@0 @28 NONAME PRIVATE + CheckThemeSignature@4 @29 NONAME + LoadTheme@0 @30 NONAME PRIVATE + InitUserTheme@0 @31 NONAME PRIVATE + InitUserRegistry@0 @32 NONAME PRIVATE + ReestablishServerConnection@0 @33 NONAME PRIVATE + ThemeHooksInstall@0 @34 NONAME PRIVATE + ThemeHooksRemove@0 @35 NONAME PRIVATE + RefreshThemeForTS@0 @36 NONAME PRIVATE + ClassicGetSystemMetrics@0 @43 NONAME PRIVATE + ClassicSystemParametersInfoA@0 @44 NONAME PRIVATE + ClassicSystemParametersInfoW@0 @45 NONAME PRIVATE + ClassicAdjustWindowRectEx@0 @46 NONAME PRIVATE + GetThemeParseErrorInfo@0 @48 NONAME PRIVATE + CreateThemeDataFromObjects@0 @60 NONAME PRIVATE + OpenThemeDataEx@12 @61 + ServerClearStockObjects@0 @62 NONAME PRIVATE + MarkSelection@0 @63 NONAME PRIVATE + BeginBufferedAnimation@32 @5 + BeginBufferedPaint@20 @6 + BufferedPaintClear@8 @12 + BufferedPaintInit@0 @37 + BufferedPaintRenderAnimation@8 @38 + BufferedPaintSetAlpha@12 @39 + BufferedPaintStopAllAnimations@4 @40 + BufferedPaintUnInit@0 @41 + CloseThemeData@4 @42 + DrawThemeBackground@24 @47 + DrawThemeBackgroundEx@24 @49 + DrawThemeEdge@32 @50 + DrawThemeIcon@28 @51 + DrawThemeParentBackground@12 @52 + DrawThemeText@36 @53 + DrawThemeTextEx@36 @54 + EnableThemeDialogTexture@8 @55 + EnableTheming@4 @56 + EndBufferedAnimation@8 @57 + EndBufferedPaint@8 @58 + GetBufferedPaintBits@12 @59 + GetBufferedPaintDC@4 @64 + GetBufferedPaintTargetDC@4 @65 + GetBufferedPaintTargetRect@8 @66 + GetCurrentThemeName@24 @67 + GetThemeAppProperties@0 @68 + GetThemeBackgroundContentRect@24 @69 + GetThemeBackgroundExtent@24 @70 + GetThemeBackgroundRegion@24 @71 + GetThemeBool@20 @72 + GetThemeColor@20 @73 + GetThemeDocumentationProperty@16 @74 + GetThemeEnumValue@20 @75 + GetThemeFilename@24 @76 + GetThemeFont@24 @77 + GetThemeInt@20 @78 + GetThemeIntList@20 @79 + GetThemeMargins@28 @80 + GetThemeMetric@24 @81 + GetThemePartSize@28 @82 + GetThemePosition@20 @83 + GetThemePropertyOrigin@20 @84 + GetThemeRect@20 @85 + GetThemeString@24 @86 + GetThemeSysBool@8 @87 + GetThemeSysColor@8 @88 + GetThemeSysColorBrush@8 @89 + GetThemeSysFont@12 @90 + GetThemeSysInt@12 @91 + GetThemeSysSize@8 @92 + GetThemeSysString@16 @93 + GetThemeTextExtent@36 @94 + GetThemeTextMetrics@20 @95 + GetThemeTransitionDuration@24 @96 + GetWindowTheme@4 @97 + HitTestThemeBackground@40 @98 + IsAppThemed@0 @99 + IsCompositionActive@0 @100 + IsThemeActive@0 @101 + IsThemeBackgroundPartiallyTransparent@12 @102 + IsThemeDialogTextureEnabled@4 @103 + IsThemePartDefined@12 @104 + OpenThemeData@8 @105 + SetThemeAppProperties@4 @106 + SetWindowTheme@12 @107 + SetWindowThemeAttribute@16 @108 diff --git a/lib/wine/libvdmdbg.def b/lib/wine/libvdmdbg.def new file mode 100644 index 0000000..5eab746 --- /dev/null +++ b/lib/wine/libvdmdbg.def @@ -0,0 +1,24 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/vdmdbg/vdmdbg.spec; do not edit! + +LIBRARY vdmdbg.dll + +EXPORTS + VDMBreakThread@0 @1 PRIVATE + VDMDetectWOW@0 @2 PRIVATE + VDMEnumProcessWOW@8 @3 + VDMEnumTaskWOW@12 @4 + VDMEnumTaskWOWEx@0 @5 PRIVATE + VDMGetModuleSelector@0 @6 PRIVATE + VDMGetPointer@0 @7 PRIVATE + VDMGetSelectorModule@0 @8 PRIVATE + VDMGetThreadContext@0 @9 PRIVATE + VDMGetThreadSelectorEntry@0 @10 PRIVATE + VDMGlobalFirst@0 @11 PRIVATE + VDMGlobalNext@0 @12 PRIVATE + VDMKillWOW@0 @13 PRIVATE + VDMModuleFirst@0 @14 PRIVATE + VDMModuleNext@0 @15 PRIVATE + VDMProcessException@0 @16 PRIVATE + VDMSetThreadContext@0 @17 PRIVATE + VDMStartTaskInWOW@0 @18 PRIVATE + VDMTerminateTaskWOW@0 @19 PRIVATE diff --git a/lib/wine/libversion.def b/lib/wine/libversion.def new file mode 100644 index 0000000..abccc06 --- /dev/null +++ b/lib/wine/libversion.def @@ -0,0 +1,21 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/version/version.spec; do not edit! + +LIBRARY version.dll + +EXPORTS + GetFileVersionInfoA@16 @1 + GetFileVersionInfoExA@20 @2 + GetFileVersionInfoExW@20 @3 + GetFileVersionInfoSizeA@8 @4 + GetFileVersionInfoSizeExA@12 @5 + GetFileVersionInfoSizeExW@12 @6 + GetFileVersionInfoSizeW@8 @7 + GetFileVersionInfoW@16 @8 + VerFindFileA@32 @9 + VerFindFileW@32 @10 + VerInstallFileA@32 @11 + VerInstallFileW@32 @12 + VerLanguageNameA@12=kernel32.VerLanguageNameA @13 + VerLanguageNameW@12=kernel32.VerLanguageNameW @14 + VerQueryValueA@16 @15 + VerQueryValueW@16 @16 diff --git a/lib/wine/libvulkan-1.def b/lib/wine/libvulkan-1.def new file mode 100644 index 0000000..db30e92 --- /dev/null +++ b/lib/wine/libvulkan-1.def @@ -0,0 +1,194 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/vulkan-1/vulkan-1.spec; do not edit! + +LIBRARY vulkan-1.dll + +EXPORTS + vkAcquireNextImage2KHR@12=winevulkan.wine_vkAcquireNextImage2KHR @1 + vkAcquireNextImageKHR@40=winevulkan.wine_vkAcquireNextImageKHR @2 + vkAllocateCommandBuffers@12=winevulkan.wine_vkAllocateCommandBuffers @3 + vkAllocateDescriptorSets@12=winevulkan.wine_vkAllocateDescriptorSets @4 + vkAllocateMemory@16=winevulkan.wine_vkAllocateMemory @5 + vkBeginCommandBuffer@8=winevulkan.wine_vkBeginCommandBuffer @6 + vkBindBufferMemory@28=winevulkan.wine_vkBindBufferMemory @7 + vkBindBufferMemory2@12=winevulkan.wine_vkBindBufferMemory2 @8 + vkBindImageMemory@28=winevulkan.wine_vkBindImageMemory @9 + vkBindImageMemory2@12=winevulkan.wine_vkBindImageMemory2 @10 + vkCmdBeginQuery@20=winevulkan.wine_vkCmdBeginQuery @11 + vkCmdBeginRenderPass@12=winevulkan.wine_vkCmdBeginRenderPass @12 + vkCmdBindDescriptorSets@36=winevulkan.wine_vkCmdBindDescriptorSets @13 + vkCmdBindIndexBuffer@24=winevulkan.wine_vkCmdBindIndexBuffer @14 + vkCmdBindPipeline@16=winevulkan.wine_vkCmdBindPipeline @15 + vkCmdBindVertexBuffers@20=winevulkan.wine_vkCmdBindVertexBuffers @16 + vkCmdBlitImage@40=winevulkan.wine_vkCmdBlitImage @17 + vkCmdClearAttachments@20=winevulkan.wine_vkCmdClearAttachments @18 + vkCmdClearColorImage@28=winevulkan.wine_vkCmdClearColorImage @19 + vkCmdClearDepthStencilImage@28=winevulkan.wine_vkCmdClearDepthStencilImage @20 + vkCmdCopyBuffer@28=winevulkan.wine_vkCmdCopyBuffer @21 + vkCmdCopyBufferToImage@32=winevulkan.wine_vkCmdCopyBufferToImage @22 + vkCmdCopyImage@36=winevulkan.wine_vkCmdCopyImage @23 + vkCmdCopyImageToBuffer@32=winevulkan.wine_vkCmdCopyImageToBuffer @24 + vkCmdCopyQueryPoolResults@48=winevulkan.wine_vkCmdCopyQueryPoolResults @25 + vkCmdDispatch@16=winevulkan.wine_vkCmdDispatch @26 + vkCmdDispatchBase@28=winevulkan.wine_vkCmdDispatchBase @27 + vkCmdDispatchIndirect@20=winevulkan.wine_vkCmdDispatchIndirect @28 + vkCmdDraw@20=winevulkan.wine_vkCmdDraw @29 + vkCmdDrawIndexed@24=winevulkan.wine_vkCmdDrawIndexed @30 + vkCmdDrawIndexedIndirect@28=winevulkan.wine_vkCmdDrawIndexedIndirect @31 + vkCmdDrawIndirect@28=winevulkan.wine_vkCmdDrawIndirect @32 + vkCmdEndQuery@16=winevulkan.wine_vkCmdEndQuery @33 + vkCmdEndRenderPass@4=winevulkan.wine_vkCmdEndRenderPass @34 + vkCmdExecuteCommands@12=winevulkan.wine_vkCmdExecuteCommands @35 + vkCmdFillBuffer@32=winevulkan.wine_vkCmdFillBuffer @36 + vkCmdNextSubpass@8=winevulkan.wine_vkCmdNextSubpass @37 + vkCmdPipelineBarrier@40=winevulkan.wine_vkCmdPipelineBarrier @38 + vkCmdPushConstants@28=winevulkan.wine_vkCmdPushConstants @39 + vkCmdResetEvent@16=winevulkan.wine_vkCmdResetEvent @40 + vkCmdResetQueryPool@20=winevulkan.wine_vkCmdResetQueryPool @41 + vkCmdResolveImage@36=winevulkan.wine_vkCmdResolveImage @42 + vkCmdSetBlendConstants@8=winevulkan.wine_vkCmdSetBlendConstants @43 + vkCmdSetDepthBias@16=winevulkan.wine_vkCmdSetDepthBias @44 + vkCmdSetDepthBounds@12=winevulkan.wine_vkCmdSetDepthBounds @45 + vkCmdSetDeviceMask@8=winevulkan.wine_vkCmdSetDeviceMask @46 + vkCmdSetEvent@16=winevulkan.wine_vkCmdSetEvent @47 + vkCmdSetLineWidth@8=winevulkan.wine_vkCmdSetLineWidth @48 + vkCmdSetScissor@16=winevulkan.wine_vkCmdSetScissor @49 + vkCmdSetStencilCompareMask@12=winevulkan.wine_vkCmdSetStencilCompareMask @50 + vkCmdSetStencilReference@12=winevulkan.wine_vkCmdSetStencilReference @51 + vkCmdSetStencilWriteMask@12=winevulkan.wine_vkCmdSetStencilWriteMask @52 + vkCmdSetViewport@16=winevulkan.wine_vkCmdSetViewport @53 + vkCmdUpdateBuffer@32=winevulkan.wine_vkCmdUpdateBuffer @54 + vkCmdWaitEvents@44=winevulkan.wine_vkCmdWaitEvents @55 + vkCmdWriteTimestamp@20=winevulkan.wine_vkCmdWriteTimestamp @56 + vkCreateBuffer@16=winevulkan.wine_vkCreateBuffer @57 + vkCreateBufferView@16=winevulkan.wine_vkCreateBufferView @58 + vkCreateCommandPool@16=winevulkan.wine_vkCreateCommandPool @59 + vkCreateComputePipelines@28=winevulkan.wine_vkCreateComputePipelines @60 + vkCreateDescriptorPool@16=winevulkan.wine_vkCreateDescriptorPool @61 + vkCreateDescriptorSetLayout@16=winevulkan.wine_vkCreateDescriptorSetLayout @62 + vkCreateDescriptorUpdateTemplate@16=winevulkan.wine_vkCreateDescriptorUpdateTemplate @63 + vkCreateDevice@16=winevulkan.wine_vkCreateDevice @64 + vkCreateDisplayModeKHR@0 @65 PRIVATE + vkCreateDisplayPlaneSurfaceKHR@0 @66 PRIVATE + vkCreateEvent@16=winevulkan.wine_vkCreateEvent @67 + vkCreateFence@16=winevulkan.wine_vkCreateFence @68 + vkCreateFramebuffer@16=winevulkan.wine_vkCreateFramebuffer @69 + vkCreateGraphicsPipelines@28=winevulkan.wine_vkCreateGraphicsPipelines @70 + vkCreateImage@16=winevulkan.wine_vkCreateImage @71 + vkCreateImageView@16=winevulkan.wine_vkCreateImageView @72 + vkCreateInstance@12=winevulkan.wine_vkCreateInstance @73 + vkCreatePipelineCache@16=winevulkan.wine_vkCreatePipelineCache @74 + vkCreatePipelineLayout@16=winevulkan.wine_vkCreatePipelineLayout @75 + vkCreateQueryPool@16=winevulkan.wine_vkCreateQueryPool @76 + vkCreateRenderPass@16=winevulkan.wine_vkCreateRenderPass @77 + vkCreateSampler@16=winevulkan.wine_vkCreateSampler @78 + vkCreateSamplerYcbcrConversion@16=winevulkan.wine_vkCreateSamplerYcbcrConversion @79 + vkCreateSemaphore@16=winevulkan.wine_vkCreateSemaphore @80 + vkCreateShaderModule@16=winevulkan.wine_vkCreateShaderModule @81 + vkCreateSharedSwapchainsKHR@0 @82 PRIVATE + vkCreateSwapchainKHR@16=winevulkan.wine_vkCreateSwapchainKHR @83 + vkCreateWin32SurfaceKHR@16=winevulkan.wine_vkCreateWin32SurfaceKHR @84 + vkDestroyBuffer@16=winevulkan.wine_vkDestroyBuffer @85 + vkDestroyBufferView@16=winevulkan.wine_vkDestroyBufferView @86 + vkDestroyCommandPool@16=winevulkan.wine_vkDestroyCommandPool @87 + vkDestroyDescriptorPool@16=winevulkan.wine_vkDestroyDescriptorPool @88 + vkDestroyDescriptorSetLayout@16=winevulkan.wine_vkDestroyDescriptorSetLayout @89 + vkDestroyDescriptorUpdateTemplate@16=winevulkan.wine_vkDestroyDescriptorUpdateTemplate @90 + vkDestroyDevice@8=winevulkan.wine_vkDestroyDevice @91 + vkDestroyEvent@16=winevulkan.wine_vkDestroyEvent @92 + vkDestroyFence@16=winevulkan.wine_vkDestroyFence @93 + vkDestroyFramebuffer@16=winevulkan.wine_vkDestroyFramebuffer @94 + vkDestroyImage@16=winevulkan.wine_vkDestroyImage @95 + vkDestroyImageView@16=winevulkan.wine_vkDestroyImageView @96 + vkDestroyInstance@8=winevulkan.wine_vkDestroyInstance @97 + vkDestroyPipeline@16=winevulkan.wine_vkDestroyPipeline @98 + vkDestroyPipelineCache@16=winevulkan.wine_vkDestroyPipelineCache @99 + vkDestroyPipelineLayout@16=winevulkan.wine_vkDestroyPipelineLayout @100 + vkDestroyQueryPool@16=winevulkan.wine_vkDestroyQueryPool @101 + vkDestroyRenderPass@16=winevulkan.wine_vkDestroyRenderPass @102 + vkDestroySampler@16=winevulkan.wine_vkDestroySampler @103 + vkDestroySamplerYcbcrConversion@16=winevulkan.wine_vkDestroySamplerYcbcrConversion @104 + vkDestroySemaphore@16=winevulkan.wine_vkDestroySemaphore @105 + vkDestroyShaderModule@16=winevulkan.wine_vkDestroyShaderModule @106 + vkDestroySurfaceKHR@16=winevulkan.wine_vkDestroySurfaceKHR @107 + vkDestroySwapchainKHR@16=winevulkan.wine_vkDestroySwapchainKHR @108 + vkDeviceWaitIdle@4=winevulkan.wine_vkDeviceWaitIdle @109 + vkEndCommandBuffer@4=winevulkan.wine_vkEndCommandBuffer @110 + vkEnumerateDeviceExtensionProperties@16=winevulkan.wine_vkEnumerateDeviceExtensionProperties @111 + vkEnumerateDeviceLayerProperties@12=winevulkan.wine_vkEnumerateDeviceLayerProperties @112 + vkEnumerateInstanceExtensionProperties@12=winevulkan.wine_vkEnumerateInstanceExtensionProperties @113 + vkEnumerateInstanceLayerProperties@8=winevulkan.wine_vkEnumerateInstanceLayerProperties @114 + vkEnumerateInstanceVersion@4=winevulkan.wine_vkEnumerateInstanceVersion @115 + vkEnumeratePhysicalDeviceGroups@12=winevulkan.wine_vkEnumeratePhysicalDeviceGroups @116 + vkEnumeratePhysicalDevices@12=winevulkan.wine_vkEnumeratePhysicalDevices @117 + vkFlushMappedMemoryRanges@12=winevulkan.wine_vkFlushMappedMemoryRanges @118 + vkFreeCommandBuffers@20=winevulkan.wine_vkFreeCommandBuffers @119 + vkFreeDescriptorSets@20=winevulkan.wine_vkFreeDescriptorSets @120 + vkFreeMemory@16=winevulkan.wine_vkFreeMemory @121 + vkGetBufferMemoryRequirements@16=winevulkan.wine_vkGetBufferMemoryRequirements @122 + vkGetBufferMemoryRequirements2@12=winevulkan.wine_vkGetBufferMemoryRequirements2 @123 + vkGetDescriptorSetLayoutSupport@12=winevulkan.wine_vkGetDescriptorSetLayoutSupport @124 + vkGetDeviceGroupPeerMemoryFeatures@20=winevulkan.wine_vkGetDeviceGroupPeerMemoryFeatures @125 + vkGetDeviceGroupPresentCapabilitiesKHR@8=winevulkan.wine_vkGetDeviceGroupPresentCapabilitiesKHR @126 + vkGetDeviceGroupSurfacePresentModesKHR@16=winevulkan.wine_vkGetDeviceGroupSurfacePresentModesKHR @127 + vkGetDeviceMemoryCommitment@16=winevulkan.wine_vkGetDeviceMemoryCommitment @128 + vkGetDeviceProcAddr@8=winevulkan.wine_vkGetDeviceProcAddr @129 + vkGetDeviceQueue@16=winevulkan.wine_vkGetDeviceQueue @130 + vkGetDeviceQueue2@12=winevulkan.wine_vkGetDeviceQueue2 @131 + vkGetDisplayModePropertiesKHR@0 @132 PRIVATE + vkGetDisplayPlaneCapabilitiesKHR@0 @133 PRIVATE + vkGetDisplayPlaneSupportedDisplaysKHR@0 @134 PRIVATE + vkGetEventStatus@12=winevulkan.wine_vkGetEventStatus @135 + vkGetFenceStatus@12=winevulkan.wine_vkGetFenceStatus @136 + vkGetImageMemoryRequirements@16=winevulkan.wine_vkGetImageMemoryRequirements @137 + vkGetImageMemoryRequirements2@12=winevulkan.wine_vkGetImageMemoryRequirements2 @138 + vkGetImageSparseMemoryRequirements@20=winevulkan.wine_vkGetImageSparseMemoryRequirements @139 + vkGetImageSparseMemoryRequirements2@16=winevulkan.wine_vkGetImageSparseMemoryRequirements2 @140 + vkGetImageSubresourceLayout@20=winevulkan.wine_vkGetImageSubresourceLayout @141 + vkGetInstanceProcAddr@8=winevulkan.wine_vkGetInstanceProcAddr @142 + vkGetPhysicalDeviceDisplayPlanePropertiesKHR@0 @143 PRIVATE + vkGetPhysicalDeviceDisplayPropertiesKHR@0 @144 PRIVATE + vkGetPhysicalDeviceExternalBufferProperties@12=winevulkan.wine_vkGetPhysicalDeviceExternalBufferProperties @145 + vkGetPhysicalDeviceExternalFenceProperties@12=winevulkan.wine_vkGetPhysicalDeviceExternalFenceProperties @146 + vkGetPhysicalDeviceExternalSemaphoreProperties@12=winevulkan.wine_vkGetPhysicalDeviceExternalSemaphoreProperties @147 + vkGetPhysicalDeviceFeatures@8=winevulkan.wine_vkGetPhysicalDeviceFeatures @148 + vkGetPhysicalDeviceFeatures2@8=winevulkan.wine_vkGetPhysicalDeviceFeatures2 @149 + vkGetPhysicalDeviceFormatProperties@12=winevulkan.wine_vkGetPhysicalDeviceFormatProperties @150 + vkGetPhysicalDeviceFormatProperties2@12=winevulkan.wine_vkGetPhysicalDeviceFormatProperties2 @151 + vkGetPhysicalDeviceImageFormatProperties@28=winevulkan.wine_vkGetPhysicalDeviceImageFormatProperties @152 + vkGetPhysicalDeviceImageFormatProperties2@12=winevulkan.wine_vkGetPhysicalDeviceImageFormatProperties2 @153 + vkGetPhysicalDeviceMemoryProperties@8=winevulkan.wine_vkGetPhysicalDeviceMemoryProperties @154 + vkGetPhysicalDeviceMemoryProperties2@8=winevulkan.wine_vkGetPhysicalDeviceMemoryProperties2 @155 + vkGetPhysicalDevicePresentRectanglesKHR@20=winevulkan.wine_vkGetPhysicalDevicePresentRectanglesKHR @156 + vkGetPhysicalDeviceProperties@8=winevulkan.wine_vkGetPhysicalDeviceProperties @157 + vkGetPhysicalDeviceProperties2@8=winevulkan.wine_vkGetPhysicalDeviceProperties2 @158 + vkGetPhysicalDeviceQueueFamilyProperties@12=winevulkan.wine_vkGetPhysicalDeviceQueueFamilyProperties @159 + vkGetPhysicalDeviceQueueFamilyProperties2@12=winevulkan.wine_vkGetPhysicalDeviceQueueFamilyProperties2 @160 + vkGetPhysicalDeviceSparseImageFormatProperties@32=winevulkan.wine_vkGetPhysicalDeviceSparseImageFormatProperties @161 + vkGetPhysicalDeviceSparseImageFormatProperties2@16=winevulkan.wine_vkGetPhysicalDeviceSparseImageFormatProperties2 @162 + vkGetPhysicalDeviceSurfaceCapabilitiesKHR@16=winevulkan.wine_vkGetPhysicalDeviceSurfaceCapabilitiesKHR @163 + vkGetPhysicalDeviceSurfaceFormatsKHR@20=winevulkan.wine_vkGetPhysicalDeviceSurfaceFormatsKHR @164 + vkGetPhysicalDeviceSurfacePresentModesKHR@20=winevulkan.wine_vkGetPhysicalDeviceSurfacePresentModesKHR @165 + vkGetPhysicalDeviceSurfaceSupportKHR@20=winevulkan.wine_vkGetPhysicalDeviceSurfaceSupportKHR @166 + vkGetPhysicalDeviceWin32PresentationSupportKHR@8=winevulkan.wine_vkGetPhysicalDeviceWin32PresentationSupportKHR @167 + vkGetPipelineCacheData@20=winevulkan.wine_vkGetPipelineCacheData @168 + vkGetQueryPoolResults@40=winevulkan.wine_vkGetQueryPoolResults @169 + vkGetRenderAreaGranularity@16=winevulkan.wine_vkGetRenderAreaGranularity @170 + vkGetSwapchainImagesKHR@20=winevulkan.wine_vkGetSwapchainImagesKHR @171 + vkInvalidateMappedMemoryRanges@12=winevulkan.wine_vkInvalidateMappedMemoryRanges @172 + vkMapMemory@36=winevulkan.wine_vkMapMemory @173 + vkMergePipelineCaches@20=winevulkan.wine_vkMergePipelineCaches @174 + vkQueueBindSparse@20=winevulkan.wine_vkQueueBindSparse @175 + vkQueuePresentKHR@8=winevulkan.wine_vkQueuePresentKHR @176 + vkQueueSubmit@20=winevulkan.wine_vkQueueSubmit @177 + vkQueueWaitIdle@4=winevulkan.wine_vkQueueWaitIdle @178 + vkResetCommandBuffer@8=winevulkan.wine_vkResetCommandBuffer @179 + vkResetCommandPool@16=winevulkan.wine_vkResetCommandPool @180 + vkResetDescriptorPool@16=winevulkan.wine_vkResetDescriptorPool @181 + vkResetEvent@12=winevulkan.wine_vkResetEvent @182 + vkResetFences@12=winevulkan.wine_vkResetFences @183 + vkSetEvent@12=winevulkan.wine_vkSetEvent @184 + vkTrimCommandPool@16=winevulkan.wine_vkTrimCommandPool @185 + vkUnmapMemory@12=winevulkan.wine_vkUnmapMemory @186 + vkUpdateDescriptorSetWithTemplate@24=winevulkan.wine_vkUpdateDescriptorSetWithTemplate @187 + vkUpdateDescriptorSets@20=winevulkan.wine_vkUpdateDescriptorSets @188 + vkWaitForFences@24=winevulkan.wine_vkWaitForFences @189 diff --git a/lib/wine/libwebservices.def b/lib/wine/libwebservices.def new file mode 100644 index 0000000..efd1d77 --- /dev/null +++ b/lib/wine/libwebservices.def @@ -0,0 +1,198 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/webservices/webservices.spec; do not edit! + +LIBRARY webservices.dll + +EXPORTS + WsAbandonCall@0 @1 PRIVATE + WsAbandonMessage@0 @2 PRIVATE + WsAbortChannel@8 @3 + WsAbortListener@0 @4 PRIVATE + WsAbortServiceHost@0 @5 PRIVATE + WsAbortServiceProxy@8 @6 + WsAcceptChannel@16 @7 + WsAddCustomHeader@28 @8 + WsAddErrorString@0 @9 PRIVATE + WsAddMappedHeader@28 @10 + WsAddressMessage@12 @11 + WsAlloc@16 @12 + WsAsyncExecute@0 @13 PRIVATE + WsCall@32 @14 + WsCheckMustUnderstandHeaders@0 @15 PRIVATE + WsCloseChannel@12 @16 + WsCloseListener@12 @17 + WsCloseServiceHost@0 @18 PRIVATE + WsCloseServiceProxy@12 @19 + WsCombineUrl@0 @20 PRIVATE + WsCopyError@0 @21 PRIVATE + WsCopyNode@12 @22 + WsCreateChannel@28 @23 + WsCreateChannelForListener@20 @24 + WsCreateError@12 @25 + WsCreateFaultFromError@0 @26 PRIVATE + WsCreateHeap@24 @27 + WsCreateListener@28 @28 + WsCreateMessage@24 @29 + WsCreateMessageForChannel@20 @30 + WsCreateMetadata@0 @31 PRIVATE + WsCreateReader@16 @32 + WsCreateServiceEndpointFromTemplate@0 @33 PRIVATE + WsCreateServiceHost@0 @34 PRIVATE + WsCreateServiceProxy@36 @35 + WsCreateServiceProxyFromTemplate@40 @36 + WsCreateWriter@16 @37 + WsCreateXmlBuffer@20 @38 + WsCreateXmlSecurityToken@0 @39 PRIVATE + WsDateTimeToFileTime@12 @40 + WsDecodeUrl@20 @41 + WsEncodeUrl@20 @42 + WsEndReaderCanonicalization@0 @43 PRIVATE + WsEndWriterCanonicalization@0 @44 PRIVATE + WsFileTimeToDateTime@12 @45 + WsFillBody@16 @46 + WsFillReader@16 @47 + WsFindAttribute@24 @48 + WsFlushBody@16 @49 + WsFlushWriter@16 @50 + WsFreeChannel@4 @51 + WsFreeError@4 @52 + WsFreeHeap@4 @53 + WsFreeListener@4 @54 + WsFreeMessage@4 @55 + WsFreeMetadata@0 @56 PRIVATE + WsFreeReader@4 @57 + WsFreeSecurityToken@0 @58 PRIVATE + WsFreeServiceHost@0 @59 PRIVATE + WsFreeServiceProxy@4 @60 + WsFreeWriter@4 @61 + WsGetChannelProperty@20 @62 + WsGetCustomHeader@40 @63 + WsGetDictionary@12 @64 + WsGetErrorProperty@16 @65 + WsGetErrorString@12 @66 + WsGetFaultErrorDetail@0 @67 PRIVATE + WsGetFaultErrorProperty@0 @68 PRIVATE + WsGetHeader@32 @69 + WsGetHeaderAttributes@0 @70 PRIVATE + WsGetHeapProperty@20 @71 + WsGetListenerProperty@20 @72 + WsGetMappedHeader@0 @73 PRIVATE + WsGetMessageProperty@20 @74 + WsGetMetadataEndpoints@0 @75 PRIVATE + WsGetMetadataProperty@0 @76 PRIVATE + WsGetMissingMetadataDocumentAddress@0 @77 PRIVATE + WsGetNamespaceFromPrefix@20 @78 + WsGetOperationContextProperty@0 @79 PRIVATE + WsGetPolicyAlternativeCount@0 @80 PRIVATE + WsGetPolicyProperty@0 @81 PRIVATE + WsGetPrefixFromNamespace@20 @82 + WsGetReaderNode@12 @83 + WsGetReaderPosition@12 @84 + WsGetReaderProperty@20 @85 + WsGetSecurityContextProperty@0 @86 PRIVATE + WsGetSecurityTokenProperty@0 @87 PRIVATE + WsGetServiceHostProperty@0 @88 PRIVATE + WsGetServiceProxyProperty@20 @89 + WsGetWriterPosition@12 @90 + WsGetWriterProperty@20 @91 + WsGetXmlAttribute@24 @92 + WsInitializeMessage@16 @93 + WsMarkHeaderAsUnderstood@0 @94 PRIVATE + WsMatchPolicyAlternative@0 @95 PRIVATE + WsMoveReader@16 @96 + WsMoveWriter@16 @97 + WsOpenChannel@16 @98 + WsOpenListener@16 @99 + WsOpenServiceHost@0 @100 PRIVATE + WsOpenServiceProxy@16 @101 + WsPullBytes@0 @102 PRIVATE + WsPushBytes@0 @103 PRIVATE + WsReadArray@0 @104 PRIVATE + WsReadAttribute@28 @105 + WsReadBody@28 @106 + WsReadBytes@20 @107 + WsReadChars@20 @108 + WsReadCharsUtf8@20 @109 + WsReadElement@28 @110 + WsReadEndAttribute@8 @111 + WsReadEndElement@8 @112 + WsReadEndpointAddressExtension@0 @113 PRIVATE + WsReadEnvelopeEnd@8 @114 + WsReadEnvelopeStart@20 @115 + WsReadMessageEnd@16 @116 + WsReadMessageStart@16 @117 + WsReadMetadata@0 @118 PRIVATE + WsReadNode@8 @119 + WsReadQualifiedName@24 @120 + WsReadStartAttribute@12 @121 + WsReadStartElement@8 @122 + WsReadToStartElement@20 @123 + WsReadType@36 @124 + WsReadValue@20 @125 + WsReadXmlBuffer@16 @126 + WsReadXmlBufferFromBytes@0 @127 PRIVATE + WsReceiveMessage@48 @128 + WsRegisterOperationForCancel@0 @129 PRIVATE + WsRemoveCustomHeader@16 @130 + WsRemoveHeader@12 @131 + WsRemoveMappedHeader@12 @132 + WsRemoveNode@0 @133 PRIVATE + WsRequestReply@56 @134 + WsRequestSecurityToken@0 @135 PRIVATE + WsResetChannel@8 @136 + WsResetError@4 @137 + WsResetHeap@8 @138 + WsResetListener@8 @139 + WsResetMessage@8 @140 + WsResetMetadata@0 @141 PRIVATE + WsResetServiceHost@0 @142 PRIVATE + WsResetServiceProxy@8 @143 + WsRevokeSecurityContext@0 @144 PRIVATE + WsSendFaultMessageForError@0 @145 PRIVATE + WsSendMessage@32 @146 + WsSendReplyMessage@36 @147 + WsSetChannelProperty@20 @148 + WsSetErrorProperty@16 @149 + WsSetFaultErrorDetail@0 @150 PRIVATE + WsSetFaultErrorProperty@0 @151 PRIVATE + WsSetHeader@28 @152 + WsSetInput@24 @153 + WsSetInputToBuffer@20 @154 + WsSetListenerProperty@20 @155 + WsSetMessageProperty@20 @156 + WsSetOutput@24 @157 + WsSetOutputToBuffer@20 @158 + WsSetReaderPosition@12 @159 + WsSetWriterPosition@12 @160 + WsShutdownSessionChannel@12 @161 + WsSkipNode@8 @162 + WsStartReaderCanonicalization@0 @163 PRIVATE + WsStartWriterCanonicalization@0 @164 PRIVATE + WsTrimXmlWhitespace@0 @165 PRIVATE + WsVerifyXmlNCName@0 @166 PRIVATE + WsWriteArray@36 @167 + WsWriteAttribute@24 @168 + WsWriteBody@24 @169 + WsWriteBytes@16 @170 + WsWriteChars@16 @171 + WsWriteCharsUtf8@16 @172 + WsWriteElement@24 @173 + WsWriteEndAttribute@8 @174 + WsWriteEndCData@8 @175 + WsWriteEndElement@8 @176 + WsWriteEndStartElement@8 @177 + WsWriteEnvelopeEnd@8 @178 + WsWriteEnvelopeStart@20 @179 + WsWriteMessageEnd@16 @180 + WsWriteMessageStart@16 @181 + WsWriteNode@12 @182 + WsWriteQualifiedName@20 @183 + WsWriteStartAttribute@24 @184 + WsWriteStartCData@8 @185 + WsWriteStartElement@20 @186 + WsWriteText@12 @187 + WsWriteType@32 @188 + WsWriteValue@20 @189 + WsWriteXmlBuffer@12 @190 + WsWriteXmlBufferToBytes@36 @191 + WsWriteXmlnsAttribute@20 @192 + WsXmlStringEquals@12 @193 diff --git a/lib/wine/libwer.def b/lib/wine/libwer.def new file mode 100644 index 0000000..bd3c307 --- /dev/null +++ b/lib/wine/libwer.def @@ -0,0 +1,82 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/wer/wer.spec; do not edit! + +LIBRARY wer.dll + +EXPORTS + WerSysprepCleanup@0 @1 PRIVATE + WerSysprepGeneralize@0 @2 PRIVATE + WerSysprepSpecialize@0 @3 PRIVATE + WerUnattendedSetup@0 @4 PRIVATE + WerpAddAppCompatData@0 @5 PRIVATE + WerpAddFile@0 @6 PRIVATE + WerpAddMemoryBlock@0 @7 PRIVATE + WerpAddRegisteredDataToReport@0 @8 PRIVATE + WerpAddSecondaryParameter@0 @9 PRIVATE + WerpAddTextToReport@0 @10 PRIVATE + WerpArchiveReport@0 @11 PRIVATE + WerpCancelResponseDownload@0 @12 PRIVATE + WerpCancelUpload@0 @13 PRIVATE + WerpCloseStore@0 @14 PRIVATE + WerpCreateMachineStore@0 @15 PRIVATE + WerpDeleteReport@0 @16 PRIVATE + WerpDestroyWerString@0 @17 PRIVATE + WerpDownloadResponse@0 @18 PRIVATE + WerpDownloadResponseTemplate@0 @19 PRIVATE + WerpEnumerateStoreNext@0 @20 PRIVATE + WerpEnumerateStoreStart@0 @21 PRIVATE + WerpExtractReportFiles@0 @22 PRIVATE + WerpGetBucketId@0 @23 PRIVATE + WerpGetDynamicParameter@0 @24 PRIVATE + WerpGetEventType@0 @25 PRIVATE + WerpGetFileByIndex@0 @26 PRIVATE + WerpGetFilePathByIndex@0 @27 PRIVATE + WerpGetNumFiles@0 @28 PRIVATE + WerpGetNumSecParams@0 @29 PRIVATE + WerpGetNumSigParams@0 @30 PRIVATE + WerpGetReportFinalConsent@0 @31 PRIVATE + WerpGetReportFlags@0 @32 PRIVATE + WerpGetReportInformation@0 @33 PRIVATE + WerpGetReportTime@0 @34 PRIVATE + WerpGetReportType@0 @35 PRIVATE + WerpGetResponseId@0 @36 PRIVATE + WerpGetResponseUrl@0 @37 PRIVATE + WerpGetSecParamByIndex@0 @38 PRIVATE + WerpGetSigParamByIndex@0 @39 PRIVATE + WerpGetStoreLocation@0 @40 PRIVATE + WerpGetStoreType@0 @41 PRIVATE + WerpGetTextFromReport@0 @42 PRIVATE + WerpGetUIParamByIndex@0 @43 PRIVATE + WerpGetUploadTime@0 @44 PRIVATE + WerpGetWerStringData@0 @45 PRIVATE + WerpIsTransportAvailable@0 @46 PRIVATE + WerpLoadReport@0 @47 PRIVATE + WerpOpenMachineArchive@0 @48 PRIVATE + WerpOpenMachineQueue@0 @49 PRIVATE + WerpOpenUserArchive@0 @50 PRIVATE + WerpReportCancel@0 @51 PRIVATE + WerpRestartApplication@0 @52 PRIVATE + WerpSetDynamicParameter@0 @53 PRIVATE + WerpSetEventName@0 @54 PRIVATE + WerpSetReportFlags@0 @55 PRIVATE + WerpSetReportInformation@0 @56 PRIVATE + WerpSetReportTime@0 @57 PRIVATE + WerpSetReportUploadContextToken@0 @58 PRIVATE + WerpShowNXNotification@0 @59 PRIVATE + WerpShowSecondLevelConsent@0 @60 PRIVATE + WerpShowUpsellUI@0 @61 PRIVATE + WerpSubmitReportFromStore@0 @62 PRIVATE + WerpSvcReportFromMachineQueue@0 @63 PRIVATE + WerAddExcludedApplication@8 @64 + WerRemoveExcludedApplication@8 @65 + WerReportAddDump@28 @66 + WerReportAddFile@16 @67 + WerReportCloseHandle@4 @68 + WerReportCreate@16 @69 + WerReportSetParameter@16 @70 + WerReportSetUIOption@12 @71 + WerReportSubmit@16 @72 + WerpGetReportConsent@0 @73 PRIVATE + WerpIsDisabled@0 @74 PRIVATE + WerpOpenUserQueue@0 @75 PRIVATE + WerpPromtUser@0 @76 PRIVATE + WerpSetCallBack@0 @77 PRIVATE diff --git a/lib/wine/libwindowscodecs.def b/lib/wine/libwindowscodecs.def new file mode 100644 index 0000000..b464288 --- /dev/null +++ b/lib/wine/libwindowscodecs.def @@ -0,0 +1,123 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/windowscodecs/windowscodecs.spec; do not edit! + +LIBRARY windowscodecs.dll + +EXPORTS + DllCanUnloadNow@0 @1 PRIVATE + DllGetClassObject@12 @2 PRIVATE + DllRegisterServer@0 @3 PRIVATE + DllUnregisterServer@0 @4 PRIVATE + IEnumString_Next_WIC_Proxy@0 @5 PRIVATE + IEnumString_Reset_WIC_Proxy@0 @6 PRIVATE + IPropertyBag2_Write_Proxy@16 @7 + IWICBitmapClipper_Initialize_Proxy@12=IWICBitmapClipper_Initialize_Proxy_W @8 + IWICBitmapCodecInfo_DoesSupportAnimation_Proxy@8=IWICBitmapCodecInfo_DoesSupportAnimation_Proxy_W @9 + IWICBitmapCodecInfo_DoesSupportLossless_Proxy@8=IWICBitmapCodecInfo_DoesSupportLossless_Proxy_W @10 + IWICBitmapCodecInfo_DoesSupportMultiframe_Proxy@8=IWICBitmapCodecInfo_DoesSupportMultiframe_Proxy_W @11 + IWICBitmapCodecInfo_GetContainerFormat_Proxy@8=IWICBitmapCodecInfo_GetContainerFormat_Proxy_W @12 + IWICBitmapCodecInfo_GetDeviceManufacturer_Proxy@16=IWICBitmapCodecInfo_GetDeviceManufacturer_Proxy_W @13 + IWICBitmapCodecInfo_GetDeviceModels_Proxy@16=IWICBitmapCodecInfo_GetDeviceModels_Proxy_W @14 + IWICBitmapCodecInfo_GetFileExtensions_Proxy@16=IWICBitmapCodecInfo_GetFileExtensions_Proxy_W @15 + IWICBitmapCodecInfo_GetMimeTypes_Proxy@16=IWICBitmapCodecInfo_GetMimeTypes_Proxy_W @16 + IWICBitmapDecoder_CopyPalette_Proxy@8=IWICBitmapDecoder_CopyPalette_Proxy_W @17 + IWICBitmapDecoder_GetColorContexts_Proxy@16=IWICBitmapDecoder_GetColorContexts_Proxy_W @18 + IWICBitmapDecoder_GetDecoderInfo_Proxy@8=IWICBitmapDecoder_GetDecoderInfo_Proxy_W @19 + IWICBitmapDecoder_GetFrameCount_Proxy@8=IWICBitmapDecoder_GetFrameCount_Proxy_W @20 + IWICBitmapDecoder_GetFrame_Proxy@12=IWICBitmapDecoder_GetFrame_Proxy_W @21 + IWICBitmapDecoder_GetMetadataQueryReader_Proxy@8=IWICBitmapDecoder_GetMetadataQueryReader_Proxy_W @22 + IWICBitmapDecoder_GetPreview_Proxy@8=IWICBitmapDecoder_GetPreview_Proxy_W @23 + IWICBitmapDecoder_GetThumbnail_Proxy@8=IWICBitmapDecoder_GetThumbnail_Proxy_W @24 + IWICBitmapEncoder_Commit_Proxy@4=IWICBitmapEncoder_Commit_Proxy_W @25 + IWICBitmapEncoder_CreateNewFrame_Proxy@12=IWICBitmapEncoder_CreateNewFrame_Proxy_W @26 + IWICBitmapEncoder_GetEncoderInfo_Proxy@8=IWICBitmapEncoder_GetEncoderInfo_Proxy_W @27 + IWICBitmapEncoder_GetMetadataQueryWriter_Proxy@8=IWICBitmapEncoder_GetMetadataQueryWriter_Proxy_W @28 + IWICBitmapEncoder_Initialize_Proxy@12=IWICBitmapEncoder_Initialize_Proxy_W @29 + IWICBitmapEncoder_SetPalette_Proxy@8=IWICBitmapEncoder_SetPalette_Proxy_W @30 + IWICBitmapEncoder_SetThumbnail_Proxy@8=IWICBitmapEncoder_SetThumbnail_Proxy_W @31 + IWICBitmapFlipRotator_Initialize_Proxy@12=IWICBitmapFlipRotator_Initialize_Proxy_W @32 + IWICBitmapFrameDecode_GetColorContexts_Proxy@16=IWICBitmapFrameDecode_GetColorContexts_Proxy_W @33 + IWICBitmapFrameDecode_GetMetadataQueryReader_Proxy@8=IWICBitmapFrameDecode_GetMetadataQueryReader_Proxy_W @34 + IWICBitmapFrameDecode_GetThumbnail_Proxy@8=IWICBitmapFrameDecode_GetThumbnail_Proxy_W @35 + IWICBitmapFrameEncode_Commit_Proxy@4=IWICBitmapFrameEncode_Commit_Proxy_W @36 + IWICBitmapFrameEncode_GetMetadataQueryWriter_Proxy@8=IWICBitmapFrameEncode_GetMetadataQueryWriter_Proxy_W @37 + IWICBitmapFrameEncode_Initialize_Proxy@8=IWICBitmapFrameEncode_Initialize_Proxy_W @38 + IWICBitmapFrameEncode_SetColorContexts_Proxy@12=IWICBitmapFrameEncode_SetColorContexts_Proxy_W @39 + IWICBitmapFrameEncode_SetResolution_Proxy@20=IWICBitmapFrameEncode_SetResolution_Proxy_W @40 + IWICBitmapFrameEncode_SetSize_Proxy@12=IWICBitmapFrameEncode_SetSize_Proxy_W @41 + IWICBitmapFrameEncode_SetThumbnail_Proxy@8=IWICBitmapFrameEncode_SetThumbnail_Proxy_W @42 + IWICBitmapFrameEncode_WriteSource_Proxy@12=IWICBitmapFrameEncode_WriteSource_Proxy_W @43 + IWICBitmapLock_GetDataPointer_STA_Proxy@12=IWICBitmapLock_GetDataPointer_Proxy_W @44 + IWICBitmapLock_GetStride_Proxy@8=IWICBitmapLock_GetStride_Proxy_W @45 + IWICBitmapScaler_Initialize_Proxy@20=IWICBitmapScaler_Initialize_Proxy_W @46 + IWICBitmapSource_CopyPalette_Proxy@8=IWICBitmapSource_CopyPalette_Proxy_W @47 + IWICBitmapSource_CopyPixels_Proxy@20=IWICBitmapSource_CopyPixels_Proxy_W @48 + IWICBitmapSource_GetPixelFormat_Proxy@8=IWICBitmapSource_GetPixelFormat_Proxy_W @49 + IWICBitmapSource_GetResolution_Proxy@12=IWICBitmapSource_GetResolution_Proxy_W @50 + IWICBitmapSource_GetSize_Proxy@12=IWICBitmapSource_GetSize_Proxy_W @51 + IWICBitmap_Lock_Proxy@16=IWICBitmap_Lock_Proxy_W @52 + IWICBitmap_SetPalette_Proxy@8=IWICBitmap_SetPalette_Proxy_W @53 + IWICBitmap_SetResolution_Proxy@20=IWICBitmap_SetResolution_Proxy_W @54 + IWICColorContext_InitializeFromMemory_Proxy@12=IWICColorContext_InitializeFromMemory_Proxy_W @55 + IWICComponentFactory_CreateMetadataWriterFromReader_Proxy@16=IWICComponentFactory_CreateMetadataWriterFromReader_Proxy_W @56 + IWICComponentFactory_CreateQueryWriterFromBlockWriter_Proxy@12=IWICComponentFactory_CreateQueryWriterFromBlockWriter_Proxy_W @57 + IWICComponentInfo_GetAuthor_Proxy@16=IWICComponentInfo_GetAuthor_Proxy_W @58 + IWICComponentInfo_GetCLSID_Proxy@8=IWICComponentInfo_GetCLSID_Proxy_W @59 + IWICComponentInfo_GetFriendlyName_Proxy@16=IWICComponentInfo_GetFriendlyName_Proxy_W @60 + IWICComponentInfo_GetSpecVersion_Proxy@16=IWICComponentInfo_GetSpecVersion_Proxy_W @61 + IWICComponentInfo_GetVersion_Proxy@16=IWICComponentInfo_GetVersion_Proxy_W @62 + IWICFastMetadataEncoder_Commit_Proxy@4=IWICFastMetadataEncoder_Commit_Proxy_W @63 + IWICFastMetadataEncoder_GetMetadataQueryWriter_Proxy@8=IWICFastMetadataEncoder_GetMetadataQueryWriter_Proxy_W @64 + IWICFormatConverter_Initialize_Proxy@32=IWICFormatConverter_Initialize_Proxy_W @65 + IWICImagingFactory_CreateBitmapClipper_Proxy@8=IWICImagingFactory_CreateBitmapClipper_Proxy_W @66 + IWICImagingFactory_CreateBitmapFlipRotator_Proxy@8=IWICImagingFactory_CreateBitmapFlipRotator_Proxy_W @67 + IWICImagingFactory_CreateBitmapFromHBITMAP_Proxy@20=IWICImagingFactory_CreateBitmapFromHBITMAP_Proxy_W @68 + IWICImagingFactory_CreateBitmapFromHICON_Proxy@12=IWICImagingFactory_CreateBitmapFromHICON_Proxy_W @69 + IWICImagingFactory_CreateBitmapFromMemory_Proxy@32=IWICImagingFactory_CreateBitmapFromMemory_Proxy_W @70 + IWICImagingFactory_CreateBitmapFromSource_Proxy@16=IWICImagingFactory_CreateBitmapFromSource_Proxy_W @71 + IWICImagingFactory_CreateBitmapScaler_Proxy@8=IWICImagingFactory_CreateBitmapScaler_Proxy_W @72 + IWICImagingFactory_CreateBitmap_Proxy@24=IWICImagingFactory_CreateBitmap_Proxy_W @73 + IWICImagingFactory_CreateComponentInfo_Proxy@12=IWICImagingFactory_CreateComponentInfo_Proxy_W @74 + IWICImagingFactory_CreateDecoderFromFileHandle_Proxy@20=IWICImagingFactory_CreateDecoderFromFileHandle_Proxy_W @75 + IWICImagingFactory_CreateDecoderFromFilename_Proxy@24=IWICImagingFactory_CreateDecoderFromFilename_Proxy_W @76 + IWICImagingFactory_CreateDecoderFromStream_Proxy@20=IWICImagingFactory_CreateDecoderFromStream_Proxy_W @77 + IWICImagingFactory_CreateEncoder_Proxy@16=IWICImagingFactory_CreateEncoder_Proxy_W @78 + IWICImagingFactory_CreateFastMetadataEncoderFromDecoder_Proxy@12=IWICImagingFactory_CreateFastMetadataEncoderFromDecoder_Proxy_W @79 + IWICImagingFactory_CreateFastMetadataEncoderFromFrameDecode_Proxy@12=IWICImagingFactory_CreateFastMetadataEncoderFromFrameDecode_Proxy_W @80 + IWICImagingFactory_CreateFormatConverter_Proxy@8=IWICImagingFactory_CreateFormatConverter_Proxy_W @81 + IWICImagingFactory_CreatePalette_Proxy@8=IWICImagingFactory_CreatePalette_Proxy_W @82 + IWICImagingFactory_CreateQueryWriterFromReader_Proxy@16=IWICImagingFactory_CreateQueryWriterFromReader_Proxy_W @83 + IWICImagingFactory_CreateQueryWriter_Proxy@16=IWICImagingFactory_CreateQueryWriter_Proxy_W @84 + IWICImagingFactory_CreateStream_Proxy@8=IWICImagingFactory_CreateStream_Proxy_W @85 + IWICMetadataBlockReader_GetCount_Proxy@8=IWICMetadataBlockReader_GetCount_Proxy_W @86 + IWICMetadataBlockReader_GetReaderByIndex_Proxy@12=IWICMetadataBlockReader_GetReaderByIndex_Proxy_W @87 + IWICMetadataQueryReader_GetContainerFormat_Proxy@8=IWICMetadataQueryReader_GetContainerFormat_Proxy_W @88 + IWICMetadataQueryReader_GetEnumerator_Proxy@8=IWICMetadataQueryReader_GetEnumerator_Proxy_W @89 + IWICMetadataQueryReader_GetLocation_Proxy@16=IWICMetadataQueryReader_GetLocation_Proxy_W @90 + IWICMetadataQueryReader_GetMetadataByName_Proxy@12=IWICMetadataQueryReader_GetMetadataByName_Proxy_W @91 + IWICMetadataQueryWriter_RemoveMetadataByName_Proxy@8=IWICMetadataQueryWriter_RemoveMetadataByName_Proxy_W @92 + IWICMetadataQueryWriter_SetMetadataByName_Proxy@12=IWICMetadataQueryWriter_SetMetadataByName_Proxy_W @93 + IWICPalette_GetColorCount_Proxy@8=IWICPalette_GetColorCount_Proxy_W @94 + IWICPalette_GetColors_Proxy@16=IWICPalette_GetColors_Proxy_W @95 + IWICPalette_GetType_Proxy@8=IWICPalette_GetType_Proxy_W @96 + IWICPalette_HasAlpha_Proxy@8=IWICPalette_HasAlpha_Proxy_W @97 + IWICPalette_InitializeCustom_Proxy@12=IWICPalette_InitializeCustom_Proxy_W @98 + IWICPalette_InitializeFromBitmap_Proxy@16=IWICPalette_InitializeFromBitmap_Proxy_W @99 + IWICPalette_InitializeFromPalette_Proxy@8=IWICPalette_InitializeFromPalette_Proxy_W @100 + IWICPalette_InitializePredefined_Proxy@12=IWICPalette_InitializePredefined_Proxy_W @101 + IWICPixelFormatInfo_GetBitsPerPixel_Proxy@8=IWICPixelFormatInfo_GetBitsPerPixel_Proxy_W @102 + IWICPixelFormatInfo_GetChannelCount_Proxy@8=IWICPixelFormatInfo_GetChannelCount_Proxy_W @103 + IWICPixelFormatInfo_GetChannelMask_Proxy@20=IWICPixelFormatInfo_GetChannelMask_Proxy_W @104 + IWICStream_InitializeFromIStream_Proxy@8=IWICStream_InitializeFromIStream_Proxy_W @105 + IWICStream_InitializeFromMemory_Proxy@12=IWICStream_InitializeFromMemory_Proxy_W @106 + WICConvertBitmapSource@12 @107 + WICCreateBitmapFromSection@28 @108 + WICCreateBitmapFromSectionEx@32 @109 + WICCreateColorContext_Proxy@8 @110 + WICCreateImagingFactory_Proxy@8 @111 + WICGetMetadataContentSize@0 @112 PRIVATE + WICMapGuidToShortName@16 @113 + WICMapSchemaToName@20 @114 + WICMapShortNameToGuid@8 @115 + WICMatchMetadataContent@0 @116 PRIVATE + WICSerializeMetadataContent@0 @117 PRIVATE + WICSetEncoderFormat_Proxy@16 @118 diff --git a/lib/wine/libwindowscodecsext.def b/lib/wine/libwindowscodecsext.def new file mode 100644 index 0000000..9431d68 --- /dev/null +++ b/lib/wine/libwindowscodecsext.def @@ -0,0 +1,8 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/windowscodecsext/windowscodecsext.spec; do not edit! + +LIBRARY windowscodecsext.dll + +EXPORTS + DllGetClassObject@12 @1 PRIVATE + IWICColorTransform_Initialize_Proxy@20=IWICColorTransform_Initialize_Proxy_W @2 + WICCreateColorTransform_Proxy@4 @3 diff --git a/lib/wine/libwinecrt0.a b/lib/wine/libwinecrt0.a new file mode 100644 index 0000000..55c155e Binary files /dev/null and b/lib/wine/libwinecrt0.a differ diff --git a/lib/wine/libwined3d.def b/lib/wine/libwined3d.def new file mode 100644 index 0000000..ca067ab --- /dev/null +++ b/lib/wine/libwined3d.def @@ -0,0 +1,310 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/wined3d/wined3d.spec; do not edit! + +LIBRARY wined3d.dll + +EXPORTS + wined3d_mutex_lock@0 @1 + wined3d_mutex_unlock@0 @2 + wined3d_calculate_format_pitch @3 + wined3d_check_depth_stencil_match @4 + wined3d_check_device_format @5 + wined3d_check_device_format_conversion @6 + wined3d_check_device_multisample_type @7 + wined3d_check_device_type @8 + wined3d_create @9 + wined3d_decref @10 + wined3d_enum_adapter_modes @11 + wined3d_find_closest_matching_adapter_mode @12 + wined3d_get_adapter_count @13 + wined3d_get_adapter_display_mode @14 + wined3d_get_adapter_identifier @15 + wined3d_get_adapter_mode_count @16 + wined3d_get_adapter_raster_status @17 + wined3d_get_device_caps @18 + wined3d_get_output_desc @19 + wined3d_incref @20 + wined3d_register_software_device @21 + wined3d_set_adapter_display_mode @22 + wined3d_blend_state_create @23 + wined3d_blend_state_decref @24 + wined3d_blend_state_get_parent @25 + wined3d_blend_state_incref @26 + wined3d_buffer_create @27 + wined3d_buffer_decref @28 + wined3d_buffer_get_parent @29 + wined3d_buffer_get_resource @30 + wined3d_buffer_incref @31 + wined3d_device_acquire_focus_window @32 + wined3d_device_begin_scene @33 + wined3d_device_begin_stateblock @34 + wined3d_device_clear @35 + wined3d_device_clear_rendertarget_view @36 + wined3d_device_clear_unordered_access_view_uint @37 + wined3d_device_copy_resource @38 + wined3d_device_copy_sub_resource_region @39 + wined3d_device_copy_uav_counter @40 + wined3d_device_create @41 + wined3d_device_decref @42 + wined3d_device_dispatch_compute @43 + wined3d_device_dispatch_compute_indirect @44 + wined3d_device_draw_indexed_primitive @45 + wined3d_device_draw_indexed_primitive_instanced @46 + wined3d_device_draw_indexed_primitive_instanced_indirect @47 + wined3d_device_draw_primitive @48 + wined3d_device_draw_primitive_instanced @49 + wined3d_device_draw_primitive_instanced_indirect @50 + wined3d_device_end_scene @51 + wined3d_device_end_stateblock @52 + wined3d_device_evict_managed_resources @53 + wined3d_device_get_available_texture_mem @54 + wined3d_device_get_base_vertex_index @55 + wined3d_device_get_blend_state @56 + wined3d_device_get_clip_plane @57 + wined3d_device_get_clip_status @58 + wined3d_device_get_compute_shader @59 + wined3d_device_get_constant_buffer @60 + wined3d_device_get_creation_parameters @61 + wined3d_device_get_cs_resource_view @62 + wined3d_device_get_cs_sampler @63 + wined3d_device_get_cs_uav @64 + wined3d_device_get_depth_stencil_view @65 + wined3d_device_get_device_caps @66 + wined3d_device_get_display_mode @67 + wined3d_device_get_domain_shader @68 + wined3d_device_get_ds_resource_view @69 + wined3d_device_get_ds_sampler @70 + wined3d_device_get_feature_level @71 + wined3d_device_get_gamma_ramp @72 + wined3d_device_get_geometry_shader @73 + wined3d_device_get_gs_resource_view @74 + wined3d_device_get_gs_sampler @75 + wined3d_device_get_hs_resource_view @76 + wined3d_device_get_hs_sampler @77 + wined3d_device_get_hull_shader @78 + wined3d_device_get_index_buffer @79 + wined3d_device_get_light @80 + wined3d_device_get_light_enable @81 + wined3d_device_get_material @82 + wined3d_device_get_max_frame_latency @83 + wined3d_device_get_npatch_mode @84 + wined3d_device_get_pixel_shader @85 + wined3d_device_get_predication @86 + wined3d_device_get_primitive_type @87 + wined3d_device_get_ps_consts_b @88 + wined3d_device_get_ps_consts_f @89 + wined3d_device_get_ps_consts_i @90 + wined3d_device_get_ps_resource_view @91 + wined3d_device_get_ps_sampler @92 + wined3d_device_get_raster_status @93 + wined3d_device_get_rasterizer_state @94 + wined3d_device_get_render_state @95 + wined3d_device_get_rendertarget_view @96 + wined3d_device_get_sampler_state @97 + wined3d_device_get_scissor_rects @98 + wined3d_device_get_software_vertex_processing @99 + wined3d_device_get_stream_output @100 + wined3d_device_get_stream_source @101 + wined3d_device_get_stream_source_freq @102 + wined3d_device_get_swapchain @103 + wined3d_device_get_swapchain_count @104 + wined3d_device_get_texture @105 + wined3d_device_get_texture_stage_state @106 + wined3d_device_get_transform @107 + wined3d_device_get_unordered_access_view @108 + wined3d_device_get_vertex_declaration @109 + wined3d_device_get_vertex_shader @110 + wined3d_device_get_viewports @111 + wined3d_device_get_vs_consts_b @112 + wined3d_device_get_vs_consts_f @113 + wined3d_device_get_vs_consts_i @114 + wined3d_device_get_vs_resource_view @115 + wined3d_device_get_vs_sampler @116 + wined3d_device_get_wined3d @117 + wined3d_device_incref @118 + wined3d_device_multiply_transform @119 + wined3d_device_process_vertices @120 + wined3d_device_release_focus_window @121 + wined3d_device_reset @122 + wined3d_device_resolve_sub_resource @123 + wined3d_device_restore_fullscreen_window @124 + wined3d_device_set_base_vertex_index @125 + wined3d_device_set_blend_state @126 + wined3d_device_set_clip_plane @127 + wined3d_device_set_clip_status @128 + wined3d_device_set_compute_shader @129 + wined3d_device_set_constant_buffer @130 + wined3d_device_set_cs_resource_view @131 + wined3d_device_set_cs_sampler @132 + wined3d_device_set_cs_uav @133 + wined3d_device_set_cursor_position @134 + wined3d_device_set_cursor_properties @135 + wined3d_device_set_depth_stencil_view @136 + wined3d_device_set_dialog_box_mode @137 + wined3d_device_set_domain_shader @138 + wined3d_device_set_ds_resource_view @139 + wined3d_device_set_ds_sampler @140 + wined3d_device_set_gamma_ramp @141 + wined3d_device_set_geometry_shader @142 + wined3d_device_set_gs_resource_view @143 + wined3d_device_set_gs_sampler @144 + wined3d_device_set_hs_resource_view @145 + wined3d_device_set_hs_sampler @146 + wined3d_device_set_hull_shader @147 + wined3d_device_set_index_buffer @148 + wined3d_device_set_light @149 + wined3d_device_set_light_enable @150 + wined3d_device_set_material @151 + wined3d_device_set_max_frame_latency @152 + wined3d_device_set_multithreaded @153 + wined3d_device_set_npatch_mode @154 + wined3d_device_set_pixel_shader @155 + wined3d_device_set_predication @156 + wined3d_device_set_primitive_type @157 + wined3d_device_set_ps_consts_b @158 + wined3d_device_set_ps_consts_f @159 + wined3d_device_set_ps_consts_i @160 + wined3d_device_set_ps_resource_view @161 + wined3d_device_set_ps_sampler @162 + wined3d_device_set_rasterizer_state @163 + wined3d_device_set_render_state @164 + wined3d_device_set_rendertarget_view @165 + wined3d_device_set_sampler_state @166 + wined3d_device_set_scissor_rects @167 + wined3d_device_set_software_vertex_processing @168 + wined3d_device_set_stream_output @169 + wined3d_device_set_stream_source @170 + wined3d_device_set_stream_source_freq @171 + wined3d_device_set_texture @172 + wined3d_device_set_texture_stage_state @173 + wined3d_device_set_transform @174 + wined3d_device_set_unordered_access_view @175 + wined3d_device_set_vertex_declaration @176 + wined3d_device_set_vertex_shader @177 + wined3d_device_set_viewports @178 + wined3d_device_set_vs_consts_b @179 + wined3d_device_set_vs_consts_f @180 + wined3d_device_set_vs_consts_i @181 + wined3d_device_set_vs_resource_view @182 + wined3d_device_set_vs_sampler @183 + wined3d_device_setup_fullscreen_window @184 + wined3d_device_show_cursor @185 + wined3d_device_update_sub_resource @186 + wined3d_device_update_texture @187 + wined3d_device_validate_device @188 + wined3d_palette_create @189 + wined3d_palette_decref @190 + wined3d_palette_get_entries @191 + wined3d_palette_apply_to_dc @192 + wined3d_palette_incref @193 + wined3d_palette_set_entries @194 + wined3d_query_create @195 + wined3d_query_decref @196 + wined3d_query_get_data @197 + wined3d_query_get_data_size @198 + wined3d_query_get_parent @199 + wined3d_query_get_type @200 + wined3d_query_incref @201 + wined3d_query_issue @202 + wined3d_rasterizer_state_create @203 + wined3d_rasterizer_state_decref @204 + wined3d_rasterizer_state_get_parent @205 + wined3d_rasterizer_state_incref @206 + wined3d_resource_get_desc @207 + wined3d_resource_get_parent @208 + wined3d_resource_get_priority @209 + wined3d_resource_map @210 + wined3d_resource_map_info @211 + wined3d_resource_preload @212 + wined3d_resource_set_parent @213 + wined3d_resource_set_priority @214 + wined3d_resource_unmap @215 + wined3d_resource_update_info @216 + wined3d_rendertarget_view_create @217 + wined3d_rendertarget_view_create_from_sub_resource @218 + wined3d_rendertarget_view_decref @219 + wined3d_rendertarget_view_get_parent @220 + wined3d_rendertarget_view_get_resource @221 + wined3d_rendertarget_view_get_sub_resource_parent @222 + wined3d_rendertarget_view_incref @223 + wined3d_rendertarget_view_set_parent @224 + wined3d_sampler_create @225 + wined3d_sampler_decref @226 + wined3d_sampler_get_parent @227 + wined3d_sampler_incref @228 + wined3d_shader_create_cs @229 + wined3d_shader_create_ds @230 + wined3d_shader_create_gs @231 + wined3d_shader_create_hs @232 + wined3d_shader_create_ps @233 + wined3d_shader_create_vs @234 + wined3d_shader_decref @235 + wined3d_shader_get_byte_code @236 + wined3d_shader_get_parent @237 + wined3d_shader_incref @238 + wined3d_shader_set_local_constants_float @239 + wined3d_shader_resource_view_create @240 + wined3d_shader_resource_view_decref @241 + wined3d_shader_resource_view_generate_mipmaps @242 + wined3d_shader_resource_view_get_parent @243 + wined3d_shader_resource_view_incref @244 + wined3d_stateblock_apply @245 + wined3d_stateblock_capture @246 + wined3d_stateblock_create @247 + wined3d_stateblock_decref @248 + wined3d_stateblock_incref @249 + wined3d_swapchain_create @250 + wined3d_swapchain_decref @251 + wined3d_swapchain_get_back_buffer @252 + wined3d_swapchain_get_device @253 + wined3d_swapchain_get_display_mode @254 + wined3d_swapchain_get_front_buffer_data @255 + wined3d_swapchain_get_gamma_ramp @256 + wined3d_swapchain_get_parent @257 + wined3d_swapchain_get_desc @258 + wined3d_swapchain_get_raster_status @259 + wined3d_swapchain_incref @260 + wined3d_swapchain_present @261 + wined3d_swapchain_resize_buffers @262 + wined3d_swapchain_resize_target @263 + wined3d_swapchain_set_fullscreen @264 + wined3d_swapchain_set_gamma_ramp @265 + wined3d_swapchain_set_palette @266 + wined3d_swapchain_set_window @267 + wined3d_texture_add_dirty_region @268 + wined3d_texture_blt @269 + wined3d_texture_create @270 + wined3d_texture_decref @271 + wined3d_texture_from_resource @272 + wined3d_texture_get_dc @273 + wined3d_texture_get_level_count @274 + wined3d_texture_get_lod @275 + wined3d_texture_get_overlay_position @276 + wined3d_texture_get_parent @277 + wined3d_texture_get_pitch @278 + wined3d_texture_get_resource @279 + wined3d_texture_get_sub_resource_desc @280 + wined3d_texture_get_sub_resource_parent @281 + wined3d_texture_incref @282 + wined3d_texture_release_dc @283 + wined3d_texture_set_color_key @284 + wined3d_texture_set_lod @285 + wined3d_texture_set_overlay_position @286 + wined3d_texture_set_sub_resource_parent @287 + wined3d_texture_update_desc @288 + wined3d_texture_update_overlay @289 + wined3d_unordered_access_view_create @290 + wined3d_unordered_access_view_decref @291 + wined3d_unordered_access_view_get_parent @292 + wined3d_unordered_access_view_incref @293 + wined3d_vertex_declaration_create @294 + wined3d_vertex_declaration_create_from_fvf @295 + wined3d_vertex_declaration_decref @296 + wined3d_vertex_declaration_get_parent @297 + wined3d_vertex_declaration_incref @298 + wined3d_extract_shader_input_signature_from_dxbc @299 + wined3d_dxt1_decode @300 + wined3d_dxt1_encode @301 + wined3d_dxt3_decode @302 + wined3d_dxt3_encode @303 + wined3d_dxt5_decode @304 + wined3d_dxt5_encode @305 diff --git a/lib/wine/libwinevulkan.def b/lib/wine/libwinevulkan.def new file mode 100644 index 0000000..0471248 --- /dev/null +++ b/lib/wine/libwinevulkan.def @@ -0,0 +1,202 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/winevulkan/winevulkan.spec; do not edit! + +LIBRARY winevulkan.dll + +EXPORTS + vk_icdGetInstanceProcAddr@8=wine_vk_icdGetInstanceProcAddr @1 PRIVATE + vk_icdNegotiateLoaderICDInterfaceVersion@4=wine_vk_icdNegotiateLoaderICDInterfaceVersion @2 PRIVATE + native_vkGetInstanceProcAddrWINE @3 + __wine_get_native_VkDevice@4 @4 + __wine_get_native_VkInstance@4 @5 + __wine_get_native_VkPhysicalDevice@4 @6 + __wine_get_wrapped_VkPhysicalDevice@4 @7 + __wine_get_native_VkQueue@4 @8 + wine_vkAcquireNextImage2KHR@12 @9 PRIVATE + wine_vkAcquireNextImageKHR@40 @10 PRIVATE + wine_vkAllocateCommandBuffers@12 @11 PRIVATE + wine_vkAllocateDescriptorSets@12 @12 PRIVATE + wine_vkAllocateMemory@16 @13 PRIVATE + wine_vkBeginCommandBuffer@8 @14 PRIVATE + wine_vkBindBufferMemory@28 @15 PRIVATE + wine_vkBindBufferMemory2@12 @16 PRIVATE + wine_vkBindImageMemory@28 @17 PRIVATE + wine_vkBindImageMemory2@12 @18 PRIVATE + wine_vkCmdBeginQuery@20 @19 PRIVATE + wine_vkCmdBeginRenderPass@12 @20 PRIVATE + wine_vkCmdBindDescriptorSets@36 @21 PRIVATE + wine_vkCmdBindIndexBuffer@24 @22 PRIVATE + wine_vkCmdBindPipeline@16 @23 PRIVATE + wine_vkCmdBindVertexBuffers@20 @24 PRIVATE + wine_vkCmdBlitImage@40 @25 PRIVATE + wine_vkCmdClearAttachments@20 @26 PRIVATE + wine_vkCmdClearColorImage@28 @27 PRIVATE + wine_vkCmdClearDepthStencilImage@28 @28 PRIVATE + wine_vkCmdCopyBuffer@28 @29 PRIVATE + wine_vkCmdCopyBufferToImage@32 @30 PRIVATE + wine_vkCmdCopyImage@36 @31 PRIVATE + wine_vkCmdCopyImageToBuffer@32 @32 PRIVATE + wine_vkCmdCopyQueryPoolResults@48 @33 PRIVATE + wine_vkCmdDispatch@16 @34 PRIVATE + wine_vkCmdDispatchBase@28 @35 PRIVATE + wine_vkCmdDispatchIndirect@20 @36 PRIVATE + wine_vkCmdDraw@20 @37 PRIVATE + wine_vkCmdDrawIndexed@24 @38 PRIVATE + wine_vkCmdDrawIndexedIndirect@28 @39 PRIVATE + wine_vkCmdDrawIndirect@28 @40 PRIVATE + wine_vkCmdEndQuery@16 @41 PRIVATE + wine_vkCmdEndRenderPass@4 @42 PRIVATE + wine_vkCmdExecuteCommands@12 @43 PRIVATE + wine_vkCmdFillBuffer@32 @44 PRIVATE + wine_vkCmdNextSubpass@8 @45 PRIVATE + wine_vkCmdPipelineBarrier@40 @46 PRIVATE + wine_vkCmdPushConstants@28 @47 PRIVATE + wine_vkCmdResetEvent@16 @48 PRIVATE + wine_vkCmdResetQueryPool@20 @49 PRIVATE + wine_vkCmdResolveImage@36 @50 PRIVATE + wine_vkCmdSetBlendConstants@8 @51 PRIVATE + wine_vkCmdSetDepthBias@16 @52 PRIVATE + wine_vkCmdSetDepthBounds@12 @53 PRIVATE + wine_vkCmdSetDeviceMask@8 @54 PRIVATE + wine_vkCmdSetEvent@16 @55 PRIVATE + wine_vkCmdSetLineWidth@8 @56 PRIVATE + wine_vkCmdSetScissor@16 @57 PRIVATE + wine_vkCmdSetStencilCompareMask@12 @58 PRIVATE + wine_vkCmdSetStencilReference@12 @59 PRIVATE + wine_vkCmdSetStencilWriteMask@12 @60 PRIVATE + wine_vkCmdSetViewport@16 @61 PRIVATE + wine_vkCmdUpdateBuffer@32 @62 PRIVATE + wine_vkCmdWaitEvents@44 @63 PRIVATE + wine_vkCmdWriteTimestamp@20 @64 PRIVATE + wine_vkCreateBuffer@16 @65 PRIVATE + wine_vkCreateBufferView@16 @66 PRIVATE + wine_vkCreateCommandPool@16 @67 PRIVATE + wine_vkCreateComputePipelines@28 @68 PRIVATE + wine_vkCreateDescriptorPool@16 @69 PRIVATE + wine_vkCreateDescriptorSetLayout@16 @70 PRIVATE + wine_vkCreateDescriptorUpdateTemplate@16 @71 PRIVATE + wine_vkCreateDevice@16 @72 PRIVATE + vkCreateDisplayModeKHR@0 @73 PRIVATE + vkCreateDisplayPlaneSurfaceKHR@0 @74 PRIVATE + wine_vkCreateEvent@16 @75 PRIVATE + wine_vkCreateFence@16 @76 PRIVATE + wine_vkCreateFramebuffer@16 @77 PRIVATE + wine_vkCreateGraphicsPipelines@28 @78 PRIVATE + wine_vkCreateImage@16 @79 PRIVATE + wine_vkCreateImageView@16 @80 PRIVATE + wine_vkCreateInstance@12 @81 PRIVATE + wine_vkCreatePipelineCache@16 @82 PRIVATE + wine_vkCreatePipelineLayout@16 @83 PRIVATE + wine_vkCreateQueryPool@16 @84 PRIVATE + wine_vkCreateRenderPass@16 @85 PRIVATE + wine_vkCreateSampler@16 @86 PRIVATE + wine_vkCreateSamplerYcbcrConversion@16 @87 PRIVATE + wine_vkCreateSemaphore@16 @88 PRIVATE + wine_vkCreateShaderModule@16 @89 PRIVATE + vkCreateSharedSwapchainsKHR@0 @90 PRIVATE + wine_vkCreateSwapchainKHR@16 @91 PRIVATE + wine_vkCreateWin32SurfaceKHR@16 @92 PRIVATE + wine_vkDestroyBuffer@16 @93 PRIVATE + wine_vkDestroyBufferView@16 @94 PRIVATE + wine_vkDestroyCommandPool@16 @95 PRIVATE + wine_vkDestroyDescriptorPool@16 @96 PRIVATE + wine_vkDestroyDescriptorSetLayout@16 @97 PRIVATE + wine_vkDestroyDescriptorUpdateTemplate@16 @98 PRIVATE + wine_vkDestroyDevice@8 @99 PRIVATE + wine_vkDestroyEvent@16 @100 PRIVATE + wine_vkDestroyFence@16 @101 PRIVATE + wine_vkDestroyFramebuffer@16 @102 PRIVATE + wine_vkDestroyImage@16 @103 PRIVATE + wine_vkDestroyImageView@16 @104 PRIVATE + wine_vkDestroyInstance@8 @105 PRIVATE + wine_vkDestroyPipeline@16 @106 PRIVATE + wine_vkDestroyPipelineCache@16 @107 PRIVATE + wine_vkDestroyPipelineLayout@16 @108 PRIVATE + wine_vkDestroyQueryPool@16 @109 PRIVATE + wine_vkDestroyRenderPass@16 @110 PRIVATE + wine_vkDestroySampler@16 @111 PRIVATE + wine_vkDestroySamplerYcbcrConversion@16 @112 PRIVATE + wine_vkDestroySemaphore@16 @113 PRIVATE + wine_vkDestroyShaderModule@16 @114 PRIVATE + wine_vkDestroySurfaceKHR@16 @115 PRIVATE + wine_vkDestroySwapchainKHR@16 @116 PRIVATE + wine_vkDeviceWaitIdle@4 @117 PRIVATE + wine_vkEndCommandBuffer@4 @118 PRIVATE + wine_vkEnumerateDeviceExtensionProperties@16 @119 PRIVATE + wine_vkEnumerateDeviceLayerProperties@12 @120 PRIVATE + wine_vkEnumerateInstanceExtensionProperties@12 @121 PRIVATE + wine_vkEnumerateInstanceLayerProperties@8 @122 PRIVATE + wine_vkEnumerateInstanceVersion@4 @123 PRIVATE + wine_vkEnumeratePhysicalDeviceGroups@12 @124 PRIVATE + wine_vkEnumeratePhysicalDevices@12 @125 PRIVATE + wine_vkFlushMappedMemoryRanges@12 @126 PRIVATE + wine_vkFreeCommandBuffers@20 @127 PRIVATE + wine_vkFreeDescriptorSets@20 @128 PRIVATE + wine_vkFreeMemory@16 @129 PRIVATE + wine_vkGetBufferMemoryRequirements@16 @130 PRIVATE + wine_vkGetBufferMemoryRequirements2@12 @131 PRIVATE + wine_vkGetDescriptorSetLayoutSupport@12 @132 PRIVATE + wine_vkGetDeviceGroupPeerMemoryFeatures@20 @133 PRIVATE + wine_vkGetDeviceGroupPresentCapabilitiesKHR@8 @134 PRIVATE + wine_vkGetDeviceGroupSurfacePresentModesKHR@16 @135 PRIVATE + wine_vkGetDeviceMemoryCommitment@16 @136 PRIVATE + wine_vkGetDeviceProcAddr@8 @137 PRIVATE + wine_vkGetDeviceQueue@16 @138 PRIVATE + wine_vkGetDeviceQueue2@12 @139 PRIVATE + vkGetDisplayModePropertiesKHR@0 @140 PRIVATE + vkGetDisplayPlaneCapabilitiesKHR@0 @141 PRIVATE + vkGetDisplayPlaneSupportedDisplaysKHR@0 @142 PRIVATE + wine_vkGetEventStatus@12 @143 PRIVATE + wine_vkGetFenceStatus@12 @144 PRIVATE + wine_vkGetImageMemoryRequirements@16 @145 PRIVATE + wine_vkGetImageMemoryRequirements2@12 @146 PRIVATE + wine_vkGetImageSparseMemoryRequirements@20 @147 PRIVATE + wine_vkGetImageSparseMemoryRequirements2@16 @148 PRIVATE + wine_vkGetImageSubresourceLayout@20 @149 PRIVATE + wine_vkGetInstanceProcAddr@8 @150 PRIVATE + vkGetPhysicalDeviceDisplayPlanePropertiesKHR@0 @151 PRIVATE + vkGetPhysicalDeviceDisplayPropertiesKHR@0 @152 PRIVATE + wine_vkGetPhysicalDeviceExternalBufferProperties@12 @153 PRIVATE + wine_vkGetPhysicalDeviceExternalFenceProperties@12 @154 PRIVATE + wine_vkGetPhysicalDeviceExternalSemaphoreProperties@12 @155 PRIVATE + wine_vkGetPhysicalDeviceFeatures@8 @156 PRIVATE + wine_vkGetPhysicalDeviceFeatures2@8 @157 PRIVATE + wine_vkGetPhysicalDeviceFormatProperties@12 @158 PRIVATE + wine_vkGetPhysicalDeviceFormatProperties2@12 @159 PRIVATE + wine_vkGetPhysicalDeviceImageFormatProperties@28 @160 PRIVATE + wine_vkGetPhysicalDeviceImageFormatProperties2@12 @161 PRIVATE + wine_vkGetPhysicalDeviceMemoryProperties@8 @162 PRIVATE + wine_vkGetPhysicalDeviceMemoryProperties2@8 @163 PRIVATE + wine_vkGetPhysicalDevicePresentRectanglesKHR@20 @164 PRIVATE + wine_vkGetPhysicalDeviceProperties@8 @165 PRIVATE + wine_vkGetPhysicalDeviceProperties2@8 @166 PRIVATE + wine_vkGetPhysicalDeviceQueueFamilyProperties@12 @167 PRIVATE + wine_vkGetPhysicalDeviceQueueFamilyProperties2@12 @168 PRIVATE + wine_vkGetPhysicalDeviceSparseImageFormatProperties@32 @169 PRIVATE + wine_vkGetPhysicalDeviceSparseImageFormatProperties2@16 @170 PRIVATE + wine_vkGetPhysicalDeviceSurfaceCapabilitiesKHR@16 @171 PRIVATE + wine_vkGetPhysicalDeviceSurfaceFormatsKHR@20 @172 PRIVATE + wine_vkGetPhysicalDeviceSurfacePresentModesKHR@20 @173 PRIVATE + wine_vkGetPhysicalDeviceSurfaceSupportKHR@20 @174 PRIVATE + wine_vkGetPhysicalDeviceWin32PresentationSupportKHR@8 @175 PRIVATE + wine_vkGetPipelineCacheData@20 @176 PRIVATE + wine_vkGetQueryPoolResults@40 @177 PRIVATE + wine_vkGetRenderAreaGranularity@16 @178 PRIVATE + wine_vkGetSwapchainImagesKHR@20 @179 PRIVATE + wine_vkInvalidateMappedMemoryRanges@12 @180 PRIVATE + wine_vkMapMemory@36 @181 PRIVATE + wine_vkMergePipelineCaches@20 @182 PRIVATE + wine_vkQueueBindSparse@20 @183 PRIVATE + wine_vkQueuePresentKHR@8 @184 PRIVATE + wine_vkQueueSubmit@20 @185 PRIVATE + wine_vkQueueWaitIdle@4 @186 PRIVATE + wine_vkResetCommandBuffer@8 @187 PRIVATE + wine_vkResetCommandPool@16 @188 PRIVATE + wine_vkResetDescriptorPool@16 @189 PRIVATE + wine_vkResetEvent@12 @190 PRIVATE + wine_vkResetFences@12 @191 PRIVATE + wine_vkSetEvent@12 @192 PRIVATE + wine_vkTrimCommandPool@16 @193 PRIVATE + wine_vkUnmapMemory@12 @194 PRIVATE + wine_vkUpdateDescriptorSetWithTemplate@24 @195 PRIVATE + wine_vkUpdateDescriptorSets@20 @196 PRIVATE + wine_vkWaitForFences@24 @197 PRIVATE diff --git a/lib/wine/libwinhttp.def b/lib/wine/libwinhttp.def new file mode 100644 index 0000000..7888fc6 --- /dev/null +++ b/lib/wine/libwinhttp.def @@ -0,0 +1,36 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/winhttp/winhttp.spec; do not edit! + +LIBRARY winhttp.dll + +EXPORTS + DllCanUnloadNow@0 @1 PRIVATE + DllGetClassObject@12 @2 PRIVATE + DllRegisterServer@0 @3 PRIVATE + DllUnregisterServer@0 @4 PRIVATE + WinHttpAddRequestHeaders@16 @5 + WinHttpCheckPlatform@0 @6 + WinHttpCloseHandle@4 @7 + WinHttpConnect@16 @8 + WinHttpCrackUrl@16 @9 + WinHttpCreateUrl@16 @10 + WinHttpDetectAutoProxyConfigUrl@8 @11 + WinHttpGetDefaultProxyConfiguration@4 @12 + WinHttpGetIEProxyConfigForCurrentUser@4 @13 + WinHttpGetProxyForUrl@16 @14 + WinHttpOpen@20 @15 + WinHttpOpenRequest@28 @16 + WinHttpQueryAuthSchemes@16 @17 + WinHttpQueryDataAvailable@8 @18 + WinHttpQueryHeaders@24 @19 + WinHttpQueryOption@16 @20 + WinHttpReadData@16 @21 + WinHttpReceiveResponse@8 @22 + WinHttpSendRequest@28 @23 + WinHttpSetCredentials@24 @24 + WinHttpSetDefaultProxyConfiguration@4 @25 + WinHttpSetOption@16 @26 + WinHttpSetStatusCallback@16 @27 + WinHttpSetTimeouts@20 @28 + WinHttpTimeFromSystemTime@8 @29 + WinHttpTimeToSystemTime@8 @30 + WinHttpWriteData@16 @31 diff --git a/lib/wine/libwininet.def b/lib/wine/libwininet.def new file mode 100644 index 0000000..a5a4daf --- /dev/null +++ b/lib/wine/libwininet.def @@ -0,0 +1,253 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/wininet/wininet.spec; do not edit! + +LIBRARY wininet.dll + +EXPORTS + DoConnectoidsExist@0 @101 NONAME PRIVATE + GetDiskInfoA@16 @102 NONAME + PerformOperationOverUrlCacheA@0 @103 NONAME PRIVATE + HttpCheckDavComplianceA@0 @104 NONAME PRIVATE + HttpCheckDavComplianceW@0 @105 NONAME PRIVATE + ImportCookieFileA@0 @108 NONAME PRIVATE + ExportCookieFileA@0 @109 NONAME PRIVATE + ImportCookieFileW@0 @110 NONAME PRIVATE + ExportCookieFileW@0 @111 NONAME PRIVATE + IsProfilesEnabled@0 @112 NONAME PRIVATE + IsDomainlegalCookieDomainA@0 @116 NONAME PRIVATE + IsDomainLegalCookieDomainW@8 @117 NONAME + FindP3PPolicySymbol@0 @118 NONAME PRIVATE + MapResourceToPolicy@0 @120 NONAME PRIVATE + GetP3PPolicy@0 @121 NONAME PRIVATE + FreeP3PObject@0 @122 NONAME PRIVATE + GetP3PRequestStatus@0 @123 NONAME PRIVATE + CommitUrlCacheEntryA@44 @106 + CommitUrlCacheEntryW@44 @107 + CreateMD5SSOHash@16 @113 + CreateUrlCacheContainerA@32 @114 + CreateUrlCacheContainerW@32 @115 + CreateUrlCacheEntryA@20 @119 + CreateUrlCacheEntryW@20 @124 + CreateUrlCacheGroup@8 @125 + DeleteIE3Cache@16 @126 + DeleteUrlCacheContainerA@8 @127 + DeleteUrlCacheContainerW@8 @128 + DeleteUrlCacheEntry@4=DeleteUrlCacheEntryA @129 + DeleteUrlCacheEntryA@4 @130 + DeleteUrlCacheEntryW@4 @131 + DeleteUrlCacheGroup@16 @132 + DeleteWpadCacheForNetworks@4 @133 + DetectAutoProxyUrl@12 @134 + DllInstall@8 @135 PRIVATE + FindCloseUrlCache@4 @136 + FindFirstUrlCacheContainerA@16 @137 + FindFirstUrlCacheContainerW@16 @138 + FindFirstUrlCacheEntryA@12 @139 + FindFirstUrlCacheEntryExA@40 @140 + FindFirstUrlCacheEntryExW@40 @141 + FindFirstUrlCacheEntryW@12 @142 + FindFirstUrlCacheGroup@24 @143 + FindNextUrlCacheContainerA@12 @144 + FindNextUrlCacheContainerW@12 @145 + FindNextUrlCacheEntryA@12 @146 + FindNextUrlCacheEntryExA@24 @147 + FindNextUrlCacheEntryExW@24 @148 + FindNextUrlCacheEntryW@12 @149 + FindNextUrlCacheGroup@12 @150 + ForceNexusLookup@0 @151 PRIVATE + ForceNexusLookupExW@0 @152 PRIVATE + FreeUrlCacheSpaceA@12 @153 + FreeUrlCacheSpaceW@12 @154 + FtpCommandA@24 @155 + FtpCommandW@24 @156 + FtpCreateDirectoryA@8 @157 + FtpCreateDirectoryW@8 @158 + FtpDeleteFileA@8 @159 + FtpDeleteFileW@8 @160 + FtpFindFirstFileA@20 @161 + FtpFindFirstFileW@20 @162 + FtpGetCurrentDirectoryA@12 @163 + FtpGetCurrentDirectoryW@12 @164 + FtpGetFileA@28 @165 + FtpGetFileEx@0 @166 PRIVATE + FtpGetFileSize@8 @167 + FtpGetFileW@28 @168 + FtpOpenFileA@20 @169 + FtpOpenFileW@20 @170 + FtpPutFileA@20 @171 + FtpPutFileEx@0 @172 PRIVATE + FtpPutFileW@20 @173 + FtpRemoveDirectoryA@8 @174 + FtpRemoveDirectoryW@8 @175 + FtpRenameFileA@12 @176 + FtpRenameFileW@12 @177 + FtpSetCurrentDirectoryA@8 @178 + FtpSetCurrentDirectoryW@8 @179 + GetUrlCacheConfigInfoA@12 @180 + GetUrlCacheConfigInfoW@12 @181 + GetUrlCacheEntryInfoA@12 @182 + GetUrlCacheEntryInfoExA@28 @183 + GetUrlCacheEntryInfoExW@28 @184 + GetUrlCacheEntryInfoW@12 @185 + GetUrlCacheGroupAttributeA@28 @186 + GetUrlCacheGroupAttributeW@28 @187 + GetUrlCacheHeaderData@0 @188 PRIVATE + GopherCreateLocatorA@28 @189 + GopherCreateLocatorW@28 @190 + GopherFindFirstFileA@24 @191 + GopherFindFirstFileW@24 @192 + GopherGetAttributeA@32 @193 + GopherGetAttributeW@32 @194 + GopherGetLocatorTypeA@8 @195 + GopherGetLocatorTypeW@8 @196 + GopherOpenFileA@20 @197 + GopherOpenFileW@20 @198 + HttpAddRequestHeadersA@16 @199 + HttpAddRequestHeadersW@16 @200 + HttpCheckDavCompliance@0 @201 PRIVATE + HttpEndRequestA@16 @202 + HttpEndRequestW@16 @203 + HttpOpenRequestA@32 @204 + HttpOpenRequestW@32 @205 + HttpQueryInfoA@20 @206 + HttpQueryInfoW@20 @207 + HttpSendRequestA@20 @208 + HttpSendRequestExA@20 @209 + HttpSendRequestExW@20 @210 + HttpSendRequestW@20 @211 + IncrementUrlCacheHeaderData@8 @212 + InternetAlgIdToStringA@0 @213 PRIVATE + InternetAlgIdToStringW@0 @214 PRIVATE + InternetAttemptConnect@4 @215 + InternetAutodial@8 @216 + InternetAutodialCallback@0 @217 PRIVATE + InternetAutodialHangup@4 @218 + InternetCanonicalizeUrlA@16 @219 + InternetCanonicalizeUrlW@16 @220 + InternetCheckConnectionA@12 @221 + InternetCheckConnectionW@12 @222 + InternetClearAllPerSiteCookieDecisions@0 @223 + InternetCloseHandle@4 @224 + InternetCombineUrlA@20 @225 + InternetCombineUrlW@20 @226 + InternetConfirmZoneCrossing@16=InternetConfirmZoneCrossingA @227 + InternetConfirmZoneCrossingA@16 @228 + InternetConfirmZoneCrossingW@16 @229 + InternetConnectA@32 @230 + InternetConnectW@32 @231 + InternetCrackUrlA@16 @232 + InternetCrackUrlW@16 @233 + InternetCreateUrlA@16 @234 + InternetCreateUrlW@16 @235 + InternetDebugGetLocalTime@0 @236 PRIVATE + InternetDial@20=InternetDialA @237 + InternetDialA@20 @238 + InternetDialW@20 @239 + InternetEnumPerSiteCookieDecisionA@16 @240 + InternetEnumPerSiteCookieDecisionW@16 @241 + InternetErrorDlg@20 @242 + InternetFindNextFileA@8 @243 + InternetFindNextFileW@8 @244 + InternetFortezzaCommand@0 @245 PRIVATE + InternetGetCertByURL@0 @246 PRIVATE + InternetGetCertByURLA@0 @247 PRIVATE + InternetGetConnectedState@8 @248 + InternetGetConnectedStateEx@16=InternetGetConnectedStateExA @249 + InternetGetConnectedStateExA@16 @250 + InternetGetConnectedStateExW@16 @251 + InternetGetCookieA@16 @252 + InternetGetCookieExA@24 @253 + InternetGetCookieExW@24 @254 + InternetGetCookieW@16 @255 + InternetGetLastResponseInfoA@12 @256 + InternetGetLastResponseInfoW@12 @257 + InternetGetPerSiteCookieDecisionA@8 @258 + InternetGetPerSiteCookieDecisionW@8 @259 + InternetGetSecurityInfoByURL@12=InternetGetSecurityInfoByURLA @260 + InternetGetSecurityInfoByURLA@12 @261 + InternetGetSecurityInfoByURLW@12 @262 + InternetGoOnline@12=InternetGoOnlineA @263 + InternetGoOnlineA@12 @264 + InternetGoOnlineW@12 @265 + InternetHangUp@8 @266 + InternetInitializeAutoProxyDll@4 @267 + InternetLockRequestFile@8 @268 + InternetOpenA@20 @269 + InternetOpenServerPushParse@0 @270 PRIVATE + InternetOpenUrlA@24 @271 + InternetOpenUrlW@24 @272 + InternetOpenW@20 @273 + InternetQueryDataAvailable@16 @274 + InternetQueryFortezzaStatus@8 @275 + InternetQueryOptionA@16 @276 + InternetQueryOptionW@16 @277 + InternetReadFile@16 @278 + InternetReadFileExA@16 @279 + InternetReadFileExW@16 @280 + InternetSecurityProtocolToStringA@0 @281 PRIVATE + InternetSecurityProtocolToStringW@0 @282 PRIVATE + InternetServerPushParse@0 @283 PRIVATE + InternetSetCookieA@12 @284 + InternetSetCookieExA@20 @285 + InternetSetCookieExW@20 @286 + InternetSetCookieW@12 @287 + InternetSetDialState@0 @288 PRIVATE + InternetSetDialStateA@0 @289 PRIVATE + InternetSetDialStateW@0 @290 PRIVATE + InternetSetFilePointer@20 @291 + InternetSetOptionA@16 @292 + InternetSetOptionExA@20 @293 + InternetSetOptionExW@20 @294 + InternetSetOptionW@16 @295 + InternetSetPerSiteCookieDecisionA@8 @296 + InternetSetPerSiteCookieDecisionW@8 @297 + InternetSetStatusCallback@8=InternetSetStatusCallbackA @298 + InternetSetStatusCallbackA@8 @299 + InternetSetStatusCallbackW@8 @300 + InternetShowSecurityInfoByURL@8=InternetShowSecurityInfoByURLA @301 + InternetShowSecurityInfoByURLA@8 @302 + InternetShowSecurityInfoByURLW@8 @303 + InternetTimeFromSystemTime@16=InternetTimeFromSystemTimeA @304 + InternetTimeFromSystemTimeA@16 @305 + InternetTimeFromSystemTimeW@16 @306 + InternetTimeToSystemTime@12=InternetTimeToSystemTimeA @307 + InternetTimeToSystemTimeA@12 @308 + InternetTimeToSystemTimeW@12 @309 + InternetUnlockRequestFile@4 @310 + InternetWriteFile@16 @311 + InternetWriteFileExA@0 @312 PRIVATE + InternetWriteFileExW@0 @313 PRIVATE + IsHostInProxyBypassList@12 @314 + IsUrlCacheEntryExpiredA@12 @315 + IsUrlCacheEntryExpiredW@12 @316 + LoadUrlCacheContent@0 @317 + ParseX509EncodedCertificateForListBoxEntry@16 @318 + PrivacyGetZonePreferenceW@20 @319 + PrivacySetZonePreferenceW@16 @320 + ReadUrlCacheEntryStream@20 @321 + RegisterUrlCacheNotification@24 @322 + ResumeSuspendedDownload@8 @323 + RetrieveUrlCacheEntryFileA@16 @324 + RetrieveUrlCacheEntryFileW@16 @325 + RetrieveUrlCacheEntryStreamA@20 @326 + RetrieveUrlCacheEntryStreamW@20 @327 + RunOnceUrlCache@16 @328 + SetUrlCacheConfigInfoA@8 @329 + SetUrlCacheConfigInfoW@8 @330 + SetUrlCacheEntryGroup@28=SetUrlCacheEntryGroupA @331 + SetUrlCacheEntryGroupA@28 @332 + SetUrlCacheEntryGroupW@28 @333 + SetUrlCacheEntryInfoA@12 @334 + SetUrlCacheEntryInfoW@12 @335 + SetUrlCacheGroupAttributeA@24 @336 + SetUrlCacheGroupAttributeW@24 @337 + SetUrlCacheHeaderData@0 @338 PRIVATE + ShowCertificate@0 @339 PRIVATE + ShowClientAuthCerts@4 @340 + ShowSecurityInfo@0 @341 PRIVATE + ShowX509EncodedCertificate@12 @342 + UnlockUrlCacheEntryFile@8=UnlockUrlCacheEntryFileA @343 + UnlockUrlCacheEntryFileA@8 @344 + UnlockUrlCacheEntryFileW@8 @345 + UnlockUrlCacheEntryStream@8 @346 + UpdateUrlCacheContentPath@0 @347 PRIVATE + UrlZonesDetach@0 @348 PRIVATE diff --git a/lib/wine/libwinmm.def b/lib/wine/libwinmm.def new file mode 100644 index 0000000..be41330 --- /dev/null +++ b/lib/wine/libwinmm.def @@ -0,0 +1,191 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/winmm/winmm.spec; do not edit! + +LIBRARY winmm.dll + +EXPORTS + CloseDriver@12 @5 + DefDriverProc@20 @6 + DriverCallback@28 @7 + DrvClose@12=CloseDriver @8 + DrvDefDriverProc@20=DefDriverProc @9 + DrvGetModuleHandle@4=GetDriverModuleHandle @10 + DrvOpen@12=OpenDriver @11 + DrvOpenA@12=OpenDriverA @12 + DrvSendMessage@16=SendDriverMessage @13 + GetDriverFlags@4 @14 + GetDriverModuleHandle@4 @15 + OpenDriver@12 @16 + OpenDriverA@12 @17 + PlaySound@12=PlaySoundA @18 + PlaySoundA@12 @19 + PlaySoundW@12 @20 + SendDriverMessage@16 @21 + auxGetDevCapsA@12 @22 + auxGetDevCapsW@12 @23 + auxGetNumDevs@0 @24 + auxGetVolume@8 @25 + auxOutMessage@16 @26 + auxSetVolume@8 @27 + joyConfigChanged@4 @28 + joyGetDevCapsA@12 @29 + joyGetDevCapsW@12 @30 + joyGetNumDevs@0 @31 + joyGetPos@8 @32 + joyGetPosEx@8 @33 + joyGetThreshold@8 @34 + joyReleaseCapture@4 @35 + joySetCapture@16 @36 + joySetThreshold@8 @37 + mciDriverNotify@12 @38 + mciDriverYield@4 @39 + mciExecute@4 @40 + mciFreeCommandResource@4 @41 + mciGetCreatorTask@4 @42 + mciGetDeviceIDA@4 @43 + mciGetDeviceIDFromElementIDA@8 @44 + mciGetDeviceIDFromElementIDW@8 @45 + mciGetDeviceIDW@4 @46 + mciGetDriverData@4 @47 + mciGetErrorStringA@12 @48 + mciGetErrorStringW@12 @49 + mciGetYieldProc@8 @50 + mciLoadCommandResource@12 @51 + mciSendCommandA@16 @52 + mciSendCommandW@16 @53 + mciSendStringA@16 @54 + mciSendStringW@16 @55 + mciSetDriverData@8 @56 + mciSetYieldProc@12 @57 + midiConnect@12 @58 + midiDisconnect@12 @59 + midiInAddBuffer@12 @60 + midiInClose@4 @61 + midiInGetDevCapsA@12 @62 + midiInGetDevCapsW@12 @63 + midiInGetErrorTextA@12=midiOutGetErrorTextA @64 + midiInGetErrorTextW@12=midiOutGetErrorTextW @65 + midiInGetID@8 @66 + midiInGetNumDevs@0 @67 + midiInMessage@16 @68 + midiInOpen@20 @69 + midiInPrepareHeader@12 @70 + midiInReset@4 @71 + midiInStart@4 @72 + midiInStop@4 @73 + midiInUnprepareHeader@12 @74 + midiOutCacheDrumPatches@16 @75 + midiOutCachePatches@16 @76 + midiOutClose@4 @77 + midiOutGetDevCapsA@12 @78 + midiOutGetDevCapsW@12 @79 + midiOutGetErrorTextA@12 @80 + midiOutGetErrorTextW@12 @81 + midiOutGetID@8 @82 + midiOutGetNumDevs@0 @83 + midiOutGetVolume@8 @84 + midiOutLongMsg@12 @85 + midiOutMessage@16 @86 + midiOutOpen@20 @87 + midiOutPrepareHeader@12 @88 + midiOutReset@4 @89 + midiOutSetVolume@8 @90 + midiOutShortMsg@8 @91 + midiOutUnprepareHeader@12 @92 + midiStreamClose@4 @93 + midiStreamOpen@24 @94 + midiStreamOut@12 @95 + midiStreamPause@4 @96 + midiStreamPosition@12 @97 + midiStreamProperty@12 @98 + midiStreamRestart@4 @99 + midiStreamStop@4 @100 + mixerClose@4 @101 + mixerGetControlDetailsA@12 @102 + mixerGetControlDetailsW@12 @103 + mixerGetDevCapsA@12 @104 + mixerGetDevCapsW@12 @105 + mixerGetID@12 @106 + mixerGetLineControlsA@12 @107 + mixerGetLineControlsW@12 @108 + mixerGetLineInfoA@12 @109 + mixerGetLineInfoW@12 @110 + mixerGetNumDevs@0 @111 + mixerMessage@16 @112 + mixerOpen@20 @113 + mixerSetControlDetails@12 @114 + mmGetCurrentTask@0 @115 + mmTaskBlock@4 @116 + mmTaskCreate@12 @117 + mmTaskSignal@4 @118 + mmTaskYield@0 @119 + mmioAdvance@12 @120 + mmioAscend@12 @121 + mmioClose@8 @122 + mmioCreateChunk@12 @123 + mmioDescend@16 @124 + mmioFlush@8 @125 + mmioGetInfo@12 @126 + mmioInstallIOProc16@0 @127 PRIVATE + mmioInstallIOProcA@12 @128 + mmioInstallIOProcW@12 @129 + mmioOpenA@12 @130 + mmioOpenW@12 @131 + mmioRead@12 @132 + mmioRenameA@16 @133 + mmioRenameW@16 @134 + mmioSeek@12 @135 + mmioSendMessage@16 @136 + mmioSetBuffer@16 @137 + mmioSetInfo@12 @138 + mmioStringToFOURCCA@8 @139 + mmioStringToFOURCCW@8 @140 + mmioWrite@12 @141 + mmsystemGetVersion@0 @142 + sndPlaySoundA@8 @143 + sndPlaySoundW@8 @144 + timeBeginPeriod@4 @145 + timeEndPeriod@4 @146 + timeGetDevCaps@8 @147 + timeGetSystemTime@8 @148 + timeGetTime@0=kernel32.GetTickCount @149 + timeKillEvent@4 @150 + timeSetEvent@20 @151 + waveInAddBuffer@12 @152 + waveInClose@4 @153 + waveInGetDevCapsA@12 @154 + waveInGetDevCapsW@12 @155 + waveInGetErrorTextA@12=waveOutGetErrorTextA @156 + waveInGetErrorTextW@12=waveOutGetErrorTextW @157 + waveInGetID@8 @158 + waveInGetNumDevs@0 @159 + waveInGetPosition@12 @160 + waveInMessage@16 @161 + waveInOpen@24 @162 + waveInPrepareHeader@12 @163 + waveInReset@4 @164 + waveInStart@4 @165 + waveInStop@4 @166 + waveInUnprepareHeader@12 @167 + waveOutBreakLoop@4 @168 + waveOutClose@4 @169 + waveOutGetDevCapsA@12 @170 + waveOutGetDevCapsW@12 @171 + waveOutGetErrorTextA@12 @172 + waveOutGetErrorTextW@12 @173 + waveOutGetID@8 @174 + waveOutGetNumDevs@0 @175 + waveOutGetPitch@8 @176 + waveOutGetPlaybackRate@8 @177 + waveOutGetPosition@12 @178 + waveOutGetVolume@8 @179 + waveOutMessage@16 @180 + waveOutOpen@24 @181 + waveOutPause@4 @182 + waveOutPrepareHeader@12 @183 + waveOutReset@4 @184 + waveOutRestart@4 @185 + waveOutSetPitch@8 @186 + waveOutSetPlaybackRate@8 @187 + waveOutSetVolume@8 @188 + waveOutUnprepareHeader@12 @189 + waveOutWrite@12 @190 diff --git a/lib/wine/libwinnls32.def b/lib/wine/libwinnls32.def new file mode 100644 index 0000000..01ddb3a --- /dev/null +++ b/lib/wine/libwinnls32.def @@ -0,0 +1,12 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/winnls32/winnls32.spec; do not edit! + +LIBRARY winnls32.dll + +EXPORTS + WINNLS32EnableIME@8 @1 + WINNLS32GetEnableStatus@4 @2 + WINNLS32GetIMEHotKey@0 @3 PRIVATE + IMP32GetIME@0 @21 PRIVATE + IMP32QueryIME@0 @22 PRIVATE + IMP32SetIME@0 @23 PRIVATE + IME32SendIMEMessageEx@0 @41 PRIVATE diff --git a/lib/wine/libwinscard.def b/lib/wine/libwinscard.def new file mode 100644 index 0000000..b3c19b2 --- /dev/null +++ b/lib/wine/libwinscard.def @@ -0,0 +1,68 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/winscard/winscard.spec; do not edit! + +LIBRARY winscard.dll + +EXPORTS + ClassInstall32@0 @1 PRIVATE + SCardAccessNewReaderEvent@0 @2 PRIVATE + SCardReleaseAllEvents@0 @3 PRIVATE + SCardReleaseNewReaderEvent@0 @4 PRIVATE + SCardAccessStartedEvent@0 @5 + SCardAddReaderToGroupA@12 @6 + SCardAddReaderToGroupW@12 @7 + SCardBeginTransaction@0 @8 PRIVATE + SCardCancel@4 @9 + SCardConnectA@0 @10 PRIVATE + SCardConnectW@0 @11 PRIVATE + SCardControl@0 @12 PRIVATE + SCardDisconnect@0 @13 PRIVATE + SCardEndTransaction@0 @14 PRIVATE + SCardEstablishContext@16 @15 + SCardForgetCardTypeA@0 @16 PRIVATE + SCardForgetCardTypeW@0 @17 PRIVATE + SCardForgetReaderA@0 @18 PRIVATE + SCardForgetReaderGroupA@0 @19 PRIVATE + SCardForgetReaderGroupW@0 @20 PRIVATE + SCardForgetReaderW@0 @21 PRIVATE + SCardFreeMemory@0 @22 PRIVATE + SCardGetAttrib@0 @23 PRIVATE + SCardGetCardTypeProviderNameA@0 @24 PRIVATE + SCardGetCardTypeProviderNameW@0 @25 PRIVATE + SCardGetProviderIdA@0 @26 PRIVATE + SCardGetProviderIdW@0 @27 PRIVATE + SCardGetStatusChangeA@0 @28 PRIVATE + SCardGetStatusChangeW@0 @29 PRIVATE + SCardIntroduceCardTypeA@0 @30 PRIVATE + SCardIntroduceCardTypeW@0 @31 PRIVATE + SCardIntroduceReaderA@0 @32 PRIVATE + SCardIntroduceReaderGroupA@0 @33 PRIVATE + SCardIntroduceReaderGroupW@0 @34 PRIVATE + SCardIntroduceReaderW@0 @35 PRIVATE + SCardIsValidContext@4 @36 + SCardListCardsA@24 @37 + SCardListCardsW@0 @38 PRIVATE + SCardListInterfacesA@0 @39 PRIVATE + SCardListInterfacesW@0 @40 PRIVATE + SCardListReaderGroupsA@0 @41 PRIVATE + SCardListReaderGroupsW@0 @42 PRIVATE + SCardListReadersA@16 @43 + SCardListReadersW@16 @44 + SCardLocateCardsA@0 @45 PRIVATE + SCardLocateCardsByATRA@0 @46 PRIVATE + SCardLocateCardsByATRW@0 @47 PRIVATE + SCardLocateCardsW@0 @48 PRIVATE + SCardReconnect@0 @49 PRIVATE + SCardReleaseContext@4 @50 + SCardReleaseStartedEvent@0 @51 + SCardRemoveReaderFromGroupA@0 @52 PRIVATE + SCardRemoveReaderFromGroupW@0 @53 PRIVATE + SCardSetAttrib@0 @54 PRIVATE + SCardSetCardTypeProviderNameA@0 @55 PRIVATE + SCardSetCardTypeProviderNameW@0 @56 PRIVATE + SCardState@0 @57 PRIVATE + SCardStatusA@28 @58 + SCardStatusW@28 @59 + SCardTransmit@0 @60 PRIVATE + g_rgSCardRawPci @61 DATA + g_rgSCardT0Pci @62 DATA + g_rgSCardT1Pci @63 DATA diff --git a/lib/wine/libwinspool.def b/lib/wine/libwinspool.def new file mode 100644 index 0000000..3f4355e --- /dev/null +++ b/lib/wine/libwinspool.def @@ -0,0 +1,189 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/winspool.drv/winspool.drv.spec; do not edit! + +LIBRARY winspool.drv + +EXPORTS + EnumPrinterPropertySheets@0 @100 NONAME PRIVATE + ClusterSplOpen@0 @101 NONAME PRIVATE + ClusterSplClose@0 @102 NONAME PRIVATE + ClusterSplIsAlive@0 @103 NONAME PRIVATE + GetDefaultPrinterA@8 @201 + SetDefaultPrinterA@4 @202 + GetDefaultPrinterW@8 @203 + SetDefaultPrinterW@4 @204 + SplReadPrinter@0 @205 NONAME PRIVATE + AddPerMachineConnectionA@0 @206 NONAME PRIVATE + AddPerMachineConnectionW@0 @207 NONAME PRIVATE + DeletePerMachineConnectionA@0 @208 NONAME PRIVATE + DeletePerMachineConnectionW@0 @209 NONAME PRIVATE + EnumPerMachineConnectionsA@0 @210 NONAME PRIVATE + EnumPerMachineConnectionsW@0 @211 NONAME PRIVATE + LoadPrinterDriver@0 @212 NONAME PRIVATE + RefCntLoadDriver@0 @213 NONAME PRIVATE + RefCntUnloadDriver@0 @214 NONAME PRIVATE + ForceUnloadDriver@0 @215 NONAME PRIVATE + PublishPrinterA@0 @216 NONAME PRIVATE + PublishPrinterW@0 @217 NONAME PRIVATE + CallCommonPropertySheetUI@0 @218 NONAME PRIVATE + PrintUIQueueCreate@0 @219 NONAME PRIVATE + PrintUIPrinterPropPages@0 @220 NONAME PRIVATE + PrintUIDocumentDefaults@0 @221 NONAME PRIVATE + SendRecvBidiData@0 @222 NONAME PRIVATE + RouterFreeBidiResponseContainer@0 @223 NONAME PRIVATE + ExternalConnectToLd64In32Server@0 @224 NONAME PRIVATE + PrintUIWebPnpEntry@0 @226 NONAME PRIVATE + PrintUIWebPnpPostEntry@0 @227 NONAME PRIVATE + PrintUICreateInstance@0 @228 NONAME PRIVATE + PrintUIDocumentPropertiesWrap@0 @229 NONAME PRIVATE + PrintUIPrinterSetup@0 @230 NONAME PRIVATE + PrintUIServerPropPages@0 @231 NONAME PRIVATE + AddDriverCatalog@0 @232 NONAME PRIVATE + ADVANCEDSETUPDIALOG@0 @104 PRIVATE + AbortPrinter@4 @105 + AddFormA@12 @106 + AddFormW@12 @107 + AddJobA@20 @108 + AddJobW@20 @109 + AddMonitorA@12 @110 + AddMonitorW@12 @111 + AddPortA@12 @112 + AddPortExA@16 @113 + AddPortExW@16 @114 + AddPortW@12 @115 + AddPrintProcessorA@16 @116 + AddPrintProcessorW@16 @117 + AddPrintProvidorA@12 @118 + AddPrintProvidorW@12 @119 + AddPrinterA@12 @120 + AddPrinterConnectionA@4 @121 + AddPrinterConnectionW@4 @122 + AddPrinterDriverA@12 @123 + AddPrinterDriverExA@16 @124 + AddPrinterDriverExW@16 @125 + AddPrinterDriverW@12 @126 + AddPrinterW@12 @127 + AdvancedDocumentPropertiesA@20 @128 + AdvancedDocumentPropertiesW@20 @129 + AdvancedSetupDialog@0 @130 PRIVATE + ClosePrinter@4 @131 + ConfigurePortA@12 @132 + ConfigurePortW@12 @133 + ConnectToPrinterDlg@8 @134 + ConvertAnsiDevModeToUnicodeDevMode@0 @135 PRIVATE + ConvertUnicodeDevModeToAnsiDevMode@0 @136 PRIVATE + CreatePrinterIC@0 @137 PRIVATE + DEVICECAPABILITIES@0 @138 PRIVATE + DEVICEMODE@0 @139 PRIVATE + DeleteFormA@8 @140 + DeleteFormW@8 @141 + DeleteMonitorA@12 @142 + DeleteMonitorW@12 @143 + DeletePortA@12 @144 + DeletePortW@12 @145 + DeletePrintProcessorA@12 @146 + DeletePrintProcessorW@12 @147 + DeletePrintProvidorA@12 @148 + DeletePrintProvidorW@12 @149 + DeletePrinter@4 @150 + DeletePrinterConnectionA@4 @151 + DeletePrinterConnectionW@4 @152 + DeletePrinterDataExA@12 @153 + DeletePrinterDataExW@12 @154 + DeletePrinterDriverA@12 @155 + DeletePrinterDriverExA@20 @156 + DeletePrinterDriverExW@20 @157 + DeletePrinterDriverW@12 @158 + DeletePrinterIC@0 @159 PRIVATE + DevQueryPrint@0 @160 PRIVATE + DeviceCapabilities@20=DeviceCapabilitiesA @161 + DeviceCapabilitiesA@20 @162 + DeviceCapabilitiesW@20 @163 + DeviceMode@0 @164 PRIVATE + DocumentEvent@0 @165 PRIVATE + DocumentPropertiesA@24 @166 + DocumentPropertiesW@24 @167 + EXTDEVICEMODE@0 @168 PRIVATE + EndDocPrinter@4 @169 + EndPagePrinter@4 @170 + EnumFormsA@24 @171 + EnumFormsW@24 @172 + EnumJobsA@32 @173 + EnumJobsW@32 @174 + EnumMonitorsA@24 @175 + EnumMonitorsW@24 @176 + EnumPortsA@24 @177 + EnumPortsW@24 @178 + EnumPrintProcessorDatatypesA@28 @179 + EnumPrintProcessorDatatypesW@28 @180 + EnumPrintProcessorsA@28 @181 + EnumPrintProcessorsW@28 @182 + EnumPrinterDataA@36 @183 + EnumPrinterDataExA@24 @184 + EnumPrinterDataExW@24 @185 + EnumPrinterDataW@36 @186 + EnumPrinterDriversA@28 @187 + EnumPrinterDriversW@28 @188 + EnumPrintersA@28 @189 + EnumPrintersW@28 @190 + EnumPrinterKeyA@20 @191 + EnumPrinterKeyW@20 @192 + ExtDeviceMode@32 @193 + FindClosePrinterChangeNotification@4 @194 + FindFirstPrinterChangeNotification@16 @195 + FindNextPrinterChangeNotification@16 @196 + FreePrinterNotifyInfo@4 @197 + GetFormA@24 @198 + GetFormW@24 @199 + GetJobA@24 @200 + GetJobW@24 @225 + GetPrintProcessorDirectoryA@24 @233 + GetPrintProcessorDirectoryW@24 @234 + GetPrinterA@20 @235 + GetPrinterDataA@24 @236 + GetPrinterDataExA@28 @237 + GetPrinterDataExW@28 @238 + GetPrinterDataW@24 @239 + GetPrinterDriverA@24 @240 + GetPrinterDriverDirectoryA@24 @241 + GetPrinterDriverDirectoryW@24 @242 + GetPrinterDriverW@24 @243 + GetPrinterW@20 @244 + IsValidDevmodeA@8 @245 + IsValidDevmodeW@8 @246 + OpenPrinterA@12 @247 + OpenPrinterW@12 @248 + PerfClose@0 @249 + PerfCollect@16 @250 + PerfOpen@4 @251 + PlayGdiScriptOnPrinterIC@0 @252 PRIVATE + PrinterMessageBoxA@0 @253 PRIVATE + PrinterMessageBoxW@0 @254 PRIVATE + PrinterProperties@8 @255 + ReadPrinter@16 @256 + ResetPrinterA@8 @257 + ResetPrinterW@8 @258 + ScheduleJob@8 @259 + SetAllocFailCount@0 @260 PRIVATE + SetFormA@16 @261 + SetFormW@16 @262 + SetJobA@20 @263 + SetJobW@20 @264 + SetPrinterA@16 @265 + SetPrinterDataA@20 @266 + SetPrinterDataExA@24 @267 + SetPrinterDataExW@24 @268 + SetPrinterDataW@20 @269 + SetPrinterW@16 @270 + SpoolerDevQueryPrintW@0 @271 PRIVATE + SpoolerInit@0 @272 + SpoolerPrinterEvent@0 @273 PRIVATE + StartDocDlgA@8 @274 + StartDocDlgW@8 @275 + StartDocPrinterA@12 @276 + StartDocPrinterW@12 @277 + StartPagePrinter@4 @278 + UploadPrinterDriverPackageA@28 @279 + UploadPrinterDriverPackageW@28 @280 + WaitForPrinterChange@0 @281 PRIVATE + WritePrinter@16 @282 + XcvDataW@32 @283 diff --git a/lib/wine/libwintab32.def b/lib/wine/libwintab32.def new file mode 100644 index 0000000..162a2ff --- /dev/null +++ b/lib/wine/libwintab32.def @@ -0,0 +1,49 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/wintab32/wintab32.spec; do not edit! + +LIBRARY wintab32.dll + +EXPORTS + WTInfoA@12 @20 + WTOpenA@12 @21 + WTClose@4 @22 + WTPacketsGet@12 @23 + WTPacket@12 @24 + WTEnable@8 @40 + WTOverlap@8 @41 + WTConfig@8 @60 + WTGetA@8 @61 + WTSetA@8 @62 + WTExtGet@12 @63 + WTExtSet@12 @64 + WTSave@8 @65 + WTRestore@12 @66 + WTPacketsPeek@12 @80 + WTDataGet@24 @81 + WTDataPeek@24 @82 + WTQueueSizeGet@4 @84 + WTQueueSizeSet@8 @85 + WTMgrOpen@8 @100 + WTMgrClose@4 @101 + WTMgrContextEnum@12 @120 + WTMgrContextOwner@8 @121 + WTMgrDefContext@8 @122 + WTMgrDeviceConfig@12 @140 + WTMgrExt@12 @180 + WTMgrCsrEnable@12 @181 + WTMgrCsrButtonMap@16 @182 + WTMgrCsrPressureBtnMarks@16 @183 + WTMgrCsrPressureResponse@16 @184 + WTMgrCsrExt@16 @185 + WTQueuePacketsEx@12 @200 + WTMgrCsrPressureBtnMarksEx@16 @201 + WTMgrConfigReplaceExA@16 @202 + WTMgrPacketHookExA@16 @203 + WTMgrPacketUnhook@4 @204 + WTMgrPacketHookNext@16 @205 + WTMgrDefContextEx@12 @206 + WTInfoW@12 @1020 + WTOpenW@12 @1021 + WTGetW@8 @1061 + WTSetW@8 @1062 + WTMgrConfigReplaceExW@16 @1202 + WTMgrPacketHookExW@16 @1203 diff --git a/lib/wine/libwintrust.def b/lib/wine/libwintrust.def new file mode 100644 index 0000000..fd24aae --- /dev/null +++ b/lib/wine/libwintrust.def @@ -0,0 +1,131 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/wintrust/wintrust.spec; do not edit! + +LIBRARY wintrust.dll + +EXPORTS + AddPersonalTrustDBPages@0 @1 PRIVATE + CatalogCompactHashDatabase@0 @2 PRIVATE + CryptCATAdminAcquireContext@12 @3 + CryptCATAdminAcquireContext2@20 @4 + CryptCATAdminAddCatalog@16 @5 + CryptCATAdminCalcHashFromFileHandle@16 @6 + CryptCATAdminEnumCatalogFromHash@20 @7 + CryptCATAdminPauseServiceForBackup@0 @8 PRIVATE + CryptCATAdminReleaseCatalogContext@12 @9 + CryptCATAdminReleaseContext@8 @10 + CryptCATAdminRemoveCatalog@12 @11 + CryptCATAdminResolveCatalogPath@16 @12 + CryptCATCDFClose@4 @13 + CryptCATCDFEnumAttributes@0 @14 PRIVATE + CryptCATCDFEnumAttributesWithCDFTag@0 @15 PRIVATE + CryptCATCDFEnumCatAttributes@12 @16 + CryptCATCDFEnumMembers@0 @17 PRIVATE + CryptCATCDFEnumMembersByCDFTag@0 @18 PRIVATE + CryptCATCDFEnumMembersByCDFTagEx@24 @19 + CryptCATCDFOpen@8 @20 + CryptCATCatalogInfoFromContext@12 @21 + CryptCATClose@4 @22 + CryptCATEnumerateAttr@12 @23 + CryptCATEnumerateCatAttr@8 @24 + CryptCATEnumerateMember@8 @25 + CryptCATGetAttrInfo@12 @26 + CryptCATGetCatAttrInfo@8 @27 + CryptCATGetMemberInfo@8 @28 + CryptCATHandleFromStore@0 @29 PRIVATE + CryptCATOpen@20 @30 + CryptCATPersistStore@0 @31 PRIVATE + CryptCATPutAttrInfo@0 @32 PRIVATE + CryptCATPutCatAttrInfo@0 @33 PRIVATE + CryptCATPutMemberInfo@0 @34 PRIVATE + CryptCATStoreFromHandle@0 @35 PRIVATE + CryptCATVerifyMember@0 @36 PRIVATE + CryptSIPCreateIndirectData@12 @37 + CryptSIPGetInfo@0 @38 PRIVATE + CryptSIPGetRegWorkingFlags@0 @39 PRIVATE + CryptSIPGetSignedDataMsg@20 @40 + CryptSIPPutSignedDataMsg@20 @41 + CryptSIPRemoveSignedDataMsg@8 @42 + CryptSIPVerifyIndirectData@8 @43 + DllRegisterServer@0 @44 PRIVATE + DllUnregisterServer@0 @45 PRIVATE + DriverCleanupPolicy@4 @46 + DriverFinalPolicy@4 @47 + DriverInitializePolicy@4 @48 + FindCertsByIssuer@28 @49 + GenericChainCertificateTrust@4 @50 + GenericChainFinalProv@4 @51 + HTTPSCertificateTrust@4 @52 + HTTPSFinalProv@4 @53 + IsCatalogFile@8 @54 + MsCatConstructHashTag@0 @55 PRIVATE + MsCatFreeHashTag@0 @56 PRIVATE + OfficeCleanupPolicy@0 @57 PRIVATE + OfficeInitializePolicy@0 @58 PRIVATE + OpenPersonalTrustDBDialog@4 @59 + SoftpubAuthenticode@4 @60 + SoftpubCheckCert@16 @61 + SoftpubCleanup@4 @62 + SoftpubDefCertInit@4 @63 + SoftpubDllRegisterServer@0 @64 + SoftpubDllUnregisterServer@0 @65 + SoftpubDumpStructure@0 @66 PRIVATE + SoftpubFreeDefUsageCallData@0 @67 PRIVATE + SoftpubInitialize@4 @68 + SoftpubLoadDefUsageCallData@0 @69 PRIVATE + SoftpubLoadMessage@4 @70 + SoftpubLoadSignature@4 @71 + TrustDecode@0 @72 PRIVATE + TrustFindIssuerCertificate@0 @73 PRIVATE + TrustFreeDecode@0 @74 PRIVATE + TrustIsCertificateSelfSigned@4 @75 + TrustOpenStores@0 @76 PRIVATE + WTHelperCertCheckValidSignature@4 @77 + WTHelperCertFindIssuerCertificate@0 @78 PRIVATE + WTHelperCertIsSelfSigned@0 @79 PRIVATE + WTHelperCheckCertUsage@0 @80 PRIVATE + WTHelperGetAgencyInfo@0 @81 PRIVATE + WTHelperGetFileHandle@4 @82 + WTHelperGetFileName@4 @83 + WTHelperGetKnownUsages@8 @84 + WTHelperGetProvCertFromChain@8 @85 + WTHelperGetProvPrivateDataFromChain@8 @86 + WTHelperGetProvSignerFromChain@16 @87 + WTHelperIsInRootStore@0 @88 PRIVATE + WTHelperOpenKnownStores@0 @89 PRIVATE + WTHelperProvDataFromStateData@4 @90 + WVTAsn1CatMemberInfoDecode@28 @91 + WVTAsn1CatMemberInfoEncode@20 @92 + WVTAsn1CatNameValueDecode@28 @93 + WVTAsn1CatNameValueEncode@20 @94 + WVTAsn1SpcFinancialCriteriaInfoDecode@28 @95 + WVTAsn1SpcFinancialCriteriaInfoEncode@20 @96 + WVTAsn1SpcIndirectDataContentDecode@28 @97 + WVTAsn1SpcIndirectDataContentEncode@20 @98 + WVTAsn1SpcLinkDecode@28 @99 + WVTAsn1SpcLinkEncode@20 @100 + WVTAsn1SpcMinimalCriteriaInfoDecode@0 @101 PRIVATE + WVTAsn1SpcMinimalCriteriaInfoEncode@0 @102 PRIVATE + WVTAsn1SpcPeImageDataDecode@28 @103 + WVTAsn1SpcPeImageDataEncode@20 @104 + WVTAsn1SpcSigInfoDecode@0 @105 PRIVATE + WVTAsn1SpcSigInfoEncode@0 @106 PRIVATE + WVTAsn1SpcSpAgencyInfoDecode@0 @107 PRIVATE + WVTAsn1SpcSpAgencyInfoEncode@0 @108 PRIVATE + WVTAsn1SpcSpOpusInfoDecode@28 @109 + WVTAsn1SpcSpOpusInfoEncode@20 @110 + WVTAsn1SpcStatementTypeDecode@0 @111 PRIVATE + WVTAsn1SpcStatementTypeEncode@0 @112 PRIVATE + WinVerifyTrust@12 @113 + WinVerifyTrustEx@12 @114 + WintrustAddActionID@12 @115 + WintrustAddDefaultForUsage@8 @116 + WintrustCertificateTrust@4 @117 + WintrustGetDefaultForUsage@0 @118 PRIVATE + WintrustGetRegPolicyFlags@4 @119 + WintrustLoadFunctionPointers@8 @120 + WintrustRemoveActionID@4 @121 + WintrustSetRegPolicyFlags@4 @122 + mscat32DllRegisterServer@0 @123 + mscat32DllUnregisterServer@0 @124 + mssip32DllRegisterServer@0 @125 + mssip32DllUnregisterServer@0 @126 diff --git a/lib/wine/libwlanapi.def b/lib/wine/libwlanapi.def new file mode 100644 index 0000000..1824802 --- /dev/null +++ b/lib/wine/libwlanapi.def @@ -0,0 +1,41 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/wlanapi/wlanapi.spec; do not edit! + +LIBRARY wlanapi.dll + +EXPORTS + WlanAllocateMemory@4 @1 + WlanCloseHandle@8 @2 + WlanConnect@0 @3 PRIVATE + WlanDeleteProfile@0 @4 PRIVATE + WlanDisconnect@0 @5 PRIVATE + WlanEnumInterfaces@12 @6 + WlanExtractPsdIEDataList@0 @7 PRIVATE + WlanFreeMemory@4 @8 + WlanGetAvailableNetworkList@20 @9 + WlanGetFilterList@0 @10 PRIVATE + WlanGetInterfaceCapability@0 @11 PRIVATE + WlanGetNetworkBssList@0 @12 PRIVATE + WlanGetProfile@0 @13 PRIVATE + WlanGetProfileCustomUserData@0 @14 PRIVATE + WlanGetProfileList@0 @15 PRIVATE + WlanGetSecuritySettings@0 @16 PRIVATE + WlanIhvControl@0 @17 PRIVATE + WlanOpenHandle@16 @18 + WlanQueryAutoConfigParameter@0 @19 PRIVATE + WlanQueryInterface@0 @20 PRIVATE + WlanReasonCodeToString@0 @21 PRIVATE + WlanRegisterNotification@28 @22 + WlanRenameProfile@0 @23 PRIVATE + WlanSaveTemporaryProfile@0 @24 PRIVATE + WlanScan@20 @25 + WlanSetAutoConfigParameter@0 @26 PRIVATE + WlanSetFilterList@0 @27 PRIVATE + WlanSetInterface@0 @28 PRIVATE + WlanSetProfile@0 @29 PRIVATE + WlanSetProfileCustomUserData@0 @30 PRIVATE + WlanSetProfileEapUserData@0 @31 PRIVATE + WlanSetProfileEapXmlUserData@0 @32 PRIVATE + WlanSetProfileList@0 @33 PRIVATE + WlanSetProfilePosition@0 @34 PRIVATE + WlanSetPsdIEDataList@0 @35 PRIVATE + WlanSetSecuritySettings@0 @36 PRIVATE diff --git a/lib/wine/libwldap32.def b/lib/wine/libwldap32.def new file mode 100644 index 0000000..71a5483 --- /dev/null +++ b/lib/wine/libwldap32.def @@ -0,0 +1,250 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/wldap32/wldap32.spec; do not edit! + +LIBRARY wldap32.dll + +EXPORTS + ldap_abandon=WLDAP32_ldap_abandon @10 + ldap_add=ldap_addA @11 + ldap_get_optionW @12 + ldap_unbind=WLDAP32_ldap_unbind @13 + ldap_set_optionW @14 + LdapGetLastError @16 + cldap_open=cldap_openA @17 + LdapMapErrorToWin32 @18 + ldap_compare=ldap_compareA @19 + ldap_delete=ldap_deleteA @20 + ldap_result2error=WLDAP32_ldap_result2error @21 + ldap_err2string=ldap_err2stringA @22 + ldap_modify=ldap_modifyA @23 + ldap_modrdn=ldap_modrdnA @24 + ldap_open=ldap_openA @25 + ldap_first_entry=WLDAP32_ldap_first_entry @26 + ldap_next_entry=WLDAP32_ldap_next_entry @27 + cldap_openW @28 + LdapUTF8ToUnicode @29 + ldap_get_dn=ldap_get_dnA @30 + ldap_dn2ufn=ldap_dn2ufnA @31 + ldap_first_attribute=ldap_first_attributeA @32 + ldap_next_attribute=ldap_next_attributeA @33 + ldap_get_values=ldap_get_valuesA @34 + ldap_get_values_len=ldap_get_values_lenA @35 + ldap_count_entries=WLDAP32_ldap_count_entries @36 + ldap_count_values=ldap_count_valuesA @37 + ldap_value_free=ldap_value_freeA @38 + ldap_explode_dn=ldap_explode_dnA @39 + ldap_result=WLDAP32_ldap_result @40 + ldap_msgfree=WLDAP32_ldap_msgfree @41 + ldap_addW @42 + ldap_search=ldap_searchA @43 + ldap_add_s=ldap_add_sA @44 + ldap_bind_s=ldap_bind_sA @45 + ldap_unbind_s=WLDAP32_ldap_unbind_s @46 + ldap_delete_s=ldap_delete_sA @47 + ldap_modify_s=ldap_modify_sA @48 + ldap_modrdn_s=ldap_modrdn_sA @49 + ldap_search_s=ldap_search_sA @50 + ldap_search_st=ldap_search_stA @51 + ldap_compare_s=ldap_compare_sA @52 + LdapUnicodeToUTF8 @53 + ber_bvfree=WLDAP32_ber_bvfree @54 + cldap_openA @55 + ldap_addA @56 + ldap_add_ext=ldap_add_extA @57 + ldap_add_extA @58 + ldap_simple_bind=ldap_simple_bindA @59 + ldap_simple_bind_s=ldap_simple_bind_sA @60 + ldap_bind=ldap_bindA @61 + ldap_add_extW @62 + ldap_add_ext_s=ldap_add_ext_sA @63 + ldap_add_ext_sA @64 + ldap_add_ext_sW @65 + ldap_add_sA @66 + ldap_modrdn2=ldap_modrdn2A @67 + ldap_modrdn2_s=ldap_modrdn2_sA @68 + ldap_add_sW @69 + ldap_bindA @70 + ldap_bindW @71 + ldap_bind_sA @72 + ldap_bind_sW @73 + ldap_close_extended_op @74 + ldap_compareA @75 + ldap_compareW @76 + ldap_count_values_len=WLDAP32_ldap_count_values_len @77 + ldap_compare_ext=ldap_compare_extA @78 + ldap_value_free_len=WLDAP32_ldap_value_free_len @79 + ldap_compare_extA @80 + ldap_compare_extW @81 + ldap_perror=WLDAP32_ldap_perror @82 + ldap_compare_ext_s=ldap_compare_ext_sA @83 + ldap_compare_ext_sA @84 + ldap_compare_ext_sW @85 + ldap_compare_sA @86 + ldap_compare_sW @87 + ldap_connect @88 + ldap_control_free=ldap_control_freeA @89 + ldap_control_freeA @90 + ldap_control_freeW @91 + ldap_controls_free=ldap_controls_freeA @92 + ldap_controls_freeA @93 + ldap_controls_freeW @94 + ldap_count_references=WLDAP32_ldap_count_references @95 + ldap_count_valuesA @96 + ldap_count_valuesW @97 + ldap_create_page_control=ldap_create_page_controlA @98 + ldap_create_page_controlA @99 + ldap_create_page_controlW @100 + ldap_create_sort_control=ldap_create_sort_controlA @101 + ldap_create_sort_controlA @102 + ldap_create_sort_controlW @103 + ldap_deleteA @104 + ldap_deleteW @105 + ldap_delete_ext=ldap_delete_extA @106 + ldap_delete_extA @107 + ldap_delete_extW @108 + ldap_delete_ext_s=ldap_delete_ext_sA @109 + ldap_delete_ext_sA @110 + ldap_delete_ext_sW @111 + ldap_delete_sA @112 + ldap_delete_sW @113 + ldap_dn2ufnW @114 + ldap_encode_sort_controlA @115 + ldap_encode_sort_controlW @116 + ldap_err2stringA @117 + ldap_err2stringW @118 + ldap_escape_filter_elementA @119 + ldap_escape_filter_elementW @120 + ldap_explode_dnA @121 + ldap_explode_dnW @122 + ldap_extended_operation=ldap_extended_operationA @123 + ldap_extended_operationA @124 + ldap_extended_operationW @125 + ldap_first_attributeA @126 + ldap_first_attributeW @127 + ldap_first_reference=WLDAP32_ldap_first_reference @128 + ldap_free_controls=ldap_free_controlsA @129 + ldap_free_controlsA @130 + ldap_free_controlsW @131 + ldap_get_dnA @132 + ldap_get_dnW @133 + ldap_get_next_page @134 + ldap_get_next_page_s @135 + ldap_get_option=ldap_get_optionA @136 + ldap_get_optionA @137 + ldap_get_paged_count @138 + ldap_get_valuesA @139 + ldap_get_valuesW @140 + ldap_get_values_lenA @141 + ldap_get_values_lenW @142 + ldap_init=ldap_initA @143 + ldap_initA @144 + ldap_initW @145 + ldap_memfreeA @146 + ldap_memfreeW @147 + ldap_modifyA @148 + ldap_modifyW @149 + ldap_modify_ext=ldap_modify_extA @150 + ldap_modify_extA @151 + ldap_modify_extW @152 + ldap_modify_ext_s=ldap_modify_ext_sA @153 + ldap_modify_ext_sA @154 + ldap_modify_ext_sW @155 + ldap_modify_sA @156 + ldap_modify_sW @157 + ldap_modrdn2A @158 + ldap_modrdn2W @159 + ldap_modrdn2_sA @160 + ldap_modrdn2_sW @161 + ldap_modrdnA @162 + ldap_modrdnW @163 + ldap_modrdn_sA @164 + ldap_modrdn_sW @165 + ldap_next_attributeA @166 + ldap_next_attributeW @167 + ldap_next_reference=WLDAP32_ldap_next_reference @168 + ldap_openA @169 + ldap_openW @170 + ldap_parse_page_control=ldap_parse_page_controlA @171 + ldap_parse_page_controlA @172 + ldap_parse_page_controlW @173 + ldap_parse_reference=ldap_parse_referenceA @174 + ldap_parse_referenceA @175 + ldap_parse_referenceW @176 + ldap_parse_result=ldap_parse_resultA @177 + ldap_parse_resultA @178 + ldap_parse_resultW @179 + ldap_parse_sort_control=ldap_parse_sort_controlA @180 + ldap_parse_sort_controlA @181 + ldap_parse_sort_controlW @182 + ldap_rename_ext=ldap_rename_extA @183 + ldap_rename_extA @184 + ldap_rename_extW @185 + ldap_rename_ext_s=ldap_rename_ext_sA @186 + ldap_rename_ext_sA @187 + ldap_rename_ext_sW @188 + ldap_searchA @189 + ldap_searchW @190 + ldap_search_abandon_page @191 + ldap_search_ext=ldap_search_extA @192 + ldap_search_extA @193 + ldap_search_extW @194 + ldap_search_ext_s=ldap_search_ext_sA @195 + ldap_search_ext_sA @196 + ldap_escape_filter_element=ldap_escape_filter_elementA @197 + ldap_set_dbg_flags@0 @198 PRIVATE + ldap_set_dbg_routine@0 @199 PRIVATE + ldap_memfree=ldap_memfreeA @200 + ldap_startup @201 + ldap_cleanup @202 + ldap_search_ext_sW @203 + ldap_search_init_page=ldap_search_init_pageA @204 + ldap_search_init_pageA @205 + ldap_search_init_pageW @206 + ldap_search_sA @207 + ldap_search_sW @208 + ldap_search_stA @209 + ldap_search_stW @210 + ldap_set_option=ldap_set_optionA @211 + ldap_set_optionA @212 + ldap_simple_bindA @213 + ldap_simple_bindW @214 + ldap_simple_bind_sA @215 + ldap_simple_bind_sW @216 + ldap_sslinit=ldap_sslinitA @217 + ldap_sslinitA @218 + ldap_sslinitW @219 + ldap_ufn2dn=ldap_ufn2dnA @220 + ldap_ufn2dnA @221 + ldap_ufn2dnW @222 + ldap_value_freeA @223 + ldap_value_freeW @224 + ldap_check_filterA @230 + ldap_check_filterW @231 + ldap_dn2ufnA @232 + ber_init=WLDAP32_ber_init @300 + ber_free=WLDAP32_ber_free @301 + ber_bvecfree=WLDAP32_ber_bvecfree @302 + ber_bvdup=WLDAP32_ber_bvdup @303 + ber_alloc_t=WLDAP32_ber_alloc_t @304 + ber_skip_tag=WLDAP32_ber_skip_tag @305 + ber_peek_tag=WLDAP32_ber_peek_tag @306 + ber_first_element=WLDAP32_ber_first_element @307 + ber_next_element=WLDAP32_ber_next_element @308 + ber_flatten=WLDAP32_ber_flatten @309 + ber_printf=WLDAP32_ber_printf @310 + ber_scanf=WLDAP32_ber_scanf @311 + ldap_conn_from_msg @312 + ldap_sasl_bindW @313 + ldap_sasl_bind_sW @314 + ldap_sasl_bindA @315 + ldap_sasl_bind_sA @316 + ldap_parse_extended_resultW @317 + ldap_parse_extended_resultA @318 + ldap_create_vlv_controlW @319 + ldap_create_vlv_controlA @320 + ldap_parse_vlv_controlW @321 + ldap_parse_vlv_controlA @322 + ldap_start_tls_sW @329 + ldap_start_tls_sA @330 + ldap_stop_tls_s @331 + ldap_extended_operation_sW @332 + ldap_extended_operation_sA @333 diff --git a/lib/wine/libwmcodecdspuuid.a b/lib/wine/libwmcodecdspuuid.a new file mode 100644 index 0000000..44c5c21 Binary files /dev/null and b/lib/wine/libwmcodecdspuuid.a differ diff --git a/lib/wine/libwmvcore.def b/lib/wine/libwmvcore.def new file mode 100644 index 0000000..3fbb898 --- /dev/null +++ b/lib/wine/libwmvcore.def @@ -0,0 +1,25 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/wmvcore/wmvcore.spec; do not edit! + +LIBRARY wmvcore.dll + +EXPORTS + WMCheckURLExtension@4 @1 + WMCheckURLScheme@4 @2 + WMCreateBackupRestorerPrivate@8=WMCreateBackupRestorer @3 + WMIsAvailableOffline@0 @4 PRIVATE + WMValidateData@0 @5 PRIVATE + DllRegisterServer@0 @6 PRIVATE + WMCreateBackupRestorer@8 @7 + WMCreateEditor@4 @8 + WMCreateIndexer@0 @9 PRIVATE + WMCreateProfileManager@4 @10 + WMCreateReader@12 @11 + WMCreateReaderPriv@4 @12 + WMCreateSyncReader@12 @13 + WMCreateSyncReaderPriv@4 @14 + WMCreateWriter@8 @15 + WMCreateWriterFileSink@0 @16 PRIVATE + WMCreateWriterNetworkSink@0 @17 PRIVATE + WMCreateWriterPriv@4 @18 + WMCreateWriterPushSink@0 @19 PRIVATE + WMIsContentProtected@0 @20 PRIVATE diff --git a/lib/wine/libwnaspi32.def b/lib/wine/libwnaspi32.def new file mode 100644 index 0000000..45a5840 --- /dev/null +++ b/lib/wine/libwnaspi32.def @@ -0,0 +1,12 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/wnaspi32/wnaspi32.spec; do not edit! + +LIBRARY wnaspi32.dll + +EXPORTS + GetASPI32SupportInfo @1 + SendASPI32Command @2 + GetASPI32DLLVersion @4 + RegisterWOWPost@0 @6 PRIVATE + TranslateASPI32Address @7 + GetASPI32Buffer @8 + FreeASPI32Buffer @14 diff --git a/lib/wine/libwow32.def b/lib/wine/libwow32.def new file mode 100644 index 0000000..abedf67 --- /dev/null +++ b/lib/wine/libwow32.def @@ -0,0 +1,22 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/wow32/wow32.spec; do not edit! + +LIBRARY wow32.dll + +EXPORTS + WOWGetDescriptor@8 @1 + WOWCallback16@8 @2 + WOWCallback16Ex@20 @3 + WOWDirectedYield16@4 @4 + WOWGetVDMPointer@12 @5 + WOWGetVDMPointerFix@12 @6 + WOWGetVDMPointerUnfix@4 @7 + WOWGlobalAlloc16@8 @8 + WOWGlobalAllocLock16@12 @9 + WOWGlobalFree16@4 @10 + WOWGlobalLock16@4 @11 + WOWGlobalLockSize16@8 @12 + WOWGlobalUnlock16@4 @13 + WOWGlobalUnlockFree16@4 @14 + WOWHandle16@8 @15 + WOWHandle32@8 @16 + WOWYield16@0 @17 diff --git a/lib/wine/libws2_32.def b/lib/wine/libws2_32.def new file mode 100644 index 0000000..3837d35 --- /dev/null +++ b/lib/wine/libws2_32.def @@ -0,0 +1,132 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/ws2_32/ws2_32.spec; do not edit! + +LIBRARY ws2_32.dll + +EXPORTS + accept@12=WS_accept @1 + bind@12=WS_bind @2 + closesocket@4=WS_closesocket @3 + connect@12=WS_connect @4 + getpeername@12=WS_getpeername @5 + getsockname@12=WS_getsockname @6 + getsockopt@20=WS_getsockopt @7 + htonl@4=WS_htonl @8 + htons@4=WS_htons @9 + ioctlsocket@12=WS_ioctlsocket @10 + inet_addr@4=WS_inet_addr @11 + inet_ntoa@4=WS_inet_ntoa @12 + listen@8=WS_listen @13 + ntohl@4=WS_ntohl @14 + ntohs@4=WS_ntohs @15 + recv@16=WS_recv @16 + recvfrom@24=WS_recvfrom @17 + select@20=WS_select @18 + send@16=WS_send @19 + sendto@24=WS_sendto @20 + setsockopt@20=WS_setsockopt @21 + shutdown@8=WS_shutdown @22 + socket@12=WS_socket @23 + gethostbyaddr@12=WS_gethostbyaddr @51 + gethostbyname@4=WS_gethostbyname @52 + getprotobyname@4=WS_getprotobyname @53 + getprotobynumber@4=WS_getprotobynumber @54 + getservbyname@8=WS_getservbyname @55 + getservbyport@8=WS_getservbyport @56 + gethostname@8=WS_gethostname @57 + WSAAsyncSelect@16 @101 + WSAAsyncGetHostByAddr@28 @102 + WSAAsyncGetHostByName@20 @103 + WSAAsyncGetProtoByNumber@20 @104 + WSAAsyncGetProtoByName@20 @105 + WSAAsyncGetServByPort@24 @106 + WSAAsyncGetServByName@24 @107 + WSACancelAsyncRequest@4 @108 + WSASetBlockingHook@4 @109 + WSAUnhookBlockingHook@0 @110 + WSAGetLastError@0 @111 + WSASetLastError@4 @112 + WSACancelBlockingCall@0 @113 + WSAIsBlocking@0 @114 + WSAStartup@8 @115 + WSACleanup@0 @116 + __WSAFDIsSet@8 @151 + WEP@0 @500 PRIVATE + FreeAddrInfoExW@4 @24 + FreeAddrInfoW@4 @25 + GetAddrInfoExCancel@4 @26 + GetAddrInfoExOverlappedResult@4 @27 + GetAddrInfoExW@40 @28 + GetAddrInfoW@16 @29 + GetNameInfoW@28 @30 + InetNtopW@16 @31 + InetPtonW@12 @32 + WSApSetPostRoutine@4 @33 + WPUCompleteOverlappedRequest@20 @34 + WSAAccept@20 @35 + WSAAddressToStringA@20 @36 + WSAAddressToStringW@20 @37 + WSACloseEvent@4 @38 + WSAConnect@28 @39 + WSACreateEvent@0 @40 + WSADuplicateSocketA@12 @41 + WSADuplicateSocketW@12 @42 + WSAEnumNameSpaceProvidersA@8 @43 + WSAEnumNameSpaceProvidersW@8 @44 + WSAEnumNetworkEvents@12 @45 + WSAEnumProtocolsA@12 @46 + WSAEnumProtocolsW@12 @47 + WSAEventSelect@12 @48 + WSAGetOverlappedResult@20 @49 + WSAGetQOSByName@12 @50 + WSAGetServiceClassInfoA@16 @58 + WSAGetServiceClassInfoW@16 @59 + WSAGetServiceClassNameByClassIdA@12 @60 + WSAGetServiceClassNameByClassIdW@12 @61 + WSAHtonl@12 @62 + WSAHtons@12 @63 + WSAInstallServiceClassA@4 @64 + WSAInstallServiceClassW@4 @65 + WSAIoctl@36 @66 + WSAJoinLeaf@32 @67 + WSALookupServiceBeginA@12 @68 + WSALookupServiceBeginW@12 @69 + WSALookupServiceEnd@4 @70 + WSALookupServiceNextA@16 @71 + WSALookupServiceNextW@16 @72 + WSANSPIoctl@32 @73 + WSANtohl@12 @74 + WSANtohs@12 @75 + WSAPoll@12 @76 + WSAProviderConfigChange@12 @77 + WSARecv@28 @78 + WSARecvDisconnect@8 @79 + WSARecvFrom@36 @80 + WSARemoveServiceClass@4 @81 + WSAResetEvent@4=kernel32.ResetEvent @82 + WSASend@28 @83 + WSASendDisconnect@8 @84 + WSASendMsg@24 @85 + WSASendTo@36 @86 + WSASetEvent@4=kernel32.SetEvent @87 + WSASetServiceA@12 @88 + WSASetServiceW@12 @89 + WSASocketA@24 @90 + WSASocketW@24 @91 + WSAStringToAddressA@20 @92 + WSAStringToAddressW@20 @93 + WSAWaitForMultipleEvents@20=kernel32.WaitForMultipleObjectsEx @94 + WSCDeinstallProvider@8 @95 + WSCEnableNSProvider@8 @96 + WSCEnumProtocols@16 @97 + WSCGetProviderPath@16 @98 + WSCInstallNameSpace@20 @99 + WSCInstallProvider@20 @100 + WSCUnInstallNameSpace@4 @117 + WSCUpdateProvider@0 @118 PRIVATE + WSCWriteNameSpaceOrder@0 @119 PRIVATE + WSCWriteProviderOrder@8 @120 + freeaddrinfo@4=WS_freeaddrinfo @121 + getaddrinfo@16=WS_getaddrinfo @122 + getnameinfo@28=WS_getnameinfo @123 + inet_ntop@16=WS_inet_ntop @124 + inet_pton@12=WS_inet_pton @125 diff --git a/lib/wine/libwsdapi.def b/lib/wine/libwsdapi.def new file mode 100644 index 0000000..bea1d18 --- /dev/null +++ b/lib/wine/libwsdapi.def @@ -0,0 +1,50 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/wsdapi/wsdapi.spec; do not edit! + +LIBRARY wsdapi.dll + +EXPORTS + WSDAddFirewallCheck@0 @1 PRIVATE + WSDCancelNetworkChangeNotify@0 @2 PRIVATE + WSDCopyNameList@0 @3 PRIVATE + WSDNotifyNetworkChange@0 @4 PRIVATE + WSDRemoveFirewallCheck@0 @5 PRIVATE + WSDXMLCompareNames@0 @6 PRIVATE + WSDAllocateLinkedMemory@8 @7 + WSDAttachLinkedMemory@8 @8 + WSDCompareEndpoints@0 @9 PRIVATE + WSDCopyEndpoint@0 @10 PRIVATE + WSDCreateDeviceHost2@0 @11 PRIVATE + WSDCreateDeviceHost@0 @12 PRIVATE + WSDCreateDeviceHostAdvanced@0 @13 PRIVATE + WSDCreateDeviceProxy2@0 @14 PRIVATE + WSDCreateDeviceProxy@0 @15 PRIVATE + WSDCreateDeviceProxyAdvanced@0 @16 PRIVATE + WSDCreateDiscoveryProvider2@0 @17 PRIVATE + WSDCreateDiscoveryProvider@0 @18 PRIVATE + WSDCreateDiscoveryPublisher2@0 @19 PRIVATE + WSDCreateDiscoveryPublisher@8 @20 + WSDCreateHttpAddress@0 @21 PRIVATE + WSDCreateHttpMessageParameters@0 @22 PRIVATE + WSDCreateHttpTransport@0 @23 PRIVATE + WSDCreateMetadataAgent@0 @24 PRIVATE + WSDCreateOutboundAttachment@0 @25 PRIVATE + WSDCreateUdpAddress@4 @26 + WSDCreateUdpMessageParameters@4 @27 + WSDCreateUdpTransport@0 @28 PRIVATE + WSDDetachLinkedMemory@4 @29 + WSDFreeLinkedMemory@4 @30 + WSDGenerateFault@0 @31 PRIVATE + WSDGenerateFaultEx@0 @32 PRIVATE + WSDGenerateRandomDelay@0 @33 PRIVATE + WSDGetConfigurationOption@0 @34 PRIVATE + WSDProcessFault@0 @35 PRIVATE + WSDSetConfigurationOption@0 @36 PRIVATE + WSDUriDecode@0 @37 PRIVATE + WSDUriEncode@0 @38 PRIVATE + WSDXMLAddChild@8 @39 + WSDXMLAddSibling@8 @40 + WSDXMLBuildAnyForSingleElement@12 @41 + WSDXMLCleanupElement@4 @42 + WSDXMLCreateContext@4 @43 + WSDXMLGetNameFromBuiltinNamespace@0 @44 PRIVATE + WSDXMLGetValueFromAny@16 @45 diff --git a/lib/wine/libwsnmp32.def b/lib/wine/libwsnmp32.def new file mode 100644 index 0000000..b5256b2 --- /dev/null +++ b/lib/wine/libwsnmp32.def @@ -0,0 +1,53 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/wsnmp32/wsnmp32.spec; do not edit! + +LIBRARY wsnmp32.dll + +EXPORTS + SnmpGetTranslateMode@0 @100 PRIVATE + SnmpSetTranslateMode@4 @101 + SnmpGetRetransmitMode@0 @102 PRIVATE + SnmpSetRetransmitMode@4 @103 + SnmpGetTimeout@0 @104 PRIVATE + SnmpSetTimeout@0 @105 PRIVATE + SnmpSetRetry@0 @106 PRIVATE + SnmpGetRetry@0 @107 PRIVATE + _SnmpConveyAgentAddress@4@0 @108 PRIVATE + _SnmpSetAgentAddress@4@0 @109 PRIVATE + SnmpGetVendorInfo@0 @120 PRIVATE + SnmpStartup@20 @200 + SnmpCleanup@0 @201 + SnmpOpen@8 @202 + SnmpClose@0 @203 PRIVATE + SnmpSendMsg@0 @204 PRIVATE + SnmpRecvMsg@0 @205 PRIVATE + SnmpRegister@0 @206 PRIVATE + SnmpCreateSession@0 @220 PRIVATE + SnmpListen@0 @221 PRIVATE + SnmpCancelMsg@0 @222 PRIVATE + SnmpStrToEntity@0 @300 PRIVATE + SnmpEntityToStr@0 @301 PRIVATE + SnmpFreeEntity@0 @302 PRIVATE + SnmpSetPort@0 @320 PRIVATE + SnmpStrToContext@0 @400 PRIVATE + SnmpContextToStr@0 @401 PRIVATE + SnmpFreeContext@0 @402 PRIVATE + SnmpCreatePdu@0 @500 PRIVATE + SnmpGetPduData@0 @501 PRIVATE + SnmpSetPduData@0 @502 PRIVATE + SnmpDuplicatePdu@0 @503 PRIVATE + SnmpFreePdu@0 @504 PRIVATE + SnmpCreateVbl@0 @600 PRIVATE + SnmpDuplicateVbl@0 @601 PRIVATE + SnmpFreeVbl@0 @602 PRIVATE + SnmpCountVbl@0 @603 PRIVATE + SnmpGetVb@0 @604 PRIVATE + SnmpSetVb@0 @605 PRIVATE + SnmpDeleteVb@0 @606 PRIVATE + SnmpFreeDescriptor@0 @900 PRIVATE + SnmpEncodeMsg@0 @901 PRIVATE + SnmpDecodeMsg@0 @902 PRIVATE + SnmpStrToOid@0 @903 PRIVATE + SnmpOidToStr@0 @904 PRIVATE + SnmpOidCopy@0 @905 PRIVATE + SnmpOidCompare@0 @906 PRIVATE + SnmpGetLastError@0 @999 PRIVATE diff --git a/lib/wine/libwsock32.def b/lib/wine/libwsock32.def new file mode 100644 index 0000000..b24080a --- /dev/null +++ b/lib/wine/libwsock32.def @@ -0,0 +1,71 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/wsock32/wsock32.spec; do not edit! + +LIBRARY wsock32.dll + +EXPORTS + accept@12=ws2_32.accept @1 + bind@12=ws2_32.bind @2 + closesocket@4=ws2_32.closesocket @3 + connect@12=ws2_32.connect @4 + getpeername@12=ws2_32.getpeername @5 + getsockname@12=ws2_32.getsockname @6 + getsockopt@20=WS1_getsockopt @7 + htonl@4=ws2_32.htonl @8 + htons@4=ws2_32.htons @9 + inet_addr@4=ws2_32.inet_addr @10 + inet_ntoa@4=ws2_32.inet_ntoa @11 + ioctlsocket@12=ws2_32.ioctlsocket @12 + listen@8=ws2_32.listen @13 + ntohl@4=ws2_32.ntohl @14 + ntohs@4=ws2_32.ntohs @15 + recv@16=ws2_32.recv @16 + recvfrom@24=ws2_32.recvfrom @17 + select@20=ws2_32.select @18 + send@16=ws2_32.send @19 + sendto@24=ws2_32.sendto @20 + setsockopt@20=WS1_setsockopt @21 + shutdown@8=ws2_32.shutdown @22 + socket@12=ws2_32.socket @23 + gethostbyaddr@12=ws2_32.gethostbyaddr @51 + gethostbyname@4=ws2_32.gethostbyname @52 + getprotobyname@4=ws2_32.getprotobyname @53 + getprotobynumber@4=ws2_32.getprotobynumber @54 + getservbyname@8=ws2_32.getservbyname @55 + getservbyport@8=ws2_32.getservbyport @56 + gethostname@8=ws2_32.gethostname @57 + WSAAsyncSelect@16=ws2_32.WSAAsyncSelect @101 + WSAAsyncGetHostByAddr@28=ws2_32.WSAAsyncGetHostByAddr @102 + WSAAsyncGetHostByName@20=ws2_32.WSAAsyncGetHostByName @103 + WSAAsyncGetProtoByNumber@20=ws2_32.WSAAsyncGetProtoByNumber @104 + WSAAsyncGetProtoByName@20=ws2_32.WSAAsyncGetProtoByName @105 + WSAAsyncGetServByPort@24=ws2_32.WSAAsyncGetServByPort @106 + WSAAsyncGetServByName@24=ws2_32.WSAAsyncGetServByName @107 + WSACancelAsyncRequest@4=ws2_32.WSACancelAsyncRequest @108 + WSASetBlockingHook@4=ws2_32.WSASetBlockingHook @109 + WSAUnhookBlockingHook@0=ws2_32.WSAUnhookBlockingHook @110 + WSAGetLastError@0=ws2_32.WSAGetLastError @111 + WSASetLastError@4=ws2_32.WSASetLastError @112 + WSACancelBlockingCall@0=ws2_32.WSACancelBlockingCall @113 + WSAIsBlocking@0=ws2_32.WSAIsBlocking @114 + WSAStartup@8=ws2_32.WSAStartup @115 + WSACleanup@0=ws2_32.WSACleanup @116 + __WSAFDIsSet@8=ws2_32.__WSAFDIsSet @151 + WEP@0=ws2_32.WEP @500 + WsControl@24 @1001 + inet_network@4=WSOCK32_inet_network @1100 + getnetbyname@4=WSOCK32_getnetbyname @1101 + WSARecvEx@16 @1107 + s_perror@4 @1108 + GetAddressByNameA@40 @1109 + GetAddressByNameW@40 @1110 + EnumProtocolsA@12 @1111 + EnumProtocolsW@12 @1112 + GetTypeByNameA@8 @1113 + GetTypeByNameW@8 @1114 + SetServiceA@24 @1117 + SetServiceW@24 @1118 + GetServiceA@28 @1119 + GetServiceW@28 @1120 + TransmitFile@24=mswsock.TransmitFile @1140 + AcceptEx@32=mswsock.AcceptEx @1141 + GetAcceptExSockaddrs@32=mswsock.GetAcceptExSockaddrs @1142 diff --git a/lib/wine/libwtsapi32.def b/lib/wine/libwtsapi32.def new file mode 100644 index 0000000..2263c0c --- /dev/null +++ b/lib/wine/libwtsapi32.def @@ -0,0 +1,49 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/wtsapi32/wtsapi32.spec; do not edit! + +LIBRARY wtsapi32.dll + +EXPORTS + WTSCloseServer@4 @1 + WTSConnectSessionA@16 @2 + WTSConnectSessionW@16 @3 + WTSDisconnectSession@12 @4 + WTSEnableChildSessions@4 @5 + WTSEnumerateProcessesA@20 @6 + WTSEnumerateProcessesW@20 @7 + WTSEnumerateServersA@20 @8 + WTSEnumerateServersW@20 @9 + WTSEnumerateSessionsA@20 @10 + WTSEnumerateSessionsW@20 @11 + WTSFreeMemory@4 @12 + WTSLogoffSession@12 @13 + WTSOpenServerA@4 @14 + WTSOpenServerW@4 @15 + WTSQuerySessionInformationA@20 @16 + WTSQuerySessionInformationW@20 @17 + WTSQueryUserConfigA@20 @18 + WTSQueryUserConfigW@20 @19 + WTSQueryUserToken@8 @20 + WTSRegisterSessionNotification@8 @21 + WTSRegisterSessionNotificationEx@12 @22 + WTSSendMessageA@40 @23 + WTSSendMessageW@40 @24 + WTSSetSessionInformationA@0 @25 PRIVATE + WTSSetSessionInformationW@0 @26 PRIVATE + WTSSetUserConfigA@20 @27 + WTSSetUserConfigW@20 @28 + WTSShutdownSystem@8 @29 + WTSStartRemoteControlSessionA@16 @30 + WTSStartRemoteControlSessionW@16 @31 + WTSStopRemoteControlSession@4 @32 + WTSTerminateProcess@12 @33 + WTSUnRegisterSessionNotification@4 @34 + WTSUnRegisterSessionNotificationEx@8 @35 + WTSVirtualChannelClose@4 @36 + WTSVirtualChannelOpen@12 @37 + WTSVirtualChannelOpenEx@12 @38 + WTSVirtualChannelPurgeInput@4 @39 + WTSVirtualChannelPurgeOutput@4 @40 + WTSVirtualChannelQuery@16 @41 + WTSVirtualChannelRead@20 @42 + WTSVirtualChannelWrite@16 @43 + WTSWaitSystemEvent@12 @44 diff --git a/lib/wine/libxinput.def b/lib/wine/libxinput.def new file mode 100644 index 0000000..eb42401 --- /dev/null +++ b/lib/wine/libxinput.def @@ -0,0 +1,14 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/xinput1_3/xinput1_3.spec; do not edit! + +LIBRARY xinput1_3.dll + +EXPORTS + DllMain@12 @1 PRIVATE + XInputGetState@8 @2 + XInputSetState@8 @3 + XInputGetCapabilities@12 @4 + XInputEnable@4 @5 + XInputGetDSoundAudioDeviceGuids@12 @6 + XInputGetBatteryInformation@12 @7 + XInputGetKeystroke@12 @8 + XInputGetStateEx@8 @100 diff --git a/lib/wine/libxmllite.def b/lib/wine/libxmllite.def new file mode 100644 index 0000000..ab86138 --- /dev/null +++ b/lib/wine/libxmllite.def @@ -0,0 +1,11 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/xmllite/xmllite.spec; do not edit! + +LIBRARY xmllite.dll + +EXPORTS + CreateXmlReader@12 @1 + CreateXmlReaderInputWithEncodingCodePage@0 @2 PRIVATE + CreateXmlReaderInputWithEncodingName@24 @3 + CreateXmlWriter@12 @4 + CreateXmlWriterOutputWithEncodingCodePage@16 @5 + CreateXmlWriterOutputWithEncodingName@16 @6 diff --git a/lib/wine/loadperf.dll.so b/lib/wine/loadperf.dll.so new file mode 100755 index 0000000..649cf34 Binary files /dev/null and b/lib/wine/loadperf.dll.so differ diff --git a/lib/wine/localspl.dll.so b/lib/wine/localspl.dll.so new file mode 100755 index 0000000..261f855 Binary files /dev/null and b/lib/wine/localspl.dll.so differ diff --git a/lib/wine/localui.dll.so b/lib/wine/localui.dll.so new file mode 100755 index 0000000..200a863 Binary files /dev/null and b/lib/wine/localui.dll.so differ diff --git a/lib/wine/lodctr.exe.so b/lib/wine/lodctr.exe.so new file mode 100755 index 0000000..6c87062 Binary files /dev/null and b/lib/wine/lodctr.exe.so differ diff --git a/lib/wine/lz32.dll.so b/lib/wine/lz32.dll.so new file mode 100755 index 0000000..cac2c2a Binary files /dev/null and b/lib/wine/lz32.dll.so differ diff --git a/lib/wine/lzexpand.dll16.so b/lib/wine/lzexpand.dll16.so new file mode 100755 index 0000000..f936d78 Binary files /dev/null and b/lib/wine/lzexpand.dll16.so differ diff --git a/lib/wine/mapi32.dll.so b/lib/wine/mapi32.dll.so new file mode 100755 index 0000000..84a2218 Binary files /dev/null and b/lib/wine/mapi32.dll.so differ diff --git a/lib/wine/mapistub.dll.so b/lib/wine/mapistub.dll.so new file mode 100755 index 0000000..3c1db20 Binary files /dev/null and b/lib/wine/mapistub.dll.so differ diff --git a/lib/wine/mciavi32.dll.so b/lib/wine/mciavi32.dll.so new file mode 100755 index 0000000..806e81b Binary files /dev/null and b/lib/wine/mciavi32.dll.so differ diff --git a/lib/wine/mcicda.dll.so b/lib/wine/mcicda.dll.so new file mode 100755 index 0000000..1497d2d Binary files /dev/null and b/lib/wine/mcicda.dll.so differ diff --git a/lib/wine/mciqtz32.dll.so b/lib/wine/mciqtz32.dll.so new file mode 100755 index 0000000..32f1132 Binary files /dev/null and b/lib/wine/mciqtz32.dll.so differ diff --git a/lib/wine/mciseq.dll.so b/lib/wine/mciseq.dll.so new file mode 100755 index 0000000..c92022f Binary files /dev/null and b/lib/wine/mciseq.dll.so differ diff --git a/lib/wine/mciwave.dll.so b/lib/wine/mciwave.dll.so new file mode 100755 index 0000000..a657e36 Binary files /dev/null and b/lib/wine/mciwave.dll.so differ diff --git a/lib/wine/mf.dll.so b/lib/wine/mf.dll.so new file mode 100755 index 0000000..f570b21 Binary files /dev/null and b/lib/wine/mf.dll.so differ diff --git a/lib/wine/mf3216.dll.so b/lib/wine/mf3216.dll.so new file mode 100755 index 0000000..143e5cc Binary files /dev/null and b/lib/wine/mf3216.dll.so differ diff --git a/lib/wine/mferror.dll.so b/lib/wine/mferror.dll.so new file mode 100755 index 0000000..7ab4e55 Binary files /dev/null and b/lib/wine/mferror.dll.so differ diff --git a/lib/wine/mfplat.dll.so b/lib/wine/mfplat.dll.so new file mode 100755 index 0000000..b518e78 Binary files /dev/null and b/lib/wine/mfplat.dll.so differ diff --git a/lib/wine/mfplay.dll.so b/lib/wine/mfplay.dll.so new file mode 100755 index 0000000..313b3fa Binary files /dev/null and b/lib/wine/mfplay.dll.so differ diff --git a/lib/wine/mfreadwrite.dll.so b/lib/wine/mfreadwrite.dll.so new file mode 100755 index 0000000..10e635e Binary files /dev/null and b/lib/wine/mfreadwrite.dll.so differ diff --git a/lib/wine/mgmtapi.dll.so b/lib/wine/mgmtapi.dll.so new file mode 100755 index 0000000..06128c0 Binary files /dev/null and b/lib/wine/mgmtapi.dll.so differ diff --git a/lib/wine/midimap.dll.so b/lib/wine/midimap.dll.so new file mode 100755 index 0000000..4433417 Binary files /dev/null and b/lib/wine/midimap.dll.so differ diff --git a/lib/wine/mlang.dll.so b/lib/wine/mlang.dll.so new file mode 100755 index 0000000..dd74ee8 Binary files /dev/null and b/lib/wine/mlang.dll.so differ diff --git a/lib/wine/mmcndmgr.dll.so b/lib/wine/mmcndmgr.dll.so new file mode 100755 index 0000000..05bf05a Binary files /dev/null and b/lib/wine/mmcndmgr.dll.so differ diff --git a/lib/wine/mmdevapi.dll.so b/lib/wine/mmdevapi.dll.so new file mode 100755 index 0000000..dcef5d0 Binary files /dev/null and b/lib/wine/mmdevapi.dll.so differ diff --git a/lib/wine/mmdevldr.vxd.so b/lib/wine/mmdevldr.vxd.so new file mode 100755 index 0000000..97b1735 Binary files /dev/null and b/lib/wine/mmdevldr.vxd.so differ diff --git a/lib/wine/mmsystem.dll16.so b/lib/wine/mmsystem.dll16.so new file mode 100755 index 0000000..1e4146d Binary files /dev/null and b/lib/wine/mmsystem.dll16.so differ diff --git a/lib/wine/mofcomp.exe.so b/lib/wine/mofcomp.exe.so new file mode 100755 index 0000000..4db846f Binary files /dev/null and b/lib/wine/mofcomp.exe.so differ diff --git a/lib/wine/monodebg.vxd.so b/lib/wine/monodebg.vxd.so new file mode 100755 index 0000000..dc496c0 Binary files /dev/null and b/lib/wine/monodebg.vxd.so differ diff --git a/lib/wine/mountmgr.sys.so b/lib/wine/mountmgr.sys.so new file mode 100755 index 0000000..fec4e7f Binary files /dev/null and b/lib/wine/mountmgr.sys.so differ diff --git a/lib/wine/mouse.drv16.so b/lib/wine/mouse.drv16.so new file mode 100755 index 0000000..9cd2da6 Binary files /dev/null and b/lib/wine/mouse.drv16.so differ diff --git a/lib/wine/mp3dmod.dll.so b/lib/wine/mp3dmod.dll.so new file mode 100755 index 0000000..a15a14d Binary files /dev/null and b/lib/wine/mp3dmod.dll.so differ diff --git a/lib/wine/mpr.dll.so b/lib/wine/mpr.dll.so new file mode 100755 index 0000000..cfb1f4b Binary files /dev/null and b/lib/wine/mpr.dll.so differ diff --git a/lib/wine/mprapi.dll.so b/lib/wine/mprapi.dll.so new file mode 100755 index 0000000..2e62ce1 Binary files /dev/null and b/lib/wine/mprapi.dll.so differ diff --git a/lib/wine/msacm.dll16.so b/lib/wine/msacm.dll16.so new file mode 100755 index 0000000..8dcb51e Binary files /dev/null and b/lib/wine/msacm.dll16.so differ diff --git a/lib/wine/msacm32.dll.so b/lib/wine/msacm32.dll.so new file mode 100755 index 0000000..d7aa880 Binary files /dev/null and b/lib/wine/msacm32.dll.so differ diff --git a/lib/wine/msacm32.drv.so b/lib/wine/msacm32.drv.so new file mode 100755 index 0000000..bb585d0 Binary files /dev/null and b/lib/wine/msacm32.drv.so differ diff --git a/lib/wine/msadp32.acm.so b/lib/wine/msadp32.acm.so new file mode 100755 index 0000000..777c4bd Binary files /dev/null and b/lib/wine/msadp32.acm.so differ diff --git a/lib/wine/msasn1.dll.so b/lib/wine/msasn1.dll.so new file mode 100755 index 0000000..bac0860 Binary files /dev/null and b/lib/wine/msasn1.dll.so differ diff --git a/lib/wine/mscat32.dll.so b/lib/wine/mscat32.dll.so new file mode 100755 index 0000000..f8f7a02 Binary files /dev/null and b/lib/wine/mscat32.dll.so differ diff --git a/lib/wine/mscms.dll.so b/lib/wine/mscms.dll.so new file mode 100755 index 0000000..3d8ee6e Binary files /dev/null and b/lib/wine/mscms.dll.so differ diff --git a/lib/wine/mscoree.dll.so b/lib/wine/mscoree.dll.so new file mode 100755 index 0000000..ebaf78d Binary files /dev/null and b/lib/wine/mscoree.dll.so differ diff --git a/lib/wine/msctf.dll.so b/lib/wine/msctf.dll.so new file mode 100755 index 0000000..ac16b99 Binary files /dev/null and b/lib/wine/msctf.dll.so differ diff --git a/lib/wine/msctfp.dll.so b/lib/wine/msctfp.dll.so new file mode 100755 index 0000000..ed5fd90 Binary files /dev/null and b/lib/wine/msctfp.dll.so differ diff --git a/lib/wine/msdaps.dll.so b/lib/wine/msdaps.dll.so new file mode 100755 index 0000000..b6fb0bc Binary files /dev/null and b/lib/wine/msdaps.dll.so differ diff --git a/lib/wine/msdelta.dll.so b/lib/wine/msdelta.dll.so new file mode 100755 index 0000000..dfffb34 Binary files /dev/null and b/lib/wine/msdelta.dll.so differ diff --git a/lib/wine/msdmo.dll.so b/lib/wine/msdmo.dll.so new file mode 100755 index 0000000..79aec1e Binary files /dev/null and b/lib/wine/msdmo.dll.so differ diff --git a/lib/wine/msdrm.dll.so b/lib/wine/msdrm.dll.so new file mode 100755 index 0000000..ebc014b Binary files /dev/null and b/lib/wine/msdrm.dll.so differ diff --git a/lib/wine/msftedit.dll.so b/lib/wine/msftedit.dll.so new file mode 100755 index 0000000..7645f45 Binary files /dev/null and b/lib/wine/msftedit.dll.so differ diff --git a/lib/wine/msg711.acm.so b/lib/wine/msg711.acm.so new file mode 100755 index 0000000..699af7d Binary files /dev/null and b/lib/wine/msg711.acm.so differ diff --git a/lib/wine/msgsm32.acm.so b/lib/wine/msgsm32.acm.so new file mode 100755 index 0000000..8a2e395 Binary files /dev/null and b/lib/wine/msgsm32.acm.so differ diff --git a/lib/wine/mshta.exe.so b/lib/wine/mshta.exe.so new file mode 100755 index 0000000..4fab06b Binary files /dev/null and b/lib/wine/mshta.exe.so differ diff --git a/lib/wine/mshtml.dll.so b/lib/wine/mshtml.dll.so new file mode 100755 index 0000000..481b862 Binary files /dev/null and b/lib/wine/mshtml.dll.so differ diff --git a/lib/wine/mshtml.tlb.so b/lib/wine/mshtml.tlb.so new file mode 100755 index 0000000..9bc5fc5 Binary files /dev/null and b/lib/wine/mshtml.tlb.so differ diff --git a/lib/wine/msi.dll.so b/lib/wine/msi.dll.so new file mode 100755 index 0000000..ece79ee Binary files /dev/null and b/lib/wine/msi.dll.so differ diff --git a/lib/wine/msidb.exe.so b/lib/wine/msidb.exe.so new file mode 100755 index 0000000..12cafa5 Binary files /dev/null and b/lib/wine/msidb.exe.so differ diff --git a/lib/wine/msident.dll.so b/lib/wine/msident.dll.so new file mode 100755 index 0000000..595274d Binary files /dev/null and b/lib/wine/msident.dll.so differ diff --git a/lib/wine/msiexec.exe.so b/lib/wine/msiexec.exe.so new file mode 100755 index 0000000..835fb8a Binary files /dev/null and b/lib/wine/msiexec.exe.so differ diff --git a/lib/wine/msimg32.dll.so b/lib/wine/msimg32.dll.so new file mode 100755 index 0000000..e9d41dc Binary files /dev/null and b/lib/wine/msimg32.dll.so differ diff --git a/lib/wine/msimsg.dll.so b/lib/wine/msimsg.dll.so new file mode 100755 index 0000000..f03ee5e Binary files /dev/null and b/lib/wine/msimsg.dll.so differ diff --git a/lib/wine/msimtf.dll.so b/lib/wine/msimtf.dll.so new file mode 100755 index 0000000..6634632 Binary files /dev/null and b/lib/wine/msimtf.dll.so differ diff --git a/lib/wine/msinfo32.exe.so b/lib/wine/msinfo32.exe.so new file mode 100755 index 0000000..b380940 Binary files /dev/null and b/lib/wine/msinfo32.exe.so differ diff --git a/lib/wine/msisip.dll.so b/lib/wine/msisip.dll.so new file mode 100755 index 0000000..cc4e55e Binary files /dev/null and b/lib/wine/msisip.dll.so differ diff --git a/lib/wine/msisys.ocx.so b/lib/wine/msisys.ocx.so new file mode 100755 index 0000000..2daa98e Binary files /dev/null and b/lib/wine/msisys.ocx.so differ diff --git a/lib/wine/msls31.dll.so b/lib/wine/msls31.dll.so new file mode 100755 index 0000000..e6220e3 Binary files /dev/null and b/lib/wine/msls31.dll.so differ diff --git a/lib/wine/msnet32.dll.so b/lib/wine/msnet32.dll.so new file mode 100755 index 0000000..395ea2f Binary files /dev/null and b/lib/wine/msnet32.dll.so differ diff --git a/lib/wine/mspatcha.dll.so b/lib/wine/mspatcha.dll.so new file mode 100755 index 0000000..f25e51f Binary files /dev/null and b/lib/wine/mspatcha.dll.so differ diff --git a/lib/wine/msports.dll.so b/lib/wine/msports.dll.so new file mode 100755 index 0000000..ff41dc7 Binary files /dev/null and b/lib/wine/msports.dll.so differ diff --git a/lib/wine/msrle32.dll.so b/lib/wine/msrle32.dll.so new file mode 100755 index 0000000..4f07d44 Binary files /dev/null and b/lib/wine/msrle32.dll.so differ diff --git a/lib/wine/msscript.ocx.so b/lib/wine/msscript.ocx.so new file mode 100755 index 0000000..91dab6e Binary files /dev/null and b/lib/wine/msscript.ocx.so differ diff --git a/lib/wine/mssign32.dll.so b/lib/wine/mssign32.dll.so new file mode 100755 index 0000000..b4d6b3f Binary files /dev/null and b/lib/wine/mssign32.dll.so differ diff --git a/lib/wine/mssip32.dll.so b/lib/wine/mssip32.dll.so new file mode 100755 index 0000000..042e7b5 Binary files /dev/null and b/lib/wine/mssip32.dll.so differ diff --git a/lib/wine/mstask.dll.so b/lib/wine/mstask.dll.so new file mode 100755 index 0000000..2497931 Binary files /dev/null and b/lib/wine/mstask.dll.so differ diff --git a/lib/wine/msvcirt.dll.so b/lib/wine/msvcirt.dll.so new file mode 100755 index 0000000..70a5df3 Binary files /dev/null and b/lib/wine/msvcirt.dll.so differ diff --git a/lib/wine/msvcm80.dll.so b/lib/wine/msvcm80.dll.so new file mode 100755 index 0000000..079a368 Binary files /dev/null and b/lib/wine/msvcm80.dll.so differ diff --git a/lib/wine/msvcm90.dll.so b/lib/wine/msvcm90.dll.so new file mode 100755 index 0000000..947e342 Binary files /dev/null and b/lib/wine/msvcm90.dll.so differ diff --git a/lib/wine/msvcp100.dll.so b/lib/wine/msvcp100.dll.so new file mode 100755 index 0000000..d6cd87c Binary files /dev/null and b/lib/wine/msvcp100.dll.so differ diff --git a/lib/wine/msvcp110.dll.so b/lib/wine/msvcp110.dll.so new file mode 100755 index 0000000..48e2f2d Binary files /dev/null and b/lib/wine/msvcp110.dll.so differ diff --git a/lib/wine/msvcp120.dll.so b/lib/wine/msvcp120.dll.so new file mode 100755 index 0000000..9f19ffa Binary files /dev/null and b/lib/wine/msvcp120.dll.so differ diff --git a/lib/wine/msvcp120_app.dll.so b/lib/wine/msvcp120_app.dll.so new file mode 100755 index 0000000..8ff80c3 Binary files /dev/null and b/lib/wine/msvcp120_app.dll.so differ diff --git a/lib/wine/msvcp140.dll.so b/lib/wine/msvcp140.dll.so new file mode 100755 index 0000000..68eeced Binary files /dev/null and b/lib/wine/msvcp140.dll.so differ diff --git a/lib/wine/msvcp60.dll.so b/lib/wine/msvcp60.dll.so new file mode 100755 index 0000000..167b463 Binary files /dev/null and b/lib/wine/msvcp60.dll.so differ diff --git a/lib/wine/msvcp70.dll.so b/lib/wine/msvcp70.dll.so new file mode 100755 index 0000000..23ed77b Binary files /dev/null and b/lib/wine/msvcp70.dll.so differ diff --git a/lib/wine/msvcp71.dll.so b/lib/wine/msvcp71.dll.so new file mode 100755 index 0000000..53d2c13 Binary files /dev/null and b/lib/wine/msvcp71.dll.so differ diff --git a/lib/wine/msvcp80.dll.so b/lib/wine/msvcp80.dll.so new file mode 100755 index 0000000..fb1027b Binary files /dev/null and b/lib/wine/msvcp80.dll.so differ diff --git a/lib/wine/msvcp90.dll.so b/lib/wine/msvcp90.dll.so new file mode 100755 index 0000000..8fc3cbd Binary files /dev/null and b/lib/wine/msvcp90.dll.so differ diff --git a/lib/wine/msvcr100.dll.so b/lib/wine/msvcr100.dll.so new file mode 100755 index 0000000..00fc02f Binary files /dev/null and b/lib/wine/msvcr100.dll.so differ diff --git a/lib/wine/msvcr110.dll.so b/lib/wine/msvcr110.dll.so new file mode 100755 index 0000000..38577ba Binary files /dev/null and b/lib/wine/msvcr110.dll.so differ diff --git a/lib/wine/msvcr120.dll.so b/lib/wine/msvcr120.dll.so new file mode 100755 index 0000000..020f2f5 Binary files /dev/null and b/lib/wine/msvcr120.dll.so differ diff --git a/lib/wine/msvcr120_app.dll.so b/lib/wine/msvcr120_app.dll.so new file mode 100755 index 0000000..dc820bd Binary files /dev/null and b/lib/wine/msvcr120_app.dll.so differ diff --git a/lib/wine/msvcr70.dll.so b/lib/wine/msvcr70.dll.so new file mode 100755 index 0000000..bdd7e15 Binary files /dev/null and b/lib/wine/msvcr70.dll.so differ diff --git a/lib/wine/msvcr71.dll.so b/lib/wine/msvcr71.dll.so new file mode 100755 index 0000000..727f64b Binary files /dev/null and b/lib/wine/msvcr71.dll.so differ diff --git a/lib/wine/msvcr80.dll.so b/lib/wine/msvcr80.dll.so new file mode 100755 index 0000000..c9fb619 Binary files /dev/null and b/lib/wine/msvcr80.dll.so differ diff --git a/lib/wine/msvcr90.dll.so b/lib/wine/msvcr90.dll.so new file mode 100755 index 0000000..54f9dff Binary files /dev/null and b/lib/wine/msvcr90.dll.so differ diff --git a/lib/wine/msvcrt.dll.so b/lib/wine/msvcrt.dll.so new file mode 100755 index 0000000..344aa53 Binary files /dev/null and b/lib/wine/msvcrt.dll.so differ diff --git a/lib/wine/msvcrt20.dll.so b/lib/wine/msvcrt20.dll.so new file mode 100755 index 0000000..7232bc1 Binary files /dev/null and b/lib/wine/msvcrt20.dll.so differ diff --git a/lib/wine/msvcrt40.dll.so b/lib/wine/msvcrt40.dll.so new file mode 100755 index 0000000..88c2c6a Binary files /dev/null and b/lib/wine/msvcrt40.dll.so differ diff --git a/lib/wine/msvcrtd.dll.so b/lib/wine/msvcrtd.dll.so new file mode 100755 index 0000000..cd3d231 Binary files /dev/null and b/lib/wine/msvcrtd.dll.so differ diff --git a/lib/wine/msvfw32.dll.so b/lib/wine/msvfw32.dll.so new file mode 100755 index 0000000..396ffd8 Binary files /dev/null and b/lib/wine/msvfw32.dll.so differ diff --git a/lib/wine/msvidc32.dll.so b/lib/wine/msvidc32.dll.so new file mode 100755 index 0000000..d91aff7 Binary files /dev/null and b/lib/wine/msvidc32.dll.so differ diff --git a/lib/wine/msvideo.dll16.so b/lib/wine/msvideo.dll16.so new file mode 100755 index 0000000..49c9eaf Binary files /dev/null and b/lib/wine/msvideo.dll16.so differ diff --git a/lib/wine/mswsock.dll.so b/lib/wine/mswsock.dll.so new file mode 100755 index 0000000..6e01780 Binary files /dev/null and b/lib/wine/mswsock.dll.so differ diff --git a/lib/wine/msxml.dll.so b/lib/wine/msxml.dll.so new file mode 100755 index 0000000..2b75444 Binary files /dev/null and b/lib/wine/msxml.dll.so differ diff --git a/lib/wine/msxml2.dll.so b/lib/wine/msxml2.dll.so new file mode 100755 index 0000000..f44b08d Binary files /dev/null and b/lib/wine/msxml2.dll.so differ diff --git a/lib/wine/msxml3.dll.so b/lib/wine/msxml3.dll.so new file mode 100755 index 0000000..374db37 Binary files /dev/null and b/lib/wine/msxml3.dll.so differ diff --git a/lib/wine/msxml4.dll.so b/lib/wine/msxml4.dll.so new file mode 100755 index 0000000..58de735 Binary files /dev/null and b/lib/wine/msxml4.dll.so differ diff --git a/lib/wine/msxml6.dll.so b/lib/wine/msxml6.dll.so new file mode 100755 index 0000000..55ef930 Binary files /dev/null and b/lib/wine/msxml6.dll.so differ diff --git a/lib/wine/mtxdm.dll.so b/lib/wine/mtxdm.dll.so new file mode 100755 index 0000000..613c12e Binary files /dev/null and b/lib/wine/mtxdm.dll.so differ diff --git a/lib/wine/ncrypt.dll.so b/lib/wine/ncrypt.dll.so new file mode 100755 index 0000000..9fb2e5e Binary files /dev/null and b/lib/wine/ncrypt.dll.so differ diff --git a/lib/wine/nddeapi.dll.so b/lib/wine/nddeapi.dll.so new file mode 100755 index 0000000..96b2a45 Binary files /dev/null and b/lib/wine/nddeapi.dll.so differ diff --git a/lib/wine/ndis.sys.so b/lib/wine/ndis.sys.so new file mode 100755 index 0000000..5ab1658 Binary files /dev/null and b/lib/wine/ndis.sys.so differ diff --git a/lib/wine/net.exe.so b/lib/wine/net.exe.so new file mode 100755 index 0000000..dd67fa9 Binary files /dev/null and b/lib/wine/net.exe.so differ diff --git a/lib/wine/netapi32.dll.so b/lib/wine/netapi32.dll.so new file mode 100755 index 0000000..4cee482 Binary files /dev/null and b/lib/wine/netapi32.dll.so differ diff --git a/lib/wine/netcfgx.dll.so b/lib/wine/netcfgx.dll.so new file mode 100755 index 0000000..dde6dfe Binary files /dev/null and b/lib/wine/netcfgx.dll.so differ diff --git a/lib/wine/netprofm.dll.so b/lib/wine/netprofm.dll.so new file mode 100755 index 0000000..2ccfb1c Binary files /dev/null and b/lib/wine/netprofm.dll.so differ diff --git a/lib/wine/netsh.exe.so b/lib/wine/netsh.exe.so new file mode 100755 index 0000000..63992f8 Binary files /dev/null and b/lib/wine/netsh.exe.so differ diff --git a/lib/wine/netstat.exe.so b/lib/wine/netstat.exe.so new file mode 100755 index 0000000..484ef22 Binary files /dev/null and b/lib/wine/netstat.exe.so differ diff --git a/lib/wine/newdev.dll.so b/lib/wine/newdev.dll.so new file mode 100755 index 0000000..ff89099 Binary files /dev/null and b/lib/wine/newdev.dll.so differ diff --git a/lib/wine/ngen.exe.so b/lib/wine/ngen.exe.so new file mode 100755 index 0000000..f569a89 Binary files /dev/null and b/lib/wine/ngen.exe.so differ diff --git a/lib/wine/ninput.dll.so b/lib/wine/ninput.dll.so new file mode 100755 index 0000000..6bf57e3 Binary files /dev/null and b/lib/wine/ninput.dll.so differ diff --git a/lib/wine/normaliz.dll.so b/lib/wine/normaliz.dll.so new file mode 100755 index 0000000..c5e59e2 Binary files /dev/null and b/lib/wine/normaliz.dll.so differ diff --git a/lib/wine/notepad.exe.so b/lib/wine/notepad.exe.so new file mode 100755 index 0000000..ccd5b60 Binary files /dev/null and b/lib/wine/notepad.exe.so differ diff --git a/lib/wine/npmshtml.dll.so b/lib/wine/npmshtml.dll.so new file mode 100755 index 0000000..bd04c1b Binary files /dev/null and b/lib/wine/npmshtml.dll.so differ diff --git a/lib/wine/npptools.dll.so b/lib/wine/npptools.dll.so new file mode 100755 index 0000000..737d637 Binary files /dev/null and b/lib/wine/npptools.dll.so differ diff --git a/lib/wine/ntdll.dll.so b/lib/wine/ntdll.dll.so new file mode 100755 index 0000000..adc689e Binary files /dev/null and b/lib/wine/ntdll.dll.so differ diff --git a/lib/wine/ntdsapi.dll.so b/lib/wine/ntdsapi.dll.so new file mode 100755 index 0000000..7dfdbbe Binary files /dev/null and b/lib/wine/ntdsapi.dll.so differ diff --git a/lib/wine/ntoskrnl.exe.so b/lib/wine/ntoskrnl.exe.so new file mode 100755 index 0000000..d08865b Binary files /dev/null and b/lib/wine/ntoskrnl.exe.so differ diff --git a/lib/wine/ntprint.dll.so b/lib/wine/ntprint.dll.so new file mode 100755 index 0000000..3e0c5d6 Binary files /dev/null and b/lib/wine/ntprint.dll.so differ diff --git a/lib/wine/nvapi.dll.so b/lib/wine/nvapi.dll.so new file mode 100755 index 0000000..04bf5c1 Binary files /dev/null and b/lib/wine/nvapi.dll.so differ diff --git a/lib/wine/nvcuda.dll.so b/lib/wine/nvcuda.dll.so new file mode 100755 index 0000000..350f9c5 Binary files /dev/null and b/lib/wine/nvcuda.dll.so differ diff --git a/lib/wine/nvcuvid.dll.so b/lib/wine/nvcuvid.dll.so new file mode 100755 index 0000000..6e5afd1 Binary files /dev/null and b/lib/wine/nvcuvid.dll.so differ diff --git a/lib/wine/nvencodeapi.dll.so b/lib/wine/nvencodeapi.dll.so new file mode 100755 index 0000000..e94ed81 Binary files /dev/null and b/lib/wine/nvencodeapi.dll.so differ diff --git a/lib/wine/objsel.dll.so b/lib/wine/objsel.dll.so new file mode 100755 index 0000000..dc14da6 Binary files /dev/null and b/lib/wine/objsel.dll.so differ diff --git a/lib/wine/odbc32.dll.so b/lib/wine/odbc32.dll.so new file mode 100755 index 0000000..03f7dad Binary files /dev/null and b/lib/wine/odbc32.dll.so differ diff --git a/lib/wine/odbccp32.dll.so b/lib/wine/odbccp32.dll.so new file mode 100755 index 0000000..777aadc Binary files /dev/null and b/lib/wine/odbccp32.dll.so differ diff --git a/lib/wine/odbccu32.dll.so b/lib/wine/odbccu32.dll.so new file mode 100755 index 0000000..d17bb9e Binary files /dev/null and b/lib/wine/odbccu32.dll.so differ diff --git a/lib/wine/ole2.dll16.so b/lib/wine/ole2.dll16.so new file mode 100755 index 0000000..0648679 Binary files /dev/null and b/lib/wine/ole2.dll16.so differ diff --git a/lib/wine/ole2conv.dll16.so b/lib/wine/ole2conv.dll16.so new file mode 100755 index 0000000..18edc7f Binary files /dev/null and b/lib/wine/ole2conv.dll16.so differ diff --git a/lib/wine/ole2disp.dll16.so b/lib/wine/ole2disp.dll16.so new file mode 100755 index 0000000..9bf6eab Binary files /dev/null and b/lib/wine/ole2disp.dll16.so differ diff --git a/lib/wine/ole2nls.dll16.so b/lib/wine/ole2nls.dll16.so new file mode 100755 index 0000000..2e375d6 Binary files /dev/null and b/lib/wine/ole2nls.dll16.so differ diff --git a/lib/wine/ole2prox.dll16.so b/lib/wine/ole2prox.dll16.so new file mode 100755 index 0000000..f1cf3e2 Binary files /dev/null and b/lib/wine/ole2prox.dll16.so differ diff --git a/lib/wine/ole2thk.dll16.so b/lib/wine/ole2thk.dll16.so new file mode 100755 index 0000000..c1827f5 Binary files /dev/null and b/lib/wine/ole2thk.dll16.so differ diff --git a/lib/wine/ole32.dll.so b/lib/wine/ole32.dll.so new file mode 100755 index 0000000..a0cfd8b Binary files /dev/null and b/lib/wine/ole32.dll.so differ diff --git a/lib/wine/oleacc.dll.so b/lib/wine/oleacc.dll.so new file mode 100755 index 0000000..bc1831e Binary files /dev/null and b/lib/wine/oleacc.dll.so differ diff --git a/lib/wine/oleaut32.dll.so b/lib/wine/oleaut32.dll.so new file mode 100755 index 0000000..dcdb83c Binary files /dev/null and b/lib/wine/oleaut32.dll.so differ diff --git a/lib/wine/olecli.dll16.so b/lib/wine/olecli.dll16.so new file mode 100755 index 0000000..09154ba Binary files /dev/null and b/lib/wine/olecli.dll16.so differ diff --git a/lib/wine/olecli32.dll.so b/lib/wine/olecli32.dll.so new file mode 100755 index 0000000..6aa97d3 Binary files /dev/null and b/lib/wine/olecli32.dll.so differ diff --git a/lib/wine/oledb32.dll.so b/lib/wine/oledb32.dll.so new file mode 100755 index 0000000..6384e5b Binary files /dev/null and b/lib/wine/oledb32.dll.so differ diff --git a/lib/wine/oledlg.dll.so b/lib/wine/oledlg.dll.so new file mode 100755 index 0000000..df8951f Binary files /dev/null and b/lib/wine/oledlg.dll.so differ diff --git a/lib/wine/olepro32.dll.so b/lib/wine/olepro32.dll.so new file mode 100755 index 0000000..28a7314 Binary files /dev/null and b/lib/wine/olepro32.dll.so differ diff --git a/lib/wine/olesvr.dll16.so b/lib/wine/olesvr.dll16.so new file mode 100755 index 0000000..1cb0b53 Binary files /dev/null and b/lib/wine/olesvr.dll16.so differ diff --git a/lib/wine/olesvr32.dll.so b/lib/wine/olesvr32.dll.so new file mode 100755 index 0000000..a1e94d0 Binary files /dev/null and b/lib/wine/olesvr32.dll.so differ diff --git a/lib/wine/olethk32.dll.so b/lib/wine/olethk32.dll.so new file mode 100755 index 0000000..6b6e5df Binary files /dev/null and b/lib/wine/olethk32.dll.so differ diff --git a/lib/wine/oleview.exe.so b/lib/wine/oleview.exe.so new file mode 100755 index 0000000..468e18e Binary files /dev/null and b/lib/wine/oleview.exe.so differ diff --git a/lib/wine/opcservices.dll.so b/lib/wine/opcservices.dll.so new file mode 100755 index 0000000..73b2fcb Binary files /dev/null and b/lib/wine/opcservices.dll.so differ diff --git a/lib/wine/openal32.dll.so b/lib/wine/openal32.dll.so new file mode 100755 index 0000000..f03c499 Binary files /dev/null and b/lib/wine/openal32.dll.so differ diff --git a/lib/wine/opencl.dll.so b/lib/wine/opencl.dll.so new file mode 100755 index 0000000..71f144b Binary files /dev/null and b/lib/wine/opencl.dll.so differ diff --git a/lib/wine/opengl32.dll.so b/lib/wine/opengl32.dll.so new file mode 100755 index 0000000..c6844aa Binary files /dev/null and b/lib/wine/opengl32.dll.so differ diff --git a/lib/wine/packager.dll.so b/lib/wine/packager.dll.so new file mode 100755 index 0000000..0400a34 Binary files /dev/null and b/lib/wine/packager.dll.so differ diff --git a/lib/wine/pdh.dll.so b/lib/wine/pdh.dll.so new file mode 100755 index 0000000..d41f6bb Binary files /dev/null and b/lib/wine/pdh.dll.so differ diff --git a/lib/wine/photometadatahandler.dll.so b/lib/wine/photometadatahandler.dll.so new file mode 100755 index 0000000..b2fbb95 Binary files /dev/null and b/lib/wine/photometadatahandler.dll.so differ diff --git a/lib/wine/pidgen.dll.so b/lib/wine/pidgen.dll.so new file mode 100755 index 0000000..82c49ed Binary files /dev/null and b/lib/wine/pidgen.dll.so differ diff --git a/lib/wine/ping.exe.so b/lib/wine/ping.exe.so new file mode 100755 index 0000000..113f381 Binary files /dev/null and b/lib/wine/ping.exe.so differ diff --git a/lib/wine/plugplay.exe.so b/lib/wine/plugplay.exe.so new file mode 100755 index 0000000..100d1eb Binary files /dev/null and b/lib/wine/plugplay.exe.so differ diff --git a/lib/wine/powershell.exe.so b/lib/wine/powershell.exe.so new file mode 100755 index 0000000..da3f107 Binary files /dev/null and b/lib/wine/powershell.exe.so differ diff --git a/lib/wine/powrprof.dll.so b/lib/wine/powrprof.dll.so new file mode 100755 index 0000000..0f5f9fa Binary files /dev/null and b/lib/wine/powrprof.dll.so differ diff --git a/lib/wine/presentationfontcache.exe.so b/lib/wine/presentationfontcache.exe.so new file mode 100755 index 0000000..f965911 Binary files /dev/null and b/lib/wine/presentationfontcache.exe.so differ diff --git a/lib/wine/printui.dll.so b/lib/wine/printui.dll.so new file mode 100755 index 0000000..2e7f2b0 Binary files /dev/null and b/lib/wine/printui.dll.so differ diff --git a/lib/wine/prntvpt.dll.so b/lib/wine/prntvpt.dll.so new file mode 100755 index 0000000..a6d0904 Binary files /dev/null and b/lib/wine/prntvpt.dll.so differ diff --git a/lib/wine/progman.exe.so b/lib/wine/progman.exe.so new file mode 100755 index 0000000..502ef79 Binary files /dev/null and b/lib/wine/progman.exe.so differ diff --git a/lib/wine/propsys.dll.so b/lib/wine/propsys.dll.so new file mode 100755 index 0000000..95cbbc8 Binary files /dev/null and b/lib/wine/propsys.dll.so differ diff --git a/lib/wine/psapi.dll.so b/lib/wine/psapi.dll.so new file mode 100755 index 0000000..1d3cbe0 Binary files /dev/null and b/lib/wine/psapi.dll.so differ diff --git a/lib/wine/pstorec.dll.so b/lib/wine/pstorec.dll.so new file mode 100755 index 0000000..ab22712 Binary files /dev/null and b/lib/wine/pstorec.dll.so differ diff --git a/lib/wine/qcap.dll.so b/lib/wine/qcap.dll.so new file mode 100755 index 0000000..0f70b95 Binary files /dev/null and b/lib/wine/qcap.dll.so differ diff --git a/lib/wine/qedit.dll.so b/lib/wine/qedit.dll.so new file mode 100755 index 0000000..fd73cdb Binary files /dev/null and b/lib/wine/qedit.dll.so differ diff --git a/lib/wine/qmgr.dll.so b/lib/wine/qmgr.dll.so new file mode 100755 index 0000000..49f754a Binary files /dev/null and b/lib/wine/qmgr.dll.so differ diff --git a/lib/wine/qmgrprxy.dll.so b/lib/wine/qmgrprxy.dll.so new file mode 100755 index 0000000..ef4b419 Binary files /dev/null and b/lib/wine/qmgrprxy.dll.so differ diff --git a/lib/wine/quartz.dll.so b/lib/wine/quartz.dll.so new file mode 100755 index 0000000..7353016 Binary files /dev/null and b/lib/wine/quartz.dll.so differ diff --git a/lib/wine/query.dll.so b/lib/wine/query.dll.so new file mode 100755 index 0000000..41558d4 Binary files /dev/null and b/lib/wine/query.dll.so differ diff --git a/lib/wine/qwave.dll.so b/lib/wine/qwave.dll.so new file mode 100755 index 0000000..329c538 Binary files /dev/null and b/lib/wine/qwave.dll.so differ diff --git a/lib/wine/rasapi16.dll16.so b/lib/wine/rasapi16.dll16.so new file mode 100755 index 0000000..56242aa Binary files /dev/null and b/lib/wine/rasapi16.dll16.so differ diff --git a/lib/wine/rasapi32.dll.so b/lib/wine/rasapi32.dll.so new file mode 100755 index 0000000..038bef3 Binary files /dev/null and b/lib/wine/rasapi32.dll.so differ diff --git a/lib/wine/rasdlg.dll.so b/lib/wine/rasdlg.dll.so new file mode 100755 index 0000000..8b69913 Binary files /dev/null and b/lib/wine/rasdlg.dll.so differ diff --git a/lib/wine/reg.exe.so b/lib/wine/reg.exe.so new file mode 100755 index 0000000..46e1dc3 Binary files /dev/null and b/lib/wine/reg.exe.so differ diff --git a/lib/wine/regapi.dll.so b/lib/wine/regapi.dll.so new file mode 100755 index 0000000..b5d0bf1 Binary files /dev/null and b/lib/wine/regapi.dll.so differ diff --git a/lib/wine/regasm.exe.so b/lib/wine/regasm.exe.so new file mode 100755 index 0000000..bc068d8 Binary files /dev/null and b/lib/wine/regasm.exe.so differ diff --git a/lib/wine/regedit.exe.so b/lib/wine/regedit.exe.so new file mode 100755 index 0000000..ef59fc5 Binary files /dev/null and b/lib/wine/regedit.exe.so differ diff --git a/lib/wine/regsvcs.exe.so b/lib/wine/regsvcs.exe.so new file mode 100755 index 0000000..e51e11b Binary files /dev/null and b/lib/wine/regsvcs.exe.so differ diff --git a/lib/wine/regsvr32.exe.so b/lib/wine/regsvr32.exe.so new file mode 100755 index 0000000..b5d9232 Binary files /dev/null and b/lib/wine/regsvr32.exe.so differ diff --git a/lib/wine/resutils.dll.so b/lib/wine/resutils.dll.so new file mode 100755 index 0000000..3a3e77e Binary files /dev/null and b/lib/wine/resutils.dll.so differ diff --git a/lib/wine/riched20.dll.so b/lib/wine/riched20.dll.so new file mode 100755 index 0000000..68f18ff Binary files /dev/null and b/lib/wine/riched20.dll.so differ diff --git a/lib/wine/riched32.dll.so b/lib/wine/riched32.dll.so new file mode 100755 index 0000000..3f78a70 Binary files /dev/null and b/lib/wine/riched32.dll.so differ diff --git a/lib/wine/rpcrt4.dll.so b/lib/wine/rpcrt4.dll.so new file mode 100755 index 0000000..eaa9b66 Binary files /dev/null and b/lib/wine/rpcrt4.dll.so differ diff --git a/lib/wine/rpcss.exe.so b/lib/wine/rpcss.exe.so new file mode 100755 index 0000000..e4dabed Binary files /dev/null and b/lib/wine/rpcss.exe.so differ diff --git a/lib/wine/rsabase.dll.so b/lib/wine/rsabase.dll.so new file mode 100755 index 0000000..b40d558 Binary files /dev/null and b/lib/wine/rsabase.dll.so differ diff --git a/lib/wine/rsaenh.dll.so b/lib/wine/rsaenh.dll.so new file mode 100755 index 0000000..2ee53e2 Binary files /dev/null and b/lib/wine/rsaenh.dll.so differ diff --git a/lib/wine/rstrtmgr.dll.so b/lib/wine/rstrtmgr.dll.so new file mode 100755 index 0000000..833367e Binary files /dev/null and b/lib/wine/rstrtmgr.dll.so differ diff --git a/lib/wine/rtutils.dll.so b/lib/wine/rtutils.dll.so new file mode 100755 index 0000000..904115a Binary files /dev/null and b/lib/wine/rtutils.dll.so differ diff --git a/lib/wine/runas.exe.so b/lib/wine/runas.exe.so new file mode 100755 index 0000000..c4e42d9 Binary files /dev/null and b/lib/wine/runas.exe.so differ diff --git a/lib/wine/rundll.exe16.so b/lib/wine/rundll.exe16.so new file mode 100755 index 0000000..24dc4ef Binary files /dev/null and b/lib/wine/rundll.exe16.so differ diff --git a/lib/wine/rundll32.exe.so b/lib/wine/rundll32.exe.so new file mode 100755 index 0000000..1453968 Binary files /dev/null and b/lib/wine/rundll32.exe.so differ diff --git a/lib/wine/samlib.dll.so b/lib/wine/samlib.dll.so new file mode 100755 index 0000000..8a8e7f3 Binary files /dev/null and b/lib/wine/samlib.dll.so differ diff --git a/lib/wine/sane.ds.so b/lib/wine/sane.ds.so new file mode 100755 index 0000000..1720656 Binary files /dev/null and b/lib/wine/sane.ds.so differ diff --git a/lib/wine/sapi.dll.so b/lib/wine/sapi.dll.so new file mode 100755 index 0000000..88fb866 Binary files /dev/null and b/lib/wine/sapi.dll.so differ diff --git a/lib/wine/sas.dll.so b/lib/wine/sas.dll.so new file mode 100755 index 0000000..7ca9041 Binary files /dev/null and b/lib/wine/sas.dll.so differ diff --git a/lib/wine/sc.exe.so b/lib/wine/sc.exe.so new file mode 100755 index 0000000..9db5e9e Binary files /dev/null and b/lib/wine/sc.exe.so differ diff --git a/lib/wine/scarddlg.dll.so b/lib/wine/scarddlg.dll.so new file mode 100755 index 0000000..6140890 Binary files /dev/null and b/lib/wine/scarddlg.dll.so differ diff --git a/lib/wine/sccbase.dll.so b/lib/wine/sccbase.dll.so new file mode 100755 index 0000000..8fe7066 Binary files /dev/null and b/lib/wine/sccbase.dll.so differ diff --git a/lib/wine/schannel.dll.so b/lib/wine/schannel.dll.so new file mode 100755 index 0000000..6c91cac Binary files /dev/null and b/lib/wine/schannel.dll.so differ diff --git a/lib/wine/schedsvc.dll.so b/lib/wine/schedsvc.dll.so new file mode 100755 index 0000000..dde24a5 Binary files /dev/null and b/lib/wine/schedsvc.dll.so differ diff --git a/lib/wine/schtasks.exe.so b/lib/wine/schtasks.exe.so new file mode 100755 index 0000000..ef405ed Binary files /dev/null and b/lib/wine/schtasks.exe.so differ diff --git a/lib/wine/scrobj.dll.so b/lib/wine/scrobj.dll.so new file mode 100755 index 0000000..216b79c Binary files /dev/null and b/lib/wine/scrobj.dll.so differ diff --git a/lib/wine/scrrun.dll.so b/lib/wine/scrrun.dll.so new file mode 100755 index 0000000..f3ad9b5 Binary files /dev/null and b/lib/wine/scrrun.dll.so differ diff --git a/lib/wine/scsiport.sys.so b/lib/wine/scsiport.sys.so new file mode 100755 index 0000000..054279b Binary files /dev/null and b/lib/wine/scsiport.sys.so differ diff --git a/lib/wine/sdbinst.exe.so b/lib/wine/sdbinst.exe.so new file mode 100755 index 0000000..d65115b Binary files /dev/null and b/lib/wine/sdbinst.exe.so differ diff --git a/lib/wine/secedit.exe.so b/lib/wine/secedit.exe.so new file mode 100755 index 0000000..a399234 Binary files /dev/null and b/lib/wine/secedit.exe.so differ diff --git a/lib/wine/secur32.dll.so b/lib/wine/secur32.dll.so new file mode 100755 index 0000000..151b6df Binary files /dev/null and b/lib/wine/secur32.dll.so differ diff --git a/lib/wine/security.dll.so b/lib/wine/security.dll.so new file mode 100755 index 0000000..e0a7c53 Binary files /dev/null and b/lib/wine/security.dll.so differ diff --git a/lib/wine/sensapi.dll.so b/lib/wine/sensapi.dll.so new file mode 100755 index 0000000..45288c6 Binary files /dev/null and b/lib/wine/sensapi.dll.so differ diff --git a/lib/wine/serialui.dll.so b/lib/wine/serialui.dll.so new file mode 100755 index 0000000..3780bed Binary files /dev/null and b/lib/wine/serialui.dll.so differ diff --git a/lib/wine/servicemodelreg.exe.so b/lib/wine/servicemodelreg.exe.so new file mode 100755 index 0000000..e83dda1 Binary files /dev/null and b/lib/wine/servicemodelreg.exe.so differ diff --git a/lib/wine/services.exe.so b/lib/wine/services.exe.so new file mode 100755 index 0000000..1a9e933 Binary files /dev/null and b/lib/wine/services.exe.so differ diff --git a/lib/wine/setupapi.dll.so b/lib/wine/setupapi.dll.so new file mode 100755 index 0000000..37ccb16 Binary files /dev/null and b/lib/wine/setupapi.dll.so differ diff --git a/lib/wine/setupx.dll16.so b/lib/wine/setupx.dll16.so new file mode 100755 index 0000000..5066d03 Binary files /dev/null and b/lib/wine/setupx.dll16.so differ diff --git a/lib/wine/sfc.dll.so b/lib/wine/sfc.dll.so new file mode 100755 index 0000000..64b60d0 Binary files /dev/null and b/lib/wine/sfc.dll.so differ diff --git a/lib/wine/sfc_os.dll.so b/lib/wine/sfc_os.dll.so new file mode 100755 index 0000000..58db92c Binary files /dev/null and b/lib/wine/sfc_os.dll.so differ diff --git a/lib/wine/shcore.dll.so b/lib/wine/shcore.dll.so new file mode 100755 index 0000000..b104222 Binary files /dev/null and b/lib/wine/shcore.dll.so differ diff --git a/lib/wine/shdoclc.dll.so b/lib/wine/shdoclc.dll.so new file mode 100755 index 0000000..892fad1 Binary files /dev/null and b/lib/wine/shdoclc.dll.so differ diff --git a/lib/wine/shdocvw.dll.so b/lib/wine/shdocvw.dll.so new file mode 100755 index 0000000..ed8515b Binary files /dev/null and b/lib/wine/shdocvw.dll.so differ diff --git a/lib/wine/shell.dll16.so b/lib/wine/shell.dll16.so new file mode 100755 index 0000000..f4728a0 Binary files /dev/null and b/lib/wine/shell.dll16.so differ diff --git a/lib/wine/shell32.dll.so b/lib/wine/shell32.dll.so new file mode 100755 index 0000000..3437f6d Binary files /dev/null and b/lib/wine/shell32.dll.so differ diff --git a/lib/wine/shfolder.dll.so b/lib/wine/shfolder.dll.so new file mode 100755 index 0000000..f6b2113 Binary files /dev/null and b/lib/wine/shfolder.dll.so differ diff --git a/lib/wine/shlwapi.dll.so b/lib/wine/shlwapi.dll.so new file mode 100755 index 0000000..49fa3ce Binary files /dev/null and b/lib/wine/shlwapi.dll.so differ diff --git a/lib/wine/shutdown.exe.so b/lib/wine/shutdown.exe.so new file mode 100755 index 0000000..f00320f Binary files /dev/null and b/lib/wine/shutdown.exe.so differ diff --git a/lib/wine/slbcsp.dll.so b/lib/wine/slbcsp.dll.so new file mode 100755 index 0000000..a002cb8 Binary files /dev/null and b/lib/wine/slbcsp.dll.so differ diff --git a/lib/wine/slc.dll.so b/lib/wine/slc.dll.so new file mode 100755 index 0000000..0575203 Binary files /dev/null and b/lib/wine/slc.dll.so differ diff --git a/lib/wine/snmpapi.dll.so b/lib/wine/snmpapi.dll.so new file mode 100755 index 0000000..58879ee Binary files /dev/null and b/lib/wine/snmpapi.dll.so differ diff --git a/lib/wine/softpub.dll.so b/lib/wine/softpub.dll.so new file mode 100755 index 0000000..276b089 Binary files /dev/null and b/lib/wine/softpub.dll.so differ diff --git a/lib/wine/sound.drv16.so b/lib/wine/sound.drv16.so new file mode 100755 index 0000000..7022320 Binary files /dev/null and b/lib/wine/sound.drv16.so differ diff --git a/lib/wine/spoolss.dll.so b/lib/wine/spoolss.dll.so new file mode 100755 index 0000000..06e11a0 Binary files /dev/null and b/lib/wine/spoolss.dll.so differ diff --git a/lib/wine/spoolsv.exe.so b/lib/wine/spoolsv.exe.so new file mode 100755 index 0000000..0ccb1b6 Binary files /dev/null and b/lib/wine/spoolsv.exe.so differ diff --git a/lib/wine/srclient.dll.so b/lib/wine/srclient.dll.so new file mode 100755 index 0000000..6e6707e Binary files /dev/null and b/lib/wine/srclient.dll.so differ diff --git a/lib/wine/sspicli.dll.so b/lib/wine/sspicli.dll.so new file mode 100755 index 0000000..81abc0b Binary files /dev/null and b/lib/wine/sspicli.dll.so differ diff --git a/lib/wine/start.exe.so b/lib/wine/start.exe.so new file mode 100755 index 0000000..bad433c Binary files /dev/null and b/lib/wine/start.exe.so differ diff --git a/lib/wine/stdole2.tlb.so b/lib/wine/stdole2.tlb.so new file mode 100755 index 0000000..106fad1 Binary files /dev/null and b/lib/wine/stdole2.tlb.so differ diff --git a/lib/wine/stdole32.tlb.so b/lib/wine/stdole32.tlb.so new file mode 100755 index 0000000..2d6e524 Binary files /dev/null and b/lib/wine/stdole32.tlb.so differ diff --git a/lib/wine/sti.dll.so b/lib/wine/sti.dll.so new file mode 100755 index 0000000..7062c0c Binary files /dev/null and b/lib/wine/sti.dll.so differ diff --git a/lib/wine/storage.dll16.so b/lib/wine/storage.dll16.so new file mode 100755 index 0000000..17da4e3 Binary files /dev/null and b/lib/wine/storage.dll16.so differ diff --git a/lib/wine/stress.dll16.so b/lib/wine/stress.dll16.so new file mode 100755 index 0000000..ebdca9b Binary files /dev/null and b/lib/wine/stress.dll16.so differ diff --git a/lib/wine/strmdll.dll.so b/lib/wine/strmdll.dll.so new file mode 100755 index 0000000..a1e748e Binary files /dev/null and b/lib/wine/strmdll.dll.so differ diff --git a/lib/wine/subst.exe.so b/lib/wine/subst.exe.so new file mode 100755 index 0000000..8dcc7fd Binary files /dev/null and b/lib/wine/subst.exe.so differ diff --git a/lib/wine/svchost.exe.so b/lib/wine/svchost.exe.so new file mode 100755 index 0000000..753ed49 Binary files /dev/null and b/lib/wine/svchost.exe.so differ diff --git a/lib/wine/svrapi.dll.so b/lib/wine/svrapi.dll.so new file mode 100755 index 0000000..7a698bc Binary files /dev/null and b/lib/wine/svrapi.dll.so differ diff --git a/lib/wine/sxs.dll.so b/lib/wine/sxs.dll.so new file mode 100755 index 0000000..3f2b8b9 Binary files /dev/null and b/lib/wine/sxs.dll.so differ diff --git a/lib/wine/system.drv16.so b/lib/wine/system.drv16.so new file mode 100755 index 0000000..32a7720 Binary files /dev/null and b/lib/wine/system.drv16.so differ diff --git a/lib/wine/systeminfo.exe.so b/lib/wine/systeminfo.exe.so new file mode 100755 index 0000000..1403028 Binary files /dev/null and b/lib/wine/systeminfo.exe.so differ diff --git a/lib/wine/t2embed.dll.so b/lib/wine/t2embed.dll.so new file mode 100755 index 0000000..df7cc13 Binary files /dev/null and b/lib/wine/t2embed.dll.so differ diff --git a/lib/wine/tapi32.dll.so b/lib/wine/tapi32.dll.so new file mode 100755 index 0000000..02ecb0a Binary files /dev/null and b/lib/wine/tapi32.dll.so differ diff --git a/lib/wine/taskkill.exe.so b/lib/wine/taskkill.exe.so new file mode 100755 index 0000000..aba7ff6 Binary files /dev/null and b/lib/wine/taskkill.exe.so differ diff --git a/lib/wine/tasklist.exe.so b/lib/wine/tasklist.exe.so new file mode 100755 index 0000000..ac8b462 Binary files /dev/null and b/lib/wine/tasklist.exe.so differ diff --git a/lib/wine/taskmgr.exe.so b/lib/wine/taskmgr.exe.so new file mode 100755 index 0000000..7a0b368 Binary files /dev/null and b/lib/wine/taskmgr.exe.so differ diff --git a/lib/wine/taskschd.dll.so b/lib/wine/taskschd.dll.so new file mode 100755 index 0000000..5cbb235 Binary files /dev/null and b/lib/wine/taskschd.dll.so differ diff --git a/lib/wine/tdh.dll.so b/lib/wine/tdh.dll.so new file mode 100755 index 0000000..6c0182f Binary files /dev/null and b/lib/wine/tdh.dll.so differ diff --git a/lib/wine/tdi.sys.so b/lib/wine/tdi.sys.so new file mode 100755 index 0000000..e7e5180 Binary files /dev/null and b/lib/wine/tdi.sys.so differ diff --git a/lib/wine/termsv.exe.so b/lib/wine/termsv.exe.so new file mode 100755 index 0000000..b9db333 Binary files /dev/null and b/lib/wine/termsv.exe.so differ diff --git a/lib/wine/toolhelp.dll16.so b/lib/wine/toolhelp.dll16.so new file mode 100755 index 0000000..e01c475 Binary files /dev/null and b/lib/wine/toolhelp.dll16.so differ diff --git a/lib/wine/traffic.dll.so b/lib/wine/traffic.dll.so new file mode 100755 index 0000000..787c642 Binary files /dev/null and b/lib/wine/traffic.dll.so differ diff --git a/lib/wine/twain.dll16.so b/lib/wine/twain.dll16.so new file mode 100755 index 0000000..4ae8707 Binary files /dev/null and b/lib/wine/twain.dll16.so differ diff --git a/lib/wine/twain_32.dll.so b/lib/wine/twain_32.dll.so new file mode 100755 index 0000000..1dcfb07 Binary files /dev/null and b/lib/wine/twain_32.dll.so differ diff --git a/lib/wine/typelib.dll16.so b/lib/wine/typelib.dll16.so new file mode 100755 index 0000000..026b6ca Binary files /dev/null and b/lib/wine/typelib.dll16.so differ diff --git a/lib/wine/tzres.dll.so b/lib/wine/tzres.dll.so new file mode 100755 index 0000000..d462f3b Binary files /dev/null and b/lib/wine/tzres.dll.so differ diff --git a/lib/wine/ucrtbase.dll.so b/lib/wine/ucrtbase.dll.so new file mode 100755 index 0000000..bfee6ef Binary files /dev/null and b/lib/wine/ucrtbase.dll.so differ diff --git a/lib/wine/uianimation.dll.so b/lib/wine/uianimation.dll.so new file mode 100755 index 0000000..a1cc0ff Binary files /dev/null and b/lib/wine/uianimation.dll.so differ diff --git a/lib/wine/uiautomationcore.dll.so b/lib/wine/uiautomationcore.dll.so new file mode 100755 index 0000000..9f2f48c Binary files /dev/null and b/lib/wine/uiautomationcore.dll.so differ diff --git a/lib/wine/uiribbon.dll.so b/lib/wine/uiribbon.dll.so new file mode 100755 index 0000000..c7f97eb Binary files /dev/null and b/lib/wine/uiribbon.dll.so differ diff --git a/lib/wine/unicows.dll.so b/lib/wine/unicows.dll.so new file mode 100755 index 0000000..45c193a Binary files /dev/null and b/lib/wine/unicows.dll.so differ diff --git a/lib/wine/uninstaller.exe.so b/lib/wine/uninstaller.exe.so new file mode 100755 index 0000000..61e62ed Binary files /dev/null and b/lib/wine/uninstaller.exe.so differ diff --git a/lib/wine/unlodctr.exe.so b/lib/wine/unlodctr.exe.so new file mode 100755 index 0000000..f2d2268 Binary files /dev/null and b/lib/wine/unlodctr.exe.so differ diff --git a/lib/wine/updspapi.dll.so b/lib/wine/updspapi.dll.so new file mode 100755 index 0000000..19672c5 Binary files /dev/null and b/lib/wine/updspapi.dll.so differ diff --git a/lib/wine/url.dll.so b/lib/wine/url.dll.so new file mode 100755 index 0000000..b1e2f96 Binary files /dev/null and b/lib/wine/url.dll.so differ diff --git a/lib/wine/urlmon.dll.so b/lib/wine/urlmon.dll.so new file mode 100755 index 0000000..462b13f Binary files /dev/null and b/lib/wine/urlmon.dll.so differ diff --git a/lib/wine/usbd.sys.so b/lib/wine/usbd.sys.so new file mode 100755 index 0000000..76df6ed Binary files /dev/null and b/lib/wine/usbd.sys.so differ diff --git a/lib/wine/user.exe16.so b/lib/wine/user.exe16.so new file mode 100755 index 0000000..84d1704 Binary files /dev/null and b/lib/wine/user.exe16.so differ diff --git a/lib/wine/user32.dll.so b/lib/wine/user32.dll.so new file mode 100755 index 0000000..5728fa2 Binary files /dev/null and b/lib/wine/user32.dll.so differ diff --git a/lib/wine/userenv.dll.so b/lib/wine/userenv.dll.so new file mode 100755 index 0000000..6c9a1bd Binary files /dev/null and b/lib/wine/userenv.dll.so differ diff --git a/lib/wine/usp10.dll.so b/lib/wine/usp10.dll.so new file mode 100755 index 0000000..967dc68 Binary files /dev/null and b/lib/wine/usp10.dll.so differ diff --git a/lib/wine/uxtheme.dll.so b/lib/wine/uxtheme.dll.so new file mode 100755 index 0000000..231a64e Binary files /dev/null and b/lib/wine/uxtheme.dll.so differ diff --git a/lib/wine/vbscript.dll.so b/lib/wine/vbscript.dll.so new file mode 100755 index 0000000..a8f3fb3 Binary files /dev/null and b/lib/wine/vbscript.dll.so differ diff --git a/lib/wine/vcomp.dll.so b/lib/wine/vcomp.dll.so new file mode 100755 index 0000000..a853a13 Binary files /dev/null and b/lib/wine/vcomp.dll.so differ diff --git a/lib/wine/vcomp100.dll.so b/lib/wine/vcomp100.dll.so new file mode 100755 index 0000000..fde758e Binary files /dev/null and b/lib/wine/vcomp100.dll.so differ diff --git a/lib/wine/vcomp110.dll.so b/lib/wine/vcomp110.dll.so new file mode 100755 index 0000000..301e746 Binary files /dev/null and b/lib/wine/vcomp110.dll.so differ diff --git a/lib/wine/vcomp120.dll.so b/lib/wine/vcomp120.dll.so new file mode 100755 index 0000000..408a924 Binary files /dev/null and b/lib/wine/vcomp120.dll.so differ diff --git a/lib/wine/vcomp140.dll.so b/lib/wine/vcomp140.dll.so new file mode 100755 index 0000000..409dfe2 Binary files /dev/null and b/lib/wine/vcomp140.dll.so differ diff --git a/lib/wine/vcomp90.dll.so b/lib/wine/vcomp90.dll.so new file mode 100755 index 0000000..92bea59 Binary files /dev/null and b/lib/wine/vcomp90.dll.so differ diff --git a/lib/wine/vcruntime140.dll.so b/lib/wine/vcruntime140.dll.so new file mode 100755 index 0000000..3685672 Binary files /dev/null and b/lib/wine/vcruntime140.dll.so differ diff --git a/lib/wine/vdhcp.vxd.so b/lib/wine/vdhcp.vxd.so new file mode 100755 index 0000000..da0f82b Binary files /dev/null and b/lib/wine/vdhcp.vxd.so differ diff --git a/lib/wine/vdmdbg.dll.so b/lib/wine/vdmdbg.dll.so new file mode 100755 index 0000000..815f662 Binary files /dev/null and b/lib/wine/vdmdbg.dll.so differ diff --git a/lib/wine/ver.dll16.so b/lib/wine/ver.dll16.so new file mode 100755 index 0000000..8fbef41 Binary files /dev/null and b/lib/wine/ver.dll16.so differ diff --git a/lib/wine/version.dll.so b/lib/wine/version.dll.so new file mode 100755 index 0000000..9855492 Binary files /dev/null and b/lib/wine/version.dll.so differ diff --git a/lib/wine/view.exe.so b/lib/wine/view.exe.so new file mode 100755 index 0000000..7f8e03c Binary files /dev/null and b/lib/wine/view.exe.so differ diff --git a/lib/wine/virtdisk.dll.so b/lib/wine/virtdisk.dll.so new file mode 100755 index 0000000..f0b5066 Binary files /dev/null and b/lib/wine/virtdisk.dll.so differ diff --git a/lib/wine/vmm.vxd.so b/lib/wine/vmm.vxd.so new file mode 100755 index 0000000..c2716c5 Binary files /dev/null and b/lib/wine/vmm.vxd.so differ diff --git a/lib/wine/vnbt.vxd.so b/lib/wine/vnbt.vxd.so new file mode 100755 index 0000000..69fe3b1 Binary files /dev/null and b/lib/wine/vnbt.vxd.so differ diff --git a/lib/wine/vnetbios.vxd.so b/lib/wine/vnetbios.vxd.so new file mode 100755 index 0000000..b91c43a Binary files /dev/null and b/lib/wine/vnetbios.vxd.so differ diff --git a/lib/wine/vssapi.dll.so b/lib/wine/vssapi.dll.so new file mode 100755 index 0000000..40b6eb6 Binary files /dev/null and b/lib/wine/vssapi.dll.so differ diff --git a/lib/wine/vtdapi.vxd.so b/lib/wine/vtdapi.vxd.so new file mode 100755 index 0000000..654cd91 Binary files /dev/null and b/lib/wine/vtdapi.vxd.so differ diff --git a/lib/wine/vulkan-1.dll.so b/lib/wine/vulkan-1.dll.so new file mode 100755 index 0000000..642f1f5 Binary files /dev/null and b/lib/wine/vulkan-1.dll.so differ diff --git a/lib/wine/vwin32.vxd.so b/lib/wine/vwin32.vxd.so new file mode 100755 index 0000000..3c87bf5 Binary files /dev/null and b/lib/wine/vwin32.vxd.so differ diff --git a/lib/wine/w32skrnl.dll.so b/lib/wine/w32skrnl.dll.so new file mode 100755 index 0000000..640c91b Binary files /dev/null and b/lib/wine/w32skrnl.dll.so differ diff --git a/lib/wine/w32sys.dll16.so b/lib/wine/w32sys.dll16.so new file mode 100755 index 0000000..e1d4399 Binary files /dev/null and b/lib/wine/w32sys.dll16.so differ diff --git a/lib/wine/wbemdisp.dll.so b/lib/wine/wbemdisp.dll.so new file mode 100755 index 0000000..59fbc29 Binary files /dev/null and b/lib/wine/wbemdisp.dll.so differ diff --git a/lib/wine/wbemprox.dll.so b/lib/wine/wbemprox.dll.so new file mode 100755 index 0000000..ff9060c Binary files /dev/null and b/lib/wine/wbemprox.dll.so differ diff --git a/lib/wine/wdscore.dll.so b/lib/wine/wdscore.dll.so new file mode 100755 index 0000000..cdd17e2 Binary files /dev/null and b/lib/wine/wdscore.dll.so differ diff --git a/lib/wine/webservices.dll.so b/lib/wine/webservices.dll.so new file mode 100755 index 0000000..dd45f33 Binary files /dev/null and b/lib/wine/webservices.dll.so differ diff --git a/lib/wine/wer.dll.so b/lib/wine/wer.dll.so new file mode 100755 index 0000000..a093196 Binary files /dev/null and b/lib/wine/wer.dll.so differ diff --git a/lib/wine/wevtapi.dll.so b/lib/wine/wevtapi.dll.so new file mode 100755 index 0000000..99f197d Binary files /dev/null and b/lib/wine/wevtapi.dll.so differ diff --git a/lib/wine/wevtutil.exe.so b/lib/wine/wevtutil.exe.so new file mode 100755 index 0000000..fb75f89 Binary files /dev/null and b/lib/wine/wevtutil.exe.so differ diff --git a/lib/wine/wiaservc.dll.so b/lib/wine/wiaservc.dll.so new file mode 100755 index 0000000..18fc5b1 Binary files /dev/null and b/lib/wine/wiaservc.dll.so differ diff --git a/lib/wine/wimgapi.dll.so b/lib/wine/wimgapi.dll.so new file mode 100755 index 0000000..18ca3a0 Binary files /dev/null and b/lib/wine/wimgapi.dll.so differ diff --git a/lib/wine/win32k.sys.so b/lib/wine/win32k.sys.so new file mode 100755 index 0000000..9d3b36c Binary files /dev/null and b/lib/wine/win32k.sys.so differ diff --git a/lib/wine/win32s16.dll16.so b/lib/wine/win32s16.dll16.so new file mode 100755 index 0000000..4c1f00a Binary files /dev/null and b/lib/wine/win32s16.dll16.so differ diff --git a/lib/wine/win87em.dll16.so b/lib/wine/win87em.dll16.so new file mode 100755 index 0000000..4d839ec Binary files /dev/null and b/lib/wine/win87em.dll16.so differ diff --git a/lib/wine/winaspi.dll16.so b/lib/wine/winaspi.dll16.so new file mode 100755 index 0000000..2c20ff7 Binary files /dev/null and b/lib/wine/winaspi.dll16.so differ diff --git a/lib/wine/windebug.dll16.so b/lib/wine/windebug.dll16.so new file mode 100755 index 0000000..959d139 Binary files /dev/null and b/lib/wine/windebug.dll16.so differ diff --git a/lib/wine/windowscodecs.dll.so b/lib/wine/windowscodecs.dll.so new file mode 100755 index 0000000..06b7cc6 Binary files /dev/null and b/lib/wine/windowscodecs.dll.so differ diff --git a/lib/wine/windowscodecsext.dll.so b/lib/wine/windowscodecsext.dll.so new file mode 100755 index 0000000..dc111b9 Binary files /dev/null and b/lib/wine/windowscodecsext.dll.so differ diff --git a/lib/wine/winealsa.drv.so b/lib/wine/winealsa.drv.so new file mode 100755 index 0000000..7102880 Binary files /dev/null and b/lib/wine/winealsa.drv.so differ diff --git a/lib/wine/wineboot.exe.so b/lib/wine/wineboot.exe.so new file mode 100755 index 0000000..0846054 Binary files /dev/null and b/lib/wine/wineboot.exe.so differ diff --git a/lib/wine/winebrowser.exe.so b/lib/wine/winebrowser.exe.so new file mode 100755 index 0000000..6dffde4 Binary files /dev/null and b/lib/wine/winebrowser.exe.so differ diff --git a/lib/wine/winebus.sys.so b/lib/wine/winebus.sys.so new file mode 100755 index 0000000..6de392f Binary files /dev/null and b/lib/wine/winebus.sys.so differ diff --git a/lib/wine/winecfg.exe.so b/lib/wine/winecfg.exe.so new file mode 100755 index 0000000..9a79296 Binary files /dev/null and b/lib/wine/winecfg.exe.so differ diff --git a/lib/wine/wineconsole.exe.so b/lib/wine/wineconsole.exe.so new file mode 100755 index 0000000..41c6bfd Binary files /dev/null and b/lib/wine/wineconsole.exe.so differ diff --git a/lib/wine/wined3d.dll.so b/lib/wine/wined3d.dll.so new file mode 100755 index 0000000..14d4cb5 Binary files /dev/null and b/lib/wine/wined3d.dll.so differ diff --git a/lib/wine/winedbg.exe.so b/lib/wine/winedbg.exe.so new file mode 100755 index 0000000..a7e3e86 Binary files /dev/null and b/lib/wine/winedbg.exe.so differ diff --git a/lib/wine/winedevice.exe.so b/lib/wine/winedevice.exe.so new file mode 100755 index 0000000..70a3135 Binary files /dev/null and b/lib/wine/winedevice.exe.so differ diff --git a/lib/wine/winefile.exe.so b/lib/wine/winefile.exe.so new file mode 100755 index 0000000..1b6b127 Binary files /dev/null and b/lib/wine/winefile.exe.so differ diff --git a/lib/wine/winegstreamer.dll.so b/lib/wine/winegstreamer.dll.so new file mode 100755 index 0000000..01918b9 Binary files /dev/null and b/lib/wine/winegstreamer.dll.so differ diff --git a/lib/wine/winehid.sys.so b/lib/wine/winehid.sys.so new file mode 100755 index 0000000..114a53e Binary files /dev/null and b/lib/wine/winehid.sys.so differ diff --git a/lib/wine/winejoystick.drv.so b/lib/wine/winejoystick.drv.so new file mode 100755 index 0000000..8534aeb Binary files /dev/null and b/lib/wine/winejoystick.drv.so differ diff --git a/lib/wine/winemapi.dll.so b/lib/wine/winemapi.dll.so new file mode 100755 index 0000000..777f933 Binary files /dev/null and b/lib/wine/winemapi.dll.so differ diff --git a/lib/wine/winemenubuilder.exe.so b/lib/wine/winemenubuilder.exe.so new file mode 100755 index 0000000..ed1001a Binary files /dev/null and b/lib/wine/winemenubuilder.exe.so differ diff --git a/lib/wine/winemine.exe.so b/lib/wine/winemine.exe.so new file mode 100755 index 0000000..74d4bca Binary files /dev/null and b/lib/wine/winemine.exe.so differ diff --git a/lib/wine/winemsibuilder.exe.so b/lib/wine/winemsibuilder.exe.so new file mode 100755 index 0000000..62ed467 Binary files /dev/null and b/lib/wine/winemsibuilder.exe.so differ diff --git a/lib/wine/wineoss.drv.so b/lib/wine/wineoss.drv.so new file mode 100755 index 0000000..b5bcaf0 Binary files /dev/null and b/lib/wine/wineoss.drv.so differ diff --git a/lib/wine/winepath.exe.so b/lib/wine/winepath.exe.so new file mode 100755 index 0000000..4d2b117 Binary files /dev/null and b/lib/wine/winepath.exe.so differ diff --git a/lib/wine/wineps.drv.so b/lib/wine/wineps.drv.so new file mode 100755 index 0000000..b34f905 Binary files /dev/null and b/lib/wine/wineps.drv.so differ diff --git a/lib/wine/wineps16.drv16.so b/lib/wine/wineps16.drv16.so new file mode 100755 index 0000000..b9746a8 Binary files /dev/null and b/lib/wine/wineps16.drv16.so differ diff --git a/lib/wine/winepulse.drv.so b/lib/wine/winepulse.drv.so new file mode 100755 index 0000000..1da7755 Binary files /dev/null and b/lib/wine/winepulse.drv.so differ diff --git a/lib/wine/winevdm.exe.so b/lib/wine/winevdm.exe.so new file mode 100755 index 0000000..f40a943 Binary files /dev/null and b/lib/wine/winevdm.exe.so differ diff --git a/lib/wine/winevulkan.dll.so b/lib/wine/winevulkan.dll.so new file mode 100755 index 0000000..59b553e Binary files /dev/null and b/lib/wine/winevulkan.dll.so differ diff --git a/lib/wine/winex11.drv.so b/lib/wine/winex11.drv.so new file mode 100755 index 0000000..e4f5eb5 Binary files /dev/null and b/lib/wine/winex11.drv.so differ diff --git a/lib/wine/wing.dll16.so b/lib/wine/wing.dll16.so new file mode 100755 index 0000000..229a8e5 Binary files /dev/null and b/lib/wine/wing.dll16.so differ diff --git a/lib/wine/wing32.dll.so b/lib/wine/wing32.dll.so new file mode 100755 index 0000000..ed9a176 Binary files /dev/null and b/lib/wine/wing32.dll.so differ diff --git a/lib/wine/winhelp.exe16.so b/lib/wine/winhelp.exe16.so new file mode 100755 index 0000000..9dcbb11 Binary files /dev/null and b/lib/wine/winhelp.exe16.so differ diff --git a/lib/wine/winhlp32.exe.so b/lib/wine/winhlp32.exe.so new file mode 100755 index 0000000..7c156fd Binary files /dev/null and b/lib/wine/winhlp32.exe.so differ diff --git a/lib/wine/winhttp.dll.so b/lib/wine/winhttp.dll.so new file mode 100755 index 0000000..bed3bd7 Binary files /dev/null and b/lib/wine/winhttp.dll.so differ diff --git a/lib/wine/wininet.dll.so b/lib/wine/wininet.dll.so new file mode 100755 index 0000000..f3e3159 Binary files /dev/null and b/lib/wine/wininet.dll.so differ diff --git a/lib/wine/winmgmt.exe.so b/lib/wine/winmgmt.exe.so new file mode 100755 index 0000000..cd272d7 Binary files /dev/null and b/lib/wine/winmgmt.exe.so differ diff --git a/lib/wine/winmm.dll.so b/lib/wine/winmm.dll.so new file mode 100755 index 0000000..aeb515a Binary files /dev/null and b/lib/wine/winmm.dll.so differ diff --git a/lib/wine/winnls.dll16.so b/lib/wine/winnls.dll16.so new file mode 100755 index 0000000..a9829a6 Binary files /dev/null and b/lib/wine/winnls.dll16.so differ diff --git a/lib/wine/winnls32.dll.so b/lib/wine/winnls32.dll.so new file mode 100755 index 0000000..5dc845a Binary files /dev/null and b/lib/wine/winnls32.dll.so differ diff --git a/lib/wine/winoldap.mod16.so b/lib/wine/winoldap.mod16.so new file mode 100755 index 0000000..e61b901 Binary files /dev/null and b/lib/wine/winoldap.mod16.so differ diff --git a/lib/wine/winscard.dll.so b/lib/wine/winscard.dll.so new file mode 100755 index 0000000..452793b Binary files /dev/null and b/lib/wine/winscard.dll.so differ diff --git a/lib/wine/winsock.dll16.so b/lib/wine/winsock.dll16.so new file mode 100755 index 0000000..b9298bf Binary files /dev/null and b/lib/wine/winsock.dll16.so differ diff --git a/lib/wine/winspool.drv.so b/lib/wine/winspool.drv.so new file mode 100755 index 0000000..b897540 Binary files /dev/null and b/lib/wine/winspool.drv.so differ diff --git a/lib/wine/winsta.dll.so b/lib/wine/winsta.dll.so new file mode 100755 index 0000000..ba2f2c6 Binary files /dev/null and b/lib/wine/winsta.dll.so differ diff --git a/lib/wine/wintab.dll16.so b/lib/wine/wintab.dll16.so new file mode 100755 index 0000000..ffa4b56 Binary files /dev/null and b/lib/wine/wintab.dll16.so differ diff --git a/lib/wine/wintab32.dll.so b/lib/wine/wintab32.dll.so new file mode 100755 index 0000000..61aab94 Binary files /dev/null and b/lib/wine/wintab32.dll.so differ diff --git a/lib/wine/wintrust.dll.so b/lib/wine/wintrust.dll.so new file mode 100755 index 0000000..71f9f08 Binary files /dev/null and b/lib/wine/wintrust.dll.so differ diff --git a/lib/wine/winusb.dll.so b/lib/wine/winusb.dll.so new file mode 100755 index 0000000..8714b25 Binary files /dev/null and b/lib/wine/winusb.dll.so differ diff --git a/lib/wine/winver.exe.so b/lib/wine/winver.exe.so new file mode 100755 index 0000000..ece8e91 Binary files /dev/null and b/lib/wine/winver.exe.so differ diff --git a/lib/wine/wlanapi.dll.so b/lib/wine/wlanapi.dll.so new file mode 100755 index 0000000..0cbf7fa Binary files /dev/null and b/lib/wine/wlanapi.dll.so differ diff --git a/lib/wine/wldap32.dll.so b/lib/wine/wldap32.dll.so new file mode 100755 index 0000000..d1bad76 Binary files /dev/null and b/lib/wine/wldap32.dll.so differ diff --git a/lib/wine/wmasf.dll.so b/lib/wine/wmasf.dll.so new file mode 100755 index 0000000..9269051 Binary files /dev/null and b/lib/wine/wmasf.dll.so differ diff --git a/lib/wine/wmi.dll.so b/lib/wine/wmi.dll.so new file mode 100755 index 0000000..cef9d84 Binary files /dev/null and b/lib/wine/wmi.dll.so differ diff --git a/lib/wine/wmic.exe.so b/lib/wine/wmic.exe.so new file mode 100755 index 0000000..a589b3f Binary files /dev/null and b/lib/wine/wmic.exe.so differ diff --git a/lib/wine/wmiutils.dll.so b/lib/wine/wmiutils.dll.so new file mode 100755 index 0000000..b81cf85 Binary files /dev/null and b/lib/wine/wmiutils.dll.so differ diff --git a/lib/wine/wmp.dll.so b/lib/wine/wmp.dll.so new file mode 100755 index 0000000..233e145 Binary files /dev/null and b/lib/wine/wmp.dll.so differ diff --git a/lib/wine/wmphoto.dll.so b/lib/wine/wmphoto.dll.so new file mode 100755 index 0000000..356f061 Binary files /dev/null and b/lib/wine/wmphoto.dll.so differ diff --git a/lib/wine/wmplayer.exe.so b/lib/wine/wmplayer.exe.so new file mode 100755 index 0000000..697f3fd Binary files /dev/null and b/lib/wine/wmplayer.exe.so differ diff --git a/lib/wine/wmvcore.dll.so b/lib/wine/wmvcore.dll.so new file mode 100755 index 0000000..2331217 Binary files /dev/null and b/lib/wine/wmvcore.dll.so differ diff --git a/lib/wine/wnaspi32.dll.so b/lib/wine/wnaspi32.dll.so new file mode 100755 index 0000000..8acea4f Binary files /dev/null and b/lib/wine/wnaspi32.dll.so differ diff --git a/lib/wine/wordpad.exe.so b/lib/wine/wordpad.exe.so new file mode 100755 index 0000000..d764492 Binary files /dev/null and b/lib/wine/wordpad.exe.so differ diff --git a/lib/wine/wow32.dll.so b/lib/wine/wow32.dll.so new file mode 100755 index 0000000..be2cb75 Binary files /dev/null and b/lib/wine/wow32.dll.so differ diff --git a/lib/wine/wow64cpu.dll.so b/lib/wine/wow64cpu.dll.so new file mode 100755 index 0000000..80032f5 Binary files /dev/null and b/lib/wine/wow64cpu.dll.so differ diff --git a/lib/wine/wpc.dll.so b/lib/wine/wpc.dll.so new file mode 100755 index 0000000..6f1af23 Binary files /dev/null and b/lib/wine/wpc.dll.so differ diff --git a/lib/wine/wpcap.dll.so b/lib/wine/wpcap.dll.so new file mode 100755 index 0000000..dfdc9e7 Binary files /dev/null and b/lib/wine/wpcap.dll.so differ diff --git a/lib/wine/write.exe.so b/lib/wine/write.exe.so new file mode 100755 index 0000000..f5986c6 Binary files /dev/null and b/lib/wine/write.exe.so differ diff --git a/lib/wine/ws2_32.dll.so b/lib/wine/ws2_32.dll.so new file mode 100755 index 0000000..eb257f5 Binary files /dev/null and b/lib/wine/ws2_32.dll.so differ diff --git a/lib/wine/wscript.exe.so b/lib/wine/wscript.exe.so new file mode 100755 index 0000000..cf24a7e Binary files /dev/null and b/lib/wine/wscript.exe.so differ diff --git a/lib/wine/wsdapi.dll.so b/lib/wine/wsdapi.dll.so new file mode 100755 index 0000000..82fa40f Binary files /dev/null and b/lib/wine/wsdapi.dll.so differ diff --git a/lib/wine/wshom.ocx.so b/lib/wine/wshom.ocx.so new file mode 100755 index 0000000..648455a Binary files /dev/null and b/lib/wine/wshom.ocx.so differ diff --git a/lib/wine/wsnmp32.dll.so b/lib/wine/wsnmp32.dll.so new file mode 100755 index 0000000..5d02f61 Binary files /dev/null and b/lib/wine/wsnmp32.dll.so differ diff --git a/lib/wine/wsock32.dll.so b/lib/wine/wsock32.dll.so new file mode 100755 index 0000000..e2c6d23 Binary files /dev/null and b/lib/wine/wsock32.dll.so differ diff --git a/lib/wine/wtsapi32.dll.so b/lib/wine/wtsapi32.dll.so new file mode 100755 index 0000000..175c49d Binary files /dev/null and b/lib/wine/wtsapi32.dll.so differ diff --git a/lib/wine/wuapi.dll.so b/lib/wine/wuapi.dll.so new file mode 100755 index 0000000..6f29a2b Binary files /dev/null and b/lib/wine/wuapi.dll.so differ diff --git a/lib/wine/wuaueng.dll.so b/lib/wine/wuaueng.dll.so new file mode 100755 index 0000000..e53de49 Binary files /dev/null and b/lib/wine/wuaueng.dll.so differ diff --git a/lib/wine/wuauserv.exe.so b/lib/wine/wuauserv.exe.so new file mode 100755 index 0000000..208c9da Binary files /dev/null and b/lib/wine/wuauserv.exe.so differ diff --git a/lib/wine/wusa.exe.so b/lib/wine/wusa.exe.so new file mode 100755 index 0000000..9185a06 Binary files /dev/null and b/lib/wine/wusa.exe.so differ diff --git a/lib/wine/x3daudio1_0.dll.so b/lib/wine/x3daudio1_0.dll.so new file mode 100755 index 0000000..6d2235a Binary files /dev/null and b/lib/wine/x3daudio1_0.dll.so differ diff --git a/lib/wine/x3daudio1_1.dll.so b/lib/wine/x3daudio1_1.dll.so new file mode 100755 index 0000000..9eafe94 Binary files /dev/null and b/lib/wine/x3daudio1_1.dll.so differ diff --git a/lib/wine/x3daudio1_2.dll.so b/lib/wine/x3daudio1_2.dll.so new file mode 100755 index 0000000..2b5a134 Binary files /dev/null and b/lib/wine/x3daudio1_2.dll.so differ diff --git a/lib/wine/x3daudio1_3.dll.so b/lib/wine/x3daudio1_3.dll.so new file mode 100755 index 0000000..7bd2969 Binary files /dev/null and b/lib/wine/x3daudio1_3.dll.so differ diff --git a/lib/wine/x3daudio1_4.dll.so b/lib/wine/x3daudio1_4.dll.so new file mode 100755 index 0000000..27a9f55 Binary files /dev/null and b/lib/wine/x3daudio1_4.dll.so differ diff --git a/lib/wine/x3daudio1_5.dll.so b/lib/wine/x3daudio1_5.dll.so new file mode 100755 index 0000000..a777d86 Binary files /dev/null and b/lib/wine/x3daudio1_5.dll.so differ diff --git a/lib/wine/x3daudio1_6.dll.so b/lib/wine/x3daudio1_6.dll.so new file mode 100755 index 0000000..2181c99 Binary files /dev/null and b/lib/wine/x3daudio1_6.dll.so differ diff --git a/lib/wine/x3daudio1_7.dll.so b/lib/wine/x3daudio1_7.dll.so new file mode 100755 index 0000000..0d40f6e Binary files /dev/null and b/lib/wine/x3daudio1_7.dll.so differ diff --git a/lib/wine/xapofx1_1.dll.so b/lib/wine/xapofx1_1.dll.so new file mode 100755 index 0000000..ffa84ca Binary files /dev/null and b/lib/wine/xapofx1_1.dll.so differ diff --git a/lib/wine/xapofx1_2.dll.so b/lib/wine/xapofx1_2.dll.so new file mode 100755 index 0000000..f237bf4 Binary files /dev/null and b/lib/wine/xapofx1_2.dll.so differ diff --git a/lib/wine/xapofx1_3.dll.so b/lib/wine/xapofx1_3.dll.so new file mode 100755 index 0000000..7e99fb8 Binary files /dev/null and b/lib/wine/xapofx1_3.dll.so differ diff --git a/lib/wine/xapofx1_4.dll.so b/lib/wine/xapofx1_4.dll.so new file mode 100755 index 0000000..e90839b Binary files /dev/null and b/lib/wine/xapofx1_4.dll.so differ diff --git a/lib/wine/xapofx1_5.dll.so b/lib/wine/xapofx1_5.dll.so new file mode 100755 index 0000000..5bffa59 Binary files /dev/null and b/lib/wine/xapofx1_5.dll.so differ diff --git a/lib/wine/xaudio2_0.dll.so b/lib/wine/xaudio2_0.dll.so new file mode 100755 index 0000000..f83e5b8 Binary files /dev/null and b/lib/wine/xaudio2_0.dll.so differ diff --git a/lib/wine/xaudio2_1.dll.so b/lib/wine/xaudio2_1.dll.so new file mode 100755 index 0000000..074bbf3 Binary files /dev/null and b/lib/wine/xaudio2_1.dll.so differ diff --git a/lib/wine/xaudio2_2.dll.so b/lib/wine/xaudio2_2.dll.so new file mode 100755 index 0000000..29ee866 Binary files /dev/null and b/lib/wine/xaudio2_2.dll.so differ diff --git a/lib/wine/xaudio2_3.dll.so b/lib/wine/xaudio2_3.dll.so new file mode 100755 index 0000000..2dc573e Binary files /dev/null and b/lib/wine/xaudio2_3.dll.so differ diff --git a/lib/wine/xaudio2_4.dll.so b/lib/wine/xaudio2_4.dll.so new file mode 100755 index 0000000..da80732 Binary files /dev/null and b/lib/wine/xaudio2_4.dll.so differ diff --git a/lib/wine/xaudio2_5.dll.so b/lib/wine/xaudio2_5.dll.so new file mode 100755 index 0000000..f03008b Binary files /dev/null and b/lib/wine/xaudio2_5.dll.so differ diff --git a/lib/wine/xaudio2_6.dll.so b/lib/wine/xaudio2_6.dll.so new file mode 100755 index 0000000..1c3c281 Binary files /dev/null and b/lib/wine/xaudio2_6.dll.so differ diff --git a/lib/wine/xaudio2_7.dll.so b/lib/wine/xaudio2_7.dll.so new file mode 100755 index 0000000..fcafbb3 Binary files /dev/null and b/lib/wine/xaudio2_7.dll.so differ diff --git a/lib/wine/xaudio2_8.dll.so b/lib/wine/xaudio2_8.dll.so new file mode 100755 index 0000000..a39052e Binary files /dev/null and b/lib/wine/xaudio2_8.dll.so differ diff --git a/lib/wine/xaudio2_9.dll.so b/lib/wine/xaudio2_9.dll.so new file mode 100755 index 0000000..7c2b608 Binary files /dev/null and b/lib/wine/xaudio2_9.dll.so differ diff --git a/lib/wine/xcopy.exe.so b/lib/wine/xcopy.exe.so new file mode 100755 index 0000000..2570928 Binary files /dev/null and b/lib/wine/xcopy.exe.so differ diff --git a/lib/wine/xinput1_1.dll.so b/lib/wine/xinput1_1.dll.so new file mode 100755 index 0000000..0e7bdd6 Binary files /dev/null and b/lib/wine/xinput1_1.dll.so differ diff --git a/lib/wine/xinput1_2.dll.so b/lib/wine/xinput1_2.dll.so new file mode 100755 index 0000000..5f8a020 Binary files /dev/null and b/lib/wine/xinput1_2.dll.so differ diff --git a/lib/wine/xinput1_3.dll.so b/lib/wine/xinput1_3.dll.so new file mode 100755 index 0000000..3cf39f8 Binary files /dev/null and b/lib/wine/xinput1_3.dll.so differ diff --git a/lib/wine/xinput1_4.dll.so b/lib/wine/xinput1_4.dll.so new file mode 100755 index 0000000..9ec991e Binary files /dev/null and b/lib/wine/xinput1_4.dll.so differ diff --git a/lib/wine/xinput9_1_0.dll.so b/lib/wine/xinput9_1_0.dll.so new file mode 100755 index 0000000..a984e41 Binary files /dev/null and b/lib/wine/xinput9_1_0.dll.so differ diff --git a/lib/wine/xmllite.dll.so b/lib/wine/xmllite.dll.so new file mode 100755 index 0000000..04e001d Binary files /dev/null and b/lib/wine/xmllite.dll.so differ diff --git a/lib/wine/xolehlp.dll.so b/lib/wine/xolehlp.dll.so new file mode 100755 index 0000000..b96260c Binary files /dev/null and b/lib/wine/xolehlp.dll.so differ diff --git a/lib/wine/xpsprint.dll.so b/lib/wine/xpsprint.dll.so new file mode 100755 index 0000000..5df5c49 Binary files /dev/null and b/lib/wine/xpsprint.dll.so differ diff --git a/lib/wine/xpssvcs.dll.so b/lib/wine/xpssvcs.dll.so new file mode 100755 index 0000000..321d7ac Binary files /dev/null and b/lib/wine/xpssvcs.dll.so differ diff --git a/lib64/libwine.so b/lib64/libwine.so new file mode 120000 index 0000000..04dfc5d --- /dev/null +++ b/lib64/libwine.so @@ -0,0 +1 @@ +libwine.so.1 \ No newline at end of file diff --git a/lib64/libwine.so.1 b/lib64/libwine.so.1 new file mode 120000 index 0000000..ad96648 --- /dev/null +++ b/lib64/libwine.so.1 @@ -0,0 +1 @@ +libwine.so.1.0 \ No newline at end of file diff --git a/lib64/libwine.so.1.0 b/lib64/libwine.so.1.0 new file mode 100755 index 0000000..be2fb8a Binary files /dev/null and b/lib64/libwine.so.1.0 differ diff --git a/lib64/wine/acledit.dll.so b/lib64/wine/acledit.dll.so new file mode 100755 index 0000000..7d079cb Binary files /dev/null and b/lib64/wine/acledit.dll.so differ diff --git a/lib64/wine/aclui.dll.so b/lib64/wine/aclui.dll.so new file mode 100755 index 0000000..caadab6 Binary files /dev/null and b/lib64/wine/aclui.dll.so differ diff --git a/lib64/wine/activeds.dll.so b/lib64/wine/activeds.dll.so new file mode 100755 index 0000000..6fa8831 Binary files /dev/null and b/lib64/wine/activeds.dll.so differ diff --git a/lib64/wine/actxprxy.dll.so b/lib64/wine/actxprxy.dll.so new file mode 100755 index 0000000..4ed66ed Binary files /dev/null and b/lib64/wine/actxprxy.dll.so differ diff --git a/lib64/wine/adsldp.dll.so b/lib64/wine/adsldp.dll.so new file mode 100755 index 0000000..018277b Binary files /dev/null and b/lib64/wine/adsldp.dll.so differ diff --git a/lib64/wine/adsldpc.dll.so b/lib64/wine/adsldpc.dll.so new file mode 100755 index 0000000..6de7a65 Binary files /dev/null and b/lib64/wine/adsldpc.dll.so differ diff --git a/lib64/wine/advapi32.dll.so b/lib64/wine/advapi32.dll.so new file mode 100755 index 0000000..2850ce1 Binary files /dev/null and b/lib64/wine/advapi32.dll.so differ diff --git a/lib64/wine/advpack.dll.so b/lib64/wine/advpack.dll.so new file mode 100755 index 0000000..6d9a2bb Binary files /dev/null and b/lib64/wine/advpack.dll.so differ diff --git a/lib64/wine/amd_ags_x64.dll.so b/lib64/wine/amd_ags_x64.dll.so new file mode 100755 index 0000000..b00fd18 Binary files /dev/null and b/lib64/wine/amd_ags_x64.dll.so differ diff --git a/lib64/wine/amsi.dll.so b/lib64/wine/amsi.dll.so new file mode 100755 index 0000000..db2c45c Binary files /dev/null and b/lib64/wine/amsi.dll.so differ diff --git a/lib64/wine/amstream.dll.so b/lib64/wine/amstream.dll.so new file mode 100755 index 0000000..be2a995 Binary files /dev/null and b/lib64/wine/amstream.dll.so differ diff --git a/lib64/wine/api-ms-win-appmodel-identity-l1-1-0.dll.so b/lib64/wine/api-ms-win-appmodel-identity-l1-1-0.dll.so new file mode 100755 index 0000000..242cefc Binary files /dev/null and b/lib64/wine/api-ms-win-appmodel-identity-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-appmodel-runtime-l1-1-1.dll.so b/lib64/wine/api-ms-win-appmodel-runtime-l1-1-1.dll.so new file mode 100755 index 0000000..34554cc Binary files /dev/null and b/lib64/wine/api-ms-win-appmodel-runtime-l1-1-1.dll.so differ diff --git a/lib64/wine/api-ms-win-appmodel-runtime-l1-1-2.dll.so b/lib64/wine/api-ms-win-appmodel-runtime-l1-1-2.dll.so new file mode 100755 index 0000000..e0fbfb5 Binary files /dev/null and b/lib64/wine/api-ms-win-appmodel-runtime-l1-1-2.dll.so differ diff --git a/lib64/wine/api-ms-win-core-apiquery-l1-1-0.dll.so b/lib64/wine/api-ms-win-core-apiquery-l1-1-0.dll.so new file mode 100755 index 0000000..69902d0 Binary files /dev/null and b/lib64/wine/api-ms-win-core-apiquery-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-appcompat-l1-1-1.dll.so b/lib64/wine/api-ms-win-core-appcompat-l1-1-1.dll.so new file mode 100755 index 0000000..8a233e7 Binary files /dev/null and b/lib64/wine/api-ms-win-core-appcompat-l1-1-1.dll.so differ diff --git a/lib64/wine/api-ms-win-core-appinit-l1-1-0.dll.so b/lib64/wine/api-ms-win-core-appinit-l1-1-0.dll.so new file mode 100755 index 0000000..3bc7000 Binary files /dev/null and b/lib64/wine/api-ms-win-core-appinit-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-atoms-l1-1-0.dll.so b/lib64/wine/api-ms-win-core-atoms-l1-1-0.dll.so new file mode 100755 index 0000000..43a60af Binary files /dev/null and b/lib64/wine/api-ms-win-core-atoms-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-bem-l1-1-0.dll.so b/lib64/wine/api-ms-win-core-bem-l1-1-0.dll.so new file mode 100755 index 0000000..427e9f9 Binary files /dev/null and b/lib64/wine/api-ms-win-core-bem-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-com-l1-1-0.dll.so b/lib64/wine/api-ms-win-core-com-l1-1-0.dll.so new file mode 100755 index 0000000..c63201a Binary files /dev/null and b/lib64/wine/api-ms-win-core-com-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-com-l1-1-1.dll.so b/lib64/wine/api-ms-win-core-com-l1-1-1.dll.so new file mode 100755 index 0000000..6f01bca Binary files /dev/null and b/lib64/wine/api-ms-win-core-com-l1-1-1.dll.so differ diff --git a/lib64/wine/api-ms-win-core-com-private-l1-1-0.dll.so b/lib64/wine/api-ms-win-core-com-private-l1-1-0.dll.so new file mode 100755 index 0000000..bf0a6bb Binary files /dev/null and b/lib64/wine/api-ms-win-core-com-private-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-comm-l1-1-0.dll.so b/lib64/wine/api-ms-win-core-comm-l1-1-0.dll.so new file mode 100755 index 0000000..465ec1f Binary files /dev/null and b/lib64/wine/api-ms-win-core-comm-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-console-l1-1-0.dll.so b/lib64/wine/api-ms-win-core-console-l1-1-0.dll.so new file mode 100755 index 0000000..cfcb389 Binary files /dev/null and b/lib64/wine/api-ms-win-core-console-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-console-l2-1-0.dll.so b/lib64/wine/api-ms-win-core-console-l2-1-0.dll.so new file mode 100755 index 0000000..42778ea Binary files /dev/null and b/lib64/wine/api-ms-win-core-console-l2-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-crt-l1-1-0.dll.so b/lib64/wine/api-ms-win-core-crt-l1-1-0.dll.so new file mode 100755 index 0000000..e6d97f5 Binary files /dev/null and b/lib64/wine/api-ms-win-core-crt-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-crt-l2-1-0.dll.so b/lib64/wine/api-ms-win-core-crt-l2-1-0.dll.so new file mode 100755 index 0000000..ad7c1a9 Binary files /dev/null and b/lib64/wine/api-ms-win-core-crt-l2-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-datetime-l1-1-0.dll.so b/lib64/wine/api-ms-win-core-datetime-l1-1-0.dll.so new file mode 100755 index 0000000..0dab974 Binary files /dev/null and b/lib64/wine/api-ms-win-core-datetime-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-datetime-l1-1-1.dll.so b/lib64/wine/api-ms-win-core-datetime-l1-1-1.dll.so new file mode 100755 index 0000000..fa59144 Binary files /dev/null and b/lib64/wine/api-ms-win-core-datetime-l1-1-1.dll.so differ diff --git a/lib64/wine/api-ms-win-core-debug-l1-1-0.dll.so b/lib64/wine/api-ms-win-core-debug-l1-1-0.dll.so new file mode 100755 index 0000000..e62f9a6 Binary files /dev/null and b/lib64/wine/api-ms-win-core-debug-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-debug-l1-1-1.dll.so b/lib64/wine/api-ms-win-core-debug-l1-1-1.dll.so new file mode 100755 index 0000000..533c90c Binary files /dev/null and b/lib64/wine/api-ms-win-core-debug-l1-1-1.dll.so differ diff --git a/lib64/wine/api-ms-win-core-delayload-l1-1-0.dll.so b/lib64/wine/api-ms-win-core-delayload-l1-1-0.dll.so new file mode 100755 index 0000000..c738bcb Binary files /dev/null and b/lib64/wine/api-ms-win-core-delayload-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-delayload-l1-1-1.dll.so b/lib64/wine/api-ms-win-core-delayload-l1-1-1.dll.so new file mode 100755 index 0000000..398455c Binary files /dev/null and b/lib64/wine/api-ms-win-core-delayload-l1-1-1.dll.so differ diff --git a/lib64/wine/api-ms-win-core-errorhandling-l1-1-0.dll.so b/lib64/wine/api-ms-win-core-errorhandling-l1-1-0.dll.so new file mode 100755 index 0000000..7ee44e7 Binary files /dev/null and b/lib64/wine/api-ms-win-core-errorhandling-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-errorhandling-l1-1-1.dll.so b/lib64/wine/api-ms-win-core-errorhandling-l1-1-1.dll.so new file mode 100755 index 0000000..712aa08 Binary files /dev/null and b/lib64/wine/api-ms-win-core-errorhandling-l1-1-1.dll.so differ diff --git a/lib64/wine/api-ms-win-core-errorhandling-l1-1-2.dll.so b/lib64/wine/api-ms-win-core-errorhandling-l1-1-2.dll.so new file mode 100755 index 0000000..31fcd9f Binary files /dev/null and b/lib64/wine/api-ms-win-core-errorhandling-l1-1-2.dll.so differ diff --git a/lib64/wine/api-ms-win-core-errorhandling-l1-1-3.dll.so b/lib64/wine/api-ms-win-core-errorhandling-l1-1-3.dll.so new file mode 100755 index 0000000..bd91987 Binary files /dev/null and b/lib64/wine/api-ms-win-core-errorhandling-l1-1-3.dll.so differ diff --git a/lib64/wine/api-ms-win-core-fibers-l1-1-0.dll.so b/lib64/wine/api-ms-win-core-fibers-l1-1-0.dll.so new file mode 100755 index 0000000..01739a9 Binary files /dev/null and b/lib64/wine/api-ms-win-core-fibers-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-fibers-l1-1-1.dll.so b/lib64/wine/api-ms-win-core-fibers-l1-1-1.dll.so new file mode 100755 index 0000000..84b700b Binary files /dev/null and b/lib64/wine/api-ms-win-core-fibers-l1-1-1.dll.so differ diff --git a/lib64/wine/api-ms-win-core-file-l1-1-0.dll.so b/lib64/wine/api-ms-win-core-file-l1-1-0.dll.so new file mode 100755 index 0000000..bf27105 Binary files /dev/null and b/lib64/wine/api-ms-win-core-file-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-file-l1-2-0.dll.so b/lib64/wine/api-ms-win-core-file-l1-2-0.dll.so new file mode 100755 index 0000000..20c2522 Binary files /dev/null and b/lib64/wine/api-ms-win-core-file-l1-2-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-file-l1-2-1.dll.so b/lib64/wine/api-ms-win-core-file-l1-2-1.dll.so new file mode 100755 index 0000000..d741e21 Binary files /dev/null and b/lib64/wine/api-ms-win-core-file-l1-2-1.dll.so differ diff --git a/lib64/wine/api-ms-win-core-file-l1-2-2.dll.so b/lib64/wine/api-ms-win-core-file-l1-2-2.dll.so new file mode 100755 index 0000000..a27d3c6 Binary files /dev/null and b/lib64/wine/api-ms-win-core-file-l1-2-2.dll.so differ diff --git a/lib64/wine/api-ms-win-core-file-l2-1-0.dll.so b/lib64/wine/api-ms-win-core-file-l2-1-0.dll.so new file mode 100755 index 0000000..bd73f82 Binary files /dev/null and b/lib64/wine/api-ms-win-core-file-l2-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-file-l2-1-1.dll.so b/lib64/wine/api-ms-win-core-file-l2-1-1.dll.so new file mode 100755 index 0000000..42108f0 Binary files /dev/null and b/lib64/wine/api-ms-win-core-file-l2-1-1.dll.so differ diff --git a/lib64/wine/api-ms-win-core-file-l2-1-2.dll.so b/lib64/wine/api-ms-win-core-file-l2-1-2.dll.so new file mode 100755 index 0000000..3b763bb Binary files /dev/null and b/lib64/wine/api-ms-win-core-file-l2-1-2.dll.so differ diff --git a/lib64/wine/api-ms-win-core-handle-l1-1-0.dll.so b/lib64/wine/api-ms-win-core-handle-l1-1-0.dll.so new file mode 100755 index 0000000..dbb7ed2 Binary files /dev/null and b/lib64/wine/api-ms-win-core-handle-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-heap-l1-1-0.dll.so b/lib64/wine/api-ms-win-core-heap-l1-1-0.dll.so new file mode 100755 index 0000000..62a95cb Binary files /dev/null and b/lib64/wine/api-ms-win-core-heap-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-heap-l1-2-0.dll.so b/lib64/wine/api-ms-win-core-heap-l1-2-0.dll.so new file mode 100755 index 0000000..d1dd645 Binary files /dev/null and b/lib64/wine/api-ms-win-core-heap-l1-2-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-heap-l2-1-0.dll.so b/lib64/wine/api-ms-win-core-heap-l2-1-0.dll.so new file mode 100755 index 0000000..3387a41 Binary files /dev/null and b/lib64/wine/api-ms-win-core-heap-l2-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-heap-obsolete-l1-1-0.dll.so b/lib64/wine/api-ms-win-core-heap-obsolete-l1-1-0.dll.so new file mode 100755 index 0000000..9454a40 Binary files /dev/null and b/lib64/wine/api-ms-win-core-heap-obsolete-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-interlocked-l1-1-0.dll.so b/lib64/wine/api-ms-win-core-interlocked-l1-1-0.dll.so new file mode 100755 index 0000000..5860e94 Binary files /dev/null and b/lib64/wine/api-ms-win-core-interlocked-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-interlocked-l1-2-0.dll.so b/lib64/wine/api-ms-win-core-interlocked-l1-2-0.dll.so new file mode 100755 index 0000000..dda1c35 Binary files /dev/null and b/lib64/wine/api-ms-win-core-interlocked-l1-2-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-io-l1-1-0.dll.so b/lib64/wine/api-ms-win-core-io-l1-1-0.dll.so new file mode 100755 index 0000000..5232219 Binary files /dev/null and b/lib64/wine/api-ms-win-core-io-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-io-l1-1-1.dll.so b/lib64/wine/api-ms-win-core-io-l1-1-1.dll.so new file mode 100755 index 0000000..f8061dd Binary files /dev/null and b/lib64/wine/api-ms-win-core-io-l1-1-1.dll.so differ diff --git a/lib64/wine/api-ms-win-core-job-l1-1-0.dll.so b/lib64/wine/api-ms-win-core-job-l1-1-0.dll.so new file mode 100755 index 0000000..61c6eb2 Binary files /dev/null and b/lib64/wine/api-ms-win-core-job-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-job-l2-1-0.dll.so b/lib64/wine/api-ms-win-core-job-l2-1-0.dll.so new file mode 100755 index 0000000..7499936 Binary files /dev/null and b/lib64/wine/api-ms-win-core-job-l2-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-kernel32-legacy-l1-1-0.dll.so b/lib64/wine/api-ms-win-core-kernel32-legacy-l1-1-0.dll.so new file mode 100755 index 0000000..b77d325 Binary files /dev/null and b/lib64/wine/api-ms-win-core-kernel32-legacy-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-kernel32-legacy-l1-1-1.dll.so b/lib64/wine/api-ms-win-core-kernel32-legacy-l1-1-1.dll.so new file mode 100755 index 0000000..d12f06c Binary files /dev/null and b/lib64/wine/api-ms-win-core-kernel32-legacy-l1-1-1.dll.so differ diff --git a/lib64/wine/api-ms-win-core-kernel32-private-l1-1-1.dll.so b/lib64/wine/api-ms-win-core-kernel32-private-l1-1-1.dll.so new file mode 100755 index 0000000..68734e8 Binary files /dev/null and b/lib64/wine/api-ms-win-core-kernel32-private-l1-1-1.dll.so differ diff --git a/lib64/wine/api-ms-win-core-largeinteger-l1-1-0.dll.so b/lib64/wine/api-ms-win-core-largeinteger-l1-1-0.dll.so new file mode 100755 index 0000000..ff0d888 Binary files /dev/null and b/lib64/wine/api-ms-win-core-largeinteger-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-libraryloader-l1-1-0.dll.so b/lib64/wine/api-ms-win-core-libraryloader-l1-1-0.dll.so new file mode 100755 index 0000000..a3c3c89 Binary files /dev/null and b/lib64/wine/api-ms-win-core-libraryloader-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-libraryloader-l1-1-1.dll.so b/lib64/wine/api-ms-win-core-libraryloader-l1-1-1.dll.so new file mode 100755 index 0000000..7a18466 Binary files /dev/null and b/lib64/wine/api-ms-win-core-libraryloader-l1-1-1.dll.so differ diff --git a/lib64/wine/api-ms-win-core-libraryloader-l1-2-0.dll.so b/lib64/wine/api-ms-win-core-libraryloader-l1-2-0.dll.so new file mode 100755 index 0000000..07f7e42 Binary files /dev/null and b/lib64/wine/api-ms-win-core-libraryloader-l1-2-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-libraryloader-l1-2-1.dll.so b/lib64/wine/api-ms-win-core-libraryloader-l1-2-1.dll.so new file mode 100755 index 0000000..5584b7c Binary files /dev/null and b/lib64/wine/api-ms-win-core-libraryloader-l1-2-1.dll.so differ diff --git a/lib64/wine/api-ms-win-core-libraryloader-l1-2-2.dll.so b/lib64/wine/api-ms-win-core-libraryloader-l1-2-2.dll.so new file mode 100755 index 0000000..b0f5f93 Binary files /dev/null and b/lib64/wine/api-ms-win-core-libraryloader-l1-2-2.dll.so differ diff --git a/lib64/wine/api-ms-win-core-localization-l1-1-0.dll.so b/lib64/wine/api-ms-win-core-localization-l1-1-0.dll.so new file mode 100755 index 0000000..a298443 Binary files /dev/null and b/lib64/wine/api-ms-win-core-localization-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-localization-l1-2-0.dll.so b/lib64/wine/api-ms-win-core-localization-l1-2-0.dll.so new file mode 100755 index 0000000..0c87cdd Binary files /dev/null and b/lib64/wine/api-ms-win-core-localization-l1-2-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-localization-l1-2-1.dll.so b/lib64/wine/api-ms-win-core-localization-l1-2-1.dll.so new file mode 100755 index 0000000..f77c1fe Binary files /dev/null and b/lib64/wine/api-ms-win-core-localization-l1-2-1.dll.so differ diff --git a/lib64/wine/api-ms-win-core-localization-l2-1-0.dll.so b/lib64/wine/api-ms-win-core-localization-l2-1-0.dll.so new file mode 100755 index 0000000..4651053 Binary files /dev/null and b/lib64/wine/api-ms-win-core-localization-l2-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-localization-obsolete-l1-1-0.dll.so b/lib64/wine/api-ms-win-core-localization-obsolete-l1-1-0.dll.so new file mode 100755 index 0000000..c1b9966 Binary files /dev/null and b/lib64/wine/api-ms-win-core-localization-obsolete-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-localization-obsolete-l1-2-0.dll.so b/lib64/wine/api-ms-win-core-localization-obsolete-l1-2-0.dll.so new file mode 100755 index 0000000..6fcc9d0 Binary files /dev/null and b/lib64/wine/api-ms-win-core-localization-obsolete-l1-2-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-localization-obsolete-l1-3-0.dll.so b/lib64/wine/api-ms-win-core-localization-obsolete-l1-3-0.dll.so new file mode 100755 index 0000000..a0c241a Binary files /dev/null and b/lib64/wine/api-ms-win-core-localization-obsolete-l1-3-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-localization-private-l1-1-0.dll.so b/lib64/wine/api-ms-win-core-localization-private-l1-1-0.dll.so new file mode 100755 index 0000000..bf74d47 Binary files /dev/null and b/lib64/wine/api-ms-win-core-localization-private-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-localregistry-l1-1-0.dll.so b/lib64/wine/api-ms-win-core-localregistry-l1-1-0.dll.so new file mode 100755 index 0000000..d7e744a Binary files /dev/null and b/lib64/wine/api-ms-win-core-localregistry-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-memory-l1-1-0.dll.so b/lib64/wine/api-ms-win-core-memory-l1-1-0.dll.so new file mode 100755 index 0000000..54b9c29 Binary files /dev/null and b/lib64/wine/api-ms-win-core-memory-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-memory-l1-1-1.dll.so b/lib64/wine/api-ms-win-core-memory-l1-1-1.dll.so new file mode 100755 index 0000000..09916ae Binary files /dev/null and b/lib64/wine/api-ms-win-core-memory-l1-1-1.dll.so differ diff --git a/lib64/wine/api-ms-win-core-memory-l1-1-2.dll.so b/lib64/wine/api-ms-win-core-memory-l1-1-2.dll.so new file mode 100755 index 0000000..d50f5c3 Binary files /dev/null and b/lib64/wine/api-ms-win-core-memory-l1-1-2.dll.so differ diff --git a/lib64/wine/api-ms-win-core-misc-l1-1-0.dll.so b/lib64/wine/api-ms-win-core-misc-l1-1-0.dll.so new file mode 100755 index 0000000..5a1c21d Binary files /dev/null and b/lib64/wine/api-ms-win-core-misc-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-namedpipe-l1-1-0.dll.so b/lib64/wine/api-ms-win-core-namedpipe-l1-1-0.dll.so new file mode 100755 index 0000000..e310b59 Binary files /dev/null and b/lib64/wine/api-ms-win-core-namedpipe-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-namedpipe-l1-2-0.dll.so b/lib64/wine/api-ms-win-core-namedpipe-l1-2-0.dll.so new file mode 100755 index 0000000..fa6e912 Binary files /dev/null and b/lib64/wine/api-ms-win-core-namedpipe-l1-2-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-namespace-l1-1-0.dll.so b/lib64/wine/api-ms-win-core-namespace-l1-1-0.dll.so new file mode 100755 index 0000000..b3da400 Binary files /dev/null and b/lib64/wine/api-ms-win-core-namespace-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-normalization-l1-1-0.dll.so b/lib64/wine/api-ms-win-core-normalization-l1-1-0.dll.so new file mode 100755 index 0000000..284bd08 Binary files /dev/null and b/lib64/wine/api-ms-win-core-normalization-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-path-l1-1-0.dll.so b/lib64/wine/api-ms-win-core-path-l1-1-0.dll.so new file mode 100755 index 0000000..5fda02b Binary files /dev/null and b/lib64/wine/api-ms-win-core-path-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-privateprofile-l1-1-1.dll.so b/lib64/wine/api-ms-win-core-privateprofile-l1-1-1.dll.so new file mode 100755 index 0000000..f7a9a94 Binary files /dev/null and b/lib64/wine/api-ms-win-core-privateprofile-l1-1-1.dll.so differ diff --git a/lib64/wine/api-ms-win-core-processenvironment-l1-1-0.dll.so b/lib64/wine/api-ms-win-core-processenvironment-l1-1-0.dll.so new file mode 100755 index 0000000..cbb0711 Binary files /dev/null and b/lib64/wine/api-ms-win-core-processenvironment-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-processenvironment-l1-2-0.dll.so b/lib64/wine/api-ms-win-core-processenvironment-l1-2-0.dll.so new file mode 100755 index 0000000..e583d14 Binary files /dev/null and b/lib64/wine/api-ms-win-core-processenvironment-l1-2-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-processthreads-l1-1-0.dll.so b/lib64/wine/api-ms-win-core-processthreads-l1-1-0.dll.so new file mode 100755 index 0000000..ce8f911 Binary files /dev/null and b/lib64/wine/api-ms-win-core-processthreads-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-processthreads-l1-1-1.dll.so b/lib64/wine/api-ms-win-core-processthreads-l1-1-1.dll.so new file mode 100755 index 0000000..002f651 Binary files /dev/null and b/lib64/wine/api-ms-win-core-processthreads-l1-1-1.dll.so differ diff --git a/lib64/wine/api-ms-win-core-processthreads-l1-1-2.dll.so b/lib64/wine/api-ms-win-core-processthreads-l1-1-2.dll.so new file mode 100755 index 0000000..da0a6b0 Binary files /dev/null and b/lib64/wine/api-ms-win-core-processthreads-l1-1-2.dll.so differ diff --git a/lib64/wine/api-ms-win-core-processthreads-l1-1-3.dll.so b/lib64/wine/api-ms-win-core-processthreads-l1-1-3.dll.so new file mode 100755 index 0000000..9593e8a Binary files /dev/null and b/lib64/wine/api-ms-win-core-processthreads-l1-1-3.dll.so differ diff --git a/lib64/wine/api-ms-win-core-processtopology-obsolete-l1-1-0.dll.so b/lib64/wine/api-ms-win-core-processtopology-obsolete-l1-1-0.dll.so new file mode 100755 index 0000000..8456eee Binary files /dev/null and b/lib64/wine/api-ms-win-core-processtopology-obsolete-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-profile-l1-1-0.dll.so b/lib64/wine/api-ms-win-core-profile-l1-1-0.dll.so new file mode 100755 index 0000000..becf41f Binary files /dev/null and b/lib64/wine/api-ms-win-core-profile-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-psapi-ansi-l1-1-0.dll.so b/lib64/wine/api-ms-win-core-psapi-ansi-l1-1-0.dll.so new file mode 100755 index 0000000..501dd9e Binary files /dev/null and b/lib64/wine/api-ms-win-core-psapi-ansi-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-psapi-l1-1-0.dll.so b/lib64/wine/api-ms-win-core-psapi-l1-1-0.dll.so new file mode 100755 index 0000000..61bcbd6 Binary files /dev/null and b/lib64/wine/api-ms-win-core-psapi-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-psapi-obsolete-l1-1-0.dll.so b/lib64/wine/api-ms-win-core-psapi-obsolete-l1-1-0.dll.so new file mode 100755 index 0000000..3bfb031 Binary files /dev/null and b/lib64/wine/api-ms-win-core-psapi-obsolete-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-quirks-l1-1-0.dll.so b/lib64/wine/api-ms-win-core-quirks-l1-1-0.dll.so new file mode 100755 index 0000000..7826449 Binary files /dev/null and b/lib64/wine/api-ms-win-core-quirks-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-realtime-l1-1-0.dll.so b/lib64/wine/api-ms-win-core-realtime-l1-1-0.dll.so new file mode 100755 index 0000000..8dd25c7 Binary files /dev/null and b/lib64/wine/api-ms-win-core-realtime-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-registry-l1-1-0.dll.so b/lib64/wine/api-ms-win-core-registry-l1-1-0.dll.so new file mode 100755 index 0000000..062c13b Binary files /dev/null and b/lib64/wine/api-ms-win-core-registry-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-registry-l2-1-0.dll.so b/lib64/wine/api-ms-win-core-registry-l2-1-0.dll.so new file mode 100755 index 0000000..9eba42a Binary files /dev/null and b/lib64/wine/api-ms-win-core-registry-l2-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-registryuserspecific-l1-1-0.dll.so b/lib64/wine/api-ms-win-core-registryuserspecific-l1-1-0.dll.so new file mode 100755 index 0000000..0b08499 Binary files /dev/null and b/lib64/wine/api-ms-win-core-registryuserspecific-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-rtlsupport-l1-1-0.dll.so b/lib64/wine/api-ms-win-core-rtlsupport-l1-1-0.dll.so new file mode 100755 index 0000000..acd1f15 Binary files /dev/null and b/lib64/wine/api-ms-win-core-rtlsupport-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-rtlsupport-l1-2-0.dll.so b/lib64/wine/api-ms-win-core-rtlsupport-l1-2-0.dll.so new file mode 100755 index 0000000..520168d Binary files /dev/null and b/lib64/wine/api-ms-win-core-rtlsupport-l1-2-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-shlwapi-legacy-l1-1-0.dll.so b/lib64/wine/api-ms-win-core-shlwapi-legacy-l1-1-0.dll.so new file mode 100755 index 0000000..afa52ec Binary files /dev/null and b/lib64/wine/api-ms-win-core-shlwapi-legacy-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-shlwapi-obsolete-l1-1-0.dll.so b/lib64/wine/api-ms-win-core-shlwapi-obsolete-l1-1-0.dll.so new file mode 100755 index 0000000..62fa29c Binary files /dev/null and b/lib64/wine/api-ms-win-core-shlwapi-obsolete-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-shlwapi-obsolete-l1-2-0.dll.so b/lib64/wine/api-ms-win-core-shlwapi-obsolete-l1-2-0.dll.so new file mode 100755 index 0000000..b2697c9 Binary files /dev/null and b/lib64/wine/api-ms-win-core-shlwapi-obsolete-l1-2-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-shutdown-l1-1-0.dll.so b/lib64/wine/api-ms-win-core-shutdown-l1-1-0.dll.so new file mode 100755 index 0000000..f6f4c96 Binary files /dev/null and b/lib64/wine/api-ms-win-core-shutdown-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-sidebyside-l1-1-0.dll.so b/lib64/wine/api-ms-win-core-sidebyside-l1-1-0.dll.so new file mode 100755 index 0000000..4a66da7 Binary files /dev/null and b/lib64/wine/api-ms-win-core-sidebyside-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-string-l1-1-0.dll.so b/lib64/wine/api-ms-win-core-string-l1-1-0.dll.so new file mode 100755 index 0000000..1b5705f Binary files /dev/null and b/lib64/wine/api-ms-win-core-string-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-string-l2-1-0.dll.so b/lib64/wine/api-ms-win-core-string-l2-1-0.dll.so new file mode 100755 index 0000000..4c7a144 Binary files /dev/null and b/lib64/wine/api-ms-win-core-string-l2-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-string-obsolete-l1-1-0.dll.so b/lib64/wine/api-ms-win-core-string-obsolete-l1-1-0.dll.so new file mode 100755 index 0000000..408928f Binary files /dev/null and b/lib64/wine/api-ms-win-core-string-obsolete-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-stringansi-l1-1-0.dll.so b/lib64/wine/api-ms-win-core-stringansi-l1-1-0.dll.so new file mode 100755 index 0000000..17369c1 Binary files /dev/null and b/lib64/wine/api-ms-win-core-stringansi-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-stringloader-l1-1-1.dll.so b/lib64/wine/api-ms-win-core-stringloader-l1-1-1.dll.so new file mode 100755 index 0000000..cfd475b Binary files /dev/null and b/lib64/wine/api-ms-win-core-stringloader-l1-1-1.dll.so differ diff --git a/lib64/wine/api-ms-win-core-synch-ansi-l1-1-0.dll.so b/lib64/wine/api-ms-win-core-synch-ansi-l1-1-0.dll.so new file mode 100755 index 0000000..723506a Binary files /dev/null and b/lib64/wine/api-ms-win-core-synch-ansi-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-synch-l1-1-0.dll.so b/lib64/wine/api-ms-win-core-synch-l1-1-0.dll.so new file mode 100755 index 0000000..31b1b44 Binary files /dev/null and b/lib64/wine/api-ms-win-core-synch-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-synch-l1-2-0.dll.so b/lib64/wine/api-ms-win-core-synch-l1-2-0.dll.so new file mode 100755 index 0000000..0686128 Binary files /dev/null and b/lib64/wine/api-ms-win-core-synch-l1-2-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-synch-l1-2-1.dll.so b/lib64/wine/api-ms-win-core-synch-l1-2-1.dll.so new file mode 100755 index 0000000..fb80607 Binary files /dev/null and b/lib64/wine/api-ms-win-core-synch-l1-2-1.dll.so differ diff --git a/lib64/wine/api-ms-win-core-sysinfo-l1-1-0.dll.so b/lib64/wine/api-ms-win-core-sysinfo-l1-1-0.dll.so new file mode 100755 index 0000000..b5c784b Binary files /dev/null and b/lib64/wine/api-ms-win-core-sysinfo-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-sysinfo-l1-2-0.dll.so b/lib64/wine/api-ms-win-core-sysinfo-l1-2-0.dll.so new file mode 100755 index 0000000..5bc203d Binary files /dev/null and b/lib64/wine/api-ms-win-core-sysinfo-l1-2-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-sysinfo-l1-2-1.dll.so b/lib64/wine/api-ms-win-core-sysinfo-l1-2-1.dll.so new file mode 100755 index 0000000..a613151 Binary files /dev/null and b/lib64/wine/api-ms-win-core-sysinfo-l1-2-1.dll.so differ diff --git a/lib64/wine/api-ms-win-core-threadpool-l1-1-0.dll.so b/lib64/wine/api-ms-win-core-threadpool-l1-1-0.dll.so new file mode 100755 index 0000000..c4213db Binary files /dev/null and b/lib64/wine/api-ms-win-core-threadpool-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-threadpool-l1-2-0.dll.so b/lib64/wine/api-ms-win-core-threadpool-l1-2-0.dll.so new file mode 100755 index 0000000..656e827 Binary files /dev/null and b/lib64/wine/api-ms-win-core-threadpool-l1-2-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-threadpool-legacy-l1-1-0.dll.so b/lib64/wine/api-ms-win-core-threadpool-legacy-l1-1-0.dll.so new file mode 100755 index 0000000..d6f0165 Binary files /dev/null and b/lib64/wine/api-ms-win-core-threadpool-legacy-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-threadpool-private-l1-1-0.dll.so b/lib64/wine/api-ms-win-core-threadpool-private-l1-1-0.dll.so new file mode 100755 index 0000000..7b65d32 Binary files /dev/null and b/lib64/wine/api-ms-win-core-threadpool-private-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-timezone-l1-1-0.dll.so b/lib64/wine/api-ms-win-core-timezone-l1-1-0.dll.so new file mode 100755 index 0000000..bacf12a Binary files /dev/null and b/lib64/wine/api-ms-win-core-timezone-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-toolhelp-l1-1-0.dll.so b/lib64/wine/api-ms-win-core-toolhelp-l1-1-0.dll.so new file mode 100755 index 0000000..974104b Binary files /dev/null and b/lib64/wine/api-ms-win-core-toolhelp-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-url-l1-1-0.dll.so b/lib64/wine/api-ms-win-core-url-l1-1-0.dll.so new file mode 100755 index 0000000..a340e1c Binary files /dev/null and b/lib64/wine/api-ms-win-core-url-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-util-l1-1-0.dll.so b/lib64/wine/api-ms-win-core-util-l1-1-0.dll.so new file mode 100755 index 0000000..34d4d16 Binary files /dev/null and b/lib64/wine/api-ms-win-core-util-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-version-l1-1-0.dll.so b/lib64/wine/api-ms-win-core-version-l1-1-0.dll.so new file mode 100755 index 0000000..e362223 Binary files /dev/null and b/lib64/wine/api-ms-win-core-version-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-version-l1-1-1.dll.so b/lib64/wine/api-ms-win-core-version-l1-1-1.dll.so new file mode 100755 index 0000000..4f77470 Binary files /dev/null and b/lib64/wine/api-ms-win-core-version-l1-1-1.dll.so differ diff --git a/lib64/wine/api-ms-win-core-version-private-l1-1-0.dll.so b/lib64/wine/api-ms-win-core-version-private-l1-1-0.dll.so new file mode 100755 index 0000000..845aef7 Binary files /dev/null and b/lib64/wine/api-ms-win-core-version-private-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-versionansi-l1-1-0.dll.so b/lib64/wine/api-ms-win-core-versionansi-l1-1-0.dll.so new file mode 100755 index 0000000..7c8528f Binary files /dev/null and b/lib64/wine/api-ms-win-core-versionansi-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-windowserrorreporting-l1-1-0.dll.so b/lib64/wine/api-ms-win-core-windowserrorreporting-l1-1-0.dll.so new file mode 100755 index 0000000..9c7589b Binary files /dev/null and b/lib64/wine/api-ms-win-core-windowserrorreporting-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-winrt-error-l1-1-0.dll.so b/lib64/wine/api-ms-win-core-winrt-error-l1-1-0.dll.so new file mode 100755 index 0000000..172412c Binary files /dev/null and b/lib64/wine/api-ms-win-core-winrt-error-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-winrt-error-l1-1-1.dll.so b/lib64/wine/api-ms-win-core-winrt-error-l1-1-1.dll.so new file mode 100755 index 0000000..957ef00 Binary files /dev/null and b/lib64/wine/api-ms-win-core-winrt-error-l1-1-1.dll.so differ diff --git a/lib64/wine/api-ms-win-core-winrt-errorprivate-l1-1-1.dll.so b/lib64/wine/api-ms-win-core-winrt-errorprivate-l1-1-1.dll.so new file mode 100755 index 0000000..a525dae Binary files /dev/null and b/lib64/wine/api-ms-win-core-winrt-errorprivate-l1-1-1.dll.so differ diff --git a/lib64/wine/api-ms-win-core-winrt-l1-1-0.dll.so b/lib64/wine/api-ms-win-core-winrt-l1-1-0.dll.so new file mode 100755 index 0000000..27a9dd0 Binary files /dev/null and b/lib64/wine/api-ms-win-core-winrt-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-winrt-registration-l1-1-0.dll.so b/lib64/wine/api-ms-win-core-winrt-registration-l1-1-0.dll.so new file mode 100755 index 0000000..402c8cc Binary files /dev/null and b/lib64/wine/api-ms-win-core-winrt-registration-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-winrt-roparameterizediid-l1-1-0.dll.so b/lib64/wine/api-ms-win-core-winrt-roparameterizediid-l1-1-0.dll.so new file mode 100755 index 0000000..90727fc Binary files /dev/null and b/lib64/wine/api-ms-win-core-winrt-roparameterizediid-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-winrt-string-l1-1-0.dll.so b/lib64/wine/api-ms-win-core-winrt-string-l1-1-0.dll.so new file mode 100755 index 0000000..ae4c191 Binary files /dev/null and b/lib64/wine/api-ms-win-core-winrt-string-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-winrt-string-l1-1-1.dll.so b/lib64/wine/api-ms-win-core-winrt-string-l1-1-1.dll.so new file mode 100755 index 0000000..58539e8 Binary files /dev/null and b/lib64/wine/api-ms-win-core-winrt-string-l1-1-1.dll.so differ diff --git a/lib64/wine/api-ms-win-core-wow64-l1-1-0.dll.so b/lib64/wine/api-ms-win-core-wow64-l1-1-0.dll.so new file mode 100755 index 0000000..17b313f Binary files /dev/null and b/lib64/wine/api-ms-win-core-wow64-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-wow64-l1-1-1.dll.so b/lib64/wine/api-ms-win-core-wow64-l1-1-1.dll.so new file mode 100755 index 0000000..8acea3c Binary files /dev/null and b/lib64/wine/api-ms-win-core-wow64-l1-1-1.dll.so differ diff --git a/lib64/wine/api-ms-win-core-xstate-l1-1-0.dll.so b/lib64/wine/api-ms-win-core-xstate-l1-1-0.dll.so new file mode 100755 index 0000000..d3dcd0a Binary files /dev/null and b/lib64/wine/api-ms-win-core-xstate-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-core-xstate-l2-1-0.dll.so b/lib64/wine/api-ms-win-core-xstate-l2-1-0.dll.so new file mode 100755 index 0000000..8984dd3 Binary files /dev/null and b/lib64/wine/api-ms-win-core-xstate-l2-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-crt-conio-l1-1-0.dll.so b/lib64/wine/api-ms-win-crt-conio-l1-1-0.dll.so new file mode 100755 index 0000000..f69ea62 Binary files /dev/null and b/lib64/wine/api-ms-win-crt-conio-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-crt-convert-l1-1-0.dll.so b/lib64/wine/api-ms-win-crt-convert-l1-1-0.dll.so new file mode 100755 index 0000000..989f0f7 Binary files /dev/null and b/lib64/wine/api-ms-win-crt-convert-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-crt-environment-l1-1-0.dll.so b/lib64/wine/api-ms-win-crt-environment-l1-1-0.dll.so new file mode 100755 index 0000000..bbcbe23 Binary files /dev/null and b/lib64/wine/api-ms-win-crt-environment-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-crt-filesystem-l1-1-0.dll.so b/lib64/wine/api-ms-win-crt-filesystem-l1-1-0.dll.so new file mode 100755 index 0000000..69b31dd Binary files /dev/null and b/lib64/wine/api-ms-win-crt-filesystem-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-crt-heap-l1-1-0.dll.so b/lib64/wine/api-ms-win-crt-heap-l1-1-0.dll.so new file mode 100755 index 0000000..7f60c46 Binary files /dev/null and b/lib64/wine/api-ms-win-crt-heap-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-crt-locale-l1-1-0.dll.so b/lib64/wine/api-ms-win-crt-locale-l1-1-0.dll.so new file mode 100755 index 0000000..9a60dce Binary files /dev/null and b/lib64/wine/api-ms-win-crt-locale-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-crt-math-l1-1-0.dll.so b/lib64/wine/api-ms-win-crt-math-l1-1-0.dll.so new file mode 100755 index 0000000..60b34fb Binary files /dev/null and b/lib64/wine/api-ms-win-crt-math-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-crt-multibyte-l1-1-0.dll.so b/lib64/wine/api-ms-win-crt-multibyte-l1-1-0.dll.so new file mode 100755 index 0000000..c816446 Binary files /dev/null and b/lib64/wine/api-ms-win-crt-multibyte-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-crt-private-l1-1-0.dll.so b/lib64/wine/api-ms-win-crt-private-l1-1-0.dll.so new file mode 100755 index 0000000..8ab70c7 Binary files /dev/null and b/lib64/wine/api-ms-win-crt-private-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-crt-process-l1-1-0.dll.so b/lib64/wine/api-ms-win-crt-process-l1-1-0.dll.so new file mode 100755 index 0000000..1f4382e Binary files /dev/null and b/lib64/wine/api-ms-win-crt-process-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-crt-runtime-l1-1-0.dll.so b/lib64/wine/api-ms-win-crt-runtime-l1-1-0.dll.so new file mode 100755 index 0000000..25cc47b Binary files /dev/null and b/lib64/wine/api-ms-win-crt-runtime-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-crt-stdio-l1-1-0.dll.so b/lib64/wine/api-ms-win-crt-stdio-l1-1-0.dll.so new file mode 100755 index 0000000..56a1271 Binary files /dev/null and b/lib64/wine/api-ms-win-crt-stdio-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-crt-string-l1-1-0.dll.so b/lib64/wine/api-ms-win-crt-string-l1-1-0.dll.so new file mode 100755 index 0000000..bc91a5b Binary files /dev/null and b/lib64/wine/api-ms-win-crt-string-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-crt-time-l1-1-0.dll.so b/lib64/wine/api-ms-win-crt-time-l1-1-0.dll.so new file mode 100755 index 0000000..391657a Binary files /dev/null and b/lib64/wine/api-ms-win-crt-time-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-crt-utility-l1-1-0.dll.so b/lib64/wine/api-ms-win-crt-utility-l1-1-0.dll.so new file mode 100755 index 0000000..22368ab Binary files /dev/null and b/lib64/wine/api-ms-win-crt-utility-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-devices-config-l1-1-0.dll.so b/lib64/wine/api-ms-win-devices-config-l1-1-0.dll.so new file mode 100755 index 0000000..d58e4b3 Binary files /dev/null and b/lib64/wine/api-ms-win-devices-config-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-devices-config-l1-1-1.dll.so b/lib64/wine/api-ms-win-devices-config-l1-1-1.dll.so new file mode 100755 index 0000000..89f18ca Binary files /dev/null and b/lib64/wine/api-ms-win-devices-config-l1-1-1.dll.so differ diff --git a/lib64/wine/api-ms-win-devices-query-l1-1-1.dll.so b/lib64/wine/api-ms-win-devices-query-l1-1-1.dll.so new file mode 100755 index 0000000..f995b4e Binary files /dev/null and b/lib64/wine/api-ms-win-devices-query-l1-1-1.dll.so differ diff --git a/lib64/wine/api-ms-win-downlevel-advapi32-l1-1-0.dll.so b/lib64/wine/api-ms-win-downlevel-advapi32-l1-1-0.dll.so new file mode 100755 index 0000000..dfedcfb Binary files /dev/null and b/lib64/wine/api-ms-win-downlevel-advapi32-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-downlevel-advapi32-l2-1-0.dll.so b/lib64/wine/api-ms-win-downlevel-advapi32-l2-1-0.dll.so new file mode 100755 index 0000000..7b8a451 Binary files /dev/null and b/lib64/wine/api-ms-win-downlevel-advapi32-l2-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-downlevel-normaliz-l1-1-0.dll.so b/lib64/wine/api-ms-win-downlevel-normaliz-l1-1-0.dll.so new file mode 100755 index 0000000..7f6b64d Binary files /dev/null and b/lib64/wine/api-ms-win-downlevel-normaliz-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-downlevel-ole32-l1-1-0.dll.so b/lib64/wine/api-ms-win-downlevel-ole32-l1-1-0.dll.so new file mode 100755 index 0000000..cf234f6 Binary files /dev/null and b/lib64/wine/api-ms-win-downlevel-ole32-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-downlevel-shell32-l1-1-0.dll.so b/lib64/wine/api-ms-win-downlevel-shell32-l1-1-0.dll.so new file mode 100755 index 0000000..f3bccd3 Binary files /dev/null and b/lib64/wine/api-ms-win-downlevel-shell32-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-downlevel-shlwapi-l1-1-0.dll.so b/lib64/wine/api-ms-win-downlevel-shlwapi-l1-1-0.dll.so new file mode 100755 index 0000000..3bd6dbe Binary files /dev/null and b/lib64/wine/api-ms-win-downlevel-shlwapi-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-downlevel-shlwapi-l2-1-0.dll.so b/lib64/wine/api-ms-win-downlevel-shlwapi-l2-1-0.dll.so new file mode 100755 index 0000000..6ced940 Binary files /dev/null and b/lib64/wine/api-ms-win-downlevel-shlwapi-l2-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-downlevel-user32-l1-1-0.dll.so b/lib64/wine/api-ms-win-downlevel-user32-l1-1-0.dll.so new file mode 100755 index 0000000..62daaab Binary files /dev/null and b/lib64/wine/api-ms-win-downlevel-user32-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-downlevel-version-l1-1-0.dll.so b/lib64/wine/api-ms-win-downlevel-version-l1-1-0.dll.so new file mode 100755 index 0000000..422f05c Binary files /dev/null and b/lib64/wine/api-ms-win-downlevel-version-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-dx-d3dkmt-l1-1-0.dll.so b/lib64/wine/api-ms-win-dx-d3dkmt-l1-1-0.dll.so new file mode 100755 index 0000000..8eb23cf Binary files /dev/null and b/lib64/wine/api-ms-win-dx-d3dkmt-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-eventing-classicprovider-l1-1-0.dll.so b/lib64/wine/api-ms-win-eventing-classicprovider-l1-1-0.dll.so new file mode 100755 index 0000000..d0f7154 Binary files /dev/null and b/lib64/wine/api-ms-win-eventing-classicprovider-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-eventing-consumer-l1-1-0.dll.so b/lib64/wine/api-ms-win-eventing-consumer-l1-1-0.dll.so new file mode 100755 index 0000000..8ec5bad Binary files /dev/null and b/lib64/wine/api-ms-win-eventing-consumer-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-eventing-controller-l1-1-0.dll.so b/lib64/wine/api-ms-win-eventing-controller-l1-1-0.dll.so new file mode 100755 index 0000000..df4e91f Binary files /dev/null and b/lib64/wine/api-ms-win-eventing-controller-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-eventing-legacy-l1-1-0.dll.so b/lib64/wine/api-ms-win-eventing-legacy-l1-1-0.dll.so new file mode 100755 index 0000000..1a23250 Binary files /dev/null and b/lib64/wine/api-ms-win-eventing-legacy-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-eventing-provider-l1-1-0.dll.so b/lib64/wine/api-ms-win-eventing-provider-l1-1-0.dll.so new file mode 100755 index 0000000..3dc01a1 Binary files /dev/null and b/lib64/wine/api-ms-win-eventing-provider-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-eventlog-legacy-l1-1-0.dll.so b/lib64/wine/api-ms-win-eventlog-legacy-l1-1-0.dll.so new file mode 100755 index 0000000..89200bb Binary files /dev/null and b/lib64/wine/api-ms-win-eventlog-legacy-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-gdi-dpiinfo-l1-1-0.dll.so b/lib64/wine/api-ms-win-gdi-dpiinfo-l1-1-0.dll.so new file mode 100755 index 0000000..bb3c6c3 Binary files /dev/null and b/lib64/wine/api-ms-win-gdi-dpiinfo-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-mm-joystick-l1-1-0.dll.so b/lib64/wine/api-ms-win-mm-joystick-l1-1-0.dll.so new file mode 100755 index 0000000..05e7dac Binary files /dev/null and b/lib64/wine/api-ms-win-mm-joystick-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-mm-misc-l1-1-1.dll.so b/lib64/wine/api-ms-win-mm-misc-l1-1-1.dll.so new file mode 100755 index 0000000..221dee0 Binary files /dev/null and b/lib64/wine/api-ms-win-mm-misc-l1-1-1.dll.so differ diff --git a/lib64/wine/api-ms-win-mm-mme-l1-1-0.dll.so b/lib64/wine/api-ms-win-mm-mme-l1-1-0.dll.so new file mode 100755 index 0000000..85df04f Binary files /dev/null and b/lib64/wine/api-ms-win-mm-mme-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-mm-time-l1-1-0.dll.so b/lib64/wine/api-ms-win-mm-time-l1-1-0.dll.so new file mode 100755 index 0000000..22d9d8a Binary files /dev/null and b/lib64/wine/api-ms-win-mm-time-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-ntuser-dc-access-l1-1-0.dll.so b/lib64/wine/api-ms-win-ntuser-dc-access-l1-1-0.dll.so new file mode 100755 index 0000000..7dbce07 Binary files /dev/null and b/lib64/wine/api-ms-win-ntuser-dc-access-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-ntuser-rectangle-l1-1-0.dll.so b/lib64/wine/api-ms-win-ntuser-rectangle-l1-1-0.dll.so new file mode 100755 index 0000000..f7b8304 Binary files /dev/null and b/lib64/wine/api-ms-win-ntuser-rectangle-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-ntuser-sysparams-l1-1-0.dll.so b/lib64/wine/api-ms-win-ntuser-sysparams-l1-1-0.dll.so new file mode 100755 index 0000000..7c1d5c6 Binary files /dev/null and b/lib64/wine/api-ms-win-ntuser-sysparams-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-perf-legacy-l1-1-0.dll.so b/lib64/wine/api-ms-win-perf-legacy-l1-1-0.dll.so new file mode 100755 index 0000000..dd30ca5 Binary files /dev/null and b/lib64/wine/api-ms-win-perf-legacy-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-power-base-l1-1-0.dll.so b/lib64/wine/api-ms-win-power-base-l1-1-0.dll.so new file mode 100755 index 0000000..1d1c89f Binary files /dev/null and b/lib64/wine/api-ms-win-power-base-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-power-setting-l1-1-0.dll.so b/lib64/wine/api-ms-win-power-setting-l1-1-0.dll.so new file mode 100755 index 0000000..bcb7fa7 Binary files /dev/null and b/lib64/wine/api-ms-win-power-setting-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-rtcore-ntuser-draw-l1-1-0.dll.so b/lib64/wine/api-ms-win-rtcore-ntuser-draw-l1-1-0.dll.so new file mode 100755 index 0000000..6932604 Binary files /dev/null and b/lib64/wine/api-ms-win-rtcore-ntuser-draw-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-rtcore-ntuser-private-l1-1-0.dll.so b/lib64/wine/api-ms-win-rtcore-ntuser-private-l1-1-0.dll.so new file mode 100755 index 0000000..880cadc Binary files /dev/null and b/lib64/wine/api-ms-win-rtcore-ntuser-private-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-rtcore-ntuser-private-l1-1-4.dll.so b/lib64/wine/api-ms-win-rtcore-ntuser-private-l1-1-4.dll.so new file mode 100755 index 0000000..384d216 Binary files /dev/null and b/lib64/wine/api-ms-win-rtcore-ntuser-private-l1-1-4.dll.so differ diff --git a/lib64/wine/api-ms-win-rtcore-ntuser-window-l1-1-0.dll.so b/lib64/wine/api-ms-win-rtcore-ntuser-window-l1-1-0.dll.so new file mode 100755 index 0000000..7c024ab Binary files /dev/null and b/lib64/wine/api-ms-win-rtcore-ntuser-window-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-rtcore-ntuser-winevent-l1-1-0.dll.so b/lib64/wine/api-ms-win-rtcore-ntuser-winevent-l1-1-0.dll.so new file mode 100755 index 0000000..02fb1d6 Binary files /dev/null and b/lib64/wine/api-ms-win-rtcore-ntuser-winevent-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-rtcore-ntuser-wmpointer-l1-1-0.dll.so b/lib64/wine/api-ms-win-rtcore-ntuser-wmpointer-l1-1-0.dll.so new file mode 100755 index 0000000..406b29c Binary files /dev/null and b/lib64/wine/api-ms-win-rtcore-ntuser-wmpointer-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-rtcore-ntuser-wmpointer-l1-1-3.dll.so b/lib64/wine/api-ms-win-rtcore-ntuser-wmpointer-l1-1-3.dll.so new file mode 100755 index 0000000..d4091c5 Binary files /dev/null and b/lib64/wine/api-ms-win-rtcore-ntuser-wmpointer-l1-1-3.dll.so differ diff --git a/lib64/wine/api-ms-win-security-activedirectoryclient-l1-1-0.dll.so b/lib64/wine/api-ms-win-security-activedirectoryclient-l1-1-0.dll.so new file mode 100755 index 0000000..43bd55d Binary files /dev/null and b/lib64/wine/api-ms-win-security-activedirectoryclient-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-security-audit-l1-1-1.dll.so b/lib64/wine/api-ms-win-security-audit-l1-1-1.dll.so new file mode 100755 index 0000000..230dbe8 Binary files /dev/null and b/lib64/wine/api-ms-win-security-audit-l1-1-1.dll.so differ diff --git a/lib64/wine/api-ms-win-security-base-l1-1-0.dll.so b/lib64/wine/api-ms-win-security-base-l1-1-0.dll.so new file mode 100755 index 0000000..df333dc Binary files /dev/null and b/lib64/wine/api-ms-win-security-base-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-security-base-l1-2-0.dll.so b/lib64/wine/api-ms-win-security-base-l1-2-0.dll.so new file mode 100755 index 0000000..92586ba Binary files /dev/null and b/lib64/wine/api-ms-win-security-base-l1-2-0.dll.so differ diff --git a/lib64/wine/api-ms-win-security-base-private-l1-1-1.dll.so b/lib64/wine/api-ms-win-security-base-private-l1-1-1.dll.so new file mode 100755 index 0000000..efd1896 Binary files /dev/null and b/lib64/wine/api-ms-win-security-base-private-l1-1-1.dll.so differ diff --git a/lib64/wine/api-ms-win-security-credentials-l1-1-0.dll.so b/lib64/wine/api-ms-win-security-credentials-l1-1-0.dll.so new file mode 100755 index 0000000..93c97f7 Binary files /dev/null and b/lib64/wine/api-ms-win-security-credentials-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-security-cryptoapi-l1-1-0.dll.so b/lib64/wine/api-ms-win-security-cryptoapi-l1-1-0.dll.so new file mode 100755 index 0000000..71da2b3 Binary files /dev/null and b/lib64/wine/api-ms-win-security-cryptoapi-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-security-grouppolicy-l1-1-0.dll.so b/lib64/wine/api-ms-win-security-grouppolicy-l1-1-0.dll.so new file mode 100755 index 0000000..885ae5f Binary files /dev/null and b/lib64/wine/api-ms-win-security-grouppolicy-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-security-lsalookup-l1-1-0.dll.so b/lib64/wine/api-ms-win-security-lsalookup-l1-1-0.dll.so new file mode 100755 index 0000000..fb33aba Binary files /dev/null and b/lib64/wine/api-ms-win-security-lsalookup-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-security-lsalookup-l1-1-1.dll.so b/lib64/wine/api-ms-win-security-lsalookup-l1-1-1.dll.so new file mode 100755 index 0000000..d1bf726 Binary files /dev/null and b/lib64/wine/api-ms-win-security-lsalookup-l1-1-1.dll.so differ diff --git a/lib64/wine/api-ms-win-security-lsalookup-l2-1-0.dll.so b/lib64/wine/api-ms-win-security-lsalookup-l2-1-0.dll.so new file mode 100755 index 0000000..7855b15 Binary files /dev/null and b/lib64/wine/api-ms-win-security-lsalookup-l2-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-security-lsalookup-l2-1-1.dll.so b/lib64/wine/api-ms-win-security-lsalookup-l2-1-1.dll.so new file mode 100755 index 0000000..adf7975 Binary files /dev/null and b/lib64/wine/api-ms-win-security-lsalookup-l2-1-1.dll.so differ diff --git a/lib64/wine/api-ms-win-security-lsapolicy-l1-1-0.dll.so b/lib64/wine/api-ms-win-security-lsapolicy-l1-1-0.dll.so new file mode 100755 index 0000000..d5e620b Binary files /dev/null and b/lib64/wine/api-ms-win-security-lsapolicy-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-security-provider-l1-1-0.dll.so b/lib64/wine/api-ms-win-security-provider-l1-1-0.dll.so new file mode 100755 index 0000000..342972c Binary files /dev/null and b/lib64/wine/api-ms-win-security-provider-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-security-sddl-l1-1-0.dll.so b/lib64/wine/api-ms-win-security-sddl-l1-1-0.dll.so new file mode 100755 index 0000000..3ce31ce Binary files /dev/null and b/lib64/wine/api-ms-win-security-sddl-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-security-systemfunctions-l1-1-0.dll.so b/lib64/wine/api-ms-win-security-systemfunctions-l1-1-0.dll.so new file mode 100755 index 0000000..fc4c635 Binary files /dev/null and b/lib64/wine/api-ms-win-security-systemfunctions-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-service-core-l1-1-0.dll.so b/lib64/wine/api-ms-win-service-core-l1-1-0.dll.so new file mode 100755 index 0000000..6aed9a8 Binary files /dev/null and b/lib64/wine/api-ms-win-service-core-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-service-core-l1-1-1.dll.so b/lib64/wine/api-ms-win-service-core-l1-1-1.dll.so new file mode 100755 index 0000000..7acd2ab Binary files /dev/null and b/lib64/wine/api-ms-win-service-core-l1-1-1.dll.so differ diff --git a/lib64/wine/api-ms-win-service-management-l1-1-0.dll.so b/lib64/wine/api-ms-win-service-management-l1-1-0.dll.so new file mode 100755 index 0000000..d1150b5 Binary files /dev/null and b/lib64/wine/api-ms-win-service-management-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-service-management-l2-1-0.dll.so b/lib64/wine/api-ms-win-service-management-l2-1-0.dll.so new file mode 100755 index 0000000..488261a Binary files /dev/null and b/lib64/wine/api-ms-win-service-management-l2-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-service-private-l1-1-1.dll.so b/lib64/wine/api-ms-win-service-private-l1-1-1.dll.so new file mode 100755 index 0000000..6baad2b Binary files /dev/null and b/lib64/wine/api-ms-win-service-private-l1-1-1.dll.so differ diff --git a/lib64/wine/api-ms-win-service-winsvc-l1-1-0.dll.so b/lib64/wine/api-ms-win-service-winsvc-l1-1-0.dll.so new file mode 100755 index 0000000..ef2e399 Binary files /dev/null and b/lib64/wine/api-ms-win-service-winsvc-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-service-winsvc-l1-2-0.dll.so b/lib64/wine/api-ms-win-service-winsvc-l1-2-0.dll.so new file mode 100755 index 0000000..d4102b2 Binary files /dev/null and b/lib64/wine/api-ms-win-service-winsvc-l1-2-0.dll.so differ diff --git a/lib64/wine/api-ms-win-shcore-obsolete-l1-1-0.dll.so b/lib64/wine/api-ms-win-shcore-obsolete-l1-1-0.dll.so new file mode 100755 index 0000000..61092da Binary files /dev/null and b/lib64/wine/api-ms-win-shcore-obsolete-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-shcore-scaling-l1-1-1.dll.so b/lib64/wine/api-ms-win-shcore-scaling-l1-1-1.dll.so new file mode 100755 index 0000000..81adf07 Binary files /dev/null and b/lib64/wine/api-ms-win-shcore-scaling-l1-1-1.dll.so differ diff --git a/lib64/wine/api-ms-win-shcore-stream-l1-1-0.dll.so b/lib64/wine/api-ms-win-shcore-stream-l1-1-0.dll.so new file mode 100755 index 0000000..ad5c84c Binary files /dev/null and b/lib64/wine/api-ms-win-shcore-stream-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-shcore-thread-l1-1-0.dll.so b/lib64/wine/api-ms-win-shcore-thread-l1-1-0.dll.so new file mode 100755 index 0000000..c4bfc43 Binary files /dev/null and b/lib64/wine/api-ms-win-shcore-thread-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-shell-shellcom-l1-1-0.dll.so b/lib64/wine/api-ms-win-shell-shellcom-l1-1-0.dll.so new file mode 100755 index 0000000..d42e823 Binary files /dev/null and b/lib64/wine/api-ms-win-shell-shellcom-l1-1-0.dll.so differ diff --git a/lib64/wine/api-ms-win-shell-shellfolders-l1-1-0.dll.so b/lib64/wine/api-ms-win-shell-shellfolders-l1-1-0.dll.so new file mode 100755 index 0000000..355ab99 Binary files /dev/null and b/lib64/wine/api-ms-win-shell-shellfolders-l1-1-0.dll.so differ diff --git a/lib64/wine/apphelp.dll.so b/lib64/wine/apphelp.dll.so new file mode 100755 index 0000000..e0367be Binary files /dev/null and b/lib64/wine/apphelp.dll.so differ diff --git a/lib64/wine/appwiz.cpl.so b/lib64/wine/appwiz.cpl.so new file mode 100755 index 0000000..6d131ad Binary files /dev/null and b/lib64/wine/appwiz.cpl.so differ diff --git a/lib64/wine/arp.exe.so b/lib64/wine/arp.exe.so new file mode 100755 index 0000000..ee0b817 Binary files /dev/null and b/lib64/wine/arp.exe.so differ diff --git a/lib64/wine/aspnet_regiis.exe.so b/lib64/wine/aspnet_regiis.exe.so new file mode 100755 index 0000000..6c103f5 Binary files /dev/null and b/lib64/wine/aspnet_regiis.exe.so differ diff --git a/lib64/wine/atl.dll.so b/lib64/wine/atl.dll.so new file mode 100755 index 0000000..6b7c3af Binary files /dev/null and b/lib64/wine/atl.dll.so differ diff --git a/lib64/wine/atl100.dll.so b/lib64/wine/atl100.dll.so new file mode 100755 index 0000000..864d057 Binary files /dev/null and b/lib64/wine/atl100.dll.so differ diff --git a/lib64/wine/atl110.dll.so b/lib64/wine/atl110.dll.so new file mode 100755 index 0000000..9a62e54 Binary files /dev/null and b/lib64/wine/atl110.dll.so differ diff --git a/lib64/wine/atl80.dll.so b/lib64/wine/atl80.dll.so new file mode 100755 index 0000000..56db2e1 Binary files /dev/null and b/lib64/wine/atl80.dll.so differ diff --git a/lib64/wine/atl90.dll.so b/lib64/wine/atl90.dll.so new file mode 100755 index 0000000..1433e19 Binary files /dev/null and b/lib64/wine/atl90.dll.so differ diff --git a/lib64/wine/atlthunk.dll.so b/lib64/wine/atlthunk.dll.so new file mode 100755 index 0000000..a0e4eeb Binary files /dev/null and b/lib64/wine/atlthunk.dll.so differ diff --git a/lib64/wine/atmlib.dll.so b/lib64/wine/atmlib.dll.so new file mode 100755 index 0000000..e373b02 Binary files /dev/null and b/lib64/wine/atmlib.dll.so differ diff --git a/lib64/wine/attrib.exe.so b/lib64/wine/attrib.exe.so new file mode 100755 index 0000000..ac3f4de Binary files /dev/null and b/lib64/wine/attrib.exe.so differ diff --git a/lib64/wine/authz.dll.so b/lib64/wine/authz.dll.so new file mode 100755 index 0000000..049a604 Binary files /dev/null and b/lib64/wine/authz.dll.so differ diff --git a/lib64/wine/avicap32.dll.so b/lib64/wine/avicap32.dll.so new file mode 100755 index 0000000..aa7ebaa Binary files /dev/null and b/lib64/wine/avicap32.dll.so differ diff --git a/lib64/wine/avifil32.dll.so b/lib64/wine/avifil32.dll.so new file mode 100755 index 0000000..7f9c841 Binary files /dev/null and b/lib64/wine/avifil32.dll.so differ diff --git a/lib64/wine/avrt.dll.so b/lib64/wine/avrt.dll.so new file mode 100755 index 0000000..5670e1f Binary files /dev/null and b/lib64/wine/avrt.dll.so differ diff --git a/lib64/wine/bcrypt.dll.so b/lib64/wine/bcrypt.dll.so new file mode 100755 index 0000000..2f81b9c Binary files /dev/null and b/lib64/wine/bcrypt.dll.so differ diff --git a/lib64/wine/bluetoothapis.dll.so b/lib64/wine/bluetoothapis.dll.so new file mode 100755 index 0000000..384fa34 Binary files /dev/null and b/lib64/wine/bluetoothapis.dll.so differ diff --git a/lib64/wine/browseui.dll.so b/lib64/wine/browseui.dll.so new file mode 100755 index 0000000..c65522b Binary files /dev/null and b/lib64/wine/browseui.dll.so differ diff --git a/lib64/wine/bthprops.cpl.so b/lib64/wine/bthprops.cpl.so new file mode 100755 index 0000000..eef2960 Binary files /dev/null and b/lib64/wine/bthprops.cpl.so differ diff --git a/lib64/wine/cabarc.exe.so b/lib64/wine/cabarc.exe.so new file mode 100755 index 0000000..c5d1cb8 Binary files /dev/null and b/lib64/wine/cabarc.exe.so differ diff --git a/lib64/wine/cabinet.dll.so b/lib64/wine/cabinet.dll.so new file mode 100755 index 0000000..2ac680a Binary files /dev/null and b/lib64/wine/cabinet.dll.so differ diff --git a/lib64/wine/cacls.exe.so b/lib64/wine/cacls.exe.so new file mode 100755 index 0000000..7094b0b Binary files /dev/null and b/lib64/wine/cacls.exe.so differ diff --git a/lib64/wine/capi2032.dll.so b/lib64/wine/capi2032.dll.so new file mode 100755 index 0000000..cc5898e Binary files /dev/null and b/lib64/wine/capi2032.dll.so differ diff --git a/lib64/wine/cards.dll.so b/lib64/wine/cards.dll.so new file mode 100755 index 0000000..24fc588 Binary files /dev/null and b/lib64/wine/cards.dll.so differ diff --git a/lib64/wine/cdosys.dll.so b/lib64/wine/cdosys.dll.so new file mode 100755 index 0000000..2d49757 Binary files /dev/null and b/lib64/wine/cdosys.dll.so differ diff --git a/lib64/wine/cfgmgr32.dll.so b/lib64/wine/cfgmgr32.dll.so new file mode 100755 index 0000000..919a591 Binary files /dev/null and b/lib64/wine/cfgmgr32.dll.so differ diff --git a/lib64/wine/clock.exe.so b/lib64/wine/clock.exe.so new file mode 100755 index 0000000..85a4f76 Binary files /dev/null and b/lib64/wine/clock.exe.so differ diff --git a/lib64/wine/clusapi.dll.so b/lib64/wine/clusapi.dll.so new file mode 100755 index 0000000..8d57d14 Binary files /dev/null and b/lib64/wine/clusapi.dll.so differ diff --git a/lib64/wine/cmd.exe.so b/lib64/wine/cmd.exe.so new file mode 100755 index 0000000..d019093 Binary files /dev/null and b/lib64/wine/cmd.exe.so differ diff --git a/lib64/wine/combase.dll.so b/lib64/wine/combase.dll.so new file mode 100755 index 0000000..42d2830 Binary files /dev/null and b/lib64/wine/combase.dll.so differ diff --git a/lib64/wine/comcat.dll.so b/lib64/wine/comcat.dll.so new file mode 100755 index 0000000..7c18000 Binary files /dev/null and b/lib64/wine/comcat.dll.so differ diff --git a/lib64/wine/comctl32.dll.so b/lib64/wine/comctl32.dll.so new file mode 100755 index 0000000..42eb7c9 Binary files /dev/null and b/lib64/wine/comctl32.dll.so differ diff --git a/lib64/wine/comdlg32.dll.so b/lib64/wine/comdlg32.dll.so new file mode 100755 index 0000000..60e7991 Binary files /dev/null and b/lib64/wine/comdlg32.dll.so differ diff --git a/lib64/wine/compstui.dll.so b/lib64/wine/compstui.dll.so new file mode 100755 index 0000000..7dbac9c Binary files /dev/null and b/lib64/wine/compstui.dll.so differ diff --git a/lib64/wine/comsvcs.dll.so b/lib64/wine/comsvcs.dll.so new file mode 100755 index 0000000..db967bc Binary files /dev/null and b/lib64/wine/comsvcs.dll.so differ diff --git a/lib64/wine/concrt140.dll.so b/lib64/wine/concrt140.dll.so new file mode 100755 index 0000000..6bf629e Binary files /dev/null and b/lib64/wine/concrt140.dll.so differ diff --git a/lib64/wine/conhost.exe.so b/lib64/wine/conhost.exe.so new file mode 100755 index 0000000..4b02e29 Binary files /dev/null and b/lib64/wine/conhost.exe.so differ diff --git a/lib64/wine/connect.dll.so b/lib64/wine/connect.dll.so new file mode 100755 index 0000000..5793da5 Binary files /dev/null and b/lib64/wine/connect.dll.so differ diff --git a/lib64/wine/control.exe.so b/lib64/wine/control.exe.so new file mode 100755 index 0000000..52570f2 Binary files /dev/null and b/lib64/wine/control.exe.so differ diff --git a/lib64/wine/credui.dll.so b/lib64/wine/credui.dll.so new file mode 100755 index 0000000..69a021c Binary files /dev/null and b/lib64/wine/credui.dll.so differ diff --git a/lib64/wine/crtdll.dll.so b/lib64/wine/crtdll.dll.so new file mode 100755 index 0000000..fd3e002 Binary files /dev/null and b/lib64/wine/crtdll.dll.so differ diff --git a/lib64/wine/crypt32.dll.so b/lib64/wine/crypt32.dll.so new file mode 100755 index 0000000..3fc4998 Binary files /dev/null and b/lib64/wine/crypt32.dll.so differ diff --git a/lib64/wine/cryptdlg.dll.so b/lib64/wine/cryptdlg.dll.so new file mode 100755 index 0000000..546ff7c Binary files /dev/null and b/lib64/wine/cryptdlg.dll.so differ diff --git a/lib64/wine/cryptdll.dll.so b/lib64/wine/cryptdll.dll.so new file mode 100755 index 0000000..f610be1 Binary files /dev/null and b/lib64/wine/cryptdll.dll.so differ diff --git a/lib64/wine/cryptext.dll.so b/lib64/wine/cryptext.dll.so new file mode 100755 index 0000000..2ea21b8 Binary files /dev/null and b/lib64/wine/cryptext.dll.so differ diff --git a/lib64/wine/cryptnet.dll.so b/lib64/wine/cryptnet.dll.so new file mode 100755 index 0000000..118a87e Binary files /dev/null and b/lib64/wine/cryptnet.dll.so differ diff --git a/lib64/wine/cryptui.dll.so b/lib64/wine/cryptui.dll.so new file mode 100755 index 0000000..25d76eb Binary files /dev/null and b/lib64/wine/cryptui.dll.so differ diff --git a/lib64/wine/cscript.exe.so b/lib64/wine/cscript.exe.so new file mode 100755 index 0000000..ad06c66 Binary files /dev/null and b/lib64/wine/cscript.exe.so differ diff --git a/lib64/wine/ctapi32.dll.so b/lib64/wine/ctapi32.dll.so new file mode 100755 index 0000000..0aba96a Binary files /dev/null and b/lib64/wine/ctapi32.dll.so differ diff --git a/lib64/wine/ctl3d32.dll.so b/lib64/wine/ctl3d32.dll.so new file mode 100755 index 0000000..11ed60f Binary files /dev/null and b/lib64/wine/ctl3d32.dll.so differ diff --git a/lib64/wine/d2d1.dll.so b/lib64/wine/d2d1.dll.so new file mode 100755 index 0000000..a2a78c2 Binary files /dev/null and b/lib64/wine/d2d1.dll.so differ diff --git a/lib64/wine/d3d10.dll.so b/lib64/wine/d3d10.dll.so new file mode 100755 index 0000000..b19fb5e Binary files /dev/null and b/lib64/wine/d3d10.dll.so differ diff --git a/lib64/wine/d3d10_1.dll.so b/lib64/wine/d3d10_1.dll.so new file mode 100755 index 0000000..eedf5d6 Binary files /dev/null and b/lib64/wine/d3d10_1.dll.so differ diff --git a/lib64/wine/d3d10core.dll.so b/lib64/wine/d3d10core.dll.so new file mode 100755 index 0000000..8baea3b Binary files /dev/null and b/lib64/wine/d3d10core.dll.so differ diff --git a/lib64/wine/d3d11.dll.so b/lib64/wine/d3d11.dll.so new file mode 100755 index 0000000..245124f Binary files /dev/null and b/lib64/wine/d3d11.dll.so differ diff --git a/lib64/wine/d3d8.dll.so b/lib64/wine/d3d8.dll.so new file mode 100755 index 0000000..87d19b8 Binary files /dev/null and b/lib64/wine/d3d8.dll.so differ diff --git a/lib64/wine/d3d9.dll.so b/lib64/wine/d3d9.dll.so new file mode 100755 index 0000000..4c969c6 Binary files /dev/null and b/lib64/wine/d3d9.dll.so differ diff --git a/lib64/wine/d3dcompiler_33.dll.so b/lib64/wine/d3dcompiler_33.dll.so new file mode 100755 index 0000000..db14903 Binary files /dev/null and b/lib64/wine/d3dcompiler_33.dll.so differ diff --git a/lib64/wine/d3dcompiler_34.dll.so b/lib64/wine/d3dcompiler_34.dll.so new file mode 100755 index 0000000..1fd4dfa Binary files /dev/null and b/lib64/wine/d3dcompiler_34.dll.so differ diff --git a/lib64/wine/d3dcompiler_35.dll.so b/lib64/wine/d3dcompiler_35.dll.so new file mode 100755 index 0000000..c1d164e Binary files /dev/null and b/lib64/wine/d3dcompiler_35.dll.so differ diff --git a/lib64/wine/d3dcompiler_36.dll.so b/lib64/wine/d3dcompiler_36.dll.so new file mode 100755 index 0000000..aab2b79 Binary files /dev/null and b/lib64/wine/d3dcompiler_36.dll.so differ diff --git a/lib64/wine/d3dcompiler_37.dll.so b/lib64/wine/d3dcompiler_37.dll.so new file mode 100755 index 0000000..90e2ae3 Binary files /dev/null and b/lib64/wine/d3dcompiler_37.dll.so differ diff --git a/lib64/wine/d3dcompiler_38.dll.so b/lib64/wine/d3dcompiler_38.dll.so new file mode 100755 index 0000000..87c7594 Binary files /dev/null and b/lib64/wine/d3dcompiler_38.dll.so differ diff --git a/lib64/wine/d3dcompiler_39.dll.so b/lib64/wine/d3dcompiler_39.dll.so new file mode 100755 index 0000000..66f2467 Binary files /dev/null and b/lib64/wine/d3dcompiler_39.dll.so differ diff --git a/lib64/wine/d3dcompiler_40.dll.so b/lib64/wine/d3dcompiler_40.dll.so new file mode 100755 index 0000000..6249bc8 Binary files /dev/null and b/lib64/wine/d3dcompiler_40.dll.so differ diff --git a/lib64/wine/d3dcompiler_41.dll.so b/lib64/wine/d3dcompiler_41.dll.so new file mode 100755 index 0000000..b02c752 Binary files /dev/null and b/lib64/wine/d3dcompiler_41.dll.so differ diff --git a/lib64/wine/d3dcompiler_42.dll.so b/lib64/wine/d3dcompiler_42.dll.so new file mode 100755 index 0000000..27aa800 Binary files /dev/null and b/lib64/wine/d3dcompiler_42.dll.so differ diff --git a/lib64/wine/d3dcompiler_43.dll.so b/lib64/wine/d3dcompiler_43.dll.so new file mode 100755 index 0000000..3faaccd Binary files /dev/null and b/lib64/wine/d3dcompiler_43.dll.so differ diff --git a/lib64/wine/d3dcompiler_46.dll.so b/lib64/wine/d3dcompiler_46.dll.so new file mode 100755 index 0000000..e892520 Binary files /dev/null and b/lib64/wine/d3dcompiler_46.dll.so differ diff --git a/lib64/wine/d3dcompiler_47.dll.so b/lib64/wine/d3dcompiler_47.dll.so new file mode 100755 index 0000000..99de7e2 Binary files /dev/null and b/lib64/wine/d3dcompiler_47.dll.so differ diff --git a/lib64/wine/d3dim.dll.so b/lib64/wine/d3dim.dll.so new file mode 100755 index 0000000..bd81380 Binary files /dev/null and b/lib64/wine/d3dim.dll.so differ diff --git a/lib64/wine/d3drm.dll.so b/lib64/wine/d3drm.dll.so new file mode 100755 index 0000000..524edd7 Binary files /dev/null and b/lib64/wine/d3drm.dll.so differ diff --git a/lib64/wine/d3dx10_33.dll.so b/lib64/wine/d3dx10_33.dll.so new file mode 100755 index 0000000..7d647d4 Binary files /dev/null and b/lib64/wine/d3dx10_33.dll.so differ diff --git a/lib64/wine/d3dx10_34.dll.so b/lib64/wine/d3dx10_34.dll.so new file mode 100755 index 0000000..3df95a5 Binary files /dev/null and b/lib64/wine/d3dx10_34.dll.so differ diff --git a/lib64/wine/d3dx10_35.dll.so b/lib64/wine/d3dx10_35.dll.so new file mode 100755 index 0000000..ca1e142 Binary files /dev/null and b/lib64/wine/d3dx10_35.dll.so differ diff --git a/lib64/wine/d3dx10_36.dll.so b/lib64/wine/d3dx10_36.dll.so new file mode 100755 index 0000000..2e0b29e Binary files /dev/null and b/lib64/wine/d3dx10_36.dll.so differ diff --git a/lib64/wine/d3dx10_37.dll.so b/lib64/wine/d3dx10_37.dll.so new file mode 100755 index 0000000..2fcc041 Binary files /dev/null and b/lib64/wine/d3dx10_37.dll.so differ diff --git a/lib64/wine/d3dx10_38.dll.so b/lib64/wine/d3dx10_38.dll.so new file mode 100755 index 0000000..3f71ba3 Binary files /dev/null and b/lib64/wine/d3dx10_38.dll.so differ diff --git a/lib64/wine/d3dx10_39.dll.so b/lib64/wine/d3dx10_39.dll.so new file mode 100755 index 0000000..406c383 Binary files /dev/null and b/lib64/wine/d3dx10_39.dll.so differ diff --git a/lib64/wine/d3dx10_40.dll.so b/lib64/wine/d3dx10_40.dll.so new file mode 100755 index 0000000..f6cb7e2 Binary files /dev/null and b/lib64/wine/d3dx10_40.dll.so differ diff --git a/lib64/wine/d3dx10_41.dll.so b/lib64/wine/d3dx10_41.dll.so new file mode 100755 index 0000000..179d5e7 Binary files /dev/null and b/lib64/wine/d3dx10_41.dll.so differ diff --git a/lib64/wine/d3dx10_42.dll.so b/lib64/wine/d3dx10_42.dll.so new file mode 100755 index 0000000..ade1cd7 Binary files /dev/null and b/lib64/wine/d3dx10_42.dll.so differ diff --git a/lib64/wine/d3dx10_43.dll.so b/lib64/wine/d3dx10_43.dll.so new file mode 100755 index 0000000..ecacdb7 Binary files /dev/null and b/lib64/wine/d3dx10_43.dll.so differ diff --git a/lib64/wine/d3dx11_42.dll.so b/lib64/wine/d3dx11_42.dll.so new file mode 100755 index 0000000..71354a6 Binary files /dev/null and b/lib64/wine/d3dx11_42.dll.so differ diff --git a/lib64/wine/d3dx11_43.dll.so b/lib64/wine/d3dx11_43.dll.so new file mode 100755 index 0000000..6a111c5 Binary files /dev/null and b/lib64/wine/d3dx11_43.dll.so differ diff --git a/lib64/wine/d3dx9_24.dll.so b/lib64/wine/d3dx9_24.dll.so new file mode 100755 index 0000000..27f9546 Binary files /dev/null and b/lib64/wine/d3dx9_24.dll.so differ diff --git a/lib64/wine/d3dx9_25.dll.so b/lib64/wine/d3dx9_25.dll.so new file mode 100755 index 0000000..282a58b Binary files /dev/null and b/lib64/wine/d3dx9_25.dll.so differ diff --git a/lib64/wine/d3dx9_26.dll.so b/lib64/wine/d3dx9_26.dll.so new file mode 100755 index 0000000..e30321b Binary files /dev/null and b/lib64/wine/d3dx9_26.dll.so differ diff --git a/lib64/wine/d3dx9_27.dll.so b/lib64/wine/d3dx9_27.dll.so new file mode 100755 index 0000000..d617be4 Binary files /dev/null and b/lib64/wine/d3dx9_27.dll.so differ diff --git a/lib64/wine/d3dx9_28.dll.so b/lib64/wine/d3dx9_28.dll.so new file mode 100755 index 0000000..d107632 Binary files /dev/null and b/lib64/wine/d3dx9_28.dll.so differ diff --git a/lib64/wine/d3dx9_29.dll.so b/lib64/wine/d3dx9_29.dll.so new file mode 100755 index 0000000..ad168f0 Binary files /dev/null and b/lib64/wine/d3dx9_29.dll.so differ diff --git a/lib64/wine/d3dx9_30.dll.so b/lib64/wine/d3dx9_30.dll.so new file mode 100755 index 0000000..b4734bd Binary files /dev/null and b/lib64/wine/d3dx9_30.dll.so differ diff --git a/lib64/wine/d3dx9_31.dll.so b/lib64/wine/d3dx9_31.dll.so new file mode 100755 index 0000000..1b2226e Binary files /dev/null and b/lib64/wine/d3dx9_31.dll.so differ diff --git a/lib64/wine/d3dx9_32.dll.so b/lib64/wine/d3dx9_32.dll.so new file mode 100755 index 0000000..7fc4144 Binary files /dev/null and b/lib64/wine/d3dx9_32.dll.so differ diff --git a/lib64/wine/d3dx9_33.dll.so b/lib64/wine/d3dx9_33.dll.so new file mode 100755 index 0000000..2ee5ba2 Binary files /dev/null and b/lib64/wine/d3dx9_33.dll.so differ diff --git a/lib64/wine/d3dx9_34.dll.so b/lib64/wine/d3dx9_34.dll.so new file mode 100755 index 0000000..626bae3 Binary files /dev/null and b/lib64/wine/d3dx9_34.dll.so differ diff --git a/lib64/wine/d3dx9_35.dll.so b/lib64/wine/d3dx9_35.dll.so new file mode 100755 index 0000000..bc191aa Binary files /dev/null and b/lib64/wine/d3dx9_35.dll.so differ diff --git a/lib64/wine/d3dx9_36.dll.so b/lib64/wine/d3dx9_36.dll.so new file mode 100755 index 0000000..d4f9cf3 Binary files /dev/null and b/lib64/wine/d3dx9_36.dll.so differ diff --git a/lib64/wine/d3dx9_37.dll.so b/lib64/wine/d3dx9_37.dll.so new file mode 100755 index 0000000..7640aa0 Binary files /dev/null and b/lib64/wine/d3dx9_37.dll.so differ diff --git a/lib64/wine/d3dx9_38.dll.so b/lib64/wine/d3dx9_38.dll.so new file mode 100755 index 0000000..61ef802 Binary files /dev/null and b/lib64/wine/d3dx9_38.dll.so differ diff --git a/lib64/wine/d3dx9_39.dll.so b/lib64/wine/d3dx9_39.dll.so new file mode 100755 index 0000000..19895c0 Binary files /dev/null and b/lib64/wine/d3dx9_39.dll.so differ diff --git a/lib64/wine/d3dx9_40.dll.so b/lib64/wine/d3dx9_40.dll.so new file mode 100755 index 0000000..157f468 Binary files /dev/null and b/lib64/wine/d3dx9_40.dll.so differ diff --git a/lib64/wine/d3dx9_41.dll.so b/lib64/wine/d3dx9_41.dll.so new file mode 100755 index 0000000..291c96a Binary files /dev/null and b/lib64/wine/d3dx9_41.dll.so differ diff --git a/lib64/wine/d3dx9_42.dll.so b/lib64/wine/d3dx9_42.dll.so new file mode 100755 index 0000000..7fbab52 Binary files /dev/null and b/lib64/wine/d3dx9_42.dll.so differ diff --git a/lib64/wine/d3dx9_43.dll.so b/lib64/wine/d3dx9_43.dll.so new file mode 100755 index 0000000..c97f03b Binary files /dev/null and b/lib64/wine/d3dx9_43.dll.so differ diff --git a/lib64/wine/d3dxof.dll.so b/lib64/wine/d3dxof.dll.so new file mode 100755 index 0000000..809d9c1 Binary files /dev/null and b/lib64/wine/d3dxof.dll.so differ diff --git a/lib64/wine/davclnt.dll.so b/lib64/wine/davclnt.dll.so new file mode 100755 index 0000000..4a83f8c Binary files /dev/null and b/lib64/wine/davclnt.dll.so differ diff --git a/lib64/wine/dbgeng.dll.so b/lib64/wine/dbgeng.dll.so new file mode 100755 index 0000000..3be8063 Binary files /dev/null and b/lib64/wine/dbgeng.dll.so differ diff --git a/lib64/wine/dbghelp.dll.so b/lib64/wine/dbghelp.dll.so new file mode 100755 index 0000000..e1f7f06 Binary files /dev/null and b/lib64/wine/dbghelp.dll.so differ diff --git a/lib64/wine/dciman32.dll.so b/lib64/wine/dciman32.dll.so new file mode 100755 index 0000000..e192e38 Binary files /dev/null and b/lib64/wine/dciman32.dll.so differ diff --git a/lib64/wine/ddraw.dll.so b/lib64/wine/ddraw.dll.so new file mode 100755 index 0000000..b069985 Binary files /dev/null and b/lib64/wine/ddraw.dll.so differ diff --git a/lib64/wine/ddrawex.dll.so b/lib64/wine/ddrawex.dll.so new file mode 100755 index 0000000..a93dedf Binary files /dev/null and b/lib64/wine/ddrawex.dll.so differ diff --git a/lib64/wine/devenum.dll.so b/lib64/wine/devenum.dll.so new file mode 100755 index 0000000..a7c9b79 Binary files /dev/null and b/lib64/wine/devenum.dll.so differ diff --git a/lib64/wine/dhcpcsvc.dll.so b/lib64/wine/dhcpcsvc.dll.so new file mode 100755 index 0000000..07a99fb Binary files /dev/null and b/lib64/wine/dhcpcsvc.dll.so differ diff --git a/lib64/wine/dhtmled.ocx.so b/lib64/wine/dhtmled.ocx.so new file mode 100755 index 0000000..868c989 Binary files /dev/null and b/lib64/wine/dhtmled.ocx.so differ diff --git a/lib64/wine/difxapi.dll.so b/lib64/wine/difxapi.dll.so new file mode 100755 index 0000000..d8680dd Binary files /dev/null and b/lib64/wine/difxapi.dll.so differ diff --git a/lib64/wine/dinput.dll.so b/lib64/wine/dinput.dll.so new file mode 100755 index 0000000..18f15c8 Binary files /dev/null and b/lib64/wine/dinput.dll.so differ diff --git a/lib64/wine/dinput8.dll.so b/lib64/wine/dinput8.dll.so new file mode 100755 index 0000000..7610e73 Binary files /dev/null and b/lib64/wine/dinput8.dll.so differ diff --git a/lib64/wine/dism.exe.so b/lib64/wine/dism.exe.so new file mode 100755 index 0000000..d9d62f6 Binary files /dev/null and b/lib64/wine/dism.exe.so differ diff --git a/lib64/wine/dispex.dll.so b/lib64/wine/dispex.dll.so new file mode 100755 index 0000000..c494e33 Binary files /dev/null and b/lib64/wine/dispex.dll.so differ diff --git a/lib64/wine/dmband.dll.so b/lib64/wine/dmband.dll.so new file mode 100755 index 0000000..f5714c4 Binary files /dev/null and b/lib64/wine/dmband.dll.so differ diff --git a/lib64/wine/dmcompos.dll.so b/lib64/wine/dmcompos.dll.so new file mode 100755 index 0000000..6e97383 Binary files /dev/null and b/lib64/wine/dmcompos.dll.so differ diff --git a/lib64/wine/dmime.dll.so b/lib64/wine/dmime.dll.so new file mode 100755 index 0000000..42ab871 Binary files /dev/null and b/lib64/wine/dmime.dll.so differ diff --git a/lib64/wine/dmloader.dll.so b/lib64/wine/dmloader.dll.so new file mode 100755 index 0000000..e1fd43b Binary files /dev/null and b/lib64/wine/dmloader.dll.so differ diff --git a/lib64/wine/dmscript.dll.so b/lib64/wine/dmscript.dll.so new file mode 100755 index 0000000..535f95e Binary files /dev/null and b/lib64/wine/dmscript.dll.so differ diff --git a/lib64/wine/dmstyle.dll.so b/lib64/wine/dmstyle.dll.so new file mode 100755 index 0000000..1c6503e Binary files /dev/null and b/lib64/wine/dmstyle.dll.so differ diff --git a/lib64/wine/dmsynth.dll.so b/lib64/wine/dmsynth.dll.so new file mode 100755 index 0000000..c1ff929 Binary files /dev/null and b/lib64/wine/dmsynth.dll.so differ diff --git a/lib64/wine/dmusic.dll.so b/lib64/wine/dmusic.dll.so new file mode 100755 index 0000000..781ed4e Binary files /dev/null and b/lib64/wine/dmusic.dll.so differ diff --git a/lib64/wine/dmusic32.dll.so b/lib64/wine/dmusic32.dll.so new file mode 100755 index 0000000..b44c6ed Binary files /dev/null and b/lib64/wine/dmusic32.dll.so differ diff --git a/lib64/wine/dnsapi.dll.so b/lib64/wine/dnsapi.dll.so new file mode 100755 index 0000000..4dbc0bc Binary files /dev/null and b/lib64/wine/dnsapi.dll.so differ diff --git a/lib64/wine/dplay.dll.so b/lib64/wine/dplay.dll.so new file mode 100755 index 0000000..671fc90 Binary files /dev/null and b/lib64/wine/dplay.dll.so differ diff --git a/lib64/wine/dplayx.dll.so b/lib64/wine/dplayx.dll.so new file mode 100755 index 0000000..37f3d5f Binary files /dev/null and b/lib64/wine/dplayx.dll.so differ diff --git a/lib64/wine/dpnaddr.dll.so b/lib64/wine/dpnaddr.dll.so new file mode 100755 index 0000000..0473e4a Binary files /dev/null and b/lib64/wine/dpnaddr.dll.so differ diff --git a/lib64/wine/dpnet.dll.so b/lib64/wine/dpnet.dll.so new file mode 100755 index 0000000..e8fddac Binary files /dev/null and b/lib64/wine/dpnet.dll.so differ diff --git a/lib64/wine/dpnhpast.dll.so b/lib64/wine/dpnhpast.dll.so new file mode 100755 index 0000000..07241ed Binary files /dev/null and b/lib64/wine/dpnhpast.dll.so differ diff --git a/lib64/wine/dpnlobby.dll.so b/lib64/wine/dpnlobby.dll.so new file mode 100755 index 0000000..05c3b6e Binary files /dev/null and b/lib64/wine/dpnlobby.dll.so differ diff --git a/lib64/wine/dpnsvr.exe.so b/lib64/wine/dpnsvr.exe.so new file mode 100755 index 0000000..740c830 Binary files /dev/null and b/lib64/wine/dpnsvr.exe.so differ diff --git a/lib64/wine/dpvoice.dll.so b/lib64/wine/dpvoice.dll.so new file mode 100755 index 0000000..552e62f Binary files /dev/null and b/lib64/wine/dpvoice.dll.so differ diff --git a/lib64/wine/dpwsockx.dll.so b/lib64/wine/dpwsockx.dll.so new file mode 100755 index 0000000..db1e187 Binary files /dev/null and b/lib64/wine/dpwsockx.dll.so differ diff --git a/lib64/wine/drmclien.dll.so b/lib64/wine/drmclien.dll.so new file mode 100755 index 0000000..ee0abe8 Binary files /dev/null and b/lib64/wine/drmclien.dll.so differ diff --git a/lib64/wine/dsound.dll.so b/lib64/wine/dsound.dll.so new file mode 100755 index 0000000..b2e077d Binary files /dev/null and b/lib64/wine/dsound.dll.so differ diff --git a/lib64/wine/dsquery.dll.so b/lib64/wine/dsquery.dll.so new file mode 100755 index 0000000..7829196 Binary files /dev/null and b/lib64/wine/dsquery.dll.so differ diff --git a/lib64/wine/dssenh.dll.so b/lib64/wine/dssenh.dll.so new file mode 100755 index 0000000..697c829 Binary files /dev/null and b/lib64/wine/dssenh.dll.so differ diff --git a/lib64/wine/dswave.dll.so b/lib64/wine/dswave.dll.so new file mode 100755 index 0000000..e55dca2 Binary files /dev/null and b/lib64/wine/dswave.dll.so differ diff --git a/lib64/wine/dwmapi.dll.so b/lib64/wine/dwmapi.dll.so new file mode 100755 index 0000000..d3affa3 Binary files /dev/null and b/lib64/wine/dwmapi.dll.so differ diff --git a/lib64/wine/dwrite.dll.so b/lib64/wine/dwrite.dll.so new file mode 100755 index 0000000..aa5699f Binary files /dev/null and b/lib64/wine/dwrite.dll.so differ diff --git a/lib64/wine/dx8vb.dll.so b/lib64/wine/dx8vb.dll.so new file mode 100755 index 0000000..998c67d Binary files /dev/null and b/lib64/wine/dx8vb.dll.so differ diff --git a/lib64/wine/dxdiag.exe.so b/lib64/wine/dxdiag.exe.so new file mode 100755 index 0000000..c7049ab Binary files /dev/null and b/lib64/wine/dxdiag.exe.so differ diff --git a/lib64/wine/dxdiagn.dll.so b/lib64/wine/dxdiagn.dll.so new file mode 100755 index 0000000..93f67f1 Binary files /dev/null and b/lib64/wine/dxdiagn.dll.so differ diff --git a/lib64/wine/dxgi.dll.so b/lib64/wine/dxgi.dll.so new file mode 100755 index 0000000..5c28b3a Binary files /dev/null and b/lib64/wine/dxgi.dll.so differ diff --git a/lib64/wine/dxgkrnl.sys.so b/lib64/wine/dxgkrnl.sys.so new file mode 100755 index 0000000..050dc62 Binary files /dev/null and b/lib64/wine/dxgkrnl.sys.so differ diff --git a/lib64/wine/dxgmms1.sys.so b/lib64/wine/dxgmms1.sys.so new file mode 100755 index 0000000..71d6c42 Binary files /dev/null and b/lib64/wine/dxgmms1.sys.so differ diff --git a/lib64/wine/dxva2.dll.so b/lib64/wine/dxva2.dll.so new file mode 100755 index 0000000..37f028b Binary files /dev/null and b/lib64/wine/dxva2.dll.so differ diff --git a/lib64/wine/eject.exe.so b/lib64/wine/eject.exe.so new file mode 100755 index 0000000..65eb483 Binary files /dev/null and b/lib64/wine/eject.exe.so differ diff --git a/lib64/wine/esent.dll.so b/lib64/wine/esent.dll.so new file mode 100755 index 0000000..f2485f7 Binary files /dev/null and b/lib64/wine/esent.dll.so differ diff --git a/lib64/wine/evr.dll.so b/lib64/wine/evr.dll.so new file mode 100755 index 0000000..cb6a8d1 Binary files /dev/null and b/lib64/wine/evr.dll.so differ diff --git a/lib64/wine/expand.exe.so b/lib64/wine/expand.exe.so new file mode 100755 index 0000000..9849f3e Binary files /dev/null and b/lib64/wine/expand.exe.so differ diff --git a/lib64/wine/explorer.exe.so b/lib64/wine/explorer.exe.so new file mode 100755 index 0000000..1450bea Binary files /dev/null and b/lib64/wine/explorer.exe.so differ diff --git a/lib64/wine/explorerframe.dll.so b/lib64/wine/explorerframe.dll.so new file mode 100755 index 0000000..bfad737 Binary files /dev/null and b/lib64/wine/explorerframe.dll.so differ diff --git a/lib64/wine/ext-ms-win-appmodel-usercontext-l1-1-0.dll.so b/lib64/wine/ext-ms-win-appmodel-usercontext-l1-1-0.dll.so new file mode 100755 index 0000000..00e107f Binary files /dev/null and b/lib64/wine/ext-ms-win-appmodel-usercontext-l1-1-0.dll.so differ diff --git a/lib64/wine/ext-ms-win-authz-context-l1-1-0.dll.so b/lib64/wine/ext-ms-win-authz-context-l1-1-0.dll.so new file mode 100755 index 0000000..cef0f9d Binary files /dev/null and b/lib64/wine/ext-ms-win-authz-context-l1-1-0.dll.so differ diff --git a/lib64/wine/ext-ms-win-domainjoin-netjoin-l1-1-0.dll.so b/lib64/wine/ext-ms-win-domainjoin-netjoin-l1-1-0.dll.so new file mode 100755 index 0000000..c65bd75 Binary files /dev/null and b/lib64/wine/ext-ms-win-domainjoin-netjoin-l1-1-0.dll.so differ diff --git a/lib64/wine/ext-ms-win-dwmapi-ext-l1-1-0.dll.so b/lib64/wine/ext-ms-win-dwmapi-ext-l1-1-0.dll.so new file mode 100755 index 0000000..6c2131d Binary files /dev/null and b/lib64/wine/ext-ms-win-dwmapi-ext-l1-1-0.dll.so differ diff --git a/lib64/wine/ext-ms-win-gdi-dc-create-l1-1-0.dll.so b/lib64/wine/ext-ms-win-gdi-dc-create-l1-1-0.dll.so new file mode 100755 index 0000000..16a054f Binary files /dev/null and b/lib64/wine/ext-ms-win-gdi-dc-create-l1-1-0.dll.so differ diff --git a/lib64/wine/ext-ms-win-gdi-dc-create-l1-1-1.dll.so b/lib64/wine/ext-ms-win-gdi-dc-create-l1-1-1.dll.so new file mode 100755 index 0000000..df69588 Binary files /dev/null and b/lib64/wine/ext-ms-win-gdi-dc-create-l1-1-1.dll.so differ diff --git a/lib64/wine/ext-ms-win-gdi-dc-l1-2-0.dll.so b/lib64/wine/ext-ms-win-gdi-dc-l1-2-0.dll.so new file mode 100755 index 0000000..7c96ac3 Binary files /dev/null and b/lib64/wine/ext-ms-win-gdi-dc-l1-2-0.dll.so differ diff --git a/lib64/wine/ext-ms-win-gdi-devcaps-l1-1-0.dll.so b/lib64/wine/ext-ms-win-gdi-devcaps-l1-1-0.dll.so new file mode 100755 index 0000000..b8e30db Binary files /dev/null and b/lib64/wine/ext-ms-win-gdi-devcaps-l1-1-0.dll.so differ diff --git a/lib64/wine/ext-ms-win-gdi-draw-l1-1-0.dll.so b/lib64/wine/ext-ms-win-gdi-draw-l1-1-0.dll.so new file mode 100755 index 0000000..b1cf1a2 Binary files /dev/null and b/lib64/wine/ext-ms-win-gdi-draw-l1-1-0.dll.so differ diff --git a/lib64/wine/ext-ms-win-gdi-draw-l1-1-1.dll.so b/lib64/wine/ext-ms-win-gdi-draw-l1-1-1.dll.so new file mode 100755 index 0000000..70cdd63 Binary files /dev/null and b/lib64/wine/ext-ms-win-gdi-draw-l1-1-1.dll.so differ diff --git a/lib64/wine/ext-ms-win-gdi-font-l1-1-0.dll.so b/lib64/wine/ext-ms-win-gdi-font-l1-1-0.dll.so new file mode 100755 index 0000000..7a1262a Binary files /dev/null and b/lib64/wine/ext-ms-win-gdi-font-l1-1-0.dll.so differ diff --git a/lib64/wine/ext-ms-win-gdi-font-l1-1-1.dll.so b/lib64/wine/ext-ms-win-gdi-font-l1-1-1.dll.so new file mode 100755 index 0000000..14946bd Binary files /dev/null and b/lib64/wine/ext-ms-win-gdi-font-l1-1-1.dll.so differ diff --git a/lib64/wine/ext-ms-win-gdi-render-l1-1-0.dll.so b/lib64/wine/ext-ms-win-gdi-render-l1-1-0.dll.so new file mode 100755 index 0000000..434d143 Binary files /dev/null and b/lib64/wine/ext-ms-win-gdi-render-l1-1-0.dll.so differ diff --git a/lib64/wine/ext-ms-win-kernel32-package-current-l1-1-0.dll.so b/lib64/wine/ext-ms-win-kernel32-package-current-l1-1-0.dll.so new file mode 100755 index 0000000..ee10dfe Binary files /dev/null and b/lib64/wine/ext-ms-win-kernel32-package-current-l1-1-0.dll.so differ diff --git a/lib64/wine/ext-ms-win-kernel32-package-l1-1-1.dll.so b/lib64/wine/ext-ms-win-kernel32-package-l1-1-1.dll.so new file mode 100755 index 0000000..0755670 Binary files /dev/null and b/lib64/wine/ext-ms-win-kernel32-package-l1-1-1.dll.so differ diff --git a/lib64/wine/ext-ms-win-ntuser-dialogbox-l1-1-0.dll.so b/lib64/wine/ext-ms-win-ntuser-dialogbox-l1-1-0.dll.so new file mode 100755 index 0000000..d2cee1d Binary files /dev/null and b/lib64/wine/ext-ms-win-ntuser-dialogbox-l1-1-0.dll.so differ diff --git a/lib64/wine/ext-ms-win-ntuser-draw-l1-1-0.dll.so b/lib64/wine/ext-ms-win-ntuser-draw-l1-1-0.dll.so new file mode 100755 index 0000000..9da2d0f Binary files /dev/null and b/lib64/wine/ext-ms-win-ntuser-draw-l1-1-0.dll.so differ diff --git a/lib64/wine/ext-ms-win-ntuser-gui-l1-1-0.dll.so b/lib64/wine/ext-ms-win-ntuser-gui-l1-1-0.dll.so new file mode 100755 index 0000000..2cf94df Binary files /dev/null and b/lib64/wine/ext-ms-win-ntuser-gui-l1-1-0.dll.so differ diff --git a/lib64/wine/ext-ms-win-ntuser-gui-l1-3-0.dll.so b/lib64/wine/ext-ms-win-ntuser-gui-l1-3-0.dll.so new file mode 100755 index 0000000..922f9c7 Binary files /dev/null and b/lib64/wine/ext-ms-win-ntuser-gui-l1-3-0.dll.so differ diff --git a/lib64/wine/ext-ms-win-ntuser-keyboard-l1-3-0.dll.so b/lib64/wine/ext-ms-win-ntuser-keyboard-l1-3-0.dll.so new file mode 100755 index 0000000..6cac692 Binary files /dev/null and b/lib64/wine/ext-ms-win-ntuser-keyboard-l1-3-0.dll.so differ diff --git a/lib64/wine/ext-ms-win-ntuser-message-l1-1-0.dll.so b/lib64/wine/ext-ms-win-ntuser-message-l1-1-0.dll.so new file mode 100755 index 0000000..d32ee06 Binary files /dev/null and b/lib64/wine/ext-ms-win-ntuser-message-l1-1-0.dll.so differ diff --git a/lib64/wine/ext-ms-win-ntuser-message-l1-1-1.dll.so b/lib64/wine/ext-ms-win-ntuser-message-l1-1-1.dll.so new file mode 100755 index 0000000..7323f60 Binary files /dev/null and b/lib64/wine/ext-ms-win-ntuser-message-l1-1-1.dll.so differ diff --git a/lib64/wine/ext-ms-win-ntuser-misc-l1-1-0.dll.so b/lib64/wine/ext-ms-win-ntuser-misc-l1-1-0.dll.so new file mode 100755 index 0000000..adc8939 Binary files /dev/null and b/lib64/wine/ext-ms-win-ntuser-misc-l1-1-0.dll.so differ diff --git a/lib64/wine/ext-ms-win-ntuser-misc-l1-2-0.dll.so b/lib64/wine/ext-ms-win-ntuser-misc-l1-2-0.dll.so new file mode 100755 index 0000000..15735f0 Binary files /dev/null and b/lib64/wine/ext-ms-win-ntuser-misc-l1-2-0.dll.so differ diff --git a/lib64/wine/ext-ms-win-ntuser-misc-l1-5-1.dll.so b/lib64/wine/ext-ms-win-ntuser-misc-l1-5-1.dll.so new file mode 100755 index 0000000..692ee05 Binary files /dev/null and b/lib64/wine/ext-ms-win-ntuser-misc-l1-5-1.dll.so differ diff --git a/lib64/wine/ext-ms-win-ntuser-mouse-l1-1-0.dll.so b/lib64/wine/ext-ms-win-ntuser-mouse-l1-1-0.dll.so new file mode 100755 index 0000000..8221d96 Binary files /dev/null and b/lib64/wine/ext-ms-win-ntuser-mouse-l1-1-0.dll.so differ diff --git a/lib64/wine/ext-ms-win-ntuser-private-l1-1-1.dll.so b/lib64/wine/ext-ms-win-ntuser-private-l1-1-1.dll.so new file mode 100755 index 0000000..855cbbb Binary files /dev/null and b/lib64/wine/ext-ms-win-ntuser-private-l1-1-1.dll.so differ diff --git a/lib64/wine/ext-ms-win-ntuser-private-l1-3-1.dll.so b/lib64/wine/ext-ms-win-ntuser-private-l1-3-1.dll.so new file mode 100755 index 0000000..d0646d6 Binary files /dev/null and b/lib64/wine/ext-ms-win-ntuser-private-l1-3-1.dll.so differ diff --git a/lib64/wine/ext-ms-win-ntuser-rectangle-ext-l1-1-0.dll.so b/lib64/wine/ext-ms-win-ntuser-rectangle-ext-l1-1-0.dll.so new file mode 100755 index 0000000..da88039 Binary files /dev/null and b/lib64/wine/ext-ms-win-ntuser-rectangle-ext-l1-1-0.dll.so differ diff --git a/lib64/wine/ext-ms-win-ntuser-uicontext-ext-l1-1-0.dll.so b/lib64/wine/ext-ms-win-ntuser-uicontext-ext-l1-1-0.dll.so new file mode 100755 index 0000000..531fb9d Binary files /dev/null and b/lib64/wine/ext-ms-win-ntuser-uicontext-ext-l1-1-0.dll.so differ diff --git a/lib64/wine/ext-ms-win-ntuser-window-l1-1-0.dll.so b/lib64/wine/ext-ms-win-ntuser-window-l1-1-0.dll.so new file mode 100755 index 0000000..382cacd Binary files /dev/null and b/lib64/wine/ext-ms-win-ntuser-window-l1-1-0.dll.so differ diff --git a/lib64/wine/ext-ms-win-ntuser-window-l1-1-1.dll.so b/lib64/wine/ext-ms-win-ntuser-window-l1-1-1.dll.so new file mode 100755 index 0000000..c391c42 Binary files /dev/null and b/lib64/wine/ext-ms-win-ntuser-window-l1-1-1.dll.so differ diff --git a/lib64/wine/ext-ms-win-ntuser-window-l1-1-4.dll.so b/lib64/wine/ext-ms-win-ntuser-window-l1-1-4.dll.so new file mode 100755 index 0000000..6cf46af Binary files /dev/null and b/lib64/wine/ext-ms-win-ntuser-window-l1-1-4.dll.so differ diff --git a/lib64/wine/ext-ms-win-ntuser-windowclass-l1-1-0.dll.so b/lib64/wine/ext-ms-win-ntuser-windowclass-l1-1-0.dll.so new file mode 100755 index 0000000..6a6f6dd Binary files /dev/null and b/lib64/wine/ext-ms-win-ntuser-windowclass-l1-1-0.dll.so differ diff --git a/lib64/wine/ext-ms-win-ntuser-windowclass-l1-1-1.dll.so b/lib64/wine/ext-ms-win-ntuser-windowclass-l1-1-1.dll.so new file mode 100755 index 0000000..f1f8222 Binary files /dev/null and b/lib64/wine/ext-ms-win-ntuser-windowclass-l1-1-1.dll.so differ diff --git a/lib64/wine/ext-ms-win-oleacc-l1-1-0.dll.so b/lib64/wine/ext-ms-win-oleacc-l1-1-0.dll.so new file mode 100755 index 0000000..abf310c Binary files /dev/null and b/lib64/wine/ext-ms-win-oleacc-l1-1-0.dll.so differ diff --git a/lib64/wine/ext-ms-win-ras-rasapi32-l1-1-0.dll.so b/lib64/wine/ext-ms-win-ras-rasapi32-l1-1-0.dll.so new file mode 100755 index 0000000..8501c3f Binary files /dev/null and b/lib64/wine/ext-ms-win-ras-rasapi32-l1-1-0.dll.so differ diff --git a/lib64/wine/ext-ms-win-rtcore-gdi-devcaps-l1-1-0.dll.so b/lib64/wine/ext-ms-win-rtcore-gdi-devcaps-l1-1-0.dll.so new file mode 100755 index 0000000..967bb1e Binary files /dev/null and b/lib64/wine/ext-ms-win-rtcore-gdi-devcaps-l1-1-0.dll.so differ diff --git a/lib64/wine/ext-ms-win-rtcore-gdi-object-l1-1-0.dll.so b/lib64/wine/ext-ms-win-rtcore-gdi-object-l1-1-0.dll.so new file mode 100755 index 0000000..5e7397f Binary files /dev/null and b/lib64/wine/ext-ms-win-rtcore-gdi-object-l1-1-0.dll.so differ diff --git a/lib64/wine/ext-ms-win-rtcore-gdi-rgn-l1-1-0.dll.so b/lib64/wine/ext-ms-win-rtcore-gdi-rgn-l1-1-0.dll.so new file mode 100755 index 0000000..900cdc8 Binary files /dev/null and b/lib64/wine/ext-ms-win-rtcore-gdi-rgn-l1-1-0.dll.so differ diff --git a/lib64/wine/ext-ms-win-rtcore-ntuser-cursor-l1-1-0.dll.so b/lib64/wine/ext-ms-win-rtcore-ntuser-cursor-l1-1-0.dll.so new file mode 100755 index 0000000..7469ee6 Binary files /dev/null and b/lib64/wine/ext-ms-win-rtcore-ntuser-cursor-l1-1-0.dll.so differ diff --git a/lib64/wine/ext-ms-win-rtcore-ntuser-dc-access-l1-1-0.dll.so b/lib64/wine/ext-ms-win-rtcore-ntuser-dc-access-l1-1-0.dll.so new file mode 100755 index 0000000..7fca620 Binary files /dev/null and b/lib64/wine/ext-ms-win-rtcore-ntuser-dc-access-l1-1-0.dll.so differ diff --git a/lib64/wine/ext-ms-win-rtcore-ntuser-dpi-l1-1-0.dll.so b/lib64/wine/ext-ms-win-rtcore-ntuser-dpi-l1-1-0.dll.so new file mode 100755 index 0000000..3190aba Binary files /dev/null and b/lib64/wine/ext-ms-win-rtcore-ntuser-dpi-l1-1-0.dll.so differ diff --git a/lib64/wine/ext-ms-win-rtcore-ntuser-dpi-l1-2-0.dll.so b/lib64/wine/ext-ms-win-rtcore-ntuser-dpi-l1-2-0.dll.so new file mode 100755 index 0000000..a342b09 Binary files /dev/null and b/lib64/wine/ext-ms-win-rtcore-ntuser-dpi-l1-2-0.dll.so differ diff --git a/lib64/wine/ext-ms-win-rtcore-ntuser-rawinput-l1-1-0.dll.so b/lib64/wine/ext-ms-win-rtcore-ntuser-rawinput-l1-1-0.dll.so new file mode 100755 index 0000000..fff519c Binary files /dev/null and b/lib64/wine/ext-ms-win-rtcore-ntuser-rawinput-l1-1-0.dll.so differ diff --git a/lib64/wine/ext-ms-win-rtcore-ntuser-syscolors-l1-1-0.dll.so b/lib64/wine/ext-ms-win-rtcore-ntuser-syscolors-l1-1-0.dll.so new file mode 100755 index 0000000..8ae1afb Binary files /dev/null and b/lib64/wine/ext-ms-win-rtcore-ntuser-syscolors-l1-1-0.dll.so differ diff --git a/lib64/wine/ext-ms-win-rtcore-ntuser-sysparams-l1-1-0.dll.so b/lib64/wine/ext-ms-win-rtcore-ntuser-sysparams-l1-1-0.dll.so new file mode 100755 index 0000000..b1f7f7c Binary files /dev/null and b/lib64/wine/ext-ms-win-rtcore-ntuser-sysparams-l1-1-0.dll.so differ diff --git a/lib64/wine/ext-ms-win-security-credui-l1-1-0.dll.so b/lib64/wine/ext-ms-win-security-credui-l1-1-0.dll.so new file mode 100755 index 0000000..71ecff3 Binary files /dev/null and b/lib64/wine/ext-ms-win-security-credui-l1-1-0.dll.so differ diff --git a/lib64/wine/ext-ms-win-security-cryptui-l1-1-0.dll.so b/lib64/wine/ext-ms-win-security-cryptui-l1-1-0.dll.so new file mode 100755 index 0000000..e64a908 Binary files /dev/null and b/lib64/wine/ext-ms-win-security-cryptui-l1-1-0.dll.so differ diff --git a/lib64/wine/ext-ms-win-uxtheme-themes-l1-1-0.dll.so b/lib64/wine/ext-ms-win-uxtheme-themes-l1-1-0.dll.so new file mode 100755 index 0000000..ba11e2a Binary files /dev/null and b/lib64/wine/ext-ms-win-uxtheme-themes-l1-1-0.dll.so differ diff --git a/lib64/wine/ext-ms-win-xaml-pal-l1-1-0.dll.so b/lib64/wine/ext-ms-win-xaml-pal-l1-1-0.dll.so new file mode 100755 index 0000000..592cd6d Binary files /dev/null and b/lib64/wine/ext-ms-win-xaml-pal-l1-1-0.dll.so differ diff --git a/lib64/wine/extrac32.exe.so b/lib64/wine/extrac32.exe.so new file mode 100755 index 0000000..58ba24e Binary files /dev/null and b/lib64/wine/extrac32.exe.so differ diff --git a/lib64/wine/fakedlls/acledit.dll b/lib64/wine/fakedlls/acledit.dll new file mode 100644 index 0000000..9b2526a Binary files /dev/null and b/lib64/wine/fakedlls/acledit.dll differ diff --git a/lib64/wine/fakedlls/aclui.dll b/lib64/wine/fakedlls/aclui.dll new file mode 100644 index 0000000..ab1b7f0 Binary files /dev/null and b/lib64/wine/fakedlls/aclui.dll differ diff --git a/lib64/wine/fakedlls/activeds.dll b/lib64/wine/fakedlls/activeds.dll new file mode 100644 index 0000000..8b881f0 Binary files /dev/null and b/lib64/wine/fakedlls/activeds.dll differ diff --git a/lib64/wine/fakedlls/actxprxy.dll b/lib64/wine/fakedlls/actxprxy.dll new file mode 100644 index 0000000..aa1a59c Binary files /dev/null and b/lib64/wine/fakedlls/actxprxy.dll differ diff --git a/lib64/wine/fakedlls/adsldp.dll b/lib64/wine/fakedlls/adsldp.dll new file mode 100644 index 0000000..70e84b6 Binary files /dev/null and b/lib64/wine/fakedlls/adsldp.dll differ diff --git a/lib64/wine/fakedlls/adsldpc.dll b/lib64/wine/fakedlls/adsldpc.dll new file mode 100644 index 0000000..ddf25c2 Binary files /dev/null and b/lib64/wine/fakedlls/adsldpc.dll differ diff --git a/lib64/wine/fakedlls/advapi32.dll b/lib64/wine/fakedlls/advapi32.dll new file mode 100644 index 0000000..0f88f60 Binary files /dev/null and b/lib64/wine/fakedlls/advapi32.dll differ diff --git a/lib64/wine/fakedlls/advpack.dll b/lib64/wine/fakedlls/advpack.dll new file mode 100644 index 0000000..28d0d62 Binary files /dev/null and b/lib64/wine/fakedlls/advpack.dll differ diff --git a/lib64/wine/fakedlls/amd_ags_x64.dll b/lib64/wine/fakedlls/amd_ags_x64.dll new file mode 100644 index 0000000..aa6378e Binary files /dev/null and b/lib64/wine/fakedlls/amd_ags_x64.dll differ diff --git a/lib64/wine/fakedlls/amsi.dll b/lib64/wine/fakedlls/amsi.dll new file mode 100644 index 0000000..7732548 Binary files /dev/null and b/lib64/wine/fakedlls/amsi.dll differ diff --git a/lib64/wine/fakedlls/amstream.dll b/lib64/wine/fakedlls/amstream.dll new file mode 100644 index 0000000..a78a7df Binary files /dev/null and b/lib64/wine/fakedlls/amstream.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-appmodel-identity-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-appmodel-identity-l1-1-0.dll new file mode 100644 index 0000000..41b331f Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-appmodel-identity-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-appmodel-runtime-l1-1-1.dll b/lib64/wine/fakedlls/api-ms-win-appmodel-runtime-l1-1-1.dll new file mode 100644 index 0000000..69090f9 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-appmodel-runtime-l1-1-1.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-appmodel-runtime-l1-1-2.dll b/lib64/wine/fakedlls/api-ms-win-appmodel-runtime-l1-1-2.dll new file mode 100644 index 0000000..3b7e27a Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-appmodel-runtime-l1-1-2.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-apiquery-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-apiquery-l1-1-0.dll new file mode 100644 index 0000000..4705544 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-apiquery-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-appcompat-l1-1-1.dll b/lib64/wine/fakedlls/api-ms-win-core-appcompat-l1-1-1.dll new file mode 100644 index 0000000..a242262 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-appcompat-l1-1-1.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-appinit-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-appinit-l1-1-0.dll new file mode 100644 index 0000000..277110f Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-appinit-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-atoms-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-atoms-l1-1-0.dll new file mode 100644 index 0000000..04cab95 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-atoms-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-bem-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-bem-l1-1-0.dll new file mode 100644 index 0000000..accd370 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-bem-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-com-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-com-l1-1-0.dll new file mode 100644 index 0000000..df033f8 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-com-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-com-l1-1-1.dll b/lib64/wine/fakedlls/api-ms-win-core-com-l1-1-1.dll new file mode 100644 index 0000000..2713e40 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-com-l1-1-1.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-com-private-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-com-private-l1-1-0.dll new file mode 100644 index 0000000..fc91ff8 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-com-private-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-comm-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-comm-l1-1-0.dll new file mode 100644 index 0000000..9fa2bcc Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-comm-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-console-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-console-l1-1-0.dll new file mode 100644 index 0000000..dc930bd Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-console-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-console-l2-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-console-l2-1-0.dll new file mode 100644 index 0000000..952fd3e Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-console-l2-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-crt-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-crt-l1-1-0.dll new file mode 100644 index 0000000..aaa11d6 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-crt-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-crt-l2-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-crt-l2-1-0.dll new file mode 100644 index 0000000..33d9575 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-crt-l2-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-datetime-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-datetime-l1-1-0.dll new file mode 100644 index 0000000..780408f Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-datetime-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-datetime-l1-1-1.dll b/lib64/wine/fakedlls/api-ms-win-core-datetime-l1-1-1.dll new file mode 100644 index 0000000..e9714c3 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-datetime-l1-1-1.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-debug-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-debug-l1-1-0.dll new file mode 100644 index 0000000..ef4f0cc Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-debug-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-debug-l1-1-1.dll b/lib64/wine/fakedlls/api-ms-win-core-debug-l1-1-1.dll new file mode 100644 index 0000000..fc95ac1 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-debug-l1-1-1.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-delayload-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-delayload-l1-1-0.dll new file mode 100644 index 0000000..322e434 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-delayload-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-delayload-l1-1-1.dll b/lib64/wine/fakedlls/api-ms-win-core-delayload-l1-1-1.dll new file mode 100644 index 0000000..ee531e2 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-delayload-l1-1-1.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-errorhandling-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-errorhandling-l1-1-0.dll new file mode 100644 index 0000000..0e06ad0 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-errorhandling-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-errorhandling-l1-1-1.dll b/lib64/wine/fakedlls/api-ms-win-core-errorhandling-l1-1-1.dll new file mode 100644 index 0000000..e4ab734 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-errorhandling-l1-1-1.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-errorhandling-l1-1-2.dll b/lib64/wine/fakedlls/api-ms-win-core-errorhandling-l1-1-2.dll new file mode 100644 index 0000000..dde3eac Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-errorhandling-l1-1-2.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-errorhandling-l1-1-3.dll b/lib64/wine/fakedlls/api-ms-win-core-errorhandling-l1-1-3.dll new file mode 100644 index 0000000..56fa278 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-errorhandling-l1-1-3.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-fibers-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-fibers-l1-1-0.dll new file mode 100644 index 0000000..2fce02b Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-fibers-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-fibers-l1-1-1.dll b/lib64/wine/fakedlls/api-ms-win-core-fibers-l1-1-1.dll new file mode 100644 index 0000000..19ee3d6 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-fibers-l1-1-1.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-file-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-file-l1-1-0.dll new file mode 100644 index 0000000..4a2a342 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-file-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-file-l1-2-0.dll b/lib64/wine/fakedlls/api-ms-win-core-file-l1-2-0.dll new file mode 100644 index 0000000..bafa691 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-file-l1-2-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-file-l1-2-1.dll b/lib64/wine/fakedlls/api-ms-win-core-file-l1-2-1.dll new file mode 100644 index 0000000..e7113dc Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-file-l1-2-1.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-file-l1-2-2.dll b/lib64/wine/fakedlls/api-ms-win-core-file-l1-2-2.dll new file mode 100644 index 0000000..9cae1f1 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-file-l1-2-2.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-file-l2-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-file-l2-1-0.dll new file mode 100644 index 0000000..e507382 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-file-l2-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-file-l2-1-1.dll b/lib64/wine/fakedlls/api-ms-win-core-file-l2-1-1.dll new file mode 100644 index 0000000..e23bca5 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-file-l2-1-1.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-file-l2-1-2.dll b/lib64/wine/fakedlls/api-ms-win-core-file-l2-1-2.dll new file mode 100644 index 0000000..808539a Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-file-l2-1-2.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-handle-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-handle-l1-1-0.dll new file mode 100644 index 0000000..1d76507 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-handle-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-heap-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-heap-l1-1-0.dll new file mode 100644 index 0000000..f44879d Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-heap-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-heap-l1-2-0.dll b/lib64/wine/fakedlls/api-ms-win-core-heap-l1-2-0.dll new file mode 100644 index 0000000..a3d22fa Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-heap-l1-2-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-heap-l2-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-heap-l2-1-0.dll new file mode 100644 index 0000000..dbc309b Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-heap-l2-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-heap-obsolete-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-heap-obsolete-l1-1-0.dll new file mode 100644 index 0000000..636edb1 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-heap-obsolete-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-interlocked-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-interlocked-l1-1-0.dll new file mode 100644 index 0000000..23c3912 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-interlocked-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-interlocked-l1-2-0.dll b/lib64/wine/fakedlls/api-ms-win-core-interlocked-l1-2-0.dll new file mode 100644 index 0000000..8356776 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-interlocked-l1-2-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-io-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-io-l1-1-0.dll new file mode 100644 index 0000000..e4a15c3 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-io-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-io-l1-1-1.dll b/lib64/wine/fakedlls/api-ms-win-core-io-l1-1-1.dll new file mode 100644 index 0000000..74eee1b Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-io-l1-1-1.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-job-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-job-l1-1-0.dll new file mode 100644 index 0000000..7c0d7c2 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-job-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-job-l2-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-job-l2-1-0.dll new file mode 100644 index 0000000..b8917a8 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-job-l2-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-kernel32-legacy-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-kernel32-legacy-l1-1-0.dll new file mode 100644 index 0000000..db22686 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-kernel32-legacy-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-kernel32-legacy-l1-1-1.dll b/lib64/wine/fakedlls/api-ms-win-core-kernel32-legacy-l1-1-1.dll new file mode 100644 index 0000000..6b6f7c8 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-kernel32-legacy-l1-1-1.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-kernel32-private-l1-1-1.dll b/lib64/wine/fakedlls/api-ms-win-core-kernel32-private-l1-1-1.dll new file mode 100644 index 0000000..480a694 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-kernel32-private-l1-1-1.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-largeinteger-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-largeinteger-l1-1-0.dll new file mode 100644 index 0000000..f850847 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-largeinteger-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-libraryloader-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-libraryloader-l1-1-0.dll new file mode 100644 index 0000000..bad7dc7 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-libraryloader-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-libraryloader-l1-1-1.dll b/lib64/wine/fakedlls/api-ms-win-core-libraryloader-l1-1-1.dll new file mode 100644 index 0000000..66f7537 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-libraryloader-l1-1-1.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-libraryloader-l1-2-0.dll b/lib64/wine/fakedlls/api-ms-win-core-libraryloader-l1-2-0.dll new file mode 100644 index 0000000..3f62d1c Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-libraryloader-l1-2-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-libraryloader-l1-2-1.dll b/lib64/wine/fakedlls/api-ms-win-core-libraryloader-l1-2-1.dll new file mode 100644 index 0000000..9373fa0 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-libraryloader-l1-2-1.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-libraryloader-l1-2-2.dll b/lib64/wine/fakedlls/api-ms-win-core-libraryloader-l1-2-2.dll new file mode 100644 index 0000000..b65ab86 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-libraryloader-l1-2-2.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-localization-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-localization-l1-1-0.dll new file mode 100644 index 0000000..8169db8 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-localization-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-localization-l1-2-0.dll b/lib64/wine/fakedlls/api-ms-win-core-localization-l1-2-0.dll new file mode 100644 index 0000000..1527dcc Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-localization-l1-2-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-localization-l1-2-1.dll b/lib64/wine/fakedlls/api-ms-win-core-localization-l1-2-1.dll new file mode 100644 index 0000000..2abb42d Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-localization-l1-2-1.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-localization-l2-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-localization-l2-1-0.dll new file mode 100644 index 0000000..0e3dc18 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-localization-l2-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-localization-obsolete-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-localization-obsolete-l1-1-0.dll new file mode 100644 index 0000000..4ef83d6 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-localization-obsolete-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-localization-obsolete-l1-2-0.dll b/lib64/wine/fakedlls/api-ms-win-core-localization-obsolete-l1-2-0.dll new file mode 100644 index 0000000..47e07a5 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-localization-obsolete-l1-2-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-localization-obsolete-l1-3-0.dll b/lib64/wine/fakedlls/api-ms-win-core-localization-obsolete-l1-3-0.dll new file mode 100644 index 0000000..e1423dd Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-localization-obsolete-l1-3-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-localization-private-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-localization-private-l1-1-0.dll new file mode 100644 index 0000000..6eaaaaf Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-localization-private-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-localregistry-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-localregistry-l1-1-0.dll new file mode 100644 index 0000000..713997a Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-localregistry-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-memory-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-memory-l1-1-0.dll new file mode 100644 index 0000000..d8e2b06 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-memory-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-memory-l1-1-1.dll b/lib64/wine/fakedlls/api-ms-win-core-memory-l1-1-1.dll new file mode 100644 index 0000000..471bde1 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-memory-l1-1-1.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-memory-l1-1-2.dll b/lib64/wine/fakedlls/api-ms-win-core-memory-l1-1-2.dll new file mode 100644 index 0000000..64aadb4 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-memory-l1-1-2.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-misc-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-misc-l1-1-0.dll new file mode 100644 index 0000000..47075cd Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-misc-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-namedpipe-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-namedpipe-l1-1-0.dll new file mode 100644 index 0000000..7d335d5 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-namedpipe-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-namedpipe-l1-2-0.dll b/lib64/wine/fakedlls/api-ms-win-core-namedpipe-l1-2-0.dll new file mode 100644 index 0000000..c732062 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-namedpipe-l1-2-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-namespace-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-namespace-l1-1-0.dll new file mode 100644 index 0000000..96dd2f6 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-namespace-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-normalization-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-normalization-l1-1-0.dll new file mode 100644 index 0000000..1ef4bcf Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-normalization-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-path-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-path-l1-1-0.dll new file mode 100644 index 0000000..c56174d Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-path-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-privateprofile-l1-1-1.dll b/lib64/wine/fakedlls/api-ms-win-core-privateprofile-l1-1-1.dll new file mode 100644 index 0000000..48df060 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-privateprofile-l1-1-1.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-processenvironment-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-processenvironment-l1-1-0.dll new file mode 100644 index 0000000..0d017b9 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-processenvironment-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-processenvironment-l1-2-0.dll b/lib64/wine/fakedlls/api-ms-win-core-processenvironment-l1-2-0.dll new file mode 100644 index 0000000..81f56fd Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-processenvironment-l1-2-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-processthreads-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-processthreads-l1-1-0.dll new file mode 100644 index 0000000..5a16a89 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-processthreads-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-processthreads-l1-1-1.dll b/lib64/wine/fakedlls/api-ms-win-core-processthreads-l1-1-1.dll new file mode 100644 index 0000000..73e59eb Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-processthreads-l1-1-1.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-processthreads-l1-1-2.dll b/lib64/wine/fakedlls/api-ms-win-core-processthreads-l1-1-2.dll new file mode 100644 index 0000000..ac656a2 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-processthreads-l1-1-2.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-processthreads-l1-1-3.dll b/lib64/wine/fakedlls/api-ms-win-core-processthreads-l1-1-3.dll new file mode 100644 index 0000000..999f98c Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-processthreads-l1-1-3.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-processtopology-obsolete-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-processtopology-obsolete-l1-1-0.dll new file mode 100644 index 0000000..6346da9 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-processtopology-obsolete-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-profile-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-profile-l1-1-0.dll new file mode 100644 index 0000000..13480fb Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-profile-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-psapi-ansi-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-psapi-ansi-l1-1-0.dll new file mode 100644 index 0000000..b8fda0f Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-psapi-ansi-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-psapi-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-psapi-l1-1-0.dll new file mode 100644 index 0000000..8f68c43 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-psapi-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-psapi-obsolete-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-psapi-obsolete-l1-1-0.dll new file mode 100644 index 0000000..0fde99e Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-psapi-obsolete-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-quirks-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-quirks-l1-1-0.dll new file mode 100644 index 0000000..2cbd711 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-quirks-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-realtime-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-realtime-l1-1-0.dll new file mode 100644 index 0000000..9126868 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-realtime-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-registry-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-registry-l1-1-0.dll new file mode 100644 index 0000000..73f4d5b Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-registry-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-registry-l2-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-registry-l2-1-0.dll new file mode 100644 index 0000000..1b751e8 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-registry-l2-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-registryuserspecific-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-registryuserspecific-l1-1-0.dll new file mode 100644 index 0000000..ec4fc6b Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-registryuserspecific-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-rtlsupport-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-rtlsupport-l1-1-0.dll new file mode 100644 index 0000000..f076ace Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-rtlsupport-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-rtlsupport-l1-2-0.dll b/lib64/wine/fakedlls/api-ms-win-core-rtlsupport-l1-2-0.dll new file mode 100644 index 0000000..6396e16 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-rtlsupport-l1-2-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-shlwapi-legacy-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-shlwapi-legacy-l1-1-0.dll new file mode 100644 index 0000000..facd25a Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-shlwapi-legacy-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-shlwapi-obsolete-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-shlwapi-obsolete-l1-1-0.dll new file mode 100644 index 0000000..d985993 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-shlwapi-obsolete-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-shlwapi-obsolete-l1-2-0.dll b/lib64/wine/fakedlls/api-ms-win-core-shlwapi-obsolete-l1-2-0.dll new file mode 100644 index 0000000..4f6578f Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-shlwapi-obsolete-l1-2-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-shutdown-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-shutdown-l1-1-0.dll new file mode 100644 index 0000000..40e437d Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-shutdown-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-sidebyside-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-sidebyside-l1-1-0.dll new file mode 100644 index 0000000..0686065 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-sidebyside-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-string-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-string-l1-1-0.dll new file mode 100644 index 0000000..b8f5659 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-string-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-string-l2-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-string-l2-1-0.dll new file mode 100644 index 0000000..dfea874 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-string-l2-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-string-obsolete-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-string-obsolete-l1-1-0.dll new file mode 100644 index 0000000..7b6d596 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-string-obsolete-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-stringansi-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-stringansi-l1-1-0.dll new file mode 100644 index 0000000..db7fb19 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-stringansi-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-stringloader-l1-1-1.dll b/lib64/wine/fakedlls/api-ms-win-core-stringloader-l1-1-1.dll new file mode 100644 index 0000000..1e8acba Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-stringloader-l1-1-1.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-synch-ansi-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-synch-ansi-l1-1-0.dll new file mode 100644 index 0000000..e68491d Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-synch-ansi-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-synch-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-synch-l1-1-0.dll new file mode 100644 index 0000000..2ac6c5f Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-synch-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-synch-l1-2-0.dll b/lib64/wine/fakedlls/api-ms-win-core-synch-l1-2-0.dll new file mode 100644 index 0000000..94cac9a Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-synch-l1-2-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-synch-l1-2-1.dll b/lib64/wine/fakedlls/api-ms-win-core-synch-l1-2-1.dll new file mode 100644 index 0000000..105279e Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-synch-l1-2-1.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-sysinfo-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-sysinfo-l1-1-0.dll new file mode 100644 index 0000000..81464db Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-sysinfo-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-sysinfo-l1-2-0.dll b/lib64/wine/fakedlls/api-ms-win-core-sysinfo-l1-2-0.dll new file mode 100644 index 0000000..b0a8b18 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-sysinfo-l1-2-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-sysinfo-l1-2-1.dll b/lib64/wine/fakedlls/api-ms-win-core-sysinfo-l1-2-1.dll new file mode 100644 index 0000000..10faa5b Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-sysinfo-l1-2-1.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-threadpool-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-threadpool-l1-1-0.dll new file mode 100644 index 0000000..d910422 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-threadpool-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-threadpool-l1-2-0.dll b/lib64/wine/fakedlls/api-ms-win-core-threadpool-l1-2-0.dll new file mode 100644 index 0000000..131b467 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-threadpool-l1-2-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-threadpool-legacy-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-threadpool-legacy-l1-1-0.dll new file mode 100644 index 0000000..58b1296 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-threadpool-legacy-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-threadpool-private-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-threadpool-private-l1-1-0.dll new file mode 100644 index 0000000..2d9fac2 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-threadpool-private-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-timezone-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-timezone-l1-1-0.dll new file mode 100644 index 0000000..76ab378 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-timezone-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-toolhelp-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-toolhelp-l1-1-0.dll new file mode 100644 index 0000000..5959ab9 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-toolhelp-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-url-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-url-l1-1-0.dll new file mode 100644 index 0000000..8e0c71e Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-url-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-util-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-util-l1-1-0.dll new file mode 100644 index 0000000..86172ff Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-util-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-version-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-version-l1-1-0.dll new file mode 100644 index 0000000..ac4a47d Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-version-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-version-l1-1-1.dll b/lib64/wine/fakedlls/api-ms-win-core-version-l1-1-1.dll new file mode 100644 index 0000000..5f63339 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-version-l1-1-1.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-version-private-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-version-private-l1-1-0.dll new file mode 100644 index 0000000..faf4229 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-version-private-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-versionansi-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-versionansi-l1-1-0.dll new file mode 100644 index 0000000..97b6413 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-versionansi-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-windowserrorreporting-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-windowserrorreporting-l1-1-0.dll new file mode 100644 index 0000000..6c6e62a Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-windowserrorreporting-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-winrt-error-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-winrt-error-l1-1-0.dll new file mode 100644 index 0000000..6f3f6d6 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-winrt-error-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-winrt-error-l1-1-1.dll b/lib64/wine/fakedlls/api-ms-win-core-winrt-error-l1-1-1.dll new file mode 100644 index 0000000..170b11b Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-winrt-error-l1-1-1.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-winrt-errorprivate-l1-1-1.dll b/lib64/wine/fakedlls/api-ms-win-core-winrt-errorprivate-l1-1-1.dll new file mode 100644 index 0000000..b71a5b9 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-winrt-errorprivate-l1-1-1.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-winrt-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-winrt-l1-1-0.dll new file mode 100644 index 0000000..f45df99 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-winrt-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-winrt-registration-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-winrt-registration-l1-1-0.dll new file mode 100644 index 0000000..626df36 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-winrt-registration-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-winrt-roparameterizediid-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-winrt-roparameterizediid-l1-1-0.dll new file mode 100644 index 0000000..c3a8559 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-winrt-roparameterizediid-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-winrt-string-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-winrt-string-l1-1-0.dll new file mode 100644 index 0000000..cb768e1 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-winrt-string-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-winrt-string-l1-1-1.dll b/lib64/wine/fakedlls/api-ms-win-core-winrt-string-l1-1-1.dll new file mode 100644 index 0000000..ac2982f Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-winrt-string-l1-1-1.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-wow64-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-wow64-l1-1-0.dll new file mode 100644 index 0000000..6de37b9 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-wow64-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-wow64-l1-1-1.dll b/lib64/wine/fakedlls/api-ms-win-core-wow64-l1-1-1.dll new file mode 100644 index 0000000..198baf2 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-wow64-l1-1-1.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-xstate-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-xstate-l1-1-0.dll new file mode 100644 index 0000000..cf8d8a7 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-xstate-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-core-xstate-l2-1-0.dll b/lib64/wine/fakedlls/api-ms-win-core-xstate-l2-1-0.dll new file mode 100644 index 0000000..7d0a798 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-core-xstate-l2-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-crt-conio-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-crt-conio-l1-1-0.dll new file mode 100644 index 0000000..431460e Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-crt-conio-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-crt-convert-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-crt-convert-l1-1-0.dll new file mode 100644 index 0000000..225abb9 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-crt-convert-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-crt-environment-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-crt-environment-l1-1-0.dll new file mode 100644 index 0000000..850ca18 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-crt-environment-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-crt-filesystem-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-crt-filesystem-l1-1-0.dll new file mode 100644 index 0000000..4a6ed3d Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-crt-filesystem-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-crt-heap-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-crt-heap-l1-1-0.dll new file mode 100644 index 0000000..20506c1 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-crt-heap-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-crt-locale-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-crt-locale-l1-1-0.dll new file mode 100644 index 0000000..feb7494 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-crt-locale-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-crt-math-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-crt-math-l1-1-0.dll new file mode 100644 index 0000000..59a3736 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-crt-math-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-crt-multibyte-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-crt-multibyte-l1-1-0.dll new file mode 100644 index 0000000..f390f8f Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-crt-multibyte-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-crt-private-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-crt-private-l1-1-0.dll new file mode 100644 index 0000000..67b71fd Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-crt-private-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-crt-process-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-crt-process-l1-1-0.dll new file mode 100644 index 0000000..8874525 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-crt-process-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-crt-runtime-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-crt-runtime-l1-1-0.dll new file mode 100644 index 0000000..13856dd Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-crt-runtime-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-crt-stdio-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-crt-stdio-l1-1-0.dll new file mode 100644 index 0000000..37a0e52 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-crt-stdio-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-crt-string-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-crt-string-l1-1-0.dll new file mode 100644 index 0000000..9339a65 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-crt-string-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-crt-time-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-crt-time-l1-1-0.dll new file mode 100644 index 0000000..db6a999 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-crt-time-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-crt-utility-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-crt-utility-l1-1-0.dll new file mode 100644 index 0000000..10c828b Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-crt-utility-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-devices-config-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-devices-config-l1-1-0.dll new file mode 100644 index 0000000..dc8e1e9 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-devices-config-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-devices-config-l1-1-1.dll b/lib64/wine/fakedlls/api-ms-win-devices-config-l1-1-1.dll new file mode 100644 index 0000000..8294b21 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-devices-config-l1-1-1.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-devices-query-l1-1-1.dll b/lib64/wine/fakedlls/api-ms-win-devices-query-l1-1-1.dll new file mode 100644 index 0000000..2eb875d Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-devices-query-l1-1-1.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-downlevel-advapi32-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-downlevel-advapi32-l1-1-0.dll new file mode 100644 index 0000000..9596065 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-downlevel-advapi32-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-downlevel-advapi32-l2-1-0.dll b/lib64/wine/fakedlls/api-ms-win-downlevel-advapi32-l2-1-0.dll new file mode 100644 index 0000000..6d9ba31 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-downlevel-advapi32-l2-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-downlevel-normaliz-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-downlevel-normaliz-l1-1-0.dll new file mode 100644 index 0000000..a8e303d Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-downlevel-normaliz-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-downlevel-ole32-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-downlevel-ole32-l1-1-0.dll new file mode 100644 index 0000000..7f60683 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-downlevel-ole32-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-downlevel-shell32-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-downlevel-shell32-l1-1-0.dll new file mode 100644 index 0000000..7c2f607 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-downlevel-shell32-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-downlevel-shlwapi-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-downlevel-shlwapi-l1-1-0.dll new file mode 100644 index 0000000..32b0248 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-downlevel-shlwapi-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-downlevel-shlwapi-l2-1-0.dll b/lib64/wine/fakedlls/api-ms-win-downlevel-shlwapi-l2-1-0.dll new file mode 100644 index 0000000..5622b74 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-downlevel-shlwapi-l2-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-downlevel-user32-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-downlevel-user32-l1-1-0.dll new file mode 100644 index 0000000..8d91434 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-downlevel-user32-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-downlevel-version-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-downlevel-version-l1-1-0.dll new file mode 100644 index 0000000..e4ce026 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-downlevel-version-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-dx-d3dkmt-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-dx-d3dkmt-l1-1-0.dll new file mode 100644 index 0000000..40d8bfb Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-dx-d3dkmt-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-eventing-classicprovider-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-eventing-classicprovider-l1-1-0.dll new file mode 100644 index 0000000..0feb7f1 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-eventing-classicprovider-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-eventing-consumer-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-eventing-consumer-l1-1-0.dll new file mode 100644 index 0000000..034dc64 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-eventing-consumer-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-eventing-controller-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-eventing-controller-l1-1-0.dll new file mode 100644 index 0000000..6d35717 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-eventing-controller-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-eventing-legacy-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-eventing-legacy-l1-1-0.dll new file mode 100644 index 0000000..4f16d06 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-eventing-legacy-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-eventing-provider-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-eventing-provider-l1-1-0.dll new file mode 100644 index 0000000..f1a65fe Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-eventing-provider-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-eventlog-legacy-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-eventlog-legacy-l1-1-0.dll new file mode 100644 index 0000000..363d638 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-eventlog-legacy-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-gdi-dpiinfo-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-gdi-dpiinfo-l1-1-0.dll new file mode 100644 index 0000000..e1fafe3 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-gdi-dpiinfo-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-mm-joystick-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-mm-joystick-l1-1-0.dll new file mode 100644 index 0000000..f8b4121 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-mm-joystick-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-mm-misc-l1-1-1.dll b/lib64/wine/fakedlls/api-ms-win-mm-misc-l1-1-1.dll new file mode 100644 index 0000000..2d54263 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-mm-misc-l1-1-1.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-mm-mme-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-mm-mme-l1-1-0.dll new file mode 100644 index 0000000..1deb312 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-mm-mme-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-mm-time-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-mm-time-l1-1-0.dll new file mode 100644 index 0000000..dc6ad22 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-mm-time-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-ntuser-dc-access-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-ntuser-dc-access-l1-1-0.dll new file mode 100644 index 0000000..583e89c Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-ntuser-dc-access-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-ntuser-rectangle-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-ntuser-rectangle-l1-1-0.dll new file mode 100644 index 0000000..f752ac0 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-ntuser-rectangle-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-ntuser-sysparams-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-ntuser-sysparams-l1-1-0.dll new file mode 100644 index 0000000..213e15f Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-ntuser-sysparams-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-perf-legacy-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-perf-legacy-l1-1-0.dll new file mode 100644 index 0000000..43eb711 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-perf-legacy-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-power-base-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-power-base-l1-1-0.dll new file mode 100644 index 0000000..a16c736 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-power-base-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-power-setting-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-power-setting-l1-1-0.dll new file mode 100644 index 0000000..6618d95 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-power-setting-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-rtcore-ntuser-draw-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-rtcore-ntuser-draw-l1-1-0.dll new file mode 100644 index 0000000..4b563df Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-rtcore-ntuser-draw-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-rtcore-ntuser-private-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-rtcore-ntuser-private-l1-1-0.dll new file mode 100644 index 0000000..fe7f65e Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-rtcore-ntuser-private-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-rtcore-ntuser-private-l1-1-4.dll b/lib64/wine/fakedlls/api-ms-win-rtcore-ntuser-private-l1-1-4.dll new file mode 100644 index 0000000..52de92b Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-rtcore-ntuser-private-l1-1-4.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-rtcore-ntuser-window-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-rtcore-ntuser-window-l1-1-0.dll new file mode 100644 index 0000000..27d5496 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-rtcore-ntuser-window-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-rtcore-ntuser-winevent-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-rtcore-ntuser-winevent-l1-1-0.dll new file mode 100644 index 0000000..cbaa995 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-rtcore-ntuser-winevent-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-rtcore-ntuser-wmpointer-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-rtcore-ntuser-wmpointer-l1-1-0.dll new file mode 100644 index 0000000..06f9a96 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-rtcore-ntuser-wmpointer-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-rtcore-ntuser-wmpointer-l1-1-3.dll b/lib64/wine/fakedlls/api-ms-win-rtcore-ntuser-wmpointer-l1-1-3.dll new file mode 100644 index 0000000..1899f42 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-rtcore-ntuser-wmpointer-l1-1-3.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-security-activedirectoryclient-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-security-activedirectoryclient-l1-1-0.dll new file mode 100644 index 0000000..3838489 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-security-activedirectoryclient-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-security-audit-l1-1-1.dll b/lib64/wine/fakedlls/api-ms-win-security-audit-l1-1-1.dll new file mode 100644 index 0000000..b64808c Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-security-audit-l1-1-1.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-security-base-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-security-base-l1-1-0.dll new file mode 100644 index 0000000..43ee7a6 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-security-base-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-security-base-l1-2-0.dll b/lib64/wine/fakedlls/api-ms-win-security-base-l1-2-0.dll new file mode 100644 index 0000000..86b1089 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-security-base-l1-2-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-security-base-private-l1-1-1.dll b/lib64/wine/fakedlls/api-ms-win-security-base-private-l1-1-1.dll new file mode 100644 index 0000000..031f388 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-security-base-private-l1-1-1.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-security-credentials-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-security-credentials-l1-1-0.dll new file mode 100644 index 0000000..ead0348 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-security-credentials-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-security-cryptoapi-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-security-cryptoapi-l1-1-0.dll new file mode 100644 index 0000000..331acb3 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-security-cryptoapi-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-security-grouppolicy-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-security-grouppolicy-l1-1-0.dll new file mode 100644 index 0000000..42b17de Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-security-grouppolicy-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-security-lsalookup-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-security-lsalookup-l1-1-0.dll new file mode 100644 index 0000000..c1f4798 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-security-lsalookup-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-security-lsalookup-l1-1-1.dll b/lib64/wine/fakedlls/api-ms-win-security-lsalookup-l1-1-1.dll new file mode 100644 index 0000000..26d55e2 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-security-lsalookup-l1-1-1.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-security-lsalookup-l2-1-0.dll b/lib64/wine/fakedlls/api-ms-win-security-lsalookup-l2-1-0.dll new file mode 100644 index 0000000..ea4f11c Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-security-lsalookup-l2-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-security-lsalookup-l2-1-1.dll b/lib64/wine/fakedlls/api-ms-win-security-lsalookup-l2-1-1.dll new file mode 100644 index 0000000..a146ca1 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-security-lsalookup-l2-1-1.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-security-lsapolicy-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-security-lsapolicy-l1-1-0.dll new file mode 100644 index 0000000..43e4444 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-security-lsapolicy-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-security-provider-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-security-provider-l1-1-0.dll new file mode 100644 index 0000000..662aa33 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-security-provider-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-security-sddl-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-security-sddl-l1-1-0.dll new file mode 100644 index 0000000..d0369f0 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-security-sddl-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-security-systemfunctions-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-security-systemfunctions-l1-1-0.dll new file mode 100644 index 0000000..11c15b2 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-security-systemfunctions-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-service-core-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-service-core-l1-1-0.dll new file mode 100644 index 0000000..2ee0956 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-service-core-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-service-core-l1-1-1.dll b/lib64/wine/fakedlls/api-ms-win-service-core-l1-1-1.dll new file mode 100644 index 0000000..8b441b9 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-service-core-l1-1-1.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-service-management-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-service-management-l1-1-0.dll new file mode 100644 index 0000000..d015aeb Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-service-management-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-service-management-l2-1-0.dll b/lib64/wine/fakedlls/api-ms-win-service-management-l2-1-0.dll new file mode 100644 index 0000000..0195326 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-service-management-l2-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-service-private-l1-1-1.dll b/lib64/wine/fakedlls/api-ms-win-service-private-l1-1-1.dll new file mode 100644 index 0000000..268a889 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-service-private-l1-1-1.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-service-winsvc-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-service-winsvc-l1-1-0.dll new file mode 100644 index 0000000..834dac1 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-service-winsvc-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-service-winsvc-l1-2-0.dll b/lib64/wine/fakedlls/api-ms-win-service-winsvc-l1-2-0.dll new file mode 100644 index 0000000..ac50a9e Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-service-winsvc-l1-2-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-shcore-obsolete-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-shcore-obsolete-l1-1-0.dll new file mode 100644 index 0000000..c15cbeb Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-shcore-obsolete-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-shcore-scaling-l1-1-1.dll b/lib64/wine/fakedlls/api-ms-win-shcore-scaling-l1-1-1.dll new file mode 100644 index 0000000..07bb002 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-shcore-scaling-l1-1-1.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-shcore-stream-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-shcore-stream-l1-1-0.dll new file mode 100644 index 0000000..d918912 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-shcore-stream-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-shcore-thread-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-shcore-thread-l1-1-0.dll new file mode 100644 index 0000000..97a11de Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-shcore-thread-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-shell-shellcom-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-shell-shellcom-l1-1-0.dll new file mode 100644 index 0000000..d3c54a1 Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-shell-shellcom-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/api-ms-win-shell-shellfolders-l1-1-0.dll b/lib64/wine/fakedlls/api-ms-win-shell-shellfolders-l1-1-0.dll new file mode 100644 index 0000000..383b58e Binary files /dev/null and b/lib64/wine/fakedlls/api-ms-win-shell-shellfolders-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/apphelp.dll b/lib64/wine/fakedlls/apphelp.dll new file mode 100644 index 0000000..c9e04fc Binary files /dev/null and b/lib64/wine/fakedlls/apphelp.dll differ diff --git a/lib64/wine/fakedlls/appwiz.cpl b/lib64/wine/fakedlls/appwiz.cpl new file mode 100644 index 0000000..adb15a3 Binary files /dev/null and b/lib64/wine/fakedlls/appwiz.cpl differ diff --git a/lib64/wine/fakedlls/arp.exe b/lib64/wine/fakedlls/arp.exe new file mode 100644 index 0000000..004b6a5 Binary files /dev/null and b/lib64/wine/fakedlls/arp.exe differ diff --git a/lib64/wine/fakedlls/aspnet_regiis.exe b/lib64/wine/fakedlls/aspnet_regiis.exe new file mode 100644 index 0000000..004b6a5 Binary files /dev/null and b/lib64/wine/fakedlls/aspnet_regiis.exe differ diff --git a/lib64/wine/fakedlls/atl.dll b/lib64/wine/fakedlls/atl.dll new file mode 100644 index 0000000..9f832b0 Binary files /dev/null and b/lib64/wine/fakedlls/atl.dll differ diff --git a/lib64/wine/fakedlls/atl100.dll b/lib64/wine/fakedlls/atl100.dll new file mode 100644 index 0000000..d165a28 Binary files /dev/null and b/lib64/wine/fakedlls/atl100.dll differ diff --git a/lib64/wine/fakedlls/atl110.dll b/lib64/wine/fakedlls/atl110.dll new file mode 100644 index 0000000..6c6ee9f Binary files /dev/null and b/lib64/wine/fakedlls/atl110.dll differ diff --git a/lib64/wine/fakedlls/atl80.dll b/lib64/wine/fakedlls/atl80.dll new file mode 100644 index 0000000..0be463a Binary files /dev/null and b/lib64/wine/fakedlls/atl80.dll differ diff --git a/lib64/wine/fakedlls/atl90.dll b/lib64/wine/fakedlls/atl90.dll new file mode 100644 index 0000000..29f583e Binary files /dev/null and b/lib64/wine/fakedlls/atl90.dll differ diff --git a/lib64/wine/fakedlls/atlthunk.dll b/lib64/wine/fakedlls/atlthunk.dll new file mode 100644 index 0000000..e1cc14a Binary files /dev/null and b/lib64/wine/fakedlls/atlthunk.dll differ diff --git a/lib64/wine/fakedlls/atmlib.dll b/lib64/wine/fakedlls/atmlib.dll new file mode 100644 index 0000000..f7ca6a9 Binary files /dev/null and b/lib64/wine/fakedlls/atmlib.dll differ diff --git a/lib64/wine/fakedlls/attrib.exe b/lib64/wine/fakedlls/attrib.exe new file mode 100644 index 0000000..0e43a2c Binary files /dev/null and b/lib64/wine/fakedlls/attrib.exe differ diff --git a/lib64/wine/fakedlls/authz.dll b/lib64/wine/fakedlls/authz.dll new file mode 100644 index 0000000..fd45e8b Binary files /dev/null and b/lib64/wine/fakedlls/authz.dll differ diff --git a/lib64/wine/fakedlls/avicap32.dll b/lib64/wine/fakedlls/avicap32.dll new file mode 100644 index 0000000..f8adddb Binary files /dev/null and b/lib64/wine/fakedlls/avicap32.dll differ diff --git a/lib64/wine/fakedlls/avifil32.dll b/lib64/wine/fakedlls/avifil32.dll new file mode 100644 index 0000000..8cc1e11 Binary files /dev/null and b/lib64/wine/fakedlls/avifil32.dll differ diff --git a/lib64/wine/fakedlls/avrt.dll b/lib64/wine/fakedlls/avrt.dll new file mode 100644 index 0000000..7ca6f5a Binary files /dev/null and b/lib64/wine/fakedlls/avrt.dll differ diff --git a/lib64/wine/fakedlls/bcrypt.dll b/lib64/wine/fakedlls/bcrypt.dll new file mode 100644 index 0000000..4ba34d6 Binary files /dev/null and b/lib64/wine/fakedlls/bcrypt.dll differ diff --git a/lib64/wine/fakedlls/bluetoothapis.dll b/lib64/wine/fakedlls/bluetoothapis.dll new file mode 100644 index 0000000..c0da1b1 Binary files /dev/null and b/lib64/wine/fakedlls/bluetoothapis.dll differ diff --git a/lib64/wine/fakedlls/browseui.dll b/lib64/wine/fakedlls/browseui.dll new file mode 100644 index 0000000..f8207ad Binary files /dev/null and b/lib64/wine/fakedlls/browseui.dll differ diff --git a/lib64/wine/fakedlls/bthprops.cpl b/lib64/wine/fakedlls/bthprops.cpl new file mode 100644 index 0000000..9eb1b92 Binary files /dev/null and b/lib64/wine/fakedlls/bthprops.cpl differ diff --git a/lib64/wine/fakedlls/cabarc.exe b/lib64/wine/fakedlls/cabarc.exe new file mode 100644 index 0000000..004b6a5 Binary files /dev/null and b/lib64/wine/fakedlls/cabarc.exe differ diff --git a/lib64/wine/fakedlls/cabinet.dll b/lib64/wine/fakedlls/cabinet.dll new file mode 100644 index 0000000..f2d1e7a Binary files /dev/null and b/lib64/wine/fakedlls/cabinet.dll differ diff --git a/lib64/wine/fakedlls/cacls.exe b/lib64/wine/fakedlls/cacls.exe new file mode 100644 index 0000000..004b6a5 Binary files /dev/null and b/lib64/wine/fakedlls/cacls.exe differ diff --git a/lib64/wine/fakedlls/capi2032.dll b/lib64/wine/fakedlls/capi2032.dll new file mode 100644 index 0000000..efadbc0 Binary files /dev/null and b/lib64/wine/fakedlls/capi2032.dll differ diff --git a/lib64/wine/fakedlls/cards.dll b/lib64/wine/fakedlls/cards.dll new file mode 100644 index 0000000..900ce0b Binary files /dev/null and b/lib64/wine/fakedlls/cards.dll differ diff --git a/lib64/wine/fakedlls/cdosys.dll b/lib64/wine/fakedlls/cdosys.dll new file mode 100644 index 0000000..15067bb Binary files /dev/null and b/lib64/wine/fakedlls/cdosys.dll differ diff --git a/lib64/wine/fakedlls/cfgmgr32.dll b/lib64/wine/fakedlls/cfgmgr32.dll new file mode 100644 index 0000000..17024af Binary files /dev/null and b/lib64/wine/fakedlls/cfgmgr32.dll differ diff --git a/lib64/wine/fakedlls/clock.exe b/lib64/wine/fakedlls/clock.exe new file mode 100644 index 0000000..b4159c6 Binary files /dev/null and b/lib64/wine/fakedlls/clock.exe differ diff --git a/lib64/wine/fakedlls/clusapi.dll b/lib64/wine/fakedlls/clusapi.dll new file mode 100644 index 0000000..9e65eb5 Binary files /dev/null and b/lib64/wine/fakedlls/clusapi.dll differ diff --git a/lib64/wine/fakedlls/cmd.exe b/lib64/wine/fakedlls/cmd.exe new file mode 100644 index 0000000..e22c4a3 Binary files /dev/null and b/lib64/wine/fakedlls/cmd.exe differ diff --git a/lib64/wine/fakedlls/combase.dll b/lib64/wine/fakedlls/combase.dll new file mode 100644 index 0000000..71a8fc0 Binary files /dev/null and b/lib64/wine/fakedlls/combase.dll differ diff --git a/lib64/wine/fakedlls/comcat.dll b/lib64/wine/fakedlls/comcat.dll new file mode 100644 index 0000000..e02b553 Binary files /dev/null and b/lib64/wine/fakedlls/comcat.dll differ diff --git a/lib64/wine/fakedlls/comctl32.dll b/lib64/wine/fakedlls/comctl32.dll new file mode 100644 index 0000000..0d22e93 Binary files /dev/null and b/lib64/wine/fakedlls/comctl32.dll differ diff --git a/lib64/wine/fakedlls/comdlg32.dll b/lib64/wine/fakedlls/comdlg32.dll new file mode 100644 index 0000000..45b0e0d Binary files /dev/null and b/lib64/wine/fakedlls/comdlg32.dll differ diff --git a/lib64/wine/fakedlls/compstui.dll b/lib64/wine/fakedlls/compstui.dll new file mode 100644 index 0000000..b99c5b5 Binary files /dev/null and b/lib64/wine/fakedlls/compstui.dll differ diff --git a/lib64/wine/fakedlls/comsvcs.dll b/lib64/wine/fakedlls/comsvcs.dll new file mode 100644 index 0000000..b4279bb Binary files /dev/null and b/lib64/wine/fakedlls/comsvcs.dll differ diff --git a/lib64/wine/fakedlls/concrt140.dll b/lib64/wine/fakedlls/concrt140.dll new file mode 100644 index 0000000..c57f8e9 Binary files /dev/null and b/lib64/wine/fakedlls/concrt140.dll differ diff --git a/lib64/wine/fakedlls/conhost.exe b/lib64/wine/fakedlls/conhost.exe new file mode 100644 index 0000000..e5d45ec Binary files /dev/null and b/lib64/wine/fakedlls/conhost.exe differ diff --git a/lib64/wine/fakedlls/connect.dll b/lib64/wine/fakedlls/connect.dll new file mode 100644 index 0000000..a4aa986 Binary files /dev/null and b/lib64/wine/fakedlls/connect.dll differ diff --git a/lib64/wine/fakedlls/control.exe b/lib64/wine/fakedlls/control.exe new file mode 100644 index 0000000..e264285 Binary files /dev/null and b/lib64/wine/fakedlls/control.exe differ diff --git a/lib64/wine/fakedlls/credui.dll b/lib64/wine/fakedlls/credui.dll new file mode 100644 index 0000000..1743549 Binary files /dev/null and b/lib64/wine/fakedlls/credui.dll differ diff --git a/lib64/wine/fakedlls/crtdll.dll b/lib64/wine/fakedlls/crtdll.dll new file mode 100644 index 0000000..ce2281f Binary files /dev/null and b/lib64/wine/fakedlls/crtdll.dll differ diff --git a/lib64/wine/fakedlls/crypt32.dll b/lib64/wine/fakedlls/crypt32.dll new file mode 100644 index 0000000..f327196 Binary files /dev/null and b/lib64/wine/fakedlls/crypt32.dll differ diff --git a/lib64/wine/fakedlls/cryptdlg.dll b/lib64/wine/fakedlls/cryptdlg.dll new file mode 100644 index 0000000..dd89929 Binary files /dev/null and b/lib64/wine/fakedlls/cryptdlg.dll differ diff --git a/lib64/wine/fakedlls/cryptdll.dll b/lib64/wine/fakedlls/cryptdll.dll new file mode 100644 index 0000000..daa4005 Binary files /dev/null and b/lib64/wine/fakedlls/cryptdll.dll differ diff --git a/lib64/wine/fakedlls/cryptext.dll b/lib64/wine/fakedlls/cryptext.dll new file mode 100644 index 0000000..7eafa80 Binary files /dev/null and b/lib64/wine/fakedlls/cryptext.dll differ diff --git a/lib64/wine/fakedlls/cryptnet.dll b/lib64/wine/fakedlls/cryptnet.dll new file mode 100644 index 0000000..ee32330 Binary files /dev/null and b/lib64/wine/fakedlls/cryptnet.dll differ diff --git a/lib64/wine/fakedlls/cryptui.dll b/lib64/wine/fakedlls/cryptui.dll new file mode 100644 index 0000000..5bd9713 Binary files /dev/null and b/lib64/wine/fakedlls/cryptui.dll differ diff --git a/lib64/wine/fakedlls/cscript.exe b/lib64/wine/fakedlls/cscript.exe new file mode 100644 index 0000000..e264285 Binary files /dev/null and b/lib64/wine/fakedlls/cscript.exe differ diff --git a/lib64/wine/fakedlls/ctapi32.dll b/lib64/wine/fakedlls/ctapi32.dll new file mode 100644 index 0000000..0b5d382 Binary files /dev/null and b/lib64/wine/fakedlls/ctapi32.dll differ diff --git a/lib64/wine/fakedlls/ctl3d32.dll b/lib64/wine/fakedlls/ctl3d32.dll new file mode 100644 index 0000000..bfe8ddb Binary files /dev/null and b/lib64/wine/fakedlls/ctl3d32.dll differ diff --git a/lib64/wine/fakedlls/d2d1.dll b/lib64/wine/fakedlls/d2d1.dll new file mode 100644 index 0000000..f1a2f05 Binary files /dev/null and b/lib64/wine/fakedlls/d2d1.dll differ diff --git a/lib64/wine/fakedlls/d3d10.dll b/lib64/wine/fakedlls/d3d10.dll new file mode 100644 index 0000000..c925288 Binary files /dev/null and b/lib64/wine/fakedlls/d3d10.dll differ diff --git a/lib64/wine/fakedlls/d3d10_1.dll b/lib64/wine/fakedlls/d3d10_1.dll new file mode 100644 index 0000000..82cfb73 Binary files /dev/null and b/lib64/wine/fakedlls/d3d10_1.dll differ diff --git a/lib64/wine/fakedlls/d3d10core.dll b/lib64/wine/fakedlls/d3d10core.dll new file mode 100644 index 0000000..8167997 Binary files /dev/null and b/lib64/wine/fakedlls/d3d10core.dll differ diff --git a/lib64/wine/fakedlls/d3d11.dll b/lib64/wine/fakedlls/d3d11.dll new file mode 100644 index 0000000..e4f1d29 Binary files /dev/null and b/lib64/wine/fakedlls/d3d11.dll differ diff --git a/lib64/wine/fakedlls/d3d8.dll b/lib64/wine/fakedlls/d3d8.dll new file mode 100644 index 0000000..a9981e4 Binary files /dev/null and b/lib64/wine/fakedlls/d3d8.dll differ diff --git a/lib64/wine/fakedlls/d3d9.dll b/lib64/wine/fakedlls/d3d9.dll new file mode 100644 index 0000000..a7eef5b Binary files /dev/null and b/lib64/wine/fakedlls/d3d9.dll differ diff --git a/lib64/wine/fakedlls/d3dcompiler_33.dll b/lib64/wine/fakedlls/d3dcompiler_33.dll new file mode 100644 index 0000000..9d70c5c Binary files /dev/null and b/lib64/wine/fakedlls/d3dcompiler_33.dll differ diff --git a/lib64/wine/fakedlls/d3dcompiler_34.dll b/lib64/wine/fakedlls/d3dcompiler_34.dll new file mode 100644 index 0000000..d8f8b8b Binary files /dev/null and b/lib64/wine/fakedlls/d3dcompiler_34.dll differ diff --git a/lib64/wine/fakedlls/d3dcompiler_35.dll b/lib64/wine/fakedlls/d3dcompiler_35.dll new file mode 100644 index 0000000..be51fee Binary files /dev/null and b/lib64/wine/fakedlls/d3dcompiler_35.dll differ diff --git a/lib64/wine/fakedlls/d3dcompiler_36.dll b/lib64/wine/fakedlls/d3dcompiler_36.dll new file mode 100644 index 0000000..09465d1 Binary files /dev/null and b/lib64/wine/fakedlls/d3dcompiler_36.dll differ diff --git a/lib64/wine/fakedlls/d3dcompiler_37.dll b/lib64/wine/fakedlls/d3dcompiler_37.dll new file mode 100644 index 0000000..3e8634f Binary files /dev/null and b/lib64/wine/fakedlls/d3dcompiler_37.dll differ diff --git a/lib64/wine/fakedlls/d3dcompiler_38.dll b/lib64/wine/fakedlls/d3dcompiler_38.dll new file mode 100644 index 0000000..537bb88 Binary files /dev/null and b/lib64/wine/fakedlls/d3dcompiler_38.dll differ diff --git a/lib64/wine/fakedlls/d3dcompiler_39.dll b/lib64/wine/fakedlls/d3dcompiler_39.dll new file mode 100644 index 0000000..bee6652 Binary files /dev/null and b/lib64/wine/fakedlls/d3dcompiler_39.dll differ diff --git a/lib64/wine/fakedlls/d3dcompiler_40.dll b/lib64/wine/fakedlls/d3dcompiler_40.dll new file mode 100644 index 0000000..bd946aa Binary files /dev/null and b/lib64/wine/fakedlls/d3dcompiler_40.dll differ diff --git a/lib64/wine/fakedlls/d3dcompiler_41.dll b/lib64/wine/fakedlls/d3dcompiler_41.dll new file mode 100644 index 0000000..b55b324 Binary files /dev/null and b/lib64/wine/fakedlls/d3dcompiler_41.dll differ diff --git a/lib64/wine/fakedlls/d3dcompiler_42.dll b/lib64/wine/fakedlls/d3dcompiler_42.dll new file mode 100644 index 0000000..c053cf9 Binary files /dev/null and b/lib64/wine/fakedlls/d3dcompiler_42.dll differ diff --git a/lib64/wine/fakedlls/d3dcompiler_43.dll b/lib64/wine/fakedlls/d3dcompiler_43.dll new file mode 100644 index 0000000..1fef8ef Binary files /dev/null and b/lib64/wine/fakedlls/d3dcompiler_43.dll differ diff --git a/lib64/wine/fakedlls/d3dcompiler_46.dll b/lib64/wine/fakedlls/d3dcompiler_46.dll new file mode 100644 index 0000000..b79e576 Binary files /dev/null and b/lib64/wine/fakedlls/d3dcompiler_46.dll differ diff --git a/lib64/wine/fakedlls/d3dcompiler_47.dll b/lib64/wine/fakedlls/d3dcompiler_47.dll new file mode 100644 index 0000000..2f4ee7f Binary files /dev/null and b/lib64/wine/fakedlls/d3dcompiler_47.dll differ diff --git a/lib64/wine/fakedlls/d3dim.dll b/lib64/wine/fakedlls/d3dim.dll new file mode 100644 index 0000000..ef0569e Binary files /dev/null and b/lib64/wine/fakedlls/d3dim.dll differ diff --git a/lib64/wine/fakedlls/d3drm.dll b/lib64/wine/fakedlls/d3drm.dll new file mode 100644 index 0000000..f4cdba8 Binary files /dev/null and b/lib64/wine/fakedlls/d3drm.dll differ diff --git a/lib64/wine/fakedlls/d3dx10_33.dll b/lib64/wine/fakedlls/d3dx10_33.dll new file mode 100644 index 0000000..bb844b3 Binary files /dev/null and b/lib64/wine/fakedlls/d3dx10_33.dll differ diff --git a/lib64/wine/fakedlls/d3dx10_34.dll b/lib64/wine/fakedlls/d3dx10_34.dll new file mode 100644 index 0000000..7142c68 Binary files /dev/null and b/lib64/wine/fakedlls/d3dx10_34.dll differ diff --git a/lib64/wine/fakedlls/d3dx10_35.dll b/lib64/wine/fakedlls/d3dx10_35.dll new file mode 100644 index 0000000..72f565f Binary files /dev/null and b/lib64/wine/fakedlls/d3dx10_35.dll differ diff --git a/lib64/wine/fakedlls/d3dx10_36.dll b/lib64/wine/fakedlls/d3dx10_36.dll new file mode 100644 index 0000000..810dbfb Binary files /dev/null and b/lib64/wine/fakedlls/d3dx10_36.dll differ diff --git a/lib64/wine/fakedlls/d3dx10_37.dll b/lib64/wine/fakedlls/d3dx10_37.dll new file mode 100644 index 0000000..f39a4d8 Binary files /dev/null and b/lib64/wine/fakedlls/d3dx10_37.dll differ diff --git a/lib64/wine/fakedlls/d3dx10_38.dll b/lib64/wine/fakedlls/d3dx10_38.dll new file mode 100644 index 0000000..b1730f6 Binary files /dev/null and b/lib64/wine/fakedlls/d3dx10_38.dll differ diff --git a/lib64/wine/fakedlls/d3dx10_39.dll b/lib64/wine/fakedlls/d3dx10_39.dll new file mode 100644 index 0000000..4d48ab2 Binary files /dev/null and b/lib64/wine/fakedlls/d3dx10_39.dll differ diff --git a/lib64/wine/fakedlls/d3dx10_40.dll b/lib64/wine/fakedlls/d3dx10_40.dll new file mode 100644 index 0000000..b466c34 Binary files /dev/null and b/lib64/wine/fakedlls/d3dx10_40.dll differ diff --git a/lib64/wine/fakedlls/d3dx10_41.dll b/lib64/wine/fakedlls/d3dx10_41.dll new file mode 100644 index 0000000..a426e09 Binary files /dev/null and b/lib64/wine/fakedlls/d3dx10_41.dll differ diff --git a/lib64/wine/fakedlls/d3dx10_42.dll b/lib64/wine/fakedlls/d3dx10_42.dll new file mode 100644 index 0000000..0b3bddb Binary files /dev/null and b/lib64/wine/fakedlls/d3dx10_42.dll differ diff --git a/lib64/wine/fakedlls/d3dx10_43.dll b/lib64/wine/fakedlls/d3dx10_43.dll new file mode 100644 index 0000000..4a78343 Binary files /dev/null and b/lib64/wine/fakedlls/d3dx10_43.dll differ diff --git a/lib64/wine/fakedlls/d3dx11_42.dll b/lib64/wine/fakedlls/d3dx11_42.dll new file mode 100644 index 0000000..6a21143 Binary files /dev/null and b/lib64/wine/fakedlls/d3dx11_42.dll differ diff --git a/lib64/wine/fakedlls/d3dx11_43.dll b/lib64/wine/fakedlls/d3dx11_43.dll new file mode 100644 index 0000000..506ec3f Binary files /dev/null and b/lib64/wine/fakedlls/d3dx11_43.dll differ diff --git a/lib64/wine/fakedlls/d3dx9_24.dll b/lib64/wine/fakedlls/d3dx9_24.dll new file mode 100644 index 0000000..25f1a17 Binary files /dev/null and b/lib64/wine/fakedlls/d3dx9_24.dll differ diff --git a/lib64/wine/fakedlls/d3dx9_25.dll b/lib64/wine/fakedlls/d3dx9_25.dll new file mode 100644 index 0000000..b194fb4 Binary files /dev/null and b/lib64/wine/fakedlls/d3dx9_25.dll differ diff --git a/lib64/wine/fakedlls/d3dx9_26.dll b/lib64/wine/fakedlls/d3dx9_26.dll new file mode 100644 index 0000000..445fe4e Binary files /dev/null and b/lib64/wine/fakedlls/d3dx9_26.dll differ diff --git a/lib64/wine/fakedlls/d3dx9_27.dll b/lib64/wine/fakedlls/d3dx9_27.dll new file mode 100644 index 0000000..9673508 Binary files /dev/null and b/lib64/wine/fakedlls/d3dx9_27.dll differ diff --git a/lib64/wine/fakedlls/d3dx9_28.dll b/lib64/wine/fakedlls/d3dx9_28.dll new file mode 100644 index 0000000..cae3193 Binary files /dev/null and b/lib64/wine/fakedlls/d3dx9_28.dll differ diff --git a/lib64/wine/fakedlls/d3dx9_29.dll b/lib64/wine/fakedlls/d3dx9_29.dll new file mode 100644 index 0000000..5c92e1d Binary files /dev/null and b/lib64/wine/fakedlls/d3dx9_29.dll differ diff --git a/lib64/wine/fakedlls/d3dx9_30.dll b/lib64/wine/fakedlls/d3dx9_30.dll new file mode 100644 index 0000000..c6134aa Binary files /dev/null and b/lib64/wine/fakedlls/d3dx9_30.dll differ diff --git a/lib64/wine/fakedlls/d3dx9_31.dll b/lib64/wine/fakedlls/d3dx9_31.dll new file mode 100644 index 0000000..c8d79e6 Binary files /dev/null and b/lib64/wine/fakedlls/d3dx9_31.dll differ diff --git a/lib64/wine/fakedlls/d3dx9_32.dll b/lib64/wine/fakedlls/d3dx9_32.dll new file mode 100644 index 0000000..3d09efa Binary files /dev/null and b/lib64/wine/fakedlls/d3dx9_32.dll differ diff --git a/lib64/wine/fakedlls/d3dx9_33.dll b/lib64/wine/fakedlls/d3dx9_33.dll new file mode 100644 index 0000000..cbd1621 Binary files /dev/null and b/lib64/wine/fakedlls/d3dx9_33.dll differ diff --git a/lib64/wine/fakedlls/d3dx9_34.dll b/lib64/wine/fakedlls/d3dx9_34.dll new file mode 100644 index 0000000..b845ff5 Binary files /dev/null and b/lib64/wine/fakedlls/d3dx9_34.dll differ diff --git a/lib64/wine/fakedlls/d3dx9_35.dll b/lib64/wine/fakedlls/d3dx9_35.dll new file mode 100644 index 0000000..1485684 Binary files /dev/null and b/lib64/wine/fakedlls/d3dx9_35.dll differ diff --git a/lib64/wine/fakedlls/d3dx9_36.dll b/lib64/wine/fakedlls/d3dx9_36.dll new file mode 100644 index 0000000..94f298e Binary files /dev/null and b/lib64/wine/fakedlls/d3dx9_36.dll differ diff --git a/lib64/wine/fakedlls/d3dx9_37.dll b/lib64/wine/fakedlls/d3dx9_37.dll new file mode 100644 index 0000000..1a69e0c Binary files /dev/null and b/lib64/wine/fakedlls/d3dx9_37.dll differ diff --git a/lib64/wine/fakedlls/d3dx9_38.dll b/lib64/wine/fakedlls/d3dx9_38.dll new file mode 100644 index 0000000..80e646b Binary files /dev/null and b/lib64/wine/fakedlls/d3dx9_38.dll differ diff --git a/lib64/wine/fakedlls/d3dx9_39.dll b/lib64/wine/fakedlls/d3dx9_39.dll new file mode 100644 index 0000000..ae69ef6 Binary files /dev/null and b/lib64/wine/fakedlls/d3dx9_39.dll differ diff --git a/lib64/wine/fakedlls/d3dx9_40.dll b/lib64/wine/fakedlls/d3dx9_40.dll new file mode 100644 index 0000000..ee07259 Binary files /dev/null and b/lib64/wine/fakedlls/d3dx9_40.dll differ diff --git a/lib64/wine/fakedlls/d3dx9_41.dll b/lib64/wine/fakedlls/d3dx9_41.dll new file mode 100644 index 0000000..194adad Binary files /dev/null and b/lib64/wine/fakedlls/d3dx9_41.dll differ diff --git a/lib64/wine/fakedlls/d3dx9_42.dll b/lib64/wine/fakedlls/d3dx9_42.dll new file mode 100644 index 0000000..7f4ec68 Binary files /dev/null and b/lib64/wine/fakedlls/d3dx9_42.dll differ diff --git a/lib64/wine/fakedlls/d3dx9_43.dll b/lib64/wine/fakedlls/d3dx9_43.dll new file mode 100644 index 0000000..62df043 Binary files /dev/null and b/lib64/wine/fakedlls/d3dx9_43.dll differ diff --git a/lib64/wine/fakedlls/d3dxof.dll b/lib64/wine/fakedlls/d3dxof.dll new file mode 100644 index 0000000..2780b82 Binary files /dev/null and b/lib64/wine/fakedlls/d3dxof.dll differ diff --git a/lib64/wine/fakedlls/davclnt.dll b/lib64/wine/fakedlls/davclnt.dll new file mode 100644 index 0000000..0630f4d Binary files /dev/null and b/lib64/wine/fakedlls/davclnt.dll differ diff --git a/lib64/wine/fakedlls/dbgeng.dll b/lib64/wine/fakedlls/dbgeng.dll new file mode 100644 index 0000000..7e59b89 Binary files /dev/null and b/lib64/wine/fakedlls/dbgeng.dll differ diff --git a/lib64/wine/fakedlls/dbghelp.dll b/lib64/wine/fakedlls/dbghelp.dll new file mode 100644 index 0000000..0a0b8f0 Binary files /dev/null and b/lib64/wine/fakedlls/dbghelp.dll differ diff --git a/lib64/wine/fakedlls/dciman32.dll b/lib64/wine/fakedlls/dciman32.dll new file mode 100644 index 0000000..5411e14 Binary files /dev/null and b/lib64/wine/fakedlls/dciman32.dll differ diff --git a/lib64/wine/fakedlls/ddraw.dll b/lib64/wine/fakedlls/ddraw.dll new file mode 100644 index 0000000..7a75624 Binary files /dev/null and b/lib64/wine/fakedlls/ddraw.dll differ diff --git a/lib64/wine/fakedlls/ddrawex.dll b/lib64/wine/fakedlls/ddrawex.dll new file mode 100644 index 0000000..359f405 Binary files /dev/null and b/lib64/wine/fakedlls/ddrawex.dll differ diff --git a/lib64/wine/fakedlls/devenum.dll b/lib64/wine/fakedlls/devenum.dll new file mode 100644 index 0000000..ece0493 Binary files /dev/null and b/lib64/wine/fakedlls/devenum.dll differ diff --git a/lib64/wine/fakedlls/dhcpcsvc.dll b/lib64/wine/fakedlls/dhcpcsvc.dll new file mode 100644 index 0000000..e2a1131 Binary files /dev/null and b/lib64/wine/fakedlls/dhcpcsvc.dll differ diff --git a/lib64/wine/fakedlls/dhtmled.ocx b/lib64/wine/fakedlls/dhtmled.ocx new file mode 100644 index 0000000..77caca5 Binary files /dev/null and b/lib64/wine/fakedlls/dhtmled.ocx differ diff --git a/lib64/wine/fakedlls/difxapi.dll b/lib64/wine/fakedlls/difxapi.dll new file mode 100644 index 0000000..4f99377 Binary files /dev/null and b/lib64/wine/fakedlls/difxapi.dll differ diff --git a/lib64/wine/fakedlls/dinput.dll b/lib64/wine/fakedlls/dinput.dll new file mode 100644 index 0000000..f99afff Binary files /dev/null and b/lib64/wine/fakedlls/dinput.dll differ diff --git a/lib64/wine/fakedlls/dinput8.dll b/lib64/wine/fakedlls/dinput8.dll new file mode 100644 index 0000000..d80ae55 Binary files /dev/null and b/lib64/wine/fakedlls/dinput8.dll differ diff --git a/lib64/wine/fakedlls/dism.exe b/lib64/wine/fakedlls/dism.exe new file mode 100644 index 0000000..004b6a5 Binary files /dev/null and b/lib64/wine/fakedlls/dism.exe differ diff --git a/lib64/wine/fakedlls/dispex.dll b/lib64/wine/fakedlls/dispex.dll new file mode 100644 index 0000000..704ab75 Binary files /dev/null and b/lib64/wine/fakedlls/dispex.dll differ diff --git a/lib64/wine/fakedlls/dmband.dll b/lib64/wine/fakedlls/dmband.dll new file mode 100644 index 0000000..18e757d Binary files /dev/null and b/lib64/wine/fakedlls/dmband.dll differ diff --git a/lib64/wine/fakedlls/dmcompos.dll b/lib64/wine/fakedlls/dmcompos.dll new file mode 100644 index 0000000..b3a2c07 Binary files /dev/null and b/lib64/wine/fakedlls/dmcompos.dll differ diff --git a/lib64/wine/fakedlls/dmime.dll b/lib64/wine/fakedlls/dmime.dll new file mode 100644 index 0000000..9e28d47 Binary files /dev/null and b/lib64/wine/fakedlls/dmime.dll differ diff --git a/lib64/wine/fakedlls/dmloader.dll b/lib64/wine/fakedlls/dmloader.dll new file mode 100644 index 0000000..c26c53b Binary files /dev/null and b/lib64/wine/fakedlls/dmloader.dll differ diff --git a/lib64/wine/fakedlls/dmscript.dll b/lib64/wine/fakedlls/dmscript.dll new file mode 100644 index 0000000..a5f88bb Binary files /dev/null and b/lib64/wine/fakedlls/dmscript.dll differ diff --git a/lib64/wine/fakedlls/dmstyle.dll b/lib64/wine/fakedlls/dmstyle.dll new file mode 100644 index 0000000..c3e733e Binary files /dev/null and b/lib64/wine/fakedlls/dmstyle.dll differ diff --git a/lib64/wine/fakedlls/dmsynth.dll b/lib64/wine/fakedlls/dmsynth.dll new file mode 100644 index 0000000..e3b537f Binary files /dev/null and b/lib64/wine/fakedlls/dmsynth.dll differ diff --git a/lib64/wine/fakedlls/dmusic.dll b/lib64/wine/fakedlls/dmusic.dll new file mode 100644 index 0000000..c2229ea Binary files /dev/null and b/lib64/wine/fakedlls/dmusic.dll differ diff --git a/lib64/wine/fakedlls/dmusic32.dll b/lib64/wine/fakedlls/dmusic32.dll new file mode 100644 index 0000000..96b8656 Binary files /dev/null and b/lib64/wine/fakedlls/dmusic32.dll differ diff --git a/lib64/wine/fakedlls/dnsapi.dll b/lib64/wine/fakedlls/dnsapi.dll new file mode 100644 index 0000000..20c5a2e Binary files /dev/null and b/lib64/wine/fakedlls/dnsapi.dll differ diff --git a/lib64/wine/fakedlls/dplay.dll b/lib64/wine/fakedlls/dplay.dll new file mode 100644 index 0000000..ff2861e Binary files /dev/null and b/lib64/wine/fakedlls/dplay.dll differ diff --git a/lib64/wine/fakedlls/dplayx.dll b/lib64/wine/fakedlls/dplayx.dll new file mode 100644 index 0000000..0bf1807 Binary files /dev/null and b/lib64/wine/fakedlls/dplayx.dll differ diff --git a/lib64/wine/fakedlls/dpnaddr.dll b/lib64/wine/fakedlls/dpnaddr.dll new file mode 100644 index 0000000..d7059d7 Binary files /dev/null and b/lib64/wine/fakedlls/dpnaddr.dll differ diff --git a/lib64/wine/fakedlls/dpnet.dll b/lib64/wine/fakedlls/dpnet.dll new file mode 100644 index 0000000..7adbcc3 Binary files /dev/null and b/lib64/wine/fakedlls/dpnet.dll differ diff --git a/lib64/wine/fakedlls/dpnhpast.dll b/lib64/wine/fakedlls/dpnhpast.dll new file mode 100644 index 0000000..7f1f8b8 Binary files /dev/null and b/lib64/wine/fakedlls/dpnhpast.dll differ diff --git a/lib64/wine/fakedlls/dpnlobby.dll b/lib64/wine/fakedlls/dpnlobby.dll new file mode 100644 index 0000000..1a38865 Binary files /dev/null and b/lib64/wine/fakedlls/dpnlobby.dll differ diff --git a/lib64/wine/fakedlls/dpnsvr.exe b/lib64/wine/fakedlls/dpnsvr.exe new file mode 100644 index 0000000..004b6a5 Binary files /dev/null and b/lib64/wine/fakedlls/dpnsvr.exe differ diff --git a/lib64/wine/fakedlls/dpvoice.dll b/lib64/wine/fakedlls/dpvoice.dll new file mode 100644 index 0000000..14ef0f1 Binary files /dev/null and b/lib64/wine/fakedlls/dpvoice.dll differ diff --git a/lib64/wine/fakedlls/dpwsockx.dll b/lib64/wine/fakedlls/dpwsockx.dll new file mode 100644 index 0000000..dcdc68f Binary files /dev/null and b/lib64/wine/fakedlls/dpwsockx.dll differ diff --git a/lib64/wine/fakedlls/drmclien.dll b/lib64/wine/fakedlls/drmclien.dll new file mode 100644 index 0000000..84c5e37 Binary files /dev/null and b/lib64/wine/fakedlls/drmclien.dll differ diff --git a/lib64/wine/fakedlls/dsound.dll b/lib64/wine/fakedlls/dsound.dll new file mode 100644 index 0000000..5f8986f Binary files /dev/null and b/lib64/wine/fakedlls/dsound.dll differ diff --git a/lib64/wine/fakedlls/dsquery.dll b/lib64/wine/fakedlls/dsquery.dll new file mode 100644 index 0000000..941869a Binary files /dev/null and b/lib64/wine/fakedlls/dsquery.dll differ diff --git a/lib64/wine/fakedlls/dssenh.dll b/lib64/wine/fakedlls/dssenh.dll new file mode 100644 index 0000000..252ee3a Binary files /dev/null and b/lib64/wine/fakedlls/dssenh.dll differ diff --git a/lib64/wine/fakedlls/dswave.dll b/lib64/wine/fakedlls/dswave.dll new file mode 100644 index 0000000..9e091d8 Binary files /dev/null and b/lib64/wine/fakedlls/dswave.dll differ diff --git a/lib64/wine/fakedlls/dwmapi.dll b/lib64/wine/fakedlls/dwmapi.dll new file mode 100644 index 0000000..23de316 Binary files /dev/null and b/lib64/wine/fakedlls/dwmapi.dll differ diff --git a/lib64/wine/fakedlls/dwrite.dll b/lib64/wine/fakedlls/dwrite.dll new file mode 100644 index 0000000..50ff368 Binary files /dev/null and b/lib64/wine/fakedlls/dwrite.dll differ diff --git a/lib64/wine/fakedlls/dx8vb.dll b/lib64/wine/fakedlls/dx8vb.dll new file mode 100644 index 0000000..7317187 Binary files /dev/null and b/lib64/wine/fakedlls/dx8vb.dll differ diff --git a/lib64/wine/fakedlls/dxdiag.exe b/lib64/wine/fakedlls/dxdiag.exe new file mode 100644 index 0000000..7fca403 Binary files /dev/null and b/lib64/wine/fakedlls/dxdiag.exe differ diff --git a/lib64/wine/fakedlls/dxdiagn.dll b/lib64/wine/fakedlls/dxdiagn.dll new file mode 100644 index 0000000..eeefbbc Binary files /dev/null and b/lib64/wine/fakedlls/dxdiagn.dll differ diff --git a/lib64/wine/fakedlls/dxgi.dll b/lib64/wine/fakedlls/dxgi.dll new file mode 100644 index 0000000..7b2bda9 Binary files /dev/null and b/lib64/wine/fakedlls/dxgi.dll differ diff --git a/lib64/wine/fakedlls/dxgkrnl.sys b/lib64/wine/fakedlls/dxgkrnl.sys new file mode 100644 index 0000000..d379585 Binary files /dev/null and b/lib64/wine/fakedlls/dxgkrnl.sys differ diff --git a/lib64/wine/fakedlls/dxgmms1.sys b/lib64/wine/fakedlls/dxgmms1.sys new file mode 100644 index 0000000..d379585 Binary files /dev/null and b/lib64/wine/fakedlls/dxgmms1.sys differ diff --git a/lib64/wine/fakedlls/dxva2.dll b/lib64/wine/fakedlls/dxva2.dll new file mode 100644 index 0000000..34cc6ab Binary files /dev/null and b/lib64/wine/fakedlls/dxva2.dll differ diff --git a/lib64/wine/fakedlls/eject.exe b/lib64/wine/fakedlls/eject.exe new file mode 100644 index 0000000..004b6a5 Binary files /dev/null and b/lib64/wine/fakedlls/eject.exe differ diff --git a/lib64/wine/fakedlls/esent.dll b/lib64/wine/fakedlls/esent.dll new file mode 100644 index 0000000..79f2db1 Binary files /dev/null and b/lib64/wine/fakedlls/esent.dll differ diff --git a/lib64/wine/fakedlls/evr.dll b/lib64/wine/fakedlls/evr.dll new file mode 100644 index 0000000..d13e181 Binary files /dev/null and b/lib64/wine/fakedlls/evr.dll differ diff --git a/lib64/wine/fakedlls/expand.exe b/lib64/wine/fakedlls/expand.exe new file mode 100644 index 0000000..004b6a5 Binary files /dev/null and b/lib64/wine/fakedlls/expand.exe differ diff --git a/lib64/wine/fakedlls/explorer.exe b/lib64/wine/fakedlls/explorer.exe new file mode 100644 index 0000000..cada990 Binary files /dev/null and b/lib64/wine/fakedlls/explorer.exe differ diff --git a/lib64/wine/fakedlls/explorerframe.dll b/lib64/wine/fakedlls/explorerframe.dll new file mode 100644 index 0000000..1f47687 Binary files /dev/null and b/lib64/wine/fakedlls/explorerframe.dll differ diff --git a/lib64/wine/fakedlls/ext-ms-win-appmodel-usercontext-l1-1-0.dll b/lib64/wine/fakedlls/ext-ms-win-appmodel-usercontext-l1-1-0.dll new file mode 100644 index 0000000..8dd542e Binary files /dev/null and b/lib64/wine/fakedlls/ext-ms-win-appmodel-usercontext-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/ext-ms-win-authz-context-l1-1-0.dll b/lib64/wine/fakedlls/ext-ms-win-authz-context-l1-1-0.dll new file mode 100644 index 0000000..cd725d0 Binary files /dev/null and b/lib64/wine/fakedlls/ext-ms-win-authz-context-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/ext-ms-win-domainjoin-netjoin-l1-1-0.dll b/lib64/wine/fakedlls/ext-ms-win-domainjoin-netjoin-l1-1-0.dll new file mode 100644 index 0000000..d5b13cd Binary files /dev/null and b/lib64/wine/fakedlls/ext-ms-win-domainjoin-netjoin-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/ext-ms-win-dwmapi-ext-l1-1-0.dll b/lib64/wine/fakedlls/ext-ms-win-dwmapi-ext-l1-1-0.dll new file mode 100644 index 0000000..fa98803 Binary files /dev/null and b/lib64/wine/fakedlls/ext-ms-win-dwmapi-ext-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/ext-ms-win-gdi-dc-create-l1-1-0.dll b/lib64/wine/fakedlls/ext-ms-win-gdi-dc-create-l1-1-0.dll new file mode 100644 index 0000000..a2a4221 Binary files /dev/null and b/lib64/wine/fakedlls/ext-ms-win-gdi-dc-create-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/ext-ms-win-gdi-dc-create-l1-1-1.dll b/lib64/wine/fakedlls/ext-ms-win-gdi-dc-create-l1-1-1.dll new file mode 100644 index 0000000..7e22c52 Binary files /dev/null and b/lib64/wine/fakedlls/ext-ms-win-gdi-dc-create-l1-1-1.dll differ diff --git a/lib64/wine/fakedlls/ext-ms-win-gdi-dc-l1-2-0.dll b/lib64/wine/fakedlls/ext-ms-win-gdi-dc-l1-2-0.dll new file mode 100644 index 0000000..580ac48 Binary files /dev/null and b/lib64/wine/fakedlls/ext-ms-win-gdi-dc-l1-2-0.dll differ diff --git a/lib64/wine/fakedlls/ext-ms-win-gdi-devcaps-l1-1-0.dll b/lib64/wine/fakedlls/ext-ms-win-gdi-devcaps-l1-1-0.dll new file mode 100644 index 0000000..3d36bbb Binary files /dev/null and b/lib64/wine/fakedlls/ext-ms-win-gdi-devcaps-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/ext-ms-win-gdi-draw-l1-1-0.dll b/lib64/wine/fakedlls/ext-ms-win-gdi-draw-l1-1-0.dll new file mode 100644 index 0000000..4457f11 Binary files /dev/null and b/lib64/wine/fakedlls/ext-ms-win-gdi-draw-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/ext-ms-win-gdi-draw-l1-1-1.dll b/lib64/wine/fakedlls/ext-ms-win-gdi-draw-l1-1-1.dll new file mode 100644 index 0000000..a8ffa1a Binary files /dev/null and b/lib64/wine/fakedlls/ext-ms-win-gdi-draw-l1-1-1.dll differ diff --git a/lib64/wine/fakedlls/ext-ms-win-gdi-font-l1-1-0.dll b/lib64/wine/fakedlls/ext-ms-win-gdi-font-l1-1-0.dll new file mode 100644 index 0000000..a2ffb66 Binary files /dev/null and b/lib64/wine/fakedlls/ext-ms-win-gdi-font-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/ext-ms-win-gdi-font-l1-1-1.dll b/lib64/wine/fakedlls/ext-ms-win-gdi-font-l1-1-1.dll new file mode 100644 index 0000000..656e2c1 Binary files /dev/null and b/lib64/wine/fakedlls/ext-ms-win-gdi-font-l1-1-1.dll differ diff --git a/lib64/wine/fakedlls/ext-ms-win-gdi-render-l1-1-0.dll b/lib64/wine/fakedlls/ext-ms-win-gdi-render-l1-1-0.dll new file mode 100644 index 0000000..3ed0bc3 Binary files /dev/null and b/lib64/wine/fakedlls/ext-ms-win-gdi-render-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/ext-ms-win-kernel32-package-current-l1-1-0.dll b/lib64/wine/fakedlls/ext-ms-win-kernel32-package-current-l1-1-0.dll new file mode 100644 index 0000000..4abe442 Binary files /dev/null and b/lib64/wine/fakedlls/ext-ms-win-kernel32-package-current-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/ext-ms-win-kernel32-package-l1-1-1.dll b/lib64/wine/fakedlls/ext-ms-win-kernel32-package-l1-1-1.dll new file mode 100644 index 0000000..dc7701e Binary files /dev/null and b/lib64/wine/fakedlls/ext-ms-win-kernel32-package-l1-1-1.dll differ diff --git a/lib64/wine/fakedlls/ext-ms-win-ntuser-dialogbox-l1-1-0.dll b/lib64/wine/fakedlls/ext-ms-win-ntuser-dialogbox-l1-1-0.dll new file mode 100644 index 0000000..52094c7 Binary files /dev/null and b/lib64/wine/fakedlls/ext-ms-win-ntuser-dialogbox-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/ext-ms-win-ntuser-draw-l1-1-0.dll b/lib64/wine/fakedlls/ext-ms-win-ntuser-draw-l1-1-0.dll new file mode 100644 index 0000000..9cad3e4 Binary files /dev/null and b/lib64/wine/fakedlls/ext-ms-win-ntuser-draw-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/ext-ms-win-ntuser-gui-l1-1-0.dll b/lib64/wine/fakedlls/ext-ms-win-ntuser-gui-l1-1-0.dll new file mode 100644 index 0000000..058a9a2 Binary files /dev/null and b/lib64/wine/fakedlls/ext-ms-win-ntuser-gui-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/ext-ms-win-ntuser-gui-l1-3-0.dll b/lib64/wine/fakedlls/ext-ms-win-ntuser-gui-l1-3-0.dll new file mode 100644 index 0000000..0d348b9 Binary files /dev/null and b/lib64/wine/fakedlls/ext-ms-win-ntuser-gui-l1-3-0.dll differ diff --git a/lib64/wine/fakedlls/ext-ms-win-ntuser-keyboard-l1-3-0.dll b/lib64/wine/fakedlls/ext-ms-win-ntuser-keyboard-l1-3-0.dll new file mode 100644 index 0000000..d67a4cd Binary files /dev/null and b/lib64/wine/fakedlls/ext-ms-win-ntuser-keyboard-l1-3-0.dll differ diff --git a/lib64/wine/fakedlls/ext-ms-win-ntuser-message-l1-1-0.dll b/lib64/wine/fakedlls/ext-ms-win-ntuser-message-l1-1-0.dll new file mode 100644 index 0000000..5935022 Binary files /dev/null and b/lib64/wine/fakedlls/ext-ms-win-ntuser-message-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/ext-ms-win-ntuser-message-l1-1-1.dll b/lib64/wine/fakedlls/ext-ms-win-ntuser-message-l1-1-1.dll new file mode 100644 index 0000000..989d994 Binary files /dev/null and b/lib64/wine/fakedlls/ext-ms-win-ntuser-message-l1-1-1.dll differ diff --git a/lib64/wine/fakedlls/ext-ms-win-ntuser-misc-l1-1-0.dll b/lib64/wine/fakedlls/ext-ms-win-ntuser-misc-l1-1-0.dll new file mode 100644 index 0000000..5b0da3d Binary files /dev/null and b/lib64/wine/fakedlls/ext-ms-win-ntuser-misc-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/ext-ms-win-ntuser-misc-l1-2-0.dll b/lib64/wine/fakedlls/ext-ms-win-ntuser-misc-l1-2-0.dll new file mode 100644 index 0000000..b7f8fe0 Binary files /dev/null and b/lib64/wine/fakedlls/ext-ms-win-ntuser-misc-l1-2-0.dll differ diff --git a/lib64/wine/fakedlls/ext-ms-win-ntuser-misc-l1-5-1.dll b/lib64/wine/fakedlls/ext-ms-win-ntuser-misc-l1-5-1.dll new file mode 100644 index 0000000..428e2e3 Binary files /dev/null and b/lib64/wine/fakedlls/ext-ms-win-ntuser-misc-l1-5-1.dll differ diff --git a/lib64/wine/fakedlls/ext-ms-win-ntuser-mouse-l1-1-0.dll b/lib64/wine/fakedlls/ext-ms-win-ntuser-mouse-l1-1-0.dll new file mode 100644 index 0000000..7b8fa39 Binary files /dev/null and b/lib64/wine/fakedlls/ext-ms-win-ntuser-mouse-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/ext-ms-win-ntuser-private-l1-1-1.dll b/lib64/wine/fakedlls/ext-ms-win-ntuser-private-l1-1-1.dll new file mode 100644 index 0000000..253e72d Binary files /dev/null and b/lib64/wine/fakedlls/ext-ms-win-ntuser-private-l1-1-1.dll differ diff --git a/lib64/wine/fakedlls/ext-ms-win-ntuser-private-l1-3-1.dll b/lib64/wine/fakedlls/ext-ms-win-ntuser-private-l1-3-1.dll new file mode 100644 index 0000000..0f21a9e Binary files /dev/null and b/lib64/wine/fakedlls/ext-ms-win-ntuser-private-l1-3-1.dll differ diff --git a/lib64/wine/fakedlls/ext-ms-win-ntuser-rectangle-ext-l1-1-0.dll b/lib64/wine/fakedlls/ext-ms-win-ntuser-rectangle-ext-l1-1-0.dll new file mode 100644 index 0000000..b6c0245 Binary files /dev/null and b/lib64/wine/fakedlls/ext-ms-win-ntuser-rectangle-ext-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/ext-ms-win-ntuser-uicontext-ext-l1-1-0.dll b/lib64/wine/fakedlls/ext-ms-win-ntuser-uicontext-ext-l1-1-0.dll new file mode 100644 index 0000000..c0d583a Binary files /dev/null and b/lib64/wine/fakedlls/ext-ms-win-ntuser-uicontext-ext-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/ext-ms-win-ntuser-window-l1-1-0.dll b/lib64/wine/fakedlls/ext-ms-win-ntuser-window-l1-1-0.dll new file mode 100644 index 0000000..4e5781f Binary files /dev/null and b/lib64/wine/fakedlls/ext-ms-win-ntuser-window-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/ext-ms-win-ntuser-window-l1-1-1.dll b/lib64/wine/fakedlls/ext-ms-win-ntuser-window-l1-1-1.dll new file mode 100644 index 0000000..4e5f139 Binary files /dev/null and b/lib64/wine/fakedlls/ext-ms-win-ntuser-window-l1-1-1.dll differ diff --git a/lib64/wine/fakedlls/ext-ms-win-ntuser-window-l1-1-4.dll b/lib64/wine/fakedlls/ext-ms-win-ntuser-window-l1-1-4.dll new file mode 100644 index 0000000..f30f752 Binary files /dev/null and b/lib64/wine/fakedlls/ext-ms-win-ntuser-window-l1-1-4.dll differ diff --git a/lib64/wine/fakedlls/ext-ms-win-ntuser-windowclass-l1-1-0.dll b/lib64/wine/fakedlls/ext-ms-win-ntuser-windowclass-l1-1-0.dll new file mode 100644 index 0000000..78ab404 Binary files /dev/null and b/lib64/wine/fakedlls/ext-ms-win-ntuser-windowclass-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/ext-ms-win-ntuser-windowclass-l1-1-1.dll b/lib64/wine/fakedlls/ext-ms-win-ntuser-windowclass-l1-1-1.dll new file mode 100644 index 0000000..771d1a2 Binary files /dev/null and b/lib64/wine/fakedlls/ext-ms-win-ntuser-windowclass-l1-1-1.dll differ diff --git a/lib64/wine/fakedlls/ext-ms-win-oleacc-l1-1-0.dll b/lib64/wine/fakedlls/ext-ms-win-oleacc-l1-1-0.dll new file mode 100644 index 0000000..1fbe43f Binary files /dev/null and b/lib64/wine/fakedlls/ext-ms-win-oleacc-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/ext-ms-win-ras-rasapi32-l1-1-0.dll b/lib64/wine/fakedlls/ext-ms-win-ras-rasapi32-l1-1-0.dll new file mode 100644 index 0000000..8042a9d Binary files /dev/null and b/lib64/wine/fakedlls/ext-ms-win-ras-rasapi32-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/ext-ms-win-rtcore-gdi-devcaps-l1-1-0.dll b/lib64/wine/fakedlls/ext-ms-win-rtcore-gdi-devcaps-l1-1-0.dll new file mode 100644 index 0000000..c1f962a Binary files /dev/null and b/lib64/wine/fakedlls/ext-ms-win-rtcore-gdi-devcaps-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/ext-ms-win-rtcore-gdi-object-l1-1-0.dll b/lib64/wine/fakedlls/ext-ms-win-rtcore-gdi-object-l1-1-0.dll new file mode 100644 index 0000000..bff4f60 Binary files /dev/null and b/lib64/wine/fakedlls/ext-ms-win-rtcore-gdi-object-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/ext-ms-win-rtcore-gdi-rgn-l1-1-0.dll b/lib64/wine/fakedlls/ext-ms-win-rtcore-gdi-rgn-l1-1-0.dll new file mode 100644 index 0000000..b9fdfed Binary files /dev/null and b/lib64/wine/fakedlls/ext-ms-win-rtcore-gdi-rgn-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/ext-ms-win-rtcore-ntuser-cursor-l1-1-0.dll b/lib64/wine/fakedlls/ext-ms-win-rtcore-ntuser-cursor-l1-1-0.dll new file mode 100644 index 0000000..33474e0 Binary files /dev/null and b/lib64/wine/fakedlls/ext-ms-win-rtcore-ntuser-cursor-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/ext-ms-win-rtcore-ntuser-dc-access-l1-1-0.dll b/lib64/wine/fakedlls/ext-ms-win-rtcore-ntuser-dc-access-l1-1-0.dll new file mode 100644 index 0000000..904bfa3 Binary files /dev/null and b/lib64/wine/fakedlls/ext-ms-win-rtcore-ntuser-dc-access-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/ext-ms-win-rtcore-ntuser-dpi-l1-1-0.dll b/lib64/wine/fakedlls/ext-ms-win-rtcore-ntuser-dpi-l1-1-0.dll new file mode 100644 index 0000000..cf9992c Binary files /dev/null and b/lib64/wine/fakedlls/ext-ms-win-rtcore-ntuser-dpi-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/ext-ms-win-rtcore-ntuser-dpi-l1-2-0.dll b/lib64/wine/fakedlls/ext-ms-win-rtcore-ntuser-dpi-l1-2-0.dll new file mode 100644 index 0000000..b871694 Binary files /dev/null and b/lib64/wine/fakedlls/ext-ms-win-rtcore-ntuser-dpi-l1-2-0.dll differ diff --git a/lib64/wine/fakedlls/ext-ms-win-rtcore-ntuser-rawinput-l1-1-0.dll b/lib64/wine/fakedlls/ext-ms-win-rtcore-ntuser-rawinput-l1-1-0.dll new file mode 100644 index 0000000..a399819 Binary files /dev/null and b/lib64/wine/fakedlls/ext-ms-win-rtcore-ntuser-rawinput-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/ext-ms-win-rtcore-ntuser-syscolors-l1-1-0.dll b/lib64/wine/fakedlls/ext-ms-win-rtcore-ntuser-syscolors-l1-1-0.dll new file mode 100644 index 0000000..3f09bf9 Binary files /dev/null and b/lib64/wine/fakedlls/ext-ms-win-rtcore-ntuser-syscolors-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/ext-ms-win-rtcore-ntuser-sysparams-l1-1-0.dll b/lib64/wine/fakedlls/ext-ms-win-rtcore-ntuser-sysparams-l1-1-0.dll new file mode 100644 index 0000000..c9bec63 Binary files /dev/null and b/lib64/wine/fakedlls/ext-ms-win-rtcore-ntuser-sysparams-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/ext-ms-win-security-credui-l1-1-0.dll b/lib64/wine/fakedlls/ext-ms-win-security-credui-l1-1-0.dll new file mode 100644 index 0000000..11c0757 Binary files /dev/null and b/lib64/wine/fakedlls/ext-ms-win-security-credui-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/ext-ms-win-security-cryptui-l1-1-0.dll b/lib64/wine/fakedlls/ext-ms-win-security-cryptui-l1-1-0.dll new file mode 100644 index 0000000..5f4b009 Binary files /dev/null and b/lib64/wine/fakedlls/ext-ms-win-security-cryptui-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/ext-ms-win-uxtheme-themes-l1-1-0.dll b/lib64/wine/fakedlls/ext-ms-win-uxtheme-themes-l1-1-0.dll new file mode 100644 index 0000000..9ba687f Binary files /dev/null and b/lib64/wine/fakedlls/ext-ms-win-uxtheme-themes-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/ext-ms-win-xaml-pal-l1-1-0.dll b/lib64/wine/fakedlls/ext-ms-win-xaml-pal-l1-1-0.dll new file mode 100644 index 0000000..caf6ecc Binary files /dev/null and b/lib64/wine/fakedlls/ext-ms-win-xaml-pal-l1-1-0.dll differ diff --git a/lib64/wine/fakedlls/extrac32.exe b/lib64/wine/fakedlls/extrac32.exe new file mode 100644 index 0000000..e264285 Binary files /dev/null and b/lib64/wine/fakedlls/extrac32.exe differ diff --git a/lib64/wine/fakedlls/faultrep.dll b/lib64/wine/fakedlls/faultrep.dll new file mode 100644 index 0000000..1ad5709 Binary files /dev/null and b/lib64/wine/fakedlls/faultrep.dll differ diff --git a/lib64/wine/fakedlls/fc.exe b/lib64/wine/fakedlls/fc.exe new file mode 100644 index 0000000..004b6a5 Binary files /dev/null and b/lib64/wine/fakedlls/fc.exe differ diff --git a/lib64/wine/fakedlls/feclient.dll b/lib64/wine/fakedlls/feclient.dll new file mode 100644 index 0000000..4167b7e Binary files /dev/null and b/lib64/wine/fakedlls/feclient.dll differ diff --git a/lib64/wine/fakedlls/find.exe b/lib64/wine/fakedlls/find.exe new file mode 100644 index 0000000..004b6a5 Binary files /dev/null and b/lib64/wine/fakedlls/find.exe differ diff --git a/lib64/wine/fakedlls/findstr.exe b/lib64/wine/fakedlls/findstr.exe new file mode 100644 index 0000000..004b6a5 Binary files /dev/null and b/lib64/wine/fakedlls/findstr.exe differ diff --git a/lib64/wine/fakedlls/fltlib.dll b/lib64/wine/fakedlls/fltlib.dll new file mode 100644 index 0000000..9f9efc6 Binary files /dev/null and b/lib64/wine/fakedlls/fltlib.dll differ diff --git a/lib64/wine/fakedlls/fltmgr.sys b/lib64/wine/fakedlls/fltmgr.sys new file mode 100644 index 0000000..d379585 Binary files /dev/null and b/lib64/wine/fakedlls/fltmgr.sys differ diff --git a/lib64/wine/fakedlls/fntcache.dll b/lib64/wine/fakedlls/fntcache.dll new file mode 100644 index 0000000..041caa3 Binary files /dev/null and b/lib64/wine/fakedlls/fntcache.dll differ diff --git a/lib64/wine/fakedlls/fontsub.dll b/lib64/wine/fakedlls/fontsub.dll new file mode 100644 index 0000000..9c6932a Binary files /dev/null and b/lib64/wine/fakedlls/fontsub.dll differ diff --git a/lib64/wine/fakedlls/fsutil.exe b/lib64/wine/fakedlls/fsutil.exe new file mode 100644 index 0000000..4a7a95f Binary files /dev/null and b/lib64/wine/fakedlls/fsutil.exe differ diff --git a/lib64/wine/fakedlls/fusion.dll b/lib64/wine/fakedlls/fusion.dll new file mode 100644 index 0000000..5b9c8ec Binary files /dev/null and b/lib64/wine/fakedlls/fusion.dll differ diff --git a/lib64/wine/fakedlls/fwpuclnt.dll b/lib64/wine/fakedlls/fwpuclnt.dll new file mode 100644 index 0000000..bdbcc22 Binary files /dev/null and b/lib64/wine/fakedlls/fwpuclnt.dll differ diff --git a/lib64/wine/fakedlls/gameux.dll b/lib64/wine/fakedlls/gameux.dll new file mode 100644 index 0000000..c3a7651 Binary files /dev/null and b/lib64/wine/fakedlls/gameux.dll differ diff --git a/lib64/wine/fakedlls/gdi32.dll b/lib64/wine/fakedlls/gdi32.dll new file mode 100644 index 0000000..9de7a3b Binary files /dev/null and b/lib64/wine/fakedlls/gdi32.dll differ diff --git a/lib64/wine/fakedlls/gdiplus.dll b/lib64/wine/fakedlls/gdiplus.dll new file mode 100644 index 0000000..87ff8b3 Binary files /dev/null and b/lib64/wine/fakedlls/gdiplus.dll differ diff --git a/lib64/wine/fakedlls/glu32.dll b/lib64/wine/fakedlls/glu32.dll new file mode 100644 index 0000000..0c4e351 Binary files /dev/null and b/lib64/wine/fakedlls/glu32.dll differ diff --git a/lib64/wine/fakedlls/gphoto2.ds b/lib64/wine/fakedlls/gphoto2.ds new file mode 100644 index 0000000..fee1a3e Binary files /dev/null and b/lib64/wine/fakedlls/gphoto2.ds differ diff --git a/lib64/wine/fakedlls/gpkcsp.dll b/lib64/wine/fakedlls/gpkcsp.dll new file mode 100644 index 0000000..111883f Binary files /dev/null and b/lib64/wine/fakedlls/gpkcsp.dll differ diff --git a/lib64/wine/fakedlls/hal.dll b/lib64/wine/fakedlls/hal.dll new file mode 100644 index 0000000..dbbfe0f Binary files /dev/null and b/lib64/wine/fakedlls/hal.dll differ diff --git a/lib64/wine/fakedlls/hh.exe b/lib64/wine/fakedlls/hh.exe new file mode 100644 index 0000000..b3bcea7 Binary files /dev/null and b/lib64/wine/fakedlls/hh.exe differ diff --git a/lib64/wine/fakedlls/hhctrl.ocx b/lib64/wine/fakedlls/hhctrl.ocx new file mode 100644 index 0000000..4d6068a Binary files /dev/null and b/lib64/wine/fakedlls/hhctrl.ocx differ diff --git a/lib64/wine/fakedlls/hid.dll b/lib64/wine/fakedlls/hid.dll new file mode 100644 index 0000000..51ea15f Binary files /dev/null and b/lib64/wine/fakedlls/hid.dll differ diff --git a/lib64/wine/fakedlls/hidclass.sys b/lib64/wine/fakedlls/hidclass.sys new file mode 100644 index 0000000..f032722 Binary files /dev/null and b/lib64/wine/fakedlls/hidclass.sys differ diff --git a/lib64/wine/fakedlls/hlink.dll b/lib64/wine/fakedlls/hlink.dll new file mode 100644 index 0000000..7ee2d4a Binary files /dev/null and b/lib64/wine/fakedlls/hlink.dll differ diff --git a/lib64/wine/fakedlls/hnetcfg.dll b/lib64/wine/fakedlls/hnetcfg.dll new file mode 100644 index 0000000..12a853e Binary files /dev/null and b/lib64/wine/fakedlls/hnetcfg.dll differ diff --git a/lib64/wine/fakedlls/hostname.exe b/lib64/wine/fakedlls/hostname.exe new file mode 100644 index 0000000..9608459 Binary files /dev/null and b/lib64/wine/fakedlls/hostname.exe differ diff --git a/lib64/wine/fakedlls/httpapi.dll b/lib64/wine/fakedlls/httpapi.dll new file mode 100644 index 0000000..82d6ae9 Binary files /dev/null and b/lib64/wine/fakedlls/httpapi.dll differ diff --git a/lib64/wine/fakedlls/icacls.exe b/lib64/wine/fakedlls/icacls.exe new file mode 100644 index 0000000..004b6a5 Binary files /dev/null and b/lib64/wine/fakedlls/icacls.exe differ diff --git a/lib64/wine/fakedlls/iccvid.dll b/lib64/wine/fakedlls/iccvid.dll new file mode 100644 index 0000000..ff503cb Binary files /dev/null and b/lib64/wine/fakedlls/iccvid.dll differ diff --git a/lib64/wine/fakedlls/icinfo.exe b/lib64/wine/fakedlls/icinfo.exe new file mode 100644 index 0000000..004b6a5 Binary files /dev/null and b/lib64/wine/fakedlls/icinfo.exe differ diff --git a/lib64/wine/fakedlls/icmp.dll b/lib64/wine/fakedlls/icmp.dll new file mode 100644 index 0000000..bf53820 Binary files /dev/null and b/lib64/wine/fakedlls/icmp.dll differ diff --git a/lib64/wine/fakedlls/ieframe.dll b/lib64/wine/fakedlls/ieframe.dll new file mode 100644 index 0000000..9985367 Binary files /dev/null and b/lib64/wine/fakedlls/ieframe.dll differ diff --git a/lib64/wine/fakedlls/ieproxy.dll b/lib64/wine/fakedlls/ieproxy.dll new file mode 100644 index 0000000..ea27bb4 Binary files /dev/null and b/lib64/wine/fakedlls/ieproxy.dll differ diff --git a/lib64/wine/fakedlls/iertutil.dll b/lib64/wine/fakedlls/iertutil.dll new file mode 100644 index 0000000..4366592 Binary files /dev/null and b/lib64/wine/fakedlls/iertutil.dll differ diff --git a/lib64/wine/fakedlls/iexplore.exe b/lib64/wine/fakedlls/iexplore.exe new file mode 100644 index 0000000..80ce02f Binary files /dev/null and b/lib64/wine/fakedlls/iexplore.exe differ diff --git a/lib64/wine/fakedlls/imaadp32.acm b/lib64/wine/fakedlls/imaadp32.acm new file mode 100644 index 0000000..5da3c41 Binary files /dev/null and b/lib64/wine/fakedlls/imaadp32.acm differ diff --git a/lib64/wine/fakedlls/imagehlp.dll b/lib64/wine/fakedlls/imagehlp.dll new file mode 100644 index 0000000..9ed80cb Binary files /dev/null and b/lib64/wine/fakedlls/imagehlp.dll differ diff --git a/lib64/wine/fakedlls/imm32.dll b/lib64/wine/fakedlls/imm32.dll new file mode 100644 index 0000000..92945b9 Binary files /dev/null and b/lib64/wine/fakedlls/imm32.dll differ diff --git a/lib64/wine/fakedlls/inetcomm.dll b/lib64/wine/fakedlls/inetcomm.dll new file mode 100644 index 0000000..adb6460 Binary files /dev/null and b/lib64/wine/fakedlls/inetcomm.dll differ diff --git a/lib64/wine/fakedlls/inetcpl.cpl b/lib64/wine/fakedlls/inetcpl.cpl new file mode 100644 index 0000000..c05f82d Binary files /dev/null and b/lib64/wine/fakedlls/inetcpl.cpl differ diff --git a/lib64/wine/fakedlls/inetmib1.dll b/lib64/wine/fakedlls/inetmib1.dll new file mode 100644 index 0000000..7ea2331 Binary files /dev/null and b/lib64/wine/fakedlls/inetmib1.dll differ diff --git a/lib64/wine/fakedlls/infosoft.dll b/lib64/wine/fakedlls/infosoft.dll new file mode 100644 index 0000000..30db002 Binary files /dev/null and b/lib64/wine/fakedlls/infosoft.dll differ diff --git a/lib64/wine/fakedlls/initpki.dll b/lib64/wine/fakedlls/initpki.dll new file mode 100644 index 0000000..b2b07f9 Binary files /dev/null and b/lib64/wine/fakedlls/initpki.dll differ diff --git a/lib64/wine/fakedlls/inkobj.dll b/lib64/wine/fakedlls/inkobj.dll new file mode 100644 index 0000000..139a46b Binary files /dev/null and b/lib64/wine/fakedlls/inkobj.dll differ diff --git a/lib64/wine/fakedlls/inseng.dll b/lib64/wine/fakedlls/inseng.dll new file mode 100644 index 0000000..67788a7 Binary files /dev/null and b/lib64/wine/fakedlls/inseng.dll differ diff --git a/lib64/wine/fakedlls/ipconfig.exe b/lib64/wine/fakedlls/ipconfig.exe new file mode 100644 index 0000000..fb4210c Binary files /dev/null and b/lib64/wine/fakedlls/ipconfig.exe differ diff --git a/lib64/wine/fakedlls/iphlpapi.dll b/lib64/wine/fakedlls/iphlpapi.dll new file mode 100644 index 0000000..bb96859 Binary files /dev/null and b/lib64/wine/fakedlls/iphlpapi.dll differ diff --git a/lib64/wine/fakedlls/iprop.dll b/lib64/wine/fakedlls/iprop.dll new file mode 100644 index 0000000..3f5e7fb Binary files /dev/null and b/lib64/wine/fakedlls/iprop.dll differ diff --git a/lib64/wine/fakedlls/irprops.cpl b/lib64/wine/fakedlls/irprops.cpl new file mode 100644 index 0000000..27fda81 Binary files /dev/null and b/lib64/wine/fakedlls/irprops.cpl differ diff --git a/lib64/wine/fakedlls/itircl.dll b/lib64/wine/fakedlls/itircl.dll new file mode 100644 index 0000000..66fe199 Binary files /dev/null and b/lib64/wine/fakedlls/itircl.dll differ diff --git a/lib64/wine/fakedlls/itss.dll b/lib64/wine/fakedlls/itss.dll new file mode 100644 index 0000000..a335756 Binary files /dev/null and b/lib64/wine/fakedlls/itss.dll differ diff --git a/lib64/wine/fakedlls/joy.cpl b/lib64/wine/fakedlls/joy.cpl new file mode 100644 index 0000000..a2388c9 Binary files /dev/null and b/lib64/wine/fakedlls/joy.cpl differ diff --git a/lib64/wine/fakedlls/jscript.dll b/lib64/wine/fakedlls/jscript.dll new file mode 100644 index 0000000..ed9758f Binary files /dev/null and b/lib64/wine/fakedlls/jscript.dll differ diff --git a/lib64/wine/fakedlls/jsproxy.dll b/lib64/wine/fakedlls/jsproxy.dll new file mode 100644 index 0000000..764abf1 Binary files /dev/null and b/lib64/wine/fakedlls/jsproxy.dll differ diff --git a/lib64/wine/fakedlls/kerberos.dll b/lib64/wine/fakedlls/kerberos.dll new file mode 100644 index 0000000..c6a3b4c Binary files /dev/null and b/lib64/wine/fakedlls/kerberos.dll differ diff --git a/lib64/wine/fakedlls/kernel32.dll b/lib64/wine/fakedlls/kernel32.dll new file mode 100644 index 0000000..4965a15 Binary files /dev/null and b/lib64/wine/fakedlls/kernel32.dll differ diff --git a/lib64/wine/fakedlls/kernelbase.dll b/lib64/wine/fakedlls/kernelbase.dll new file mode 100644 index 0000000..9e80095 Binary files /dev/null and b/lib64/wine/fakedlls/kernelbase.dll differ diff --git a/lib64/wine/fakedlls/ksecdd.sys b/lib64/wine/fakedlls/ksecdd.sys new file mode 100644 index 0000000..3572140 Binary files /dev/null and b/lib64/wine/fakedlls/ksecdd.sys differ diff --git a/lib64/wine/fakedlls/ksuser.dll b/lib64/wine/fakedlls/ksuser.dll new file mode 100644 index 0000000..f8c58e1 Binary files /dev/null and b/lib64/wine/fakedlls/ksuser.dll differ diff --git a/lib64/wine/fakedlls/ktmw32.dll b/lib64/wine/fakedlls/ktmw32.dll new file mode 100644 index 0000000..931410d Binary files /dev/null and b/lib64/wine/fakedlls/ktmw32.dll differ diff --git a/lib64/wine/fakedlls/l3codeca.acm b/lib64/wine/fakedlls/l3codeca.acm new file mode 100644 index 0000000..665fa6e Binary files /dev/null and b/lib64/wine/fakedlls/l3codeca.acm differ diff --git a/lib64/wine/fakedlls/loadperf.dll b/lib64/wine/fakedlls/loadperf.dll new file mode 100644 index 0000000..6fb1b00 Binary files /dev/null and b/lib64/wine/fakedlls/loadperf.dll differ diff --git a/lib64/wine/fakedlls/localspl.dll b/lib64/wine/fakedlls/localspl.dll new file mode 100644 index 0000000..e1ca2d1 Binary files /dev/null and b/lib64/wine/fakedlls/localspl.dll differ diff --git a/lib64/wine/fakedlls/localui.dll b/lib64/wine/fakedlls/localui.dll new file mode 100644 index 0000000..8954e9c Binary files /dev/null and b/lib64/wine/fakedlls/localui.dll differ diff --git a/lib64/wine/fakedlls/lodctr.exe b/lib64/wine/fakedlls/lodctr.exe new file mode 100644 index 0000000..004b6a5 Binary files /dev/null and b/lib64/wine/fakedlls/lodctr.exe differ diff --git a/lib64/wine/fakedlls/lz32.dll b/lib64/wine/fakedlls/lz32.dll new file mode 100644 index 0000000..b6bff5f Binary files /dev/null and b/lib64/wine/fakedlls/lz32.dll differ diff --git a/lib64/wine/fakedlls/mapi32.dll b/lib64/wine/fakedlls/mapi32.dll new file mode 100644 index 0000000..b6c6a8d Binary files /dev/null and b/lib64/wine/fakedlls/mapi32.dll differ diff --git a/lib64/wine/fakedlls/mapistub.dll b/lib64/wine/fakedlls/mapistub.dll new file mode 100644 index 0000000..37ed861 Binary files /dev/null and b/lib64/wine/fakedlls/mapistub.dll differ diff --git a/lib64/wine/fakedlls/mciavi32.dll b/lib64/wine/fakedlls/mciavi32.dll new file mode 100644 index 0000000..d6abc0a Binary files /dev/null and b/lib64/wine/fakedlls/mciavi32.dll differ diff --git a/lib64/wine/fakedlls/mcicda.dll b/lib64/wine/fakedlls/mcicda.dll new file mode 100644 index 0000000..95bc1f4 Binary files /dev/null and b/lib64/wine/fakedlls/mcicda.dll differ diff --git a/lib64/wine/fakedlls/mciqtz32.dll b/lib64/wine/fakedlls/mciqtz32.dll new file mode 100644 index 0000000..f825588 Binary files /dev/null and b/lib64/wine/fakedlls/mciqtz32.dll differ diff --git a/lib64/wine/fakedlls/mciseq.dll b/lib64/wine/fakedlls/mciseq.dll new file mode 100644 index 0000000..066733f Binary files /dev/null and b/lib64/wine/fakedlls/mciseq.dll differ diff --git a/lib64/wine/fakedlls/mciwave.dll b/lib64/wine/fakedlls/mciwave.dll new file mode 100644 index 0000000..86a7c1c Binary files /dev/null and b/lib64/wine/fakedlls/mciwave.dll differ diff --git a/lib64/wine/fakedlls/mf.dll b/lib64/wine/fakedlls/mf.dll new file mode 100644 index 0000000..7ea0eb0 Binary files /dev/null and b/lib64/wine/fakedlls/mf.dll differ diff --git a/lib64/wine/fakedlls/mf3216.dll b/lib64/wine/fakedlls/mf3216.dll new file mode 100644 index 0000000..185f91c Binary files /dev/null and b/lib64/wine/fakedlls/mf3216.dll differ diff --git a/lib64/wine/fakedlls/mferror.dll b/lib64/wine/fakedlls/mferror.dll new file mode 100644 index 0000000..de2924b Binary files /dev/null and b/lib64/wine/fakedlls/mferror.dll differ diff --git a/lib64/wine/fakedlls/mfplat.dll b/lib64/wine/fakedlls/mfplat.dll new file mode 100644 index 0000000..9d9a19d Binary files /dev/null and b/lib64/wine/fakedlls/mfplat.dll differ diff --git a/lib64/wine/fakedlls/mfplay.dll b/lib64/wine/fakedlls/mfplay.dll new file mode 100644 index 0000000..f6db386 Binary files /dev/null and b/lib64/wine/fakedlls/mfplay.dll differ diff --git a/lib64/wine/fakedlls/mfreadwrite.dll b/lib64/wine/fakedlls/mfreadwrite.dll new file mode 100644 index 0000000..33c5f9e Binary files /dev/null and b/lib64/wine/fakedlls/mfreadwrite.dll differ diff --git a/lib64/wine/fakedlls/mgmtapi.dll b/lib64/wine/fakedlls/mgmtapi.dll new file mode 100644 index 0000000..99132e6 Binary files /dev/null and b/lib64/wine/fakedlls/mgmtapi.dll differ diff --git a/lib64/wine/fakedlls/midimap.dll b/lib64/wine/fakedlls/midimap.dll new file mode 100644 index 0000000..de97b64 Binary files /dev/null and b/lib64/wine/fakedlls/midimap.dll differ diff --git a/lib64/wine/fakedlls/mlang.dll b/lib64/wine/fakedlls/mlang.dll new file mode 100644 index 0000000..71116d2 Binary files /dev/null and b/lib64/wine/fakedlls/mlang.dll differ diff --git a/lib64/wine/fakedlls/mmcndmgr.dll b/lib64/wine/fakedlls/mmcndmgr.dll new file mode 100644 index 0000000..84f5024 Binary files /dev/null and b/lib64/wine/fakedlls/mmcndmgr.dll differ diff --git a/lib64/wine/fakedlls/mmdevapi.dll b/lib64/wine/fakedlls/mmdevapi.dll new file mode 100644 index 0000000..1c52a7e Binary files /dev/null and b/lib64/wine/fakedlls/mmdevapi.dll differ diff --git a/lib64/wine/fakedlls/mofcomp.exe b/lib64/wine/fakedlls/mofcomp.exe new file mode 100644 index 0000000..004b6a5 Binary files /dev/null and b/lib64/wine/fakedlls/mofcomp.exe differ diff --git a/lib64/wine/fakedlls/mountmgr.sys b/lib64/wine/fakedlls/mountmgr.sys new file mode 100644 index 0000000..d379585 Binary files /dev/null and b/lib64/wine/fakedlls/mountmgr.sys differ diff --git a/lib64/wine/fakedlls/mp3dmod.dll b/lib64/wine/fakedlls/mp3dmod.dll new file mode 100644 index 0000000..beda01a Binary files /dev/null and b/lib64/wine/fakedlls/mp3dmod.dll differ diff --git a/lib64/wine/fakedlls/mpr.dll b/lib64/wine/fakedlls/mpr.dll new file mode 100644 index 0000000..caae355 Binary files /dev/null and b/lib64/wine/fakedlls/mpr.dll differ diff --git a/lib64/wine/fakedlls/mprapi.dll b/lib64/wine/fakedlls/mprapi.dll new file mode 100644 index 0000000..83e349f Binary files /dev/null and b/lib64/wine/fakedlls/mprapi.dll differ diff --git a/lib64/wine/fakedlls/msacm32.dll b/lib64/wine/fakedlls/msacm32.dll new file mode 100644 index 0000000..d6f3e08 Binary files /dev/null and b/lib64/wine/fakedlls/msacm32.dll differ diff --git a/lib64/wine/fakedlls/msacm32.drv b/lib64/wine/fakedlls/msacm32.drv new file mode 100644 index 0000000..d89ef3f Binary files /dev/null and b/lib64/wine/fakedlls/msacm32.drv differ diff --git a/lib64/wine/fakedlls/msadp32.acm b/lib64/wine/fakedlls/msadp32.acm new file mode 100644 index 0000000..1ca4e9d Binary files /dev/null and b/lib64/wine/fakedlls/msadp32.acm differ diff --git a/lib64/wine/fakedlls/msasn1.dll b/lib64/wine/fakedlls/msasn1.dll new file mode 100644 index 0000000..6ebc761 Binary files /dev/null and b/lib64/wine/fakedlls/msasn1.dll differ diff --git a/lib64/wine/fakedlls/mscat32.dll b/lib64/wine/fakedlls/mscat32.dll new file mode 100644 index 0000000..cab148c Binary files /dev/null and b/lib64/wine/fakedlls/mscat32.dll differ diff --git a/lib64/wine/fakedlls/mscms.dll b/lib64/wine/fakedlls/mscms.dll new file mode 100644 index 0000000..34dbf9f Binary files /dev/null and b/lib64/wine/fakedlls/mscms.dll differ diff --git a/lib64/wine/fakedlls/mscoree.dll b/lib64/wine/fakedlls/mscoree.dll new file mode 100644 index 0000000..afefd94 Binary files /dev/null and b/lib64/wine/fakedlls/mscoree.dll differ diff --git a/lib64/wine/fakedlls/msctf.dll b/lib64/wine/fakedlls/msctf.dll new file mode 100644 index 0000000..1fe5c95 Binary files /dev/null and b/lib64/wine/fakedlls/msctf.dll differ diff --git a/lib64/wine/fakedlls/msctfp.dll b/lib64/wine/fakedlls/msctfp.dll new file mode 100644 index 0000000..b2e4e26 Binary files /dev/null and b/lib64/wine/fakedlls/msctfp.dll differ diff --git a/lib64/wine/fakedlls/msdaps.dll b/lib64/wine/fakedlls/msdaps.dll new file mode 100644 index 0000000..87e1f5b Binary files /dev/null and b/lib64/wine/fakedlls/msdaps.dll differ diff --git a/lib64/wine/fakedlls/msdelta.dll b/lib64/wine/fakedlls/msdelta.dll new file mode 100644 index 0000000..0bfd55b Binary files /dev/null and b/lib64/wine/fakedlls/msdelta.dll differ diff --git a/lib64/wine/fakedlls/msdmo.dll b/lib64/wine/fakedlls/msdmo.dll new file mode 100644 index 0000000..8734a70 Binary files /dev/null and b/lib64/wine/fakedlls/msdmo.dll differ diff --git a/lib64/wine/fakedlls/msdrm.dll b/lib64/wine/fakedlls/msdrm.dll new file mode 100644 index 0000000..d4914b9 Binary files /dev/null and b/lib64/wine/fakedlls/msdrm.dll differ diff --git a/lib64/wine/fakedlls/msftedit.dll b/lib64/wine/fakedlls/msftedit.dll new file mode 100644 index 0000000..4d5cd48 Binary files /dev/null and b/lib64/wine/fakedlls/msftedit.dll differ diff --git a/lib64/wine/fakedlls/msg711.acm b/lib64/wine/fakedlls/msg711.acm new file mode 100644 index 0000000..5361029 Binary files /dev/null and b/lib64/wine/fakedlls/msg711.acm differ diff --git a/lib64/wine/fakedlls/msgsm32.acm b/lib64/wine/fakedlls/msgsm32.acm new file mode 100644 index 0000000..593c040 Binary files /dev/null and b/lib64/wine/fakedlls/msgsm32.acm differ diff --git a/lib64/wine/fakedlls/mshta.exe b/lib64/wine/fakedlls/mshta.exe new file mode 100644 index 0000000..e264285 Binary files /dev/null and b/lib64/wine/fakedlls/mshta.exe differ diff --git a/lib64/wine/fakedlls/mshtml.dll b/lib64/wine/fakedlls/mshtml.dll new file mode 100644 index 0000000..9ce0244 Binary files /dev/null and b/lib64/wine/fakedlls/mshtml.dll differ diff --git a/lib64/wine/fakedlls/mshtml.tlb b/lib64/wine/fakedlls/mshtml.tlb new file mode 100644 index 0000000..8d65d9b Binary files /dev/null and b/lib64/wine/fakedlls/mshtml.tlb differ diff --git a/lib64/wine/fakedlls/msi.dll b/lib64/wine/fakedlls/msi.dll new file mode 100644 index 0000000..56aef73 Binary files /dev/null and b/lib64/wine/fakedlls/msi.dll differ diff --git a/lib64/wine/fakedlls/msidb.exe b/lib64/wine/fakedlls/msidb.exe new file mode 100644 index 0000000..004b6a5 Binary files /dev/null and b/lib64/wine/fakedlls/msidb.exe differ diff --git a/lib64/wine/fakedlls/msident.dll b/lib64/wine/fakedlls/msident.dll new file mode 100644 index 0000000..53cbf2e Binary files /dev/null and b/lib64/wine/fakedlls/msident.dll differ diff --git a/lib64/wine/fakedlls/msiexec.exe b/lib64/wine/fakedlls/msiexec.exe new file mode 100644 index 0000000..2903feb Binary files /dev/null and b/lib64/wine/fakedlls/msiexec.exe differ diff --git a/lib64/wine/fakedlls/msimg32.dll b/lib64/wine/fakedlls/msimg32.dll new file mode 100644 index 0000000..39de080 Binary files /dev/null and b/lib64/wine/fakedlls/msimg32.dll differ diff --git a/lib64/wine/fakedlls/msimsg.dll b/lib64/wine/fakedlls/msimsg.dll new file mode 100644 index 0000000..81b0f98 Binary files /dev/null and b/lib64/wine/fakedlls/msimsg.dll differ diff --git a/lib64/wine/fakedlls/msimtf.dll b/lib64/wine/fakedlls/msimtf.dll new file mode 100644 index 0000000..9956b9c Binary files /dev/null and b/lib64/wine/fakedlls/msimtf.dll differ diff --git a/lib64/wine/fakedlls/msinfo32.exe b/lib64/wine/fakedlls/msinfo32.exe new file mode 100644 index 0000000..93a0ad0 Binary files /dev/null and b/lib64/wine/fakedlls/msinfo32.exe differ diff --git a/lib64/wine/fakedlls/msisip.dll b/lib64/wine/fakedlls/msisip.dll new file mode 100644 index 0000000..74410df Binary files /dev/null and b/lib64/wine/fakedlls/msisip.dll differ diff --git a/lib64/wine/fakedlls/msisys.ocx b/lib64/wine/fakedlls/msisys.ocx new file mode 100644 index 0000000..39c3588 Binary files /dev/null and b/lib64/wine/fakedlls/msisys.ocx differ diff --git a/lib64/wine/fakedlls/msls31.dll b/lib64/wine/fakedlls/msls31.dll new file mode 100644 index 0000000..e527db3 Binary files /dev/null and b/lib64/wine/fakedlls/msls31.dll differ diff --git a/lib64/wine/fakedlls/msnet32.dll b/lib64/wine/fakedlls/msnet32.dll new file mode 100644 index 0000000..d184f14 Binary files /dev/null and b/lib64/wine/fakedlls/msnet32.dll differ diff --git a/lib64/wine/fakedlls/mspatcha.dll b/lib64/wine/fakedlls/mspatcha.dll new file mode 100644 index 0000000..7242ee1 Binary files /dev/null and b/lib64/wine/fakedlls/mspatcha.dll differ diff --git a/lib64/wine/fakedlls/msports.dll b/lib64/wine/fakedlls/msports.dll new file mode 100644 index 0000000..9efded6 Binary files /dev/null and b/lib64/wine/fakedlls/msports.dll differ diff --git a/lib64/wine/fakedlls/msrle32.dll b/lib64/wine/fakedlls/msrle32.dll new file mode 100644 index 0000000..bbeba51 Binary files /dev/null and b/lib64/wine/fakedlls/msrle32.dll differ diff --git a/lib64/wine/fakedlls/msscript.ocx b/lib64/wine/fakedlls/msscript.ocx new file mode 100644 index 0000000..4fc1334 Binary files /dev/null and b/lib64/wine/fakedlls/msscript.ocx differ diff --git a/lib64/wine/fakedlls/mssign32.dll b/lib64/wine/fakedlls/mssign32.dll new file mode 100644 index 0000000..ecd59f7 Binary files /dev/null and b/lib64/wine/fakedlls/mssign32.dll differ diff --git a/lib64/wine/fakedlls/mssip32.dll b/lib64/wine/fakedlls/mssip32.dll new file mode 100644 index 0000000..d6139f2 Binary files /dev/null and b/lib64/wine/fakedlls/mssip32.dll differ diff --git a/lib64/wine/fakedlls/mstask.dll b/lib64/wine/fakedlls/mstask.dll new file mode 100644 index 0000000..71c763c Binary files /dev/null and b/lib64/wine/fakedlls/mstask.dll differ diff --git a/lib64/wine/fakedlls/msvcirt.dll b/lib64/wine/fakedlls/msvcirt.dll new file mode 100644 index 0000000..4c4508b Binary files /dev/null and b/lib64/wine/fakedlls/msvcirt.dll differ diff --git a/lib64/wine/fakedlls/msvcm80.dll b/lib64/wine/fakedlls/msvcm80.dll new file mode 100644 index 0000000..69afd53 Binary files /dev/null and b/lib64/wine/fakedlls/msvcm80.dll differ diff --git a/lib64/wine/fakedlls/msvcm90.dll b/lib64/wine/fakedlls/msvcm90.dll new file mode 100644 index 0000000..0e1952d Binary files /dev/null and b/lib64/wine/fakedlls/msvcm90.dll differ diff --git a/lib64/wine/fakedlls/msvcp100.dll b/lib64/wine/fakedlls/msvcp100.dll new file mode 100644 index 0000000..26b293c Binary files /dev/null and b/lib64/wine/fakedlls/msvcp100.dll differ diff --git a/lib64/wine/fakedlls/msvcp110.dll b/lib64/wine/fakedlls/msvcp110.dll new file mode 100644 index 0000000..f789034 Binary files /dev/null and b/lib64/wine/fakedlls/msvcp110.dll differ diff --git a/lib64/wine/fakedlls/msvcp120.dll b/lib64/wine/fakedlls/msvcp120.dll new file mode 100644 index 0000000..06974fd Binary files /dev/null and b/lib64/wine/fakedlls/msvcp120.dll differ diff --git a/lib64/wine/fakedlls/msvcp120_app.dll b/lib64/wine/fakedlls/msvcp120_app.dll new file mode 100644 index 0000000..64478d0 Binary files /dev/null and b/lib64/wine/fakedlls/msvcp120_app.dll differ diff --git a/lib64/wine/fakedlls/msvcp140.dll b/lib64/wine/fakedlls/msvcp140.dll new file mode 100644 index 0000000..bbf5ff2 Binary files /dev/null and b/lib64/wine/fakedlls/msvcp140.dll differ diff --git a/lib64/wine/fakedlls/msvcp60.dll b/lib64/wine/fakedlls/msvcp60.dll new file mode 100644 index 0000000..a99194c Binary files /dev/null and b/lib64/wine/fakedlls/msvcp60.dll differ diff --git a/lib64/wine/fakedlls/msvcp70.dll b/lib64/wine/fakedlls/msvcp70.dll new file mode 100644 index 0000000..f77ad3b Binary files /dev/null and b/lib64/wine/fakedlls/msvcp70.dll differ diff --git a/lib64/wine/fakedlls/msvcp71.dll b/lib64/wine/fakedlls/msvcp71.dll new file mode 100644 index 0000000..063236d Binary files /dev/null and b/lib64/wine/fakedlls/msvcp71.dll differ diff --git a/lib64/wine/fakedlls/msvcp80.dll b/lib64/wine/fakedlls/msvcp80.dll new file mode 100644 index 0000000..da41ba0 Binary files /dev/null and b/lib64/wine/fakedlls/msvcp80.dll differ diff --git a/lib64/wine/fakedlls/msvcp90.dll b/lib64/wine/fakedlls/msvcp90.dll new file mode 100644 index 0000000..3a65534 Binary files /dev/null and b/lib64/wine/fakedlls/msvcp90.dll differ diff --git a/lib64/wine/fakedlls/msvcr100.dll b/lib64/wine/fakedlls/msvcr100.dll new file mode 100644 index 0000000..f3bb6f3 Binary files /dev/null and b/lib64/wine/fakedlls/msvcr100.dll differ diff --git a/lib64/wine/fakedlls/msvcr110.dll b/lib64/wine/fakedlls/msvcr110.dll new file mode 100644 index 0000000..9f49a89 Binary files /dev/null and b/lib64/wine/fakedlls/msvcr110.dll differ diff --git a/lib64/wine/fakedlls/msvcr120.dll b/lib64/wine/fakedlls/msvcr120.dll new file mode 100644 index 0000000..cbd869a Binary files /dev/null and b/lib64/wine/fakedlls/msvcr120.dll differ diff --git a/lib64/wine/fakedlls/msvcr120_app.dll b/lib64/wine/fakedlls/msvcr120_app.dll new file mode 100644 index 0000000..da2b60a Binary files /dev/null and b/lib64/wine/fakedlls/msvcr120_app.dll differ diff --git a/lib64/wine/fakedlls/msvcr70.dll b/lib64/wine/fakedlls/msvcr70.dll new file mode 100644 index 0000000..376c742 Binary files /dev/null and b/lib64/wine/fakedlls/msvcr70.dll differ diff --git a/lib64/wine/fakedlls/msvcr71.dll b/lib64/wine/fakedlls/msvcr71.dll new file mode 100644 index 0000000..872e7f2 Binary files /dev/null and b/lib64/wine/fakedlls/msvcr71.dll differ diff --git a/lib64/wine/fakedlls/msvcr80.dll b/lib64/wine/fakedlls/msvcr80.dll new file mode 100644 index 0000000..07feff8 Binary files /dev/null and b/lib64/wine/fakedlls/msvcr80.dll differ diff --git a/lib64/wine/fakedlls/msvcr90.dll b/lib64/wine/fakedlls/msvcr90.dll new file mode 100644 index 0000000..e59cd01 Binary files /dev/null and b/lib64/wine/fakedlls/msvcr90.dll differ diff --git a/lib64/wine/fakedlls/msvcrt.dll b/lib64/wine/fakedlls/msvcrt.dll new file mode 100644 index 0000000..3033569 Binary files /dev/null and b/lib64/wine/fakedlls/msvcrt.dll differ diff --git a/lib64/wine/fakedlls/msvcrt20.dll b/lib64/wine/fakedlls/msvcrt20.dll new file mode 100644 index 0000000..274f699 Binary files /dev/null and b/lib64/wine/fakedlls/msvcrt20.dll differ diff --git a/lib64/wine/fakedlls/msvcrt40.dll b/lib64/wine/fakedlls/msvcrt40.dll new file mode 100644 index 0000000..29533d9 Binary files /dev/null and b/lib64/wine/fakedlls/msvcrt40.dll differ diff --git a/lib64/wine/fakedlls/msvcrtd.dll b/lib64/wine/fakedlls/msvcrtd.dll new file mode 100644 index 0000000..ccf8ace Binary files /dev/null and b/lib64/wine/fakedlls/msvcrtd.dll differ diff --git a/lib64/wine/fakedlls/msvfw32.dll b/lib64/wine/fakedlls/msvfw32.dll new file mode 100644 index 0000000..c284f38 Binary files /dev/null and b/lib64/wine/fakedlls/msvfw32.dll differ diff --git a/lib64/wine/fakedlls/msvidc32.dll b/lib64/wine/fakedlls/msvidc32.dll new file mode 100644 index 0000000..3ee37dd Binary files /dev/null and b/lib64/wine/fakedlls/msvidc32.dll differ diff --git a/lib64/wine/fakedlls/mswsock.dll b/lib64/wine/fakedlls/mswsock.dll new file mode 100644 index 0000000..e1dd11d Binary files /dev/null and b/lib64/wine/fakedlls/mswsock.dll differ diff --git a/lib64/wine/fakedlls/msxml.dll b/lib64/wine/fakedlls/msxml.dll new file mode 100644 index 0000000..5994780 Binary files /dev/null and b/lib64/wine/fakedlls/msxml.dll differ diff --git a/lib64/wine/fakedlls/msxml2.dll b/lib64/wine/fakedlls/msxml2.dll new file mode 100644 index 0000000..35bfcbd Binary files /dev/null and b/lib64/wine/fakedlls/msxml2.dll differ diff --git a/lib64/wine/fakedlls/msxml3.dll b/lib64/wine/fakedlls/msxml3.dll new file mode 100644 index 0000000..f1da899 Binary files /dev/null and b/lib64/wine/fakedlls/msxml3.dll differ diff --git a/lib64/wine/fakedlls/msxml4.dll b/lib64/wine/fakedlls/msxml4.dll new file mode 100644 index 0000000..b745b5e Binary files /dev/null and b/lib64/wine/fakedlls/msxml4.dll differ diff --git a/lib64/wine/fakedlls/msxml6.dll b/lib64/wine/fakedlls/msxml6.dll new file mode 100644 index 0000000..0aa24a6 Binary files /dev/null and b/lib64/wine/fakedlls/msxml6.dll differ diff --git a/lib64/wine/fakedlls/mtxdm.dll b/lib64/wine/fakedlls/mtxdm.dll new file mode 100644 index 0000000..eac9cd9 Binary files /dev/null and b/lib64/wine/fakedlls/mtxdm.dll differ diff --git a/lib64/wine/fakedlls/ncrypt.dll b/lib64/wine/fakedlls/ncrypt.dll new file mode 100644 index 0000000..6244a9e Binary files /dev/null and b/lib64/wine/fakedlls/ncrypt.dll differ diff --git a/lib64/wine/fakedlls/nddeapi.dll b/lib64/wine/fakedlls/nddeapi.dll new file mode 100644 index 0000000..1b26ed7 Binary files /dev/null and b/lib64/wine/fakedlls/nddeapi.dll differ diff --git a/lib64/wine/fakedlls/ndis.sys b/lib64/wine/fakedlls/ndis.sys new file mode 100644 index 0000000..d379585 Binary files /dev/null and b/lib64/wine/fakedlls/ndis.sys differ diff --git a/lib64/wine/fakedlls/net.exe b/lib64/wine/fakedlls/net.exe new file mode 100644 index 0000000..8a992d3 Binary files /dev/null and b/lib64/wine/fakedlls/net.exe differ diff --git a/lib64/wine/fakedlls/netapi32.dll b/lib64/wine/fakedlls/netapi32.dll new file mode 100644 index 0000000..b896510 Binary files /dev/null and b/lib64/wine/fakedlls/netapi32.dll differ diff --git a/lib64/wine/fakedlls/netcfgx.dll b/lib64/wine/fakedlls/netcfgx.dll new file mode 100644 index 0000000..bdc5018 Binary files /dev/null and b/lib64/wine/fakedlls/netcfgx.dll differ diff --git a/lib64/wine/fakedlls/netprofm.dll b/lib64/wine/fakedlls/netprofm.dll new file mode 100644 index 0000000..1ec3e81 Binary files /dev/null and b/lib64/wine/fakedlls/netprofm.dll differ diff --git a/lib64/wine/fakedlls/netsh.exe b/lib64/wine/fakedlls/netsh.exe new file mode 100644 index 0000000..004b6a5 Binary files /dev/null and b/lib64/wine/fakedlls/netsh.exe differ diff --git a/lib64/wine/fakedlls/netstat.exe b/lib64/wine/fakedlls/netstat.exe new file mode 100644 index 0000000..8bc7ea6 Binary files /dev/null and b/lib64/wine/fakedlls/netstat.exe differ diff --git a/lib64/wine/fakedlls/newdev.dll b/lib64/wine/fakedlls/newdev.dll new file mode 100644 index 0000000..8e6fb7f Binary files /dev/null and b/lib64/wine/fakedlls/newdev.dll differ diff --git a/lib64/wine/fakedlls/ngen.exe b/lib64/wine/fakedlls/ngen.exe new file mode 100644 index 0000000..004b6a5 Binary files /dev/null and b/lib64/wine/fakedlls/ngen.exe differ diff --git a/lib64/wine/fakedlls/ninput.dll b/lib64/wine/fakedlls/ninput.dll new file mode 100644 index 0000000..310aec8 Binary files /dev/null and b/lib64/wine/fakedlls/ninput.dll differ diff --git a/lib64/wine/fakedlls/normaliz.dll b/lib64/wine/fakedlls/normaliz.dll new file mode 100644 index 0000000..60643e9 Binary files /dev/null and b/lib64/wine/fakedlls/normaliz.dll differ diff --git a/lib64/wine/fakedlls/notepad.exe b/lib64/wine/fakedlls/notepad.exe new file mode 100644 index 0000000..719b19e Binary files /dev/null and b/lib64/wine/fakedlls/notepad.exe differ diff --git a/lib64/wine/fakedlls/npmshtml.dll b/lib64/wine/fakedlls/npmshtml.dll new file mode 100644 index 0000000..2c6b8dd Binary files /dev/null and b/lib64/wine/fakedlls/npmshtml.dll differ diff --git a/lib64/wine/fakedlls/npptools.dll b/lib64/wine/fakedlls/npptools.dll new file mode 100644 index 0000000..a1b6f2e Binary files /dev/null and b/lib64/wine/fakedlls/npptools.dll differ diff --git a/lib64/wine/fakedlls/ntdll.dll b/lib64/wine/fakedlls/ntdll.dll new file mode 100644 index 0000000..3d0dd86 Binary files /dev/null and b/lib64/wine/fakedlls/ntdll.dll differ diff --git a/lib64/wine/fakedlls/ntdsapi.dll b/lib64/wine/fakedlls/ntdsapi.dll new file mode 100644 index 0000000..5005e91 Binary files /dev/null and b/lib64/wine/fakedlls/ntdsapi.dll differ diff --git a/lib64/wine/fakedlls/ntoskrnl.exe b/lib64/wine/fakedlls/ntoskrnl.exe new file mode 100644 index 0000000..20ced44 Binary files /dev/null and b/lib64/wine/fakedlls/ntoskrnl.exe differ diff --git a/lib64/wine/fakedlls/ntprint.dll b/lib64/wine/fakedlls/ntprint.dll new file mode 100644 index 0000000..4a71778 Binary files /dev/null and b/lib64/wine/fakedlls/ntprint.dll differ diff --git a/lib64/wine/fakedlls/nvapi64.dll b/lib64/wine/fakedlls/nvapi64.dll new file mode 100644 index 0000000..36fe343 Binary files /dev/null and b/lib64/wine/fakedlls/nvapi64.dll differ diff --git a/lib64/wine/fakedlls/nvcuda.dll b/lib64/wine/fakedlls/nvcuda.dll new file mode 100644 index 0000000..f3af6ca Binary files /dev/null and b/lib64/wine/fakedlls/nvcuda.dll differ diff --git a/lib64/wine/fakedlls/nvcuvid.dll b/lib64/wine/fakedlls/nvcuvid.dll new file mode 100644 index 0000000..db6437a Binary files /dev/null and b/lib64/wine/fakedlls/nvcuvid.dll differ diff --git a/lib64/wine/fakedlls/nvencodeapi64.dll b/lib64/wine/fakedlls/nvencodeapi64.dll new file mode 100644 index 0000000..f6236a4 Binary files /dev/null and b/lib64/wine/fakedlls/nvencodeapi64.dll differ diff --git a/lib64/wine/fakedlls/objsel.dll b/lib64/wine/fakedlls/objsel.dll new file mode 100644 index 0000000..3c1f3c2 Binary files /dev/null and b/lib64/wine/fakedlls/objsel.dll differ diff --git a/lib64/wine/fakedlls/odbc32.dll b/lib64/wine/fakedlls/odbc32.dll new file mode 100644 index 0000000..b203586 Binary files /dev/null and b/lib64/wine/fakedlls/odbc32.dll differ diff --git a/lib64/wine/fakedlls/odbccp32.dll b/lib64/wine/fakedlls/odbccp32.dll new file mode 100644 index 0000000..adaf545 Binary files /dev/null and b/lib64/wine/fakedlls/odbccp32.dll differ diff --git a/lib64/wine/fakedlls/odbccu32.dll b/lib64/wine/fakedlls/odbccu32.dll new file mode 100644 index 0000000..41b062b Binary files /dev/null and b/lib64/wine/fakedlls/odbccu32.dll differ diff --git a/lib64/wine/fakedlls/ole32.dll b/lib64/wine/fakedlls/ole32.dll new file mode 100644 index 0000000..56f39f1 Binary files /dev/null and b/lib64/wine/fakedlls/ole32.dll differ diff --git a/lib64/wine/fakedlls/oleacc.dll b/lib64/wine/fakedlls/oleacc.dll new file mode 100644 index 0000000..5e0a37a Binary files /dev/null and b/lib64/wine/fakedlls/oleacc.dll differ diff --git a/lib64/wine/fakedlls/oleaut32.dll b/lib64/wine/fakedlls/oleaut32.dll new file mode 100644 index 0000000..1437320 Binary files /dev/null and b/lib64/wine/fakedlls/oleaut32.dll differ diff --git a/lib64/wine/fakedlls/olecli32.dll b/lib64/wine/fakedlls/olecli32.dll new file mode 100644 index 0000000..6f5d2f9 Binary files /dev/null and b/lib64/wine/fakedlls/olecli32.dll differ diff --git a/lib64/wine/fakedlls/oledb32.dll b/lib64/wine/fakedlls/oledb32.dll new file mode 100644 index 0000000..1cb25e9 Binary files /dev/null and b/lib64/wine/fakedlls/oledb32.dll differ diff --git a/lib64/wine/fakedlls/oledlg.dll b/lib64/wine/fakedlls/oledlg.dll new file mode 100644 index 0000000..b018a67 Binary files /dev/null and b/lib64/wine/fakedlls/oledlg.dll differ diff --git a/lib64/wine/fakedlls/olepro32.dll b/lib64/wine/fakedlls/olepro32.dll new file mode 100644 index 0000000..5b24734 Binary files /dev/null and b/lib64/wine/fakedlls/olepro32.dll differ diff --git a/lib64/wine/fakedlls/olesvr32.dll b/lib64/wine/fakedlls/olesvr32.dll new file mode 100644 index 0000000..74ee44f Binary files /dev/null and b/lib64/wine/fakedlls/olesvr32.dll differ diff --git a/lib64/wine/fakedlls/olethk32.dll b/lib64/wine/fakedlls/olethk32.dll new file mode 100644 index 0000000..53fbf7d Binary files /dev/null and b/lib64/wine/fakedlls/olethk32.dll differ diff --git a/lib64/wine/fakedlls/oleview.exe b/lib64/wine/fakedlls/oleview.exe new file mode 100644 index 0000000..9b2ecd2 Binary files /dev/null and b/lib64/wine/fakedlls/oleview.exe differ diff --git a/lib64/wine/fakedlls/opcservices.dll b/lib64/wine/fakedlls/opcservices.dll new file mode 100644 index 0000000..0e9024d Binary files /dev/null and b/lib64/wine/fakedlls/opcservices.dll differ diff --git a/lib64/wine/fakedlls/openal32.dll b/lib64/wine/fakedlls/openal32.dll new file mode 100644 index 0000000..094b731 Binary files /dev/null and b/lib64/wine/fakedlls/openal32.dll differ diff --git a/lib64/wine/fakedlls/opencl.dll b/lib64/wine/fakedlls/opencl.dll new file mode 100644 index 0000000..c1a6ea6 Binary files /dev/null and b/lib64/wine/fakedlls/opencl.dll differ diff --git a/lib64/wine/fakedlls/opengl32.dll b/lib64/wine/fakedlls/opengl32.dll new file mode 100644 index 0000000..0bb8aa8 Binary files /dev/null and b/lib64/wine/fakedlls/opengl32.dll differ diff --git a/lib64/wine/fakedlls/packager.dll b/lib64/wine/fakedlls/packager.dll new file mode 100644 index 0000000..99e3c8c Binary files /dev/null and b/lib64/wine/fakedlls/packager.dll differ diff --git a/lib64/wine/fakedlls/pdh.dll b/lib64/wine/fakedlls/pdh.dll new file mode 100644 index 0000000..6ecf48a Binary files /dev/null and b/lib64/wine/fakedlls/pdh.dll differ diff --git a/lib64/wine/fakedlls/photometadatahandler.dll b/lib64/wine/fakedlls/photometadatahandler.dll new file mode 100644 index 0000000..1edc596 Binary files /dev/null and b/lib64/wine/fakedlls/photometadatahandler.dll differ diff --git a/lib64/wine/fakedlls/pidgen.dll b/lib64/wine/fakedlls/pidgen.dll new file mode 100644 index 0000000..62f90ab Binary files /dev/null and b/lib64/wine/fakedlls/pidgen.dll differ diff --git a/lib64/wine/fakedlls/ping.exe b/lib64/wine/fakedlls/ping.exe new file mode 100644 index 0000000..004b6a5 Binary files /dev/null and b/lib64/wine/fakedlls/ping.exe differ diff --git a/lib64/wine/fakedlls/plugplay.exe b/lib64/wine/fakedlls/plugplay.exe new file mode 100644 index 0000000..004b6a5 Binary files /dev/null and b/lib64/wine/fakedlls/plugplay.exe differ diff --git a/lib64/wine/fakedlls/powershell.exe b/lib64/wine/fakedlls/powershell.exe new file mode 100644 index 0000000..004b6a5 Binary files /dev/null and b/lib64/wine/fakedlls/powershell.exe differ diff --git a/lib64/wine/fakedlls/powrprof.dll b/lib64/wine/fakedlls/powrprof.dll new file mode 100644 index 0000000..0dcf1a7 Binary files /dev/null and b/lib64/wine/fakedlls/powrprof.dll differ diff --git a/lib64/wine/fakedlls/presentationfontcache.exe b/lib64/wine/fakedlls/presentationfontcache.exe new file mode 100644 index 0000000..004b6a5 Binary files /dev/null and b/lib64/wine/fakedlls/presentationfontcache.exe differ diff --git a/lib64/wine/fakedlls/printui.dll b/lib64/wine/fakedlls/printui.dll new file mode 100644 index 0000000..1dff953 Binary files /dev/null and b/lib64/wine/fakedlls/printui.dll differ diff --git a/lib64/wine/fakedlls/prntvpt.dll b/lib64/wine/fakedlls/prntvpt.dll new file mode 100644 index 0000000..49f7ffb Binary files /dev/null and b/lib64/wine/fakedlls/prntvpt.dll differ diff --git a/lib64/wine/fakedlls/progman.exe b/lib64/wine/fakedlls/progman.exe new file mode 100644 index 0000000..f645a81 Binary files /dev/null and b/lib64/wine/fakedlls/progman.exe differ diff --git a/lib64/wine/fakedlls/propsys.dll b/lib64/wine/fakedlls/propsys.dll new file mode 100644 index 0000000..cce9bb6 Binary files /dev/null and b/lib64/wine/fakedlls/propsys.dll differ diff --git a/lib64/wine/fakedlls/psapi.dll b/lib64/wine/fakedlls/psapi.dll new file mode 100644 index 0000000..33a6617 Binary files /dev/null and b/lib64/wine/fakedlls/psapi.dll differ diff --git a/lib64/wine/fakedlls/pstorec.dll b/lib64/wine/fakedlls/pstorec.dll new file mode 100644 index 0000000..41c9d8e Binary files /dev/null and b/lib64/wine/fakedlls/pstorec.dll differ diff --git a/lib64/wine/fakedlls/qcap.dll b/lib64/wine/fakedlls/qcap.dll new file mode 100644 index 0000000..05f022e Binary files /dev/null and b/lib64/wine/fakedlls/qcap.dll differ diff --git a/lib64/wine/fakedlls/qedit.dll b/lib64/wine/fakedlls/qedit.dll new file mode 100644 index 0000000..7b59e0b Binary files /dev/null and b/lib64/wine/fakedlls/qedit.dll differ diff --git a/lib64/wine/fakedlls/qmgr.dll b/lib64/wine/fakedlls/qmgr.dll new file mode 100644 index 0000000..11edf8a Binary files /dev/null and b/lib64/wine/fakedlls/qmgr.dll differ diff --git a/lib64/wine/fakedlls/qmgrprxy.dll b/lib64/wine/fakedlls/qmgrprxy.dll new file mode 100644 index 0000000..3cc01b9 Binary files /dev/null and b/lib64/wine/fakedlls/qmgrprxy.dll differ diff --git a/lib64/wine/fakedlls/quartz.dll b/lib64/wine/fakedlls/quartz.dll new file mode 100644 index 0000000..286502a Binary files /dev/null and b/lib64/wine/fakedlls/quartz.dll differ diff --git a/lib64/wine/fakedlls/query.dll b/lib64/wine/fakedlls/query.dll new file mode 100644 index 0000000..4bbc963 Binary files /dev/null and b/lib64/wine/fakedlls/query.dll differ diff --git a/lib64/wine/fakedlls/qwave.dll b/lib64/wine/fakedlls/qwave.dll new file mode 100644 index 0000000..d5bb4bb Binary files /dev/null and b/lib64/wine/fakedlls/qwave.dll differ diff --git a/lib64/wine/fakedlls/rasapi32.dll b/lib64/wine/fakedlls/rasapi32.dll new file mode 100644 index 0000000..80995e4 Binary files /dev/null and b/lib64/wine/fakedlls/rasapi32.dll differ diff --git a/lib64/wine/fakedlls/rasdlg.dll b/lib64/wine/fakedlls/rasdlg.dll new file mode 100644 index 0000000..38266e3 Binary files /dev/null and b/lib64/wine/fakedlls/rasdlg.dll differ diff --git a/lib64/wine/fakedlls/reg.exe b/lib64/wine/fakedlls/reg.exe new file mode 100644 index 0000000..e4f9b44 Binary files /dev/null and b/lib64/wine/fakedlls/reg.exe differ diff --git a/lib64/wine/fakedlls/regapi.dll b/lib64/wine/fakedlls/regapi.dll new file mode 100644 index 0000000..cbb6e54 Binary files /dev/null and b/lib64/wine/fakedlls/regapi.dll differ diff --git a/lib64/wine/fakedlls/regasm.exe b/lib64/wine/fakedlls/regasm.exe new file mode 100644 index 0000000..004b6a5 Binary files /dev/null and b/lib64/wine/fakedlls/regasm.exe differ diff --git a/lib64/wine/fakedlls/regedit.exe b/lib64/wine/fakedlls/regedit.exe new file mode 100644 index 0000000..bb34d99 Binary files /dev/null and b/lib64/wine/fakedlls/regedit.exe differ diff --git a/lib64/wine/fakedlls/regsvcs.exe b/lib64/wine/fakedlls/regsvcs.exe new file mode 100644 index 0000000..004b6a5 Binary files /dev/null and b/lib64/wine/fakedlls/regsvcs.exe differ diff --git a/lib64/wine/fakedlls/regsvr32.exe b/lib64/wine/fakedlls/regsvr32.exe new file mode 100644 index 0000000..69f8da8 Binary files /dev/null and b/lib64/wine/fakedlls/regsvr32.exe differ diff --git a/lib64/wine/fakedlls/resutils.dll b/lib64/wine/fakedlls/resutils.dll new file mode 100644 index 0000000..c3e5500 Binary files /dev/null and b/lib64/wine/fakedlls/resutils.dll differ diff --git a/lib64/wine/fakedlls/riched20.dll b/lib64/wine/fakedlls/riched20.dll new file mode 100644 index 0000000..a25cacb Binary files /dev/null and b/lib64/wine/fakedlls/riched20.dll differ diff --git a/lib64/wine/fakedlls/riched32.dll b/lib64/wine/fakedlls/riched32.dll new file mode 100644 index 0000000..b0fdb7e Binary files /dev/null and b/lib64/wine/fakedlls/riched32.dll differ diff --git a/lib64/wine/fakedlls/rpcrt4.dll b/lib64/wine/fakedlls/rpcrt4.dll new file mode 100644 index 0000000..bec9b4d Binary files /dev/null and b/lib64/wine/fakedlls/rpcrt4.dll differ diff --git a/lib64/wine/fakedlls/rpcss.exe b/lib64/wine/fakedlls/rpcss.exe new file mode 100644 index 0000000..004b6a5 Binary files /dev/null and b/lib64/wine/fakedlls/rpcss.exe differ diff --git a/lib64/wine/fakedlls/rsabase.dll b/lib64/wine/fakedlls/rsabase.dll new file mode 100644 index 0000000..35c196c Binary files /dev/null and b/lib64/wine/fakedlls/rsabase.dll differ diff --git a/lib64/wine/fakedlls/rsaenh.dll b/lib64/wine/fakedlls/rsaenh.dll new file mode 100644 index 0000000..a301929 Binary files /dev/null and b/lib64/wine/fakedlls/rsaenh.dll differ diff --git a/lib64/wine/fakedlls/rstrtmgr.dll b/lib64/wine/fakedlls/rstrtmgr.dll new file mode 100644 index 0000000..e53646a Binary files /dev/null and b/lib64/wine/fakedlls/rstrtmgr.dll differ diff --git a/lib64/wine/fakedlls/rtutils.dll b/lib64/wine/fakedlls/rtutils.dll new file mode 100644 index 0000000..60849f5 Binary files /dev/null and b/lib64/wine/fakedlls/rtutils.dll differ diff --git a/lib64/wine/fakedlls/runas.exe b/lib64/wine/fakedlls/runas.exe new file mode 100644 index 0000000..83a0ade Binary files /dev/null and b/lib64/wine/fakedlls/runas.exe differ diff --git a/lib64/wine/fakedlls/rundll32.exe b/lib64/wine/fakedlls/rundll32.exe new file mode 100644 index 0000000..e264285 Binary files /dev/null and b/lib64/wine/fakedlls/rundll32.exe differ diff --git a/lib64/wine/fakedlls/samlib.dll b/lib64/wine/fakedlls/samlib.dll new file mode 100644 index 0000000..0516eb6 Binary files /dev/null and b/lib64/wine/fakedlls/samlib.dll differ diff --git a/lib64/wine/fakedlls/sane.ds b/lib64/wine/fakedlls/sane.ds new file mode 100644 index 0000000..d3dc99d Binary files /dev/null and b/lib64/wine/fakedlls/sane.ds differ diff --git a/lib64/wine/fakedlls/sapi.dll b/lib64/wine/fakedlls/sapi.dll new file mode 100644 index 0000000..fa6abe1 Binary files /dev/null and b/lib64/wine/fakedlls/sapi.dll differ diff --git a/lib64/wine/fakedlls/sas.dll b/lib64/wine/fakedlls/sas.dll new file mode 100644 index 0000000..77349d3 Binary files /dev/null and b/lib64/wine/fakedlls/sas.dll differ diff --git a/lib64/wine/fakedlls/sc.exe b/lib64/wine/fakedlls/sc.exe new file mode 100644 index 0000000..004b6a5 Binary files /dev/null and b/lib64/wine/fakedlls/sc.exe differ diff --git a/lib64/wine/fakedlls/scarddlg.dll b/lib64/wine/fakedlls/scarddlg.dll new file mode 100644 index 0000000..3644c8e Binary files /dev/null and b/lib64/wine/fakedlls/scarddlg.dll differ diff --git a/lib64/wine/fakedlls/sccbase.dll b/lib64/wine/fakedlls/sccbase.dll new file mode 100644 index 0000000..c82ce03 Binary files /dev/null and b/lib64/wine/fakedlls/sccbase.dll differ diff --git a/lib64/wine/fakedlls/schannel.dll b/lib64/wine/fakedlls/schannel.dll new file mode 100644 index 0000000..2c6150f Binary files /dev/null and b/lib64/wine/fakedlls/schannel.dll differ diff --git a/lib64/wine/fakedlls/schedsvc.dll b/lib64/wine/fakedlls/schedsvc.dll new file mode 100644 index 0000000..d5ec7e2 Binary files /dev/null and b/lib64/wine/fakedlls/schedsvc.dll differ diff --git a/lib64/wine/fakedlls/schtasks.exe b/lib64/wine/fakedlls/schtasks.exe new file mode 100644 index 0000000..004b6a5 Binary files /dev/null and b/lib64/wine/fakedlls/schtasks.exe differ diff --git a/lib64/wine/fakedlls/scrobj.dll b/lib64/wine/fakedlls/scrobj.dll new file mode 100644 index 0000000..145321d Binary files /dev/null and b/lib64/wine/fakedlls/scrobj.dll differ diff --git a/lib64/wine/fakedlls/scrrun.dll b/lib64/wine/fakedlls/scrrun.dll new file mode 100644 index 0000000..5846b6d Binary files /dev/null and b/lib64/wine/fakedlls/scrrun.dll differ diff --git a/lib64/wine/fakedlls/scsiport.sys b/lib64/wine/fakedlls/scsiport.sys new file mode 100644 index 0000000..d379585 Binary files /dev/null and b/lib64/wine/fakedlls/scsiport.sys differ diff --git a/lib64/wine/fakedlls/sdbinst.exe b/lib64/wine/fakedlls/sdbinst.exe new file mode 100644 index 0000000..004b6a5 Binary files /dev/null and b/lib64/wine/fakedlls/sdbinst.exe differ diff --git a/lib64/wine/fakedlls/secedit.exe b/lib64/wine/fakedlls/secedit.exe new file mode 100644 index 0000000..004b6a5 Binary files /dev/null and b/lib64/wine/fakedlls/secedit.exe differ diff --git a/lib64/wine/fakedlls/secur32.dll b/lib64/wine/fakedlls/secur32.dll new file mode 100644 index 0000000..eeb6937 Binary files /dev/null and b/lib64/wine/fakedlls/secur32.dll differ diff --git a/lib64/wine/fakedlls/security.dll b/lib64/wine/fakedlls/security.dll new file mode 100644 index 0000000..6ef8b7d Binary files /dev/null and b/lib64/wine/fakedlls/security.dll differ diff --git a/lib64/wine/fakedlls/sensapi.dll b/lib64/wine/fakedlls/sensapi.dll new file mode 100644 index 0000000..9b7026d Binary files /dev/null and b/lib64/wine/fakedlls/sensapi.dll differ diff --git a/lib64/wine/fakedlls/serialui.dll b/lib64/wine/fakedlls/serialui.dll new file mode 100644 index 0000000..a0e2828 Binary files /dev/null and b/lib64/wine/fakedlls/serialui.dll differ diff --git a/lib64/wine/fakedlls/servicemodelreg.exe b/lib64/wine/fakedlls/servicemodelreg.exe new file mode 100644 index 0000000..004b6a5 Binary files /dev/null and b/lib64/wine/fakedlls/servicemodelreg.exe differ diff --git a/lib64/wine/fakedlls/services.exe b/lib64/wine/fakedlls/services.exe new file mode 100644 index 0000000..004b6a5 Binary files /dev/null and b/lib64/wine/fakedlls/services.exe differ diff --git a/lib64/wine/fakedlls/setupapi.dll b/lib64/wine/fakedlls/setupapi.dll new file mode 100644 index 0000000..7d79517 Binary files /dev/null and b/lib64/wine/fakedlls/setupapi.dll differ diff --git a/lib64/wine/fakedlls/sfc.dll b/lib64/wine/fakedlls/sfc.dll new file mode 100644 index 0000000..109a025 Binary files /dev/null and b/lib64/wine/fakedlls/sfc.dll differ diff --git a/lib64/wine/fakedlls/sfc_os.dll b/lib64/wine/fakedlls/sfc_os.dll new file mode 100644 index 0000000..beba92c Binary files /dev/null and b/lib64/wine/fakedlls/sfc_os.dll differ diff --git a/lib64/wine/fakedlls/shcore.dll b/lib64/wine/fakedlls/shcore.dll new file mode 100644 index 0000000..aa8f807 Binary files /dev/null and b/lib64/wine/fakedlls/shcore.dll differ diff --git a/lib64/wine/fakedlls/shdoclc.dll b/lib64/wine/fakedlls/shdoclc.dll new file mode 100644 index 0000000..f11e956 Binary files /dev/null and b/lib64/wine/fakedlls/shdoclc.dll differ diff --git a/lib64/wine/fakedlls/shdocvw.dll b/lib64/wine/fakedlls/shdocvw.dll new file mode 100644 index 0000000..efd559e Binary files /dev/null and b/lib64/wine/fakedlls/shdocvw.dll differ diff --git a/lib64/wine/fakedlls/shell32.dll b/lib64/wine/fakedlls/shell32.dll new file mode 100644 index 0000000..e4546e9 Binary files /dev/null and b/lib64/wine/fakedlls/shell32.dll differ diff --git a/lib64/wine/fakedlls/shfolder.dll b/lib64/wine/fakedlls/shfolder.dll new file mode 100644 index 0000000..1b778cf Binary files /dev/null and b/lib64/wine/fakedlls/shfolder.dll differ diff --git a/lib64/wine/fakedlls/shlwapi.dll b/lib64/wine/fakedlls/shlwapi.dll new file mode 100644 index 0000000..2a3ea69 Binary files /dev/null and b/lib64/wine/fakedlls/shlwapi.dll differ diff --git a/lib64/wine/fakedlls/shutdown.exe b/lib64/wine/fakedlls/shutdown.exe new file mode 100644 index 0000000..004b6a5 Binary files /dev/null and b/lib64/wine/fakedlls/shutdown.exe differ diff --git a/lib64/wine/fakedlls/slbcsp.dll b/lib64/wine/fakedlls/slbcsp.dll new file mode 100644 index 0000000..61a2cd6 Binary files /dev/null and b/lib64/wine/fakedlls/slbcsp.dll differ diff --git a/lib64/wine/fakedlls/slc.dll b/lib64/wine/fakedlls/slc.dll new file mode 100644 index 0000000..4a6fa9b Binary files /dev/null and b/lib64/wine/fakedlls/slc.dll differ diff --git a/lib64/wine/fakedlls/snmpapi.dll b/lib64/wine/fakedlls/snmpapi.dll new file mode 100644 index 0000000..24ce850 Binary files /dev/null and b/lib64/wine/fakedlls/snmpapi.dll differ diff --git a/lib64/wine/fakedlls/softpub.dll b/lib64/wine/fakedlls/softpub.dll new file mode 100644 index 0000000..d89ca5a Binary files /dev/null and b/lib64/wine/fakedlls/softpub.dll differ diff --git a/lib64/wine/fakedlls/spoolss.dll b/lib64/wine/fakedlls/spoolss.dll new file mode 100644 index 0000000..614aebf Binary files /dev/null and b/lib64/wine/fakedlls/spoolss.dll differ diff --git a/lib64/wine/fakedlls/spoolsv.exe b/lib64/wine/fakedlls/spoolsv.exe new file mode 100644 index 0000000..004b6a5 Binary files /dev/null and b/lib64/wine/fakedlls/spoolsv.exe differ diff --git a/lib64/wine/fakedlls/srclient.dll b/lib64/wine/fakedlls/srclient.dll new file mode 100644 index 0000000..499ba61 Binary files /dev/null and b/lib64/wine/fakedlls/srclient.dll differ diff --git a/lib64/wine/fakedlls/sspicli.dll b/lib64/wine/fakedlls/sspicli.dll new file mode 100644 index 0000000..9369b46 Binary files /dev/null and b/lib64/wine/fakedlls/sspicli.dll differ diff --git a/lib64/wine/fakedlls/start.exe b/lib64/wine/fakedlls/start.exe new file mode 100644 index 0000000..e98b547 Binary files /dev/null and b/lib64/wine/fakedlls/start.exe differ diff --git a/lib64/wine/fakedlls/stdole2.tlb b/lib64/wine/fakedlls/stdole2.tlb new file mode 100644 index 0000000..474080a Binary files /dev/null and b/lib64/wine/fakedlls/stdole2.tlb differ diff --git a/lib64/wine/fakedlls/stdole32.tlb b/lib64/wine/fakedlls/stdole32.tlb new file mode 100644 index 0000000..6ff854b Binary files /dev/null and b/lib64/wine/fakedlls/stdole32.tlb differ diff --git a/lib64/wine/fakedlls/sti.dll b/lib64/wine/fakedlls/sti.dll new file mode 100644 index 0000000..b96343c Binary files /dev/null and b/lib64/wine/fakedlls/sti.dll differ diff --git a/lib64/wine/fakedlls/strmdll.dll b/lib64/wine/fakedlls/strmdll.dll new file mode 100644 index 0000000..a40245d Binary files /dev/null and b/lib64/wine/fakedlls/strmdll.dll differ diff --git a/lib64/wine/fakedlls/subst.exe b/lib64/wine/fakedlls/subst.exe new file mode 100644 index 0000000..004b6a5 Binary files /dev/null and b/lib64/wine/fakedlls/subst.exe differ diff --git a/lib64/wine/fakedlls/svchost.exe b/lib64/wine/fakedlls/svchost.exe new file mode 100644 index 0000000..004b6a5 Binary files /dev/null and b/lib64/wine/fakedlls/svchost.exe differ diff --git a/lib64/wine/fakedlls/svrapi.dll b/lib64/wine/fakedlls/svrapi.dll new file mode 100644 index 0000000..9023e63 Binary files /dev/null and b/lib64/wine/fakedlls/svrapi.dll differ diff --git a/lib64/wine/fakedlls/sxs.dll b/lib64/wine/fakedlls/sxs.dll new file mode 100644 index 0000000..462bc4b Binary files /dev/null and b/lib64/wine/fakedlls/sxs.dll differ diff --git a/lib64/wine/fakedlls/systeminfo.exe b/lib64/wine/fakedlls/systeminfo.exe new file mode 100644 index 0000000..004b6a5 Binary files /dev/null and b/lib64/wine/fakedlls/systeminfo.exe differ diff --git a/lib64/wine/fakedlls/t2embed.dll b/lib64/wine/fakedlls/t2embed.dll new file mode 100644 index 0000000..0da8644 Binary files /dev/null and b/lib64/wine/fakedlls/t2embed.dll differ diff --git a/lib64/wine/fakedlls/tapi32.dll b/lib64/wine/fakedlls/tapi32.dll new file mode 100644 index 0000000..17f1898 Binary files /dev/null and b/lib64/wine/fakedlls/tapi32.dll differ diff --git a/lib64/wine/fakedlls/taskkill.exe b/lib64/wine/fakedlls/taskkill.exe new file mode 100644 index 0000000..7088e3f Binary files /dev/null and b/lib64/wine/fakedlls/taskkill.exe differ diff --git a/lib64/wine/fakedlls/tasklist.exe b/lib64/wine/fakedlls/tasklist.exe new file mode 100644 index 0000000..b9a4cb4 Binary files /dev/null and b/lib64/wine/fakedlls/tasklist.exe differ diff --git a/lib64/wine/fakedlls/taskmgr.exe b/lib64/wine/fakedlls/taskmgr.exe new file mode 100644 index 0000000..4200255 Binary files /dev/null and b/lib64/wine/fakedlls/taskmgr.exe differ diff --git a/lib64/wine/fakedlls/taskschd.dll b/lib64/wine/fakedlls/taskschd.dll new file mode 100644 index 0000000..cafdf77 Binary files /dev/null and b/lib64/wine/fakedlls/taskschd.dll differ diff --git a/lib64/wine/fakedlls/tdh.dll b/lib64/wine/fakedlls/tdh.dll new file mode 100644 index 0000000..3a5d932 Binary files /dev/null and b/lib64/wine/fakedlls/tdh.dll differ diff --git a/lib64/wine/fakedlls/tdi.sys b/lib64/wine/fakedlls/tdi.sys new file mode 100644 index 0000000..d379585 Binary files /dev/null and b/lib64/wine/fakedlls/tdi.sys differ diff --git a/lib64/wine/fakedlls/termsv.exe b/lib64/wine/fakedlls/termsv.exe new file mode 100644 index 0000000..004b6a5 Binary files /dev/null and b/lib64/wine/fakedlls/termsv.exe differ diff --git a/lib64/wine/fakedlls/traffic.dll b/lib64/wine/fakedlls/traffic.dll new file mode 100644 index 0000000..10d7b1c Binary files /dev/null and b/lib64/wine/fakedlls/traffic.dll differ diff --git a/lib64/wine/fakedlls/twain_32.dll b/lib64/wine/fakedlls/twain_32.dll new file mode 100644 index 0000000..09f1861 Binary files /dev/null and b/lib64/wine/fakedlls/twain_32.dll differ diff --git a/lib64/wine/fakedlls/tzres.dll b/lib64/wine/fakedlls/tzres.dll new file mode 100644 index 0000000..1e30731 Binary files /dev/null and b/lib64/wine/fakedlls/tzres.dll differ diff --git a/lib64/wine/fakedlls/ucrtbase.dll b/lib64/wine/fakedlls/ucrtbase.dll new file mode 100644 index 0000000..d08b3f7 Binary files /dev/null and b/lib64/wine/fakedlls/ucrtbase.dll differ diff --git a/lib64/wine/fakedlls/uianimation.dll b/lib64/wine/fakedlls/uianimation.dll new file mode 100644 index 0000000..803f234 Binary files /dev/null and b/lib64/wine/fakedlls/uianimation.dll differ diff --git a/lib64/wine/fakedlls/uiautomationcore.dll b/lib64/wine/fakedlls/uiautomationcore.dll new file mode 100644 index 0000000..f149f88 Binary files /dev/null and b/lib64/wine/fakedlls/uiautomationcore.dll differ diff --git a/lib64/wine/fakedlls/uiribbon.dll b/lib64/wine/fakedlls/uiribbon.dll new file mode 100644 index 0000000..1fcdd71 Binary files /dev/null and b/lib64/wine/fakedlls/uiribbon.dll differ diff --git a/lib64/wine/fakedlls/unicows.dll b/lib64/wine/fakedlls/unicows.dll new file mode 100644 index 0000000..f7df754 Binary files /dev/null and b/lib64/wine/fakedlls/unicows.dll differ diff --git a/lib64/wine/fakedlls/uninstaller.exe b/lib64/wine/fakedlls/uninstaller.exe new file mode 100644 index 0000000..ea17005 Binary files /dev/null and b/lib64/wine/fakedlls/uninstaller.exe differ diff --git a/lib64/wine/fakedlls/unlodctr.exe b/lib64/wine/fakedlls/unlodctr.exe new file mode 100644 index 0000000..004b6a5 Binary files /dev/null and b/lib64/wine/fakedlls/unlodctr.exe differ diff --git a/lib64/wine/fakedlls/updspapi.dll b/lib64/wine/fakedlls/updspapi.dll new file mode 100644 index 0000000..da4fb69 Binary files /dev/null and b/lib64/wine/fakedlls/updspapi.dll differ diff --git a/lib64/wine/fakedlls/url.dll b/lib64/wine/fakedlls/url.dll new file mode 100644 index 0000000..184bb54 Binary files /dev/null and b/lib64/wine/fakedlls/url.dll differ diff --git a/lib64/wine/fakedlls/urlmon.dll b/lib64/wine/fakedlls/urlmon.dll new file mode 100644 index 0000000..2b4a300 Binary files /dev/null and b/lib64/wine/fakedlls/urlmon.dll differ diff --git a/lib64/wine/fakedlls/usbd.sys b/lib64/wine/fakedlls/usbd.sys new file mode 100644 index 0000000..d379585 Binary files /dev/null and b/lib64/wine/fakedlls/usbd.sys differ diff --git a/lib64/wine/fakedlls/user32.dll b/lib64/wine/fakedlls/user32.dll new file mode 100644 index 0000000..1baf5d3 Binary files /dev/null and b/lib64/wine/fakedlls/user32.dll differ diff --git a/lib64/wine/fakedlls/userenv.dll b/lib64/wine/fakedlls/userenv.dll new file mode 100644 index 0000000..91e751c Binary files /dev/null and b/lib64/wine/fakedlls/userenv.dll differ diff --git a/lib64/wine/fakedlls/usp10.dll b/lib64/wine/fakedlls/usp10.dll new file mode 100644 index 0000000..499e282 Binary files /dev/null and b/lib64/wine/fakedlls/usp10.dll differ diff --git a/lib64/wine/fakedlls/uxtheme.dll b/lib64/wine/fakedlls/uxtheme.dll new file mode 100644 index 0000000..36bc172 Binary files /dev/null and b/lib64/wine/fakedlls/uxtheme.dll differ diff --git a/lib64/wine/fakedlls/vbscript.dll b/lib64/wine/fakedlls/vbscript.dll new file mode 100644 index 0000000..1f9a101 Binary files /dev/null and b/lib64/wine/fakedlls/vbscript.dll differ diff --git a/lib64/wine/fakedlls/vcomp.dll b/lib64/wine/fakedlls/vcomp.dll new file mode 100644 index 0000000..19ca821 Binary files /dev/null and b/lib64/wine/fakedlls/vcomp.dll differ diff --git a/lib64/wine/fakedlls/vcomp100.dll b/lib64/wine/fakedlls/vcomp100.dll new file mode 100644 index 0000000..997d5b8 Binary files /dev/null and b/lib64/wine/fakedlls/vcomp100.dll differ diff --git a/lib64/wine/fakedlls/vcomp110.dll b/lib64/wine/fakedlls/vcomp110.dll new file mode 100644 index 0000000..4df15d4 Binary files /dev/null and b/lib64/wine/fakedlls/vcomp110.dll differ diff --git a/lib64/wine/fakedlls/vcomp120.dll b/lib64/wine/fakedlls/vcomp120.dll new file mode 100644 index 0000000..d4b58ab Binary files /dev/null and b/lib64/wine/fakedlls/vcomp120.dll differ diff --git a/lib64/wine/fakedlls/vcomp140.dll b/lib64/wine/fakedlls/vcomp140.dll new file mode 100644 index 0000000..04056d0 Binary files /dev/null and b/lib64/wine/fakedlls/vcomp140.dll differ diff --git a/lib64/wine/fakedlls/vcomp90.dll b/lib64/wine/fakedlls/vcomp90.dll new file mode 100644 index 0000000..3e48e2b Binary files /dev/null and b/lib64/wine/fakedlls/vcomp90.dll differ diff --git a/lib64/wine/fakedlls/vcruntime140.dll b/lib64/wine/fakedlls/vcruntime140.dll new file mode 100644 index 0000000..9bcf9bd Binary files /dev/null and b/lib64/wine/fakedlls/vcruntime140.dll differ diff --git a/lib64/wine/fakedlls/vdmdbg.dll b/lib64/wine/fakedlls/vdmdbg.dll new file mode 100644 index 0000000..2678e97 Binary files /dev/null and b/lib64/wine/fakedlls/vdmdbg.dll differ diff --git a/lib64/wine/fakedlls/version.dll b/lib64/wine/fakedlls/version.dll new file mode 100644 index 0000000..cf55498 Binary files /dev/null and b/lib64/wine/fakedlls/version.dll differ diff --git a/lib64/wine/fakedlls/view.exe b/lib64/wine/fakedlls/view.exe new file mode 100644 index 0000000..5184fe3 Binary files /dev/null and b/lib64/wine/fakedlls/view.exe differ diff --git a/lib64/wine/fakedlls/virtdisk.dll b/lib64/wine/fakedlls/virtdisk.dll new file mode 100644 index 0000000..8827f97 Binary files /dev/null and b/lib64/wine/fakedlls/virtdisk.dll differ diff --git a/lib64/wine/fakedlls/vssapi.dll b/lib64/wine/fakedlls/vssapi.dll new file mode 100644 index 0000000..f1a2de8 Binary files /dev/null and b/lib64/wine/fakedlls/vssapi.dll differ diff --git a/lib64/wine/fakedlls/vulkan-1.dll b/lib64/wine/fakedlls/vulkan-1.dll new file mode 100644 index 0000000..593d955 Binary files /dev/null and b/lib64/wine/fakedlls/vulkan-1.dll differ diff --git a/lib64/wine/fakedlls/wbemdisp.dll b/lib64/wine/fakedlls/wbemdisp.dll new file mode 100644 index 0000000..eba77b3 Binary files /dev/null and b/lib64/wine/fakedlls/wbemdisp.dll differ diff --git a/lib64/wine/fakedlls/wbemprox.dll b/lib64/wine/fakedlls/wbemprox.dll new file mode 100644 index 0000000..f07cab3 Binary files /dev/null and b/lib64/wine/fakedlls/wbemprox.dll differ diff --git a/lib64/wine/fakedlls/wdscore.dll b/lib64/wine/fakedlls/wdscore.dll new file mode 100644 index 0000000..ebb62e7 Binary files /dev/null and b/lib64/wine/fakedlls/wdscore.dll differ diff --git a/lib64/wine/fakedlls/webservices.dll b/lib64/wine/fakedlls/webservices.dll new file mode 100644 index 0000000..a0c7fe4 Binary files /dev/null and b/lib64/wine/fakedlls/webservices.dll differ diff --git a/lib64/wine/fakedlls/wer.dll b/lib64/wine/fakedlls/wer.dll new file mode 100644 index 0000000..24f3d97 Binary files /dev/null and b/lib64/wine/fakedlls/wer.dll differ diff --git a/lib64/wine/fakedlls/wevtapi.dll b/lib64/wine/fakedlls/wevtapi.dll new file mode 100644 index 0000000..666fb24 Binary files /dev/null and b/lib64/wine/fakedlls/wevtapi.dll differ diff --git a/lib64/wine/fakedlls/wevtutil.exe b/lib64/wine/fakedlls/wevtutil.exe new file mode 100644 index 0000000..004b6a5 Binary files /dev/null and b/lib64/wine/fakedlls/wevtutil.exe differ diff --git a/lib64/wine/fakedlls/wiaservc.dll b/lib64/wine/fakedlls/wiaservc.dll new file mode 100644 index 0000000..110cd30 Binary files /dev/null and b/lib64/wine/fakedlls/wiaservc.dll differ diff --git a/lib64/wine/fakedlls/wimgapi.dll b/lib64/wine/fakedlls/wimgapi.dll new file mode 100644 index 0000000..f9876c6 Binary files /dev/null and b/lib64/wine/fakedlls/wimgapi.dll differ diff --git a/lib64/wine/fakedlls/win32k.sys b/lib64/wine/fakedlls/win32k.sys new file mode 100644 index 0000000..d379585 Binary files /dev/null and b/lib64/wine/fakedlls/win32k.sys differ diff --git a/lib64/wine/fakedlls/windowscodecs.dll b/lib64/wine/fakedlls/windowscodecs.dll new file mode 100644 index 0000000..624dd6b Binary files /dev/null and b/lib64/wine/fakedlls/windowscodecs.dll differ diff --git a/lib64/wine/fakedlls/windowscodecsext.dll b/lib64/wine/fakedlls/windowscodecsext.dll new file mode 100644 index 0000000..7db9f6c Binary files /dev/null and b/lib64/wine/fakedlls/windowscodecsext.dll differ diff --git a/lib64/wine/fakedlls/winealsa.drv b/lib64/wine/fakedlls/winealsa.drv new file mode 100644 index 0000000..ce8d3d3 Binary files /dev/null and b/lib64/wine/fakedlls/winealsa.drv differ diff --git a/lib64/wine/fakedlls/wineboot.exe b/lib64/wine/fakedlls/wineboot.exe new file mode 100644 index 0000000..7224416 Binary files /dev/null and b/lib64/wine/fakedlls/wineboot.exe differ diff --git a/lib64/wine/fakedlls/winebrowser.exe b/lib64/wine/fakedlls/winebrowser.exe new file mode 100644 index 0000000..e264285 Binary files /dev/null and b/lib64/wine/fakedlls/winebrowser.exe differ diff --git a/lib64/wine/fakedlls/winebus.sys b/lib64/wine/fakedlls/winebus.sys new file mode 100644 index 0000000..d379585 Binary files /dev/null and b/lib64/wine/fakedlls/winebus.sys differ diff --git a/lib64/wine/fakedlls/winecfg.exe b/lib64/wine/fakedlls/winecfg.exe new file mode 100644 index 0000000..bf540f2 Binary files /dev/null and b/lib64/wine/fakedlls/winecfg.exe differ diff --git a/lib64/wine/fakedlls/wineconsole.exe b/lib64/wine/fakedlls/wineconsole.exe new file mode 100644 index 0000000..bca0f78 Binary files /dev/null and b/lib64/wine/fakedlls/wineconsole.exe differ diff --git a/lib64/wine/fakedlls/wined3d.dll b/lib64/wine/fakedlls/wined3d.dll new file mode 100644 index 0000000..861fe75 Binary files /dev/null and b/lib64/wine/fakedlls/wined3d.dll differ diff --git a/lib64/wine/fakedlls/winedbg.exe b/lib64/wine/fakedlls/winedbg.exe new file mode 100644 index 0000000..dd7be54 Binary files /dev/null and b/lib64/wine/fakedlls/winedbg.exe differ diff --git a/lib64/wine/fakedlls/winedevice.exe b/lib64/wine/fakedlls/winedevice.exe new file mode 100644 index 0000000..e264285 Binary files /dev/null and b/lib64/wine/fakedlls/winedevice.exe differ diff --git a/lib64/wine/fakedlls/winefile.exe b/lib64/wine/fakedlls/winefile.exe new file mode 100644 index 0000000..7d594b6 Binary files /dev/null and b/lib64/wine/fakedlls/winefile.exe differ diff --git a/lib64/wine/fakedlls/winegstreamer.dll b/lib64/wine/fakedlls/winegstreamer.dll new file mode 100644 index 0000000..68f0447 Binary files /dev/null and b/lib64/wine/fakedlls/winegstreamer.dll differ diff --git a/lib64/wine/fakedlls/winehid.sys b/lib64/wine/fakedlls/winehid.sys new file mode 100644 index 0000000..d379585 Binary files /dev/null and b/lib64/wine/fakedlls/winehid.sys differ diff --git a/lib64/wine/fakedlls/winejoystick.drv b/lib64/wine/fakedlls/winejoystick.drv new file mode 100644 index 0000000..55ee4ad Binary files /dev/null and b/lib64/wine/fakedlls/winejoystick.drv differ diff --git a/lib64/wine/fakedlls/winemapi.dll b/lib64/wine/fakedlls/winemapi.dll new file mode 100644 index 0000000..512dc5e Binary files /dev/null and b/lib64/wine/fakedlls/winemapi.dll differ diff --git a/lib64/wine/fakedlls/winemenubuilder.exe b/lib64/wine/fakedlls/winemenubuilder.exe new file mode 100644 index 0000000..e264285 Binary files /dev/null and b/lib64/wine/fakedlls/winemenubuilder.exe differ diff --git a/lib64/wine/fakedlls/winemine.exe b/lib64/wine/fakedlls/winemine.exe new file mode 100644 index 0000000..ddf6d9e Binary files /dev/null and b/lib64/wine/fakedlls/winemine.exe differ diff --git a/lib64/wine/fakedlls/winemsibuilder.exe b/lib64/wine/fakedlls/winemsibuilder.exe new file mode 100644 index 0000000..004b6a5 Binary files /dev/null and b/lib64/wine/fakedlls/winemsibuilder.exe differ diff --git a/lib64/wine/fakedlls/wineoss.drv b/lib64/wine/fakedlls/wineoss.drv new file mode 100644 index 0000000..6b20818 Binary files /dev/null and b/lib64/wine/fakedlls/wineoss.drv differ diff --git a/lib64/wine/fakedlls/winepath.exe b/lib64/wine/fakedlls/winepath.exe new file mode 100644 index 0000000..004b6a5 Binary files /dev/null and b/lib64/wine/fakedlls/winepath.exe differ diff --git a/lib64/wine/fakedlls/wineps.drv b/lib64/wine/fakedlls/wineps.drv new file mode 100644 index 0000000..0e655be Binary files /dev/null and b/lib64/wine/fakedlls/wineps.drv differ diff --git a/lib64/wine/fakedlls/winepulse.drv b/lib64/wine/fakedlls/winepulse.drv new file mode 100644 index 0000000..eb9c5d7 Binary files /dev/null and b/lib64/wine/fakedlls/winepulse.drv differ diff --git a/lib64/wine/fakedlls/winevulkan.dll b/lib64/wine/fakedlls/winevulkan.dll new file mode 100644 index 0000000..a6a03f2 Binary files /dev/null and b/lib64/wine/fakedlls/winevulkan.dll differ diff --git a/lib64/wine/fakedlls/winex11.drv b/lib64/wine/fakedlls/winex11.drv new file mode 100644 index 0000000..bc1f3ca Binary files /dev/null and b/lib64/wine/fakedlls/winex11.drv differ diff --git a/lib64/wine/fakedlls/wing32.dll b/lib64/wine/fakedlls/wing32.dll new file mode 100644 index 0000000..cd79e2e Binary files /dev/null and b/lib64/wine/fakedlls/wing32.dll differ diff --git a/lib64/wine/fakedlls/winhlp32.exe b/lib64/wine/fakedlls/winhlp32.exe new file mode 100644 index 0000000..e767cd9 Binary files /dev/null and b/lib64/wine/fakedlls/winhlp32.exe differ diff --git a/lib64/wine/fakedlls/winhttp.dll b/lib64/wine/fakedlls/winhttp.dll new file mode 100644 index 0000000..4b7c8db Binary files /dev/null and b/lib64/wine/fakedlls/winhttp.dll differ diff --git a/lib64/wine/fakedlls/wininet.dll b/lib64/wine/fakedlls/wininet.dll new file mode 100644 index 0000000..1cfb133 Binary files /dev/null and b/lib64/wine/fakedlls/wininet.dll differ diff --git a/lib64/wine/fakedlls/winmgmt.exe b/lib64/wine/fakedlls/winmgmt.exe new file mode 100644 index 0000000..004b6a5 Binary files /dev/null and b/lib64/wine/fakedlls/winmgmt.exe differ diff --git a/lib64/wine/fakedlls/winmm.dll b/lib64/wine/fakedlls/winmm.dll new file mode 100644 index 0000000..26c940d Binary files /dev/null and b/lib64/wine/fakedlls/winmm.dll differ diff --git a/lib64/wine/fakedlls/winnls32.dll b/lib64/wine/fakedlls/winnls32.dll new file mode 100644 index 0000000..f566720 Binary files /dev/null and b/lib64/wine/fakedlls/winnls32.dll differ diff --git a/lib64/wine/fakedlls/winscard.dll b/lib64/wine/fakedlls/winscard.dll new file mode 100644 index 0000000..e9577ec Binary files /dev/null and b/lib64/wine/fakedlls/winscard.dll differ diff --git a/lib64/wine/fakedlls/winspool.drv b/lib64/wine/fakedlls/winspool.drv new file mode 100644 index 0000000..c207826 Binary files /dev/null and b/lib64/wine/fakedlls/winspool.drv differ diff --git a/lib64/wine/fakedlls/winsta.dll b/lib64/wine/fakedlls/winsta.dll new file mode 100644 index 0000000..22890e8 Binary files /dev/null and b/lib64/wine/fakedlls/winsta.dll differ diff --git a/lib64/wine/fakedlls/wintab32.dll b/lib64/wine/fakedlls/wintab32.dll new file mode 100644 index 0000000..cf8daa9 Binary files /dev/null and b/lib64/wine/fakedlls/wintab32.dll differ diff --git a/lib64/wine/fakedlls/wintrust.dll b/lib64/wine/fakedlls/wintrust.dll new file mode 100644 index 0000000..bdff8e5 Binary files /dev/null and b/lib64/wine/fakedlls/wintrust.dll differ diff --git a/lib64/wine/fakedlls/winusb.dll b/lib64/wine/fakedlls/winusb.dll new file mode 100644 index 0000000..2544fcb Binary files /dev/null and b/lib64/wine/fakedlls/winusb.dll differ diff --git a/lib64/wine/fakedlls/winver.exe b/lib64/wine/fakedlls/winver.exe new file mode 100644 index 0000000..74b1710 Binary files /dev/null and b/lib64/wine/fakedlls/winver.exe differ diff --git a/lib64/wine/fakedlls/wlanapi.dll b/lib64/wine/fakedlls/wlanapi.dll new file mode 100644 index 0000000..640ceb7 Binary files /dev/null and b/lib64/wine/fakedlls/wlanapi.dll differ diff --git a/lib64/wine/fakedlls/wldap32.dll b/lib64/wine/fakedlls/wldap32.dll new file mode 100644 index 0000000..91d03b8 Binary files /dev/null and b/lib64/wine/fakedlls/wldap32.dll differ diff --git a/lib64/wine/fakedlls/wmasf.dll b/lib64/wine/fakedlls/wmasf.dll new file mode 100644 index 0000000..6cc4ea1 Binary files /dev/null and b/lib64/wine/fakedlls/wmasf.dll differ diff --git a/lib64/wine/fakedlls/wmi.dll b/lib64/wine/fakedlls/wmi.dll new file mode 100644 index 0000000..83e29be Binary files /dev/null and b/lib64/wine/fakedlls/wmi.dll differ diff --git a/lib64/wine/fakedlls/wmic.exe b/lib64/wine/fakedlls/wmic.exe new file mode 100644 index 0000000..87d7190 Binary files /dev/null and b/lib64/wine/fakedlls/wmic.exe differ diff --git a/lib64/wine/fakedlls/wmiutils.dll b/lib64/wine/fakedlls/wmiutils.dll new file mode 100644 index 0000000..528970a Binary files /dev/null and b/lib64/wine/fakedlls/wmiutils.dll differ diff --git a/lib64/wine/fakedlls/wmp.dll b/lib64/wine/fakedlls/wmp.dll new file mode 100644 index 0000000..a023a4c Binary files /dev/null and b/lib64/wine/fakedlls/wmp.dll differ diff --git a/lib64/wine/fakedlls/wmphoto.dll b/lib64/wine/fakedlls/wmphoto.dll new file mode 100644 index 0000000..819b39f Binary files /dev/null and b/lib64/wine/fakedlls/wmphoto.dll differ diff --git a/lib64/wine/fakedlls/wmplayer.exe b/lib64/wine/fakedlls/wmplayer.exe new file mode 100644 index 0000000..1df6a94 Binary files /dev/null and b/lib64/wine/fakedlls/wmplayer.exe differ diff --git a/lib64/wine/fakedlls/wmvcore.dll b/lib64/wine/fakedlls/wmvcore.dll new file mode 100644 index 0000000..65aa255 Binary files /dev/null and b/lib64/wine/fakedlls/wmvcore.dll differ diff --git a/lib64/wine/fakedlls/wnaspi32.dll b/lib64/wine/fakedlls/wnaspi32.dll new file mode 100644 index 0000000..82d0b6b Binary files /dev/null and b/lib64/wine/fakedlls/wnaspi32.dll differ diff --git a/lib64/wine/fakedlls/wordpad.exe b/lib64/wine/fakedlls/wordpad.exe new file mode 100644 index 0000000..8a6ba66 Binary files /dev/null and b/lib64/wine/fakedlls/wordpad.exe differ diff --git a/lib64/wine/fakedlls/wow64cpu.dll b/lib64/wine/fakedlls/wow64cpu.dll new file mode 100644 index 0000000..0a23990 Binary files /dev/null and b/lib64/wine/fakedlls/wow64cpu.dll differ diff --git a/lib64/wine/fakedlls/wpc.dll b/lib64/wine/fakedlls/wpc.dll new file mode 100644 index 0000000..8475fe3 Binary files /dev/null and b/lib64/wine/fakedlls/wpc.dll differ diff --git a/lib64/wine/fakedlls/wpcap.dll b/lib64/wine/fakedlls/wpcap.dll new file mode 100644 index 0000000..f6a05fe Binary files /dev/null and b/lib64/wine/fakedlls/wpcap.dll differ diff --git a/lib64/wine/fakedlls/write.exe b/lib64/wine/fakedlls/write.exe new file mode 100644 index 0000000..d1551e5 Binary files /dev/null and b/lib64/wine/fakedlls/write.exe differ diff --git a/lib64/wine/fakedlls/ws2_32.dll b/lib64/wine/fakedlls/ws2_32.dll new file mode 100644 index 0000000..eee046f Binary files /dev/null and b/lib64/wine/fakedlls/ws2_32.dll differ diff --git a/lib64/wine/fakedlls/wscript.exe b/lib64/wine/fakedlls/wscript.exe new file mode 100644 index 0000000..48e97b3 Binary files /dev/null and b/lib64/wine/fakedlls/wscript.exe differ diff --git a/lib64/wine/fakedlls/wsdapi.dll b/lib64/wine/fakedlls/wsdapi.dll new file mode 100644 index 0000000..2ef2158 Binary files /dev/null and b/lib64/wine/fakedlls/wsdapi.dll differ diff --git a/lib64/wine/fakedlls/wshom.ocx b/lib64/wine/fakedlls/wshom.ocx new file mode 100644 index 0000000..9fab189 Binary files /dev/null and b/lib64/wine/fakedlls/wshom.ocx differ diff --git a/lib64/wine/fakedlls/wsnmp32.dll b/lib64/wine/fakedlls/wsnmp32.dll new file mode 100644 index 0000000..1a7533c Binary files /dev/null and b/lib64/wine/fakedlls/wsnmp32.dll differ diff --git a/lib64/wine/fakedlls/wsock32.dll b/lib64/wine/fakedlls/wsock32.dll new file mode 100644 index 0000000..87b71f6 Binary files /dev/null and b/lib64/wine/fakedlls/wsock32.dll differ diff --git a/lib64/wine/fakedlls/wtsapi32.dll b/lib64/wine/fakedlls/wtsapi32.dll new file mode 100644 index 0000000..fa914ee Binary files /dev/null and b/lib64/wine/fakedlls/wtsapi32.dll differ diff --git a/lib64/wine/fakedlls/wuapi.dll b/lib64/wine/fakedlls/wuapi.dll new file mode 100644 index 0000000..087b6d4 Binary files /dev/null and b/lib64/wine/fakedlls/wuapi.dll differ diff --git a/lib64/wine/fakedlls/wuaueng.dll b/lib64/wine/fakedlls/wuaueng.dll new file mode 100644 index 0000000..58ae6df Binary files /dev/null and b/lib64/wine/fakedlls/wuaueng.dll differ diff --git a/lib64/wine/fakedlls/wuauserv.exe b/lib64/wine/fakedlls/wuauserv.exe new file mode 100644 index 0000000..004b6a5 Binary files /dev/null and b/lib64/wine/fakedlls/wuauserv.exe differ diff --git a/lib64/wine/fakedlls/wusa.exe b/lib64/wine/fakedlls/wusa.exe new file mode 100644 index 0000000..004b6a5 Binary files /dev/null and b/lib64/wine/fakedlls/wusa.exe differ diff --git a/lib64/wine/fakedlls/x3daudio1_0.dll b/lib64/wine/fakedlls/x3daudio1_0.dll new file mode 100644 index 0000000..c51617d Binary files /dev/null and b/lib64/wine/fakedlls/x3daudio1_0.dll differ diff --git a/lib64/wine/fakedlls/x3daudio1_1.dll b/lib64/wine/fakedlls/x3daudio1_1.dll new file mode 100644 index 0000000..6de5f74 Binary files /dev/null and b/lib64/wine/fakedlls/x3daudio1_1.dll differ diff --git a/lib64/wine/fakedlls/x3daudio1_2.dll b/lib64/wine/fakedlls/x3daudio1_2.dll new file mode 100644 index 0000000..ada3cf5 Binary files /dev/null and b/lib64/wine/fakedlls/x3daudio1_2.dll differ diff --git a/lib64/wine/fakedlls/x3daudio1_3.dll b/lib64/wine/fakedlls/x3daudio1_3.dll new file mode 100644 index 0000000..0b1c662 Binary files /dev/null and b/lib64/wine/fakedlls/x3daudio1_3.dll differ diff --git a/lib64/wine/fakedlls/x3daudio1_4.dll b/lib64/wine/fakedlls/x3daudio1_4.dll new file mode 100644 index 0000000..54784c5 Binary files /dev/null and b/lib64/wine/fakedlls/x3daudio1_4.dll differ diff --git a/lib64/wine/fakedlls/x3daudio1_5.dll b/lib64/wine/fakedlls/x3daudio1_5.dll new file mode 100644 index 0000000..f3f2d7d Binary files /dev/null and b/lib64/wine/fakedlls/x3daudio1_5.dll differ diff --git a/lib64/wine/fakedlls/x3daudio1_6.dll b/lib64/wine/fakedlls/x3daudio1_6.dll new file mode 100644 index 0000000..bafb9b8 Binary files /dev/null and b/lib64/wine/fakedlls/x3daudio1_6.dll differ diff --git a/lib64/wine/fakedlls/x3daudio1_7.dll b/lib64/wine/fakedlls/x3daudio1_7.dll new file mode 100644 index 0000000..da85743 Binary files /dev/null and b/lib64/wine/fakedlls/x3daudio1_7.dll differ diff --git a/lib64/wine/fakedlls/xapofx1_1.dll b/lib64/wine/fakedlls/xapofx1_1.dll new file mode 100644 index 0000000..361c85b Binary files /dev/null and b/lib64/wine/fakedlls/xapofx1_1.dll differ diff --git a/lib64/wine/fakedlls/xapofx1_2.dll b/lib64/wine/fakedlls/xapofx1_2.dll new file mode 100644 index 0000000..8641ca7 Binary files /dev/null and b/lib64/wine/fakedlls/xapofx1_2.dll differ diff --git a/lib64/wine/fakedlls/xapofx1_3.dll b/lib64/wine/fakedlls/xapofx1_3.dll new file mode 100644 index 0000000..df451f6 Binary files /dev/null and b/lib64/wine/fakedlls/xapofx1_3.dll differ diff --git a/lib64/wine/fakedlls/xapofx1_4.dll b/lib64/wine/fakedlls/xapofx1_4.dll new file mode 100644 index 0000000..47742a2 Binary files /dev/null and b/lib64/wine/fakedlls/xapofx1_4.dll differ diff --git a/lib64/wine/fakedlls/xapofx1_5.dll b/lib64/wine/fakedlls/xapofx1_5.dll new file mode 100644 index 0000000..7a29039 Binary files /dev/null and b/lib64/wine/fakedlls/xapofx1_5.dll differ diff --git a/lib64/wine/fakedlls/xaudio2_0.dll b/lib64/wine/fakedlls/xaudio2_0.dll new file mode 100644 index 0000000..54db292 Binary files /dev/null and b/lib64/wine/fakedlls/xaudio2_0.dll differ diff --git a/lib64/wine/fakedlls/xaudio2_1.dll b/lib64/wine/fakedlls/xaudio2_1.dll new file mode 100644 index 0000000..939d465 Binary files /dev/null and b/lib64/wine/fakedlls/xaudio2_1.dll differ diff --git a/lib64/wine/fakedlls/xaudio2_2.dll b/lib64/wine/fakedlls/xaudio2_2.dll new file mode 100644 index 0000000..26a7b04 Binary files /dev/null and b/lib64/wine/fakedlls/xaudio2_2.dll differ diff --git a/lib64/wine/fakedlls/xaudio2_3.dll b/lib64/wine/fakedlls/xaudio2_3.dll new file mode 100644 index 0000000..adf0815 Binary files /dev/null and b/lib64/wine/fakedlls/xaudio2_3.dll differ diff --git a/lib64/wine/fakedlls/xaudio2_4.dll b/lib64/wine/fakedlls/xaudio2_4.dll new file mode 100644 index 0000000..e2c348d Binary files /dev/null and b/lib64/wine/fakedlls/xaudio2_4.dll differ diff --git a/lib64/wine/fakedlls/xaudio2_5.dll b/lib64/wine/fakedlls/xaudio2_5.dll new file mode 100644 index 0000000..36d8d60 Binary files /dev/null and b/lib64/wine/fakedlls/xaudio2_5.dll differ diff --git a/lib64/wine/fakedlls/xaudio2_6.dll b/lib64/wine/fakedlls/xaudio2_6.dll new file mode 100644 index 0000000..e38c68c Binary files /dev/null and b/lib64/wine/fakedlls/xaudio2_6.dll differ diff --git a/lib64/wine/fakedlls/xaudio2_7.dll b/lib64/wine/fakedlls/xaudio2_7.dll new file mode 100644 index 0000000..ace3141 Binary files /dev/null and b/lib64/wine/fakedlls/xaudio2_7.dll differ diff --git a/lib64/wine/fakedlls/xaudio2_8.dll b/lib64/wine/fakedlls/xaudio2_8.dll new file mode 100644 index 0000000..6e9ff50 Binary files /dev/null and b/lib64/wine/fakedlls/xaudio2_8.dll differ diff --git a/lib64/wine/fakedlls/xaudio2_9.dll b/lib64/wine/fakedlls/xaudio2_9.dll new file mode 100644 index 0000000..97eb378 Binary files /dev/null and b/lib64/wine/fakedlls/xaudio2_9.dll differ diff --git a/lib64/wine/fakedlls/xcopy.exe b/lib64/wine/fakedlls/xcopy.exe new file mode 100644 index 0000000..c6677a8 Binary files /dev/null and b/lib64/wine/fakedlls/xcopy.exe differ diff --git a/lib64/wine/fakedlls/xinput1_1.dll b/lib64/wine/fakedlls/xinput1_1.dll new file mode 100644 index 0000000..b49720c Binary files /dev/null and b/lib64/wine/fakedlls/xinput1_1.dll differ diff --git a/lib64/wine/fakedlls/xinput1_2.dll b/lib64/wine/fakedlls/xinput1_2.dll new file mode 100644 index 0000000..7393106 Binary files /dev/null and b/lib64/wine/fakedlls/xinput1_2.dll differ diff --git a/lib64/wine/fakedlls/xinput1_3.dll b/lib64/wine/fakedlls/xinput1_3.dll new file mode 100644 index 0000000..16ae1f7 Binary files /dev/null and b/lib64/wine/fakedlls/xinput1_3.dll differ diff --git a/lib64/wine/fakedlls/xinput1_4.dll b/lib64/wine/fakedlls/xinput1_4.dll new file mode 100644 index 0000000..22abc37 Binary files /dev/null and b/lib64/wine/fakedlls/xinput1_4.dll differ diff --git a/lib64/wine/fakedlls/xinput9_1_0.dll b/lib64/wine/fakedlls/xinput9_1_0.dll new file mode 100644 index 0000000..77f158c Binary files /dev/null and b/lib64/wine/fakedlls/xinput9_1_0.dll differ diff --git a/lib64/wine/fakedlls/xmllite.dll b/lib64/wine/fakedlls/xmllite.dll new file mode 100644 index 0000000..6cc6d72 Binary files /dev/null and b/lib64/wine/fakedlls/xmllite.dll differ diff --git a/lib64/wine/fakedlls/xolehlp.dll b/lib64/wine/fakedlls/xolehlp.dll new file mode 100644 index 0000000..e7b9f78 Binary files /dev/null and b/lib64/wine/fakedlls/xolehlp.dll differ diff --git a/lib64/wine/fakedlls/xpsprint.dll b/lib64/wine/fakedlls/xpsprint.dll new file mode 100644 index 0000000..0a2719b Binary files /dev/null and b/lib64/wine/fakedlls/xpsprint.dll differ diff --git a/lib64/wine/fakedlls/xpssvcs.dll b/lib64/wine/fakedlls/xpssvcs.dll new file mode 100644 index 0000000..7e86b5f Binary files /dev/null and b/lib64/wine/fakedlls/xpssvcs.dll differ diff --git a/lib64/wine/faultrep.dll.so b/lib64/wine/faultrep.dll.so new file mode 100755 index 0000000..ab32969 Binary files /dev/null and b/lib64/wine/faultrep.dll.so differ diff --git a/lib64/wine/fc.exe.so b/lib64/wine/fc.exe.so new file mode 100755 index 0000000..5887fb8 Binary files /dev/null and b/lib64/wine/fc.exe.so differ diff --git a/lib64/wine/feclient.dll.so b/lib64/wine/feclient.dll.so new file mode 100755 index 0000000..723da3c Binary files /dev/null and b/lib64/wine/feclient.dll.so differ diff --git a/lib64/wine/find.exe.so b/lib64/wine/find.exe.so new file mode 100755 index 0000000..26281e2 Binary files /dev/null and b/lib64/wine/find.exe.so differ diff --git a/lib64/wine/findstr.exe.so b/lib64/wine/findstr.exe.so new file mode 100755 index 0000000..dd83851 Binary files /dev/null and b/lib64/wine/findstr.exe.so differ diff --git a/lib64/wine/fltlib.dll.so b/lib64/wine/fltlib.dll.so new file mode 100755 index 0000000..7203197 Binary files /dev/null and b/lib64/wine/fltlib.dll.so differ diff --git a/lib64/wine/fltmgr.sys.so b/lib64/wine/fltmgr.sys.so new file mode 100755 index 0000000..e33190b Binary files /dev/null and b/lib64/wine/fltmgr.sys.so differ diff --git a/lib64/wine/fntcache.dll.so b/lib64/wine/fntcache.dll.so new file mode 100755 index 0000000..430733a Binary files /dev/null and b/lib64/wine/fntcache.dll.so differ diff --git a/lib64/wine/fontsub.dll.so b/lib64/wine/fontsub.dll.so new file mode 100755 index 0000000..10b7197 Binary files /dev/null and b/lib64/wine/fontsub.dll.so differ diff --git a/lib64/wine/fsutil.exe.so b/lib64/wine/fsutil.exe.so new file mode 100755 index 0000000..785562d Binary files /dev/null and b/lib64/wine/fsutil.exe.so differ diff --git a/lib64/wine/fusion.dll.so b/lib64/wine/fusion.dll.so new file mode 100755 index 0000000..f66d35c Binary files /dev/null and b/lib64/wine/fusion.dll.so differ diff --git a/lib64/wine/fwpuclnt.dll.so b/lib64/wine/fwpuclnt.dll.so new file mode 100755 index 0000000..794dcd9 Binary files /dev/null and b/lib64/wine/fwpuclnt.dll.so differ diff --git a/lib64/wine/gameux.dll.so b/lib64/wine/gameux.dll.so new file mode 100755 index 0000000..31f05a2 Binary files /dev/null and b/lib64/wine/gameux.dll.so differ diff --git a/lib64/wine/gdi32.dll.so b/lib64/wine/gdi32.dll.so new file mode 100755 index 0000000..1b98e6b Binary files /dev/null and b/lib64/wine/gdi32.dll.so differ diff --git a/lib64/wine/gdiplus.dll.so b/lib64/wine/gdiplus.dll.so new file mode 100755 index 0000000..8746d39 Binary files /dev/null and b/lib64/wine/gdiplus.dll.so differ diff --git a/lib64/wine/glu32.dll.so b/lib64/wine/glu32.dll.so new file mode 100755 index 0000000..fb4f184 Binary files /dev/null and b/lib64/wine/glu32.dll.so differ diff --git a/lib64/wine/gphoto2.ds.so b/lib64/wine/gphoto2.ds.so new file mode 100755 index 0000000..fad36cc Binary files /dev/null and b/lib64/wine/gphoto2.ds.so differ diff --git a/lib64/wine/gpkcsp.dll.so b/lib64/wine/gpkcsp.dll.so new file mode 100755 index 0000000..9d77fbf Binary files /dev/null and b/lib64/wine/gpkcsp.dll.so differ diff --git a/lib64/wine/hal.dll.so b/lib64/wine/hal.dll.so new file mode 100755 index 0000000..083bfa7 Binary files /dev/null and b/lib64/wine/hal.dll.so differ diff --git a/lib64/wine/hh.exe.so b/lib64/wine/hh.exe.so new file mode 100755 index 0000000..9d1c488 Binary files /dev/null and b/lib64/wine/hh.exe.so differ diff --git a/lib64/wine/hhctrl.ocx.so b/lib64/wine/hhctrl.ocx.so new file mode 100755 index 0000000..e51c532 Binary files /dev/null and b/lib64/wine/hhctrl.ocx.so differ diff --git a/lib64/wine/hid.dll.so b/lib64/wine/hid.dll.so new file mode 100755 index 0000000..00ac6cc Binary files /dev/null and b/lib64/wine/hid.dll.so differ diff --git a/lib64/wine/hidclass.sys.so b/lib64/wine/hidclass.sys.so new file mode 100755 index 0000000..10b247b Binary files /dev/null and b/lib64/wine/hidclass.sys.so differ diff --git a/lib64/wine/hlink.dll.so b/lib64/wine/hlink.dll.so new file mode 100755 index 0000000..c916e57 Binary files /dev/null and b/lib64/wine/hlink.dll.so differ diff --git a/lib64/wine/hnetcfg.dll.so b/lib64/wine/hnetcfg.dll.so new file mode 100755 index 0000000..222e09e Binary files /dev/null and b/lib64/wine/hnetcfg.dll.so differ diff --git a/lib64/wine/hostname.exe.so b/lib64/wine/hostname.exe.so new file mode 100755 index 0000000..898396c Binary files /dev/null and b/lib64/wine/hostname.exe.so differ diff --git a/lib64/wine/httpapi.dll.so b/lib64/wine/httpapi.dll.so new file mode 100755 index 0000000..1cb5fa9 Binary files /dev/null and b/lib64/wine/httpapi.dll.so differ diff --git a/lib64/wine/icacls.exe.so b/lib64/wine/icacls.exe.so new file mode 100755 index 0000000..d8c4ccb Binary files /dev/null and b/lib64/wine/icacls.exe.so differ diff --git a/lib64/wine/iccvid.dll.so b/lib64/wine/iccvid.dll.so new file mode 100755 index 0000000..51f6fb1 Binary files /dev/null and b/lib64/wine/iccvid.dll.so differ diff --git a/lib64/wine/icinfo.exe.so b/lib64/wine/icinfo.exe.so new file mode 100755 index 0000000..3f979a1 Binary files /dev/null and b/lib64/wine/icinfo.exe.so differ diff --git a/lib64/wine/icmp.dll.so b/lib64/wine/icmp.dll.so new file mode 100755 index 0000000..31d971f Binary files /dev/null and b/lib64/wine/icmp.dll.so differ diff --git a/lib64/wine/ieframe.dll.so b/lib64/wine/ieframe.dll.so new file mode 100755 index 0000000..a466600 Binary files /dev/null and b/lib64/wine/ieframe.dll.so differ diff --git a/lib64/wine/ieproxy.dll.so b/lib64/wine/ieproxy.dll.so new file mode 100755 index 0000000..c5907f2 Binary files /dev/null and b/lib64/wine/ieproxy.dll.so differ diff --git a/lib64/wine/iertutil.dll.so b/lib64/wine/iertutil.dll.so new file mode 100755 index 0000000..66ce16f Binary files /dev/null and b/lib64/wine/iertutil.dll.so differ diff --git a/lib64/wine/iexplore.exe.so b/lib64/wine/iexplore.exe.so new file mode 100755 index 0000000..5977032 Binary files /dev/null and b/lib64/wine/iexplore.exe.so differ diff --git a/lib64/wine/imaadp32.acm.so b/lib64/wine/imaadp32.acm.so new file mode 100755 index 0000000..385ac2e Binary files /dev/null and b/lib64/wine/imaadp32.acm.so differ diff --git a/lib64/wine/imagehlp.dll.so b/lib64/wine/imagehlp.dll.so new file mode 100755 index 0000000..31dc525 Binary files /dev/null and b/lib64/wine/imagehlp.dll.so differ diff --git a/lib64/wine/imm32.dll.so b/lib64/wine/imm32.dll.so new file mode 100755 index 0000000..bb17f5f Binary files /dev/null and b/lib64/wine/imm32.dll.so differ diff --git a/lib64/wine/inetcomm.dll.so b/lib64/wine/inetcomm.dll.so new file mode 100755 index 0000000..7c99c88 Binary files /dev/null and b/lib64/wine/inetcomm.dll.so differ diff --git a/lib64/wine/inetcpl.cpl.so b/lib64/wine/inetcpl.cpl.so new file mode 100755 index 0000000..4828fa8 Binary files /dev/null and b/lib64/wine/inetcpl.cpl.so differ diff --git a/lib64/wine/inetmib1.dll.so b/lib64/wine/inetmib1.dll.so new file mode 100755 index 0000000..26f6e79 Binary files /dev/null and b/lib64/wine/inetmib1.dll.so differ diff --git a/lib64/wine/infosoft.dll.so b/lib64/wine/infosoft.dll.so new file mode 100755 index 0000000..1e8ba73 Binary files /dev/null and b/lib64/wine/infosoft.dll.so differ diff --git a/lib64/wine/initpki.dll.so b/lib64/wine/initpki.dll.so new file mode 100755 index 0000000..c52686a Binary files /dev/null and b/lib64/wine/initpki.dll.so differ diff --git a/lib64/wine/inkobj.dll.so b/lib64/wine/inkobj.dll.so new file mode 100755 index 0000000..9180495 Binary files /dev/null and b/lib64/wine/inkobj.dll.so differ diff --git a/lib64/wine/inseng.dll.so b/lib64/wine/inseng.dll.so new file mode 100755 index 0000000..29f1f38 Binary files /dev/null and b/lib64/wine/inseng.dll.so differ diff --git a/lib64/wine/ipconfig.exe.so b/lib64/wine/ipconfig.exe.so new file mode 100755 index 0000000..56c871a Binary files /dev/null and b/lib64/wine/ipconfig.exe.so differ diff --git a/lib64/wine/iphlpapi.dll.so b/lib64/wine/iphlpapi.dll.so new file mode 100755 index 0000000..9b20a59 Binary files /dev/null and b/lib64/wine/iphlpapi.dll.so differ diff --git a/lib64/wine/iprop.dll.so b/lib64/wine/iprop.dll.so new file mode 100755 index 0000000..dd958e9 Binary files /dev/null and b/lib64/wine/iprop.dll.so differ diff --git a/lib64/wine/irprops.cpl.so b/lib64/wine/irprops.cpl.so new file mode 100755 index 0000000..f7ca025 Binary files /dev/null and b/lib64/wine/irprops.cpl.so differ diff --git a/lib64/wine/itircl.dll.so b/lib64/wine/itircl.dll.so new file mode 100755 index 0000000..73668d8 Binary files /dev/null and b/lib64/wine/itircl.dll.so differ diff --git a/lib64/wine/itss.dll.so b/lib64/wine/itss.dll.so new file mode 100755 index 0000000..265ef9a Binary files /dev/null and b/lib64/wine/itss.dll.so differ diff --git a/lib64/wine/joy.cpl.so b/lib64/wine/joy.cpl.so new file mode 100755 index 0000000..2483263 Binary files /dev/null and b/lib64/wine/joy.cpl.so differ diff --git a/lib64/wine/jscript.dll.so b/lib64/wine/jscript.dll.so new file mode 100755 index 0000000..300df0d Binary files /dev/null and b/lib64/wine/jscript.dll.so differ diff --git a/lib64/wine/jsproxy.dll.so b/lib64/wine/jsproxy.dll.so new file mode 100755 index 0000000..121eaba Binary files /dev/null and b/lib64/wine/jsproxy.dll.so differ diff --git a/lib64/wine/kerberos.dll.so b/lib64/wine/kerberos.dll.so new file mode 100755 index 0000000..3e453ad Binary files /dev/null and b/lib64/wine/kerberos.dll.so differ diff --git a/lib64/wine/kernel32.dll.so b/lib64/wine/kernel32.dll.so new file mode 100755 index 0000000..71fcc11 Binary files /dev/null and b/lib64/wine/kernel32.dll.so differ diff --git a/lib64/wine/kernelbase.dll.so b/lib64/wine/kernelbase.dll.so new file mode 100755 index 0000000..64c3d01 Binary files /dev/null and b/lib64/wine/kernelbase.dll.so differ diff --git a/lib64/wine/ksecdd.sys.so b/lib64/wine/ksecdd.sys.so new file mode 100755 index 0000000..5936b9e Binary files /dev/null and b/lib64/wine/ksecdd.sys.so differ diff --git a/lib64/wine/ksuser.dll.so b/lib64/wine/ksuser.dll.so new file mode 100755 index 0000000..f4b2054 Binary files /dev/null and b/lib64/wine/ksuser.dll.so differ diff --git a/lib64/wine/ktmw32.dll.so b/lib64/wine/ktmw32.dll.so new file mode 100755 index 0000000..1851c45 Binary files /dev/null and b/lib64/wine/ktmw32.dll.so differ diff --git a/lib64/wine/l3codeca.acm.so b/lib64/wine/l3codeca.acm.so new file mode 100755 index 0000000..52e8264 Binary files /dev/null and b/lib64/wine/l3codeca.acm.so differ diff --git a/lib64/wine/libaclui.def b/lib64/wine/libaclui.def new file mode 100644 index 0000000..a54ac9f --- /dev/null +++ b/lib64/wine/libaclui.def @@ -0,0 +1,8 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/aclui/aclui.spec; do not edit! + +LIBRARY aclui.dll + +EXPORTS + CreateSecurityPage @1 + EditSecurity @2 + IID_ISecurityInformation @3 DATA diff --git a/lib64/wine/libactiveds.def b/lib64/wine/libactiveds.def new file mode 100644 index 0000000..c593137 --- /dev/null +++ b/lib64/wine/libactiveds.def @@ -0,0 +1,29 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/activeds/activeds.spec; do not edit! + +LIBRARY activeds.dll + +EXPORTS + ADsGetObject @3 + ADsBuildEnumerator @4 + ADsFreeEnumerator @5 + ADsEnumerateNext @6 + ADsBuildVarArrayStr @7 + ADsBuildVarArrayInt @8 + ADsOpenObject @9 + ADsSetLastError @12 + ADsGetLastError @13 + AllocADsMem @14 + FreeADsMem @15 + ReallocADsMem @16 + AllocADsStr @17 + FreeADsStr @18 + ReallocADsStr @19 + ADsEncodeBinaryData @20 + PropVariantToAdsType @21 PRIVATE + AdsTypeToPropVariant @22 PRIVATE + AdsFreeAdsValues @23 PRIVATE + ADsDecodeBinaryData @24 PRIVATE + AdsTypeToPropVariant2 @25 PRIVATE + PropVariantToAdsType2 @26 PRIVATE + ConvertSecDescriptorToVariant @27 PRIVATE + ConvertSecurityDescriptorToSecDes @28 PRIVATE diff --git a/lib64/wine/libadsiid.a b/lib64/wine/libadsiid.a new file mode 100644 index 0000000..5283d7a Binary files /dev/null and b/lib64/wine/libadsiid.a differ diff --git a/lib64/wine/libadvapi32.def b/lib64/wine/libadvapi32.def new file mode 100644 index 0000000..c542eb0 --- /dev/null +++ b/lib64/wine/libadvapi32.def @@ -0,0 +1,569 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/advapi32/advapi32.spec; do not edit! + +LIBRARY advapi32.dll + +EXPORTS + A_SHAFinal @1 + A_SHAInit @2 + A_SHAUpdate @3 + AbortSystemShutdownA @4 + AbortSystemShutdownW @5 + AccessCheck @6 + AccessCheckAndAuditAlarmA @7 + AccessCheckAndAuditAlarmW @8 + AccessCheckByType @9 + AddAccessAllowedAce @10 + AddAccessAllowedAceEx @11 + AddAccessAllowedObjectAce @12 + AddAccessDeniedAce @13 + AddAccessDeniedAceEx @14 + AddAccessDeniedObjectAce @15 + AddAce @16 + AddAuditAccessAce @17 + AddAuditAccessAceEx @18 + AddAuditAccessObjectAce @19 + AddMandatoryAce @20 + AdjustTokenGroups @21 + AdjustTokenPrivileges @22 + AllocateAndInitializeSid @23 + AllocateLocallyUniqueId @24 + AreAllAccessesGranted @25 + AreAnyAccessesGranted @26 + AuditQuerySystemPolicy @27 + BackupEventLogA @28 + BackupEventLogW @29 + BuildExplicitAccessWithNameA @30 + BuildExplicitAccessWithNameW @31 + BuildSecurityDescriptorA @32 + BuildSecurityDescriptorW @33 + BuildTrusteeWithNameA @34 + BuildTrusteeWithNameW @35 + BuildTrusteeWithObjectsAndNameA @36 + BuildTrusteeWithObjectsAndNameW @37 + BuildTrusteeWithObjectsAndSidA @38 + BuildTrusteeWithObjectsAndSidW @39 + BuildTrusteeWithSidA @40 + BuildTrusteeWithSidW @41 + ChangeServiceConfig2A @42 + ChangeServiceConfig2W @43 + ChangeServiceConfigA @44 + ChangeServiceConfigW @45 + CheckTokenMembership @46 + ClearEventLogA @47 + ClearEventLogW @48 + CloseEncryptedFileRaw @49 + CloseEventLog @50 + CloseServiceHandle @51 + CloseTrace @52 + CommandLineFromMsiDescriptor @53 + ControlService @54 + ControlTraceA @55 + ControlTraceW @56 + ConvertSecurityDescriptorToStringSecurityDescriptorA @57 + ConvertSecurityDescriptorToStringSecurityDescriptorW @58 + ConvertSidToStringSidA @59 + ConvertSidToStringSidW @60 + ConvertStringSecurityDescriptorToSecurityDescriptorA @61 + ConvertStringSecurityDescriptorToSecurityDescriptorW @62 + ConvertStringSidToSidA @63 + ConvertStringSidToSidW @64 + ConvertToAutoInheritPrivateObjectSecurity @65 + CopySid @66 + CreatePrivateObjectSecurity @67 + CreatePrivateObjectSecurityEx @68 + CreatePrivateObjectSecurityWithMultipleInheritance @69 + CreateProcessAsUserA=kernel32.CreateProcessAsUserA @70 + CreateProcessAsUserW=kernel32.CreateProcessAsUserW @71 + CreateProcessWithLogonW @72 + CreateProcessWithTokenW @73 + CreateRestrictedToken @74 + CreateServiceA @75 + CreateServiceW @76 + CreateWellKnownSid @77 + CredDeleteA @78 + CredDeleteW @79 + CredEnumerateA @80 + CredEnumerateW @81 + CredFree @82 + CredGetSessionTypes @83 + CredIsMarshaledCredentialA @84 + CredIsMarshaledCredentialW @85 + CredMarshalCredentialA @86 + CredMarshalCredentialW @87 + CredProfileLoaded @88 PRIVATE + CredReadA @89 + CredReadDomainCredentialsA @90 + CredReadDomainCredentialsW @91 + CredReadW @92 + CredUnmarshalCredentialA @93 + CredUnmarshalCredentialW @94 + CredWriteA @95 + CredWriteW @96 + CryptAcquireContextA @97 + CryptAcquireContextW @98 + CryptContextAddRef @99 + CryptCreateHash @100 + CryptDecrypt @101 + CryptDeriveKey @102 + CryptDestroyHash @103 + CryptDestroyKey @104 + CryptDuplicateHash @105 + CryptDuplicateKey @106 + CryptEncrypt @107 + CryptEnumProviderTypesA @108 + CryptEnumProviderTypesW @109 + CryptEnumProvidersA @110 + CryptEnumProvidersW @111 + CryptExportKey @112 + CryptGenKey @113 + CryptGenRandom @114 + CryptGetDefaultProviderA @115 + CryptGetDefaultProviderW @116 + CryptGetHashParam @117 + CryptGetKeyParam @118 + CryptGetProvParam @119 + CryptGetUserKey @120 + CryptHashData @121 + CryptHashSessionKey @122 + CryptImportKey @123 + CryptReleaseContext @124 + CryptSetHashParam @125 + CryptSetKeyParam @126 + CryptSetProvParam @127 + CryptSetProviderA @128 + CryptSetProviderExA @129 + CryptSetProviderExW @130 + CryptSetProviderW @131 + CryptSignHashA @132 + CryptSignHashW @133 + CryptVerifySignatureA @134 + CryptVerifySignatureW @135 + DecryptFileA @136 + DecryptFileW @137 + DeleteAce @138 + DeleteService @139 + DeregisterEventSource @140 + DestroyPrivateObjectSecurity @141 + DuplicateToken @142 + DuplicateTokenEx @143 + ElfDeregisterEventSource @144 PRIVATE + ElfDeregisterEventSourceW @145 PRIVATE + ElfRegisterEventSourceW @146 PRIVATE + ElfReportEventW @147 PRIVATE + EnableTrace @148 + EnableTraceEx @149 + EnableTraceEx2 @150 + EncryptFileA @151 + EncryptFileW @152 + EnumDependentServicesA @153 + EnumDependentServicesW @154 + EnumServiceGroupA @155 PRIVATE + EnumServiceGroupW @156 PRIVATE + EnumServicesStatusA @157 + EnumServicesStatusExA @158 + EnumServicesStatusExW @159 + EnumServicesStatusW @160 + EnumerateTraceGuids @161 + EqualPrefixSid @162 + EqualSid @163 + EventActivityIdControl @164 + EventEnabled=ntdll.EtwEventEnabled @165 + EventProviderEnabled @166 + EventRegister=ntdll.EtwEventRegister @167 + EventSetInformation=ntdll.EtwEventSetInformation @168 + EventUnregister=ntdll.EtwEventUnregister @169 + EventWrite=ntdll.EtwEventWrite @170 + EventWriteTransfer @171 + FileEncryptionStatusA @172 + FileEncryptionStatusW @173 + FindFirstFreeAce @174 + FlushTraceA @175 + FlushTraceW @176 + FreeSid @177 + GetAce @178 + GetAclInformation @179 + GetAuditedPermissionsFromAclA @180 + GetAuditedPermissionsFromAclW @181 + GetCurrentHwProfileA @182 + GetCurrentHwProfileW @183 + GetDynamicTimeZoneInformationEffectiveYears=kernel32.GetDynamicTimeZoneInformationEffectiveYears @184 + GetEffectiveRightsFromAclA @185 + GetEffectiveRightsFromAclW @186 + GetEventLogInformation @187 + GetExplicitEntriesFromAclA @188 + GetExplicitEntriesFromAclW @189 + GetFileSecurityA @190 + GetFileSecurityW @191 + GetKernelObjectSecurity @192 + GetLengthSid @193 + GetMangledSiteSid @194 PRIVATE + GetNamedSecurityInfoA @195 + GetNamedSecurityInfoExA @196 + GetNamedSecurityInfoExW @197 + GetNamedSecurityInfoW @198 + GetNumberOfEventLogRecords @199 + GetOldestEventLogRecord @200 + GetPrivateObjectSecurity @201 + GetSecurityDescriptorControl @202 + GetSecurityDescriptorDacl @203 + GetSecurityDescriptorGroup @204 + GetSecurityDescriptorLength @205 + GetSecurityDescriptorOwner @206 + GetSecurityDescriptorSacl @207 + GetSecurityInfo @208 + GetSecurityInfoExA @209 + GetSecurityInfoExW @210 + GetServiceDisplayNameA @211 + GetServiceDisplayNameW @212 + GetServiceKeyNameA @213 + GetServiceKeyNameW @214 + GetSidIdentifierAuthority @215 + GetSidLengthRequired @216 + GetSidSubAuthority @217 + GetSidSubAuthorityCount @218 + GetSiteSidFromToken @219 PRIVATE + GetTokenInformation @220 + GetTraceEnableFlags @221 + GetTraceEnableLevel @222 + GetTraceLoggerHandle @223 + GetTrusteeFormA @224 + GetTrusteeFormW @225 + GetTrusteeNameA @226 + GetTrusteeNameW @227 + GetTrusteeTypeA @228 + GetTrusteeTypeW @229 + GetUserNameA @230 + GetUserNameW @231 + GetWindowsAccountDomainSid @232 + I_ScSetServiceBit @233 PRIVATE + I_ScSetServiceBitsA @234 PRIVATE + ImpersonateAnonymousToken @235 + ImpersonateLoggedOnUser @236 + ImpersonateNamedPipeClient @237 + ImpersonateSelf @238 + InitializeAcl @239 + InitializeSecurityDescriptor @240 + InitializeSid @241 + InitiateSystemShutdownA @242 + InitiateSystemShutdownExA @243 + InitiateSystemShutdownExW @244 + InitiateSystemShutdownW @245 + InstallApplication @246 PRIVATE + IsProcessRestricted @247 PRIVATE + IsTextUnicode @248 + IsTokenRestricted @249 + IsValidAcl @250 + IsValidSecurityDescriptor @251 + IsValidSid @252 + IsWellKnownSid @253 + LockServiceDatabase @254 + LogonUserA @255 + LogonUserW @256 + LookupAccountNameA @257 + LookupAccountNameW @258 + LookupAccountSidA @259 + LookupAccountSidW @260 + LookupPrivilegeDisplayNameA @261 + LookupPrivilegeDisplayNameW @262 + LookupPrivilegeNameA @263 + LookupPrivilegeNameW @264 + LookupPrivilegeValueA @265 + LookupPrivilegeValueW @266 + LookupSecurityDescriptorPartsA @267 + LookupSecurityDescriptorPartsW @268 + LsaAddAccountRights @269 + LsaAddPrivilegesToAccount @270 PRIVATE + LsaClose @271 + LsaCreateAccount @272 PRIVATE + LsaCreateSecret @273 PRIVATE + LsaCreateTrustedDomain @274 PRIVATE + LsaCreateTrustedDomainEx @275 + LsaDelete @276 PRIVATE + LsaDeleteTrustedDomain @277 + LsaEnumerateAccountRights @278 + LsaEnumerateAccounts @279 PRIVATE + LsaEnumerateAccountsWithUserRight @280 + LsaEnumeratePrivileges @281 PRIVATE + LsaEnumeratePrivilegesOfAccount @282 PRIVATE + LsaEnumerateTrustedDomains @283 + LsaEnumerateTrustedDomainsEx @284 + LsaFreeMemory @285 + LsaGetSystemAccessAccount @286 PRIVATE + LsaICLookupNames @287 PRIVATE + LsaICLookupSids @288 PRIVATE + LsaLookupNames @289 + LsaLookupNames2 @290 + LsaLookupPrivilegeDisplayName @291 + LsaLookupPrivilegeName @292 + LsaLookupSids @293 + LsaNtStatusToWinError @294 + LsaOpenAccount @295 PRIVATE + LsaOpenPolicy @296 + LsaOpenSecret @297 PRIVATE + LsaOpenTrustedDomain @298 PRIVATE + LsaOpenTrustedDomainByName @299 + LsaQueryInfoTrustedDomain @300 PRIVATE + LsaQueryInformationPolicy @301 + LsaQuerySecret @302 PRIVATE + LsaQueryTrustedDomainInfo @303 + LsaQueryTrustedDomainInfoByName @304 + LsaRegisterPolicyChangeNotification @305 + LsaRemoveAccountRights @306 + LsaRemovePrivilegesFromAccount @307 PRIVATE + LsaRetrievePrivateData @308 + LsaSetInformationPolicy @309 + LsaSetInformationTrustedDomain @310 PRIVATE + LsaSetSecret @311 + LsaSetSystemAccessAccount @312 PRIVATE + LsaSetTrustedDomainInfoByName @313 + LsaSetTrustedDomainInformation @314 + LsaStorePrivateData @315 + LsaUnregisterPolicyChangeNotification @316 + MD4Final @317 + MD4Init @318 + MD4Update @319 + MD5Final @320 + MD5Init @321 + MD5Update @322 + MakeAbsoluteSD @323 + MakeSelfRelativeSD @324 + MapGenericMask @325 + NotifyBootConfigStatus @326 + NotifyChangeEventLog @327 + NotifyServiceStatusChangeW @328 + ObjectCloseAuditAlarmA @329 + ObjectCloseAuditAlarmW @330 + ObjectDeleteAuditAlarmW @331 + ObjectOpenAuditAlarmA @332 + ObjectOpenAuditAlarmW @333 + ObjectPrivilegeAuditAlarmA @334 + ObjectPrivilegeAuditAlarmW @335 + OpenBackupEventLogA @336 + OpenBackupEventLogW @337 + OpenEncryptedFileRawA @338 + OpenEncryptedFileRawW @339 + OpenEventLogA @340 + OpenEventLogW @341 + OpenProcessToken @342 + OpenSCManagerA @343 + OpenSCManagerW @344 + OpenServiceA @345 + OpenServiceW @346 + OpenThreadToken @347 + OpenTraceA @348 + OpenTraceW @349 + PerfCreateInstance @350 + PerfDeleteInstance @351 + PerfSetCounterRefValue @352 + PerfSetCounterSetInfo @353 + PerfStartProvider @354 + PerfStartProviderEx @355 + PerfStopProvider @356 + PrivilegeCheck @357 + PrivilegedServiceAuditAlarmA @358 + PrivilegedServiceAuditAlarmW @359 + ProcessTrace @360 + QueryAllTracesA @361 + QueryAllTracesW @362 + QueryServiceConfig2A @363 + QueryServiceConfig2W @364 + QueryServiceConfigA @365 + QueryServiceConfigW @366 + QueryServiceLockStatusA @367 + QueryServiceLockStatusW @368 + QueryServiceObjectSecurity @369 + QueryServiceStatus @370 + QueryServiceStatusEx @371 + QueryTraceW @372 + QueryWindows31FilesMigration @373 + ReadEncryptedFileRaw @374 + ReadEventLogA @375 + ReadEventLogW @376 + RegCloseKey @377 + RegConnectRegistryA @378 + RegConnectRegistryW @379 + RegCopyTreeA @380 + RegCopyTreeW @381 + RegCreateKeyA @382 + RegCreateKeyExA @383 + RegCreateKeyExW @384 + RegCreateKeyTransactedA @385 + RegCreateKeyTransactedW @386 + RegCreateKeyW @387 + RegDeleteKeyA @388 + RegDeleteKeyExA @389 + RegDeleteKeyExW @390 + RegDeleteKeyValueA @391 + RegDeleteKeyValueW @392 + RegDeleteKeyW @393 + RegDeleteTreeA @394 + RegDeleteTreeW @395 + RegDeleteValueA @396 + RegDeleteValueW @397 + RegDisablePredefinedCache @398 + RegDisableReflectionKey @399 + RegEnumKeyA @400 + RegEnumKeyExA @401 + RegEnumKeyExW @402 + RegEnumKeyW @403 + RegEnumValueA @404 + RegEnumValueW @405 + RegFlushKey @406 + RegGetKeySecurity @407 + RegGetValueA @408 + RegGetValueW @409 + RegLoadAppKeyA @410 + RegLoadAppKeyW @411 + RegLoadKeyA @412 + RegLoadKeyW @413 + RegLoadMUIStringA @414 + RegLoadMUIStringW @415 + RegNotifyChangeKeyValue @416 + RegOpenCurrentUser @417 + RegOpenKeyA @418 + RegOpenKeyExA @419 + RegOpenKeyExW @420 + RegOpenKeyW @421 + RegOpenUserClassesRoot @422 + RegOverridePredefKey @423 + RegQueryInfoKeyA @424 + RegQueryInfoKeyW @425 + RegQueryMultipleValuesA @426 + RegQueryMultipleValuesW @427 + RegQueryReflectionKey @428 + RegQueryValueA @429 + RegQueryValueExA @430 + RegQueryValueExW @431 + RegQueryValueW @432 + RegRemapPreDefKey @433 PRIVATE + RegReplaceKeyA @434 + RegReplaceKeyW @435 + RegRestoreKeyA @436 + RegRestoreKeyW @437 + RegSaveKeyA @438 + RegSaveKeyExA @439 + RegSaveKeyExW @440 + RegSaveKeyW @441 + RegSetKeySecurity @442 + RegSetKeyValueA @443 + RegSetKeyValueW @444 + RegSetValueA @445 + RegSetValueExA @446 + RegSetValueExW @447 + RegSetValueW @448 + RegUnLoadKeyA @449 + RegUnLoadKeyW @450 + RegisterEventSourceA @451 + RegisterEventSourceW @452 + RegisterServiceCtrlHandlerA @453 + RegisterServiceCtrlHandlerExA @454 + RegisterServiceCtrlHandlerExW @455 + RegisterServiceCtrlHandlerW @456 + RegisterTraceGuidsA=ntdll.EtwRegisterTraceGuidsA @457 + RegisterTraceGuidsW=ntdll.EtwRegisterTraceGuidsW @458 + RegisterWaitChainCOMCallback @459 + ReportEventA @460 + ReportEventW @461 + RevertToSelf @462 + SaferCloseLevel @463 + SaferComputeTokenFromLevel @464 + SaferCreateLevel @465 + SaferGetPolicyInformation @466 + SaferIdentifyLevel @467 + SaferSetLevelInformation @468 + SetAclInformation @469 + SetEntriesInAclA @470 + SetEntriesInAclW @471 + SetFileSecurityA @472 + SetFileSecurityW @473 + SetKernelObjectSecurity @474 + SetNamedSecurityInfoA @475 + SetNamedSecurityInfoW @476 + SetPrivateObjectSecurity @477 + SetSecurityDescriptorControl @478 + SetSecurityDescriptorDacl @479 + SetSecurityDescriptorGroup @480 + SetSecurityDescriptorOwner @481 + SetSecurityDescriptorSacl @482 + SetSecurityInfo @483 + SetServiceBits @484 + SetServiceObjectSecurity @485 + SetServiceStatus @486 + SetThreadToken @487 + SetTokenInformation @488 + StartServiceA @489 + StartServiceCtrlDispatcherA @490 + StartServiceCtrlDispatcherW @491 + StartServiceW @492 + StartTraceA @493 + StartTraceW @494 + StopTraceA @495 + StopTraceW @496 + SynchronizeWindows31FilesAndWindowsNTRegistry @497 + SystemFunction001 @498 + SystemFunction002 @499 + SystemFunction003 @500 + SystemFunction004 @501 + SystemFunction005 @502 + SystemFunction006 @503 + SystemFunction007 @504 + SystemFunction008 @505 + SystemFunction009 @506 + SystemFunction010 @507 + SystemFunction011=SystemFunction010 @508 + SystemFunction012 @509 + SystemFunction013 @510 + SystemFunction014=SystemFunction012 @511 + SystemFunction015=SystemFunction013 @512 + SystemFunction016=SystemFunction012 @513 + SystemFunction017=SystemFunction013 @514 + SystemFunction018=SystemFunction012 @515 + SystemFunction019=SystemFunction013 @516 + SystemFunction020=SystemFunction012 @517 + SystemFunction021=SystemFunction013 @518 + SystemFunction022=SystemFunction012 @519 + SystemFunction023=SystemFunction013 @520 + SystemFunction024 @521 + SystemFunction025 @522 + SystemFunction026=SystemFunction024 @523 + SystemFunction027=SystemFunction025 @524 + SystemFunction028 @525 PRIVATE + SystemFunction029 @526 PRIVATE + SystemFunction030 @527 + SystemFunction031=SystemFunction030 @528 + SystemFunction032 @529 + SystemFunction033 @530 PRIVATE + SystemFunction034 @531 PRIVATE + SystemFunction035 @532 + SystemFunction036 @533 + SystemFunction040 @534 + SystemFunction041 @535 + TraceEvent @536 + TraceEventInstance @537 PRIVATE + TraceMessage @538 + TraceMessageVa @539 + TraceSetInformation @540 + TreeResetNamedSecurityInfoW @541 + UnlockServiceDatabase @542 + UnregisterTraceGuids=ntdll.EtwUnregisterTraceGuids @543 + UpdateTraceA @544 PRIVATE + UpdateTraceW @545 PRIVATE + WdmWmiServiceMain @546 PRIVATE + WmiCloseBlock @547 PRIVATE + WmiExecuteMethodA @548 + WmiExecuteMethodW @549 + WmiFreeBuffer @550 + WmiMofEnumerateResourcesA @551 + WmiMofEnumerateResourcesW @552 + WmiNotificationRegistrationA @553 + WmiNotificationRegistrationW @554 + WmiOpenBlock @555 + WmiQueryAllDataA @556 + WmiQueryAllDataW @557 + WmiQueryGuidInformation @558 + WmiQuerySingleInstanceW @559 PRIVATE + WmiSetSingleInstanceA @560 + WmiSetSingleInstanceW @561 + WmiSetSingleItemA @562 + WmiSetSingleItemW @563 + WriteEncryptedFileRaw @564 diff --git a/lib64/wine/libadvpack.def b/lib64/wine/libadvpack.def new file mode 100644 index 0000000..adc72c1 --- /dev/null +++ b/lib64/wine/libadvpack.def @@ -0,0 +1,87 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/advpack/advpack.spec; do not edit! + +LIBRARY advpack.dll + +EXPORTS + AddDelBackupEntry=AddDelBackupEntryA @1 + AddDelBackupEntryA @2 + AddDelBackupEntryW @3 + AdvInstallFile=AdvInstallFileA @4 + AdvInstallFileA @5 + AdvInstallFileW @6 + CloseINFEngine @7 + DelNode=DelNodeA @8 + DelNodeA @9 + DelNodeRunDLL32=DelNodeRunDLL32A @10 + DelNodeRunDLL32A @11 + DelNodeRunDLL32W @12 + DelNodeW @13 + DllMain @14 PRIVATE + DoInfInstall @15 + ExecuteCab=ExecuteCabA @16 + ExecuteCabA @17 + ExecuteCabW @18 + ExtractFiles=ExtractFilesA @19 + ExtractFilesA @20 + ExtractFilesW @21 + FileSaveMarkNotExist=FileSaveMarkNotExistA @22 + FileSaveMarkNotExistA @23 + FileSaveMarkNotExistW @24 + FileSaveRestore=FileSaveRestoreA @25 + FileSaveRestoreA @26 + FileSaveRestoreOnINF=FileSaveRestoreOnINFA @27 + FileSaveRestoreOnINFA @28 + FileSaveRestoreOnINFW @29 + FileSaveRestoreW @30 + GetVersionFromFile=GetVersionFromFileA @31 + GetVersionFromFileA @32 + GetVersionFromFileEx=GetVersionFromFileExA @33 + GetVersionFromFileExA @34 + GetVersionFromFileExW @35 + GetVersionFromFileW @36 + IsNTAdmin @37 + LaunchINFSection=LaunchINFSectionA @38 + LaunchINFSectionA @39 + LaunchINFSectionEx=LaunchINFSectionExA @40 + LaunchINFSectionExA @41 + LaunchINFSectionExW @42 + LaunchINFSectionW @43 + NeedReboot @44 + NeedRebootInit @45 + OpenINFEngine=OpenINFEngineA @46 + OpenINFEngineA @47 + OpenINFEngineW @48 + RebootCheckOnInstall=RebootCheckOnInstallA @49 + RebootCheckOnInstallA @50 + RebootCheckOnInstallW @51 + RegInstall=RegInstallA @52 + RegInstallA @53 + RegInstallW @54 + RegRestoreAll=RegRestoreAllA @55 + RegRestoreAllA @56 + RegRestoreAllW @57 + RegSaveRestore=RegSaveRestoreA @58 + RegSaveRestoreA @59 + RegSaveRestoreOnINF=RegSaveRestoreOnINFA @60 + RegSaveRestoreOnINFA @61 + RegSaveRestoreOnINFW @62 + RegSaveRestoreW @63 + RegisterOCX @64 + RunSetupCommand=RunSetupCommandA @65 + RunSetupCommandA @66 + RunSetupCommandW @67 + SetPerUserSecValues=SetPerUserSecValuesA @68 + SetPerUserSecValuesA @69 + SetPerUserSecValuesW @70 + TranslateInfString=TranslateInfStringA @71 + TranslateInfStringA @72 + TranslateInfStringEx=TranslateInfStringExA @73 + TranslateInfStringExA @74 + TranslateInfStringExW @75 + TranslateInfStringW @76 + UserInstStubWrapper=UserInstStubWrapperA @77 + UserInstStubWrapperA @78 + UserInstStubWrapperW @79 + UserUnInstStubWrapper=UserUnInstStubWrapperA @80 + UserUnInstStubWrapperA @81 + UserUnInstStubWrapperW @82 diff --git a/lib64/wine/libamd_ags_x64.def b/lib64/wine/libamd_ags_x64.def new file mode 100644 index 0000000..aa35c56 --- /dev/null +++ b/lib64/wine/libamd_ags_x64.def @@ -0,0 +1,34 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/amd_ags_x64/amd_ags_x64.spec; do not edit! + +LIBRARY amd_ags_x64.dll + +EXPORTS + agsDeInit @1 + agsDriverExtensionsDX11_BeginUAVOverlap @2 PRIVATE + agsDriverExtensionsDX11_CreateBuffer @3 PRIVATE + agsDriverExtensionsDX11_CreateTexture1D @4 PRIVATE + agsDriverExtensionsDX11_CreateTexture2D @5 PRIVATE + agsDriverExtensionsDX11_CreateTexture3D @6 PRIVATE + agsDriverExtensionsDX11_DeInit @7 PRIVATE + agsDriverExtensionsDX11_EndUAVOverlap @8 PRIVATE + agsDriverExtensionsDX11_GetMaxClipRects @9 PRIVATE + agsDriverExtensionsDX11_IASetPrimitiveTopology @10 PRIVATE + agsDriverExtensionsDX11_Init @11 PRIVATE + agsDriverExtensionsDX11_MultiDrawIndexedInstancedIndirect @12 PRIVATE + agsDriverExtensionsDX11_MultiDrawIndexedInstancedIndirectCountIndirect @13 PRIVATE + agsDriverExtensionsDX11_MultiDrawInstancedIndirect @14 PRIVATE + agsDriverExtensionsDX11_MultiDrawInstancedIndirectCountIndirect @15 PRIVATE + agsDriverExtensionsDX11_NotifyResourceBeginAllAccess @16 PRIVATE + agsDriverExtensionsDX11_NotifyResourceEndAllAccess @17 PRIVATE + agsDriverExtensionsDX11_NotifyResourceEndWrites @18 PRIVATE + agsDriverExtensionsDX11_NumPendingAsyncCompileJobs @19 PRIVATE + agsDriverExtensionsDX11_SetClipRects @20 PRIVATE + agsDriverExtensionsDX11_SetDepthBounds @21 PRIVATE + agsDriverExtensionsDX11_SetDiskShaderCacheEnabled @22 PRIVATE + agsDriverExtensionsDX11_SetMaxAsyncCompileThreadCount @23 PRIVATE + agsDriverExtensionsDX11_SetViewBroadcastMasks @24 PRIVATE + agsDriverExtensionsDX12_DeInit @25 PRIVATE + agsDriverExtensionsDX12_Init @26 PRIVATE + agsGetCrossfireGPUCount @27 PRIVATE + agsInit @28 + agsSetDisplayMode @29 PRIVATE diff --git a/lib64/wine/libatl.def b/lib64/wine/libatl.def new file mode 100644 index 0000000..997c337 --- /dev/null +++ b/lib64/wine/libatl.def @@ -0,0 +1,57 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/atl/atl.spec; do not edit! + +LIBRARY atl.dll + +EXPORTS + DllCanUnloadNow @1 PRIVATE + DllGetClassObject @2 PRIVATE + DllRegisterServer @3 PRIVATE + DllUnregisterServer @4 PRIVATE + AtlAdvise @10 + AtlUnadvise @11 + AtlFreeMarshalStream @12 + AtlMarshalPtrInProc @13 + AtlUnmarshalPtr @14 + AtlModuleGetClassObject @15 + AtlModuleInit @16 + AtlModuleRegisterClassObjects @17 + AtlModuleRegisterServer @18 + AtlModuleRegisterTypeLib @19 + AtlModuleRevokeClassObjects @20 + AtlModuleTerm @21 + AtlModuleUnregisterServer @22 + AtlModuleUpdateRegistryFromResourceD @23 + AtlWaitWithMessageLoop @24 + AtlSetErrorInfo @25 PRIVATE + AtlCreateTargetDC @26 + AtlHiMetricToPixel @27 + AtlPixelToHiMetric @28 + AtlDevModeW2A @29 PRIVATE + AtlComPtrAssign @30 + AtlComQIPtrAssign @31 + AtlInternalQueryInterface @32 + AtlGetVersion @34 + AtlAxDialogBoxW @35 + AtlAxDialogBoxA @36 + AtlAxCreateDialogW @37 + AtlAxCreateDialogA @38 + AtlAxCreateControl @39 + AtlAxCreateControlEx @40 + AtlAxAttachControl @41 + AtlAxWinInit @42 + AtlModuleAddCreateWndData @43 + AtlModuleExtractCreateWndData @44 + AtlModuleRegisterWndClassInfoW @45 + AtlModuleRegisterWndClassInfoA @46 + AtlAxGetControl @47 + AtlAxGetHost @48 + AtlRegisterClassCategoriesHelper @49 + AtlIPersistStreamInit_Load @50 + AtlIPersistStreamInit_Save @51 + AtlIPersistPropertyBag_Load @52 + AtlIPersistPropertyBag_Save @53 + AtlGetObjectSourceInterface @54 + AtlModuleUnRegisterTypeLib @55 PRIVATE + AtlModuleLoadTypeLib @56 + AtlModuleUnregisterServerEx @57 + AtlModuleAddTermFunc @58 diff --git a/lib64/wine/libatl100.def b/lib64/wine/libatl100.def new file mode 100644 index 0000000..0bdedbd --- /dev/null +++ b/lib64/wine/libatl100.def @@ -0,0 +1,57 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/atl100/atl100.spec; do not edit! + +LIBRARY atl100.dll + +EXPORTS + AtlAdvise @10 + AtlUnadvise @11 + AtlFreeMarshalStream @12 + AtlMarshalPtrInProc @13 + AtlUnmarshalPtr @14 + AtlComModuleGetClassObject @15 + AtlComModuleRegisterClassObjects @17 + AtlComModuleRevokeClassObjects @20 + AtlComModuleUnregisterServer @22 + AtlUpdateRegistryFromResourceD @23 + AtlWaitWithMessageLoop @24 + AtlSetErrorInfo @25 PRIVATE + AtlCreateTargetDC @26 + AtlHiMetricToPixel @27 + AtlPixelToHiMetric @28 + AtlDevModeW2A @29 PRIVATE + AtlComPtrAssign @30 + AtlComQIPtrAssign @31 + AtlInternalQueryInterface @32 + AtlGetVersion @34 + AtlAxDialogBoxW @35 + AtlAxDialogBoxA @36 + AtlAxCreateDialogW @37 + AtlAxCreateDialogA @38 + AtlAxCreateControl @39 + AtlAxCreateControlEx @40 + AtlAxAttachControl @41 + AtlAxWinInit @42 + AtlWinModuleAddCreateWndData @43 + AtlWinModuleExtractCreateWndData @44 + AtlWinModuleRegisterWndClassInfoW @45 PRIVATE + AtlWinModuleRegisterWndClassInfoA @46 PRIVATE + AtlAxGetControl @47 + AtlAxGetHost @48 + AtlRegisterClassCategoriesHelper @49 + AtlIPersistStreamInit_Load @50 + AtlIPersistStreamInit_Save @51 + AtlIPersistPropertyBag_Load @52 + AtlIPersistPropertyBag_Save @53 + AtlGetObjectSourceInterface @54 + AtlLoadTypeLib @56 + AtlModuleAddTermFunc @58 + AtlAxCreateControlLic @59 + AtlAxCreateControlLicEx @60 + AtlCreateRegistrar @61 + AtlWinModuleRegisterClassExW @62 PRIVATE + AtlWinModuleRegisterClassExA @63 PRIVATE + AtlCallTermFunc @64 + AtlWinModuleInit @65 + AtlWinModuleTerm @66 PRIVATE + AtlSetPerUserRegistration @67 + AtlGetPerUserRegistration @68 diff --git a/lib64/wine/libatl80.def b/lib64/wine/libatl80.def new file mode 100644 index 0000000..a30a593 --- /dev/null +++ b/lib64/wine/libatl80.def @@ -0,0 +1,58 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/atl80/atl80.spec; do not edit! + +LIBRARY atl80.dll + +EXPORTS + AtlAdvise @10 + AtlUnadvise @11 + AtlFreeMarshalStream @12 + AtlMarshalPtrInProc @13 + AtlUnmarshalPtr @14 + AtlComModuleGetClassObject @15 + AtlComModuleRegisterClassObjects @17 + AtlComModuleRegisterServer @18 + AtlRegisterTypeLib @19 + AtlComModuleRevokeClassObjects @20 + AtlComModuleUnregisterServer @22 + AtlUpdateRegistryFromResourceD @23 + AtlWaitWithMessageLoop @24 + AtlSetErrorInfo @25 PRIVATE + AtlCreateTargetDC @26 + AtlHiMetricToPixel @27 + AtlPixelToHiMetric @28 + AtlDevModeW2A @29 PRIVATE + AtlComPtrAssign @30 + AtlComQIPtrAssign @31 + AtlInternalQueryInterface @32 + AtlGetVersion @34 + AtlAxDialogBoxW @35 + AtlAxDialogBoxA @36 + AtlAxCreateDialogW @37 + AtlAxCreateDialogA @38 + AtlAxCreateControl @39 + AtlAxCreateControlEx @40 + AtlAxAttachControl @41 + AtlAxWinInit @42 + AtlWinModuleAddCreateWndData @43 + AtlWinModuleExtractCreateWndData @44 + AtlWinModuleRegisterWndClassInfoW @45 PRIVATE + AtlWinModuleRegisterWndClassInfoA @46 PRIVATE + AtlAxGetControl @47 + AtlAxGetHost @48 + AtlRegisterClassCategoriesHelper @49 + AtlIPersistStreamInit_Load @50 + AtlIPersistStreamInit_Save @51 + AtlIPersistPropertyBag_Load @52 + AtlIPersistPropertyBag_Save @53 + AtlGetObjectSourceInterface @54 + AtlUnRegisterTypeLib @55 PRIVATE + AtlLoadTypeLib @56 + AtlModuleAddTermFunc @58 + AtlAxCreateControlLic @59 + AtlAxCreateControlLicEx @60 + AtlCreateRegistrar @61 + AtlWinModuleRegisterClassExW @62 PRIVATE + AtlWinModuleRegisterClassExA @63 PRIVATE + AtlCallTermFunc @64 + AtlWinModuleInit @65 + AtlWinModuleTerm @66 PRIVATE diff --git a/lib64/wine/libatlthunk.def b/lib64/wine/libatlthunk.def new file mode 100644 index 0000000..8868e7d --- /dev/null +++ b/lib64/wine/libatlthunk.def @@ -0,0 +1,9 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/atlthunk/atlthunk.spec; do not edit! + +LIBRARY atlthunk.dll + +EXPORTS + AtlThunk_AllocateData @1 + AtlThunk_DataToCode @2 + AtlThunk_FreeData @3 + AtlThunk_InitData @4 diff --git a/lib64/wine/libavicap32.def b/lib64/wine/libavicap32.def new file mode 100644 index 0000000..c024523 --- /dev/null +++ b/lib64/wine/libavicap32.def @@ -0,0 +1,9 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/avicap32/avicap32.spec; do not edit! + +LIBRARY avicap32.dll + +EXPORTS + capCreateCaptureWindowA @1 + capCreateCaptureWindowW @2 + capGetDriverDescriptionA @3 + capGetDriverDescriptionW @4 diff --git a/lib64/wine/libavifil32.def b/lib64/wine/libavifil32.def new file mode 100644 index 0000000..4eced20 --- /dev/null +++ b/lib64/wine/libavifil32.def @@ -0,0 +1,84 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/avifil32/avifil32.spec; do not edit! + +LIBRARY avifil32.dll + +EXPORTS + AVIBuildFilter=AVIBuildFilterA @1 + AVIBuildFilterA @2 + AVIBuildFilterW @3 + AVIClearClipboard @4 + AVIFileAddRef @5 + AVIFileCreateStream=AVIFileCreateStreamA @6 + AVIFileCreateStreamA @7 + AVIFileCreateStreamW @8 + AVIFileEndRecord @9 + AVIFileExit @10 + AVIFileGetStream @11 + AVIFileInfo=AVIFileInfoA @12 + AVIFileInfoA @13 + AVIFileInfoW @14 + AVIFileInit @15 + AVIFileOpen=AVIFileOpenA @16 + AVIFileOpenA @17 + AVIFileOpenW @18 + AVIFileReadData @19 + AVIFileRelease @20 + AVIFileWriteData @21 + AVIGetFromClipboard @22 + AVIMakeCompressedStream @23 + AVIMakeFileFromStreams @24 + AVIMakeStreamFromClipboard @25 + AVIPutFileOnClipboard @26 + AVISave=AVISaveA @27 + AVISaveA @28 + AVISaveOptions @29 + AVISaveOptionsFree @30 + AVISaveV=AVISaveVA @31 + AVISaveVA @32 + AVISaveVW @33 + AVISaveW @34 + AVIStreamAddRef @35 + AVIStreamBeginStreaming @36 + AVIStreamCreate @37 + AVIStreamEndStreaming @38 + AVIStreamFindSample @39 + AVIStreamGetFrame @40 + AVIStreamGetFrameClose @41 + AVIStreamGetFrameOpen @42 + AVIStreamInfo=AVIStreamInfoA @43 + AVIStreamInfoA @44 + AVIStreamInfoW @45 + AVIStreamLength @46 + AVIStreamOpenFromFile=AVIStreamOpenFromFileA @47 + AVIStreamOpenFromFileA @48 + AVIStreamOpenFromFileW @49 + AVIStreamRead @50 + AVIStreamReadData @51 + AVIStreamReadFormat @52 + AVIStreamRelease @53 + AVIStreamSampleToTime @54 + AVIStreamSetFormat @55 + AVIStreamStart @56 + AVIStreamTimeToSample @57 + AVIStreamWrite @58 + AVIStreamWriteData @59 + CLSID_AVISimpleUnMarshal @60 DATA + CreateEditableStream @61 + DllCanUnloadNow @62 PRIVATE + DllGetClassObject @63 PRIVATE + DllRegisterServer @64 PRIVATE + DllUnregisterServer @65 PRIVATE + EditStreamClone @66 + EditStreamCopy @67 + EditStreamCut @68 + EditStreamPaste @69 + EditStreamSetInfo=EditStreamSetInfoA @70 + EditStreamSetInfoA @71 + EditStreamSetInfoW @72 + EditStreamSetName=EditStreamSetNameA @73 + EditStreamSetNameA @74 + EditStreamSetNameW @75 + IID_IAVIEditStream @76 DATA + IID_IAVIFile @77 DATA + IID_IAVIStream @78 DATA + IID_IGetFrame @79 DATA diff --git a/lib64/wine/libavrt.def b/lib64/wine/libavrt.def new file mode 100644 index 0000000..e1ad944 --- /dev/null +++ b/lib64/wine/libavrt.def @@ -0,0 +1,19 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/avrt/avrt.spec; do not edit! + +LIBRARY avrt.dll + +EXPORTS + AvQuerySystemResponsiveness @1 + AvRevertMmThreadCharacteristics @2 + AvRtCreateThreadOrderingGroup @3 PRIVATE + AvRtCreateThreadOrderingGroupExA @4 PRIVATE + AvRtCreateThreadOrderingGroupExW @5 PRIVATE + AvRtDeleteThreadOrderingGroup @6 PRIVATE + AvRtJoinThreadOrderingGroup @7 PRIVATE + AvRtLeaveThreadOrderingGroup @8 PRIVATE + AvRtWaitOnThreadOrderingGroup @9 PRIVATE + AvSetMmMaxThreadCharacteristicsA @10 PRIVATE + AvSetMmMaxThreadCharacteristicsW @11 PRIVATE + AvSetMmThreadCharacteristicsA @12 + AvSetMmThreadCharacteristicsW @13 + AvSetMmThreadPriority @14 diff --git a/lib64/wine/libbcrypt.def b/lib64/wine/libbcrypt.def new file mode 100644 index 0000000..a7a2492 --- /dev/null +++ b/lib64/wine/libbcrypt.def @@ -0,0 +1,65 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/bcrypt/bcrypt.spec; do not edit! + +LIBRARY bcrypt.dll + +EXPORTS + BCryptAddContextFunction @1 + BCryptAddContextFunctionProvider @2 + BCryptCloseAlgorithmProvider @3 + BCryptConfigureContext @4 PRIVATE + BCryptConfigureContextFunction @5 PRIVATE + BCryptCreateContext @6 PRIVATE + BCryptCreateHash @7 + BCryptDecrypt @8 + BCryptDeleteContext @9 PRIVATE + BCryptDeriveKey @10 + BCryptDeriveKeyPBKDF2 @11 + BCryptDestroyHash @12 + BCryptDestroyKey @13 + BCryptDestroySecret @14 + BCryptDuplicateHash @15 + BCryptDuplicateKey @16 + BCryptEncrypt @17 + BCryptEnumAlgorithms @18 + BCryptEnumContextFunctionProviders @19 PRIVATE + BCryptEnumContextFunctions @20 PRIVATE + BCryptEnumContexts @21 PRIVATE + BCryptEnumProviders @22 PRIVATE + BCryptEnumRegisteredProviders @23 PRIVATE + BCryptExportKey @24 + BCryptFinalizeKeyPair @25 + BCryptFinishHash @26 + BCryptFreeBuffer @27 PRIVATE + BCryptGenRandom @28 + BCryptGenerateKeyPair @29 + BCryptGenerateSymmetricKey @30 + BCryptGetFipsAlgorithmMode @31 + BCryptGetProperty @32 + BCryptHash @33 + BCryptHashData @34 + BCryptImportKey @35 + BCryptImportKeyPair @36 + BCryptOpenAlgorithmProvider @37 + BCryptQueryContextConfiguration @38 PRIVATE + BCryptQueryContextFunctionConfiguration @39 PRIVATE + BCryptQueryContextFunctionProperty @40 PRIVATE + BCryptQueryProviderRegistration @41 PRIVATE + BCryptRegisterConfigChangeNotify @42 PRIVATE + BCryptRegisterProvider @43 + BCryptRemoveContextFunction @44 + BCryptRemoveContextFunctionProvider @45 + BCryptResolveProviders @46 PRIVATE + BCryptSecretAgreement @47 + BCryptSetAuditingInterface @48 PRIVATE + BCryptSetContextFunctionProperty @49 PRIVATE + BCryptSetProperty @50 + BCryptSignHash @51 PRIVATE + BCryptUnregisterConfigChangeNotify @52 PRIVATE + BCryptUnregisterProvider @53 + BCryptVerifySignature @54 + GetAsymmetricEncryptionInterface @55 PRIVATE + GetCipherInterface @56 PRIVATE + GetHashInterface @57 PRIVATE + GetRngInterface @58 PRIVATE + GetSecretAgreementInterface @59 PRIVATE + GetSignatureInterface @60 PRIVATE diff --git a/lib64/wine/libcabinet.def b/lib64/wine/libcabinet.def new file mode 100644 index 0000000..38f7f9a --- /dev/null +++ b/lib64/wine/libcabinet.def @@ -0,0 +1,19 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/cabinet/cabinet.spec; do not edit! + +LIBRARY cabinet.dll + +EXPORTS + GetDllVersion @1 PRIVATE + DllGetVersion @2 PRIVATE + Extract @3 + DeleteExtractedFiles @4 PRIVATE + FCICreate @10 + FCIAddFile @11 + FCIFlushFolder @12 + FCIFlushCabinet @13 + FCIDestroy @14 + FDICreate @20 + FDIIsCabinet @21 + FDICopy @22 + FDIDestroy @23 + FDITruncateCabinet @24 diff --git a/lib64/wine/libcapi2032.def b/lib64/wine/libcapi2032.def new file mode 100644 index 0000000..4f0faeb --- /dev/null +++ b/lib64/wine/libcapi2032.def @@ -0,0 +1,16 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/capi2032/capi2032.spec; do not edit! + +LIBRARY capi2032.dll + +EXPORTS + CAPI_REGISTER=wrapCAPI_REGISTER @1 + CAPI_RELEASE=wrapCAPI_RELEASE @2 + CAPI_PUT_MESSAGE=wrapCAPI_PUT_MESSAGE @3 + CAPI_GET_MESSAGE=wrapCAPI_GET_MESSAGE @4 + CAPI_WAIT_FOR_SIGNAL=wrapCAPI_WAIT_FOR_SIGNAL @5 + CAPI_GET_MANUFACTURER=wrapCAPI_GET_MANUFACTURER @6 + CAPI_GET_VERSION=wrapCAPI_GET_VERSION @7 + CAPI_GET_SERIAL_NUMBER=wrapCAPI_GET_SERIAL_NUMBER @8 + CAPI_GET_PROFILE=wrapCAPI_GET_PROFILE @9 + CAPI_INSTALLED=wrapCAPI_INSTALLED @10 + CAPI_MANUFACTURER=wrapCAPI_MANUFACTURER @99 diff --git a/lib64/wine/libcards.def b/lib64/wine/libcards.def new file mode 100644 index 0000000..bd1fdb1 --- /dev/null +++ b/lib64/wine/libcards.def @@ -0,0 +1,10 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/cards/cards.spec; do not edit! + +LIBRARY cards.dll + +EXPORTS + cdtAnimate @1 + cdtDraw @2 + cdtDrawExt @3 + cdtInit @4 + cdtTerm @5 diff --git a/lib64/wine/libcfgmgr32.def b/lib64/wine/libcfgmgr32.def new file mode 100644 index 0000000..bd19c9e --- /dev/null +++ b/lib64/wine/libcfgmgr32.def @@ -0,0 +1,189 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/cfgmgr32/cfgmgr32.spec; do not edit! + +LIBRARY cfgmgr32.dll + +EXPORTS + CMP_WaitNoPendingInstallEvents=setupapi.CMP_WaitNoPendingInstallEvents @1 + CM_Add_Empty_Log_Conf @2 PRIVATE + CM_Add_Empty_Log_Conf_Ex @3 PRIVATE + CM_Add_IDA @4 PRIVATE + CM_Add_IDW @5 PRIVATE + CM_Add_ID_ExA @6 PRIVATE + CM_Add_ID_ExW @7 PRIVATE + CM_Add_Range @8 PRIVATE + CM_Add_Res_Des @9 PRIVATE + CM_Add_Res_Des_Ex @10 PRIVATE + CM_Connect_MachineA=setupapi.CM_Connect_MachineA @11 + CM_Connect_MachineW=setupapi.CM_Connect_MachineW @12 + CM_Create_DevNodeA=setupapi.CM_Create_DevNodeA @13 + CM_Create_DevNodeW=setupapi.CM_Create_DevNodeW @14 + CM_Create_DevNode_ExA @15 PRIVATE + CM_Create_DevNode_ExW @16 PRIVATE + CM_Create_Range_List @17 PRIVATE + CM_Delete_Class_Key @18 PRIVATE + CM_Delete_Class_Key_Ex @19 PRIVATE + CM_Delete_DevNode_Key @20 PRIVATE + CM_Delete_DevNode_Key_Ex @21 PRIVATE + CM_Delete_Range @22 PRIVATE + CM_Detect_Resource_Conflict @23 PRIVATE + CM_Detect_Resource_Conflict_Ex @24 PRIVATE + CM_Disable_DevNode @25 PRIVATE + CM_Disable_DevNode_Ex @26 PRIVATE + CM_Disconnect_Machine=setupapi.CM_Disconnect_Machine @27 + CM_Dup_Range_List @28 PRIVATE + CM_Enable_DevNode @29 PRIVATE + CM_Enable_DevNode_Ex @30 PRIVATE + CM_Enumerate_Classes=setupapi.CM_Enumerate_Classes @31 + CM_Enumerate_Classes_Ex @32 PRIVATE + CM_Enumerate_EnumeratorsA @33 PRIVATE + CM_Enumerate_EnumeratorsW @34 PRIVATE + CM_Enumerate_Enumerators_ExA @35 PRIVATE + CM_Enumerate_Enumerators_ExW @36 PRIVATE + CM_Find_Range @37 PRIVATE + CM_First_Range @38 PRIVATE + CM_Free_Log_Conf @39 PRIVATE + CM_Free_Log_Conf_Ex @40 PRIVATE + CM_Free_Log_Conf_Handle @41 PRIVATE + CM_Free_Range_List @42 PRIVATE + CM_Free_Res_Des @43 PRIVATE + CM_Free_Res_Des_Ex @44 PRIVATE + CM_Free_Res_Des_Handle @45 PRIVATE + CM_Get_Child=setupapi.CM_Get_Child @46 + CM_Get_Child_Ex=setupapi.CM_Get_Child_Ex @47 + CM_Get_Class_Key_NameA @48 PRIVATE + CM_Get_Class_Key_NameW @49 PRIVATE + CM_Get_Class_Key_Name_ExA @50 PRIVATE + CM_Get_Class_Key_Name_ExW @51 PRIVATE + CM_Get_Class_NameA @52 PRIVATE + CM_Get_Class_NameW @53 PRIVATE + CM_Get_Class_Name_ExA @54 PRIVATE + CM_Get_Class_Name_ExW @55 PRIVATE + CM_Get_Class_Registry_PropertyA=setupapi.CM_Get_Class_Registry_PropertyA @56 + CM_Get_Class_Registry_PropertyW=setupapi.CM_Get_Class_Registry_PropertyW @57 + CM_Get_Depth @58 PRIVATE + CM_Get_Depth_Ex @59 PRIVATE + CM_Get_DevNode_Registry_PropertyA=setupapi.CM_Get_DevNode_Registry_PropertyA @60 + CM_Get_DevNode_Registry_PropertyW=setupapi.CM_Get_DevNode_Registry_PropertyW @61 + CM_Get_DevNode_Registry_Property_ExA=setupapi.CM_Get_DevNode_Registry_Property_ExA @62 + CM_Get_DevNode_Registry_Property_ExW=setupapi.CM_Get_DevNode_Registry_Property_ExW @63 + CM_Get_DevNode_Status=setupapi.CM_Get_DevNode_Status @64 + CM_Get_DevNode_Status_Ex=setupapi.CM_Get_DevNode_Status_Ex @65 + CM_Get_Device_IDA=setupapi.CM_Get_Device_IDA @66 + CM_Get_Device_IDW=setupapi.CM_Get_Device_IDW @67 + CM_Get_Device_ID_ExA=setupapi.CM_Get_Device_ID_ExA @68 + CM_Get_Device_ID_ExW=setupapi.CM_Get_Device_ID_ExW @69 + CM_Get_Device_ID_ListA=setupapi.CM_Get_Device_ID_ListA @70 + CM_Get_Device_ID_ListW=setupapi.CM_Get_Device_ID_ListW @71 + CM_Get_Device_ID_List_ExA @72 PRIVATE + CM_Get_Device_ID_List_ExW @73 PRIVATE + CM_Get_Device_ID_List_SizeA=setupapi.CM_Get_Device_ID_List_SizeA @74 + CM_Get_Device_ID_List_SizeW=setupapi.CM_Get_Device_ID_List_SizeW @75 + CM_Get_Device_ID_List_Size_ExA @76 PRIVATE + CM_Get_Device_ID_List_Size_ExW @77 PRIVATE + CM_Get_Device_ID_Size=setupapi.CM_Get_Device_ID_Size @78 + CM_Get_Device_ID_Size_Ex @79 PRIVATE + CM_Get_Device_Interface_AliasA @80 PRIVATE + CM_Get_Device_Interface_AliasW @81 PRIVATE + CM_Get_Device_Interface_Alias_ExA @82 PRIVATE + CM_Get_Device_Interface_Alias_ExW @83 PRIVATE + CM_Get_Device_Interface_ListA @84 PRIVATE + CM_Get_Device_Interface_ListW @85 PRIVATE + CM_Get_Device_Interface_List_ExA @86 PRIVATE + CM_Get_Device_Interface_List_ExW @87 PRIVATE + CM_Get_Device_Interface_List_SizeA=setupapi.CM_Get_Device_Interface_List_SizeA @88 + CM_Get_Device_Interface_List_SizeW=setupapi.CM_Get_Device_Interface_List_SizeW @89 + CM_Get_Device_Interface_List_Size_ExA=setupapi.CM_Get_Device_Interface_List_Size_ExA @90 + CM_Get_Device_Interface_List_Size_ExW=setupapi.CM_Get_Device_Interface_List_Size_ExW @91 + CM_Get_First_Log_Conf @92 PRIVATE + CM_Get_First_Log_Conf_Ex @93 PRIVATE + CM_Get_Global_State @94 PRIVATE + CM_Get_Global_State_Ex @95 PRIVATE + CM_Get_HW_Prof_FlagsA @96 PRIVATE + CM_Get_HW_Prof_FlagsW @97 PRIVATE + CM_Get_HW_Prof_Flags_ExA @98 PRIVATE + CM_Get_HW_Prof_Flags_ExW @99 PRIVATE + CM_Get_Hardware_Profile_InfoA @100 PRIVATE + CM_Get_Hardware_Profile_InfoW @101 PRIVATE + CM_Get_Hardware_Profile_Info_ExA @102 PRIVATE + CM_Get_Hardware_Profile_Info_ExW @103 PRIVATE + CM_Get_Log_Conf_Priority @104 PRIVATE + CM_Get_Log_Conf_Priority_Ex @105 PRIVATE + CM_Get_Next_Log_Conf @106 PRIVATE + CM_Get_Next_Log_Conf_Ex @107 PRIVATE + CM_Get_Next_Res_Des @108 PRIVATE + CM_Get_Next_Res_Des_Ex @109 PRIVATE + CM_Get_Parent=setupapi.CM_Get_Parent @110 + CM_Get_Parent_Ex @111 PRIVATE + CM_Get_Res_Des_Data @112 PRIVATE + CM_Get_Res_Des_Data_Ex @113 PRIVATE + CM_Get_Res_Des_Data_Size @114 PRIVATE + CM_Get_Res_Des_Data_Size_Ex @115 PRIVATE + CM_Get_Sibling=setupapi.CM_Get_Sibling @116 + CM_Get_Sibling_Ex=setupapi.CM_Get_Sibling_Ex @117 + CM_Get_Version=setupapi.CM_Get_Version @118 + CM_Get_Version_Ex @119 PRIVATE + CM_Intersect_Range_List @120 PRIVATE + CM_Invert_Range_List @121 PRIVATE + CM_Is_Dock_Station_Present @122 PRIVATE + CM_Locate_DevNodeA=setupapi.CM_Locate_DevNodeA @123 + CM_Locate_DevNodeW=setupapi.CM_Locate_DevNodeW @124 + CM_Locate_DevNode_ExA=setupapi.CM_Locate_DevNode_ExA @125 + CM_Locate_DevNode_ExW=setupapi.CM_Locate_DevNode_ExW @126 + CM_Merge_Range_List @127 PRIVATE + CM_Modify_Res_Des @128 PRIVATE + CM_Modify_Res_Des_Ex @129 PRIVATE + CM_Move_DevNode @130 PRIVATE + CM_Move_DevNode_Ex @131 PRIVATE + CM_Next_Range @132 PRIVATE + CM_Open_Class_KeyA @133 PRIVATE + CM_Open_Class_KeyW @134 PRIVATE + CM_Open_Class_Key_ExA @135 PRIVATE + CM_Open_Class_Key_ExW @136 PRIVATE + CM_Open_DevNode_Key=setupapi.CM_Open_DevNode_Key @137 + CM_Open_DevNode_Key_Ex @138 PRIVATE + CM_Query_Arbitrator_Free_Data @139 PRIVATE + CM_Query_Arbitrator_Free_Data_Ex @140 PRIVATE + CM_Query_Arbitrator_Free_Size @141 PRIVATE + CM_Query_Arbitrator_Free_Size_Ex @142 PRIVATE + CM_Query_Remove_SubTree @143 PRIVATE + CM_Query_Remove_SubTree_Ex @144 PRIVATE + CM_Reenumerate_DevNode=setupapi.CM_Reenumerate_DevNode @145 + CM_Reenumerate_DevNode_Ex=setupapi.CM_Reenumerate_DevNode_Ex @146 + CM_Register_Device_Driver @147 PRIVATE + CM_Register_Device_Driver_Ex @148 PRIVATE + CM_Register_Device_InterfaceA @149 PRIVATE + CM_Register_Device_InterfaceW @150 PRIVATE + CM_Register_Device_Interface_ExA @151 PRIVATE + CM_Register_Device_Interface_ExW @152 PRIVATE + CM_Remove_SubTree @153 PRIVATE + CM_Remove_SubTree_Ex @154 PRIVATE + CM_Remove_Unmarked_Children @155 PRIVATE + CM_Remove_Unmarked_Children_Ex @156 PRIVATE + CM_Request_Eject_PC @157 PRIVATE + CM_Reset_Children_Marks @158 PRIVATE + CM_Reset_Children_Marks_Ex @159 PRIVATE + CM_Run_Detection @160 PRIVATE + CM_Run_Detection_Ex @161 PRIVATE + CM_Set_Class_Registry_PropertyA=setupapi.CM_Set_Class_Registry_PropertyA @162 + CM_Set_Class_Registry_PropertyW=setupapi.CM_Set_Class_Registry_PropertyW @163 + CM_Set_DevNode_Problem @164 PRIVATE + CM_Set_DevNode_Problem_Ex @165 PRIVATE + CM_Set_DevNode_Registry_PropertyA @166 PRIVATE + CM_Set_DevNode_Registry_PropertyW @167 PRIVATE + CM_Set_DevNode_Registry_Property_ExA @168 PRIVATE + CM_Set_DevNode_Registry_Property_ExW @169 PRIVATE + CM_Set_HW_Prof @170 PRIVATE + CM_Set_HW_Prof_Ex @171 PRIVATE + CM_Set_HW_Prof_FlagsA @172 PRIVATE + CM_Set_HW_Prof_FlagsW @173 PRIVATE + CM_Set_HW_Prof_Flags_ExA @174 PRIVATE + CM_Set_HW_Prof_Flags_ExW @175 PRIVATE + CM_Setup_DevNode @176 PRIVATE + CM_Setup_DevNode_Ex @177 PRIVATE + CM_Test_Range_Available @178 PRIVATE + CM_Uninstall_DevNode @179 PRIVATE + CM_Uninstall_DevNode_Ex @180 PRIVATE + CM_Unregister_Device_InterfaceA @181 PRIVATE + CM_Unregister_Device_InterfaceW @182 PRIVATE + CM_Unregister_Device_Interface_ExA @183 PRIVATE + CM_Unregister_Device_Interface_ExW @184 PRIVATE diff --git a/lib64/wine/libclusapi.def b/lib64/wine/libclusapi.def new file mode 100644 index 0000000..c47903f --- /dev/null +++ b/lib64/wine/libclusapi.def @@ -0,0 +1,120 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/clusapi/clusapi.spec; do not edit! + +LIBRARY clusapi.dll + +EXPORTS + AddClusterResourceDependency @1 PRIVATE + AddClusterResourceNode @2 PRIVATE + BackupClusterDatabase @3 PRIVATE + CanResourceBeDependent @4 PRIVATE + ChangeClusterResourceGroup @5 PRIVATE + CloseCluster @6 + CloseClusterGroup @7 PRIVATE + CloseClusterNetInterface @8 PRIVATE + CloseClusterNetwork @9 PRIVATE + CloseClusterNode @10 PRIVATE + CloseClusterNotifyPort @11 PRIVATE + CloseClusterResource @12 PRIVATE + ClusterCloseEnum @13 + ClusterControl @14 PRIVATE + ClusterEnum @15 + ClusterGetEnumCount @16 PRIVATE + ClusterGroupCloseEnum @17 PRIVATE + ClusterGroupControl @18 PRIVATE + ClusterGroupEnum @19 PRIVATE + ClusterGroupGetEnumCount @20 PRIVATE + ClusterGroupOpenEnum @21 PRIVATE + ClusterNetInterfaceControl @22 PRIVATE + ClusterNetworkCloseEnum @23 PRIVATE + ClusterNetworkControl @24 PRIVATE + ClusterNetworkEnum @25 PRIVATE + ClusterNetworkGetEnumCount @26 PRIVATE + ClusterNetworkOpenEnum @27 PRIVATE + ClusterNodeCloseEnum @28 PRIVATE + ClusterNodeControl @29 PRIVATE + ClusterNodeEnum @30 PRIVATE + ClusterNodeGetEnumCount @31 PRIVATE + ClusterNodeOpenEnum @32 PRIVATE + ClusterOpenEnum @33 + ClusterRegCloseKey @34 PRIVATE + ClusterRegCreateKey @35 PRIVATE + ClusterRegDeleteKey @36 PRIVATE + ClusterRegDeleteValue @37 PRIVATE + ClusterRegEnumKey @38 PRIVATE + ClusterRegEnumValue @39 PRIVATE + ClusterRegGetKeySecurity @40 PRIVATE + ClusterRegOpenKey @41 PRIVATE + ClusterRegQueryInfoKey @42 PRIVATE + ClusterRegQueryValue @43 PRIVATE + ClusterRegSetKeySecurity @44 PRIVATE + ClusterRegSetValue @45 PRIVATE + ClusterResourceCloseEnum @46 PRIVATE + ClusterResourceControl @47 PRIVATE + ClusterResourceEnum @48 PRIVATE + ClusterResourceGetEnumCount @49 PRIVATE + ClusterResourceOpenEnum @50 PRIVATE + ClusterResourceTypeCloseEnum @51 PRIVATE + ClusterResourceTypeControl @52 PRIVATE + ClusterResourceTypeEnum @53 PRIVATE + ClusterResourceTypeGetEnumCount @54 PRIVATE + ClusterResourceTypeOpenEnum @55 PRIVATE + CreateClusterGroup @56 PRIVATE + CreateClusterNotifyPort @57 PRIVATE + CreateClusterResource @58 PRIVATE + CreateClusterResourceType @59 PRIVATE + DeleteClusterGroup @60 PRIVATE + DeleteClusterResource @61 PRIVATE + DeleteClusterResourceType @62 PRIVATE + EvictClusterNode @63 PRIVATE + EvictClusterNodeEx @64 PRIVATE + FailClusterResource @65 PRIVATE + GetClusterFromGroup @66 PRIVATE + GetClusterFromNetInterface @67 PRIVATE + GetClusterFromNetwork @68 PRIVATE + GetClusterFromNode @69 PRIVATE + GetClusterFromResource @70 PRIVATE + GetClusterGroupKey @71 PRIVATE + GetClusterGroupState @72 PRIVATE + GetClusterInformation @73 + GetClusterKey @74 PRIVATE + GetClusterNetInterface @75 PRIVATE + GetClusterNetInterfaceKey @76 PRIVATE + GetClusterNetInterfaceState @77 PRIVATE + GetClusterNetworkId @78 PRIVATE + GetClusterNetworkKey @79 PRIVATE + GetClusterNetworkState @80 PRIVATE + GetClusterNodeId @81 PRIVATE + GetClusterNodeKey @82 PRIVATE + GetClusterNodeState @83 PRIVATE + GetClusterNotify @84 PRIVATE + GetClusterQuorumResource @85 PRIVATE + GetClusterResourceKey @86 PRIVATE + GetClusterResourceNetworkName @87 PRIVATE + GetClusterResourceState @88 PRIVATE + GetClusterResourceTypeKey @89 PRIVATE + GetNodeClusterState @90 + MoveClusterGroup @91 PRIVATE + OfflineClusterGroup @92 PRIVATE + OfflineClusterResource @93 PRIVATE + OnlineClusterGroup @94 PRIVATE + OnlineClusterResource @95 PRIVATE + OpenCluster @96 + OpenClusterGroup @97 PRIVATE + OpenClusterNetInterface @98 PRIVATE + OpenClusterNetwork @99 PRIVATE + OpenClusterNode @100 PRIVATE + OpenClusterResource @101 PRIVATE + PauseClusterNode @102 PRIVATE + RegisterClusterNotify @103 PRIVATE + RemoveClusterResourceDependency @104 PRIVATE + RemoveClusterResourceNode @105 PRIVATE + RestoreClusterDatabase @106 PRIVATE + ResumeClusterNode @107 PRIVATE + SetClusterGroupName @108 PRIVATE + SetClusterGroupNodeList @109 PRIVATE + SetClusterName @110 PRIVATE + SetClusterNetworkName @111 PRIVATE + SetClusterNetworkPriorityOrder @112 PRIVATE + SetClusterQuorumResource @113 PRIVATE + SetClusterResourceName @114 PRIVATE + SetClusterServiceAccountPassword @115 PRIVATE diff --git a/lib64/wine/libcomctl32.def b/lib64/wine/libcomctl32.def new file mode 100644 index 0000000..66b2bdd --- /dev/null +++ b/lib64/wine/libcomctl32.def @@ -0,0 +1,195 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/comctl32/comctl32.spec; do not edit! + +LIBRARY comctl32.dll + +EXPORTS + MenuHelp @2 + ShowHideMenuCtl @3 + GetEffectiveClientRect @4 + DrawStatusTextA @5 + CreateStatusWindowA @6 + CreateToolbar @7 + CreateMappedBitmap @8 + DPA_LoadStream @9 NONAME + DPA_SaveStream @10 NONAME + DPA_Merge @11 NONAME + MakeDragList @13 + LBItemFromPt @14 + DrawInsert @15 + CreateUpDownControl @16 + InitCommonControls @17 + Alloc @71 NONAME + ReAlloc @72 NONAME + Free @73 NONAME + GetSize @74 NONAME + CreateMRUListA @151 NONAME + FreeMRUList @152 NONAME + AddMRUStringA @153 NONAME + EnumMRUListA @154 NONAME + FindMRUStringA @155 NONAME + DelMRUString @156 NONAME + CreateMRUListLazyA @157 NONAME + CreatePage @163 NONAME PRIVATE + CreateProxyPage @164 NONAME PRIVATE + AddMRUData @167 NONAME + FindMRUData @169 NONAME + Str_GetPtrA @233 NONAME + Str_SetPtrA @234 NONAME + Str_GetPtrW @235 NONAME + Str_SetPtrW @236 NONAME + DSA_Create @320 NONAME + DSA_Destroy @321 NONAME + DSA_GetItem @322 NONAME + DSA_GetItemPtr @323 NONAME + DSA_InsertItem @324 NONAME + DSA_SetItem @325 NONAME + DSA_DeleteItem @326 NONAME + DSA_DeleteAllItems @327 NONAME + DPA_Create @328 NONAME + DPA_Destroy @329 NONAME + DPA_Grow @330 NONAME + DPA_Clone @331 NONAME + DPA_GetPtr @332 NONAME + DPA_GetPtrIndex @333 NONAME + DPA_InsertPtr @334 NONAME + DPA_SetPtr @335 NONAME + DPA_DeletePtr @336 NONAME + DPA_DeleteAllPtrs @337 NONAME + DPA_Sort @338 NONAME + DPA_Search @339 NONAME + DPA_CreateEx @340 NONAME + SendNotify @341 NONAME + SendNotifyEx @342 NONAME + TaskDialog @344 NONAME + TaskDialogIndirect @345 NONAME + StrChrA @350 NONAME PRIVATE + StrRChrA @351 NONAME PRIVATE + StrCmpNA @352 NONAME PRIVATE + StrCmpNIA @353 NONAME PRIVATE + StrStrA @354 NONAME PRIVATE + StrStrIA @355 NONAME PRIVATE + StrCSpnA @356 NONAME PRIVATE + StrToIntA @357 NONAME PRIVATE + StrChrW @358 NONAME PRIVATE + StrRChrW @359 NONAME PRIVATE + StrCmpNW @360 NONAME PRIVATE + StrCmpNIW @361 NONAME PRIVATE + StrStrW @362 NONAME PRIVATE + StrStrIW @363 NONAME PRIVATE + StrCSpnW @364 NONAME PRIVATE + StrToIntW @365 NONAME PRIVATE + StrChrIA @366 NONAME PRIVATE + StrChrIW @367 NONAME PRIVATE + StrRChrIA @368 NONAME PRIVATE + StrRChrIW @369 NONAME PRIVATE + StrRStrIA @372 NONAME PRIVATE + StrRStrIW @373 NONAME PRIVATE + StrCSpnIA @374 NONAME PRIVATE + StrCSpnIW @375 NONAME PRIVATE + IntlStrEqWorkerA @376 NONAME PRIVATE + IntlStrEqWorkerW @377 NONAME PRIVATE + LoadIconMetric @380 NONAME + LoadIconWithScaleDown @381 NONAME + SmoothScrollWindow @382 NONAME + DoReaderMode @383 NONAME PRIVATE + SetPathWordBreakProc @384 NONAME + DPA_EnumCallback @385 NONAME + DPA_DestroyCallback @386 NONAME + DSA_EnumCallback @387 NONAME + DSA_DestroyCallback @388 NONAME + SHGetProcessDword @389 NONAME PRIVATE + ImageList_SetColorTable @390 NONAME + CreateMRUListW @400 NONAME + AddMRUStringW @401 NONAME + FindMRUStringW @402 NONAME + EnumMRUListW @403 NONAME + CreateMRUListLazyW @404 NONAME + SetWindowSubclass @410 NONAME + GetWindowSubclass @411 NONAME + RemoveWindowSubclass @412 NONAME + DefSubclassProc @413 NONAME + MirrorIcon @414 NONAME + DrawTextWrap=user32.DrawTextW @415 NONAME + DrawTextExPrivWrap=user32.DrawTextExW @416 NONAME + ExtTextOutWrap=gdi32.ExtTextOutW @417 NONAME + GetCharWidthWrap=gdi32.GetCharWidthW @418 NONAME + GetTextExtentPointWrap=gdi32.GetTextExtentPointW @419 NONAME + GetTextExtentPoint32Wrap=gdi32.GetTextExtentPoint32W @420 NONAME + TextOutWrap=gdi32.TextOutW @421 NONAME + CreatePropertySheetPage=CreatePropertySheetPageA @12 + CreatePropertySheetPageA @18 + CreatePropertySheetPageW @19 + CreateStatusWindow=CreateStatusWindowA @20 + CreateStatusWindowW @21 + CreateToolbarEx @22 + DestroyPropertySheetPage @23 + DllGetVersion @24 PRIVATE + DllInstall @25 PRIVATE + DPA_GetSize @26 + DrawShadowText @27 + DrawStatusText=DrawStatusTextA @28 + DrawStatusTextW @29 + DSA_Clone @30 + DSA_GetSize @31 + FlatSB_EnableScrollBar @32 + FlatSB_GetScrollInfo @33 + FlatSB_GetScrollPos @34 + FlatSB_GetScrollProp @35 + FlatSB_GetScrollRange @36 + FlatSB_SetScrollInfo @37 + FlatSB_SetScrollPos @38 + FlatSB_SetScrollProp @39 + FlatSB_SetScrollRange @40 + FlatSB_ShowScrollBar @41 + GetMUILanguage @42 + HIMAGELIST_QueryInterface @43 + ImageList_Add @44 + ImageList_AddIcon @45 + ImageList_AddMasked @46 + ImageList_BeginDrag @47 + ImageList_CoCreateInstance @48 + ImageList_Copy @49 + ImageList_Create @50 + ImageList_Destroy @51 + ImageList_DragEnter @52 + ImageList_DragLeave @53 + ImageList_DragMove @54 + ImageList_DragShowNolock @55 + ImageList_Draw @56 + ImageList_DrawEx @57 + ImageList_DrawIndirect @58 + ImageList_Duplicate @59 + ImageList_EndDrag @60 + ImageList_GetBkColor @61 + ImageList_GetDragImage @62 + ImageList_GetFlags @63 + ImageList_GetIcon @64 + ImageList_GetIconSize @65 + ImageList_GetImageCount @66 + ImageList_GetImageInfo @67 + ImageList_GetImageRect @68 + ImageList_LoadImage=ImageList_LoadImageA @69 + ImageList_LoadImageA @70 + ImageList_LoadImageW @75 + ImageList_Merge @76 + ImageList_Read @77 + ImageList_Remove @78 + ImageList_Replace @79 + ImageList_ReplaceIcon @80 + ImageList_SetBkColor @81 + ImageList_SetDragCursorImage @82 + ImageList_SetFilter @83 + ImageList_SetFlags @84 + ImageList_SetIconSize @85 + ImageList_SetImageCount @86 + ImageList_SetOverlayImage @87 + ImageList_Write @88 + InitCommonControlsEx @89 + InitMUILanguage @90 + InitializeFlatSB @91 + PropertySheet=PropertySheetA @92 + PropertySheetA @93 + PropertySheetW @94 + RegisterClassNameW @95 + UninitializeFlatSB @96 + _TrackMouseEvent @97 diff --git a/lib64/wine/libcomdlg32.def b/lib64/wine/libcomdlg32.def new file mode 100644 index 0000000..e85a191 --- /dev/null +++ b/lib64/wine/libcomdlg32.def @@ -0,0 +1,33 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/comdlg32/comdlg32.spec; do not edit! + +LIBRARY comdlg32.dll + +EXPORTS + ChooseColorA @1 + ChooseColorW @2 + ChooseFontA @3 + ChooseFontW @4 + CommDlgExtendedError @5 + DllGetClassObject @6 PRIVATE + DllRegisterServer @7 PRIVATE + DllUnregisterServer @8 PRIVATE + FindTextA @9 + FindTextW @10 + GetFileTitleA @11 + GetFileTitleW @12 + GetOpenFileNameA @13 + GetOpenFileNameW @14 + GetSaveFileNameA @15 + GetSaveFileNameW @16 + LoadAlterBitmap @17 PRIVATE + PageSetupDlgA @18 + PageSetupDlgW @19 + PrintDlgA @20 + PrintDlgExA @21 + PrintDlgExW @22 + PrintDlgW @23 + ReplaceTextA @24 + ReplaceTextW @25 + WantArrows @26 PRIVATE + dwLBSubclass @27 PRIVATE + dwOKSubclass @28 PRIVATE diff --git a/lib64/wine/libcompstui.def b/lib64/wine/libcompstui.def new file mode 100644 index 0000000..2dcc7e1 --- /dev/null +++ b/lib64/wine/libcompstui.def @@ -0,0 +1,9 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/compstui/compstui.spec; do not edit! + +LIBRARY compstui.dll + +EXPORTS + CommonPropertySheetUIA @1 + CommonPropertySheetUIW @2 + GetCPSUIUserData @3 + SetCPSUIUserData @4 diff --git a/lib64/wine/libcomsvcs.def b/lib64/wine/libcomsvcs.def new file mode 100644 index 0000000..be55703 --- /dev/null +++ b/lib64/wine/libcomsvcs.def @@ -0,0 +1,25 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/comsvcs/comsvcs.spec; do not edit! + +LIBRARY comsvcs.dll + +EXPORTS + CosGetCallContext @5 PRIVATE + CoCreateActivity @6 PRIVATE + CoEnterServiceDomain @7 PRIVATE + CoLeaveServiceDomain @8 PRIVATE + CoLoadServices @9 PRIVATE + ComSvcsExceptionFilter @10 PRIVATE + ComSvcsLogError @11 PRIVATE + DispManGetContext @12 PRIVATE + DllCanUnloadNow @13 PRIVATE + DllGetClassObject @14 PRIVATE + DllRegisterServer @15 PRIVATE + DllUnregisterServer @16 PRIVATE + GetMTAThreadPoolMetrics @17 PRIVATE + GetManagedExtensions @18 PRIVATE + GetObjectContext @19 PRIVATE + GetTrkSvrObject @20 PRIVATE + MTSCreateActivity @21 PRIVATE + MiniDumpW @22 PRIVATE + RecycleSurrogate @23 PRIVATE + SafeRef @24 PRIVATE diff --git a/lib64/wine/libcredui.def b/lib64/wine/libcredui.def new file mode 100644 index 0000000..363e8e5 --- /dev/null +++ b/lib64/wine/libcredui.def @@ -0,0 +1,26 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/credui/credui.spec; do not edit! + +LIBRARY credui.dll + +EXPORTS + CredPackAuthenticationBufferW @1 + CredUICmdLinePromptForCredentialsA @2 PRIVATE + CredUICmdLinePromptForCredentialsW @3 PRIVATE + CredUIConfirmCredentialsA @4 PRIVATE + CredUIConfirmCredentialsW @5 + CredUIInitControls @6 + CredUIParseUserNameA @7 PRIVATE + CredUIParseUserNameW @8 + CredUIPromptForCredentialsA @9 PRIVATE + CredUIPromptForCredentialsW @10 + CredUIPromptForWindowsCredentialsW @11 + CredUIReadSSOCredA @12 + CredUIReadSSOCredW @13 + CredUIStoreSSOCredA @14 + CredUIStoreSSOCredW @15 + CredUnPackAuthenticationBufferW @16 + DllCanUnloadNow @17 PRIVATE + DllGetClassObject @18 PRIVATE + DllRegisterServer @19 PRIVATE + DllUnregisterServer @20 PRIVATE + SspiPromptForCredentialsW @21 diff --git a/lib64/wine/libcrypt32.def b/lib64/wine/libcrypt32.def new file mode 100644 index 0000000..5f80fcc --- /dev/null +++ b/lib64/wine/libcrypt32.def @@ -0,0 +1,251 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/crypt32/crypt32.spec; do not edit! + +LIBRARY crypt32.dll + +EXPORTS + CertAddCRLContextToStore @1 + CertAddCTLContextToStore @2 + CertAddCertificateContextToStore @3 + CertAddCertificateLinkToStore @4 + CertAddEncodedCRLToStore @5 + CertAddEncodedCTLToStore @6 + CertAddEncodedCertificateToStore @7 + CertAddEncodedCertificateToSystemStoreA @8 + CertAddEncodedCertificateToSystemStoreW @9 + CertAddEnhancedKeyUsageIdentifier @10 + CertAddSerializedElementToStore @11 + CertAddStoreToCollection @12 + CertAlgIdToOID @13 + CertCloseStore @14 + CertCompareCertificate @15 + CertCompareCertificateName @16 + CertCompareIntegerBlob @17 + CertComparePublicKeyInfo @18 + CertControlStore @19 + CertCreateCRLContext @20 + CertCreateCTLContext @21 + CertCreateCertificateChainEngine @22 + CertCreateCertificateContext @23 + CertCreateContext @24 + CertCreateSelfSignCertificate @25 + CertDeleteCRLFromStore @26 + CertDeleteCTLFromStore @27 + CertDeleteCertificateFromStore @28 + CertDuplicateCRLContext @29 + CertDuplicateCTLContext @30 + CertDuplicateCertificateChain @31 + CertDuplicateCertificateContext @32 + CertDuplicateStore @33 + CertEnumCRLContextProperties @34 + CertEnumCRLsInStore @35 + CertEnumCTLContextProperties @36 + CertEnumCTLsInStore @37 + CertEnumCertificateContextProperties @38 + CertEnumCertificatesInStore @39 + CertEnumPhysicalStore @40 + CertEnumSystemStore @41 + CertFindAttribute @42 + CertFindCRLInStore @43 + CertFindCTLInStore @44 + CertFindCertificateInCRL @45 + CertFindCertificateInStore @46 + CertFindChainInStore @47 + CertFindExtension @48 + CertFindRDNAttr @49 + CertFindSubjectInCTL @50 PRIVATE + CertFreeCRLContext @51 + CertFreeCTLContext @52 + CertFreeCertificateChain @53 + CertFreeCertificateChainEngine @54 + CertFreeCertificateContext @55 + CertGetCRLContextProperty @56 + CertGetCRLFromStore @57 + CertGetCTLContextProperty @58 + CertGetCertificateChain @59 + CertGetCertificateContextProperty @60 + CertGetEnhancedKeyUsage @61 + CertGetIntendedKeyUsage @62 + CertGetIssuerCertificateFromStore @63 + CertGetNameStringA @64 + CertGetNameStringW @65 + CertGetPublicKeyLength @66 + CertGetStoreProperty @67 + CertGetSubjectCertificateFromStore @68 + CertGetValidUsages @69 + CertIsRDNAttrsInCertificateName @70 + CertIsValidCRLForCertificate @71 + CertNameToStrA @72 + CertNameToStrW @73 + CertOIDToAlgId @74 + CertOpenStore @75 + CertOpenSystemStoreA @76 + CertOpenSystemStoreW @77 + CertRDNValueToStrA @78 + CertRDNValueToStrW @79 + CertRegisterPhysicalStore @80 + CertRegisterSystemStore @81 + CertRemoveEnhancedKeyUsageIdentifier @82 + CertRemoveStoreFromCollection @83 + CertSaveStore @84 + CertSerializeCRLStoreElement @85 + CertSerializeCTLStoreElement @86 + CertSerializeCertificateStoreElement @87 + CertSetCRLContextProperty @88 + CertSetCTLContextProperty @89 + CertSetCertificateContextProperty @90 + CertSetEnhancedKeyUsage @91 + CertSetStoreProperty @92 + CertStrToNameA @93 + CertStrToNameW @94 + CertUnregisterPhysicalStore @95 + CertUnregisterSystemStore @96 + CertVerifyCRLRevocation @97 + CertVerifyCRLTimeValidity @98 + CertVerifyCTLUsage @99 + CertVerifyCertificateChainPolicy @100 + CertVerifyRevocation @101 + CertVerifySubjectCertificateContext @102 + CertVerifyTimeValidity @103 + CertVerifyValidityNesting @104 + CreateFileU=kernel32.CreateFileW @105 + CryptAcquireCertificatePrivateKey @106 + CryptAcquireContextU=advapi32.CryptAcquireContextW @107 + CryptBinaryToStringA @108 + CryptBinaryToStringW @109 + CryptCloseAsyncHandle @110 PRIVATE + CryptCreateAsyncHandle @111 PRIVATE + CryptDecodeMessage @112 PRIVATE + CryptDecodeObject @113 + CryptDecodeObjectEx @114 + CryptDecryptAndVerifyMessageSignature @115 PRIVATE + CryptDecryptMessage @116 PRIVATE + CryptEncodeObject @117 + CryptEncodeObjectEx @118 + CryptEncryptMessage @119 + CryptEnumOIDFunction @120 PRIVATE + CryptEnumOIDInfo @121 + CryptEnumProvidersU @122 PRIVATE + CryptExportPKCS8 @123 PRIVATE + CryptExportPublicKeyInfo @124 + CryptExportPublicKeyInfoEx @125 + CryptFindCertificateKeyProvInfo @126 + CryptFindLocalizedName @127 + CryptFindOIDInfo @128 + CryptFormatObject @129 + CryptFreeOIDFunctionAddress @130 + CryptGetAsyncParam @131 PRIVATE + CryptGetDefaultOIDDllList @132 + CryptGetDefaultOIDFunctionAddress @133 + CryptGetMessageCertificates @134 + CryptGetMessageSignerCount @135 + CryptGetOIDFunctionAddress @136 + CryptGetOIDFunctionValue @137 + CryptHashCertificate @138 + CryptHashCertificate2 @139 + CryptHashMessage @140 + CryptHashPublicKeyInfo @141 + CryptHashToBeSigned @142 + CryptImportPKCS8 @143 PRIVATE + CryptImportPublicKeyInfo @144 + CryptImportPublicKeyInfoEx @145 + CryptImportPublicKeyInfoEx2 @146 + CryptInitOIDFunctionSet @147 + CryptInstallOIDFunctionAddress @148 + CryptLoadSip @149 PRIVATE + CryptMemAlloc @150 + CryptMemFree @151 + CryptMemRealloc @152 + CryptMsgCalculateEncodedLength @153 PRIVATE + CryptMsgClose @154 + CryptMsgControl @155 + CryptMsgCountersign @156 PRIVATE + CryptMsgCountersignEncoded @157 PRIVATE + CryptMsgDuplicate @158 + CryptMsgEncodeAndSignCTL @159 + CryptMsgGetAndVerifySigner @160 + CryptMsgGetParam @161 + CryptMsgOpenToDecode @162 + CryptMsgOpenToEncode @163 + CryptMsgSignCTL @164 + CryptMsgUpdate @165 + CryptMsgVerifyCountersignatureEncoded @166 + CryptMsgVerifyCountersignatureEncodedEx @167 + CryptProtectData @168 + CryptProtectMemory @169 + CryptQueryObject @170 + CryptRegisterDefaultOIDFunction @171 + CryptRegisterOIDFunction @172 + CryptRegisterOIDInfo @173 + CryptSIPAddProvider @174 + CryptSIPCreateIndirectData @175 + CryptSIPGetSignedDataMsg @176 + CryptSIPLoad @177 + CryptSIPPutSignedDataMsg @178 + CryptSIPRemoveProvider @179 + CryptSIPRemoveSignedDataMsg @180 + CryptSIPRetrieveSubjectGuid @181 + CryptSIPRetrieveSubjectGuidForCatalogFile @182 + CryptSIPVerifyIndirectData @183 + CryptSetAsyncParam @184 PRIVATE + CryptSetKeyIdentifierProperty @185 + CryptSetOIDFunctionValue @186 + CryptSetProviderU @187 PRIVATE + CryptSignAndEncodeCertificate @188 + CryptSignAndEncryptMessage @189 PRIVATE + CryptSignCertificate @190 + CryptSignHashU @191 PRIVATE + CryptSignMessage @192 + CryptSignMessageWithKey @193 PRIVATE + CryptStringToBinaryA @194 + CryptStringToBinaryW @195 + CryptUnprotectData @196 + CryptUnprotectMemory @197 + CryptUnregisterDefaultOIDFunction @198 + CryptUnregisterOIDFunction @199 + CryptUnregisterOIDInfo @200 + CryptVerifyCertificateSignature @201 + CryptVerifyCertificateSignatureEx @202 + CryptVerifyDetachedMessageHash @203 + CryptVerifyDetachedMessageSignature @204 + CryptVerifyMessageHash @205 + CryptVerifyMessageSignature @206 + CryptVerifyMessageSignatureWithKey @207 PRIVATE + CryptVerifySignatureU @208 PRIVATE + I_CertUpdateStore @209 + I_CryptAllocTls @210 + I_CryptCreateLruCache @211 + I_CryptCreateLruEntry @212 + I_CryptDetachTls @213 + I_CryptFindLruEntry @214 + I_CryptFindLruEntryData @215 + I_CryptFlushLruCache @216 + I_CryptFreeLruCache @217 + I_CryptFreeTls @218 + I_CryptGetAsn1Decoder @219 + I_CryptGetAsn1Encoder @220 + I_CryptGetDefaultCryptProv @221 + I_CryptGetDefaultCryptProvForEncrypt @222 PRIVATE + I_CryptGetOssGlobal @223 + I_CryptGetTls @224 + I_CryptInsertLruEntry @225 PRIVATE + I_CryptInstallAsn1Module @226 + I_CryptInstallOssGlobal @227 + I_CryptReadTrustedPublisherDWORDValueFromRegistry @228 + I_CryptReleaseLruEntry @229 PRIVATE + I_CryptSetTls @230 + I_CryptUninstallAsn1Module @231 + I_CryptUninstallOssGlobal @232 PRIVATE + PFXExportCertStore @233 + PFXExportCertStoreEx @234 + PFXImportCertStore @235 + PFXIsPFXBlob @236 + PFXVerifyPassword @237 + RegCreateHKCUKeyExU @238 PRIVATE + RegCreateKeyExU @239 PRIVATE + RegDeleteValueU @240 PRIVATE + RegEnumValueU @241 PRIVATE + RegOpenHKCUKeyExU @242 PRIVATE + RegOpenKeyExU @243 PRIVATE + RegQueryInfoKeyU @244 PRIVATE + RegQueryValueExU @245 PRIVATE + RegSetValueExU @246 PRIVATE diff --git a/lib64/wine/libcryptdll.def b/lib64/wine/libcryptdll.def new file mode 100644 index 0000000..ffd71a6 --- /dev/null +++ b/lib64/wine/libcryptdll.def @@ -0,0 +1,19 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/cryptdll/cryptdll.spec; do not edit! + +LIBRARY cryptdll.dll + +EXPORTS + CDBuildIntegrityVect @1 PRIVATE + CDBuildVect @2 PRIVATE + CDFindCommonCSystem @3 PRIVATE + CDFindCommonCSystemWithKey @4 PRIVATE + CDGenerateRandomBits @5 PRIVATE + CDLocateCSystem @6 PRIVATE + CDLocateCheckSum @7 PRIVATE + CDLocateRng @8 PRIVATE + CDRegisterCSystem @9 PRIVATE + CDRegisterCheckSum @10 PRIVATE + CDRegisterRng @11 PRIVATE + MD5Final=advapi32.MD5Final @12 + MD5Init=advapi32.MD5Init @13 + MD5Update=advapi32.MD5Update @14 diff --git a/lib64/wine/libcryptnet.def b/lib64/wine/libcryptnet.def new file mode 100644 index 0000000..3cfb4f4 --- /dev/null +++ b/lib64/wine/libcryptnet.def @@ -0,0 +1,23 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/cryptnet/cryptnet.spec; do not edit! + +LIBRARY cryptnet.dll + +EXPORTS + CertDllVerifyCTLUsage @1 PRIVATE + CertDllVerifyRevocation @2 + CryptnetWlxLogoffEvent @3 PRIVATE + LdapProvOpenStore @4 PRIVATE + CryptCancelAsyncRetrieval @5 PRIVATE + CryptFlushTimeValidObject @6 PRIVATE + CryptGetObjectUrl @7 + CryptGetTimeValidObject @8 PRIVATE + CryptInstallCancelRetrieval @9 PRIVATE + CryptRetrieveObjectByUrlA @10 + CryptRetrieveObjectByUrlW @11 + CryptUninstallCancelRetrieval @12 PRIVATE + DllRegisterServer @13 PRIVATE + DllUnregisterServer @14 PRIVATE + I_CryptNetEnumUrlCacheEntry @15 PRIVATE + I_CryptNetGetHostNameFromUrl @16 PRIVATE + I_CryptNetGetUserDsStoreUrl @17 PRIVATE + I_CryptNetIsConnected @18 PRIVATE diff --git a/lib64/wine/libcryptui.def b/lib64/wine/libcryptui.def new file mode 100644 index 0000000..163a9ec --- /dev/null +++ b/lib64/wine/libcryptui.def @@ -0,0 +1,53 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/cryptui/cryptui.spec; do not edit! + +LIBRARY cryptui.dll + +EXPORTS + ACUIProviderInvokeUI @1 PRIVATE + CryptUIDlgCertMgr @2 + CryptUIDlgFreeCAContext @3 PRIVATE + CryptUIDlgSelectCA @4 PRIVATE + CryptUIDlgSelectCertificateA @5 + CryptUIDlgSelectCertificateFromStore @6 + CryptUIDlgSelectCertificateW @7 + CryptUIDlgSelectStoreA @8 + CryptUIDlgSelectStoreW @9 + CryptUIDlgViewCRLA @10 PRIVATE + CryptUIDlgViewCRLW @11 PRIVATE + CryptUIDlgViewCTLA @12 PRIVATE + CryptUIDlgViewCTLW @13 PRIVATE + CryptUIDlgViewCertificateA @14 + CryptUIDlgViewCertificatePropertiesA @15 PRIVATE + CryptUIDlgViewCertificatePropertiesW @16 PRIVATE + CryptUIDlgViewCertificateW @17 + CryptUIDlgViewContext @18 + CryptUIDlgViewSignerInfoA @19 + CryptUIDlgViewSignerInfoW @20 PRIVATE + CryptUIFreeCertificatePropertiesPagesA @21 PRIVATE + CryptUIFreeCertificatePropertiesPagesW @22 PRIVATE + CryptUIFreeViewSignaturesPagesA @23 PRIVATE + CryptUIFreeViewSignaturesPagesW @24 PRIVATE + CryptUIGetCertificatePropertiesPagesA @25 PRIVATE + CryptUIGetCertificatePropertiesPagesW @26 PRIVATE + CryptUIGetViewSignaturesPagesA @27 PRIVATE + CryptUIGetViewSignaturesPagesW @28 PRIVATE + CryptUIStartCertMgr @29 PRIVATE + CryptUIWizBuildCTL @30 PRIVATE + CryptUIWizCertRequest @31 PRIVATE + CryptUIWizCreateCertRequestNoDS @32 PRIVATE + CryptUIWizDigitalSign @33 + CryptUIWizExport @34 + CryptUIWizFreeCertRequestNoDS @35 PRIVATE + CryptUIWizFreeDigitalSignContext @36 PRIVATE + CryptUIWizImport @37 + CryptUIWizQueryCertRequestNoDS @38 PRIVATE + CryptUIWizSubmitCertRequestNoDS @39 PRIVATE + DllRegisterServer @40 PRIVATE + DllUnregisterServer @41 PRIVATE + EnrollmentCOMObjectFactory_getInstance @42 PRIVATE + I_CryptUIProtect @43 PRIVATE + I_CryptUIProtectFailure @44 PRIVATE + LocalEnroll @45 PRIVATE + LocalEnrollNoDS @46 PRIVATE + RetrievePKCS7FromCA @47 PRIVATE + WizardFree @48 PRIVATE diff --git a/lib64/wine/libd2d1.def b/lib64/wine/libd2d1.def new file mode 100644 index 0000000..a22d069 --- /dev/null +++ b/lib64/wine/libd2d1.def @@ -0,0 +1,16 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/d2d1/d2d1.spec; do not edit! + +LIBRARY d2d1.dll + +EXPORTS + D2D1CreateFactory @1 + D2D1MakeRotateMatrix @2 + D2D1MakeSkewMatrix @3 + D2D1IsMatrixInvertible @4 + D2D1InvertMatrix @5 + D2D1ConvertColorSpace @6 PRIVATE + D2D1CreateDevice @7 PRIVATE + D2D1CreateDeviceContext @8 PRIVATE + D2D1SinCos @9 PRIVATE + D2D1Tan @10 PRIVATE + D2D1Vec3Length @11 PRIVATE diff --git a/lib64/wine/libd3d10.def b/lib64/wine/libd3d10.def new file mode 100644 index 0000000..a13581b --- /dev/null +++ b/lib64/wine/libd3d10.def @@ -0,0 +1,34 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/d3d10/d3d10.spec; do not edit! + +LIBRARY d3d10.dll + +EXPORTS + D3D10CompileEffectFromMemory @1 + D3D10CompileShader @2 + D3D10CreateBlob=d3dcompiler_43.D3DCreateBlob @3 + D3D10CreateDevice @4 + D3D10CreateDeviceAndSwapChain @5 + D3D10CreateEffectFromMemory @6 + D3D10CreateEffectPoolFromMemory @7 + D3D10CreateStateBlock @8 + D3D10DisassembleEffect @9 PRIVATE + D3D10DisassembleShader @10 + D3D10GetGeometryShaderProfile @11 + D3D10GetInputAndOutputSignatureBlob=d3dcompiler_43.D3DGetInputAndOutputSignatureBlob @12 + D3D10GetInputSignatureBlob=d3dcompiler_43.D3DGetInputSignatureBlob @13 + D3D10GetOutputSignatureBlob=d3dcompiler_43.D3DGetOutputSignatureBlob @14 + D3D10GetPixelShaderProfile @15 + D3D10GetShaderDebugInfo=d3dcompiler_43.D3DGetDebugInfo @16 + D3D10GetVersion @17 PRIVATE + D3D10GetVertexShaderProfile @18 + D3D10PreprocessShader @19 PRIVATE + D3D10ReflectShader @20 + D3D10RegisterLayers @21 PRIVATE + D3D10StateBlockMaskDifference @22 + D3D10StateBlockMaskDisableAll @23 + D3D10StateBlockMaskDisableCapture @24 + D3D10StateBlockMaskEnableAll @25 + D3D10StateBlockMaskEnableCapture @26 + D3D10StateBlockMaskGetSetting @27 + D3D10StateBlockMaskIntersect @28 + D3D10StateBlockMaskUnion @29 diff --git a/lib64/wine/libd3d10_1.def b/lib64/wine/libd3d10_1.def new file mode 100644 index 0000000..53fd444 --- /dev/null +++ b/lib64/wine/libd3d10_1.def @@ -0,0 +1,35 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/d3d10_1/d3d10_1.spec; do not edit! + +LIBRARY d3d10_1.dll + +EXPORTS + RevertToOldImplementation @1 PRIVATE + D3D10CompileEffectFromMemory=d3d10.D3D10CompileEffectFromMemory @2 + D3D10CompileShader=d3d10.D3D10CompileShader @3 + D3D10CreateBlob=d3d10.D3D10CreateBlob @4 + D3D10CreateDevice1 @5 + D3D10CreateDeviceAndSwapChain1 @6 + D3D10CreateEffectFromMemory=d3d10.D3D10CreateEffectFromMemory @7 + D3D10CreateEffectPoolFromMemory=d3d10.D3D10CreateEffectPoolFromMemory @8 + D3D10CreateStateBlock=d3d10.D3D10CreateStateBlock @9 + D3D10DisassembleEffect @10 PRIVATE + D3D10DisassembleShader=d3d10.D3D10DisassembleShader @11 + D3D10GetGeometryShaderProfile=d3d10.D3D10GetGeometryShaderProfile @12 + D3D10GetInputAndOutputSignatureBlob=d3d10.D3D10GetInputAndOutputSignatureBlob @13 + D3D10GetInputSignatureBlob=d3d10.D3D10GetInputSignatureBlob @14 + D3D10GetOutputSignatureBlob=d3d10.D3D10GetOutputSignatureBlob @15 + D3D10GetPixelShaderProfile=d3d10.D3D10GetPixelShaderProfile @16 + D3D10GetShaderDebugInfo=d3d10.D3D10GetShaderDebugInfo @17 + D3D10GetVersion @18 PRIVATE + D3D10GetVertexShaderProfile=d3d10.D3D10GetVertexShaderProfile @19 + D3D10PreprocessShader @20 PRIVATE + D3D10ReflectShader=d3d10.D3D10ReflectShader @21 + D3D10RegisterLayers @22 PRIVATE + D3D10StateBlockMaskDifference=d3d10.D3D10StateBlockMaskDifference @23 + D3D10StateBlockMaskDisableAll=d3d10.D3D10StateBlockMaskDisableAll @24 + D3D10StateBlockMaskDisableCapture=d3d10.D3D10StateBlockMaskDisableCapture @25 + D3D10StateBlockMaskEnableAll=d3d10.D3D10StateBlockMaskEnableAll @26 + D3D10StateBlockMaskEnableCapture=d3d10.D3D10StateBlockMaskEnableCapture @27 + D3D10StateBlockMaskGetSetting=d3d10.D3D10StateBlockMaskGetSetting @28 + D3D10StateBlockMaskIntersect=d3d10.D3D10StateBlockMaskIntersect @29 + D3D10StateBlockMaskUnion=d3d10.D3D10StateBlockMaskUnion @30 diff --git a/lib64/wine/libd3d10core.def b/lib64/wine/libd3d10core.def new file mode 100644 index 0000000..36b0b4c --- /dev/null +++ b/lib64/wine/libd3d10core.def @@ -0,0 +1,7 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/d3d10core/d3d10core.spec; do not edit! + +LIBRARY d3d10core.dll + +EXPORTS + D3D10CoreCreateDevice @1 + D3D10CoreRegisterLayers @2 diff --git a/lib64/wine/libd3d11.def b/lib64/wine/libd3d11.def new file mode 100644 index 0000000..bf3581f --- /dev/null +++ b/lib64/wine/libd3d11.def @@ -0,0 +1,48 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/d3d11/d3d11.spec; do not edit! + +LIBRARY d3d11.dll + +EXPORTS + D3D11CoreCreateDevice @1 + D3D11CoreCreateLayeredDevice @2 PRIVATE + D3D11CoreGetLayeredDeviceSize @3 PRIVATE + D3D11CoreRegisterLayers @4 + D3D11CreateDevice @5 + D3D11CreateDeviceAndSwapChain @6 + D3D11On12CreateDevice @7 + D3DKMTCloseAdapter @8 PRIVATE + D3DKMTCreateAllocation @9 PRIVATE + D3DKMTCreateContext @10 PRIVATE + D3DKMTCreateDevice @11 PRIVATE + D3DKMTCreateSynchronizationObject @12 PRIVATE + D3DKMTDestroyAllocation @13 PRIVATE + D3DKMTDestroyContext @14 PRIVATE + D3DKMTDestroyDevice @15 PRIVATE + D3DKMTDestroySynchronizationObject @16 PRIVATE + D3DKMTEscape @17 PRIVATE + D3DKMTGetContextSchedulingPriority @18 PRIVATE + D3DKMTGetDeviceState @19 PRIVATE + D3DKMTGetDisplayModeList @20 PRIVATE + D3DKMTGetMultisampleMethodList @21 PRIVATE + D3DKMTGetRuntimeData @22 PRIVATE + D3DKMTGetSharedPrimaryHandle @23 PRIVATE + D3DKMTLock @24 PRIVATE + D3DKMTOpenAdapterFromHdc @25 PRIVATE + D3DKMTOpenResource @26 PRIVATE + D3DKMTPresent @27 PRIVATE + D3DKMTQueryAdapterInfo @28 PRIVATE + D3DKMTQueryAllocationResidency @29 PRIVATE + D3DKMTQueryResourceInfo @30 PRIVATE + D3DKMTRender @31 PRIVATE + D3DKMTSetAllocationPriority @32 PRIVATE + D3DKMTSetContextSchedulingPriority @33 PRIVATE + D3DKMTSetDisplayMode @34 PRIVATE + D3DKMTSetDisplayPrivateDriverFormat @35 PRIVATE + D3DKMTSetGammaRamp @36 PRIVATE + D3DKMTSetVidPnSourceOwner @37 PRIVATE + D3DKMTSignalSynchronizationObject @38 PRIVATE + D3DKMTUnlock @39 PRIVATE + D3DKMTWaitForSynchronizationObject @40 PRIVATE + D3DKMTWaitForVerticalBlankEvent @41 PRIVATE + OpenAdapter10 @42 PRIVATE + OpenAdapter10_2 @43 PRIVATE diff --git a/lib64/wine/libd3d8.def b/lib64/wine/libd3d8.def new file mode 100644 index 0000000..c434ad1 --- /dev/null +++ b/lib64/wine/libd3d8.def @@ -0,0 +1,10 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/d3d8/d3d8.spec; do not edit! + +LIBRARY d3d8.dll + +EXPORTS + D3D8GetSWInfo @1 + DebugSetMute @2 + Direct3DCreate8 @3 + ValidatePixelShader @4 + ValidateVertexShader @5 diff --git a/lib64/wine/libd3d9.def b/lib64/wine/libd3d9.def new file mode 100644 index 0000000..7d0435f --- /dev/null +++ b/lib64/wine/libd3d9.def @@ -0,0 +1,19 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/d3d9/d3d9.spec; do not edit! + +LIBRARY d3d9.dll + +EXPORTS + Direct3DShaderValidatorCreate9 @1 + PSGPError @2 PRIVATE + PSGPSampleTexture @3 PRIVATE + D3DPERF_BeginEvent @4 + D3DPERF_EndEvent @5 + D3DPERF_GetStatus @6 + D3DPERF_QueryRepeatFrame @7 + D3DPERF_SetMarker @8 + D3DPERF_SetOptions @9 + D3DPERF_SetRegion @10 + DebugSetLevel @11 PRIVATE + DebugSetMute @12 + Direct3DCreate9 @13 + Direct3DCreate9Ex @14 diff --git a/lib64/wine/libd3dcompiler.def b/lib64/wine/libd3dcompiler.def new file mode 100644 index 0000000..c37eecf --- /dev/null +++ b/lib64/wine/libd3dcompiler.def @@ -0,0 +1,34 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/d3dcompiler_47/d3dcompiler_47.spec; do not edit! + +LIBRARY d3dcompiler_47.dll + +EXPORTS + D3DAssemble @1 + D3DCompile @2 + D3DCompile2 @3 + D3DCompileFromFile @4 + D3DCompressShaders @5 PRIVATE + D3DCreateBlob @6 + D3DCreateFunctionLinkingGraph @7 PRIVATE + D3DCreateLinker @8 PRIVATE + D3DDecompressShaders @9 PRIVATE + D3DDisassemble @10 + D3DDisassemble10Effect @11 PRIVATE + D3DDisassemble11Trace @12 PRIVATE + D3DDisassembleRegion @13 PRIVATE + D3DGetBlobPart @14 + D3DGetDebugInfo @15 + D3DGetInputAndOutputSignatureBlob @16 + D3DGetInputSignatureBlob @17 + D3DGetOutputSignatureBlob @18 + D3DGetTraceInstructionOffsets @19 PRIVATE + D3DLoadModule @20 + D3DPreprocess @21 + D3DReadFileToBlob @22 + D3DReflect @23 + D3DReflectLibrary @24 PRIVATE + D3DReturnFailure1 @25 PRIVATE + D3DSetBlobPart @26 PRIVATE + D3DStripShader @27 + D3DWriteBlobToFile @28 + DebugSetMute @29 PRIVATE diff --git a/lib64/wine/libd3drm.def b/lib64/wine/libd3drm.def new file mode 100644 index 0000000..eeef615 --- /dev/null +++ b/lib64/wine/libd3drm.def @@ -0,0 +1,28 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/d3drm/d3drm.spec; do not edit! + +LIBRARY d3drm.dll + +EXPORTS + D3DRMColorGetAlpha @1 + D3DRMColorGetBlue @2 + D3DRMColorGetGreen @3 + D3DRMColorGetRed @4 + D3DRMCreateColorRGB @5 + D3DRMCreateColorRGBA @6 + D3DRMMatrixFromQuaternion @7 + D3DRMQuaternionFromRotation @8 + D3DRMQuaternionMultiply @9 + D3DRMQuaternionSlerp @10 + D3DRMVectorAdd @11 + D3DRMVectorCrossProduct @12 + D3DRMVectorDotProduct @13 + D3DRMVectorModulus @14 + D3DRMVectorNormalize @15 + D3DRMVectorRandom @16 + D3DRMVectorReflect @17 + D3DRMVectorRotate @18 + D3DRMVectorScale @19 + D3DRMVectorSubtract @20 + Direct3DRMCreate @21 + DllCanUnloadNow @22 PRIVATE + DllGetClassObject @23 PRIVATE diff --git a/lib64/wine/libd3dx10.def b/lib64/wine/libd3dx10.def new file mode 100644 index 0000000..0f6fde9 --- /dev/null +++ b/lib64/wine/libd3dx10.def @@ -0,0 +1,181 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/d3dx10_43/d3dx10_43.spec; do not edit! + +LIBRARY d3dx10_43.dll + +EXPORTS + D3DX10CreateThreadPump @1 PRIVATE + D3DX10CheckVersion @2 + D3DX10CompileFromFileA @3 PRIVATE + D3DX10CompileFromFileW @4 PRIVATE + D3DX10CompileFromMemory @5 + D3DX10CompileFromResourceA @6 PRIVATE + D3DX10CompileFromResourceW @7 PRIVATE + D3DX10ComputeNormalMap @8 PRIVATE + D3DX10CreateAsyncCompilerProcessor @9 PRIVATE + D3DX10CreateAsyncEffectCreateProcessor @10 PRIVATE + D3DX10CreateAsyncEffectPoolCreateProcessor @11 PRIVATE + D3DX10CreateAsyncFileLoaderA @12 + D3DX10CreateAsyncFileLoaderW @13 + D3DX10CreateAsyncMemoryLoader @14 + D3DX10CreateAsyncResourceLoaderA @15 + D3DX10CreateAsyncResourceLoaderW @16 + D3DX10CreateAsyncShaderPreprocessProcessor @17 PRIVATE + D3DX10CreateAsyncShaderResourceViewProcessor @18 PRIVATE + D3DX10CreateAsyncTextureInfoProcessor @19 PRIVATE + D3DX10CreateAsyncTextureProcessor @20 PRIVATE + D3DX10CreateDevice @21 + D3DX10CreateDeviceAndSwapChain @22 + D3DX10CreateEffectFromFileA @23 + D3DX10CreateEffectFromFileW @24 + D3DX10CreateEffectFromMemory @25 + D3DX10CreateEffectFromResourceA @26 PRIVATE + D3DX10CreateEffectFromResourceW @27 PRIVATE + D3DX10CreateEffectPoolFromFileA @28 + D3DX10CreateEffectPoolFromFileW @29 + D3DX10CreateEffectPoolFromMemory @30 + D3DX10CreateEffectPoolFromResourceA @31 PRIVATE + D3DX10CreateEffectPoolFromResourceW @32 PRIVATE + D3DX10CreateFontA @33 PRIVATE + D3DX10CreateFontIndirectA @34 PRIVATE + D3DX10CreateFontIndirectW @35 PRIVATE + D3DX10CreateFontW @36 PRIVATE + D3DX10CreateMesh @37 PRIVATE + D3DX10CreateShaderResourceViewFromFileA @38 PRIVATE + D3DX10CreateShaderResourceViewFromFileW @39 PRIVATE + D3DX10CreateShaderResourceViewFromMemory @40 PRIVATE + D3DX10CreateShaderResourceViewFromResourceA @41 PRIVATE + D3DX10CreateShaderResourceViewFromResourceW @42 PRIVATE + D3DX10CreateSkinInfo @43 PRIVATE + D3DX10CreateSprite @44 PRIVATE + D3DX10CreateTextureFromFileA @45 PRIVATE + D3DX10CreateTextureFromFileW @46 PRIVATE + D3DX10CreateTextureFromMemory @47 + D3DX10CreateTextureFromResourceA @48 PRIVATE + D3DX10CreateTextureFromResourceW @49 PRIVATE + D3DX10FilterTexture @50 + D3DX10GetFeatureLevel1 @51 + D3DX10GetImageInfoFromFileA @52 PRIVATE + D3DX10GetImageInfoFromFileW @53 PRIVATE + D3DX10GetImageInfoFromMemory @54 + D3DX10GetImageInfoFromResourceA @55 PRIVATE + D3DX10GetImageInfoFromResourceW @56 PRIVATE + D3DX10LoadTextureFromTexture @57 PRIVATE + D3DX10PreprocessShaderFromFileA @58 PRIVATE + D3DX10PreprocessShaderFromFileW @59 PRIVATE + D3DX10PreprocessShaderFromMemory @60 + D3DX10PreprocessShaderFromResourceA @61 PRIVATE + D3DX10PreprocessShaderFromResourceW @62 PRIVATE + D3DX10SHProjectCubeMap @63 PRIVATE + D3DX10SaveTextureToFileA @64 PRIVATE + D3DX10SaveTextureToFileW @65 PRIVATE + D3DX10SaveTextureToMemory @66 PRIVATE + D3DX10UnsetAllDeviceObjects @67 + D3DXBoxBoundProbe=d3dx9_36.D3DXBoxBoundProbe @68 + D3DXColorAdjustContrast=d3dx9_36.D3DXColorAdjustContrast @69 + D3DXColorAdjustSaturation=d3dx9_36.D3DXColorAdjustSaturation @70 + D3DXComputeBoundingBox=d3dx9_36.D3DXComputeBoundingBox @71 + D3DXComputeBoundingSphere=d3dx9_36.D3DXComputeBoundingSphere @72 + D3DXCpuOptimizations @73 + D3DXCreateMatrixStack=d3dx9_36.D3DXCreateMatrixStack @74 + D3DXFloat16To32Array=d3dx9_36.D3DXFloat16To32Array @75 + D3DXFloat32To16Array=d3dx9_36.D3DXFloat32To16Array @76 + D3DXFresnelTerm=d3dx9_36.D3DXFresnelTerm @77 + D3DXIntersectTri=d3dx9_36.D3DXIntersectTri @78 + D3DXMatrixAffineTransformation2D=d3dx9_36.D3DXMatrixAffineTransformation2D @79 + D3DXMatrixAffineTransformation=d3dx9_36.D3DXMatrixAffineTransformation @80 + D3DXMatrixDecompose=d3dx9_36.D3DXMatrixDecompose @81 + D3DXMatrixDeterminant=d3dx9_36.D3DXMatrixDeterminant @82 + D3DXMatrixInverse=d3dx9_36.D3DXMatrixInverse @83 + D3DXMatrixLookAtLH=d3dx9_36.D3DXMatrixLookAtLH @84 + D3DXMatrixLookAtRH=d3dx9_36.D3DXMatrixLookAtRH @85 + D3DXMatrixMultiply=d3dx9_36.D3DXMatrixMultiply @86 + D3DXMatrixMultiplyTranspose=d3dx9_36.D3DXMatrixMultiplyTranspose @87 + D3DXMatrixOrthoLH=d3dx9_36.D3DXMatrixOrthoLH @88 + D3DXMatrixOrthoOffCenterLH=d3dx9_36.D3DXMatrixOrthoOffCenterLH @89 + D3DXMatrixOrthoOffCenterRH=d3dx9_36.D3DXMatrixOrthoOffCenterRH @90 + D3DXMatrixOrthoRH=d3dx9_36.D3DXMatrixOrthoRH @91 + D3DXMatrixPerspectiveFovLH=d3dx9_36.D3DXMatrixPerspectiveFovLH @92 + D3DXMatrixPerspectiveFovRH=d3dx9_36.D3DXMatrixPerspectiveFovRH @93 + D3DXMatrixPerspectiveLH=d3dx9_36.D3DXMatrixPerspectiveLH @94 + D3DXMatrixPerspectiveOffCenterLH=d3dx9_36.D3DXMatrixPerspectiveOffCenterLH @95 + D3DXMatrixPerspectiveOffCenterRH=d3dx9_36.D3DXMatrixPerspectiveOffCenterRH @96 + D3DXMatrixPerspectiveRH=d3dx9_36.D3DXMatrixPerspectiveRH @97 + D3DXMatrixReflect=d3dx9_36.D3DXMatrixReflect @98 + D3DXMatrixRotationAxis=d3dx9_36.D3DXMatrixRotationAxis @99 + D3DXMatrixRotationQuaternion=d3dx9_36.D3DXMatrixRotationQuaternion @100 + D3DXMatrixRotationX=d3dx9_36.D3DXMatrixRotationX @101 + D3DXMatrixRotationY=d3dx9_36.D3DXMatrixRotationY @102 + D3DXMatrixRotationYawPitchRoll=d3dx9_36.D3DXMatrixRotationYawPitchRoll @103 + D3DXMatrixRotationZ=d3dx9_36.D3DXMatrixRotationZ @104 + D3DXMatrixScaling=d3dx9_36.D3DXMatrixScaling @105 + D3DXMatrixShadow=d3dx9_36.D3DXMatrixShadow @106 + D3DXMatrixTransformation2D=d3dx9_36.D3DXMatrixTransformation2D @107 + D3DXMatrixTransformation=d3dx9_36.D3DXMatrixTransformation @108 + D3DXMatrixTranslation=d3dx9_36.D3DXMatrixTranslation @109 + D3DXMatrixTranspose=d3dx9_36.D3DXMatrixTranspose @110 + D3DXPlaneFromPointNormal=d3dx9_36.D3DXPlaneFromPointNormal @111 + D3DXPlaneFromPoints=d3dx9_36.D3DXPlaneFromPoints @112 + D3DXPlaneIntersectLine=d3dx9_36.D3DXPlaneIntersectLine @113 + D3DXPlaneNormalize=d3dx9_36.D3DXPlaneNormalize @114 + D3DXPlaneTransform=d3dx9_36.D3DXPlaneTransform @115 + D3DXPlaneTransformArray=d3dx9_36.D3DXPlaneTransformArray @116 + D3DXQuaternionBaryCentric=d3dx9_36.D3DXQuaternionBaryCentric @117 + D3DXQuaternionExp=d3dx9_36.D3DXQuaternionExp @118 + D3DXQuaternionInverse=d3dx9_36.D3DXQuaternionInverse @119 + D3DXQuaternionLn=d3dx9_36.D3DXQuaternionLn @120 + D3DXQuaternionMultiply=d3dx9_36.D3DXQuaternionMultiply @121 + D3DXQuaternionNormalize=d3dx9_36.D3DXQuaternionNormalize @122 + D3DXQuaternionRotationAxis=d3dx9_36.D3DXQuaternionRotationAxis @123 + D3DXQuaternionRotationMatrix=d3dx9_36.D3DXQuaternionRotationMatrix @124 + D3DXQuaternionRotationYawPitchRoll=d3dx9_36.D3DXQuaternionRotationYawPitchRoll @125 + D3DXQuaternionSlerp=d3dx9_36.D3DXQuaternionSlerp @126 + D3DXQuaternionSquad=d3dx9_36.D3DXQuaternionSquad @127 + D3DXQuaternionSquadSetup=d3dx9_36.D3DXQuaternionSquadSetup @128 + D3DXQuaternionToAxisAngle=d3dx9_36.D3DXQuaternionToAxisAngle @129 + D3DXSHAdd=d3dx9_36.D3DXSHAdd @130 + D3DXSHDot=d3dx9_36.D3DXSHDot @131 + D3DXSHEvalConeLight=d3dx9_36.D3DXSHEvalConeLight @132 + D3DXSHEvalDirection=d3dx9_36.D3DXSHEvalDirection @133 + D3DXSHEvalDirectionalLight=d3dx9_36.D3DXSHEvalDirectionalLight @134 + D3DXSHEvalHemisphereLight=d3dx9_36.D3DXSHEvalHemisphereLight @135 + D3DXSHEvalSphericalLight=d3dx9_36.D3DXSHEvalSphericalLight @136 + D3DXSHMultiply2=d3dx9_36.D3DXSHMultiply2 @137 + D3DXSHMultiply3=d3dx9_36.D3DXSHMultiply3 @138 + D3DXSHMultiply4=d3dx9_36.D3DXSHMultiply4 @139 + D3DXSHMultiply5=d3dx9_36.D3DXSHMultiply5 @140 + D3DXSHMultiply6=d3dx9_36.D3DXSHMultiply6 @141 + D3DXSHRotate=d3dx9_36.D3DXSHRotate @142 + D3DXSHRotateZ=d3dx9_36.D3DXSHRotateZ @143 + D3DXSHScale=d3dx9_36.D3DXSHScale @144 + D3DXSphereBoundProbe=d3dx9_36.D3DXSphereBoundProbe @145 + D3DXVec2BaryCentric=d3dx9_36.D3DXVec2BaryCentric @146 + D3DXVec2CatmullRom=d3dx9_36.D3DXVec2CatmullRom @147 + D3DXVec2Hermite=d3dx9_36.D3DXVec2Hermite @148 + D3DXVec2Normalize=d3dx9_36.D3DXVec2Normalize @149 + D3DXVec2Transform=d3dx9_36.D3DXVec2Transform @150 + D3DXVec2TransformArray=d3dx9_36.D3DXVec2TransformArray @151 + D3DXVec2TransformCoord=d3dx9_36.D3DXVec2TransformCoord @152 + D3DXVec2TransformCoordArray=d3dx9_36.D3DXVec2TransformCoordArray @153 + D3DXVec2TransformNormal=d3dx9_36.D3DXVec2TransformNormal @154 + D3DXVec2TransformNormalArray=d3dx9_36.D3DXVec2TransformNormalArray @155 + D3DXVec3BaryCentric=d3dx9_36.D3DXVec3BaryCentric @156 + D3DXVec3CatmullRom=d3dx9_36.D3DXVec3CatmullRom @157 + D3DXVec3Hermite=d3dx9_36.D3DXVec3Hermite @158 + D3DXVec3Normalize=d3dx9_36.D3DXVec3Normalize @159 + D3DXVec3Project=d3dx9_36.D3DXVec3Project @160 + D3DXVec3ProjectArray=d3dx9_36.D3DXVec3ProjectArray @161 + D3DXVec3Transform=d3dx9_36.D3DXVec3Transform @162 + D3DXVec3TransformArray=d3dx9_36.D3DXVec3TransformArray @163 + D3DXVec3TransformCoord=d3dx9_36.D3DXVec3TransformCoord @164 + D3DXVec3TransformCoordArray=d3dx9_36.D3DXVec3TransformCoordArray @165 + D3DXVec3TransformNormal=d3dx9_36.D3DXVec3TransformNormal @166 + D3DXVec3TransformNormalArray=d3dx9_36.D3DXVec3TransformNormalArray @167 + D3DXVec3Unproject=d3dx9_36.D3DXVec3Unproject @168 + D3DXVec3UnprojectArray=d3dx9_36.D3DXVec3UnprojectArray @169 + D3DXVec4BaryCentric=d3dx9_36.D3DXVec4BaryCentric @170 + D3DXVec4CatmullRom=d3dx9_36.D3DXVec4CatmullRom @171 + D3DXVec4Cross=d3dx9_36.D3DXVec4Cross @172 + D3DXVec4Hermite=d3dx9_36.D3DXVec4Hermite @173 + D3DXVec4Normalize=d3dx9_36.D3DXVec4Normalize @174 + D3DXVec4Transform=d3dx9_36.D3DXVec4Transform @175 + D3DXVec4TransformArray=d3dx9_36.D3DXVec4TransformArray @176 diff --git a/lib64/wine/libd3dx11.def b/lib64/wine/libd3dx11.def new file mode 100644 index 0000000..0706604 --- /dev/null +++ b/lib64/wine/libd3dx11.def @@ -0,0 +1,49 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/d3dx11_43/d3dx11_43.spec; do not edit! + +LIBRARY d3dx11_43.dll + +EXPORTS + D3DX11CheckVersion @1 + D3DX11CompileFromFileA @2 + D3DX11CompileFromFileW @3 + D3DX11CompileFromMemory @4 + D3DX11CompileFromResourceA @5 PRIVATE + D3DX11CompileFromResourceW @6 PRIVATE + D3DX11ComputeNormalMap @7 PRIVATE + D3DX11CreateAsyncCompilerProcessor @8 PRIVATE + D3DX11CreateAsyncFileLoaderA @9 + D3DX11CreateAsyncFileLoaderW @10 + D3DX11CreateAsyncMemoryLoader @11 + D3DX11CreateAsyncResourceLoaderA @12 + D3DX11CreateAsyncResourceLoaderW @13 + D3DX11CreateAsyncShaderPreprocessProcessor @14 PRIVATE + D3DX11CreateAsyncShaderResourceViewProcessor @15 PRIVATE + D3DX11CreateAsyncTextureInfoProcessor @16 PRIVATE + D3DX11CreateAsyncTextureProcessor @17 PRIVATE + D3DX11CreateShaderResourceViewFromFileA @18 PRIVATE + D3DX11CreateShaderResourceViewFromFileW @19 PRIVATE + D3DX11CreateShaderResourceViewFromMemory @20 + D3DX11CreateShaderResourceViewFromResourceA @21 PRIVATE + D3DX11CreateShaderResourceViewFromResourceW @22 PRIVATE + D3DX11CreateTextureFromFileA @23 + D3DX11CreateTextureFromFileW @24 + D3DX11CreateTextureFromMemory @25 + D3DX11CreateTextureFromResourceA @26 PRIVATE + D3DX11CreateTextureFromResourceW @27 PRIVATE + D3DX11CreateThreadPump @28 PRIVATE + D3DX11FilterTexture @29 + D3DX11GetImageInfoFromFileA @30 PRIVATE + D3DX11GetImageInfoFromFileW @31 PRIVATE + D3DX11GetImageInfoFromMemory @32 + D3DX11GetImageInfoFromResourceA @33 PRIVATE + D3DX11GetImageInfoFromResourceW @34 PRIVATE + D3DX11LoadTextureFromTexture @35 PRIVATE + D3DX11PreprocessShaderFromFileA @36 PRIVATE + D3DX11PreprocessShaderFromFileW @37 PRIVATE + D3DX11PreprocessShaderFromMemory @38 PRIVATE + D3DX11PreprocessShaderFromResourceA @39 PRIVATE + D3DX11PreprocessShaderFromResourceW @40 PRIVATE + D3DX11SHProjectCubeMap @41 PRIVATE + D3DX11SaveTextureToFileA @42 PRIVATE + D3DX11SaveTextureToFileW @43 PRIVATE + D3DX11SaveTextureToMemory @44 diff --git a/lib64/wine/libd3dx9.def b/lib64/wine/libd3dx9.def new file mode 100644 index 0000000..5638f71 --- /dev/null +++ b/lib64/wine/libd3dx9.def @@ -0,0 +1,341 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/d3dx9_36/d3dx9_36.spec; do not edit! + +LIBRARY d3dx9_36.dll + +EXPORTS + D3DXAssembleShader @1 + D3DXAssembleShaderFromFileA @2 + D3DXAssembleShaderFromFileW @3 + D3DXAssembleShaderFromResourceA @4 + D3DXAssembleShaderFromResourceW @5 + D3DXBoxBoundProbe @6 + D3DXCheckCubeTextureRequirements @7 + D3DXCheckTextureRequirements @8 + D3DXCheckVersion @9 + D3DXCheckVolumeTextureRequirements @10 + D3DXCleanMesh @11 + D3DXColorAdjustContrast @12 + D3DXColorAdjustSaturation @13 + D3DXCompileShader @14 + D3DXCompileShaderFromFileA @15 + D3DXCompileShaderFromFileW @16 + D3DXCompileShaderFromResourceA @17 + D3DXCompileShaderFromResourceW @18 + D3DXComputeBoundingBox @19 + D3DXComputeBoundingSphere @20 + D3DXComputeIMTFromPerTexelSignal @21 PRIVATE + D3DXComputeIMTFromPerVertexSignal @22 PRIVATE + D3DXComputeIMTFromSignal @23 PRIVATE + D3DXComputeIMTFromTexture @24 PRIVATE + D3DXComputeNormalMap @25 + D3DXComputeNormals @26 + D3DXComputeTangent @27 + D3DXComputeTangentFrame @28 PRIVATE + D3DXComputeTangentFrameEx @29 + D3DXConcatenateMeshes @30 PRIVATE + D3DXConvertMeshSubsetToSingleStrip @31 + D3DXConvertMeshSubsetToStrips @32 PRIVATE + D3DXCreateAnimationController @33 + D3DXCreateBox @34 + D3DXCreateBuffer @35 + D3DXCreateCompressedAnimationSet @36 PRIVATE + D3DXCreateCubeTexture @37 + D3DXCreateCubeTextureFromFileA @38 + D3DXCreateCubeTextureFromFileExA @39 + D3DXCreateCubeTextureFromFileExW @40 + D3DXCreateCubeTextureFromFileInMemory @41 + D3DXCreateCubeTextureFromFileInMemoryEx @42 + D3DXCreateCubeTextureFromFileW @43 + D3DXCreateCubeTextureFromResourceA @44 PRIVATE + D3DXCreateCubeTextureFromResourceExA @45 PRIVATE + D3DXCreateCubeTextureFromResourceExW @46 PRIVATE + D3DXCreateCubeTextureFromResourceW @47 PRIVATE + D3DXCreateCylinder @48 + D3DXCreateEffect @49 + D3DXCreateEffectCompiler @50 + D3DXCreateEffectCompilerFromFileA @51 + D3DXCreateEffectCompilerFromFileW @52 + D3DXCreateEffectCompilerFromResourceA @53 + D3DXCreateEffectCompilerFromResourceW @54 + D3DXCreateEffectEx @55 + D3DXCreateEffectFromFileA @56 + D3DXCreateEffectFromFileExA @57 + D3DXCreateEffectFromFileExW @58 + D3DXCreateEffectFromFileW @59 + D3DXCreateEffectFromResourceA @60 + D3DXCreateEffectFromResourceExA @61 + D3DXCreateEffectFromResourceExW @62 + D3DXCreateEffectFromResourceW @63 + D3DXCreateEffectPool @64 + D3DXCreateFontA @65 + D3DXCreateFontIndirectA @66 + D3DXCreateFontIndirectW @67 + D3DXCreateFontW @68 + D3DXCreateFragmentLinker @69 + D3DXCreateFragmentLinkerEx @70 + D3DXCreateKeyframedAnimationSet @71 + D3DXCreateLine @72 + D3DXCreateMatrixStack @73 + D3DXCreateMesh @74 + D3DXCreateMeshFVF @75 + D3DXCreateNPatchMesh @76 PRIVATE + D3DXCreatePMeshFromStream @77 PRIVATE + D3DXCreatePRTBuffer @78 PRIVATE + D3DXCreatePRTBufferTex @79 PRIVATE + D3DXCreatePRTCompBuffer @80 PRIVATE + D3DXCreatePRTEngine @81 PRIVATE + D3DXCreatePatchMesh @82 PRIVATE + D3DXCreatePolygon @83 + D3DXCreateRenderToEnvMap @84 + D3DXCreateRenderToSurface @85 + D3DXCreateSPMesh @86 PRIVATE + D3DXCreateSkinInfo @87 + D3DXCreateSkinInfoFVF @88 + D3DXCreateSkinInfoFromBlendedMesh @89 PRIVATE + D3DXCreateSphere @90 + D3DXCreateSprite @91 + D3DXCreateTeapot @92 + D3DXCreateTextA @93 + D3DXCreateTextW @94 + D3DXCreateTexture @95 + D3DXCreateTextureFromFileA @96 + D3DXCreateTextureFromFileExA @97 + D3DXCreateTextureFromFileExW @98 + D3DXCreateTextureFromFileInMemory @99 + D3DXCreateTextureFromFileInMemoryEx @100 + D3DXCreateTextureFromFileW @101 + D3DXCreateTextureFromResourceA @102 + D3DXCreateTextureFromResourceExA @103 + D3DXCreateTextureFromResourceExW @104 + D3DXCreateTextureFromResourceW @105 + D3DXCreateTextureGutterHelper @106 PRIVATE + D3DXCreateTextureShader @107 + D3DXCreateTorus @108 + D3DXCreateVolumeTexture @109 + D3DXCreateVolumeTextureFromFileA @110 + D3DXCreateVolumeTextureFromFileExA @111 + D3DXCreateVolumeTextureFromFileExW @112 + D3DXCreateVolumeTextureFromFileInMemory @113 + D3DXCreateVolumeTextureFromFileInMemoryEx @114 + D3DXCreateVolumeTextureFromFileW @115 + D3DXCreateVolumeTextureFromResourceA @116 PRIVATE + D3DXCreateVolumeTextureFromResourceExA @117 PRIVATE + D3DXCreateVolumeTextureFromResourceExW @118 PRIVATE + D3DXCreateVolumeTextureFromResourceW @119 PRIVATE + D3DXDebugMute @120 + D3DXDeclaratorFromFVF @121 + D3DXDisassembleEffect @122 + D3DXDisassembleShader @123 + D3DXFVFFromDeclarator @124 + D3DXFileCreate @125 + D3DXFillCubeTexture @126 + D3DXFillCubeTextureTX @127 + D3DXFillTexture @128 + D3DXFillTextureTX @129 + D3DXFillVolumeTexture @130 + D3DXFillVolumeTextureTX @131 + D3DXFilterTexture @132 + D3DXFindShaderComment @133 + D3DXFloat16To32Array @134 + D3DXFloat32To16Array @135 + D3DXFrameAppendChild @136 PRIVATE + D3DXFrameCalculateBoundingSphere @137 PRIVATE + D3DXFrameDestroy @138 + D3DXFrameFind @139 + D3DXFrameNumNamedMatrices @140 PRIVATE + D3DXFrameRegisterNamedMatrices @141 PRIVATE + D3DXFresnelTerm @142 + D3DXGatherFragments @143 PRIVATE + D3DXGatherFragmentsFromFileA @144 PRIVATE + D3DXGatherFragmentsFromFileW @145 PRIVATE + D3DXGatherFragmentsFromResourceA @146 PRIVATE + D3DXGatherFragmentsFromResourceW @147 PRIVATE + D3DXGenerateOutputDecl @148 PRIVATE + D3DXGeneratePMesh @149 PRIVATE + D3DXGetDeclLength @150 + D3DXGetDeclVertexSize @151 + D3DXGetDriverLevel @152 + D3DXGetFVFVertexSize @153 + D3DXGetImageInfoFromFileA @154 + D3DXGetImageInfoFromFileInMemory @155 + D3DXGetImageInfoFromFileW @156 + D3DXGetImageInfoFromResourceA @157 + D3DXGetImageInfoFromResourceW @158 + D3DXGetPixelShaderProfile @159 + D3DXGetShaderConstantTable @160 + D3DXGetShaderConstantTableEx @161 + D3DXGetShaderInputSemantics @162 + D3DXGetShaderOutputSemantics @163 + D3DXGetShaderSamplers @164 + D3DXGetShaderSize @165 + D3DXGetShaderVersion @166 + D3DXGetVertexShaderProfile @167 + D3DXIntersect @168 + D3DXIntersectSubset @169 PRIVATE + D3DXIntersectTri @170 + D3DXLoadMeshFromXA @171 + D3DXLoadMeshFromXInMemory @172 + D3DXLoadMeshFromXResource @173 + D3DXLoadMeshFromXW @174 + D3DXLoadMeshFromXof @175 PRIVATE + D3DXLoadMeshHierarchyFromXA @176 + D3DXLoadMeshHierarchyFromXInMemory @177 + D3DXLoadMeshHierarchyFromXW @178 + D3DXLoadPRTBufferFromFileA @179 PRIVATE + D3DXLoadPRTBufferFromFileW @180 PRIVATE + D3DXLoadPRTCompBufferFromFileA @181 PRIVATE + D3DXLoadPRTCompBufferFromFileW @182 PRIVATE + D3DXLoadPatchMeshFromXof @183 PRIVATE + D3DXLoadSkinMeshFromXof @184 + D3DXLoadSurfaceFromFileA @185 + D3DXLoadSurfaceFromFileInMemory @186 + D3DXLoadSurfaceFromFileW @187 + D3DXLoadSurfaceFromMemory @188 + D3DXLoadSurfaceFromResourceA @189 + D3DXLoadSurfaceFromResourceW @190 + D3DXLoadSurfaceFromSurface @191 + D3DXLoadVolumeFromFileA @192 + D3DXLoadVolumeFromFileInMemory @193 + D3DXLoadVolumeFromFileW @194 + D3DXLoadVolumeFromMemory @195 + D3DXLoadVolumeFromResourceA @196 PRIVATE + D3DXLoadVolumeFromResourceW @197 PRIVATE + D3DXLoadVolumeFromVolume @198 + D3DXMatrixAffineTransformation @199 + D3DXMatrixAffineTransformation2D @200 + D3DXMatrixDecompose @201 + D3DXMatrixDeterminant @202 + D3DXMatrixInverse @203 + D3DXMatrixLookAtLH @204 + D3DXMatrixLookAtRH @205 + D3DXMatrixMultiply @206 + D3DXMatrixMultiplyTranspose @207 + D3DXMatrixOrthoLH @208 + D3DXMatrixOrthoOffCenterLH @209 + D3DXMatrixOrthoOffCenterRH @210 + D3DXMatrixOrthoRH @211 + D3DXMatrixPerspectiveFovLH @212 + D3DXMatrixPerspectiveFovRH @213 + D3DXMatrixPerspectiveLH @214 + D3DXMatrixPerspectiveOffCenterLH @215 + D3DXMatrixPerspectiveOffCenterRH @216 + D3DXMatrixPerspectiveRH @217 + D3DXMatrixReflect @218 + D3DXMatrixRotationAxis @219 + D3DXMatrixRotationQuaternion @220 + D3DXMatrixRotationX @221 + D3DXMatrixRotationY @222 + D3DXMatrixRotationYawPitchRoll @223 + D3DXMatrixRotationZ @224 + D3DXMatrixScaling @225 + D3DXMatrixShadow @226 + D3DXMatrixTransformation @227 + D3DXMatrixTransformation2D @228 + D3DXMatrixTranslation @229 + D3DXMatrixTranspose @230 + D3DXOptimizeFaces @231 + D3DXOptimizeVertices @232 + D3DXPlaneFromPointNormal @233 + D3DXPlaneFromPoints @234 + D3DXPlaneIntersectLine @235 + D3DXPlaneNormalize @236 + D3DXPlaneTransform @237 + D3DXPlaneTransformArray @238 + D3DXPreprocessShader @239 + D3DXPreprocessShaderFromFileA @240 + D3DXPreprocessShaderFromFileW @241 + D3DXPreprocessShaderFromResourceA @242 + D3DXPreprocessShaderFromResourceW @243 + D3DXQuaternionBaryCentric @244 + D3DXQuaternionExp @245 + D3DXQuaternionInverse @246 + D3DXQuaternionLn @247 + D3DXQuaternionMultiply @248 + D3DXQuaternionNormalize @249 + D3DXQuaternionRotationAxis @250 + D3DXQuaternionRotationMatrix @251 + D3DXQuaternionRotationYawPitchRoll @252 + D3DXQuaternionSlerp @253 + D3DXQuaternionSquad @254 + D3DXQuaternionSquadSetup @255 + D3DXQuaternionToAxisAngle @256 + D3DXRectPatchSize @257 PRIVATE + D3DXSHAdd @258 + D3DXSHDot @259 + D3DXSHEvalConeLight @260 + D3DXSHEvalDirection @261 + D3DXSHEvalDirectionalLight @262 + D3DXSHEvalHemisphereLight @263 + D3DXSHEvalSphericalLight @264 + D3DXSHMultiply2 @265 + D3DXSHMultiply3 @266 + D3DXSHMultiply4 @267 + D3DXSHMultiply5 @268 PRIVATE + D3DXSHMultiply6 @269 PRIVATE + D3DXSHPRTCompSplitMeshSC @270 PRIVATE + D3DXSHPRTCompSuperCluster @271 PRIVATE + D3DXSHProjectCubeMap @272 PRIVATE + D3DXSHRotate @273 + D3DXSHRotateZ @274 + D3DXSHScale @275 + D3DXSaveMeshHierarchyToFileA @276 PRIVATE + D3DXSaveMeshHierarchyToFileW @277 PRIVATE + D3DXSaveMeshToXA @278 PRIVATE + D3DXSaveMeshToXW @279 PRIVATE + D3DXSavePRTBufferToFileA @280 PRIVATE + D3DXSavePRTBufferToFileW @281 PRIVATE + D3DXSavePRTCompBufferToFileA @282 PRIVATE + D3DXSavePRTCompBufferToFileW @283 PRIVATE + D3DXSaveSurfaceToFileA @284 + D3DXSaveSurfaceToFileInMemory @285 + D3DXSaveSurfaceToFileW @286 + D3DXSaveTextureToFileA @287 + D3DXSaveTextureToFileInMemory @288 + D3DXSaveTextureToFileW @289 + D3DXSaveVolumeToFileA @290 PRIVATE + D3DXSaveVolumeToFileInMemory @291 PRIVATE + D3DXSaveVolumeToFileW @292 PRIVATE + D3DXSimplifyMesh @293 PRIVATE + D3DXSphereBoundProbe @294 + D3DXSplitMesh @295 PRIVATE + D3DXTessellateNPatches @296 + D3DXTessellateRectPatch @297 PRIVATE + D3DXTessellateTriPatch @298 PRIVATE + D3DXTriPatchSize @299 PRIVATE + D3DXUVAtlasCreate @300 PRIVATE + D3DXUVAtlasPack @301 PRIVATE + D3DXUVAtlasPartition @302 PRIVATE + D3DXValidMesh @303 + D3DXValidPatchMesh @304 PRIVATE + D3DXVec2BaryCentric @305 + D3DXVec2CatmullRom @306 + D3DXVec2Hermite @307 + D3DXVec2Normalize @308 + D3DXVec2Transform @309 + D3DXVec2TransformArray @310 + D3DXVec2TransformCoord @311 + D3DXVec2TransformCoordArray @312 + D3DXVec2TransformNormal @313 + D3DXVec2TransformNormalArray @314 + D3DXVec3BaryCentric @315 + D3DXVec3CatmullRom @316 + D3DXVec3Hermite @317 + D3DXVec3Normalize @318 + D3DXVec3Project @319 + D3DXVec3ProjectArray @320 + D3DXVec3Transform @321 + D3DXVec3TransformArray @322 + D3DXVec3TransformCoord @323 + D3DXVec3TransformCoordArray @324 + D3DXVec3TransformNormal @325 + D3DXVec3TransformNormalArray @326 + D3DXVec3Unproject @327 + D3DXVec3UnprojectArray @328 + D3DXVec4BaryCentric @329 + D3DXVec4CatmullRom @330 + D3DXVec4Cross @331 + D3DXVec4Hermite @332 + D3DXVec4Normalize @333 + D3DXVec4Transform @334 + D3DXVec4TransformArray @335 + D3DXWeldVertices @336 diff --git a/lib64/wine/libd3dxof.def b/lib64/wine/libd3dxof.def new file mode 100644 index 0000000..b23defa --- /dev/null +++ b/lib64/wine/libd3dxof.def @@ -0,0 +1,10 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/d3dxof/d3dxof.spec; do not edit! + +LIBRARY d3dxof.dll + +EXPORTS + DirectXFileCreate @1 + DllCanUnloadNow @2 PRIVATE + DllGetClassObject @3 PRIVATE + DllRegisterServer @4 PRIVATE + DllUnregisterServer @5 PRIVATE diff --git a/lib64/wine/libdbgeng.def b/lib64/wine/libdbgeng.def new file mode 100644 index 0000000..30c505e --- /dev/null +++ b/lib64/wine/libdbgeng.def @@ -0,0 +1,10 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/dbgeng/dbgeng.spec; do not edit! + +LIBRARY dbgeng.dll + +EXPORTS + DebugConnect @328 + DebugConnectWide @329 PRIVATE + DebugCreate @330 + DebugCreateEx @331 + DebugExtensionInitialize @332 diff --git a/lib64/wine/libdbghelp.def b/lib64/wine/libdbghelp.def new file mode 100644 index 0000000..6935903 --- /dev/null +++ b/lib64/wine/libdbghelp.def @@ -0,0 +1,193 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/dbghelp/dbghelp.spec; do not edit! + +LIBRARY dbghelp.dll + +EXPORTS + DbgHelpCreateUserDump @1 PRIVATE + DbgHelpCreateUserDumpW @2 PRIVATE + EnumDirTree @3 + EnumDirTreeW @4 + EnumerateLoadedModules @5 + EnumerateLoadedModules64 @6 + EnumerateLoadedModulesEx=EnumerateLoadedModules64 @7 + EnumerateLoadedModulesExW=EnumerateLoadedModulesW64 @8 + EnumerateLoadedModulesW64 @9 + ExtensionApiVersion @10 + FindDebugInfoFile @11 + FindDebugInfoFileEx @12 + FindDebugInfoFileExW @13 PRIVATE + FindExecutableImage @14 + FindExecutableImageEx @15 + FindExecutableImageExW @16 + FindFileInPath @17 PRIVATE + FindFileInSearchPath @18 PRIVATE + GetTimestampForLoadedLibrary @19 + ImageDirectoryEntryToData @20 + ImageDirectoryEntryToDataEx @21 + ImageNtHeader=ntdll.RtlImageNtHeader @22 + ImageRvaToSection=ntdll.RtlImageRvaToSection @23 + ImageRvaToVa=ntdll.RtlImageRvaToVa @24 + ImagehlpApiVersion @25 + ImagehlpApiVersionEx @26 + MakeSureDirectoryPathExists @27 + MapDebugInformation @28 + MiniDumpReadDumpStream @29 + MiniDumpWriteDump @30 + SearchTreeForFile @31 + SearchTreeForFileW @32 + StackWalk @33 + StackWalk64 @34 + SymAddSourceStream @35 PRIVATE + SymAddSourceStreamA @36 PRIVATE + SymAddSourceStreamW @37 PRIVATE + SymAddSymbol @38 + SymAddSymbolW @39 + SymCleanup @40 + SymDeleteSymbol @41 PRIVATE + SymDeleteSymbolW @42 PRIVATE + SymEnumLines @43 + SymEnumLinesW @44 PRIVATE + SymEnumProcesses @45 PRIVATE + SymEnumSourceFileTokens @46 PRIVATE + SymEnumSourceFiles @47 + SymEnumSourceFilesW @48 + SymEnumSourceLines @49 + SymEnumSourceLinesW @50 + SymEnumSym @51 PRIVATE + SymEnumSymbols @52 + SymEnumSymbolsForAddr @53 PRIVATE + SymEnumSymbolsForAddrW @54 PRIVATE + SymEnumSymbolsW @55 + SymEnumTypes @56 + SymEnumTypesByName @57 PRIVATE + SymEnumTypesByNameW @58 PRIVATE + SymEnumTypesW @59 + SymEnumerateModules @60 + SymEnumerateModules64 @61 + SymEnumerateModulesW64 @62 + SymEnumerateSymbols @63 + SymEnumerateSymbols64 @64 + SymEnumerateSymbolsW @65 PRIVATE + SymEnumerateSymbolsW64 @66 PRIVATE + SymFindDebugInfoFile @67 PRIVATE + SymFindDebugInfoFileW @68 PRIVATE + SymFindExecutableImage @69 PRIVATE + SymFindExecutableImageW @70 PRIVATE + SymFindFileInPath @71 + SymFindFileInPathW @72 + SymFromAddr @73 + SymFromAddrW @74 + SymFromIndex @75 + SymFromIndexW @76 + SymFromName @77 + SymFromNameW @78 PRIVATE + SymFromToken @79 PRIVATE + SymFromTokenW @80 PRIVATE + SymFunctionTableAccess @81 + SymFunctionTableAccess64 @82 + SymGetFileLineOffsets64 @83 PRIVATE + SymGetHomeDirectory @84 PRIVATE + SymGetHomeDirectoryW @85 PRIVATE + SymGetLineFromAddr @86 + SymGetLineFromAddr64 @87 + SymGetLineFromAddrW64 @88 + SymGetLineFromName @89 + SymGetLineFromName64 @90 + SymGetLineFromNameW64 @91 + SymGetLineNext @92 + SymGetLineNext64 @93 + SymGetLineNextW64 @94 PRIVATE + SymGetLinePrev @95 + SymGetLinePrev64 @96 + SymGetLinePrevW64 @97 PRIVATE + SymGetModuleBase @98 + SymGetModuleBase64 @99 + SymGetModuleInfo @100 + SymGetModuleInfo64 @101 + SymGetModuleInfoW @102 + SymGetModuleInfoW64 @103 + SymGetOmapBlockBase @104 PRIVATE + SymGetOptions @105 + SymGetScope @106 PRIVATE + SymGetScopeW @107 PRIVATE + SymGetSearchPath @108 + SymGetSearchPathW @109 + SymGetSourceFile @110 PRIVATE + SymGetSourceFileFromToken @111 PRIVATE + SymGetSourceFileFromTokenW @112 PRIVATE + SymGetSourceFileToken @113 + SymGetSourceFileTokenW @114 + SymGetSourceFileW @115 PRIVATE + SymGetSourceVarFromToken @116 PRIVATE + SymGetSourceVarFromTokenW @117 PRIVATE + SymGetSymFromAddr @118 + SymGetSymFromAddr64 @119 + SymGetSymFromName @120 + SymGetSymFromName64 @121 + SymGetSymNext @122 + SymGetSymNext64 @123 + SymGetSymPrev @124 + SymGetSymPrev64 @125 + SymGetSymbolFile @126 PRIVATE + SymGetSymbolFileW @127 PRIVATE + SymGetTypeFromName @128 + SymGetTypeFromNameW @129 PRIVATE + SymGetTypeInfo @130 + SymGetTypeInfoEx @131 PRIVATE + SymInitialize @132 + SymInitializeW @133 + SymLoadModule @134 + SymLoadModule64 @135 + SymLoadModuleEx @136 + SymLoadModuleExW @137 + SymMatchFileName @138 + SymMatchFileNameW @139 + SymMatchString=SymMatchStringA @140 + SymMatchStringA @141 + SymMatchStringW @142 + SymNext @143 PRIVATE + SymNextW @144 PRIVATE + SymPrev @145 PRIVATE + SymPrevW @146 PRIVATE + SymRefreshModuleList @147 + SymRegisterCallback @148 + SymRegisterCallback64 @149 + SymRegisterCallbackW64 @150 + SymRegisterFunctionEntryCallback @151 + SymRegisterFunctionEntryCallback64 @152 + SymSearch @153 + SymSearchW @154 + SymSetContext @155 + SymSetHomeDirectory @156 + SymSetHomeDirectoryW @157 + SymSetOptions @158 + SymSetParentWindow @159 + SymSetScopeFromAddr @160 + SymSetScopeFromIndex @161 PRIVATE + SymSetSearchPath @162 + SymSetSearchPathW @163 + SymSrvDeltaName @164 PRIVATE + SymSrvDeltaNameW @165 PRIVATE + SymSrvGetFileIndexInfo @166 PRIVATE + SymSrvGetFileIndexInfoW @167 PRIVATE + SymSrvGetFileIndexString @168 PRIVATE + SymSrvGetFileIndexStringW @169 PRIVATE + SymSrvGetFileIndexes @170 PRIVATE + SymSrvGetFileIndexesW @171 PRIVATE + SymSrvGetSupplement @172 PRIVATE + SymSrvGetSupplementW @173 PRIVATE + SymSrvIsStore @174 PRIVATE + SymSrvIsStoreW @175 PRIVATE + SymSrvStoreFile @176 PRIVATE + SymSrvStoreFileW @177 PRIVATE + SymSrvStoreSupplement @178 PRIVATE + SymSrvStoreSupplementW @179 PRIVATE + SymSetSymWithAddr64 @180 PRIVATE + SymUnDName @181 + SymUnDName64 @182 + SymUnloadModule @183 + SymUnloadModule64 @184 + UnDecorateSymbolName @185 + UnDecorateSymbolNameW @186 + UnmapDebugInformation @187 + WinDbgExtensionDllInit @188 diff --git a/lib64/wine/libdciman32.def b/lib64/wine/libdciman32.def new file mode 100644 index 0000000..f94c0b8 --- /dev/null +++ b/lib64/wine/libdciman32.def @@ -0,0 +1,26 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/dciman32/dciman32.spec; do not edit! + +LIBRARY dciman32.dll + +EXPORTS + DCIBeginAccess @1 PRIVATE + DCICloseProvider @2 + DCICreateOffscreen @3 PRIVATE + DCICreateOverlay @4 PRIVATE + DCICreatePrimary @5 + DCIDestroy @6 PRIVATE + DCIDraw @7 PRIVATE + DCIEndAccess @8 PRIVATE + DCIEnum @9 PRIVATE + DCIOpenProvider @10 + DCISetClipList @11 PRIVATE + DCISetDestination @12 PRIVATE + DCISetSrcDestClip @13 PRIVATE + DllEntryPoint=DllMain @14 PRIVATE + GetDCRegionData @15 PRIVATE + GetWindowRegionData @16 PRIVATE + WinWatchClose @17 PRIVATE + WinWatchDidStatusChange @18 PRIVATE + WinWatchGetClipList @19 PRIVATE + WinWatchNotify @20 PRIVATE + WinWatchOpen @21 PRIVATE diff --git a/lib64/wine/libddraw.def b/lib64/wine/libddraw.def new file mode 100644 index 0000000..3f0cfd0 --- /dev/null +++ b/lib64/wine/libddraw.def @@ -0,0 +1,33 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/ddraw/ddraw.spec; do not edit! + +LIBRARY ddraw.dll + +EXPORTS + DDHAL32_VidMemAlloc @1 PRIVATE + DDHAL32_VidMemFree @2 PRIVATE + DDInternalLock @3 PRIVATE + DDInternalUnlock @4 PRIVATE + DSoundHelp @5 PRIVATE + DirectDrawCreate @6 + DirectDrawCreateClipper @7 + DirectDrawCreateEx @8 + DirectDrawEnumerateA @9 + DirectDrawEnumerateExA @10 + DirectDrawEnumerateExW @11 + DirectDrawEnumerateW @12 + DllCanUnloadNow @13 PRIVATE + DllGetClassObject @14 PRIVATE + DllRegisterServer @15 PRIVATE + DllUnregisterServer @16 PRIVATE + GetNextMipMap @17 PRIVATE + GetSurfaceFromDC @18 + HeapVidMemAllocAligned @19 PRIVATE + InternalLock @20 PRIVATE + InternalUnlock @21 PRIVATE + LateAllocateSurfaceMem @22 PRIVATE + VidMemAlloc @23 PRIVATE + VidMemAmountFree @24 PRIVATE + VidMemFini @25 PRIVATE + VidMemFree @26 PRIVATE + VidMemInit @27 PRIVATE + VidMemLargestFree @28 PRIVATE diff --git a/lib64/wine/libdinput.a b/lib64/wine/libdinput.a new file mode 100644 index 0000000..759b1fe Binary files /dev/null and b/lib64/wine/libdinput.a differ diff --git a/lib64/wine/libdinput8.a b/lib64/wine/libdinput8.a new file mode 100644 index 0000000..2f03ae1 Binary files /dev/null and b/lib64/wine/libdinput8.a differ diff --git a/lib64/wine/libdmoguids.a b/lib64/wine/libdmoguids.a new file mode 100644 index 0000000..262f0d1 Binary files /dev/null and b/lib64/wine/libdmoguids.a differ diff --git a/lib64/wine/libdnsapi.def b/lib64/wine/libdnsapi.def new file mode 100644 index 0000000..59b69e0 --- /dev/null +++ b/lib64/wine/libdnsapi.def @@ -0,0 +1,135 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/dnsapi/dnsapi.spec; do not edit! + +LIBRARY dnsapi.dll + +EXPORTS + DnsAcquireContextHandle_A @1 + DnsAcquireContextHandle_UTF8 @2 + DnsAcquireContextHandle_W @3 + DnsAddRecordSet_A @4 PRIVATE + DnsAddRecordSet_UTF8 @5 PRIVATE + DnsAddRecordSet_W @6 PRIVATE + DnsAllocateRecord @7 PRIVATE + DnsApiHeapReset @8 PRIVATE + DnsAsyncRegisterHostAddrs_A @9 PRIVATE + DnsAsyncRegisterHostAddrs_UTF8 @10 PRIVATE + DnsAsyncRegisterHostAddrs_W @11 PRIVATE + DnsAsyncRegisterInit @12 PRIVATE + DnsAsyncRegisterTerm @13 PRIVATE + DnsCheckNameCollision_A @14 PRIVATE + DnsCheckNameCollision_UTF8 @15 PRIVATE + DnsCheckNameCollision_W @16 PRIVATE + DnsCopyStringEx @17 PRIVATE + DnsCreateReverseNameStringForIpAddress @18 PRIVATE + DnsCreateStandardDnsNameCopy @19 PRIVATE + DnsCreateStringCopy @20 PRIVATE + DnsDhcpSrvRegisterHostName_W @21 PRIVATE + DnsDhcpSrvRegisterInit @22 PRIVATE + DnsDhcpSrvRegisterTerm @23 PRIVATE + DnsDisableAdapterDomainNameRegistration @24 PRIVATE + DnsDisableBNodeResolverThread @25 PRIVATE + DnsDisableDynamicRegistration @26 PRIVATE + DnsDowncaseDnsNameLabel @27 PRIVATE + DnsEnableAdapterDomainNameRegistration @28 PRIVATE + DnsEnableBNodeResolverThread @29 PRIVATE + DnsEnableDynamicRegistration @30 PRIVATE + DnsExtractRecordsFromMessage_UTF8 @31 + DnsExtractRecordsFromMessage_W @32 + DnsFindAuthoritativeZone @33 PRIVATE + DnsFlushResolverCache @34 + DnsFlushResolverCacheEntry_A @35 + DnsFlushResolverCacheEntry_UTF8 @36 + DnsFlushResolverCacheEntry_W @37 + DnsFree @38 + DnsFreeAdapterInformation @39 PRIVATE + DnsFreeNetworkInformation @40 PRIVATE + DnsFreeSearchInformation @41 PRIVATE + DnsGetBufferLengthForStringCopy @42 PRIVATE + DnsGetCacheDataTable @43 PRIVATE + DnsGetDnsServerList @44 PRIVATE + DnsGetDomainName @45 PRIVATE + DnsGetHostName_A @46 PRIVATE + DnsGetHostName_UTF8 @47 PRIVATE + DnsGetHostName_W @48 PRIVATE + DnsGetIpAddressInfoList @49 PRIVATE + DnsGetIpAddressList @50 PRIVATE + DnsGetLastServerUpdateIP @51 PRIVATE + DnsGetMaxNumberOfAddressesToRegister @52 PRIVATE + DnsGetNetworkInformation @53 PRIVATE + DnsGetPrimaryDomainName_A @54 PRIVATE + DnsGetPrimaryDomainName_UTF8 @55 PRIVATE + DnsGetPrimaryDomainName_W @56 PRIVATE + DnsGetSearchInformation @57 PRIVATE + DnsIpv6AddressToString @58 PRIVATE + DnsIpv6StringToAddress @59 PRIVATE + DnsIsAdapterDomainNameRegistrationEnabled @60 PRIVATE + DnsIsAMailboxType @61 PRIVATE + DnsIsDynamicRegistrationEnabled @62 PRIVATE + DnsIsStatusRcode @63 PRIVATE + DnsIsStringCountValidForTextType @64 PRIVATE + DnsMapRcodeToStatus @65 PRIVATE + DnsModifyRecordSet_A @66 PRIVATE + DnsModifyRecordSet_UTF8 @67 PRIVATE + DnsModifyRecordSet_W @68 PRIVATE + DnsModifyRecordsInSet_A @69 + DnsModifyRecordsInSet_UTF8 @70 + DnsModifyRecordsInSet_W @71 + DnsNameCompare_A @72 + DnsNameCompareEx_A @73 PRIVATE + DnsNameCompareEx_UTF8 @74 PRIVATE + DnsNameCompareEx_W @75 PRIVATE + DnsNameCompare_W @76 + DnsNameCopy @77 PRIVATE + DnsNameCopyAllocate @78 PRIVATE + DnsNotifyResolver @79 PRIVATE + DnsQuery_A @80 + DnsQueryConfig @81 + DnsQueryEx @82 + DnsQuery_UTF8 @83 + DnsQuery_W @84 + DnsRecordBuild_UTF8 @85 PRIVATE + DnsRecordBuild_W @86 PRIVATE + DnsRecordCompare @87 + DnsRecordCopyEx @88 + DnsRecordListFree @89 + DnsRecordSetCompare @90 + DnsRecordSetCopyEx @91 + DnsRecordSetDetach @92 + DnsRecordStringForType @93 PRIVATE + DnsRecordStringForWritableType @94 PRIVATE + DnsRecordTypeForName @95 PRIVATE + DnsRelationalCompare_UTF8 @96 PRIVATE + DnsRelationalCompare_W @97 PRIVATE + DnsReleaseContextHandle @98 + DnsRemoveRegistrations @99 PRIVATE + DnsReplaceRecordSetA @100 + DnsReplaceRecordSet_A @101 PRIVATE + DnsReplaceRecordSetUTF8 @102 + DnsReplaceRecordSet_UTF8 @103 PRIVATE + DnsReplaceRecordSetW @104 + DnsReplaceRecordSet_W @105 PRIVATE + DnsServiceNotificationDeregister_A @106 PRIVATE + DnsServiceNotificationDeregister_UTF8 @107 PRIVATE + DnsServiceNotificationDeregister_W @108 PRIVATE + DnsServiceNotificationRegister_A @109 PRIVATE + DnsServiceNotificationRegister_UTF8 @110 PRIVATE + DnsServiceNotificationRegister_W @111 PRIVATE + DnsSetMaxNumberOfAddressesToRegister @112 PRIVATE + DnsStatusString @113 PRIVATE + DnsStringCopyAllocateEx @114 PRIVATE + DnsUnicodeToUtf8 @115 PRIVATE + DnsUpdate @116 PRIVATE + DnsUpdateTest_A @117 PRIVATE + DnsUpdateTest_UTF8 @118 PRIVATE + DnsUpdateTest_W @119 PRIVATE + DnsUtf8ToUnicode @120 PRIVATE + DnsValidateName_A @121 + DnsValidateName_UTF8 @122 + DnsValidateName_W @123 + DnsValidateUtf8Byte @124 PRIVATE + DnsWinsRecordFlagForString @125 PRIVATE + DnsWinsRecordFlagString @126 PRIVATE + DnsWriteQuestionToBuffer_UTF8 @127 + DnsWriteQuestionToBuffer_W @128 + DnsWriteReverseNameStringForIpAddress @129 PRIVATE + GetCurrentTimeInSeconds @130 PRIVATE diff --git a/lib64/wine/libdplayx.def b/lib64/wine/libdplayx.def new file mode 100644 index 0000000..b9853ed --- /dev/null +++ b/lib64/wine/libdplayx.def @@ -0,0 +1,16 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/dplayx/dplayx.spec; do not edit! + +LIBRARY dplayx.dll + +EXPORTS + DirectPlayCreate @1 + DirectPlayEnumerateA @2 + DirectPlayEnumerateW @3 + DirectPlayLobbyCreateA @4 + DirectPlayLobbyCreateW @5 + gdwDPlaySPRefCount @6 DATA + DirectPlayEnumerate=DirectPlayEnumerateA @9 + DllCanUnloadNow @7 PRIVATE + DllGetClassObject @8 PRIVATE + DllRegisterServer @10 PRIVATE + DllUnregisterServer @11 PRIVATE diff --git a/lib64/wine/libdpnet.def b/lib64/wine/libdpnet.def new file mode 100644 index 0000000..36d69f7 --- /dev/null +++ b/lib64/wine/libdpnet.def @@ -0,0 +1,10 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/dpnet/dpnet.spec; do not edit! + +LIBRARY dpnet.dll + +EXPORTS + DirectPlay8Create @1 + DllCanUnloadNow @2 PRIVATE + DllGetClassObject @3 PRIVATE + DllRegisterServer @4 PRIVATE + DllUnregisterServer @5 PRIVATE diff --git a/lib64/wine/libdsound.def b/lib64/wine/libdsound.def new file mode 100644 index 0000000..2b413e5 --- /dev/null +++ b/lib64/wine/libdsound.def @@ -0,0 +1,19 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/dsound/dsound.spec; do not edit! + +LIBRARY dsound.dll + +EXPORTS + DirectSoundCreate @1 + DirectSoundEnumerateA @2 + DirectSoundEnumerateW @3 + DirectSoundCaptureCreate @6 + DirectSoundCaptureEnumerateA @7 + DirectSoundCaptureEnumerateW @8 + GetDeviceID @9 + DirectSoundFullDuplexCreate @10 + DirectSoundCreate8 @11 + DirectSoundCaptureCreate8 @12 + DllCanUnloadNow @4 PRIVATE + DllGetClassObject @5 PRIVATE + DllRegisterServer @13 PRIVATE + DllUnregisterServer @14 PRIVATE diff --git a/lib64/wine/libdwmapi.def b/lib64/wine/libdwmapi.def new file mode 100644 index 0000000..7c26670 --- /dev/null +++ b/lib64/wine/libdwmapi.def @@ -0,0 +1,65 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/dwmapi/dwmapi.spec; do not edit! + +LIBRARY dwmapi.dll + +EXPORTS + DwmpDxGetWindowSharedSurface @100 PRIVATE + DwmpDxUpdateWindowSharedSurface @101 PRIVATE + DwmEnableComposition @102 + DwmpRestartComposition @103 NONAME PRIVATE + DwmpSetColorizationColor @104 NONAME PRIVATE + DwmpStartOrStopFlip3D @105 NONAME PRIVATE + DwmpIsCompositionCapable @106 NONAME PRIVATE + DwmpGetGlobalState @107 NONAME PRIVATE + DwmpEnableRedirection @108 NONAME PRIVATE + DwmpOpenGraphicsStream @109 NONAME PRIVATE + DwmpCloseGraphicsStream @110 NONAME PRIVATE + DwmpSetGraphicsStreamTransformHint @112 NONAME PRIVATE + DwmpActivateLivePreview @113 NONAME PRIVATE + DwmpQueryThumbnailType @114 NONAME PRIVATE + DwmpStartupViaUserInit @115 NONAME PRIVATE + DwmpGetAssessment @118 NONAME PRIVATE + DwmpGetAssessmentUsage @119 NONAME PRIVATE + DwmpSetAssessmentUsage @120 NONAME PRIVATE + DwmpIsSessionDWM @121 NONAME PRIVATE + DwmpRegisterThumbnail @124 NONAME PRIVATE + DwmpDxBindSwapChain @125 PRIVATE + DwmpDxUnbindSwapChain @126 PRIVATE + DwmpGetColorizationParameters @127 NONAME + DwmpDxgiIsThreadDesktopComposited @128 PRIVATE + DwmpDxgiDisableRedirection @129 NONAME PRIVATE + DwmpDxgiEnableRedirection @130 NONAME PRIVATE + DwmpSetColorizationParameters @131 NONAME PRIVATE + DwmpGetCompositionTimingInfoEx @132 NONAME PRIVATE + DwmpDxUpdateWindowRedirectionBltSurface @133 PRIVATE + DwmpDxSetContentHostingInformation @134 NONAME PRIVATE + DwmpRenderFlick @135 PRIVATE + DwmpAllocateSecurityDescriptor @136 PRIVATE + DwmpFreeSecurityDescriptor @137 PRIVATE + DwmpEnableDDASupport @143 PRIVATE + DwmTetherTextContact @156 PRIVATE + DwmAttachMilContent @111 + DwmDefWindowProc @116 + DwmDetachMilContent @117 + DwmEnableBlurBehindWindow @122 + DwmEnableMMCSS @123 + DwmExtendFrameIntoClientArea @149 + DwmFlush @165 + DwmGetColorizationColor @166 + DwmGetCompositionTimingInfo @167 + DwmGetGraphicsStreamClient @168 + DwmGetGraphicsStreamTransformHint @169 + DwmGetTransportAttributes @170 + DwmGetWindowAttribute @171 + DwmInvalidateIconicBitmaps @172 + DwmIsCompositionEnabled @173 + DwmModifyPreviousDxFrameDuration @174 PRIVATE + DwmQueryThumbnailSourceSize @175 PRIVATE + DwmRegisterThumbnail @176 + DwmSetDxFrameDuration @177 PRIVATE + DwmSetIconicLivePreviewBitmap @178 + DwmSetIconicThumbnail @179 + DwmSetPresentParameters @180 + DwmSetWindowAttribute @181 + DwmUnregisterThumbnail @182 + DwmUpdateThumbnailProperties @183 diff --git a/lib64/wine/libdwrite.def b/lib64/wine/libdwrite.def new file mode 100644 index 0000000..4dab5b5 --- /dev/null +++ b/lib64/wine/libdwrite.def @@ -0,0 +1,6 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/dwrite/dwrite.spec; do not edit! + +LIBRARY dwrite.dll + +EXPORTS + DWriteCreateFactory @1 diff --git a/lib64/wine/libdxerr8.a b/lib64/wine/libdxerr8.a new file mode 100644 index 0000000..57f623a Binary files /dev/null and b/lib64/wine/libdxerr8.a differ diff --git a/lib64/wine/libdxerr9.a b/lib64/wine/libdxerr9.a new file mode 100644 index 0000000..429e756 Binary files /dev/null and b/lib64/wine/libdxerr9.a differ diff --git a/lib64/wine/libdxgi.def b/lib64/wine/libdxgi.def new file mode 100644 index 0000000..324082d --- /dev/null +++ b/lib64/wine/libdxgi.def @@ -0,0 +1,11 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/dxgi/dxgi.spec; do not edit! + +LIBRARY dxgi.dll + +EXPORTS + CreateDXGIFactory @1 + CreateDXGIFactory1 @2 + CreateDXGIFactory2 @3 + DXGID3D10CreateDevice @4 + DXGID3D10RegisterLayers @5 + DXGIGetDebugInterface1 @6 diff --git a/lib64/wine/libdxguid.a b/lib64/wine/libdxguid.a new file mode 100644 index 0000000..bef3093 Binary files /dev/null and b/lib64/wine/libdxguid.a differ diff --git a/lib64/wine/libfaultrep.def b/lib64/wine/libfaultrep.def new file mode 100644 index 0000000..8417db1 --- /dev/null +++ b/lib64/wine/libfaultrep.def @@ -0,0 +1,19 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/faultrep/faultrep.spec; do not edit! + +LIBRARY faultrep.dll + +EXPORTS + AddERExcludedApplicationA @1 + AddERExcludedApplicationW @2 + CreateMinidumpA @3 PRIVATE + CreateMinidumpW @4 PRIVATE + ReportEREvent @5 PRIVATE + ReportEREventDW @6 PRIVATE + ReportFault @7 + ReportFaultDWM @8 PRIVATE + ReportFaultFromQueue @9 PRIVATE + ReportFaultToQueue @10 PRIVATE + ReportHang @11 PRIVATE + ReportKernelFaultA @12 PRIVATE + ReportKernelFaultDWW @13 PRIVATE + ReportKernelFaultW @14 PRIVATE diff --git a/lib64/wine/libgdi32.def b/lib64/wine/libgdi32.def new file mode 100644 index 0000000..085d7dd --- /dev/null +++ b/lib64/wine/libgdi32.def @@ -0,0 +1,457 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/gdi32/gdi32.spec; do not edit! + +LIBRARY gdi32.dll + +EXPORTS + AbortDoc @105 + AbortPath @106 + AddFontMemResourceEx @107 + AddFontResourceA @108 + AddFontResourceExA @109 + AddFontResourceExW @110 + AddFontResourceTracking @111 PRIVATE + AddFontResourceW @112 + AngleArc @113 + AnimatePalette @114 + Arc @115 + ArcTo @116 + BeginPath @117 + BitBlt @118 + ByeByeGDI @119 PRIVATE + CancelDC @120 + CheckColorsInGamut @121 PRIVATE + ChoosePixelFormat @122 + Chord @123 + CloseEnhMetaFile @124 + CloseFigure @125 + CloseMetaFile @126 + ColorCorrectPalette @127 PRIVATE + ColorMatchToTarget @128 PRIVATE + CombineRgn @129 + CombineTransform @130 + CopyEnhMetaFileA @131 + CopyEnhMetaFileW @132 + CopyMetaFileA @133 + CopyMetaFileW @134 + CreateBitmap @135 + CreateBitmapIndirect @136 + CreateBrushIndirect @137 + CreateColorSpaceA @138 + CreateColorSpaceW @139 + CreateCompatibleBitmap @140 + CreateCompatibleDC @141 + CreateDCA @142 + CreateDCW @143 + CreateDIBPatternBrush @144 + CreateDIBPatternBrushPt @145 + CreateDIBSection @146 + CreateDIBitmap @147 + CreateDiscardableBitmap @148 + CreateEllipticRgn @149 + CreateEllipticRgnIndirect @150 + CreateEnhMetaFileA @151 + CreateEnhMetaFileW @152 + CreateFontA @153 + CreateFontIndirectA @154 + CreateFontIndirectExA @155 + CreateFontIndirectExW @156 + CreateFontIndirectW @157 + CreateFontW @158 + CreateHalftonePalette @159 + CreateHatchBrush @160 + CreateICA @161 + CreateICW @162 + CreateMetaFileA @163 + CreateMetaFileW @164 + CreatePalette @165 + CreatePatternBrush @166 + CreatePen @167 + CreatePenIndirect @168 + CreatePolyPolygonRgn @169 + CreatePolygonRgn @170 + CreateRectRgn @171 + CreateRectRgnIndirect @172 + CreateRoundRectRgn @173 + CreateScalableFontResourceA @174 + CreateScalableFontResourceW @175 + CreateSolidBrush @176 + D3DKMTCloseAdapter @177 + D3DKMTCreateDCFromMemory @178 + D3DKMTDestroyDCFromMemory @179 + D3DKMTEscape @180 + D3DKMTOpenAdapterFromHdc @181 + DPtoLP @182 + DeleteColorSpace @183 + DeleteDC @184 + DeleteEnhMetaFile @185 + DeleteMetaFile @186 + DeleteObject @187 + DescribePixelFormat @188 + DeviceCapabilitiesEx @189 PRIVATE + DeviceCapabilitiesExA @190 PRIVATE + DeviceCapabilitiesExW @191 PRIVATE + DrawEscape @192 + Ellipse @193 + EnableEUDC @194 + EndDoc @195 + EndPage @196 + EndPath @197 + EnumEnhMetaFile @198 + EnumFontFamiliesA @199 + EnumFontFamiliesExA @200 + EnumFontFamiliesExW @201 + EnumFontFamiliesW @202 + EnumFontsA @203 + EnumFontsW @204 + EnumICMProfilesA @205 + EnumICMProfilesW @206 + EnumMetaFile @207 + EnumObjects @208 + EqualRgn @209 + Escape @210 + ExcludeClipRect @211 + ExtCreatePen @212 + ExtCreateRegion @213 + ExtEscape @214 + ExtFloodFill @215 + ExtSelectClipRgn @216 + ExtTextOutA @217 + ExtTextOutW @218 + FillPath @219 + FillRgn @220 + FixBrushOrgEx @221 + FlattenPath @222 + FloodFill @223 + FontIsLinked @224 + FrameRgn @225 + FreeImageColorMatcher @226 PRIVATE + GdiAlphaBlend @227 + GdiAssociateObject @228 PRIVATE + GdiCleanCacheDC @229 PRIVATE + GdiComment @230 + GdiConvertAndCheckDC @231 PRIVATE + GdiConvertBitmap @232 PRIVATE + GdiConvertBrush @233 PRIVATE + GdiConvertDC @234 PRIVATE + GdiConvertEnhMetaFile @235 PRIVATE + GdiConvertFont @236 PRIVATE + GdiConvertMetaFilePict @237 PRIVATE + GdiConvertPalette @238 PRIVATE + GdiConvertRegion @239 PRIVATE + GdiConvertToDevmodeW @240 + GdiCreateLocalBitmap @241 PRIVATE + GdiCreateLocalBrush @242 PRIVATE + GdiCreateLocalEnhMetaFile @243 PRIVATE + GdiCreateLocalFont @244 PRIVATE + GdiCreateLocalMetaFilePict @245 PRIVATE + GdiCreateLocalPalette @246 PRIVATE + GdiCreateLocalRegion @247 PRIVATE + GdiDciBeginAccess @248 PRIVATE + GdiDciCreateOffscreenSurface @249 PRIVATE + GdiDciCreateOverlaySurface @250 PRIVATE + GdiDciCreatePrimarySurface @251 PRIVATE + GdiDciDestroySurface @252 PRIVATE + GdiDciDrawSurface @253 PRIVATE + GdiDciEndAccess @254 PRIVATE + GdiDciEnumSurface @255 PRIVATE + GdiDciInitialize @256 PRIVATE + GdiDciSetClipList @257 PRIVATE + GdiDciSetDestination @258 PRIVATE + GdiDeleteLocalDC @259 PRIVATE + GdiDeleteLocalObject @260 PRIVATE + GdiDescribePixelFormat @261 + GdiDllInitialize @262 PRIVATE + GdiDrawStream @263 + GdiEntry13 @264 + GdiFlush @265 + GdiGetBatchLimit @266 + GdiGetCharDimensions @267 + GdiGetCodePage @268 + GdiGetLocalBitmap @269 PRIVATE + GdiGetLocalBrush @270 PRIVATE + GdiGetLocalDC @271 PRIVATE + GdiGetLocalFont @272 PRIVATE + GdiGetSpoolMessage @273 + GdiGradientFill @274 + GdiInitSpool @275 + GdiInitializeLanguagePack @276 + GdiIsMetaFileDC @277 + GdiIsMetaPrintDC @278 + GdiIsPlayMetafileDC @279 + GdiPlayDCScript @280 PRIVATE + GdiPlayJournal @281 PRIVATE + GdiPlayScript @282 PRIVATE + GdiRealizationInfo @283 + GdiReleaseLocalDC @284 PRIVATE + GdiSetAttrs @285 PRIVATE + GdiSetBatchLimit @286 + GdiSetPixelFormat @287 + GdiSetServerAttr @288 PRIVATE + GdiSwapBuffers @289 + GdiTransparentBlt @290 + GdiWinWatchClose @291 PRIVATE + GdiWinWatchDidStatusChange @292 PRIVATE + GdiWinWatchGetClipList @293 PRIVATE + GdiWinWatchOpen @294 PRIVATE + GetArcDirection @295 + GetAspectRatioFilterEx @296 + GetBitmapBits @297 + GetBitmapDimensionEx @298 + GetBkColor @299 + GetBkMode @300 + GetBoundsRect @301 + GetBrushOrgEx @302 + GetCharABCWidthsA @303 + GetCharABCWidthsFloatA @304 + GetCharABCWidthsFloatW @305 + GetCharABCWidthsI @306 + GetCharABCWidthsW @307 + GetCharWidth32A @308 + GetCharWidth32W @309 + GetCharWidthA=GetCharWidth32A @310 + GetCharWidthFloatA @311 + GetCharWidthFloatW @312 + GetCharWidthI @313 + GetCharWidthInfo @314 + GetCharWidthW=GetCharWidth32W @315 + GetCharWidthWOW @316 PRIVATE + GetCharacterPlacementA @317 + GetCharacterPlacementW @318 + GetClipBox @319 + GetClipRgn @320 + GetColorAdjustment @321 + GetColorSpace @322 + GetCurrentObject @323 + GetCurrentPositionEx @324 + GetDCBrushColor @325 + GetDCOrgEx @326 + GetDCPenColor @327 + GetDIBColorTable @328 + GetDIBits @329 + GetDeviceCaps @330 + GetDeviceGammaRamp @331 + GetETM @332 PRIVATE + GetEnhMetaFileA @333 + GetEnhMetaFileBits @334 + GetEnhMetaFileDescriptionA @335 + GetEnhMetaFileDescriptionW @336 + GetEnhMetaFileHeader @337 + GetEnhMetaFilePaletteEntries @338 + GetEnhMetaFileW @339 + GetFontData @340 + GetFontFileData @341 + GetFontFileInfo @342 + GetFontLanguageInfo @343 + GetFontRealizationInfo @344 + GetFontResourceInfo @345 PRIVATE + GetFontResourceInfoW @346 + GetFontUnicodeRanges @347 + GetGlyphIndicesA @348 + GetGlyphIndicesW @349 + GetGlyphOutline=GetGlyphOutlineA @350 + GetGlyphOutlineA @351 + GetGlyphOutlineW @352 + GetGlyphOutlineWow @353 PRIVATE + GetGraphicsMode @354 + GetICMProfileA @355 + GetICMProfileW @356 + GetKerningPairs=GetKerningPairsA @357 + GetKerningPairsA @358 + GetKerningPairsW @359 + GetLayout @360 + GetLogColorSpaceA @361 + GetLogColorSpaceW @362 + GetMapMode @363 + GetMetaFileA @364 + GetMetaFileBitsEx @365 + GetMetaFileW @366 + GetMetaRgn @367 + GetMiterLimit @368 + GetNearestColor @369 + GetNearestPaletteIndex @370 + GetObjectA @371 + GetObjectType @372 + GetObjectW @373 + GetOutlineTextMetricsA @374 + GetOutlineTextMetricsW @375 + GetPaletteEntries @376 + GetPath @377 + GetPixel @378 + GetPixelFormat @379 + GetPolyFillMode @380 + GetROP2 @381 + GetRandomRgn @382 + GetRasterizerCaps @383 + GetRegionData @384 + GetRelAbs @385 + GetRgnBox @386 + GetStockObject @387 + GetStretchBltMode @388 + GetSystemPaletteEntries @389 + GetSystemPaletteUse @390 + GetTextAlign @391 + GetTextCharacterExtra @392 + GetTextCharset @393 + GetTextCharsetInfo @394 + GetTextColor @395 + GetTextExtentExPointA @396 + GetTextExtentExPointI @397 + GetTextExtentExPointW @398 + GetTextExtentPoint32A @399 + GetTextExtentPoint32W @400 + GetTextExtentPointA @401 + GetTextExtentPointI @402 + GetTextExtentPointW @403 + GetTextFaceA @404 + GetTextFaceW @405 + GetTextMetricsA @406 + GetTextMetricsW @407 + GetTransform @408 + GetViewportExtEx @409 + GetViewportOrgEx @410 + GetWinMetaFileBits @411 + GetWindowExtEx @412 + GetWindowOrgEx @413 + GetWorldTransform @414 + IntersectClipRect @415 + InvertRgn @416 + LPtoDP @417 + LineDDA @418 + LineTo @419 + LoadImageColorMatcherA @420 PRIVATE + LoadImageColorMatcherW @421 PRIVATE + MaskBlt @422 + MirrorRgn @423 + ModifyWorldTransform @424 + MoveToEx @425 + NamedEscape @426 + OffsetClipRgn @427 + OffsetRgn @428 + OffsetViewportOrgEx @429 + OffsetWindowOrgEx @430 + PaintRgn @431 + PatBlt @432 + PathToRegion @433 + Pie @434 + PlayEnhMetaFile @435 + PlayEnhMetaFileRecord @436 + PlayMetaFile @437 + PlayMetaFileRecord @438 + PlgBlt @439 + PolyBezier @440 + PolyBezierTo @441 + PolyDraw @442 + PolyPolygon @443 + PolyPolyline @444 + PolyTextOutA @445 + PolyTextOutW @446 + Polygon @447 + Polyline @448 + PolylineTo @449 + PtInRegion @450 + PtVisible @451 + RealizePalette @452 + RectInRegion @453 + RectVisible @454 + Rectangle @455 + RemoveFontMemResourceEx @456 + RemoveFontResourceA @457 + RemoveFontResourceExA @458 + RemoveFontResourceExW @459 + RemoveFontResourceTracking @460 PRIVATE + RemoveFontResourceW @461 + ResetDCA @462 + ResetDCW @463 + ResizePalette @464 + RestoreDC @465 + RoundRect @466 + SaveDC @467 + ScaleViewportExtEx @468 + ScaleWindowExtEx @469 + SelectBrushLocal @470 PRIVATE + SelectClipPath @471 + SelectClipRgn @472 + SelectFontLocal @473 PRIVATE + SelectObject @474 + SelectPalette @475 + SetAbortProc @476 + SetArcDirection @477 + SetBitmapBits @478 + SetBitmapDimensionEx @479 + SetBkColor @480 + SetBkMode @481 + SetBoundsRect @482 + SetBrushOrgEx @483 + SetColorAdjustment @484 + SetColorSpace @485 + SetDCBrushColor @486 + SetDCPenColor @487 + SetDIBColorTable @488 + SetDIBits @489 + SetDIBitsToDevice @490 + SetDeviceGammaRamp @491 + SetEnhMetaFileBits @492 + SetFontEnumeration @493 PRIVATE + SetGraphicsMode @494 + SetICMMode @495 + SetICMProfileA @496 + SetICMProfileW @497 + SetLayout @498 + SetMagicColors @499 + SetMapMode @500 + SetMapperFlags @501 + SetMetaFileBitsEx @502 + SetMetaRgn @503 + SetMiterLimit @504 + SetObjectOwner @505 + SetPaletteEntries @506 + SetPixel @507 + SetPixelFormat @508 + SetPixelV @509 + SetPolyFillMode @510 + SetROP2 @511 + SetRectRgn @512 + SetRelAbs @513 + SetStretchBltMode @514 + SetSystemPaletteUse @515 + SetTextAlign @516 + SetTextCharacterExtra @517 + SetTextColor @518 + SetTextJustification @519 + SetViewportExtEx @520 + SetViewportOrgEx @521 + SetVirtualResolution @522 + SetWinMetaFileBits @523 + SetWindowExtEx @524 + SetWindowOrgEx @525 + SetWorldTransform @526 + StartDocA @527 + StartDocW @528 + StartPage @529 + StretchBlt @530 + StretchDIBits @531 + StrokeAndFillPath @532 + StrokePath @533 + SwapBuffers @534 + TextOutA @535 + TextOutW @536 + TranslateCharsetInfo @537 + UnloadNetworkFonts @538 PRIVATE + UnrealizeObject @539 + UpdateColors @540 + UpdateICMRegKey=UpdateICMRegKeyA @541 + UpdateICMRegKeyA @542 + UpdateICMRegKeyW @543 + WidenPath @544 + gdiPlaySpoolStream @545 PRIVATE + pfnRealizePalette @546 DATA + pfnSelectPalette @547 DATA + pstackConnect @548 PRIVATE + GetDCHook @549 + SetDCHook @550 + SetHookFlags @551 + __wine_make_gdi_object_system @552 + __wine_set_visible_region @553 + __wine_set_display_driver @554 + __wine_get_wgl_driver @555 + __wine_get_vulkan_driver @556 diff --git a/lib64/wine/libgdiplus.def b/lib64/wine/libgdiplus.def new file mode 100644 index 0000000..035baa6 --- /dev/null +++ b/lib64/wine/libgdiplus.def @@ -0,0 +1,635 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/gdiplus/gdiplus.spec; do not edit! + +LIBRARY gdiplus.dll + +EXPORTS + GdipAddPathArc @1 + GdipAddPathArcI @2 + GdipAddPathBezier @3 + GdipAddPathBezierI @4 + GdipAddPathBeziers @5 + GdipAddPathBeziersI @6 + GdipAddPathClosedCurve2 @7 + GdipAddPathClosedCurve2I @8 + GdipAddPathClosedCurve @9 + GdipAddPathClosedCurveI @10 + GdipAddPathCurve2 @11 + GdipAddPathCurve2I @12 + GdipAddPathCurve3 @13 + GdipAddPathCurve3I @14 + GdipAddPathCurve @15 + GdipAddPathCurveI @16 + GdipAddPathEllipse @17 + GdipAddPathEllipseI @18 + GdipAddPathLine2 @19 + GdipAddPathLine2I @20 + GdipAddPathLine @21 + GdipAddPathLineI @22 + GdipAddPathPath @23 + GdipAddPathPie @24 + GdipAddPathPieI @25 + GdipAddPathPolygon @26 + GdipAddPathPolygonI @27 + GdipAddPathRectangle @28 + GdipAddPathRectangleI @29 + GdipAddPathRectangles @30 + GdipAddPathRectanglesI @31 + GdipAddPathString @32 + GdipAddPathStringI @33 + GdipAlloc @34 + GdipBeginContainer2 @35 + GdipBeginContainer @36 + GdipBeginContainerI @37 + GdipBitmapGetPixel @38 + GdipBitmapLockBits @39 + GdipBitmapSetPixel @40 + GdipBitmapSetResolution @41 + GdipBitmapUnlockBits @42 + GdipClearPathMarkers @43 + GdipCloneBitmapArea @44 + GdipCloneBitmapAreaI @45 + GdipCloneBrush @46 + GdipCloneCustomLineCap @47 + GdipCloneFont @48 + GdipCloneFontFamily @49 + GdipCloneImage @50 + GdipCloneImageAttributes @51 + GdipCloneMatrix @52 + GdipClonePath @53 + GdipClonePen @54 + GdipCloneRegion @55 + GdipCloneStringFormat @56 + GdipClosePathFigure @57 + GdipClosePathFigures @58 + GdipCombineRegionPath @59 + GdipCombineRegionRect @60 + GdipCombineRegionRectI @61 + GdipCombineRegionRegion @62 + GdipComment @63 + GdipCreateAdjustableArrowCap @64 + GdipCreateBitmapFromDirectDrawSurface @65 PRIVATE + GdipCreateBitmapFromFile @66 + GdipCreateBitmapFromFileICM @67 + GdipCreateBitmapFromGdiDib @68 + GdipCreateBitmapFromGraphics @69 + GdipCreateBitmapFromHBITMAP @70 + GdipCreateBitmapFromHICON @71 + GdipCreateBitmapFromResource @72 + GdipCreateBitmapFromScan0 @73 + GdipCreateBitmapFromStream @74 + GdipCreateBitmapFromStreamICM @75 + GdipCreateCachedBitmap @76 + GdipCreateCustomLineCap @77 + GdipCreateFont @78 + GdipCreateFontFamilyFromName @79 + GdipCreateFontFromDC @80 + GdipCreateFontFromLogfontA @81 + GdipCreateFontFromLogfontW @82 + GdipCreateFromHDC2 @83 + GdipCreateFromHDC @84 + GdipCreateFromHWND @85 + GdipCreateFromHWNDICM @86 + GdipCreateHBITMAPFromBitmap @87 + GdipCreateHICONFromBitmap @88 + GdipCreateHalftonePalette @89 + GdipCreateHatchBrush @90 + GdipCreateImageAttributes @91 + GdipCreateLineBrush @92 + GdipCreateLineBrushFromRect @93 + GdipCreateLineBrushFromRectI @94 + GdipCreateLineBrushFromRectWithAngle @95 + GdipCreateLineBrushFromRectWithAngleI @96 + GdipCreateLineBrushI @97 + GdipCreateMatrix2 @98 + GdipCreateMatrix3 @99 + GdipCreateMatrix3I @100 + GdipCreateMatrix @101 + GdipCreateMetafileFromEmf @102 + GdipCreateMetafileFromFile @103 + GdipCreateMetafileFromStream @104 + GdipCreateMetafileFromWmf @105 + GdipCreateMetafileFromWmfFile @106 + GdipCreatePath2 @107 + GdipCreatePath2I @108 + GdipCreatePath @109 + GdipCreatePathGradient @110 + GdipCreatePathGradientFromPath @111 + GdipCreatePathGradientI @112 + GdipCreatePathIter @113 + GdipCreatePen1 @114 + GdipCreatePen2 @115 + GdipCreateRegion @116 + GdipCreateRegionHrgn @117 + GdipCreateRegionPath @118 + GdipCreateRegionRect @119 + GdipCreateRegionRectI @120 + GdipCreateRegionRgnData @121 + GdipCreateSolidFill @122 + GdipCreateStreamOnFile @123 + GdipCreateStringFormat @124 + GdipCreateTexture2 @125 + GdipCreateTexture2I @126 + GdipCreateTexture @127 + GdipCreateTextureIA @128 + GdipCreateTextureIAI @129 + GdipDeleteBrush @130 + GdipDeleteCachedBitmap @131 + GdipDeleteCustomLineCap @132 + GdipDeleteFont @133 + GdipDeleteFontFamily @134 + GdipDeleteGraphics @135 + GdipDeleteMatrix @136 + GdipDeletePath @137 + GdipDeletePathIter @138 + GdipDeletePen @139 + GdipDeletePrivateFontCollection @140 + GdipDeleteRegion @141 + GdipDeleteStringFormat @142 + GdipDisposeImage @143 + GdipDisposeImageAttributes @144 + GdipDrawArc @145 + GdipDrawArcI @146 + GdipDrawBezier @147 + GdipDrawBezierI @148 + GdipDrawBeziers @149 + GdipDrawBeziersI @150 + GdipDrawCachedBitmap @151 + GdipDrawClosedCurve2 @152 + GdipDrawClosedCurve2I @153 + GdipDrawClosedCurve @154 + GdipDrawClosedCurveI @155 + GdipDrawCurve2 @156 + GdipDrawCurve2I @157 + GdipDrawCurve3 @158 + GdipDrawCurve3I @159 + GdipDrawCurve @160 + GdipDrawCurveI @161 + GdipDrawDriverString @162 + GdipDrawEllipse @163 + GdipDrawEllipseI @164 + GdipDrawImage @165 + GdipDrawImageI @166 + GdipDrawImagePointRect @167 + GdipDrawImagePointRectI @168 + GdipDrawImagePoints @169 + GdipDrawImagePointsI @170 + GdipDrawImagePointsRect @171 + GdipDrawImagePointsRectI @172 + GdipDrawImageRect @173 + GdipDrawImageRectI @174 + GdipDrawImageRectRect @175 + GdipDrawImageRectRectI @176 + GdipDrawLine @177 + GdipDrawLineI @178 + GdipDrawLines @179 + GdipDrawLinesI @180 + GdipDrawPath @181 + GdipDrawPie @182 + GdipDrawPieI @183 + GdipDrawPolygon @184 + GdipDrawPolygonI @185 + GdipDrawRectangle @186 + GdipDrawRectangleI @187 + GdipDrawRectangles @188 + GdipDrawRectanglesI @189 + GdipDrawString @190 + GdipEmfToWmfBits @191 + GdipEndContainer @192 + GdipEnumerateMetafileDestPoint @193 + GdipEnumerateMetafileDestPointI @194 + GdipEnumerateMetafileDestPoints @195 PRIVATE + GdipEnumerateMetafileDestPointsI @196 PRIVATE + GdipEnumerateMetafileDestRect @197 + GdipEnumerateMetafileDestRectI @198 + GdipEnumerateMetafileSrcRectDestPoint @199 PRIVATE + GdipEnumerateMetafileSrcRectDestPointI @200 PRIVATE + GdipEnumerateMetafileSrcRectDestPoints @201 + GdipEnumerateMetafileSrcRectDestPointsI @202 PRIVATE + GdipEnumerateMetafileSrcRectDestRect @203 PRIVATE + GdipEnumerateMetafileSrcRectDestRectI @204 PRIVATE + GdipFillClosedCurve2 @205 + GdipFillClosedCurve2I @206 + GdipFillClosedCurve @207 + GdipFillClosedCurveI @208 + GdipFillEllipse @209 + GdipFillEllipseI @210 + GdipFillPath @211 + GdipFillPie @212 + GdipFillPieI @213 + GdipFillPolygon2 @214 + GdipFillPolygon2I @215 + GdipFillPolygon @216 + GdipFillPolygonI @217 + GdipFillRectangle @218 + GdipFillRectangleI @219 + GdipFillRectangles @220 + GdipFillRectanglesI @221 + GdipFillRegion @222 + GdipFlattenPath @223 + GdipFlush @224 + GdipFree @225 + GdipGetAdjustableArrowCapFillState @226 + GdipGetAdjustableArrowCapHeight @227 + GdipGetAdjustableArrowCapMiddleInset @228 + GdipGetAdjustableArrowCapWidth @229 + GdipGetAllPropertyItems @230 + GdipGetBrushType @231 + GdipGetCellAscent @232 + GdipGetCellDescent @233 + GdipGetClip @234 + GdipGetClipBounds @235 + GdipGetClipBoundsI @236 + GdipGetCompositingMode @237 + GdipGetCompositingQuality @238 + GdipGetCustomLineCapBaseCap @239 + GdipGetCustomLineCapBaseInset @240 + GdipGetCustomLineCapStrokeCaps @241 PRIVATE + GdipGetCustomLineCapStrokeJoin @242 + GdipGetCustomLineCapType @243 + GdipGetCustomLineCapWidthScale @244 + GdipGetDC @245 + GdipGetDpiX @246 + GdipGetDpiY @247 + GdipGetEmHeight @248 + GdipGetEncoderParameterList @249 PRIVATE + GdipGetEncoderParameterListSize @250 + GdipGetFamily @251 + GdipGetFamilyName @252 + GdipGetFontCollectionFamilyCount @253 + GdipGetFontCollectionFamilyList @254 + GdipGetFontHeight @255 + GdipGetFontHeightGivenDPI @256 + GdipGetFontSize @257 + GdipGetFontStyle @258 + GdipGetFontUnit @259 + GdipGetGenericFontFamilyMonospace @260 + GdipGetGenericFontFamilySansSerif @261 + GdipGetGenericFontFamilySerif @262 + GdipGetHatchBackgroundColor @263 + GdipGetHatchForegroundColor @264 + GdipGetHatchStyle @265 + GdipGetHemfFromMetafile @266 + GdipGetImageAttributesAdjustedPalette @267 + GdipGetImageBounds @268 + GdipGetImageDecoders @269 + GdipGetImageDecodersSize @270 + GdipGetImageDimension @271 + GdipGetImageEncoders @272 + GdipGetImageEncodersSize @273 + GdipGetImageFlags @274 + GdipGetImageGraphicsContext @275 + GdipGetImageHeight @276 + GdipGetImageHorizontalResolution @277 + GdipGetImagePalette @278 + GdipGetImagePaletteSize @279 + GdipGetImagePixelFormat @280 + GdipGetImageRawFormat @281 + GdipGetImageThumbnail @282 + GdipGetImageType @283 + GdipGetImageVerticalResolution @284 + GdipGetImageWidth @285 + GdipGetInterpolationMode @286 + GdipGetLineBlend @287 + GdipGetLineBlendCount @288 + GdipGetLineColors @289 + GdipGetLineGammaCorrection @290 + GdipGetLinePresetBlend @291 + GdipGetLinePresetBlendCount @292 + GdipGetLineRect @293 + GdipGetLineRectI @294 + GdipGetLineSpacing @295 + GdipGetLineTransform @296 + GdipGetLineWrapMode @297 + GdipGetLogFontA @298 + GdipGetLogFontW @299 + GdipGetMatrixElements @300 + GdipGetMetafileDownLevelRasterizationLimit @301 PRIVATE + GdipGetMetafileHeaderFromEmf @302 + GdipGetMetafileHeaderFromFile @303 + GdipGetMetafileHeaderFromMetafile @304 + GdipGetMetafileHeaderFromStream @305 + GdipGetMetafileHeaderFromWmf @306 + GdipGetNearestColor @307 + GdipGetPageScale @308 + GdipGetPageUnit @309 + GdipGetPathData @310 + GdipGetPathFillMode @311 + GdipGetPathGradientBlend @312 + GdipGetPathGradientBlendCount @313 + GdipGetPathGradientCenterColor @314 + GdipGetPathGradientCenterPoint @315 + GdipGetPathGradientCenterPointI @316 + GdipGetPathGradientFocusScales @317 + GdipGetPathGradientGammaCorrection @318 + GdipGetPathGradientPath @319 + GdipGetPathGradientPointCount @320 + GdipGetPathGradientPresetBlend @321 + GdipGetPathGradientPresetBlendCount @322 + GdipGetPathGradientRect @323 + GdipGetPathGradientRectI @324 + GdipGetPathGradientSurroundColorCount @325 + GdipGetPathGradientSurroundColorsWithCount @326 + GdipGetPathGradientTransform @327 + GdipGetPathGradientWrapMode @328 + GdipGetPathLastPoint @329 + GdipGetPathPoints @330 + GdipGetPathPointsI @331 + GdipGetPathTypes @332 + GdipGetPathWorldBounds @333 + GdipGetPathWorldBoundsI @334 + GdipGetPenBrushFill @335 + GdipGetPenColor @336 + GdipGetPenCompoundArray @337 PRIVATE + GdipGetPenCompoundCount @338 + GdipGetPenCustomEndCap @339 + GdipGetPenCustomStartCap @340 + GdipGetPenDashArray @341 + GdipGetPenDashCap197819 @342 + GdipGetPenDashCount @343 + GdipGetPenDashOffset @344 + GdipGetPenDashStyle @345 + GdipGetPenEndCap @346 + GdipGetPenFillType @347 + GdipGetPenLineJoin @348 + GdipGetPenMiterLimit @349 + GdipGetPenMode @350 + GdipGetPenStartCap @351 + GdipGetPenTransform @352 + GdipGetPenUnit @353 + GdipGetPenWidth @354 + GdipGetPixelOffsetMode @355 + GdipGetPointCount @356 + GdipGetPropertyCount @357 + GdipGetPropertyIdList @358 + GdipGetPropertyItem @359 + GdipGetPropertyItemSize @360 + GdipGetPropertySize @361 + GdipGetRegionBounds @362 + GdipGetRegionBoundsI @363 + GdipGetRegionData @364 + GdipGetRegionDataSize @365 + GdipGetRegionHRgn @366 + GdipGetRegionScans @367 + GdipGetRegionScansCount @368 + GdipGetRegionScansI @369 + GdipGetRenderingOrigin @370 + GdipGetSmoothingMode @371 + GdipGetSolidFillColor @372 + GdipGetStringFormatAlign @373 + GdipGetStringFormatDigitSubstitution @374 + GdipGetStringFormatFlags @375 + GdipGetStringFormatHotkeyPrefix @376 + GdipGetStringFormatLineAlign @377 + GdipGetStringFormatMeasurableCharacterRangeCount @378 + GdipGetStringFormatTabStopCount @379 + GdipGetStringFormatTabStops @380 + GdipGetStringFormatTrimming @381 + GdipGetTextContrast @382 + GdipGetTextRenderingHint @383 + GdipGetTextureImage @384 + GdipGetTextureTransform @385 + GdipGetTextureWrapMode @386 + GdipGetVisibleClipBounds @387 + GdipGetVisibleClipBoundsI @388 + GdipGetWorldTransform @389 + GdipGraphicsClear @390 + GdipImageForceValidation @391 + GdipImageGetFrameCount @392 + GdipImageGetFrameDimensionsCount @393 + GdipImageGetFrameDimensionsList @394 + GdipImageRotateFlip @395 + GdipImageSelectActiveFrame @396 + GdipInvertMatrix @397 + GdipIsClipEmpty @398 + GdipIsEmptyRegion @399 + GdipIsEqualRegion @400 + GdipIsInfiniteRegion @401 + GdipIsMatrixEqual @402 + GdipIsMatrixIdentity @403 + GdipIsMatrixInvertible @404 + GdipIsOutlineVisiblePathPoint @405 + GdipIsOutlineVisiblePathPointI @406 + GdipIsStyleAvailable @407 + GdipIsVisibleClipEmpty @408 + GdipIsVisiblePathPoint @409 + GdipIsVisiblePathPointI @410 + GdipIsVisiblePoint @411 + GdipIsVisiblePointI @412 + GdipIsVisibleRect @413 + GdipIsVisibleRectI @414 + GdipIsVisibleRegionPoint @415 + GdipIsVisibleRegionPointI @416 + GdipIsVisibleRegionRect @417 + GdipIsVisibleRegionRectI @418 + GdipLoadImageFromFile @419 + GdipLoadImageFromFileICM @420 + GdipLoadImageFromStream @421 + GdipLoadImageFromStreamICM @422 + GdipMeasureCharacterRanges @423 + GdipMeasureDriverString @424 + GdipMeasureString @425 + GdipMultiplyLineTransform @426 + GdipMultiplyMatrix @427 + GdipMultiplyPathGradientTransform @428 + GdipMultiplyPenTransform @429 + GdipMultiplyTextureTransform @430 + GdipMultiplyWorldTransform @431 + GdipNewInstalledFontCollection @432 + GdipNewPrivateFontCollection @433 + GdipPathIterCopyData @434 + GdipPathIterEnumerate @435 + GdipPathIterGetCount @436 + GdipPathIterGetSubpathCount @437 + GdipPathIterHasCurve @438 + GdipPathIterIsValid @439 + GdipPathIterNextMarker @440 + GdipPathIterNextMarkerPath @441 + GdipPathIterNextPathType @442 + GdipPathIterNextSubpath @443 + GdipPathIterNextSubpathPath @444 + GdipPathIterRewind @445 + GdipPlayMetafileRecord @446 + GdipPrivateAddFontFile @447 + GdipPrivateAddMemoryFont @448 + GdipRecordMetafile @449 + GdipRecordMetafileFileName @450 + GdipRecordMetafileFileNameI @451 + GdipRecordMetafileI @452 + GdipRecordMetafileStream @453 + GdipRecordMetafileStreamI @454 PRIVATE + GdipReleaseDC @455 + GdipRemovePropertyItem @456 + GdipResetClip @457 + GdipResetImageAttributes @458 + GdipResetLineTransform @459 + GdipResetPageTransform @460 + GdipResetPath @461 + GdipResetPathGradientTransform @462 + GdipResetPenTransform @463 + GdipResetTextureTransform @464 + GdipResetWorldTransform @465 + GdipRestoreGraphics @466 + GdipReversePath @467 + GdipRotateLineTransform @468 + GdipRotateMatrix @469 + GdipRotatePathGradientTransform @470 + GdipRotatePenTransform @471 + GdipRotateTextureTransform @472 + GdipRotateWorldTransform @473 + GdipSaveAdd @474 + GdipSaveAddImage @475 PRIVATE + GdipSaveGraphics @476 + GdipSaveImageToFile @477 + GdipSaveImageToStream @478 + GdipScaleLineTransform @479 + GdipScaleMatrix @480 + GdipScalePathGradientTransform @481 + GdipScalePenTransform @482 + GdipScaleTextureTransform @483 + GdipScaleWorldTransform @484 + GdipSetAdjustableArrowCapFillState @485 + GdipSetAdjustableArrowCapHeight @486 + GdipSetAdjustableArrowCapMiddleInset @487 + GdipSetAdjustableArrowCapWidth @488 + GdipSetClipGraphics @489 + GdipSetClipHrgn @490 + GdipSetClipPath @491 + GdipSetClipRect @492 + GdipSetClipRectI @493 + GdipSetClipRegion @494 + GdipSetCompositingMode @495 + GdipSetCompositingQuality @496 + GdipSetCustomLineCapBaseCap @497 + GdipSetCustomLineCapBaseInset @498 + GdipSetCustomLineCapStrokeCaps @499 + GdipSetCustomLineCapStrokeJoin @500 + GdipSetCustomLineCapWidthScale @501 + GdipSetEmpty @502 + GdipSetImageAttributesCachedBackground @503 + GdipSetImageAttributesColorKeys @504 + GdipSetImageAttributesColorMatrix @505 + GdipSetImageAttributesGamma @506 + GdipSetImageAttributesNoOp @507 + GdipSetImageAttributesOutputChannel @508 + GdipSetImageAttributesOutputChannelColorProfile @509 + GdipSetImageAttributesRemapTable @510 + GdipSetImageAttributesThreshold @511 + GdipSetImageAttributesToIdentity @512 + GdipSetImageAttributesWrapMode @513 + GdipSetImagePalette @514 + GdipSetInfinite @515 + GdipSetInterpolationMode @516 + GdipSetLineBlend @517 + GdipSetLineColors @518 + GdipSetLineGammaCorrection @519 + GdipSetLineLinearBlend @520 + GdipSetLinePresetBlend @521 + GdipSetLineSigmaBlend @522 + GdipSetLineTransform @523 + GdipSetLineWrapMode @524 + GdipSetMatrixElements @525 + GdipSetMetafileDownLevelRasterizationLimit @526 + GdipSetPageScale @527 + GdipSetPageUnit @528 + GdipSetPathFillMode @529 + GdipSetPathGradientBlend @530 + GdipSetPathGradientCenterColor @531 + GdipSetPathGradientCenterPoint @532 + GdipSetPathGradientCenterPointI @533 + GdipSetPathGradientFocusScales @534 + GdipSetPathGradientGammaCorrection @535 + GdipSetPathGradientLinearBlend @536 + GdipSetPathGradientPath @537 + GdipSetPathGradientPresetBlend @538 + GdipSetPathGradientSigmaBlend @539 + GdipSetPathGradientSurroundColorsWithCount @540 + GdipSetPathGradientTransform @541 + GdipSetPathGradientWrapMode @542 + GdipSetPathMarker @543 + GdipSetPenBrushFill @544 + GdipSetPenColor @545 + GdipSetPenCompoundArray @546 + GdipSetPenCustomEndCap @547 + GdipSetPenCustomStartCap @548 + GdipSetPenDashArray @549 + GdipSetPenDashCap197819 @550 + GdipSetPenDashOffset @551 + GdipSetPenDashStyle @552 + GdipSetPenEndCap @553 + GdipSetPenLineCap197819 @554 + GdipSetPenLineJoin @555 + GdipSetPenMiterLimit @556 + GdipSetPenMode @557 + GdipSetPenStartCap @558 + GdipSetPenTransform @559 + GdipSetPenUnit @560 PRIVATE + GdipSetPenWidth @561 + GdipSetPixelOffsetMode @562 + GdipSetPropertyItem @563 + GdipSetRenderingOrigin @564 + GdipSetSmoothingMode @565 + GdipSetSolidFillColor @566 + GdipSetStringFormatAlign @567 + GdipSetStringFormatDigitSubstitution @568 + GdipSetStringFormatFlags @569 + GdipSetStringFormatHotkeyPrefix @570 + GdipSetStringFormatLineAlign @571 + GdipSetStringFormatMeasurableCharacterRanges @572 + GdipSetStringFormatTabStops @573 + GdipSetStringFormatTrimming @574 + GdipSetTextContrast @575 + GdipSetTextRenderingHint @576 + GdipSetTextureTransform @577 + GdipSetTextureWrapMode @578 + GdipSetWorldTransform @579 + GdipShearMatrix @580 + GdipStartPathFigure @581 + GdipStringFormatGetGenericDefault @582 + GdipStringFormatGetGenericTypographic @583 + GdipTestControl @584 + GdipTransformMatrixPoints @585 + GdipTransformMatrixPointsI @586 + GdipTransformPath @587 + GdipTransformPoints @588 + GdipTransformPointsI @589 + GdipTransformRegion @590 + GdipTranslateClip @591 + GdipTranslateClipI @592 + GdipTranslateLineTransform @593 + GdipTranslateMatrix @594 + GdipTranslatePathGradientTransform @595 + GdipTranslatePenTransform @596 + GdipTranslateRegion @597 + GdipTranslateRegionI @598 + GdipTranslateTextureTransform @599 + GdipTranslateWorldTransform @600 + GdipVectorTransformMatrixPoints @601 + GdipVectorTransformMatrixPointsI @602 + GdipWarpPath @603 + GdipWidenPath @604 + GdipWindingModeOutline @605 + GdiplusNotificationHook @606 + GdiplusNotificationUnhook @607 + GdiplusShutdown=GdiplusShutdown_wrapper @608 + GdiplusStartup @609 + GdipFindFirstImageItem @610 + GdipFindNextImageItem @611 PRIVATE + GdipGetImageItemData @612 + GdipCreateEffect @613 + GdipDeleteEffect @614 + GdipGetEffectParameterSize @615 PRIVATE + GdipGetEffectParameters @616 PRIVATE + GdipSetEffectParameters @617 + GdipInitializePalette @618 + GdipBitmapCreateApplyEffect @619 + GdipBitmapApplyEffect @620 + GdipBitmapGetHistogram @621 + GdipBitmapGetHistogramSize @622 + GdipBitmapConvertFormat @623 + GdipImageSetAbort @624 + GdipGraphicsSetAbort @625 + GdipDrawImageFX @626 PRIVATE + GdipConvertToEmfPlus @627 + GdipConvertToEmfPlusToFile @628 + GdipConvertToEmfPlusToStream @629 PRIVATE + GdipPlayTSClientRecord @630 PRIVATE diff --git a/lib64/wine/libglu32.def b/lib64/wine/libglu32.def new file mode 100644 index 0000000..a0e661b --- /dev/null +++ b/lib64/wine/libglu32.def @@ -0,0 +1,58 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/glu32/glu32.spec; do not edit! + +LIBRARY glu32.dll + +EXPORTS + gluBeginCurve=wine_gluBeginCurve @1 + gluBeginPolygon @2 + gluBeginSurface=wine_gluBeginSurface @3 + gluBeginTrim=wine_gluBeginTrim @4 + gluBuild1DMipmaps @5 + gluBuild2DMipmaps @6 + gluCheckExtension=wine_gluCheckExtension @7 + gluCylinder @8 + gluDeleteNurbsRenderer=wine_gluDeleteNurbsRenderer @9 + gluDeleteQuadric @10 + gluDeleteTess @11 + gluDisk @12 + gluEndCurve=wine_gluEndCurve @13 + gluEndPolygon @14 + gluEndSurface=wine_gluEndSurface @15 + gluEndTrim=wine_gluEndTrim @16 + gluErrorString=wine_gluErrorString @17 + gluErrorUnicodeStringEXT=wine_gluErrorUnicodeStringEXT @18 + gluGetNurbsProperty=wine_gluGetNurbsProperty @19 + gluGetString=wine_gluGetString @20 + gluGetTessProperty @21 + gluLoadSamplingMatrices=wine_gluLoadSamplingMatrices @22 + gluLookAt @23 + gluNewNurbsRenderer=wine_gluNewNurbsRenderer @24 + gluNewQuadric @25 + gluNewTess @26 + gluNextContour @27 + gluNurbsCallback=wine_gluNurbsCallback @28 + gluNurbsCurve=wine_gluNurbsCurve @29 + gluNurbsProperty=wine_gluNurbsProperty @30 + gluNurbsSurface=wine_gluNurbsSurface @31 + gluOrtho2D @32 + gluPartialDisk @33 + gluPerspective @34 + gluPickMatrix @35 + gluProject @36 + gluPwlCurve=wine_gluPwlCurve @37 + gluQuadricCallback @38 + gluQuadricDrawStyle @39 + gluQuadricNormals @40 + gluQuadricOrientation @41 + gluQuadricTexture @42 + gluScaleImage @43 + gluSphere @44 + gluTessBeginContour @45 + gluTessBeginPolygon @46 + gluTessCallback @47 + gluTessEndContour @48 + gluTessEndPolygon @49 + gluTessNormal @50 + gluTessProperty @51 + gluTessVertex @52 + gluUnProject @53 diff --git a/lib64/wine/libhal.def b/lib64/wine/libhal.def new file mode 100644 index 0000000..474efee --- /dev/null +++ b/lib64/wine/libhal.def @@ -0,0 +1,81 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/hal/hal.spec; do not edit! + +LIBRARY hal.dll + +EXPORTS + HalClearSoftwareInterrupt @1 PRIVATE + HalRequestSoftwareInterrupt @2 PRIVATE + HalSystemVectorDispatchEntry @3 PRIVATE + KeAcquireInStackQueuedSpinLockRaiseToSynch @4 PRIVATE + KeAcquireQueuedSpinLock @5 PRIVATE + KeAcquireQueuedSpinLockRaiseToSynch @6 PRIVATE + KeAcquireSpinLockRaiseToSynch @7 PRIVATE + KeReleaseQueuedSpinLock @8 PRIVATE + KeTryToAcquireQueuedSpinLock @9 PRIVATE + KeTryToAcquireQueuedSpinLockRaiseToSynch @10 PRIVATE + HalAcquireDisplayOwnership @11 PRIVATE + HalAdjustResourceList @12 PRIVATE + HalAllProcessorsStarted @13 PRIVATE + HalAllocateAdapterChannel @14 PRIVATE + HalAllocateCommonBuffer @15 PRIVATE + HalAllocateCrashDumpRegisters @16 PRIVATE + HalAssignSlotResources @17 PRIVATE + HalBeginSystemInterrupt @18 PRIVATE + HalCalibratePerformanceCounter @19 PRIVATE + HalDisableSystemInterrupt @20 PRIVATE + HalDisplayString @21 PRIVATE + HalEnableSystemInterrupt @22 PRIVATE + HalEndSystemInterrupt @23 PRIVATE + HalFlushCommonBuffer @24 PRIVATE + HalFreeCommonBuffer @25 PRIVATE + HalGetAdapter @26 PRIVATE + HalGetBusData @27 + HalGetBusDataByOffset @28 + HalGetEnvironmentVariable @29 PRIVATE + HalGetInterruptVector @30 PRIVATE + HalHandleNMI @31 PRIVATE + HalInitSystem @32 PRIVATE + HalInitializeProcessor @33 PRIVATE + HalMakeBeep @34 PRIVATE + HalProcessorIdle @35 PRIVATE + HalQueryDisplayParameters @36 PRIVATE + HalQueryRealTimeClock @37 PRIVATE + HalReadDmaCounter @38 PRIVATE + HalReportResourceUsage @39 PRIVATE + HalRequestIpi @40 PRIVATE + HalReturnToFirmware @41 PRIVATE + HalSetBusData @42 PRIVATE + HalSetBusDataByOffset @43 PRIVATE + HalSetDisplayParameters @44 PRIVATE + HalSetEnvironmentVariable @45 PRIVATE + HalSetProfileInterval @46 PRIVATE + HalSetRealTimeClock @47 PRIVATE + HalSetTimeIncrement @48 PRIVATE + HalStartNextProcessor @49 PRIVATE + HalStartProfileInterrupt @50 PRIVATE + HalStopProfileInterrupt @51 PRIVATE + HalTranslateBusAddress @52 + IoAssignDriveLetters @53 PRIVATE + IoFlushAdapterBuffers @54 PRIVATE + IoFreeAdapterChannel @55 PRIVATE + IoFreeMapRegisters @56 PRIVATE + IoMapTransfer @57 PRIVATE + IoReadPartitionTable @58 PRIVATE + IoSetPartitionInformation @59 PRIVATE + IoWritePartitionTable @60 PRIVATE + KdComPortInUse @61 PRIVATE + KeFlushWriteBuffer @62 PRIVATE + KeLowerIrql @63 PRIVATE + KeQueryPerformanceCounter @64 + KeRaiseIrql @65 PRIVATE + KeRaiseIrqlToDpcLevel @66 PRIVATE + KeRaiseIrqlToSynchLevel @67 PRIVATE + KeStallExecutionProcessor @68 PRIVATE + READ_PORT_BUFFER_UCHAR @69 PRIVATE + READ_PORT_BUFFER_ULONG @70 PRIVATE + READ_PORT_BUFFER_USHORT @71 PRIVATE + READ_PORT_USHORT @72 PRIVATE + WRITE_PORT_BUFFER_UCHAR @73 PRIVATE + WRITE_PORT_BUFFER_ULONG @74 PRIVATE + WRITE_PORT_BUFFER_USHORT @75 PRIVATE + WRITE_PORT_USHORT @76 PRIVATE diff --git a/lib64/wine/libhid.def b/lib64/wine/libhid.def new file mode 100644 index 0000000..92bfdbc --- /dev/null +++ b/lib64/wine/libhid.def @@ -0,0 +1,49 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/hid/hid.spec; do not edit! + +LIBRARY hid.dll + +EXPORTS + HidD_FlushQueue @1 + HidD_FreePreparsedData @2 + HidD_GetAttributes @3 + HidD_GetConfiguration @4 PRIVATE + HidD_GetFeature @5 + HidD_GetHidGuid @6 + HidD_GetIndexedString @7 + HidD_GetInputReport @8 + HidD_GetManufacturerString @9 + HidD_GetMsGenreDescriptor @10 PRIVATE + HidD_GetNumInputBuffers @11 + HidD_GetPhysicalDescriptor @12 PRIVATE + HidD_GetPreparsedData @13 + HidD_GetProductString @14 + HidD_GetSerialNumberString @15 + HidD_Hello @16 PRIVATE + HidD_SetConfiguration @17 PRIVATE + HidD_SetFeature @18 + HidD_SetNumInputBuffers @19 + HidD_SetOutputReport @20 + HidP_GetButtonCaps @21 + HidP_GetCaps @22 + HidP_GetData @23 + HidP_GetExtendedAttributes @24 PRIVATE + HidP_GetLinkCollectionNodes @25 PRIVATE + HidP_GetScaledUsageValue @26 + HidP_GetSpecificButtonCaps @27 + HidP_GetSpecificValueCaps @28 + HidP_GetUsageValue @29 + HidP_GetUsageValueArray @30 PRIVATE + HidP_GetUsages @31 + HidP_GetUsagesEx @32 + HidP_GetValueCaps @33 + HidP_InitializeReportForID @34 + HidP_MaxDataListLength @35 + HidP_MaxUsageListLength @36 + HidP_SetData @37 PRIVATE + HidP_SetScaledUsageValue @38 PRIVATE + HidP_SetUsageValue @39 + HidP_SetUsageValueArray @40 PRIVATE + HidP_SetUsages @41 PRIVATE + HidP_TranslateUsagesToI8042ScanCodes @42 + HidP_UnsetUsages @43 PRIVATE + HidP_UsageListDifference @44 PRIVATE diff --git a/lib64/wine/libhidclass.def b/lib64/wine/libhidclass.def new file mode 100644 index 0000000..d36fe5c --- /dev/null +++ b/lib64/wine/libhidclass.def @@ -0,0 +1,6 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/hidclass.sys/hidclass.sys.spec; do not edit! + +LIBRARY hidclass.sys + +EXPORTS + HidRegisterMinidriver @1 diff --git a/lib64/wine/libhlink.def b/lib64/wine/libhlink.def new file mode 100644 index 0000000..a372fd7 --- /dev/null +++ b/lib64/wine/libhlink.def @@ -0,0 +1,37 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/hlink/hlink.spec; do not edit! + +LIBRARY hlink.dll + +EXPORTS + HlinkCreateFromMoniker @3 + HlinkCreateFromString @4 + HlinkCreateFromData @5 + HlinkCreateBrowseContext @6 + HlinkClone @7 + HlinkNavigateToStringReference @8 + HlinkOnNavigate @9 + HlinkNavigate @10 + HlinkUpdateStackItem @11 + HlinkOnRenameDocument @12 PRIVATE + HlinkResolveMonikerForData @14 + HlinkResolveStringForData @15 PRIVATE + OleSaveToStreamEx @16 PRIVATE + HlinkParseDisplayName @18 + HlinkQueryCreateFromData @20 + HlinkSetSpecialReference @21 PRIVATE + HlinkGetSpecialReference @22 + HlinkCreateShortcut @23 PRIVATE + HlinkResolveShortcut @24 PRIVATE + HlinkIsShortcut @25 + HlinkResolveShortcutToString @26 PRIVATE + HlinkCreateShortcutFromString @27 PRIVATE + HlinkGetValueFromParams @28 PRIVATE + HlinkCreateShortcutFromMoniker @29 PRIVATE + HlinkResolveShortcutToMoniker @30 PRIVATE + HlinkTranslateURL @31 + HlinkCreateExtensionServices @32 + HlinkPreprocessMoniker @33 PRIVATE + DllCanUnloadNow @13 PRIVATE + DllGetClassObject @17 PRIVATE + DllRegisterServer @19 PRIVATE + DllUnregisterServer @34 PRIVATE diff --git a/lib64/wine/libhtmlhelp.def b/lib64/wine/libhtmlhelp.def new file mode 100644 index 0000000..d1c3c56 --- /dev/null +++ b/lib64/wine/libhtmlhelp.def @@ -0,0 +1,11 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/hhctrl.ocx/hhctrl.ocx.spec; do not edit! + +LIBRARY hhctrl.ocx + +EXPORTS + doWinMain @13 + HtmlHelpA @14 + HtmlHelpW @15 + DllGetClassObject @16 PRIVATE + DllRegisterServer @17 PRIVATE + DllUnregisterServer @18 PRIVATE diff --git a/lib64/wine/libhttpapi.def b/lib64/wine/libhttpapi.def new file mode 100644 index 0000000..b751e76 --- /dev/null +++ b/lib64/wine/libhttpapi.def @@ -0,0 +1,64 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/httpapi/httpapi.spec; do not edit! + +LIBRARY httpapi.dll + +EXPORTS + HttpAddFragmentToCache @1 PRIVATE + HttpAddUrl @2 + HttpAddUrlToConfigGroup @3 PRIVATE + HttpAddUrlToUrlGroup @4 + HttpCancelHttpRequest @5 PRIVATE + HttpCreateAppPool @6 PRIVATE + HttpCreateConfigGroup @7 PRIVATE + HttpCreateFilter @8 PRIVATE + HttpCreateHttpHandle @9 + HttpCreateServerSession @10 + HttpCreateRequestQueue @11 + HttpCreateUrlGroup @12 + HttpCloseUrlGroup @13 + HttpCloseServerSession @14 + HttpDeleteConfigGroup @15 PRIVATE + HttpDeleteServiceConfiguration @16 + HttpFilterAccept @17 PRIVATE + HttpFilterAppRead @18 PRIVATE + HttpFilterAppWrite @19 PRIVATE + HttpFilterAppWriteAndRawRead @20 PRIVATE + HttpFilterClose @21 PRIVATE + HttpFilterRawRead @22 PRIVATE + HttpFilterRawWrite @23 PRIVATE + HttpFilterRawWriteAndAppRead @24 PRIVATE + HttpFlushResponseCache @25 PRIVATE + HttpGetCounters @26 PRIVATE + HttpInitialize @27 + HttpInitializeServerContext @28 PRIVATE + HttpOpenAppPool @29 PRIVATE + HttpOpenControlChannel @30 PRIVATE + HttpOpenFilter @31 PRIVATE + HttpQueryAppPoolInformation @32 PRIVATE + HttpQueryConfigGroupInformation @33 PRIVATE + HttpQueryControlChannelInformation @34 PRIVATE + HttpQueryServerContextInformation @35 PRIVATE + HttpQueryServiceConfiguration @36 + HttpReadFragmentFromCache @37 PRIVATE + HttpReceiveClientCertificate @38 PRIVATE + HttpReceiveHttpRequest @39 PRIVATE + HttpReceiveHttpResponse @40 PRIVATE + HttpReceiveRequestEntityBody @41 PRIVATE + HttpRemoveAllUrlsFromConfigGroup @42 PRIVATE + HttpRemoveUrl @43 PRIVATE + HttpRemoveUrlFromConfigGroup @44 PRIVATE + HttpSendHttpRequest @45 PRIVATE + HttpSendHttpResponse @46 PRIVATE + HttpSendRequestEntityBody @47 PRIVATE + HttpSendResponseEntityBody @48 PRIVATE + HttpSetAppPoolInformation @49 PRIVATE + HttpSetConfigGroupInformation @50 PRIVATE + HttpSetControlChannelInformation @51 PRIVATE + HttpSetServerContextInformation @52 PRIVATE + HttpSetServiceConfiguration @53 + HttpSetUrlGroupProperty @54 + HttpShutdownAppPool @55 PRIVATE + HttpShutdownFilter @56 PRIVATE + HttpTerminate @57 + HttpWaitForDemandStart @58 PRIVATE + HttpWaitForDisconnect @59 PRIVATE diff --git a/lib64/wine/libieframe.def b/lib64/wine/libieframe.def new file mode 100644 index 0000000..9e86ec0 --- /dev/null +++ b/lib64/wine/libieframe.def @@ -0,0 +1,12 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/ieframe/ieframe.spec; do not edit! + +LIBRARY ieframe.dll + +EXPORTS + IEWinMain @101 NONAME + DllCanUnloadNow @102 PRIVATE + DllGetClassObject @103 PRIVATE + DllRegisterServer @104 PRIVATE + DllUnregisterServer @105 PRIVATE + IEGetWriteableHKCU @106 + OpenURL @107 diff --git a/lib64/wine/libimagehlp.def b/lib64/wine/libimagehlp.def new file mode 100644 index 0000000..272a448 --- /dev/null +++ b/lib64/wine/libimagehlp.def @@ -0,0 +1,114 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/imagehlp/imagehlp.spec; do not edit! + +LIBRARY imagehlp.dll + +EXPORTS + BindImage @1 + BindImageEx @2 + CheckSumMappedFile @3 + EnumerateLoadedModules64=dbghelp.EnumerateLoadedModules64 @4 + EnumerateLoadedModules=dbghelp.EnumerateLoadedModules @5 + FindDebugInfoFile=dbghelp.FindDebugInfoFile @6 + FindDebugInfoFileEx=dbghelp.FindDebugInfoFileEx @7 + FindExecutableImage=dbghelp.FindExecutableImage @8 + FindExecutableImageEx=dbghelp.FindExecutableImageEx @9 + FindFileInPath @10 PRIVATE + FindFileInSearchPath @11 PRIVATE + GetImageConfigInformation @12 + GetImageUnusedHeaderBytes @13 + GetTimestampForLoadedLibrary=dbghelp.GetTimestampForLoadedLibrary @14 + ImageAddCertificate @15 + ImageDirectoryEntryToData=dbghelp.ImageDirectoryEntryToData @16 + ImageDirectoryEntryToDataEx=dbghelp.ImageDirectoryEntryToDataEx @17 + ImageEnumerateCertificates @18 + ImageGetCertificateData @19 + ImageGetCertificateHeader @20 + ImageGetDigestStream @21 + ImageLoad @22 + ImageNtHeader=ntdll.RtlImageNtHeader @23 + ImageRemoveCertificate @24 + ImageRvaToSection=ntdll.RtlImageRvaToSection @25 + ImageRvaToVa=ntdll.RtlImageRvaToVa @26 + ImageUnload @27 + ImagehlpApiVersion=dbghelp.ImagehlpApiVersion @28 + ImagehlpApiVersionEx=dbghelp.ImagehlpApiVersionEx @29 + MakeSureDirectoryPathExists=dbghelp.MakeSureDirectoryPathExists @30 + MapAndLoad @31 + MapDebugInformation=dbghelp.MapDebugInformation @32 + MapFileAndCheckSumA @33 + MapFileAndCheckSumW @34 + MarkImageAsRunFromSwap @35 PRIVATE + ReBaseImage64 @36 PRIVATE + ReBaseImage @37 + RemovePrivateCvSymbolic @38 + RemovePrivateCvSymbolicEx @39 PRIVATE + RemoveRelocations @40 + SearchTreeForFile=dbghelp.SearchTreeForFile @41 + SetImageConfigInformation @42 + SplitSymbols @43 + StackWalk64=dbghelp.StackWalk64 @44 + StackWalk=dbghelp.StackWalk @45 + SymCleanup=dbghelp.SymCleanup @46 + SymEnumSourceFiles=dbghelp.SymEnumSourceFiles @47 + SymEnumSym @48 PRIVATE + SymEnumSymbols=dbghelp.SymEnumSymbols @49 + SymEnumTypes=dbghelp.SymEnumTypes @50 + SymEnumerateModules64=dbghelp.SymEnumerateModules64 @51 + SymEnumerateModules=dbghelp.SymEnumerateModules @52 + SymEnumerateSymbols64=dbghelp.SymEnumerateSymbols64 @53 + SymEnumerateSymbols=dbghelp.SymEnumerateSymbols @54 + SymEnumerateSymbolsW64 @55 PRIVATE + SymEnumerateSymbolsW @56 PRIVATE + SymFindFileInPath=dbghelp.SymFindFileInPath @57 + SymFromAddr=dbghelp.SymFromAddr @58 + SymFromName=dbghelp.SymFromName @59 + SymFunctionTableAccess64=dbghelp.SymFunctionTableAccess64 @60 + SymFunctionTableAccess=dbghelp.SymFunctionTableAccess @61 + SymGetLineFromAddr64=dbghelp.SymGetLineFromAddr64 @62 + SymGetLineFromAddr=dbghelp.SymGetLineFromAddr @63 + SymGetLineFromName64 @64 PRIVATE + SymGetLineFromName @65 PRIVATE + SymGetLineNext64=dbghelp.SymGetLineNext64 @66 + SymGetLineNext=dbghelp.SymGetLineNext @67 + SymGetLinePrev64=dbghelp.SymGetLinePrev64 @68 + SymGetLinePrev=dbghelp.SymGetLinePrev @69 + SymGetModuleBase64=dbghelp.SymGetModuleBase64 @70 + SymGetModuleBase=dbghelp.SymGetModuleBase @71 + SymGetModuleInfo64=dbghelp.SymGetModuleInfo64 @72 + SymGetModuleInfo=dbghelp.SymGetModuleInfo @73 + SymGetModuleInfoW64=dbghelp.SymGetModuleInfoW64 @74 + SymGetModuleInfoW=dbghelp.SymGetModuleInfoW @75 + SymGetOptions=dbghelp.SymGetOptions @76 + SymGetSearchPath=dbghelp.SymGetSearchPath @77 + SymGetSymFromAddr64=dbghelp.SymGetSymFromAddr64 @78 + SymGetSymFromAddr=dbghelp.SymGetSymFromAddr @79 + SymGetSymFromName64=dbghelp.SymGetSymFromName64 @80 + SymGetSymFromName=dbghelp.SymGetSymFromName @81 + SymGetSymNext64=dbghelp.SymGetSymNext64 @82 + SymGetSymNext=dbghelp.SymGetSymNext @83 + SymGetSymPrev64=dbghelp.SymGetSymPrev64 @84 + SymGetSymPrev=dbghelp.SymGetSymPrev @85 + SymGetTypeFromName=dbghelp.SymGetTypeFromName @86 + SymGetTypeInfo=dbghelp.SymGetTypeInfo @87 + SymInitialize=dbghelp.SymInitialize @88 + SymLoadModule64=dbghelp.SymLoadModule64 @89 + SymLoadModule=dbghelp.SymLoadModule @90 + SymMatchFileName=dbghelp.SymMatchFileName @91 + SymMatchString=dbghelp.SymMatchString @92 + SymRegisterCallback64=dbghelp.SymRegisterCallback64 @93 + SymRegisterCallback=dbghelp.SymRegisterCallback @94 + SymRegisterFunctionEntryCallback64=dbghelp.SymRegisterFunctionEntryCallback64 @95 + SymRegisterFunctionEntryCallback=dbghelp.SymRegisterFunctionEntryCallback @96 + SymSetContext=dbghelp.SymSetContext @97 + SymSetOptions=dbghelp.SymSetOptions @98 + SymSetSearchPath=dbghelp.SymSetSearchPath @99 + SymUnDName64=dbghelp.SymUnDName64 @100 + SymUnDName=dbghelp.SymUnDName @101 + SymUnloadModule64=dbghelp.SymUnloadModule64 @102 + SymUnloadModule=dbghelp.SymUnloadModule @103 + TouchFileTimes @104 + UnDecorateSymbolName=dbghelp.UnDecorateSymbolName @105 + UnMapAndLoad @106 + UnmapDebugInformation=dbghelp.UnmapDebugInformation @107 + UpdateDebugInfoFile @108 + UpdateDebugInfoFileEx @109 diff --git a/lib64/wine/libimm32.def b/lib64/wine/libimm32.def new file mode 100644 index 0000000..bd31087 --- /dev/null +++ b/lib64/wine/libimm32.def @@ -0,0 +1,120 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/imm32/imm32.spec; do not edit! + +LIBRARY imm32.dll + +EXPORTS + ImmActivateLayout @1 PRIVATE + ImmAssociateContext @2 + ImmAssociateContextEx @3 + ImmConfigureIMEA @4 + ImmConfigureIMEW @5 + ImmCreateContext @6 + ImmCreateIMCC @7 + ImmCreateSoftKeyboard @8 + ImmDestroyContext @9 + ImmDestroyIMCC @10 + ImmDestroySoftKeyboard @11 + ImmDisableIME @12 + ImmDisableIme=ImmDisableIME @13 + ImmDisableLegacyIME @14 + ImmDisableTextFrameService @15 + ImmEnumInputContext @16 + ImmEnumRegisterWordA @17 + ImmEnumRegisterWordW @18 + ImmEscapeA @19 + ImmEscapeW @20 + ImmFreeLayout @21 PRIVATE + ImmGenerateMessage @22 + ImmGetCandidateListA @23 + ImmGetCandidateListCountA @24 + ImmGetCandidateListCountW @25 + ImmGetCandidateListW @26 + ImmGetCandidateWindow @27 + ImmGetCompositionFontA @28 + ImmGetCompositionFontW @29 + ImmGetCompositionString=ImmGetCompositionStringA @30 + ImmGetCompositionStringA @31 + ImmGetCompositionStringW @32 + ImmGetCompositionWindow @33 + ImmGetContext @34 + ImmGetConversionListA @35 + ImmGetConversionListW @36 + ImmGetConversionStatus @37 + ImmGetDefaultIMEWnd @38 + ImmGetDescriptionA @39 + ImmGetDescriptionW @40 + ImmGetGuideLineA @41 + ImmGetGuideLineW @42 + ImmGetHotKey @43 + ImmGetIMCCLockCount @44 + ImmGetIMCCSize @45 + ImmGetIMCLockCount @46 + ImmGetIMEFileNameA @47 + ImmGetIMEFileNameW @48 + ImmGetImeInfoEx @49 PRIVATE + ImmGetImeMenuItemsA @50 + ImmGetImeMenuItemsW @51 + ImmGetOpenStatus @52 + ImmGetProperty @53 + ImmGetRegisterWordStyleA @54 + ImmGetRegisterWordStyleW @55 + ImmGetStatusWindowPos @56 + ImmGetVirtualKey @57 + ImmIMPGetIMEA @58 PRIVATE + ImmIMPGetIMEW @59 PRIVATE + ImmIMPQueryIMEA @60 PRIVATE + ImmIMPQueryIMEW @61 PRIVATE + ImmIMPSetIMEA @62 PRIVATE + ImmIMPSetIMEW @63 PRIVATE + ImmInstallIMEA @64 + ImmInstallIMEW @65 + ImmIsIME @66 + ImmIsUIMessageA @67 + ImmIsUIMessageW @68 + ImmLoadIME @69 PRIVATE + ImmLoadLayout @70 PRIVATE + ImmLockClientImc @71 PRIVATE + ImmLockIMC @72 + ImmLockIMCC @73 + ImmLockImeDpi @74 PRIVATE + ImmNotifyIME @75 + ImmPenAuxInput @76 PRIVATE + ImmProcessKey @77 + ImmPutImeMenuItemsIntoMappedFile @78 PRIVATE + ImmReSizeIMCC @79 + ImmRegisterClient @80 PRIVATE + ImmRegisterWordA @81 + ImmRegisterWordW @82 + ImmReleaseContext @83 + ImmRequestMessageA @84 + ImmRequestMessageW @85 + ImmSendIMEMessageExA @86 PRIVATE + ImmSendIMEMessageExW @87 PRIVATE + ImmSendMessageToActiveDefImeWndW @88 PRIVATE + ImmSetActiveContext @89 PRIVATE + ImmSetActiveContextConsoleIME @90 PRIVATE + ImmSetCandidateWindow @91 + ImmSetCompositionFontA @92 + ImmSetCompositionFontW @93 + ImmSetCompositionStringA @94 + ImmSetCompositionStringW @95 + ImmSetCompositionWindow @96 + ImmSetConversionStatus @97 + ImmSetOpenStatus @98 + ImmSetStatusWindowPos @99 + ImmShowSoftKeyboard @100 + ImmSimulateHotKey @101 + ImmSystemHandler @102 PRIVATE + ImmTranslateMessage @103 + ImmUnlockClientImc @104 PRIVATE + ImmUnlockIMC @105 + ImmUnlockIMCC @106 + ImmUnlockImeDpi @107 PRIVATE + ImmUnregisterWordA @108 + ImmUnregisterWordW @109 + ImmWINNLSEnableIME @110 PRIVATE + ImmWINNLSGetEnableStatus @111 PRIVATE + ImmWINNLSGetIMEHotkey @112 PRIVATE + __wine_get_ui_window @113 + __wine_register_window @114 + __wine_unregister_window @115 diff --git a/lib64/wine/libinetcomm.def b/lib64/wine/libinetcomm.def new file mode 100644 index 0000000..f6c1e68 --- /dev/null +++ b/lib64/wine/libinetcomm.def @@ -0,0 +1,111 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/inetcomm/inetcomm.spec; do not edit! + +LIBRARY inetcomm.dll + +EXPORTS + CreateIMAPTransport2 @1 PRIVATE + CreateIMAPTransport @2 + CreateNNTPTransport @3 PRIVATE + CreatePOP3Transport @4 + CreateRASTransport @5 PRIVATE + CreateRangeList @6 PRIVATE + CreateSMTPTransport @7 + DllCanUnloadNow @8 PRIVATE + DllGetClassObject @9 PRIVATE + DllRegisterServer @10 PRIVATE + DllUnregisterServer @11 PRIVATE + EssContentHintDecodeEx @12 PRIVATE + EssContentHintEncodeEx @13 PRIVATE + EssKeyExchPreferenceDecodeEx @14 PRIVATE + EssKeyExchPreferenceEncodeEx @15 PRIVATE + EssMLHistoryDecodeEx @16 PRIVATE + EssMLHistoryEncodeEx @17 PRIVATE + EssReceiptDecodeEx @18 PRIVATE + EssReceiptEncodeEx @19 PRIVATE + EssReceiptRequestDecodeEx @20 PRIVATE + EssReceiptRequestEncodeEx @21 PRIVATE + EssSecurityLabelDecodeEx @22 PRIVATE + EssSecurityLabelEncodeEx @23 PRIVATE + EssSignCertificateDecodeEx @24 PRIVATE + EssSignCertificateEncodeEx @25 PRIVATE + GetDllMajorVersion @26 PRIVATE + HrAthGetFileName @27 PRIVATE + HrAthGetFileNameW @28 PRIVATE + HrAttachDataFromBodyPart @29 PRIVATE + HrAttachDataFromFile @30 PRIVATE + HrDoAttachmentVerb @31 PRIVATE + HrFreeAttachData @32 PRIVATE + HrGetAttachIcon @33 PRIVATE + HrGetAttachIconByFile @34 PRIVATE + HrGetDisplayNameWithSizeForFile @35 PRIVATE + HrGetLastOpenFileDirectory @36 PRIVATE + HrGetLastOpenFileDirectoryW @37 PRIVATE + HrSaveAttachToFile @38 PRIVATE + HrSaveAttachmentAs @39 PRIVATE + MimeEditCreateMimeDocument @40 PRIVATE + MimeEditDocumentFromStream @41 PRIVATE + MimeEditGetBackgroundImageUrl @42 PRIVATE + MimeEditIsSafeToRun @43 PRIVATE + MimeEditViewSource @44 PRIVATE + MimeGetAddressFormatW @45 + MimeOleAlgNameFromSMimeCap @46 PRIVATE + MimeOleAlgStrengthFromSMimeCap @47 PRIVATE + MimeOleClearDirtyTree @48 PRIVATE + MimeOleConvertEnrichedToHTML @49 PRIVATE + MimeOleCreateBody @50 PRIVATE + MimeOleCreateByteStream @51 PRIVATE + MimeOleCreateHashTable @52 PRIVATE + MimeOleCreateHeaderTable @53 PRIVATE + MimeOleCreateMessage @54 + MimeOleCreateMessageParts @55 PRIVATE + MimeOleCreatePropertySet @56 PRIVATE + MimeOleCreateSecurity @57 + MimeOleCreateVirtualStream @58 + MimeOleDecodeHeader @59 PRIVATE + MimeOleEncodeHeader @60 PRIVATE + MimeOleFileTimeToInetDate @61 PRIVATE + MimeOleFindCharset @62 + MimeOleGenerateCID @63 PRIVATE + MimeOleGenerateFileName @64 PRIVATE + MimeOleGenerateMID @65 PRIVATE + MimeOleGetAllocator @66 + MimeOleGetBodyPropA @67 PRIVATE + MimeOleGetBodyPropW @68 PRIVATE + MimeOleGetCertsFromThumbprints @69 PRIVATE + MimeOleGetCharsetInfo @70 + MimeOleGetCodePageCharset @71 PRIVATE + MimeOleGetCodePageInfo @72 PRIVATE + MimeOleGetContentTypeExt @73 PRIVATE + MimeOleGetDefaultCharset @74 + MimeOleGetExtContentType @75 PRIVATE + MimeOleGetFileExtension @76 PRIVATE + MimeOleGetFileInfo @77 PRIVATE + MimeOleGetFileInfoW @78 PRIVATE + MimeOleGetInternat @79 + MimeOleGetPropA @80 PRIVATE + MimeOleGetPropW @81 PRIVATE + MimeOleGetPropertySchema @82 + MimeOleGetRelatedSection @83 PRIVATE + MimeOleInetDateToFileTime @84 PRIVATE + MimeOleObjectFromMoniker @85 + MimeOleOpenFileStream @86 PRIVATE + MimeOleParseMhtmlUrl @87 PRIVATE + MimeOleParseRfc822Address @88 PRIVATE + MimeOleParseRfc822AddressW @89 PRIVATE + MimeOleSMimeCapAddCert @90 PRIVATE + MimeOleSMimeCapAddSMimeCap @91 PRIVATE + MimeOleSMimeCapGetEncAlg @92 PRIVATE + MimeOleSMimeCapGetHashAlg @93 PRIVATE + MimeOleSMimeCapInit @94 PRIVATE + MimeOleSMimeCapRelease @95 PRIVATE + MimeOleSMimeCapsFromDlg @96 PRIVATE + MimeOleSMimeCapsFull @97 PRIVATE + MimeOleSMimeCapsToDlg @98 PRIVATE + MimeOleSetBodyPropA @99 PRIVATE + MimeOleSetBodyPropW @100 PRIVATE + MimeOleSetCompatMode @101 + MimeOleSetDefaultCharset @102 PRIVATE + MimeOleSetPropA @103 PRIVATE + MimeOleSetPropW @104 PRIVATE + MimeOleStripHeaders @105 PRIVATE + MimeOleUnEscapeStringInPlace @106 PRIVATE diff --git a/lib64/wine/libiphlpapi.def b/lib64/wine/libiphlpapi.def new file mode 100644 index 0000000..d402e88 --- /dev/null +++ b/lib64/wine/libiphlpapi.def @@ -0,0 +1,168 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/iphlpapi/iphlpapi.spec; do not edit! + +LIBRARY iphlpapi.dll + +EXPORTS + AddIPAddress @1 + AllocateAndGetArpEntTableFromStack @2 PRIVATE + AllocateAndGetIfTableFromStack @3 + AllocateAndGetIpAddrTableFromStack @4 + AllocateAndGetIpForwardTableFromStack @5 + AllocateAndGetIpNetTableFromStack @6 + AllocateAndGetTcpExTableFromStack @7 + AllocateAndGetTcpTableFromStack @8 + AllocateAndGetUdpTableFromStack @9 + CancelIPChangeNotify @10 + CancelMibChangeNotify2 @11 + ConvertInterfaceGuidToLuid @12 + ConvertInterfaceIndexToLuid @13 + ConvertInterfaceLuidToGuid @14 + ConvertInterfaceLuidToIndex @15 + ConvertInterfaceLuidToNameA @16 + ConvertInterfaceLuidToNameW @17 + ConvertInterfaceNameToLuidA @18 + ConvertInterfaceNameToLuidW @19 + ConvertLengthToIpv4Mask @20 + CreateIpForwardEntry @21 + CreateIpNetEntry @22 + CreateProxyArpEntry @23 + CreateSortedAddressPairs @24 + DeleteIPAddress @25 + DeleteIpForwardEntry @26 + DeleteIpNetEntry @27 + DeleteProxyArpEntry @28 + EnableRouter @29 + FlushIpNetTable @30 + FlushIpNetTableFromStack @31 PRIVATE + FreeMibTable @32 + GetAdapterIndex @33 + GetAdapterOrderMap @34 PRIVATE + GetAdaptersAddresses @35 + GetAdaptersInfo @36 + GetBestInterface @37 + GetBestInterfaceEx @38 + GetBestInterfaceFromStack @39 PRIVATE + GetBestRoute @40 + GetBestRoute2 @41 + GetBestRouteFromStack @42 PRIVATE + GetExtendedTcpTable @43 + GetExtendedUdpTable @44 + GetFriendlyIfIndex @45 + GetIcmpStatisticsEx @46 + GetIcmpStatistics @47 + GetIcmpStatsFromStack @48 PRIVATE + GetIfEntry @49 + GetIfEntry2 @50 + GetIfEntryFromStack @51 PRIVATE + GetIfTable @52 + GetIfTable2 @53 + GetIfTable2Ex @54 + GetIfTableFromStack @55 PRIVATE + GetIgmpList @56 PRIVATE + GetInterfaceInfo @57 + GetIpAddrTable @58 + GetIpAddrTableFromStack @59 PRIVATE + GetIpForwardTable @60 + GetIpForwardTable2 @61 + GetIpForwardTableFromStack @62 PRIVATE + GetIpInterfaceTable @63 + GetIpNetTable @64 + GetIpNetTable2 @65 + GetIpNetTableFromStack @66 PRIVATE + GetIpStatisticsEx @67 + GetIpStatistics @68 + GetIpStatsFromStack @69 PRIVATE + GetNetworkParams @70 + GetNumberOfInterfaces @71 + GetPerAdapterInfo @72 + GetRTTAndHopCount @73 + GetTcp6Table @74 + GetTcp6Table2 @75 + GetTcpStatisticsEx @76 + GetTcpStatistics @77 + GetTcpStatsFromStack @78 PRIVATE + GetTcpTable @79 + GetTcpTable2 @80 + GetTcpTableFromStack @81 PRIVATE + GetUdp6Table @82 + GetUdpStatisticsEx @83 + GetUdpStatistics @84 + GetUdpStatsFromStack @85 PRIVATE + GetUdpTable @86 + GetUdpTableFromStack @87 PRIVATE + GetUnicastIpAddressEntry @88 + GetUnicastIpAddressTable @89 + GetUniDirectionalAdapterInfo @90 + Icmp6CreateFile @91 + Icmp6SendEcho2 @92 + IcmpCloseHandle @93 + IcmpCreateFile @94 + IcmpParseReplies @95 PRIVATE + IcmpSendEcho2Ex @96 + IcmpSendEcho2 @97 + IcmpSendEcho @98 + if_indextoname=IPHLP_if_indextoname @99 + if_nametoindex=IPHLP_if_nametoindex @100 + InternalCreateIpForwardEntry @101 PRIVATE + InternalCreateIpNetEntry @102 PRIVATE + InternalDeleteIpForwardEntry @103 PRIVATE + InternalDeleteIpNetEntry @104 PRIVATE + InternalGetIfTable @105 PRIVATE + InternalGetIpAddrTable @106 PRIVATE + InternalGetIpForwardTable @107 PRIVATE + InternalGetIpNetTable @108 PRIVATE + InternalGetTcpTable @109 PRIVATE + InternalGetUdpTable @110 PRIVATE + InternalSetIfEntry @111 PRIVATE + InternalSetIpForwardEntry @112 PRIVATE + InternalSetIpNetEntry @113 PRIVATE + InternalSetIpStats @114 PRIVATE + InternalSetTcpEntry @115 PRIVATE + IpReleaseAddress @116 + IpRenewAddress @117 + IsLocalAddress @118 PRIVATE + NhGetGuidFromInterfaceName @119 PRIVATE + NhGetInterfaceNameFromGuid @120 PRIVATE + NhpAllocateAndGetInterfaceInfoFromStack @121 PRIVATE + NhpGetInterfaceIndexFromStack @122 PRIVATE + NotifyAddrChange @123 + NotifyIpInterfaceChange @124 + NotifyRouteChange @125 + NotifyRouteChangeEx @126 PRIVATE + NotifyUnicastIpAddressChange @127 + _PfAddFiltersToInterface@24 @128 PRIVATE + _PfAddGlobalFilterToInterface@8 @129 PRIVATE + _PfBindInterfaceToIPAddress@12=PfBindInterfaceToIPAddress @130 + _PfBindInterfaceToIndex@16 @131 PRIVATE + _PfCreateInterface@24=PfCreateInterface @132 + _PfDeleteInterface@4=PfDeleteInterface @133 + _PfDeleteLog@0 @134 PRIVATE + _PfGetInterfaceStatistics@16 @135 PRIVATE + _PfMakeLog@4 @136 PRIVATE + _PfRebindFilters@8 @137 PRIVATE + _PfRemoveFilterHandles@12 @138 PRIVATE + _PfRemoveFiltersFromInterface@20 @139 PRIVATE + _PfRemoveGlobalFilterFromInterface@8 @140 PRIVATE + _PfSetLogBuffer@28 @141 PRIVATE + _PfTestPacket@20 @142 PRIVATE + _PfUnBindInterface@4=PfUnBindInterface @143 + SendARP @144 + SetAdapterIpAddress @145 PRIVATE + SetBlockRoutes @146 PRIVATE + SetIfEntry @147 + SetIfEntryToStack @148 PRIVATE + SetIpForwardEntry @149 + SetIpForwardEntryToStack @150 PRIVATE + SetIpMultihopRouteEntryToStack @151 PRIVATE + SetIpNetEntry @152 + SetIpNetEntryToStack @153 PRIVATE + SetIpRouteEntryToStack @154 PRIVATE + SetIpStatistics @155 + SetIpStatsToStack @156 PRIVATE + SetIpTTL @157 + SetPerTcpConnectionEStats @158 + SetProxyArpEntryToStack @159 PRIVATE + SetRouteWithRef @160 PRIVATE + SetTcpEntry @161 + SetTcpEntryToStack @162 PRIVATE + UnenableRouter @163 diff --git a/lib64/wine/libjsproxy.def b/lib64/wine/libjsproxy.def new file mode 100644 index 0000000..78bfb1d --- /dev/null +++ b/lib64/wine/libjsproxy.def @@ -0,0 +1,11 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/jsproxy/jsproxy.spec; do not edit! + +LIBRARY jsproxy.dll + +EXPORTS + InternetInitializeAutoProxyDll=JSPROXY_InternetInitializeAutoProxyDll @101 + InternetDeInitializeAutoProxyDll @102 + InternetGetProxyInfo @103 + InternetInitializeAutoProxyDllEx @104 PRIVATE + InternetDeInitializeAutoProxyDllEx @105 PRIVATE + InternetGetProxyInfoEx @106 PRIVATE diff --git a/lib64/wine/libkernel32.def b/lib64/wine/libkernel32.def new file mode 100644 index 0000000..6a70cfe --- /dev/null +++ b/lib64/wine/libkernel32.def @@ -0,0 +1,1235 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/kernel32/kernel32.spec; do not edit! + +LIBRARY kernel32.dll + +EXPORTS + AcquireSRWLockExclusive=ntdll.RtlAcquireSRWLockExclusive @1 + AcquireSRWLockShared=ntdll.RtlAcquireSRWLockShared @2 + ActivateActCtx @3 + AddAtomA @4 + AddAtomW @5 + AddConsoleAliasA @6 + AddConsoleAliasW @7 + AddDllDirectory @8 + AddRefActCtx @9 + AddVectoredContinueHandler=ntdll.RtlAddVectoredContinueHandler @10 + AddVectoredExceptionHandler=ntdll.RtlAddVectoredExceptionHandler @11 + AllocConsole @12 + AllocateUserPhysicalPages @13 + ApplicationRecoveryFinished @14 + ApplicationRecoveryInProgress @15 + AreFileApisANSI @16 + AssignProcessToJobObject @17 + AttachConsole @18 + BackupRead @19 + BackupSeek @20 + BackupWrite @21 + BaseAttachCompleteThunk @22 PRIVATE + BaseCheckAppcompatCache @23 PRIVATE + BaseCleanupAppcompatCache @24 PRIVATE + BaseCleanupAppcompatCacheSupport @25 PRIVATE + BaseDumpAppcompatCache @26 PRIVATE + BaseFlushAppcompatCache @27 + BaseInitAppcompatCache @28 PRIVATE + BaseInitAppcompatCacheSupport @29 PRIVATE + BaseProcessInitPostImport @30 PRIVATE + BaseUpdateAppcompatCache @31 PRIVATE + BasepDebugDump @32 PRIVATE + Beep @33 + BeginUpdateResourceA @34 + BeginUpdateResourceW @35 + BindIoCompletionCallback @36 + BuildCommDCBA @37 + BuildCommDCBAndTimeoutsA @38 + BuildCommDCBAndTimeoutsW @39 + BuildCommDCBW @40 + CallbackMayRunLong @41 + CallNamedPipeA @42 + CallNamedPipeW @43 + CancelDeviceWakeupRequest @44 PRIVATE + CancelIo @45 + CancelIoEx @46 + CancelSynchronousIo @47 + CancelTimerQueueTimer @48 + CancelWaitableTimer @49 + ChangeTimerQueueTimer @50 + CheckNameLegalDOS8Dot3A @51 + CheckNameLegalDOS8Dot3W @52 + CheckRemoteDebuggerPresent @53 + ClearCommBreak @54 + ClearCommError @55 + CloseConsoleHandle @56 + CloseHandle @57 + CloseProfileUserMapping @58 + CloseSystemHandle @59 PRIVATE + CloseThreadpool=ntdll.TpReleasePool @60 + CloseThreadpoolCleanupGroup=ntdll.TpReleaseCleanupGroup @61 + CloseThreadpoolCleanupGroupMembers=ntdll.TpReleaseCleanupGroupMembers @62 + CloseThreadpoolTimer=ntdll.TpReleaseTimer @63 + CloseThreadpoolWait=ntdll.TpReleaseWait @64 + CloseThreadpoolWork=ntdll.TpReleaseWork @65 + CmdBatNotification @66 + CommConfigDialogA @67 + CommConfigDialogW @68 + CompareFileTime @69 + CompareStringA @70 + CompareStringW @71 + CompareStringEx @72 + CompareStringOrdinal @73 + ConnectNamedPipe @74 + ConsoleMenuControl @75 PRIVATE + ConsoleSubst @76 PRIVATE + ContinueDebugEvent @77 + ConvertDefaultLocale @78 + ConvertFiberToThread @79 + ConvertThreadToFiber @80 + ConvertThreadToFiberEx @81 + ConvertToGlobalHandle @82 + CopyFileA @83 + CopyFileExA @84 + CopyFileExW @85 + CopyFileW @86 + CopyLZFile=LZCopy @87 + CreateActCtxA @88 + CreateActCtxW @89 + CreateConsoleScreenBuffer @90 + CreateDirectoryA @91 + CreateDirectoryExA @92 + CreateDirectoryExW @93 + CreateDirectoryW @94 + CreateEventA @95 + CreateEventExA @96 + CreateEventExW @97 + CreateEventW @98 + CreateFiber @99 + CreateFiberEx @100 + CreateFile2 @101 + CreateFileA @102 + CreateFileMappingA @103 + CreateFileMappingW @104 + CreateFileW @105 + CreateHardLinkA @106 + CreateHardLinkTransactedA @107 + CreateHardLinkTransactedW @108 + CreateHardLinkW @109 + CreateIoCompletionPort @110 + CreateJobObjectA @111 + CreateJobObjectW @112 + CreateKernelThread @113 PRIVATE + CreateMailslotA @114 + CreateMailslotW @115 + CreateMemoryResourceNotification @116 + CreateMutexA @117 + CreateMutexExA @118 + CreateMutexExW @119 + CreateMutexW @120 + CreateNamedPipeA @121 + CreateNamedPipeW @122 + CreatePipe @123 + CreateProcessA @124 + CreateProcessAsUserA @125 + CreateProcessAsUserW @126 + CreateProcessInternalA @127 + CreateProcessInternalW @128 + CreateProcessW @129 + CreateRemoteThread @130 + CreateRemoteThreadEx @131 + CreateSemaphoreA @132 + CreateSemaphoreExA @133 + CreateSemaphoreExW @134 + CreateSemaphoreW @135 + CreateSocketHandle @136 + CreateSymbolicLinkA @137 + CreateSymbolicLinkW @138 + CreateTapePartition @139 + CreateThread @140 + CreateThreadpool @141 + CreateThreadpoolCleanupGroup @142 + CreateThreadpoolIo @143 + CreateThreadpoolTimer @144 + CreateThreadpoolWait @145 + CreateThreadpoolWork @146 + CreateTimerQueue @147 + CreateTimerQueueTimer @148 + CreateToolhelp32Snapshot @149 + CreateUmsCompletionList @150 + CreateUmsThreadContext @151 + CreateVirtualBuffer @152 PRIVATE + CreateWaitableTimerA @153 + CreateWaitableTimerExA @154 + CreateWaitableTimerExW @155 + CreateWaitableTimerW @156 + DeactivateActCtx @157 + DebugActiveProcess @158 + DebugActiveProcessStop @159 + DebugBreak @160 + DebugBreakProcess @161 + DebugSetProcessKillOnExit @162 + DecodePointer=ntdll.RtlDecodePointer @163 + DecodeSystemPointer=ntdll.RtlDecodeSystemPointer @164 + DefineDosDeviceA @165 + DefineDosDeviceW @166 + DelayLoadFailureHook @167 + DeleteAtom @168 + DeleteCriticalSection=ntdll.RtlDeleteCriticalSection @169 + DeleteFiber @170 + DeleteFileA @171 + DeleteFileW @172 + DeleteProcThreadAttributeList @173 + DisassociateCurrentThreadFromCallback=ntdll.TpDisassociateCallback @174 + DeleteTimerQueue @175 + DeleteTimerQueueEx @176 + DeleteTimerQueueTimer @177 + DeleteUmsCompletionList @178 + DeleteUmsThreadContext @179 + DeleteVolumeMountPointA @180 + DeleteVolumeMountPointW @181 + DequeueUmsCompletionListItems @182 + DeviceIoControl @183 + DisableThreadLibraryCalls @184 + DisconnectNamedPipe @185 + DnsHostnameToComputerNameA @186 + DnsHostnameToComputerNameW @187 + DosDateTimeToFileTime @188 + DuplicateConsoleHandle @189 + DuplicateHandle @190 + EncodePointer=ntdll.RtlEncodePointer @191 + EncodeSystemPointer=ntdll.RtlEncodeSystemPointer @192 + EndUpdateResourceA @193 + EndUpdateResourceW @194 + EnterCriticalSection=ntdll.RtlEnterCriticalSection @195 + EnumCalendarInfoA @196 + EnumCalendarInfoExA @197 + EnumCalendarInfoExEx @198 + EnumCalendarInfoExW @199 + EnumCalendarInfoW @200 + EnumDateFormatsA @201 + EnumDateFormatsExA @202 + EnumDateFormatsExEx @203 + EnumDateFormatsExW @204 + EnumDateFormatsW @205 + EnumLanguageGroupLocalesA @206 + EnumLanguageGroupLocalesW @207 + EnumResourceLanguagesA @208 + EnumResourceLanguagesExA @209 + EnumResourceLanguagesExW @210 + EnumResourceLanguagesW @211 + EnumResourceNamesA @212 + EnumResourceNamesW @213 + EnumResourceTypesA @214 + EnumResourceTypesW @215 + EnumSystemCodePagesA @216 + EnumSystemCodePagesW @217 + EnumSystemGeoID @218 + EnumSystemLanguageGroupsA @219 + EnumSystemLanguageGroupsW @220 + EnumSystemLocalesA @221 + EnumSystemLocalesEx @222 + EnumSystemLocalesW @223 + EnumTimeFormatsA @224 + EnumTimeFormatsEx @225 + EnumTimeFormatsW @226 + EnumUILanguagesA @227 + EnumUILanguagesW @228 + EnterUmsSchedulingMode @229 + EraseTape @230 + EscapeCommFunction @231 + ExecuteUmsThread @232 + ExitProcess @233 + ExitThread @234 + ExitVDM @235 PRIVATE + ExpandEnvironmentStringsA @236 + ExpandEnvironmentStringsW @237 + ExpungeConsoleCommandHistoryA @238 + ExpungeConsoleCommandHistoryW @239 + ExtendVirtualBuffer @240 PRIVATE + FatalAppExitA @241 + FatalAppExitW @242 + FatalExit @243 + FileTimeToDosDateTime @244 + FileTimeToLocalFileTime @245 + FileTimeToSystemTime @246 + FillConsoleOutputAttribute @247 + FillConsoleOutputCharacterA @248 + FillConsoleOutputCharacterW @249 + FindActCtxSectionGuid @250 + FindActCtxSectionStringA @251 + FindActCtxSectionStringW @252 + FindAtomA @253 + FindAtomW @254 + FindClose @255 + FindCloseChangeNotification @256 + FindFirstChangeNotificationA @257 + FindFirstChangeNotificationW @258 + FindFirstFileA @259 + FindFirstFileExA @260 + FindFirstFileExW @261 + FindFirstFileW @262 + FindFirstVolumeA @263 + FindFirstVolumeMountPointA @264 + FindFirstVolumeMountPointW @265 + FindFirstVolumeW @266 + FindNextChangeNotification @267 + FindNextFileA @268 + FindNextFileW @269 + FindNextVolumeA @270 + FindNextVolumeMountPointA @271 PRIVATE + FindNextVolumeMountPointW @272 PRIVATE + FindNextVolumeW @273 + FindNLSStringEx @274 + FindResourceA @275 + FindResourceExA @276 + FindResourceExW @277 + FindResourceW @278 + FindStringOrdinal @279 + FindVolumeClose @280 + FindVolumeMountPointClose @281 + FlsAlloc @282 + FlsFree @283 + FlsGetValue @284 + FlsSetValue @285 + FlushConsoleInputBuffer @286 + FlushFileBuffers @287 + FlushInstructionCache @288 + FlushProcessWriteBuffers @289 + FlushViewOfFile @290 + FoldStringA @291 + FoldStringW @292 + FormatMessageA @293 + FormatMessageW @294 + FreeConsole @295 + FreeEnvironmentStringsA @296 + FreeEnvironmentStringsW @297 + FreeLibrary @298 + FreeLibraryAndExitThread @299 + FreeLibraryWhenCallbackReturns=ntdll.TpCallbackUnloadDllOnCompletion @300 + FreeResource @301 + FreeUserPhysicalPages @302 + FreeVirtualBuffer @303 PRIVATE + GenerateConsoleCtrlEvent @304 + GetACP @305 + GetActiveProcessorCount @306 + GetActiveProcessorGroupCount @307 + GetApplicationRestartSettings @308 + GetAtomNameA @309 + GetAtomNameW @310 + GetBinaryType=GetBinaryTypeA @311 + GetBinaryTypeA @312 + GetBinaryTypeW @313 + GetCPInfo @314 + GetCPInfoExA @315 + GetCPInfoExW @316 + GetCalendarInfoA @317 + GetCalendarInfoW @318 + GetCalendarInfoEx @319 + GetCommConfig @320 + GetCommMask @321 + GetCommModemStatus @322 + GetCommProperties @323 + GetCommState @324 + GetCommTimeouts @325 + GetCommandLineA @326 + GetCommandLineW @327 + GetCompressedFileSizeA @328 + GetCompressedFileSizeW @329 + GetComputerNameA @330 + GetComputerNameExA @331 + GetComputerNameExW @332 + GetComputerNameW @333 + GetConsoleAliasA @334 PRIVATE + GetConsoleAliasExesA @335 PRIVATE + GetConsoleAliasExesLengthA @336 + GetConsoleAliasExesLengthW @337 + GetConsoleAliasExesW @338 PRIVATE + GetConsoleAliasW @339 + GetConsoleAliasesA @340 PRIVATE + GetConsoleAliasesLengthA @341 + GetConsoleAliasesLengthW @342 + GetConsoleAliasesW @343 PRIVATE + GetConsoleCP @344 + GetConsoleCharType @345 PRIVATE + GetConsoleCommandHistoryA @346 + GetConsoleCommandHistoryLengthA @347 + GetConsoleCommandHistoryLengthW @348 + GetConsoleCommandHistoryW @349 + GetConsoleCursorInfo @350 + GetConsoleCursorMode @351 PRIVATE + GetConsoleDisplayMode @352 + GetConsoleFontInfo @353 + GetConsoleFontSize @354 + GetConsoleHardwareState @355 PRIVATE + GetConsoleInputExeNameA @356 + GetConsoleInputExeNameW @357 + GetConsoleInputWaitHandle @358 + GetConsoleKeyboardLayoutNameA @359 + GetConsoleKeyboardLayoutNameW @360 + GetConsoleMode @361 + GetConsoleNlsMode @362 PRIVATE + GetConsoleOutputCP @363 + GetConsoleProcessList @364 + GetConsoleScreenBufferInfo @365 + GetConsoleScreenBufferInfoEx @366 + GetConsoleTitleA @367 + GetConsoleTitleW @368 + GetConsoleWindow @369 + GetCurrencyFormatA @370 + GetCurrencyFormatEx @371 + GetCurrencyFormatW @372 + GetCurrentActCtx @373 + GetCurrentConsoleFont @374 + GetCurrentDirectoryA @375 + GetCurrentDirectoryW @376 + GetCurrentPackageFamilyName @377 + GetCurrentPackageFullName @378 + GetCurrentPackageId @379 + GetCurrentProcess @380 + GetCurrentProcessId @381 + GetCurrentProcessorNumber=ntdll.NtGetCurrentProcessorNumber @382 + GetCurrentProcessorNumberEx=ntdll.RtlGetCurrentProcessorNumberEx @383 + GetCurrentThread @384 + GetCurrentThreadId @385 + GetCurrentThreadStackLimits @386 + GetCurrentUmsThread @387 + GetDateFormatA @388 + GetDateFormatEx @389 + GetDateFormatW @390 + GetDaylightFlag @391 + GetDefaultCommConfigA @392 + GetDefaultCommConfigW @393 + GetDefaultSortkeySize @394 PRIVATE + GetDevicePowerState @395 + GetDiskFreeSpaceA @396 + GetDiskFreeSpaceExA @397 + GetDiskFreeSpaceExW @398 + GetDiskFreeSpaceW @399 + GetDllDirectoryA @400 + GetDllDirectoryW @401 + GetDriveTypeA @402 + GetDriveTypeW @403 + GetDynamicTimeZoneInformation @404 + GetDynamicTimeZoneInformationEffectiveYears @405 + GetEnabledXStateFeatures @406 + GetEnvironmentStrings=GetEnvironmentStringsA @407 + GetEnvironmentStringsA @408 + GetEnvironmentStringsW @409 + GetEnvironmentVariableA @410 + GetEnvironmentVariableW @411 + GetErrorMode @412 + GetExitCodeProcess @413 + GetExitCodeThread @414 + GetExpandedNameA @415 + GetExpandedNameW @416 + GetFileAttributesA @417 + GetFileAttributesExA @418 + GetFileAttributesExW @419 + GetFileAttributesW @420 + GetFileInformationByHandle @421 + GetFileInformationByHandleEx @422 + GetFileMUIInfo @423 + GetFileMUIPath @424 + GetFileSize @425 + GetFileSizeEx @426 + GetFileTime @427 + GetFileType @428 + GetFinalPathNameByHandleA @429 + GetFinalPathNameByHandleW @430 + GetFirmwareEnvironmentVariableA @431 + GetFirmwareEnvironmentVariableW @432 + GetFullPathNameA @433 + GetFullPathNameW @434 + GetGeoInfoA @435 + GetGeoInfoW @436 + GetHandleContext @437 + GetHandleInformation @438 + GetLargePageMinimum @439 + GetLargestConsoleWindowSize @440 + GetLastError @441 + GetLinguistLangSize @442 PRIVATE + GetLocalTime @443 + GetLocaleInfoA @444 + GetLocaleInfoW @445 + GetLocaleInfoEx @446 + GetLogicalDriveStringsA @447 + GetLogicalDriveStringsW @448 + GetLogicalDrives @449 + GetLogicalProcessorInformation @450 + GetLogicalProcessorInformationEx @451 + GetLongPathNameA @452 + GetLongPathNameW @453 + GetMailslotInfo @454 + GetMaximumProcessorCount @455 + GetMaximumProcessorGroupCount @456 + GetModuleFileNameA @457 + GetModuleFileNameW @458 + GetModuleHandleA @459 + GetModuleHandleExA @460 + GetModuleHandleExW @461 + GetModuleHandleW @462 + GetNamedPipeClientProcessId @463 + GetNamedPipeClientSessionId @464 + GetNamedPipeHandleStateA @465 + GetNamedPipeHandleStateW @466 + GetNamedPipeInfo @467 + GetNamedPipeServerProcessId @468 + GetNamedPipeServerSessionId @469 + GetNativeSystemInfo @470 + GetNextUmsListItem @471 + GetNextVDMCommand @472 PRIVATE + GetNlsSectionName @473 PRIVATE + GetNumaAvailableMemoryNode @474 + GetNumaHighestNodeNumber @475 + GetNumaNodeProcessorMask @476 + GetNumaNodeProcessorMaskEx @477 + GetNumaProcessorNode @478 + GetNumberFormatA @479 + GetNumberFormatEx @480 + GetNumberFormatW @481 + GetNumberOfConsoleFonts @482 + GetNumberOfConsoleInputEvents @483 + GetNumberOfConsoleMouseButtons @484 + GetOEMCP @485 + GetOverlappedResult @486 + GetUserPreferredUILanguages @487 + GetPackageFullName @488 + GetPhysicallyInstalledSystemMemory @489 + GetPriorityClass @490 + GetPrivateProfileIntA @491 + GetPrivateProfileIntW @492 + GetPrivateProfileSectionA @493 + GetPrivateProfileSectionNamesA @494 + GetPrivateProfileSectionNamesW @495 + GetPrivateProfileSectionW @496 + GetPrivateProfileStringA @497 + GetPrivateProfileStringW @498 + GetPrivateProfileStructA @499 + GetPrivateProfileStructW @500 + GetProcAddress @501 + GetProcessAffinityMask @502 + GetProcessDEPPolicy @503 + GetProcessFlags @504 + GetProcessHandleCount @505 + GetProcessHeap @506 + GetProcessHeaps @507 + GetProcessId @508 + GetProcessIdOfThread @509 + GetProcessIoCounters @510 + GetProcessMitigationPolicy @511 + GetProcessPriorityBoost @512 + GetProcessShutdownParameters @513 + GetProcessTimes @514 + GetProcessVersion @515 + GetProcessWorkingSetSize @516 + GetProcessWorkingSetSizeEx @517 + GetProductInfo @518 + GetProductName @519 PRIVATE + GetProfileIntA @520 + GetProfileIntW @521 + GetProfileSectionA @522 + GetProfileSectionW @523 + GetProfileStringA @524 + GetProfileStringW @525 + GetQueuedCompletionStatus @526 + GetQueuedCompletionStatusEx @527 + GetShortPathNameA @528 + GetShortPathNameW @529 + GetStartupInfoA @530 + GetStartupInfoW @531 + GetStdHandle @532 + GetStringTypeA @533 + GetStringTypeExA @534 + GetStringTypeExW @535 + GetStringTypeW @536 + GetSystemFileCacheSize @537 + GetSystemDefaultLCID @538 + GetSystemDefaultLangID @539 + GetSystemDefaultLocaleName @540 + GetSystemDefaultUILanguage @541 + GetSystemDEPPolicy @542 + GetSystemDirectoryA @543 + GetSystemDirectoryW @544 + GetSystemFirmwareTable @545 + GetSystemInfo @546 + GetSystemPowerStatus @547 + GetSystemPreferredUILanguages @548 + GetSystemRegistryQuota @549 + GetSystemTime @550 + GetSystemTimeAdjustment @551 + GetSystemTimeAsFileTime @552 + GetSystemTimePreciseAsFileTime @553 + GetSystemTimes @554 + GetSystemWindowsDirectoryA @555 + GetSystemWindowsDirectoryW @556 + GetSystemWow64DirectoryA @557 + GetSystemWow64DirectoryW @558 + GetTapeParameters @559 + GetTapePosition @560 + GetTapeStatus @561 + GetTempFileNameA @562 + GetTempFileNameW @563 + GetTempPathA @564 + GetTempPathW @565 + GetThreadContext @566 + GetThreadErrorMode @567 + GetThreadGroupAffinity @568 + GetThreadId @569 + GetThreadIOPendingFlag @570 + GetThreadLocale @571 + GetThreadPreferredUILanguages @572 + GetThreadPriority @573 + GetThreadPriorityBoost @574 + GetThreadSelectorEntry @575 + GetThreadTimes @576 + GetTickCount @577 + GetTickCount64 @578 + GetTimeFormatA @579 + GetTimeFormatEx @580 + GetTimeFormatW @581 + GetTimeZoneInformation @582 + GetTimeZoneInformationForYear @583 + GetThreadUILanguage @584 + GetUmsCompletionListEvent @585 + GetUserDefaultLCID @586 + GetUserDefaultLangID @587 + GetUserDefaultLocaleName @588 + GetUserDefaultUILanguage @589 + GetUserGeoID @590 + GetVDMCurrentDirectories @591 PRIVATE + GetVersion @592 + GetVersionExA @593 + GetVersionExW @594 + GetVolumeInformationA @595 + GetVolumeInformationByHandleW @596 + GetVolumeInformationW @597 + GetVolumeNameForVolumeMountPointA @598 + GetVolumeNameForVolumeMountPointW @599 + GetVolumePathNameA @600 + GetVolumePathNameW @601 + GetVolumePathNamesForVolumeNameA @602 + GetVolumePathNamesForVolumeNameW @603 + GetWindowsDirectoryA @604 + GetWindowsDirectoryW @605 + GetWriteWatch @606 + GlobalAddAtomA @607 + GlobalAddAtomW @608 + GlobalAlloc @609 + GlobalCompact @610 + GlobalDeleteAtom @611 + GlobalFindAtomA @612 + GlobalFindAtomW @613 + GlobalFix @614 + GlobalFlags @615 + GlobalFree @616 + GlobalGetAtomNameA @617 + GlobalGetAtomNameW @618 + GlobalHandle @619 + GlobalLock @620 + GlobalMemoryStatus @621 + GlobalMemoryStatusEx @622 + GlobalReAlloc @623 + GlobalSize @624 + GlobalUnWire @625 + GlobalUnfix @626 + GlobalUnlock @627 + GlobalWire @628 + Heap32First @629 PRIVATE + Heap32ListFirst @630 + Heap32ListNext @631 PRIVATE + Heap32Next @632 PRIVATE + HeapAlloc=ntdll.RtlAllocateHeap @633 + HeapCompact @634 + HeapCreate @635 + HeapCreateTagsW @636 PRIVATE + HeapDestroy @637 + HeapExtend @638 PRIVATE + HeapFree=ntdll.RtlFreeHeap @639 + HeapLock @640 + HeapQueryInformation @641 + HeapQueryTagW @642 PRIVATE + HeapReAlloc=ntdll.RtlReAllocateHeap @643 + HeapSetFlags @644 PRIVATE + HeapSetInformation @645 + HeapSize=ntdll.RtlSizeHeap @646 + HeapSummary @647 PRIVATE + HeapUnlock @648 + HeapUsage @649 PRIVATE + HeapValidate @650 + HeapWalk @651 + IdnToAscii @652 + IdnToNameprepUnicode @653 + IdnToUnicode @654 + InitAtomTable @655 + InitOnceBeginInitialize @656 + InitOnceComplete @657 + InitOnceExecuteOnce @658 + InitOnceInitialize=ntdll.RtlRunOnceInitialize @659 + InitializeConditionVariable=ntdll.RtlInitializeConditionVariable @660 + InitializeCriticalSection @661 + InitializeCriticalSectionAndSpinCount @662 + InitializeCriticalSectionEx @663 + InitializeProcThreadAttributeList @664 + InitializeSListHead=ntdll.RtlInitializeSListHead @665 + InitializeSRWLock=ntdll.RtlInitializeSRWLock @666 + InterlockedFlushSList=ntdll.RtlInterlockedFlushSList @667 + InterlockedPopEntrySList=ntdll.RtlInterlockedPopEntrySList @668 + InterlockedPushEntrySList=ntdll.RtlInterlockedPushEntrySList @669 + InterlockedPushListSList=ntdll.RtlInterlockedPushListSList @670 + InterlockedPushListSListEx=ntdll.RtlInterlockedPushListSListEx @671 + InvalidateConsoleDIBits @672 PRIVATE + InvalidateNLSCache @673 + IsBadCodePtr @674 + IsBadHugeReadPtr @675 + IsBadHugeWritePtr @676 + IsBadReadPtr @677 + IsBadStringPtrA @678 + IsBadStringPtrW @679 + IsBadWritePtr @680 + IsDBCSLeadByte @681 + IsDBCSLeadByteEx @682 + IsDebuggerPresent @683 + IsNormalizedString @684 + IsProcessInJob @685 + IsProcessorFeaturePresent @686 + IsSystemResumeAutomatic @687 + IsThreadAFiber @688 + IsThreadpoolTimerSet=ntdll.TpIsTimerSet @689 + IsValidCodePage @690 + IsValidLanguageGroup @691 + IsValidLocale @692 + IsValidLocaleName @693 + IsWow64Process @694 + K32EmptyWorkingSet @695 + K32EnumDeviceDrivers @696 + K32EnumPageFilesA @697 + K32EnumPageFilesW @698 + K32EnumProcessModules @699 + K32EnumProcessModulesEx @700 + K32EnumProcesses @701 + K32GetDeviceDriverBaseNameA @702 + K32GetDeviceDriverBaseNameW @703 + K32GetDeviceDriverFileNameA @704 + K32GetDeviceDriverFileNameW @705 + K32GetMappedFileNameA @706 + K32GetMappedFileNameW @707 + K32GetModuleBaseNameA @708 + K32GetModuleBaseNameW @709 + K32GetModuleFileNameExA @710 + K32GetModuleFileNameExW @711 + K32GetModuleInformation @712 + K32GetPerformanceInfo @713 + K32GetProcessImageFileNameA @714 + K32GetProcessImageFileNameW @715 + K32GetProcessMemoryInfo @716 + K32GetWsChanges @717 + K32InitializeProcessForWsWatch @718 + K32QueryWorkingSet @719 + K32QueryWorkingSetEx @720 + LCIDToLocaleName @721 + LCMapStringA @722 + LCMapStringEx @723 + LCMapStringW @724 + LZClose @725 + LZCopy @726 + LZDone @727 + LZInit @728 + LZOpenFileA @729 + LZOpenFileW @730 + LZRead @731 + LZSeek @732 + LZStart @733 + LeaveCriticalSection=ntdll.RtlLeaveCriticalSection @734 + LeaveCriticalSectionWhenCallbackReturns=ntdll.TpCallbackLeaveCriticalSectionOnCompletion @735 + LoadLibraryA @736 + LoadLibraryExA @737 + LoadLibraryExW @738 + LoadLibraryW @739 + LoadModule @740 + LoadResource @741 + LocalAlloc @742 + LocalCompact @743 + LocalFileTimeToFileTime @744 + LocalFlags @745 + LocalFree @746 + LocalHandle @747 + LocalLock @748 + LocalReAlloc @749 + LocalShrink @750 + LocalSize @751 + LocalUnlock @752 + LocaleNameToLCID @753 + LockFile @754 + LockFileEx @755 + LockResource @756 + MakeCriticalSectionGlobal @757 + MapViewOfFile @758 + MapViewOfFileEx @759 + Module32First @760 + Module32FirstW @761 + Module32Next @762 + Module32NextW @763 + MoveFileA @764 + MoveFileExA @765 + MoveFileExW @766 + MoveFileTransactedA @767 + MoveFileTransactedW @768 + MoveFileW @769 + MoveFileWithProgressA @770 + MoveFileWithProgressW @771 + MulDiv @772 + MultiByteToWideChar @773 + NeedCurrentDirectoryForExePathA @774 + NeedCurrentDirectoryForExePathW @775 + NormalizeString @776 + NotifyNLSUserCache @777 PRIVATE + OpenConsoleW @778 + OpenDataFile @779 PRIVATE + OpenEventA @780 + OpenEventW @781 + OpenFile @782 + OpenFileById @783 + OpenFileMappingA @784 + OpenFileMappingW @785 + OpenJobObjectA @786 + OpenJobObjectW @787 + OpenMutexA @788 + OpenMutexW @789 + OpenProcess @790 + OpenProfileUserMapping @791 + OpenSemaphoreA @792 + OpenSemaphoreW @793 + OpenThread @794 + OpenWaitableTimerA @795 + OpenWaitableTimerW @796 + OutputDebugStringA @797 + OutputDebugStringW @798 + PeekConsoleInputA @799 + PeekConsoleInputW @800 + PeekNamedPipe @801 + PostQueuedCompletionStatus @802 + PowerClearRequest @803 + PowerCreateRequest @804 + PowerSetRequest @805 + PrepareTape @806 + PrivCopyFileExW @807 PRIVATE + PrivMoveFileIdentityW @808 PRIVATE + Process32First @809 + Process32FirstW @810 + Process32Next @811 + Process32NextW @812 + ProcessIdToSessionId @813 + PulseEvent @814 + PurgeComm @815 + QueryActCtxSettingsW @816 + QueryActCtxW @817 + QueryDepthSList=ntdll.RtlQueryDepthSList @818 + QueryDosDeviceA @819 + QueryDosDeviceW @820 + QueryFullProcessImageNameA @821 + QueryFullProcessImageNameW @822 + QueryInformationJobObject @823 + QueryMemoryResourceNotification @824 + QueryNumberOfEventLogRecords @825 PRIVATE + QueryOldestEventLogRecord @826 PRIVATE + QueryPerformanceCounter @827 + QueryPerformanceFrequency @828 + QueryProcessCycleTime @829 + QueryThreadCycleTime @830 + QueryUmsThreadInformation @831 + QueryUnbiasedInterruptTime @832 + QueryWin31IniFilesMappedToRegistry @833 PRIVATE + QueueUserAPC @834 + QueueUserWorkItem @835 + RaiseException @836 + ReadConsoleA @837 + ReadConsoleInputA @838 + ReadConsoleInputExA @839 PRIVATE + ReadConsoleInputExW @840 PRIVATE + ReadConsoleInputW @841 + ReadConsoleOutputA @842 + ReadConsoleOutputAttribute @843 + ReadConsoleOutputCharacterA @844 + ReadConsoleOutputCharacterW @845 + ReadConsoleOutputW @846 + ReadConsoleW @847 + ReadDirectoryChangesW @848 + ReadFile @849 + ReadFileEx @850 + ReadFileScatter @851 + ReadProcessMemory @852 + RegCloseKey=advapi32.RegCloseKey @853 PRIVATE + RegCreateKeyExA=advapi32.RegCreateKeyExA @854 PRIVATE + RegCreateKeyExW=advapi32.RegCreateKeyExW @855 PRIVATE + RegDeleteKeyExA=advapi32.RegDeleteKeyExA @856 PRIVATE + RegDeleteKeyExW=advapi32.RegDeleteKeyExW @857 PRIVATE + RegDeleteTreeA=advapi32.RegDeleteTreeA @858 PRIVATE + RegDeleteTreeW=advapi32.RegDeleteTreeW @859 PRIVATE + RegDeleteValueA=advapi32.RegDeleteValueA @860 PRIVATE + RegDeleteValueW=advapi32.RegDeleteValueW @861 PRIVATE + RegEnumKeyExA=advapi32.RegEnumKeyExA @862 PRIVATE + RegEnumKeyExW=advapi32.RegEnumKeyExW @863 PRIVATE + RegEnumValueA=advapi32.RegEnumValueA @864 PRIVATE + RegEnumValueW=advapi32.RegEnumValueW @865 PRIVATE + RegFlushKey=advapi32.RegFlushKey @866 PRIVATE + RegGetKeySecurity=advapi32.RegGetKeySecurity @867 PRIVATE + RegGetValueA=advapi32.RegGetValueA @868 PRIVATE + RegGetValueW=advapi32.RegGetValueW @869 PRIVATE + RegLoadKeyA=advapi32.RegLoadKeyA @870 PRIVATE + RegLoadKeyW=advapi32.RegLoadKeyW @871 PRIVATE + RegLoadMUIStringA=advapi32.RegLoadMUIStringA @872 PRIVATE + RegLoadMUIStringW=advapi32.RegLoadMUIStringW @873 PRIVATE + RegNotifyChangeKeyValue=advapi32.RegNotifyChangeKeyValue @874 PRIVATE + RegOpenCurrentUser=advapi32.RegOpenCurrentUser @875 PRIVATE + RegOpenKeyExA=advapi32.RegOpenKeyExA @876 PRIVATE + RegOpenKeyExW=advapi32.RegOpenKeyExW @877 PRIVATE + RegOpenUserClassesRoot=advapi32.RegOpenUserClassesRoot @878 PRIVATE + RegQueryInfoKeyA=advapi32.RegQueryInfoKeyA @879 PRIVATE + RegQueryInfoKeyW=advapi32.RegQueryInfoKeyW @880 PRIVATE + RegQueryValueExA=advapi32.RegQueryValueExA @881 PRIVATE + RegQueryValueExW=advapi32.RegQueryValueExW @882 PRIVATE + RegRestoreKeyA=advapi32.RegRestoreKeyA @883 PRIVATE + RegRestoreKeyW=advapi32.RegRestoreKeyW @884 PRIVATE + RegSetKeySecurity=advapi32.RegSetKeySecurity @885 PRIVATE + RegSetValueExA=advapi32.RegSetValueExA @886 PRIVATE + RegSetValueExW=advapi32.RegSetValueExW @887 PRIVATE + RegUnLoadKeyA=advapi32.RegUnLoadKeyA @888 PRIVATE + RegUnLoadKeyW=advapi32.RegUnLoadKeyW @889 PRIVATE + RegisterApplicationRecoveryCallback @890 + RegisterApplicationRestart @891 + RegisterConsoleIME @892 PRIVATE + RegisterConsoleOS2 @893 PRIVATE + RegisterConsoleVDM @894 PRIVATE + RegisterServiceProcess @895 + RegisterSysMsgHandler @896 PRIVATE + RegisterWaitForInputIdle @897 PRIVATE + RegisterWaitForSingleObject @898 + RegisterWaitForSingleObjectEx @899 + RegisterWowBaseHandlers @900 PRIVATE + RegisterWowExec @901 PRIVATE + ReinitializeCriticalSection @902 + ReleaseActCtx @903 + ReleaseMutex @904 + ReleaseMutexWhenCallbackReturns=ntdll.TpCallbackReleaseMutexOnCompletion @905 + ReleaseSemaphore @906 + ReleaseSemaphoreWhenCallbackReturns=ntdll.TpCallbackReleaseSemaphoreOnCompletion @907 + ReleaseSRWLockExclusive=ntdll.RtlReleaseSRWLockExclusive @908 + ReleaseSRWLockShared=ntdll.RtlReleaseSRWLockShared @909 + RemoveDirectoryA @910 + RemoveDirectoryW @911 + RemoveVectoredContinueHandler=ntdll.RtlRemoveVectoredContinueHandler @912 + RemoveVectoredExceptionHandler=ntdll.RtlRemoveVectoredExceptionHandler @913 + ReOpenFile @914 + ReplaceFile=ReplaceFileW @915 + ReplaceFileA @916 + ReplaceFileW @917 + RemoveDllDirectory @918 + RequestDeviceWakeup @919 + RequestWakeupLatency @920 + ResetEvent @921 + ResetWriteWatch @922 + ResolveDelayLoadedAPI=ntdll.LdrResolveDelayLoadedAPI @923 + ResolveLocaleName @924 + RestoreLastError=ntdll.RtlRestoreLastWin32Error @925 + ResumeThread @926 + RtlAddFunctionTable=ntdll.RtlAddFunctionTable @927 + RtlCaptureContext=ntdll.RtlCaptureContext @928 + RtlCaptureStackBackTrace=ntdll.RtlCaptureStackBackTrace @929 + RtlCompareMemory=ntdll.RtlCompareMemory @930 + RtlCopyMemory=ntdll.RtlCopyMemory @931 + RtlDeleteFunctionTable=ntdll.RtlDeleteFunctionTable @932 + RtlFillMemory=ntdll.RtlFillMemory @933 + RtlInstallFunctionTableCallback=ntdll.RtlInstallFunctionTableCallback @934 + RtlLookupFunctionEntry=ntdll.RtlLookupFunctionEntry @935 + RtlMoveMemory=ntdll.RtlMoveMemory @936 + RtlPcToFileHeader=ntdll.RtlPcToFileHeader @937 + RtlRestoreContext=ntdll.RtlRestoreContext @938 + RtlUnwind=ntdll.RtlUnwind @939 + RtlUnwindEx=ntdll.RtlUnwindEx @940 + RtlVirtualUnwind=ntdll.RtlVirtualUnwind @941 + RtlZeroMemory=ntdll.RtlZeroMemory @942 + ScrollConsoleScreenBufferA @943 + ScrollConsoleScreenBufferW @944 + SearchPathA @945 + SearchPathW @946 + SetCPGlobal @947 + SetCalendarInfoA @948 + SetCalendarInfoW @949 + SetCommBreak @950 + SetCommConfig @951 + SetCommMask @952 + SetCommState @953 + SetCommTimeouts @954 + SetComputerNameA @955 + SetComputerNameExA @956 + SetComputerNameExW @957 + SetComputerNameW @958 + SetConsoleActiveScreenBuffer @959 + SetConsoleCP @960 + SetConsoleCommandHistoryMode @961 PRIVATE + SetConsoleCtrlHandler @962 + SetConsoleCursor @963 PRIVATE + SetConsoleCursorInfo @964 + SetConsoleCursorMode @965 PRIVATE + SetConsoleCursorPosition @966 + SetConsoleDisplayMode @967 + SetConsoleFont @968 + SetConsoleHardwareState @969 PRIVATE + SetConsoleIcon @970 + SetConsoleInputExeNameA @971 + SetConsoleInputExeNameW @972 + SetConsoleKeyShortcuts @973 + SetConsoleLocalEUDC @974 PRIVATE + SetConsoleMaximumWindowSize @975 PRIVATE + SetConsoleMenuClose @976 PRIVATE + SetConsoleMode @977 + SetConsoleNlsMode @978 PRIVATE + SetConsoleNumberOfCommandsA @979 PRIVATE + SetConsoleNumberOfCommandsW @980 PRIVATE + SetConsoleOS2OemFormat @981 PRIVATE + SetConsoleOutputCP @982 + SetConsolePalette @983 PRIVATE + SetConsoleScreenBufferInfoEx @984 + SetConsoleScreenBufferSize @985 + SetConsoleTextAttribute @986 + SetConsoleTitleA @987 + SetConsoleTitleW @988 + SetConsoleWindowInfo @989 + SetCriticalSectionSpinCount=ntdll.RtlSetCriticalSectionSpinCount @990 + SetCurrentConsoleFontEx @991 + SetCurrentDirectoryA @992 + SetCurrentDirectoryW @993 + SetDaylightFlag @994 PRIVATE + SetDefaultCommConfigA @995 + SetDefaultCommConfigW @996 + SetDefaultDllDirectories @997 + SetDllDirectoryA @998 + SetDllDirectoryW @999 + SetEndOfFile @1000 + SetEnvironmentVariableA @1001 + SetEnvironmentVariableW @1002 + SetErrorMode @1003 + SetEvent @1004 + SetEventWhenCallbackReturns=ntdll.TpCallbackSetEventOnCompletion @1005 + SetFileApisToANSI @1006 + SetFileApisToOEM @1007 + SetFileAttributesA @1008 + SetFileAttributesW @1009 + SetFileCompletionNotificationModes @1010 + SetFileInformationByHandle @1011 + SetFilePointer @1012 + SetFilePointerEx @1013 + SetFileTime @1014 + SetFileValidData @1015 + SetHandleContext @1016 + SetHandleCount @1017 + SetHandleInformation @1018 + SetInformationJobObject @1019 + SetLastConsoleEventActive @1020 PRIVATE + SetLastError @1021 + SetLocalTime @1022 + SetLocaleInfoA @1023 + SetLocaleInfoW @1024 + SetMailslotInfo @1025 + SetMessageWaitingIndicator @1026 PRIVATE + SetNamedPipeHandleState @1027 + SetPriorityClass @1028 + SetProcessAffinityMask @1029 + SetProcessAffinityUpdateMode @1030 + SetProcessDEPPolicy @1031 + SetProcessMitigationPolicy @1032 + SetProcessPriorityBoost @1033 + SetProcessShutdownParameters @1034 + SetProcessWorkingSetSize @1035 + SetProcessWorkingSetSizeEx @1036 + SetSearchPathMode @1037 + SetStdHandle @1038 + SetSystemFileCacheSize @1039 + SetSystemPowerState @1040 + SetSystemTime @1041 + SetSystemTimeAdjustment @1042 + SetTapeParameters @1043 + SetTapePosition @1044 + SetTermsrvAppInstallMode @1045 + SetThreadAffinityMask @1046 + SetThreadContext @1047 + SetThreadErrorMode @1048 + SetThreadExecutionState @1049 + SetThreadGroupAffinity @1050 + SetThreadIdealProcessor @1051 + SetThreadIdealProcessorEx @1052 + SetThreadLocale @1053 + SetThreadPreferredUILanguages @1054 + SetThreadPriority @1055 + SetThreadPriorityBoost @1056 + SetThreadStackGuarantee @1057 + SetThreadUILanguage @1058 + SetThreadpoolThreadMaximum=ntdll.TpSetPoolMaxThreads @1059 + SetThreadpoolThreadMinimum=ntdll.TpSetPoolMinThreads @1060 + SetThreadpoolTimer @1061 + SetThreadpoolWait @1062 + SetTimeZoneInformation @1063 + SetTimerQueueTimer @1064 PRIVATE + SetUmsThreadInformation @1065 + SetUnhandledExceptionFilter @1066 + SetUserGeoID @1067 + SetVDMCurrentDirectories @1068 PRIVATE + SetVolumeLabelA @1069 + SetVolumeLabelW @1070 + SetVolumeMountPointA @1071 + SetVolumeMountPointW @1072 + SetWaitableTimer @1073 + SetWaitableTimerEx @1074 + SetupComm @1075 + ShowConsoleCursor @1076 PRIVATE + SignalObjectAndWait @1077 + SizeofResource @1078 + Sleep @1079 + SleepConditionVariableCS @1080 + SleepConditionVariableSRW @1081 + SleepEx @1082 + SubmitThreadpoolWork=ntdll.TpPostWork @1083 + SuspendThread @1084 + SwitchToFiber @1085 + SwitchToThread @1086 + SystemTimeToFileTime @1087 + SystemTimeToTzSpecificLocalTime @1088 + TerminateJobObject @1089 + TerminateProcess @1090 + TerminateThread @1091 + TermsrvAppInstallMode @1092 + Thread32First @1093 + Thread32Next @1094 + TlsAlloc @1095 + TlsAllocInternal=TlsAlloc @1096 + TlsFree @1097 + TlsFreeInternal=TlsFree @1098 + TlsGetValue @1099 + TlsSetValue @1100 + Toolhelp32ReadProcessMemory @1101 + TransactNamedPipe @1102 + TransmitCommChar @1103 + TrimVirtualBuffer @1104 PRIVATE + TryAcquireSRWLockExclusive=ntdll.RtlTryAcquireSRWLockExclusive @1105 + TryAcquireSRWLockShared=ntdll.RtlTryAcquireSRWLockShared @1106 + TryEnterCriticalSection=ntdll.RtlTryEnterCriticalSection @1107 + TrySubmitThreadpoolCallback @1108 + TzSpecificLocalTimeToSystemTime @1109 + UmsThreadYield @1110 + UnhandledExceptionFilter @1111 + UninitializeCriticalSection @1112 + UnlockFile @1113 + UnlockFileEx @1114 + UnmapViewOfFile @1115 + UnregisterApplicationRestart @1116 + UnregisterWait @1117 + UnregisterWaitEx @1118 + UpdateProcThreadAttribute @1119 + UpdateResourceA @1120 + UpdateResourceW @1121 + VDMConsoleOperation @1122 PRIVATE + VDMOperationStarted @1123 PRIVATE + ValidateLCType @1124 PRIVATE + ValidateLocale @1125 PRIVATE + VerLanguageNameA @1126 + VerLanguageNameW @1127 + VerSetConditionMask=ntdll.VerSetConditionMask @1128 + VerifyConsoleIoHandle @1129 + VerifyVersionInfoA @1130 + VerifyVersionInfoW @1131 + VirtualAlloc @1132 + VirtualAllocEx @1133 + VirtualBufferExceptionHandler @1134 PRIVATE + VirtualFree @1135 + VirtualFreeEx @1136 + VirtualLock @1137 + VirtualProtect @1138 + VirtualProtectEx @1139 + VirtualQuery @1140 + VirtualQueryEx @1141 + VirtualUnlock @1142 + WTSGetActiveConsoleSessionId @1143 + WaitCommEvent @1144 + WaitForDebugEvent @1145 + WaitForMultipleObjects @1146 + WaitForMultipleObjectsEx @1147 + WaitForSingleObject @1148 + WaitForSingleObjectEx @1149 + WaitForThreadpoolTimerCallbacks=ntdll.TpWaitForTimer @1150 + WaitForThreadpoolWaitCallbacks=ntdll.TpWaitForWait @1151 + WaitForThreadpoolWorkCallbacks=ntdll.TpWaitForWork @1152 + WaitNamedPipeA @1153 + WaitNamedPipeW @1154 + WakeAllConditionVariable=ntdll.RtlWakeAllConditionVariable @1155 + WakeConditionVariable=ntdll.RtlWakeConditionVariable @1156 + WerRegisterFile @1157 + WerRegisterMemoryBlock @1158 + WerRegisterRuntimeExceptionModule @1159 + WerSetFlags @1160 + WerUnregisterMemoryBlock @1161 + WideCharToMultiByte @1162 + WinExec @1163 + Wow64EnableWow64FsRedirection @1164 + Wow64DisableWow64FsRedirection @1165 + Wow64GetThreadContext @1166 + Wow64RevertWow64FsRedirection @1167 + Wow64SetThreadContext @1168 + WriteConsoleA @1169 + WriteConsoleInputA @1170 + WriteConsoleInputVDMA @1171 PRIVATE + WriteConsoleInputVDMW @1172 PRIVATE + WriteConsoleInputW @1173 + WriteConsoleOutputA @1174 + WriteConsoleOutputAttribute @1175 + WriteConsoleOutputCharacterA @1176 + WriteConsoleOutputCharacterW @1177 + WriteConsoleOutputW @1178 + WriteConsoleW @1179 + WriteFile @1180 + WriteFileEx @1181 + WriteFileGather @1182 + WritePrivateProfileSectionA @1183 + WritePrivateProfileSectionW @1184 + WritePrivateProfileStringA @1185 + WritePrivateProfileStringW @1186 + WritePrivateProfileStructA @1187 + WritePrivateProfileStructW @1188 + WriteProcessMemory @1189 + WriteProfileSectionA @1190 + WriteProfileSectionW @1191 + WriteProfileStringA @1192 + WriteProfileStringW @1193 + WriteTapemark @1194 + ZombifyActCtx @1195 + __C_specific_handler=ntdll.__C_specific_handler @1196 PRIVATE + __chkstk=ntdll.__chkstk @1197 PRIVATE + _DebugOut @1198 PRIVATE + _DebugPrintf @1199 PRIVATE + _hread @1200 + _hwrite @1201 + _lclose @1202 + _lcreat @1203 + _llseek @1204 + _local_unwind=ntdll._local_unwind @1205 PRIVATE + _lopen @1206 + _lread @1207 + _lwrite @1208 + dprintf @1209 PRIVATE + lstrcat=lstrcatA @1210 + lstrcatA @1211 + lstrcatW @1212 + lstrcmp=lstrcmpA @1213 + lstrcmpA @1214 + lstrcmpW @1215 + lstrcmpi=lstrcmpiA @1216 + lstrcmpiA @1217 + lstrcmpiW @1218 + lstrcpy=lstrcpyA @1219 + lstrcpyA @1220 + lstrcpyW @1221 + lstrcpyn=lstrcpynA @1222 + lstrcpynA @1223 + lstrcpynW @1224 + lstrlen=lstrlenA @1225 + lstrlenA @1226 + lstrlenW @1227 + wine_get_unix_file_name @1228 + wine_get_dos_file_name @1229 + __wine_kernel_init @1230 diff --git a/lib64/wine/libloadperf.def b/lib64/wine/libloadperf.def new file mode 100644 index 0000000..ef33031 --- /dev/null +++ b/lib64/wine/libloadperf.def @@ -0,0 +1,19 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/loadperf/loadperf.spec; do not edit! + +LIBRARY loadperf.dll + +EXPORTS + BackupPerfRegistryToFileW @1 PRIVATE + InstallPerfDllA @2 + InstallPerfDllW @3 + LoadMofFromInstalledServiceA @4 PRIVATE + LoadMofFromInstalledServiceW @5 PRIVATE + LoadPerfCounterTextStringsA @6 + LoadPerfCounterTextStringsW @7 + RestorePerfRegistryFromFileW @8 PRIVATE + SetServiceAsTrustedA @9 PRIVATE + SetServiceAsTrustedW @10 PRIVATE + UnloadPerfCounterTextStringsA @11 + UnloadPerfCounterTextStringsW @12 + UpdatePerfNameFilesA @13 PRIVATE + UpdatePerfNameFilesW @14 PRIVATE diff --git a/lib64/wine/liblz32.def b/lib64/wine/liblz32.def new file mode 100644 index 0000000..a7b5ce5 --- /dev/null +++ b/lib64/wine/liblz32.def @@ -0,0 +1,17 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/lz32/lz32.spec; do not edit! + +LIBRARY lz32.dll + +EXPORTS + CopyLZFile=kernel32.CopyLZFile @1 + GetExpandedNameA=kernel32.GetExpandedNameA @2 + GetExpandedNameW=kernel32.GetExpandedNameW @3 + LZClose=kernel32.LZClose @4 + LZCopy=kernel32.LZCopy @5 + LZDone=kernel32.LZDone @6 + LZInit=kernel32.LZInit @7 + LZOpenFileA=kernel32.LZOpenFileA @8 + LZOpenFileW=kernel32.LZOpenFileW @9 + LZRead=kernel32.LZRead @10 + LZSeek=kernel32.LZSeek @11 + LZStart=kernel32.LZStart @12 diff --git a/lib64/wine/libmapi32.def b/lib64/wine/libmapi32.def new file mode 100644 index 0000000..0643ff1 --- /dev/null +++ b/lib64/wine/libmapi32.def @@ -0,0 +1,195 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/mapi32/mapi32.spec; do not edit! + +LIBRARY mapi32.dll + +EXPORTS + MAPILogonEx @10 + MAPILogonEx@20=MAPILogonEx @11 + MAPIAllocateBuffer @12 + MAPIAllocateBuffer@8=MAPIAllocateBuffer @13 + MAPIAllocateMore @14 + MAPIAllocateMore@12=MAPIAllocateMore @15 + MAPIFreeBuffer @16 + MAPIFreeBuffer@4=MAPIFreeBuffer @17 + MAPIAdminProfiles @18 + MAPIAdminProfiles@8=MAPIAdminProfiles @19 + MAPIInitialize @20 + MAPIInitialize@4=MAPIInitialize @21 + MAPIUninitialize @22 + MAPIUninitialize@0=MAPIUninitialize @23 + PRProviderInit @24 PRIVATE + LAUNCHWIZARD @25 PRIVATE + LaunchWizard@20 @26 PRIVATE + DllGetClassObject @27 PRIVATE + DllCanUnloadNow @28 PRIVATE + MAPIOpenFormMgr @29 PRIVATE + MAPIOpenFormMgr@8 @30 PRIVATE + MAPIOpenLocalFormContainer @31 + MAPIOpenLocalFormContainer@4=MAPIOpenLocalFormContainer @32 + ScInitMapiUtil@4=ScInitMapiUtil @33 + DeinitMapiUtil@0=DeinitMapiUtil @34 + ScGenerateMuid@4 @35 PRIVATE + HrAllocAdviseSink@12 @36 PRIVATE + WrapProgress@20=WrapProgress @41 + HrThisThreadAdviseSink@8=HrThisThreadAdviseSink @42 + ScBinFromHexBounded@12 @43 PRIVATE + FBinFromHex@8=FBinFromHex @44 + HexFromBin@12=HexFromBin @45 + BuildDisplayTable@40 @46 PRIVATE + SwapPlong@8=SwapPlong @47 + SwapPword@8=SwapPword @48 + MAPIInitIdle@4 @49 PRIVATE + MAPIDeinitIdle@0 @50 PRIVATE + InstallFilterHook@4 @51 PRIVATE + FtgRegisterIdleRoutine@20 @52 PRIVATE + EnableIdleRoutine@8 @53 PRIVATE + DeregisterIdleRoutine@4 @54 PRIVATE + ChangeIdleRoutine@28 @55 PRIVATE + MAPIGetDefaultMalloc@0=MAPIGetDefaultMalloc @59 + CreateIProp@24=CreateIProp @60 + CreateTable@36 @61 PRIVATE + MNLS_lstrlenW@4=MNLS_lstrlenW @62 + MNLS_lstrcmpW@8=MNLS_lstrcmpW @63 + MNLS_lstrcpyW@8=MNLS_lstrcpyW @64 + MNLS_CompareStringW@24=MNLS_CompareStringW @65 + MNLS_MultiByteToWideChar@24=kernel32.MultiByteToWideChar @66 + MNLS_WideCharToMultiByte@32=kernel32.WideCharToMultiByte @67 + MNLS_IsBadStringPtrW@8=kernel32.IsBadStringPtrW @68 + FEqualNames@8=FEqualNames @72 + WrapStoreEntryID@24 @73 PRIVATE + IsBadBoundedStringPtr@8=IsBadBoundedStringPtr @74 + HrQueryAllRows@24=HrQueryAllRows @75 + PropCopyMore@16=PropCopyMore @76 + UlPropSize@4=UlPropSize @77 + FPropContainsProp@12=FPropContainsProp @78 + FPropCompareProp@12=FPropCompareProp @79 + LPropCompareProp@8=LPropCompareProp @80 + HrAddColumns@16 @81 PRIVATE + HrAddColumnsEx@20 @82 PRIVATE + FtAddFt@16=MAPI32_FtAddFt @121 + FtAdcFt@20 @122 PRIVATE + FtSubFt@16=MAPI32_FtSubFt @123 + FtMulDw@12=MAPI32_FtMulDw @124 + FtMulDwDw@8=MAPI32_FtMulDwDw @125 + FtNegFt@8=MAPI32_FtNegFt @126 + FtDivFtBogus@20 @127 PRIVATE + UlAddRef@4=UlAddRef @128 + UlRelease@4=UlRelease @129 + SzFindCh@8=shlwapi.StrChrA @130 + SzFindLastCh@8=shlwapi.StrRChrA @131 + SzFindSz@8=shlwapi.StrStrA @132 + UFromSz@4=UFromSz @133 + HrGetOneProp@12=HrGetOneProp @135 + HrSetOneProp@8=HrSetOneProp @136 + FPropExists@8=FPropExists @137 + PpropFindProp@12=PpropFindProp @138 + FreePadrlist@4=FreePadrlist @139 + FreeProws@4=FreeProws @140 + HrSzFromEntryID@12 @141 PRIVATE + HrEntryIDFromSz@12 @142 PRIVATE + HrComposeEID@28 @143 PRIVATE + HrDecomposeEID@28 @144 PRIVATE + HrComposeMsgID@24 @145 PRIVATE + HrDecomposeMsgID@24 @146 PRIVATE + OpenStreamOnFile@24=OpenStreamOnFile @147 + OpenStreamOnFile @148 + OpenTnefStream@28 @149 PRIVATE + OpenTnefStream @150 PRIVATE + OpenTnefStreamEx@32 @151 PRIVATE + OpenTnefStreamEx @152 PRIVATE + GetTnefStreamCodepage@12 @153 PRIVATE + GetTnefStreamCodepage @154 PRIVATE + UlFromSzHex@4=UlFromSzHex @155 + UNKOBJ_ScAllocate@12 @156 PRIVATE + UNKOBJ_ScAllocateMore@16 @157 PRIVATE + UNKOBJ_Free@8 @158 PRIVATE + UNKOBJ_FreeRows@8 @159 PRIVATE + UNKOBJ_ScCOAllocate@12 @160 PRIVATE + UNKOBJ_ScCOReallocate@12 @161 PRIVATE + UNKOBJ_COFree@8 @162 PRIVATE + UNKOBJ_ScSzFromIdsAlloc@20 @163 PRIVATE + ScCountNotifications@12 @164 PRIVATE + ScCopyNotifications@16 @165 PRIVATE + ScRelocNotifications@20 @166 PRIVATE + ScCountProps@12=ScCountProps @170 + ScCopyProps@16=ScCopyProps @171 + ScRelocProps@20=ScRelocProps @172 + LpValFindProp@12=LpValFindProp @173 + ScDupPropset@16=ScDupPropset @174 + FBadRglpszA@8=FBadRglpszA @175 + FBadRglpszW@8=FBadRglpszW @176 + FBadRowSet@4=FBadRowSet @177 + FBadRglpNameID@8 @178 PRIVATE + FBadPropTag@4=FBadPropTag @179 + FBadRow@4=FBadRow @180 + FBadProp@4=FBadProp @181 + FBadColumnSet@4=FBadColumnSet @182 + RTFSync@12 @183 PRIVATE + RTFSync @184 PRIVATE + WrapCompressedRTFStream@12=WrapCompressedRTFStream @185 + WrapCompressedRTFStream @186 + __ValidateParameters@8 @187 PRIVATE + __CPPValidateParameters@8 @188 PRIVATE + FBadSortOrderSet@4 @189 PRIVATE + FBadEntryList@4=FBadEntryList @190 + FBadRestriction@4 @191 PRIVATE + ScUNCFromLocalPath@12 @192 PRIVATE + ScLocalPathFromUNC@12 @193 PRIVATE + HrIStorageFromStream@16 @194 PRIVATE + HrValidateIPMSubtree@20 @195 PRIVATE + OpenIMsgSession@12 @196 PRIVATE + CloseIMsgSession@4 @197 PRIVATE + OpenIMsgOnIStg@44 @198 PRIVATE + SetAttribIMsgOnIStg@16 @199 PRIVATE + GetAttribIMsgOnIStg@12 @200 PRIVATE + MapStorageSCode@4 @201 PRIVATE + ScMAPIXFromCMC @202 PRIVATE + ScMAPIXFromSMAPI @203 PRIVATE + EncodeID@12 @204 PRIVATE + FDecodeID@12 @205 PRIVATE + CchOfEncoding@4 @206 PRIVATE + CbOfEncoded@4=CbOfEncoded @207 + MAPISendDocuments @208 + MAPILogon @209 + MAPILogoff @210 + MAPISendMail @211 + MAPISaveMail @212 + MAPIReadMail @213 + MAPIFindNext @214 + MAPIDeleteMail @215 + MAPIAddress @217 + MAPIDetails @218 + MAPIResolveName @219 + BMAPISendMail @220 PRIVATE + BMAPISaveMail @221 PRIVATE + BMAPIReadMail @222 PRIVATE + BMAPIGetReadMail @223 PRIVATE + BMAPIFindNext @224 PRIVATE + BMAPIAddress @225 PRIVATE + BMAPIGetAddress @226 PRIVATE + BMAPIDetails @227 PRIVATE + BMAPIResolveName @228 PRIVATE + cmc_act_on @229 PRIVATE + cmc_free @230 PRIVATE + cmc_list @231 PRIVATE + cmc_logoff @232 PRIVATE + cmc_logon @233 PRIVATE + cmc_look_up @234 PRIVATE + cmc_query_configuration @235 + cmc_read @236 PRIVATE + cmc_send @237 PRIVATE + cmc_send_documents @238 PRIVATE + HrDispatchNotifications@4=HrDispatchNotifications @239 + HrValidateParameters@8 @241 PRIVATE + ScCreateConversationIndex@16 @244 PRIVATE + HrGetOmiProvidersFlags @246 PRIVATE + HrGetOmiProvidersFlags@8 @247 PRIVATE + HrSetOmiProvidersFlagsInvalid @248 PRIVATE + HrSetOmiProvidersFlagsInvalid@4 @249 PRIVATE + GetOutlookVersion @250 PRIVATE + GetOutlookVersion@0 @251 PRIVATE + FixMAPI @252 PRIVATE + FixMAPI@0 @253 PRIVATE + FGetComponentPath @254 + FGetComponentPath@20=FGetComponentPath @255 + MAPISendMailW @256 diff --git a/lib64/wine/libmf.def b/lib64/wine/libmf.def new file mode 100644 index 0000000..26464b5 --- /dev/null +++ b/lib64/wine/libmf.def @@ -0,0 +1,88 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/mf/mf.spec; do not edit! + +LIBRARY mf.dll + +EXPORTS + AppendPropVariant @1 PRIVATE + ConvertPropVariant @2 PRIVATE + CopyPropertyStore @3 PRIVATE + CreateNamedPropertyStore @4 PRIVATE + DllCanUnloadNow @5 PRIVATE + DllGetClassObject @6 PRIVATE + DllRegisterServer @7 PRIVATE + DllUnregisterServer @8 PRIVATE + ExtractPropVariant @9 PRIVATE + MFCreate3GPMediaSink @10 PRIVATE + MFCreateASFByteStreamPlugin @11 PRIVATE + MFCreateASFContentInfo @12 PRIVATE + MFCreateASFIndexer @13 PRIVATE + MFCreateASFIndexerByteStream @14 PRIVATE + MFCreateASFMediaSink @15 PRIVATE + MFCreateASFMediaSinkActivate @16 PRIVATE + MFCreateASFMultiplexer @17 PRIVATE + MFCreateASFProfile @18 PRIVATE + MFCreateASFProfileFromPresentationDescriptor @19 PRIVATE + MFCreateASFSplitter @20 PRIVATE + MFCreateASFStreamSelector @21 PRIVATE + MFCreateASFStreamingMediaSink @22 PRIVATE + MFCreateASFStreamingMediaSinkActivate @23 PRIVATE + MFCreateAggregateSource @24 PRIVATE + MFCreateAppSourceProxy @25 PRIVATE + MFCreateAudioRenderer @26 PRIVATE + MFCreateAudioRendererActivate @27 PRIVATE + MFCreateByteCacheFile @28 PRIVATE + MFCreateCacheManager @29 PRIVATE + MFCreateCredentialCache @30 PRIVATE + MFCreateDeviceSource @31 PRIVATE + MFCreateDeviceSourceActivate @32 PRIVATE + MFCreateDrmNetNDSchemePlugin @33 PRIVATE + MFCreateFileBlockMap @34 PRIVATE + MFCreateFileSchemePlugin @35 PRIVATE + MFCreateHttpSchemePlugin @36 PRIVATE + MFCreateLPCMByteStreamPlugin @37 PRIVATE + MFCreateMP3ByteStreamPlugin @38 PRIVATE + MFCreateMP3MediaSink @39 PRIVATE + MFCreateMPEG4MediaSink @40 PRIVATE + MFCreateMediaProcessor @41 PRIVATE + MFCreateMediaSession @42 + MFCreateNSCByteStreamPlugin @43 PRIVATE + MFCreateNetSchemePlugin @44 PRIVATE + MFCreatePMPHost @45 PRIVATE + MFCreatePMPMediaSession @46 PRIVATE + MFCreatePMPServer @47 PRIVATE + MFCreatePresentationClock @48 + MFCreatePresentationDescriptorFromASFProfile @49 PRIVATE + MFCreateProxyLocator @50 PRIVATE + MFCreateRemoteDesktopPlugin @51 PRIVATE + MFCreateSAMIByteStreamPlugin @52 PRIVATE + MFCreateSampleCopierMFT @53 PRIVATE + MFCreateSampleGrabberSinkActivate @54 PRIVATE + MFCreateSecureHttpSchemePlugin @55 PRIVATE + MFCreateSequencerSegmentOffset @56 PRIVATE + MFCreateSequencerSource @57 + MFCreateSequencerSourceRemoteStream @58 PRIVATE + MFCreateSimpleTypeHandler @59 PRIVATE + MFCreateSourceResolver=mfplat.MFCreateSourceResolver @60 + MFCreateStandardQualityManager @61 PRIVATE + MFCreateTopoLoader @62 + MFCreateTopology @63 + MFCreateTopologyNode @64 + MFCreateTranscodeProfile @65 PRIVATE + MFCreateTranscodeSinkActivate @66 PRIVATE + MFCreateTranscodeTopology @67 PRIVATE + MFCreateUrlmonSchemePlugin @68 PRIVATE + MFCreateVideoRenderer @69 PRIVATE + MFCreateVideoRendererActivate @70 PRIVATE + MFCreateWMAEncoderActivate @71 PRIVATE + MFCreateWMVEncoderActivate @72 PRIVATE + MFEnumDeviceSources @73 PRIVATE + MFGetMultipleServiceProviders @74 PRIVATE + MFGetService @75 + MFGetSupportedMimeTypes @76 + MFGetSupportedSchemes @77 PRIVATE + MFGetTopoNodeCurrentType @78 PRIVATE + MFReadSequencerSegmentOffset @79 PRIVATE + MFRequireProtectedEnvironment @80 PRIVATE + MFShutdownObject @81 + MFTranscodeGetAudioOutputAvailableTypes @82 PRIVATE + MergePropertyStore @83 PRIVATE diff --git a/lib64/wine/libmfplat.def b/lib64/wine/libmfplat.def new file mode 100644 index 0000000..ae68502 --- /dev/null +++ b/lib64/wine/libmfplat.def @@ -0,0 +1,166 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/mfplat/mfplat.spec; do not edit! + +LIBRARY mfplat.dll + +EXPORTS + FormatTagFromWfx @1 PRIVATE + MFCreateGuid @2 PRIVATE + MFGetIoPortHandle @3 PRIVATE + MFGetPlatformVersion @4 PRIVATE + MFGetRandomNumber @5 PRIVATE + MFIsFeatureEnabled @6 PRIVATE + MFIsQueueThread @7 PRIVATE + MFPlatformBigEndian @8 PRIVATE + MFPlatformLittleEndian @9 PRIVATE + ValidateWaveFormat @10 PRIVATE + CopyPropVariant @11 PRIVATE + CreatePropVariant @12 PRIVATE + CreatePropertyStore @13 PRIVATE + DestroyPropVariant @14 PRIVATE + GetAMSubtypeFromD3DFormat @15 PRIVATE + GetD3DFormatFromMFSubtype @16 PRIVATE + LFGetGlobalPool @17 PRIVATE + MFAddPeriodicCallback @18 + MFAllocateWorkQueue @19 + MFAllocateWorkQueueEx @20 + MFAppendCollection @21 PRIVATE + MFAverageTimePerFrameToFrameRate @22 PRIVATE + MFBeginCreateFile @23 PRIVATE + MFBeginGetHostByName @24 PRIVATE + MFBeginRegisterWorkQueueWithMMCSS @25 PRIVATE + MFBeginUnregisterWorkQueueWithMMCSS @26 PRIVATE + MFBlockThread @27 PRIVATE + MFCalculateBitmapImageSize @28 PRIVATE + MFCalculateImageSize @29 + MFCancelCreateFile @30 PRIVATE + MFCancelWorkItem @31 + MFCompareFullToPartialMediaType @32 + MFCompareSockaddrAddresses @33 PRIVATE + MFConvertColorInfoFromDXVA @34 PRIVATE + MFConvertColorInfoToDXVA @35 PRIVATE + MFConvertFromFP16Array @36 PRIVATE + MFConvertToFP16Array @37 PRIVATE + MFCopyImage @38 + MFCreateAMMediaTypeFromMFMediaType @39 PRIVATE + MFCreateAlignedMemoryBuffer @40 + MFCreateAsyncResult @41 + MFCreateAttributes @42 + MFCreateAudioMediaType @43 PRIVATE + MFCreateCollection @44 + MFCreateEventQueue @45 + MFCreateFile @46 + MFCreateLegacyMediaBufferOnMFMediaBuffer @47 PRIVATE + MFCreateMFByteStreamOnStream @48 + MFCreateMFByteStreamOnStreamEx @49 + MFCreateMFByteStreamWrapper @50 + MFCreateMFVideoFormatFromMFMediaType @51 PRIVATE + MFCreateMediaBufferWrapper @52 PRIVATE + MFCreateMediaEvent @53 + MFCreateMediaType @54 + MFCreateMediaTypeFromRepresentation @55 PRIVATE + MFCreateMemoryBuffer @56 + MFCreateMemoryStream @57 PRIVATE + MFCreatePathFromURL @58 PRIVATE + MFCreatePresentationDescriptor @59 + MFCreateSample @60 + MFCreateSocket @61 PRIVATE + MFCreateSocketListener @62 PRIVATE + MFCreateSourceResolver @63 + MFCreateStreamDescriptor @64 + MFCreateSystemTimeSource @65 + MFCreateSystemUnderlyingClock @66 PRIVATE + MFCreateTempFile @67 PRIVATE + MFCreateTransformActivate @68 PRIVATE + MFCreateURLFromPath @69 PRIVATE + MFCreateUdpSockets @70 PRIVATE + MFCreateVideoMediaType @71 PRIVATE + MFCreateVideoMediaTypeFromBitMapInfoHeader @72 PRIVATE + MFCreateVideoMediaTypeFromBitMapInfoHeaderEx @73 PRIVATE + MFCreateVideoMediaTypeFromSubtype @74 PRIVATE + MFCreateVideoMediaTypeFromVideoInfoHeader2 @75 PRIVATE + MFCreateVideoMediaTypeFromVideoInfoHeader @76 PRIVATE + MFCreateWaveFormatExFromMFMediaType @77 + MFDeserializeAttributesFromStream @78 PRIVATE + MFDeserializeEvent @79 PRIVATE + MFDeserializeMediaTypeFromStream @80 PRIVATE + MFDeserializePresentationDescriptor @81 PRIVATE + MFEndCreateFile @82 PRIVATE + MFEndGetHostByName @83 PRIVATE + MFEndRegisterWorkQueueWithMMCSS @84 PRIVATE + MFEndUnregisterWorkQueueWithMMCSS @85 PRIVATE + MFFrameRateToAverageTimePerFrame @86 PRIVATE + MFFreeAdaptersAddresses @87 PRIVATE + MFGetAdaptersAddresses @88 PRIVATE + MFGetAttributesAsBlob @89 + MFGetAttributesAsBlobSize @90 + MFGetConfigurationDWORD @91 PRIVATE + MFGetConfigurationPolicy @92 PRIVATE + MFGetConfigurationStore @93 PRIVATE + MFGetConfigurationString @94 PRIVATE + MFGetMFTMerit @95 PRIVATE + MFGetNumericNameFromSockaddr @96 PRIVATE + MFGetPlaneSize @97 PRIVATE + MFGetPlatform @98 PRIVATE + MFGetPluginControl @99 + MFGetPrivateWorkqueues @100 PRIVATE + MFGetSockaddrFromNumericName @101 PRIVATE + MFGetStrideForBitmapInfoHeader @102 PRIVATE + MFGetSystemTime @103 + MFGetTimerPeriodicity @104 + MFGetUncompressedVideoFormat @105 PRIVATE + MFGetWorkQueueMMCSSClass @106 PRIVATE + MFGetWorkQueueMMCSSTaskId @107 PRIVATE + MFHeapAlloc @108 + MFHeapFree @109 + MFInitAMMediaTypeFromMFMediaType @110 PRIVATE + MFInitAttributesFromBlob @111 + MFInitMediaTypeFromAMMediaType @112 PRIVATE + MFInitMediaTypeFromMFVideoFormat @113 PRIVATE + MFInitMediaTypeFromMPEG1VideoInfo @114 PRIVATE + MFInitMediaTypeFromMPEG2VideoInfo @115 PRIVATE + MFInitMediaTypeFromVideoInfoHeader2 @116 PRIVATE + MFInitMediaTypeFromVideoInfoHeader @117 PRIVATE + MFInitMediaTypeFromWaveFormatEx @118 PRIVATE + MFInitVideoFormat @119 PRIVATE + MFInitVideoFormat_RGB @120 PRIVATE + MFInvokeCallback @121 + MFJoinIoPort @122 PRIVATE + MFLockPlatform @123 + MFLockWorkQueue @124 + MFPutWaitingWorkItem @125 + MFPutWorkItem @126 + MFPutWorkItem2 @127 + MFPutWorkItemEx @128 + MFPutWorkItemEx2 @129 + MFRecordError @130 PRIVATE + MFRemovePeriodicCallback @131 + MFScheduleWorkItem @132 + MFScheduleWorkItemEx @133 + MFSerializeAttributesToStream @134 PRIVATE + MFSerializeEvent @135 PRIVATE + MFSerializeMediaTypeToStream @136 PRIVATE + MFSerializePresentationDescriptor @137 PRIVATE + MFSetSockaddrAny @138 PRIVATE + MFShutdown @139 + MFStartup @140 + MFStreamDescriptorProtectMediaType @141 PRIVATE + MFTEnum @142 + MFTEnumEx @143 + MFTGetInfo @144 PRIVATE + MFTRegister @145 + MFTRegisterLocal @146 + MFTRegisterLocalByCLSID @147 PRIVATE + MFTUnregister @148 + MFTUnregisterLocal @149 + MFTUnregisterLocalByCLSID @150 PRIVATE + MFTraceError @151 PRIVATE + MFTraceFuncEnter @152 PRIVATE + MFUnblockThread @153 PRIVATE + MFUnlockPlatform @154 + MFUnlockWorkQueue @155 + MFUnwrapMediaType @156 + MFValidateMediaTypeSize @157 PRIVATE + MFWrapMediaType @158 + MFllMulDiv @159 PRIVATE + PropVariantFromStream @160 PRIVATE + PropVariantToStream @161 PRIVATE diff --git a/lib64/wine/libmfreadwrite.def b/lib64/wine/libmfreadwrite.def new file mode 100644 index 0000000..ccf35df --- /dev/null +++ b/lib64/wine/libmfreadwrite.def @@ -0,0 +1,14 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/mfreadwrite/mfreadwrite.spec; do not edit! + +LIBRARY mfreadwrite.dll + +EXPORTS + DllCanUnloadNow @1 PRIVATE + DllGetClassObject @2 PRIVATE + DllRegisterServer @3 PRIVATE + DllUnregisterServer @4 PRIVATE + MFCreateSinkWriterFromMediaSink @5 + MFCreateSinkWriterFromURL @6 PRIVATE + MFCreateSourceReaderFromByteStream @7 + MFCreateSourceReaderFromMediaSource @8 + MFCreateSourceReaderFromURL @9 diff --git a/lib64/wine/libmfuuid.a b/lib64/wine/libmfuuid.a new file mode 100644 index 0000000..ca3e4b0 Binary files /dev/null and b/lib64/wine/libmfuuid.a differ diff --git a/lib64/wine/libmlang.def b/lib64/wine/libmlang.def new file mode 100644 index 0000000..4845aac --- /dev/null +++ b/lib64/wine/libmlang.def @@ -0,0 +1,19 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/mlang/mlang.spec; do not edit! + +LIBRARY mlang.dll + +EXPORTS + IsConvertINetStringAvailable @110 + ConvertINetString @111 + ConvertINetUnicodeToMultiByte @112 + ConvertINetMultiByteToUnicode @113 + ConvertINetReset @114 PRIVATE + LcidToRfc1766A @120 + LcidToRfc1766W @121 + Rfc1766ToLcidA @122 + Rfc1766ToLcidW @123 + DllCanUnloadNow @115 PRIVATE + DllGetClassObject @116 PRIVATE + DllRegisterServer @117 PRIVATE + DllUnregisterServer @118 PRIVATE + GetGlobalFontLinkObject @119 diff --git a/lib64/wine/libmpr.def b/lib64/wine/libmpr.def new file mode 100644 index 0000000..7617a9a --- /dev/null +++ b/lib64/wine/libmpr.def @@ -0,0 +1,93 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/mpr/mpr.spec; do not edit! + +LIBRARY mpr.dll + +EXPORTS + MultinetGetConnectionPerformanceA @10 + MultinetGetConnectionPerformanceW @11 + MultinetGetErrorTextA @26 + MultinetGetErrorTextW @27 + NPSAuthenticationDialogA @28 + NPSCopyStringA @29 + NPSDeviceGetNumberA @30 + NPSDeviceGetStringA @31 + NPSGetProviderHandleA @32 + NPSGetProviderNameA @33 + NPSGetSectionNameA @34 + NPSNotifyGetContextA @35 + NPSNotifyRegisterA @36 + NPSSetCustomTextA @37 + NPSSetExtendedErrorA @38 + PwdChangePasswordA @39 + PwdChangePasswordW @40 + PwdGetPasswordStatusA @41 + PwdGetPasswordStatusW @42 + PwdSetPasswordStatusA @43 + PwdSetPasswordStatusW @44 + WNetAddConnection2A @45 + WNetAddConnection2W @46 + WNetAddConnection3A @47 + WNetAddConnection3W @48 + WNetAddConnectionA @49 + WNetAddConnectionW @50 + WNetCachePassword @51 + WNetCancelConnection2A @52 + WNetCancelConnection2W @53 + WNetCancelConnectionA @54 + WNetCancelConnectionW @55 + WNetClearConnections @56 + WNetCloseEnum @57 + WNetConnectionDialog1A @58 + WNetConnectionDialog1W @59 + WNetConnectionDialog @60 + WNetDisconnectDialog1A @61 + WNetDisconnectDialog1W @62 + WNetDisconnectDialog @63 + WNetEnumCachedPasswords @64 + WNetEnumResourceA @65 + WNetEnumResourceW @66 + WNetFMXEditPerm @67 PRIVATE + WNetFMXGetPermCaps @68 PRIVATE + WNetFMXGetPermHelp @69 PRIVATE + WNetFormatNetworkNameA @70 PRIVATE + WNetFormatNetworkNameW @71 PRIVATE + WNetGetCachedPassword @72 + WNetGetConnectionA @73 + WNetGetConnectionW @74 + WNetGetDirectoryTypeA @75 PRIVATE + WNetGetHomeDirectoryA @76 PRIVATE + WNetGetHomeDirectoryW @77 PRIVATE + WNetGetLastErrorA @78 + WNetGetLastErrorW @79 + WNetGetNetworkInformationA @80 + WNetGetNetworkInformationW @81 + WNetGetPropertyTextA @82 PRIVATE + WNetGetProviderNameA @83 + WNetGetProviderNameW @84 + WNetGetResourceInformationA @85 + WNetGetResourceInformationW @86 + WNetGetResourceParentA @87 + WNetGetResourceParentW @88 + WNetGetUniversalNameA @89 + WNetGetUniversalNameW @90 + WNetGetUserA @91 + WNetGetUserW @92 + WNetLogoffA @93 + WNetLogoffW @94 + WNetLogonA @95 + WNetLogonNotify @96 PRIVATE + WNetLogonW @97 + WNetOpenEnumA @98 + WNetOpenEnumW @99 + WNetPasswordChangeNotify @100 PRIVATE + WNetPropertyDialogA @101 PRIVATE + WNetRemoveCachedPassword @102 + WNetRestoreConnection @103 PRIVATE + WNetRestoreConnectionA @104 + WNetRestoreConnectionW @105 + WNetSetConnectionA @106 + WNetSetConnectionW @107 + WNetUseConnectionA @108 + WNetUseConnectionW @109 + WNetVerifyPasswordA @110 + WNetVerifyPasswordW @111 diff --git a/lib64/wine/libmprapi.def b/lib64/wine/libmprapi.def new file mode 100644 index 0000000..2fbfb90 --- /dev/null +++ b/lib64/wine/libmprapi.def @@ -0,0 +1,137 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/mprapi/mprapi.spec; do not edit! + +LIBRARY mprapi.dll + +EXPORTS + CompressPhoneNumber @1 PRIVATE + MprAdminBufferFree @2 PRIVATE + MprAdminConnectionClearStats @3 PRIVATE + MprAdminConnectionEnum @4 PRIVATE + MprAdminConnectionGetInfo @5 PRIVATE + MprAdminDeregisterConnectionNotification @6 PRIVATE + MprAdminDeviceEnum @7 PRIVATE + MprAdminEstablishDomainRasServer @8 PRIVATE + MprAdminGetErrorString @9 + MprAdminGetPDCServer @10 PRIVATE + MprAdminInterfaceConnect @11 PRIVATE + MprAdminInterfaceCreate @12 PRIVATE + MprAdminInterfaceDelete @13 PRIVATE + MprAdminInterfaceDeviceGetInfo @14 PRIVATE + MprAdminInterfaceDeviceSetInfo @15 PRIVATE + MprAdminInterfaceDisconnect @16 PRIVATE + MprAdminInterfaceEnum @17 PRIVATE + MprAdminInterfaceGetCredentials @18 PRIVATE + MprAdminInterfaceGetCredentialsEx @19 PRIVATE + MprAdminInterfaceGetHandle @20 PRIVATE + MprAdminInterfaceGetInfo @21 PRIVATE + MprAdminInterfaceQueryUpdateResult @22 PRIVATE + MprAdminInterfaceSetCredentials @23 PRIVATE + MprAdminInterfaceSetCredentialsEx @24 PRIVATE + MprAdminInterfaceSetInfo @25 PRIVATE + MprAdminInterfaceTransportAdd @26 PRIVATE + MprAdminInterfaceTransportGetInfo @27 PRIVATE + MprAdminInterfaceTransportRemove @28 PRIVATE + MprAdminInterfaceTransportSetInfo @29 PRIVATE + MprAdminInterfaceUpdatePhonebookInfo @30 PRIVATE + MprAdminInterfaceUpdateRoutes @31 PRIVATE + MprAdminIsDomainRasServer @32 PRIVATE + MprAdminIsServiceRunning @33 + MprAdminMIBBufferFree @34 PRIVATE + MprAdminMIBEntryCreate @35 PRIVATE + MprAdminMIBEntryDelete @36 PRIVATE + MprAdminMIBEntryGet @37 PRIVATE + MprAdminMIBEntryGetFirst @38 PRIVATE + MprAdminMIBEntryGetNext @39 PRIVATE + MprAdminMIBEntrySet @40 PRIVATE + MprAdminMIBServerConnect @41 PRIVATE + MprAdminMIBServerDisconnect @42 PRIVATE + MprAdminPortClearStats @43 PRIVATE + MprAdminPortDisconnect @44 PRIVATE + MprAdminPortEnum @45 PRIVATE + MprAdminPortGetInfo @46 PRIVATE + MprAdminPortReset @47 PRIVATE + MprAdminRegisterConnectionNotification @48 PRIVATE + MprAdminSendUserMessage @49 PRIVATE + MprAdminServerConnect @50 PRIVATE + MprAdminServerDisconnect @51 PRIVATE + MprAdminServerGetCredentials @52 PRIVATE + MprAdminServerGetInfo @53 PRIVATE + MprAdminServerSetCredentials @54 PRIVATE + MprAdminTransportCreate @55 PRIVATE + MprAdminTransportGetInfo @56 PRIVATE + MprAdminTransportSetInfo @57 PRIVATE + MprAdminUpgradeUsers @58 PRIVATE + MprAdminUserClose @59 PRIVATE + MprAdminUserGetInfo @60 PRIVATE + MprAdminUserOpen @61 PRIVATE + MprAdminUserRead @62 PRIVATE + MprAdminUserReadProfFlags @63 PRIVATE + MprAdminUserServerConnect @64 PRIVATE + MprAdminUserServerDisconnect @65 PRIVATE + MprAdminUserSetInfo @66 PRIVATE + MprAdminUserWrite @67 PRIVATE + MprAdminUserWriteProfFlags @68 PRIVATE + MprConfigBufferFree @69 PRIVATE + MprConfigGetFriendlyName @70 PRIVATE + MprConfigGetGuidName @71 PRIVATE + MprConfigInterfaceCreate @72 PRIVATE + MprConfigInterfaceDelete @73 PRIVATE + MprConfigInterfaceEnum @74 PRIVATE + MprConfigInterfaceGetHandle @75 PRIVATE + MprConfigInterfaceGetInfo @76 PRIVATE + MprConfigInterfaceSetInfo @77 PRIVATE + MprConfigInterfaceTransportAdd @78 PRIVATE + MprConfigInterfaceTransportEnum @79 PRIVATE + MprConfigInterfaceTransportGetHandle @80 PRIVATE + MprConfigInterfaceTransportGetInfo @81 PRIVATE + MprConfigInterfaceTransportRemove @82 PRIVATE + MprConfigInterfaceTransportSetInfo @83 PRIVATE + MprConfigServerBackup @84 PRIVATE + MprConfigServerConnect @85 PRIVATE + MprConfigServerDisconnect @86 PRIVATE + MprConfigServerGetInfo @87 PRIVATE + MprConfigServerInstall @88 PRIVATE + MprConfigServerRefresh @89 PRIVATE + MprConfigServerRestore @90 PRIVATE + MprConfigTransportCreate @91 PRIVATE + MprConfigTransportDelete @92 PRIVATE + MprConfigTransportEnum @93 PRIVATE + MprConfigTransportGetHandle @94 PRIVATE + MprConfigTransportGetInfo @95 PRIVATE + MprConfigTransportSetInfo @96 PRIVATE + MprDomainQueryAccess @97 PRIVATE + MprDomainQueryRasServer @98 PRIVATE + MprDomainRegisterRasServer @99 PRIVATE + MprDomainSetAccess @100 PRIVATE + MprGetUsrParams @101 PRIVATE + MprInfoBlockAdd @102 PRIVATE + MprInfoBlockFind @103 PRIVATE + MprInfoBlockQuerySize @104 PRIVATE + MprInfoBlockRemove @105 PRIVATE + MprInfoBlockSet @106 PRIVATE + MprInfoCreate @107 PRIVATE + MprInfoDelete @108 PRIVATE + MprInfoDuplicate @109 PRIVATE + MprInfoRemoveAll @110 PRIVATE + MprPortSetUsage @111 PRIVATE + MprSetupIpInIpInterfaceFriendlyNameCreate @112 PRIVATE + MprSetupIpInIpInterfaceFriendlyNameDelete @113 PRIVATE + MprSetupIpInIpInterfaceFriendlyNameEnum @114 PRIVATE + MprSetupIpInIpInterfaceFriendlyNameFree @115 PRIVATE + RasAdminBufferFree @116 PRIVATE + RasAdminConnectionClearStats @117 PRIVATE + RasAdminConnectionEnum @118 PRIVATE + RasAdminConnectionGetInfo @119 PRIVATE + RasAdminGetErrorString @120 PRIVATE + RasAdminGetPDCServer @121 PRIVATE + RasAdminIsServiceRunning @122 PRIVATE + RasAdminPortClearStats @123 PRIVATE + RasAdminPortDisconnect @124 PRIVATE + RasAdminPortEnum @125 PRIVATE + RasAdminPortGetInfo @126 PRIVATE + RasAdminPortReset @127 PRIVATE + RasAdminServerConnect @128 PRIVATE + RasAdminServerDisconnect @129 PRIVATE + RasAdminUserGetInfo @130 PRIVATE + RasAdminUserSetInfo @131 PRIVATE + RasPrivilegeAndCallBackNumber @132 PRIVATE diff --git a/lib64/wine/libmsacm32.def b/lib64/wine/libmsacm32.def new file mode 100644 index 0000000..2bc8a68 --- /dev/null +++ b/lib64/wine/libmsacm32.def @@ -0,0 +1,49 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/msacm32/msacm32.spec; do not edit! + +LIBRARY msacm32.dll + +EXPORTS + acmDriverAddA @1 + acmDriverAddW @2 + acmDriverClose @3 + acmDriverDetailsA @4 + acmDriverDetailsW @5 + acmDriverEnum @6 + acmDriverID @7 + acmDriverMessage @8 + acmDriverOpen @9 + acmDriverPriority @10 + acmDriverRemove @11 + acmFilterChooseA @12 + acmFilterChooseW @13 + acmFilterDetailsA @14 + acmFilterDetailsW @15 + acmFilterEnumA @16 + acmFilterEnumW @17 + acmFilterTagDetailsA @18 + acmFilterTagDetailsW @19 + acmFilterTagEnumA @20 + acmFilterTagEnumW @21 + acmFormatChooseA @22 + acmFormatChooseW @23 + acmFormatDetailsA @24 + acmFormatDetailsW @25 + acmFormatEnumA @26 + acmFormatEnumW @27 + acmFormatSuggest @28 + acmFormatTagDetailsA @29 + acmFormatTagDetailsW @30 + acmFormatTagEnumA @31 + acmFormatTagEnumW @32 + acmGetVersion @33 + acmMessage32 @34 PRIVATE + acmMetrics @35 + acmStreamClose @36 + acmStreamConvert @37 + acmStreamMessage @38 + acmStreamOpen @39 + acmStreamPrepareHeader @40 + acmStreamReset @41 + acmStreamSize @42 + acmStreamUnprepareHeader @43 + DriverProc=PCM_DriverProc @44 PRIVATE diff --git a/lib64/wine/libmsasn1.def b/lib64/wine/libmsasn1.def new file mode 100644 index 0000000..76592bf --- /dev/null +++ b/lib64/wine/libmsasn1.def @@ -0,0 +1,271 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/msasn1/msasn1.spec; do not edit! + +LIBRARY msasn1.dll + +EXPORTS + ASN1BERDecBitString2 @1 PRIVATE + ASN1BERDecBitString @2 PRIVATE + ASN1BERDecBool @3 PRIVATE + ASN1BERDecChar16String @4 PRIVATE + ASN1BERDecChar32String @5 PRIVATE + ASN1BERDecCharString @6 PRIVATE + ASN1BERDecCheck @7 PRIVATE + ASN1BERDecDouble @8 PRIVATE + ASN1BERDecEndOfContents @9 PRIVATE + ASN1BERDecEoid @10 PRIVATE + ASN1BERDecExplicitTag @11 PRIVATE + ASN1BERDecFlush @12 PRIVATE + ASN1BERDecGeneralizedTime @13 PRIVATE + ASN1BERDecLength @14 PRIVATE + ASN1BERDecMultibyteString @15 PRIVATE + ASN1BERDecNotEndOfContents @16 PRIVATE + ASN1BERDecNull @17 PRIVATE + ASN1BERDecObjectIdentifier2 @18 PRIVATE + ASN1BERDecObjectIdentifier @19 PRIVATE + ASN1BERDecOctetString2 @20 PRIVATE + ASN1BERDecOctetString @21 PRIVATE + ASN1BERDecOpenType2 @22 PRIVATE + ASN1BERDecOpenType @23 PRIVATE + ASN1BERDecPeekTag @24 PRIVATE + ASN1BERDecS16Val @25 PRIVATE + ASN1BERDecS32Val @26 PRIVATE + ASN1BERDecS8Val @27 PRIVATE + ASN1BERDecSXVal @28 PRIVATE + ASN1BERDecSkip @29 PRIVATE + ASN1BERDecTag @30 PRIVATE + ASN1BERDecU16Val @31 PRIVATE + ASN1BERDecU32Val @32 PRIVATE + ASN1BERDecU8Val @33 PRIVATE + ASN1BERDecUTCTime @34 PRIVATE + ASN1BERDecUTF8String @35 PRIVATE + ASN1BERDecZeroChar16String @36 PRIVATE + ASN1BERDecZeroChar32String @37 PRIVATE + ASN1BERDecZeroCharString @38 PRIVATE + ASN1BERDecZeroMultibyteString @39 PRIVATE + ASN1BERDotVal2Eoid @40 PRIVATE + ASN1BEREncBitString @41 PRIVATE + ASN1BEREncBool @42 PRIVATE + ASN1BEREncChar16String @43 PRIVATE + ASN1BEREncChar32String @44 PRIVATE + ASN1BEREncCharString @45 PRIVATE + ASN1BEREncCheck @46 PRIVATE + ASN1BEREncDouble @47 PRIVATE + ASN1BEREncEndOfContents @48 PRIVATE + ASN1BEREncEoid @49 PRIVATE + ASN1BEREncExplicitTag @50 PRIVATE + ASN1BEREncFlush @51 PRIVATE + ASN1BEREncGeneralizedTime @52 PRIVATE + ASN1BEREncLength @53 PRIVATE + ASN1BEREncMultibyteString @54 PRIVATE + ASN1BEREncNull @55 PRIVATE + ASN1BEREncObjectIdentifier2 @56 PRIVATE + ASN1BEREncObjectIdentifier @57 PRIVATE + ASN1BEREncOctetString @58 PRIVATE + ASN1BEREncOpenType @59 PRIVATE + ASN1BEREncRemoveZeroBits @60 PRIVATE + ASN1BEREncS32 @61 PRIVATE + ASN1BEREncSX @62 PRIVATE + ASN1BEREncTag @63 PRIVATE + ASN1BEREncU32 @64 PRIVATE + ASN1BEREncUTCTime @65 PRIVATE + ASN1BEREncUTF8String @66 PRIVATE + ASN1BEREncZeroMultibyteString @67 PRIVATE + ASN1BEREoid2DotVal @68 PRIVATE + ASN1BEREoid_free @69 PRIVATE + ASN1CEREncBeginBlk @70 PRIVATE + ASN1CEREncBitString @71 PRIVATE + ASN1CEREncChar16String @72 PRIVATE + ASN1CEREncChar32String @73 PRIVATE + ASN1CEREncCharString @74 PRIVATE + ASN1CEREncEndBlk @75 PRIVATE + ASN1CEREncFlushBlkElement @76 PRIVATE + ASN1CEREncGeneralizedTime @77 PRIVATE + ASN1CEREncMultibyteString @78 PRIVATE + ASN1CEREncNewBlkElement @79 PRIVATE + ASN1CEREncOctetString @80 PRIVATE + ASN1CEREncUTCTime @81 PRIVATE + ASN1CEREncZeroMultibyteString @82 PRIVATE + ASN1DecAbort @83 PRIVATE + ASN1DecAlloc @84 PRIVATE + ASN1DecDone @85 PRIVATE + ASN1DecRealloc @86 PRIVATE + ASN1DecSetError @87 PRIVATE + ASN1EncAbort @88 PRIVATE + ASN1EncDone @89 PRIVATE + ASN1EncSetError @90 PRIVATE + ASN1Free @91 PRIVATE + ASN1PERDecAlignment @92 PRIVATE + ASN1PERDecBit @93 PRIVATE + ASN1PERDecBits @94 PRIVATE + ASN1PERDecBoolean @95 PRIVATE + ASN1PERDecChar16String @96 PRIVATE + ASN1PERDecChar32String @97 PRIVATE + ASN1PERDecCharString @98 PRIVATE + ASN1PERDecCharStringNoAlloc @99 PRIVATE + ASN1PERDecComplexChoice @100 PRIVATE + ASN1PERDecDouble @101 PRIVATE + ASN1PERDecExtension @102 PRIVATE + ASN1PERDecFlush @103 PRIVATE + ASN1PERDecFragmented @104 PRIVATE + ASN1PERDecFragmentedChar16String @105 PRIVATE + ASN1PERDecFragmentedChar32String @106 PRIVATE + ASN1PERDecFragmentedCharString @107 PRIVATE + ASN1PERDecFragmentedExtension @108 PRIVATE + ASN1PERDecFragmentedIntx @109 PRIVATE + ASN1PERDecFragmentedLength @110 PRIVATE + ASN1PERDecFragmentedTableChar16String @111 PRIVATE + ASN1PERDecFragmentedTableChar32String @112 PRIVATE + ASN1PERDecFragmentedTableCharString @113 PRIVATE + ASN1PERDecFragmentedUIntx @114 PRIVATE + ASN1PERDecFragmentedZeroChar16String @115 PRIVATE + ASN1PERDecFragmentedZeroChar32String @116 PRIVATE + ASN1PERDecFragmentedZeroCharString @117 PRIVATE + ASN1PERDecFragmentedZeroTableChar16String @118 PRIVATE + ASN1PERDecFragmentedZeroTableChar32String @119 PRIVATE + ASN1PERDecFragmentedZeroTableCharString @120 PRIVATE + ASN1PERDecGeneralizedTime @121 PRIVATE + ASN1PERDecInteger @122 PRIVATE + ASN1PERDecMultibyteString @123 PRIVATE + ASN1PERDecN16Val @124 PRIVATE + ASN1PERDecN32Val @125 PRIVATE + ASN1PERDecN8Val @126 PRIVATE + ASN1PERDecNormallySmallExtension @127 PRIVATE + ASN1PERDecObjectIdentifier2 @128 PRIVATE + ASN1PERDecObjectIdentifier @129 PRIVATE + ASN1PERDecOctetString_FixedSize @130 PRIVATE + ASN1PERDecOctetString_FixedSizeEx @131 PRIVATE + ASN1PERDecOctetString_NoSize @132 PRIVATE + ASN1PERDecOctetString_VarSize @133 PRIVATE + ASN1PERDecOctetString_VarSizeEx @134 PRIVATE + ASN1PERDecS16Val @135 PRIVATE + ASN1PERDecS32Val @136 PRIVATE + ASN1PERDecS8Val @137 PRIVATE + ASN1PERDecSXVal @138 PRIVATE + ASN1PERDecSeqOf_NoSize @139 PRIVATE + ASN1PERDecSeqOf_VarSize @140 PRIVATE + ASN1PERDecSimpleChoice @141 PRIVATE + ASN1PERDecSimpleChoiceEx @142 PRIVATE + ASN1PERDecSkipBits @143 PRIVATE + ASN1PERDecSkipFragmented @144 PRIVATE + ASN1PERDecSkipNormallySmall @145 PRIVATE + ASN1PERDecSkipNormallySmallExtension @146 PRIVATE + ASN1PERDecSkipNormallySmallExtensionFragmented @147 PRIVATE + ASN1PERDecTableChar16String @148 PRIVATE + ASN1PERDecTableChar32String @149 PRIVATE + ASN1PERDecTableCharString @150 PRIVATE + ASN1PERDecTableCharStringNoAlloc @151 PRIVATE + ASN1PERDecU16Val @152 PRIVATE + ASN1PERDecU32Val @153 PRIVATE + ASN1PERDecU8Val @154 PRIVATE + ASN1PERDecUTCTime @155 PRIVATE + ASN1PERDecUXVal @156 PRIVATE + ASN1PERDecUnsignedInteger @157 PRIVATE + ASN1PERDecUnsignedShort @158 PRIVATE + ASN1PERDecZeroChar16String @159 PRIVATE + ASN1PERDecZeroChar32String @160 PRIVATE + ASN1PERDecZeroCharString @161 PRIVATE + ASN1PERDecZeroCharStringNoAlloc @162 PRIVATE + ASN1PERDecZeroTableChar16String @163 PRIVATE + ASN1PERDecZeroTableChar32String @164 PRIVATE + ASN1PERDecZeroTableCharString @165 PRIVATE + ASN1PERDecZeroTableCharStringNoAlloc @166 PRIVATE + ASN1PEREncAlignment @167 PRIVATE + ASN1PEREncBit @168 PRIVATE + ASN1PEREncBitIntx @169 PRIVATE + ASN1PEREncBitVal @170 PRIVATE + ASN1PEREncBits @171 PRIVATE + ASN1PEREncBoolean @172 PRIVATE + ASN1PEREncChar16String @173 PRIVATE + ASN1PEREncChar32String @174 PRIVATE + ASN1PEREncCharString @175 PRIVATE + ASN1PEREncCheckExtensions @176 PRIVATE + ASN1PEREncComplexChoice @177 PRIVATE + ASN1PEREncDouble @178 PRIVATE + ASN1PEREncExtensionBitClear @179 PRIVATE + ASN1PEREncExtensionBitSet @180 PRIVATE + ASN1PEREncFlush @181 PRIVATE + ASN1PEREncFlushFragmentedToParent @182 PRIVATE + ASN1PEREncFragmented @183 PRIVATE + ASN1PEREncFragmentedChar16String @184 PRIVATE + ASN1PEREncFragmentedChar32String @185 PRIVATE + ASN1PEREncFragmentedCharString @186 PRIVATE + ASN1PEREncFragmentedIntx @187 PRIVATE + ASN1PEREncFragmentedLength @188 PRIVATE + ASN1PEREncFragmentedTableChar16String @189 PRIVATE + ASN1PEREncFragmentedTableChar32String @190 PRIVATE + ASN1PEREncFragmentedTableCharString @191 PRIVATE + ASN1PEREncFragmentedUIntx @192 PRIVATE + ASN1PEREncGeneralizedTime @193 PRIVATE + ASN1PEREncInteger @194 PRIVATE + ASN1PEREncMultibyteString @195 PRIVATE + ASN1PEREncNormallySmall @196 PRIVATE + ASN1PEREncNormallySmallBits @197 PRIVATE + ASN1PEREncObjectIdentifier2 @198 PRIVATE + ASN1PEREncObjectIdentifier @199 PRIVATE + ASN1PEREncOctetString_FixedSize @200 PRIVATE + ASN1PEREncOctetString_FixedSizeEx @201 PRIVATE + ASN1PEREncOctetString_NoSize @202 PRIVATE + ASN1PEREncOctetString_VarSize @203 PRIVATE + ASN1PEREncOctetString_VarSizeEx @204 PRIVATE + ASN1PEREncOctets @205 PRIVATE + ASN1PEREncRemoveZeroBits @206 PRIVATE + ASN1PEREncSeqOf_NoSize @207 PRIVATE + ASN1PEREncSeqOf_VarSize @208 PRIVATE + ASN1PEREncSimpleChoice @209 PRIVATE + ASN1PEREncSimpleChoiceEx @210 PRIVATE + ASN1PEREncTableChar16String @211 PRIVATE + ASN1PEREncTableChar32String @212 PRIVATE + ASN1PEREncTableCharString @213 PRIVATE + ASN1PEREncUTCTime @214 PRIVATE + ASN1PEREncUnsignedInteger @215 PRIVATE + ASN1PEREncUnsignedShort @216 PRIVATE + ASN1PEREncZero @217 PRIVATE + ASN1PERFreeSeqOf @218 PRIVATE + ASN1_CloseDecoder @219 PRIVATE + ASN1_CloseEncoder2 @220 PRIVATE + ASN1_CloseEncoder @221 PRIVATE + ASN1_CloseModule @222 PRIVATE + ASN1_CreateDecoder @223 PRIVATE + ASN1_CreateDecoderEx @224 PRIVATE + ASN1_CreateEncoder @225 PRIVATE + ASN1_CreateModule @226 PRIVATE + ASN1_Decode @227 PRIVATE + ASN1_Encode @228 PRIVATE + ASN1_FreeDecoded @229 PRIVATE + ASN1_FreeEncoded @230 PRIVATE + ASN1_GetDecoderOption @231 PRIVATE + ASN1_GetEncoderOption @232 PRIVATE + ASN1_SetDecoderOption @233 PRIVATE + ASN1_SetEncoderOption @234 PRIVATE + ASN1bitstring_cmp @235 PRIVATE + ASN1bitstring_free @236 PRIVATE + ASN1char16string_cmp @237 PRIVATE + ASN1char16string_free @238 PRIVATE + ASN1char32string_cmp @239 PRIVATE + ASN1char32string_free @240 PRIVATE + ASN1charstring_cmp @241 PRIVATE + ASN1charstring_free @242 PRIVATE + ASN1generalizedtime_cmp @243 PRIVATE + ASN1intx2int32 @244 PRIVATE + ASN1intx2uint32 @245 PRIVATE + ASN1intx_add @246 PRIVATE + ASN1intx_free @247 PRIVATE + ASN1intx_setuint32 @248 PRIVATE + ASN1intx_sub @249 PRIVATE + ASN1intx_uoctets @250 PRIVATE + ASN1intxisuint32 @251 PRIVATE + ASN1objectidentifier2_cmp @252 PRIVATE + ASN1objectidentifier_cmp @253 PRIVATE + ASN1objectidentifier_free @254 PRIVATE + ASN1octetstring_cmp @255 PRIVATE + ASN1octetstring_free @256 PRIVATE + ASN1open_cmp @257 PRIVATE + ASN1open_free @258 PRIVATE + ASN1uint32_uoctets @259 PRIVATE + ASN1utctime_cmp @260 PRIVATE + ASN1utf8string_free @261 PRIVATE + ASN1ztchar16string_cmp @262 PRIVATE + ASN1ztchar16string_free @263 PRIVATE + ASN1ztchar32string_free @264 PRIVATE + ASN1ztcharstring_cmp @265 PRIVATE + ASN1ztcharstring_free @266 PRIVATE diff --git a/lib64/wine/libmscms.def b/lib64/wine/libmscms.def new file mode 100644 index 0000000..1cce34a --- /dev/null +++ b/lib64/wine/libmscms.def @@ -0,0 +1,108 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/mscms/mscms.spec; do not edit! + +LIBRARY mscms.dll + +EXPORTS + AssociateColorProfileWithDeviceA @1 + AssociateColorProfileWithDeviceW @2 + CheckBitmapBits @3 + CheckColors @4 + CloseColorProfile @5 + CloseDisplay @6 PRIVATE + ColorCplGetDefaultProfileScope @7 PRIVATE + ColorCplGetDefaultRenderingIntentScope @8 PRIVATE + ColorCplGetProfileProperties @9 PRIVATE + ColorCplHasSystemWideAssociationListChanged @10 PRIVATE + ColorCplInitialize @11 PRIVATE + ColorCplLoadAssociationList @12 PRIVATE + ColorCplMergeAssociationLists @13 PRIVATE + ColorCplOverwritePerUserAssociationList @14 PRIVATE + ColorCplReleaseProfileProperties @15 PRIVATE + ColorCplResetSystemWideAssociationListChangedWarning @16 PRIVATE + ColorCplSaveAssociationList @17 PRIVATE + ColorCplSetUsePerUserProfiles @18 PRIVATE + ColorCplUninitialize @19 PRIVATE + ConvertColorNameToIndex @20 + ConvertIndexToColorName @21 + CreateColorTransformA @22 + CreateColorTransformW @23 + CreateDeviceLinkProfile @24 + CreateMultiProfileTransform @25 + CreateProfileFromLogColorSpaceA @26 + CreateProfileFromLogColorSpaceW @27 + DccwCreateDisplayProfileAssociationList @28 PRIVATE + DccwGetDisplayProfileAssociationList @29 PRIVATE + DccwGetGamutSize @30 PRIVATE + DccwReleaseDisplayProfileAssociationList @31 PRIVATE + DccwSetDisplayProfileAssociationList @32 PRIVATE + DeleteColorTransform @33 + DeviceRenameEvent @34 PRIVATE + DisassociateColorProfileFromDeviceA @35 + DisassociateColorProfileFromDeviceW @36 + EnumColorProfilesA @37 + EnumColorProfilesW @38 + GenerateCopyFilePaths @39 + GetCMMInfo @40 + GetColorDirectoryA @41 + GetColorDirectoryW @42 + GetColorProfileElement @43 + GetColorProfileElementTag @44 + GetColorProfileFromHandle @45 + GetColorProfileHeader @46 + GetCountColorProfileElements @47 + GetNamedProfileInfo @48 + GetPS2ColorRenderingDictionary @49 + GetPS2ColorRenderingIntent @50 + GetPS2ColorSpaceArray @51 + GetStandardColorSpaceProfileA @52 + GetStandardColorSpaceProfileW @53 + InstallColorProfileA @54 + InstallColorProfileW @55 + InternalGetDeviceConfig @56 PRIVATE + InternalGetPS2CSAFromLCS @57 PRIVATE + InternalGetPS2ColorRenderingDictionary @58 PRIVATE + InternalGetPS2ColorSpaceArray @59 PRIVATE + InternalGetPS2PreviewCRD @60 PRIVATE + InternalRefreshCalibration @61 PRIVATE + InternalSetDeviceConfig @62 PRIVATE + InternalWcsAssociateColorProfileWithDevice @63 PRIVATE + IsColorProfileTagPresent @64 + IsColorProfileValid @65 + OpenColorProfileA @66 + OpenColorProfileW @67 + OpenDisplay @68 PRIVATE + RegisterCMMA @69 + RegisterCMMW @70 + SelectCMM @71 + SetColorProfileElement @72 + SetColorProfileElementReference @73 + SetColorProfileElementSize @74 + SetColorProfileHeader @75 + SetStandardColorSpaceProfileA @76 + SetStandardColorSpaceProfileW @77 + SpoolerCopyFileEvent @78 + TranslateBitmapBits @79 + TranslateColors @80 + UninstallColorProfileA @81 + UninstallColorProfileW @82 + UnregisterCMMA @83 + UnregisterCMMW @84 + WcsAssociateColorProfileWithDevice @85 PRIVATE + WcsCheckColors @86 PRIVATE + WcsCreateIccProfile @87 PRIVATE + WcsDisassociateColorProfileFromDevice @88 PRIVATE + WcsEnumColorProfiles @89 PRIVATE + WcsEnumColorProfilesSize @90 + WcsGetCalibrationManagementState @91 PRIVATE + WcsGetDefaultColorProfile @92 PRIVATE + WcsGetDefaultColorProfileSize @93 PRIVATE + WcsGetDefaultRenderingIntent @94 PRIVATE + WcsGetUsePerUserProfiles @95 + WcsGpCanInstallOrUninstallProfiles @96 PRIVATE + WcsOpenColorProfileA @97 + WcsOpenColorProfileW @98 + WcsSetCalibrationManagementState @99 PRIVATE + WcsSetDefaultColorProfile @100 PRIVATE + WcsSetDefaultRenderingIntent @101 PRIVATE + WcsSetUsePerUserProfiles @102 PRIVATE + WcsTranslateColors @103 PRIVATE diff --git a/lib64/wine/libmsdmo.def b/lib64/wine/libmsdmo.def new file mode 100644 index 0000000..df553d6 --- /dev/null +++ b/lib64/wine/libmsdmo.def @@ -0,0 +1,20 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/msdmo/msdmo.spec; do not edit! + +LIBRARY msdmo.dll + +EXPORTS + DMOEnum @1 + DMOGetName @2 + DMOGetTypes @3 + DMOGuidToStrA @4 PRIVATE + DMOGuidToStrW @5 PRIVATE + DMORegister @6 + DMOStrToGuidA @7 PRIVATE + DMOStrToGuidW @8 PRIVATE + DMOUnregister @9 + MoCopyMediaType @10 + MoCreateMediaType @11 + MoDeleteMediaType @12 + MoDuplicateMediaType @13 + MoFreeMediaType @14 + MoInitMediaType @15 diff --git a/lib64/wine/libmshtml.def b/lib64/wine/libmshtml.def new file mode 100644 index 0000000..5b2e378 --- /dev/null +++ b/lib64/wine/libmshtml.def @@ -0,0 +1,20 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/mshtml/mshtml.spec; do not edit! + +LIBRARY mshtml.dll + +EXPORTS + CreateHTMLPropertyPage @1 PRIVATE + DllCanUnloadNow @2 PRIVATE + DllEnumClassObjects @3 PRIVATE + DllGetClassObject @4 PRIVATE + DllInstall @5 PRIVATE + DllRegisterServer @6 PRIVATE + DllUnregisterServer @7 PRIVATE + MatchExactGetIDsOfNames @8 PRIVATE + PrintHTML @9 + RNIGetCompatibleVersion @10 + RunHTMLApplication @11 + ShowHTMLDialog @12 + ShowModalDialog @13 PRIVATE + ShowModelessHTMLDialog @14 PRIVATE + NP_GetEntryPoints @15 diff --git a/lib64/wine/libmsi.def b/lib64/wine/libmsi.def new file mode 100644 index 0000000..c9b63fb --- /dev/null +++ b/lib64/wine/libmsi.def @@ -0,0 +1,301 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/msi/msi.spec; do not edit! + +LIBRARY msi.dll + +EXPORTS + MsiAdvertiseProductA @5 + MsiAdvertiseProductW @6 + MsiCloseAllHandles @7 + MsiCloseHandle @8 + MsiCollectUserInfoA @9 + MsiCollectUserInfoW @10 + MsiConfigureFeatureA @11 + MsiConfigureFeatureFromDescriptorA @12 PRIVATE + MsiConfigureFeatureFromDescriptorW @13 PRIVATE + MsiConfigureFeatureW @14 + MsiConfigureProductA @15 + MsiConfigureProductW @16 + MsiCreateRecord @17 + MsiDatabaseApplyTransformA @18 + MsiDatabaseApplyTransformW @19 + MsiDatabaseCommit @20 + MsiDatabaseExportA @21 + MsiDatabaseExportW @22 + MsiDatabaseGenerateTransformA @23 + MsiDatabaseGenerateTransformW @24 + MsiDatabaseGetPrimaryKeysA @25 + MsiDatabaseGetPrimaryKeysW @26 + MsiDatabaseImportA @27 + MsiDatabaseImportW @28 + MsiDatabaseMergeA @29 + MsiDatabaseMergeW @30 + MsiDatabaseOpenViewA @31 + MsiDatabaseOpenViewW @32 + MsiDoActionA @33 + MsiDoActionW @34 + MsiEnableUIPreview @35 + MsiEnumClientsA @36 + MsiEnumClientsW @37 + MsiEnumComponentQualifiersA @38 + MsiEnumComponentQualifiersW @39 + MsiEnumComponentsA @40 + MsiEnumComponentsW @41 + MsiEnumFeaturesA @42 + MsiEnumFeaturesW @43 + MsiEnumProductsA @44 + MsiEnumProductsW @45 + MsiEvaluateConditionA @46 + MsiEvaluateConditionW @47 + MsiGetLastErrorRecord @48 + MsiGetActiveDatabase @49 + MsiGetComponentStateA @50 + MsiGetComponentStateW @51 + MsiGetDatabaseState @52 + MsiGetFeatureCostA @53 + MsiGetFeatureCostW @54 + MsiGetFeatureInfoA @55 + MsiGetFeatureInfoW @56 + MsiGetFeatureStateA @57 + MsiGetFeatureStateW @58 + MsiGetFeatureUsageA @59 + MsiGetFeatureUsageW @60 + MsiGetFeatureValidStatesA @61 + MsiGetFeatureValidStatesW @62 + MsiGetLanguage @63 + MsiGetMode @64 + MsiGetProductCodeA @65 + MsiGetProductCodeW @66 + MsiGetProductInfoA @67 + MsiGetProductInfoFromScriptA @68 PRIVATE + MsiGetProductInfoFromScriptW @69 PRIVATE + MsiGetProductInfoW @70 + MsiGetProductPropertyA @71 + MsiGetProductPropertyW @72 + MsiGetPropertyA @73 + MsiGetPropertyW @74 + MsiGetSourcePathA @75 + MsiGetSourcePathW @76 + MsiGetSummaryInformationA @77 + MsiGetSummaryInformationW @78 + MsiGetTargetPathA @79 + MsiGetTargetPathW @80 + MsiGetUserInfoA @81 + MsiGetUserInfoW @82 + MsiInstallMissingComponentA @83 + MsiInstallMissingComponentW @84 + MsiInstallMissingFileA @85 PRIVATE + MsiInstallMissingFileW @86 PRIVATE + MsiInstallProductA @87 + MsiInstallProductW @88 + MsiLocateComponentA @89 + MsiLocateComponentW @90 + MsiOpenDatabaseA @91 + MsiOpenDatabaseW @92 + MsiOpenPackageA @93 + MsiOpenPackageW @94 + MsiOpenProductA @95 + MsiOpenProductW @96 + MsiPreviewBillboardA @97 + MsiPreviewBillboardW @98 + MsiPreviewDialogA @99 + MsiPreviewDialogW @100 + MsiProcessAdvertiseScriptA @101 PRIVATE + MsiProcessAdvertiseScriptW @102 PRIVATE + MsiProcessMessage @103 + MsiProvideComponentA @104 + MsiProvideComponentFromDescriptorA @105 + MsiProvideComponentFromDescriptorW @106 + MsiProvideComponentW @107 + MsiProvideQualifiedComponentA @108 + MsiProvideQualifiedComponentW @109 + MsiQueryFeatureStateA @110 + MsiQueryFeatureStateW @111 + MsiQueryProductStateA @112 + MsiQueryProductStateW @113 + MsiRecordDataSize @114 + MsiRecordGetFieldCount @115 + MsiRecordGetInteger @116 + MsiRecordGetStringA @117 + MsiRecordGetStringW @118 + MsiRecordIsNull @119 + MsiRecordReadStream @120 + MsiRecordSetInteger @121 + MsiRecordSetStreamA @122 + MsiRecordSetStreamW @123 + MsiRecordSetStringA @124 + MsiRecordSetStringW @125 + MsiReinstallFeatureA @126 + MsiReinstallFeatureFromDescriptorA @127 PRIVATE + MsiReinstallFeatureFromDescriptorW @128 PRIVATE + MsiReinstallFeatureW @129 + MsiReinstallProductA @130 + MsiReinstallProductW @131 + MsiSequenceA @132 + MsiSequenceW @133 + MsiSetComponentStateA @134 + MsiSetComponentStateW @135 + MsiSetExternalUIA @136 + MsiSetExternalUIW @137 + MsiSetFeatureStateA @138 + MsiSetFeatureStateW @139 + MsiSetInstallLevel @140 + MsiSetInternalUI @141 + MsiVerifyDiskSpace @142 PRIVATE + MsiSetMode @143 + MsiSetPropertyA @144 + MsiSetPropertyW @145 + MsiSetTargetPathA @146 + MsiSetTargetPathW @147 + MsiSummaryInfoGetPropertyA @148 + MsiSummaryInfoGetPropertyCount @149 + MsiSummaryInfoGetPropertyW @150 + MsiSummaryInfoPersist @151 + MsiSummaryInfoSetPropertyA @152 + MsiSummaryInfoSetPropertyW @153 + MsiUseFeatureA @154 + MsiUseFeatureW @155 + MsiVerifyPackageA @156 + MsiVerifyPackageW @157 + MsiViewClose @158 + MsiViewExecute @159 + MsiViewFetch @160 + MsiViewGetErrorA @161 + MsiViewGetErrorW @162 + MsiViewModify @163 + MsiDatabaseIsTablePersistentA @164 + MsiDatabaseIsTablePersistentW @165 + MsiViewGetColumnInfo @166 + MsiRecordClearData @167 + MsiEnableLogA @168 + MsiEnableLogW @169 + MsiFormatRecordA @170 + MsiFormatRecordW @171 + MsiGetComponentPathA @172 + MsiGetComponentPathW @173 + MsiApplyPatchA @174 + MsiApplyPatchW @175 + MsiAdvertiseScriptA @176 + MsiAdvertiseScriptW @177 + MsiGetPatchInfoA @178 + MsiGetPatchInfoW @179 + MsiEnumPatchesA @180 + MsiEnumPatchesW @181 + DllGetVersion @182 PRIVATE + MsiGetProductCodeFromPackageCodeA @183 PRIVATE + MsiGetProductCodeFromPackageCodeW @184 PRIVATE + MsiCreateTransformSummaryInfoA @185 + MsiCreateTransformSummaryInfoW @186 + MsiQueryFeatureStateFromDescriptorA @187 PRIVATE + MsiQueryFeatureStateFromDescriptorW @188 PRIVATE + MsiConfigureProductExA @189 + MsiConfigureProductExW @190 + MsiInvalidateFeatureCache @191 PRIVATE + MsiUseFeatureExA @192 + MsiUseFeatureExW @193 + MsiGetFileVersionA @194 + MsiGetFileVersionW @195 + MsiLoadStringA @196 + MsiLoadStringW @197 + MsiMessageBoxA @198 + MsiMessageBoxW @199 + MsiDecomposeDescriptorA @200 + MsiDecomposeDescriptorW @201 + MsiProvideQualifiedComponentExA @202 + MsiProvideQualifiedComponentExW @203 + MsiEnumRelatedProductsA @204 + MsiEnumRelatedProductsW @205 + MsiSetFeatureAttributesA @206 + MsiSetFeatureAttributesW @207 + MsiSourceListClearAllA @208 + MsiSourceListClearAllW @209 + MsiSourceListAddSourceA @210 + MsiSourceListAddSourceW @211 + MsiSourceListForceResolutionA @212 + MsiSourceListForceResolutionW @213 + MsiIsProductElevatedA @214 + MsiIsProductElevatedW @215 + MsiGetShortcutTargetA @216 + MsiGetShortcutTargetW @217 + MsiGetFileHashA @218 + MsiGetFileHashW @219 + MsiEnumComponentCostsA @220 + MsiEnumComponentCostsW @221 + MsiCreateAndVerifyInstallerDirectory @222 + MsiGetFileSignatureInformationA @223 + MsiGetFileSignatureInformationW @224 + MsiProvideAssemblyA @225 + MsiProvideAssemblyW @226 + MsiAdvertiseProductExA @227 + MsiAdvertiseProductExW @228 + MsiNotifySidChangeA @229 PRIVATE + MsiNotifySidChangeW @230 PRIVATE + MsiOpenPackageExA @231 + MsiOpenPackageExW @232 + MsiDeleteUserDataA @233 PRIVATE + MsiDeleteUserDataW @234 PRIVATE + Migrate10CachedPackagesA @235 PRIVATE + Migrate10CachedPackagesW @236 + MsiRemovePatchesA @237 + MsiRemovePatchesW @238 + MsiApplyMultiplePatchesA @239 + MsiApplyMultiplePatchesW @240 + MsiExtractPatchXMLDataA @241 PRIVATE + MsiExtractPatchXMLDataW @242 PRIVATE + MsiGetPatchInfoExA @243 + MsiGetPatchInfoExW @244 + MsiEnumProductsExA @245 + MsiEnumProductsExW @246 + MsiGetProductInfoExA @247 + MsiGetProductInfoExW @248 + MsiQueryComponentStateA @249 + MsiQueryComponentStateW @250 + MsiQueryFeatureStateExA @251 + MsiQueryFeatureStateExW @252 + MsiDeterminePatchSequenceA @253 + MsiDeterminePatchSequenceW @254 + MsiSourceListAddSourceExA @255 + MsiSourceListAddSourceExW @256 + MsiSourceListClearSourceA @257 + MsiSourceListClearSourceW @258 + MsiSourceListClearAllExA @259 + MsiSourceListClearAllExW @260 + MsiSourceListForceResolutionExA @261 PRIVATE + MsiSourceListForceResolutionExW @262 PRIVATE + MsiSourceListEnumSourcesA @263 + MsiSourceListEnumSourcesW @264 + MsiSourceListGetInfoA @265 + MsiSourceListGetInfoW @266 + MsiSourceListSetInfoA @267 + MsiSourceListSetInfoW @268 + MsiEnumPatchesExA @269 + MsiEnumPatchesExW @270 + MsiSourceListEnumMediaDisksA @271 + MsiSourceListEnumMediaDisksW @272 + MsiSourceListAddMediaDiskA @273 + MsiSourceListAddMediaDiskW @274 + MsiSourceListClearMediaDiskA @275 PRIVATE + MsiSourceListClearMediaDiskW @276 PRIVATE + MsiDetermineApplicablePatchesA @277 + MsiDetermineApplicablePatchesW @278 + MsiMessageBoxExA @279 + MsiMessageBoxExW @280 + MsiSetExternalUIRecord @281 + MsiGetPatchFileListA @282 + MsiGetPatchFileListW @283 + MsiBeginTransactionA @284 + MsiBeginTransactionW @285 + MsiEndTransaction @286 + MsiJoinTransaction @287 + MsiSetOfflineContextW @288 PRIVATE + MsiEnumComponentsExA @289 + MsiEnumComponentsExW @290 + MsiEnumClientsExA @291 + MsiEnumClientsExW @292 + MsiGetComponentPathExA @293 + MsiGetComponentPathExW @294 + QueryInstanceCount @295 PRIVATE + DllCanUnloadNow @296 PRIVATE + DllGetClassObject @297 PRIVATE + DllRegisterServer @298 PRIVATE + DllUnregisterServer @299 PRIVATE + __wine_msi_call_dll_function @300 diff --git a/lib64/wine/libmsimg32.def b/lib64/wine/libmsimg32.def new file mode 100644 index 0000000..af871db --- /dev/null +++ b/lib64/wine/libmsimg32.def @@ -0,0 +1,10 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/msimg32/msimg32.spec; do not edit! + +LIBRARY msimg32.dll + +EXPORTS + vSetDdrawflag @1 + AlphaBlend=gdi32.GdiAlphaBlend @2 + DllInitialize=DllMain @3 PRIVATE + GradientFill=gdi32.GdiGradientFill @4 + TransparentBlt=gdi32.GdiTransparentBlt @5 diff --git a/lib64/wine/libmspatcha.def b/lib64/wine/libmspatcha.def new file mode 100644 index 0000000..df2fbba --- /dev/null +++ b/lib64/wine/libmspatcha.def @@ -0,0 +1,17 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/mspatcha/mspatcha.spec; do not edit! + +LIBRARY mspatcha.dll + +EXPORTS + ApplyPatchToFileA @1 + ApplyPatchToFileByHandles @2 PRIVATE + ApplyPatchToFileByHandlesEx @3 PRIVATE + ApplyPatchToFileExA @4 PRIVATE + ApplyPatchToFileExW @5 PRIVATE + ApplyPatchToFileW @6 + GetFilePatchSignatureA @7 + GetFilePatchSignatureByHandle @8 PRIVATE + GetFilePatchSignatureW @9 + TestApplyPatchToFileA @10 PRIVATE + TestApplyPatchToFileByHandles @11 PRIVATE + TestApplyPatchToFileW @12 PRIVATE diff --git a/lib64/wine/libmsvcr100.def b/lib64/wine/libmsvcr100.def new file mode 100644 index 0000000..e369810 --- /dev/null +++ b/lib64/wine/libmsvcr100.def @@ -0,0 +1,1600 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/msvcr100/msvcr100.spec; do not edit! + +LIBRARY msvcr100.dll + +EXPORTS + ??0?$_SpinWait@$00@details@Concurrency@@QEAA@P6AXXZ@Z=SpinWait_ctor_yield @1 + ??0?$_SpinWait@$0A@@details@Concurrency@@QEAA@P6AXXZ@Z=SpinWait_ctor @2 + ??0SchedulerPolicy@Concurrency@@QEAA@_KZZ=SchedulerPolicy_ctor_policies @3 + ??0SchedulerPolicy@Concurrency@@QEAA@AEBV01@@Z=SchedulerPolicy_copy_ctor @4 + ??0SchedulerPolicy@Concurrency@@QEAA@XZ=SchedulerPolicy_ctor @5 + ??0_NonReentrantBlockingLock@details@Concurrency@@QEAA@XZ=_ReentrantBlockingLock_ctor @6 + ??0_NonReentrantPPLLock@details@Concurrency@@QEAA@XZ=_NonReentrantPPLLock_ctor @7 + ??0_ReaderWriterLock@details@Concurrency@@QEAA@XZ @8 PRIVATE + ??0_ReentrantBlockingLock@details@Concurrency@@QEAA@XZ=_ReentrantBlockingLock_ctor @9 + ??0_ReentrantLock@details@Concurrency@@QEAA@XZ @10 PRIVATE + ??0_ReentrantPPLLock@details@Concurrency@@QEAA@XZ=_ReentrantPPLLock_ctor @11 + ??0_Scoped_lock@_NonReentrantPPLLock@details@Concurrency@@QEAA@AEAV123@@Z=_NonReentrantPPLLock__Scoped_lock_ctor @12 + ??0_Scoped_lock@_ReentrantPPLLock@details@Concurrency@@QEAA@AEAV123@@Z=_ReentrantPPLLock__Scoped_lock_ctor @13 + ??0_SpinLock@details@Concurrency@@QEAA@AECJ@Z @14 PRIVATE + ??0_TaskCollection@details@Concurrency@@QEAA@XZ @15 PRIVATE + ??0_Timer@details@Concurrency@@IEAA@I_N@Z @16 PRIVATE + ??0__non_rtti_object@std@@QEAA@AEBV01@@Z=MSVCRT___non_rtti_object_copy_ctor @17 + ??0__non_rtti_object@std@@QEAA@PEBD@Z=MSVCRT___non_rtti_object_ctor @18 + ??0bad_cast@std@@AEAA@PEBQEBD@Z=MSVCRT_bad_cast_ctor @19 + ??0bad_cast@std@@QEAA@AEBV01@@Z=MSVCRT_bad_cast_copy_ctor @20 + ??0bad_cast@std@@QEAA@PEBD@Z=MSVCRT_bad_cast_ctor_charptr @21 + ??0bad_target@Concurrency@@QEAA@PEBD@Z @22 PRIVATE + ??0bad_target@Concurrency@@QEAA@XZ @23 PRIVATE + ??0bad_typeid@std@@QEAA@AEBV01@@Z=MSVCRT_bad_typeid_copy_ctor @24 + ??0bad_typeid@std@@QEAA@PEBD@Z=MSVCRT_bad_typeid_ctor @25 + ??0context_self_unblock@Concurrency@@QEAA@PEBD@Z @26 PRIVATE + ??0context_self_unblock@Concurrency@@QEAA@XZ @27 PRIVATE + ??0context_unblock_unbalanced@Concurrency@@QEAA@PEBD@Z @28 PRIVATE + ??0context_unblock_unbalanced@Concurrency@@QEAA@XZ @29 PRIVATE + ??0critical_section@Concurrency@@QEAA@XZ=critical_section_ctor @30 + ??0default_scheduler_exists@Concurrency@@QEAA@PEBD@Z @31 PRIVATE + ??0default_scheduler_exists@Concurrency@@QEAA@XZ @32 PRIVATE + ??0event@Concurrency@@QEAA@XZ=event_ctor @33 + ??0exception@std@@QEAA@AEBQEBD@Z=MSVCRT_exception_ctor @34 + ??0exception@std@@QEAA@AEBQEBDH@Z=MSVCRT_exception_ctor_noalloc @35 + ??0exception@std@@QEAA@AEBV01@@Z=MSVCRT_exception_copy_ctor @36 + ??0exception@std@@QEAA@XZ=MSVCRT_exception_default_ctor @37 + ??0improper_lock@Concurrency@@QEAA@PEBD@Z=improper_lock_ctor_str @38 + ??0improper_lock@Concurrency@@QEAA@XZ=improper_lock_ctor @39 + ??0improper_scheduler_attach@Concurrency@@QEAA@PEBD@Z=improper_scheduler_attach_ctor_str @40 + ??0improper_scheduler_attach@Concurrency@@QEAA@XZ=improper_scheduler_attach_ctor @41 + ??0improper_scheduler_detach@Concurrency@@QEAA@PEBD@Z=improper_scheduler_detach_ctor_str @42 + ??0improper_scheduler_detach@Concurrency@@QEAA@XZ=improper_scheduler_detach_ctor @43 + ??0improper_scheduler_reference@Concurrency@@QEAA@PEBD@Z @44 PRIVATE + ??0improper_scheduler_reference@Concurrency@@QEAA@XZ @45 PRIVATE + ??0invalid_link_target@Concurrency@@QEAA@PEBD@Z @46 PRIVATE + ??0invalid_link_target@Concurrency@@QEAA@XZ @47 PRIVATE + ??0invalid_multiple_scheduling@Concurrency@@QEAA@PEBD@Z @48 PRIVATE + ??0invalid_multiple_scheduling@Concurrency@@QEAA@XZ @49 PRIVATE + ??0invalid_operation@Concurrency@@QEAA@PEBD@Z @50 PRIVATE + ??0invalid_operation@Concurrency@@QEAA@XZ @51 PRIVATE + ??0invalid_oversubscribe_operation@Concurrency@@QEAA@PEBD@Z @52 PRIVATE + ??0invalid_oversubscribe_operation@Concurrency@@QEAA@XZ @53 PRIVATE + ??0invalid_scheduler_policy_key@Concurrency@@QEAA@PEBD@Z=invalid_scheduler_policy_key_ctor_str @54 + ??0invalid_scheduler_policy_key@Concurrency@@QEAA@XZ=invalid_scheduler_policy_key_ctor @55 + ??0invalid_scheduler_policy_thread_specification@Concurrency@@QEAA@PEBD@Z=invalid_scheduler_policy_thread_specification_ctor_str @56 + ??0invalid_scheduler_policy_thread_specification@Concurrency@@QEAA@XZ=invalid_scheduler_policy_thread_specification_ctor @57 + ??0invalid_scheduler_policy_value@Concurrency@@QEAA@PEBD@Z=invalid_scheduler_policy_value_ctor_str @58 + ??0invalid_scheduler_policy_value@Concurrency@@QEAA@XZ=invalid_scheduler_policy_value_ctor @59 + ??0message_not_found@Concurrency@@QEAA@PEBD@Z @60 PRIVATE + ??0message_not_found@Concurrency@@QEAA@XZ @61 PRIVATE + ??0missing_wait@Concurrency@@QEAA@PEBD@Z @62 PRIVATE + ??0missing_wait@Concurrency@@QEAA@XZ @63 PRIVATE + ??0nested_scheduler_missing_detach@Concurrency@@QEAA@PEBD@Z @64 PRIVATE + ??0nested_scheduler_missing_detach@Concurrency@@QEAA@XZ @65 PRIVATE + ??0operation_timed_out@Concurrency@@QEAA@PEBD@Z @66 PRIVATE + ??0operation_timed_out@Concurrency@@QEAA@XZ @67 PRIVATE + ??0reader_writer_lock@Concurrency@@QEAA@XZ=reader_writer_lock_ctor @68 + ??0scheduler_not_attached@Concurrency@@QEAA@PEBD@Z @69 PRIVATE + ??0scheduler_not_attached@Concurrency@@QEAA@XZ @70 PRIVATE + ??0scheduler_resource_allocation_error@Concurrency@@QEAA@J@Z=scheduler_resource_allocation_error_ctor @71 + ??0scheduler_resource_allocation_error@Concurrency@@QEAA@PEBDJ@Z=scheduler_resource_allocation_error_ctor_name @72 + ??0scoped_lock@critical_section@Concurrency@@QEAA@AEAV12@@Z=critical_section_scoped_lock_ctor @73 + ??0scoped_lock@reader_writer_lock@Concurrency@@QEAA@AEAV12@@Z=reader_writer_lock_scoped_lock_ctor @74 + ??0scoped_lock_read@reader_writer_lock@Concurrency@@QEAA@AEAV12@@Z=reader_writer_lock_scoped_lock_read_ctor @75 + ??0task_canceled@details@Concurrency@@QEAA@PEBD@Z @76 PRIVATE + ??0task_canceled@details@Concurrency@@QEAA@XZ @77 PRIVATE + ??0unsupported_os@Concurrency@@QEAA@PEBD@Z @78 PRIVATE + ??0unsupported_os@Concurrency@@QEAA@XZ @79 PRIVATE + ??1SchedulerPolicy@Concurrency@@QEAA@XZ=SchedulerPolicy_dtor @80 + ??1_NonReentrantBlockingLock@details@Concurrency@@QEAA@XZ=_ReentrantBlockingLock_dtor @81 + ??1_ReentrantBlockingLock@details@Concurrency@@QEAA@XZ=_ReentrantBlockingLock_dtor @82 + ??1_Scoped_lock@_NonReentrantPPLLock@details@Concurrency@@QEAA@XZ=_NonReentrantPPLLock__Scoped_lock_dtor @83 + ??1_Scoped_lock@_ReentrantPPLLock@details@Concurrency@@QEAA@XZ=_ReentrantPPLLock__Scoped_lock_dtor @84 + ??1_SpinLock@details@Concurrency@@QEAA@XZ @85 PRIVATE + ??1_TaskCollection@details@Concurrency@@QEAA@XZ @86 PRIVATE + ??1_Timer@details@Concurrency@@IEAA@XZ @87 PRIVATE + ??1__non_rtti_object@std@@UEAA@XZ=MSVCRT___non_rtti_object_dtor @88 + ??1bad_cast@std@@UEAA@XZ=MSVCRT_bad_cast_dtor @89 + ??1bad_typeid@std@@UEAA@XZ=MSVCRT_bad_typeid_dtor @90 + ??1critical_section@Concurrency@@QEAA@XZ=critical_section_dtor @91 + ??1event@Concurrency@@QEAA@XZ=event_dtor @92 + ??1exception@std@@UEAA@XZ=MSVCRT_exception_dtor @93 + ??1reader_writer_lock@Concurrency@@QEAA@XZ=reader_writer_lock_dtor @94 + ??1scoped_lock@critical_section@Concurrency@@QEAA@XZ=critical_section_scoped_lock_dtor @95 + ??1scoped_lock@reader_writer_lock@Concurrency@@QEAA@XZ=reader_writer_lock_scoped_lock_dtor @96 + ??1scoped_lock_read@reader_writer_lock@Concurrency@@QEAA@XZ=reader_writer_lock_scoped_lock_read_dtor @97 + ??1type_info@@UEAA@XZ=MSVCRT_type_info_dtor @98 + ??2@YAPEAX_K@Z=MSVCRT_operator_new @99 + ??2@YAPEAX_KHPEBDH@Z=MSVCRT_operator_new_dbg @100 + ??3@YAXPEAX@Z=MSVCRT_operator_delete @101 + ??4?$_SpinWait@$00@details@Concurrency@@QEAAAEAV012@AEBV012@@Z @102 PRIVATE + ??4?$_SpinWait@$0A@@details@Concurrency@@QEAAAEAV012@AEBV012@@Z @103 PRIVATE + ??4SchedulerPolicy@Concurrency@@QEAAAEAV01@AEBV01@@Z=SchedulerPolicy_op_assign @104 + ??4__non_rtti_object@std@@QEAAAEAV01@AEBV01@@Z=MSVCRT___non_rtti_object_opequals @105 + ??4bad_cast@std@@QEAAAEAV01@AEBV01@@Z=MSVCRT_bad_cast_opequals @106 + ??4bad_typeid@std@@QEAAAEAV01@AEBV01@@Z=MSVCRT_bad_typeid_opequals @107 + ??4exception@std@@QEAAAEAV01@AEBV01@@Z=MSVCRT_exception_opequals @108 + ??8type_info@@QEBA_NAEBV0@@Z=MSVCRT_type_info_opequals_equals @109 + ??9type_info@@QEBA_NAEBV0@@Z=MSVCRT_type_info_opnot_equals @110 + ??_7__non_rtti_object@std@@6B@=MSVCRT___non_rtti_object_vtable @111 DATA + ??_7bad_cast@std@@6B@=MSVCRT_bad_cast_vtable @112 DATA + ??_7bad_typeid@std@@6B@=MSVCRT_bad_typeid_vtable @113 DATA + ??_7exception@@6B@=MSVCRT_exception_old_vtable @114 DATA + ??_7exception@std@@6B@=MSVCRT_exception_vtable @115 DATA + ??_F?$_SpinWait@$00@details@Concurrency@@QEAAXXZ=SpinWait_dtor @116 + ??_F?$_SpinWait@$0A@@details@Concurrency@@QEAAXXZ=SpinWait_dtor @117 + ??_Fbad_cast@std@@QEAAXXZ=MSVCRT_bad_cast_default_ctor @118 + ??_Fbad_typeid@std@@QEAAXXZ=MSVCRT_bad_typeid_default_ctor @119 + ??_U@YAPEAX_K@Z=MSVCRT_operator_new @120 + ??_U@YAPEAX_KHPEBDH@Z=MSVCRT_operator_new_dbg @121 + ??_V@YAXPEAX@Z=MSVCRT_operator_delete @122 + ?Alloc@Concurrency@@YAPEAX_K@Z=Concurrency_Alloc @123 + ?Block@Context@Concurrency@@SAXXZ=Context_Block @124 + ?Create@CurrentScheduler@Concurrency@@SAXAEBVSchedulerPolicy@2@@Z=CurrentScheduler_Create @125 + ?Create@Scheduler@Concurrency@@SAPEAV12@AEBVSchedulerPolicy@2@@Z=Scheduler_Create @126 + ?CreateResourceManager@Concurrency@@YAPEAUIResourceManager@1@XZ @127 PRIVATE + ?CreateScheduleGroup@CurrentScheduler@Concurrency@@SAPEAVScheduleGroup@2@XZ=CurrentScheduler_CreateScheduleGroup @128 + ?CurrentContext@Context@Concurrency@@SAPEAV12@XZ=Context_CurrentContext @129 + ?Detach@CurrentScheduler@Concurrency@@SAXXZ=CurrentScheduler_Detach @130 + ?DisableTracing@Concurrency@@YAJXZ @131 PRIVATE + ?EnableTracing@Concurrency@@YAJXZ @132 PRIVATE + ?Free@Concurrency@@YAXPEAX@Z=Concurrency_Free @133 + ?Get@CurrentScheduler@Concurrency@@SAPEAVScheduler@2@XZ=CurrentScheduler_Get @134 + ?GetExecutionContextId@Concurrency@@YAIXZ @135 PRIVATE + ?GetNumberOfVirtualProcessors@CurrentScheduler@Concurrency@@SAIXZ=CurrentScheduler_GetNumberOfVirtualProcessors @136 + ?GetOSVersion@Concurrency@@YA?AW4OSVersion@IResourceManager@1@XZ @137 PRIVATE + ?GetPolicy@CurrentScheduler@Concurrency@@SA?AVSchedulerPolicy@2@XZ=CurrentScheduler_GetPolicy @138 + ?GetPolicyValue@SchedulerPolicy@Concurrency@@QEBAIW4PolicyElementKey@2@@Z=SchedulerPolicy_GetPolicyValue @139 + ?GetProcessorCount@Concurrency@@YAIXZ @140 PRIVATE + ?GetProcessorNodeCount@Concurrency@@YAIXZ @141 PRIVATE + ?GetSchedulerId@Concurrency@@YAIXZ @142 PRIVATE + ?GetSharedTimerQueue@details@Concurrency@@YAPEAXXZ @143 PRIVATE + ?Id@Context@Concurrency@@SAIXZ=Context_Id @144 + ?Id@CurrentScheduler@Concurrency@@SAIXZ=CurrentScheduler_Id @145 + ?IsCurrentTaskCollectionCanceling@Context@Concurrency@@SA_NXZ=Context_IsCurrentTaskCollectionCanceling @146 + ?Log2@details@Concurrency@@YAK_K@Z @147 PRIVATE + ?Oversubscribe@Context@Concurrency@@SAX_N@Z=Context_Oversubscribe @148 + ?RegisterShutdownEvent@CurrentScheduler@Concurrency@@SAXPEAX@Z=CurrentScheduler_RegisterShutdownEvent @149 + ?ResetDefaultSchedulerPolicy@Scheduler@Concurrency@@SAXXZ=Scheduler_ResetDefaultSchedulerPolicy @150 + ?ScheduleGroupId@Context@Concurrency@@SAIXZ=Context_ScheduleGroupId @151 + ?ScheduleTask@CurrentScheduler@Concurrency@@SAXP6AXPEAX@Z0@Z=CurrentScheduler_ScheduleTask @152 + ?SetConcurrencyLimits@SchedulerPolicy@Concurrency@@QEAAXII@Z=SchedulerPolicy_SetConcurrencyLimits @153 + ?SetDefaultSchedulerPolicy@Scheduler@Concurrency@@SAXAEBVSchedulerPolicy@2@@Z=Scheduler_SetDefaultSchedulerPolicy @154 + ?SetPolicyValue@SchedulerPolicy@Concurrency@@QEAAIW4PolicyElementKey@2@I@Z=SchedulerPolicy_SetPolicyValue @155 + ?VirtualProcessorId@Context@Concurrency@@SAIXZ=Context_VirtualProcessorId @156 + ?Yield@Context@Concurrency@@SAXXZ=Context_Yield @157 + ?_Abort@_StructuredTaskCollection@details@Concurrency@@AEAAXXZ @158 PRIVATE + ?_Acquire@_NonReentrantBlockingLock@details@Concurrency@@QEAAXXZ=_ReentrantBlockingLock__Acquire @159 + ?_Acquire@_NonReentrantPPLLock@details@Concurrency@@QEAAXPEAX@Z=_NonReentrantPPLLock__Acquire @160 + ?_Acquire@_ReentrantBlockingLock@details@Concurrency@@QEAAXXZ=_ReentrantBlockingLock__Acquire @161 + ?_Acquire@_ReentrantLock@details@Concurrency@@QEAAXXZ @162 PRIVATE + ?_Acquire@_ReentrantPPLLock@details@Concurrency@@QEAAXPEAX@Z=_ReentrantPPLLock__Acquire @163 + ?_AcquireRead@_ReaderWriterLock@details@Concurrency@@QEAAXXZ @164 PRIVATE + ?_AcquireWrite@_ReaderWriterLock@details@Concurrency@@QEAAXXZ @165 PRIVATE + ?_Cancel@_StructuredTaskCollection@details@Concurrency@@QEAAXXZ @166 PRIVATE + ?_Cancel@_TaskCollection@details@Concurrency@@QEAAXXZ @167 PRIVATE + ?_CheckTaskCollection@_UnrealizedChore@details@Concurrency@@IEAAXXZ @168 PRIVATE + ?_ConcRT_Assert@details@Concurrency@@YAXPEBD0H@Z @169 PRIVATE + ?_ConcRT_CoreAssert@details@Concurrency@@YAXPEBD0H@Z @170 PRIVATE + ?_ConcRT_DumpMessage@details@Concurrency@@YAXPEB_WZZ @171 PRIVATE + ?_ConcRT_Trace@details@Concurrency@@YAXHPEB_WZZ @172 PRIVATE + ?_Copy_str@exception@std@@AEAAXPEBD@Z @173 PRIVATE + ?_DoYield@?$_SpinWait@$00@details@Concurrency@@IEAAXXZ=SpinWait__DoYield @174 + ?_DoYield@?$_SpinWait@$0A@@details@Concurrency@@IEAAXXZ=SpinWait__DoYield @175 + ?_IsCanceling@_StructuredTaskCollection@details@Concurrency@@QEAA_NXZ @176 PRIVATE + ?_IsCanceling@_TaskCollection@details@Concurrency@@QEAA_NXZ @177 PRIVATE + ?_Name_base@type_info@@CAPEBDPEBV1@PEAU__type_info_node@@@Z @178 PRIVATE + ?_Name_base_internal@type_info@@CAPEBDPEBV1@PEAU__type_info_node@@@Z @179 PRIVATE + ?_NumberOfSpins@?$_SpinWait@$00@details@Concurrency@@IEAAKXZ=SpinWait__NumberOfSpins @180 + ?_NumberOfSpins@?$_SpinWait@$0A@@details@Concurrency@@IEAAKXZ=SpinWait__NumberOfSpins @181 + ?_Release@_NonReentrantBlockingLock@details@Concurrency@@QEAAXXZ=_ReentrantBlockingLock__Release @182 + ?_Release@_NonReentrantPPLLock@details@Concurrency@@QEAAXXZ=_NonReentrantPPLLock__Release @183 + ?_Release@_ReentrantBlockingLock@details@Concurrency@@QEAAXXZ=_ReentrantBlockingLock__Release @184 + ?_Release@_ReentrantLock@details@Concurrency@@QEAAXXZ @185 PRIVATE + ?_Release@_ReentrantPPLLock@details@Concurrency@@QEAAXXZ=_ReentrantPPLLock__Release @186 + ?_ReleaseRead@_ReaderWriterLock@details@Concurrency@@QEAAXXZ @187 PRIVATE + ?_ReleaseWrite@_ReaderWriterLock@details@Concurrency@@QEAAXXZ @188 PRIVATE + ?_Reset@?$_SpinWait@$00@details@Concurrency@@IEAAXXZ=SpinWait__Reset @189 + ?_Reset@?$_SpinWait@$0A@@details@Concurrency@@IEAAXXZ=SpinWait__Reset @190 + ?_RunAndWait@_StructuredTaskCollection@details@Concurrency@@QEAA?AW4_TaskCollectionStatus@23@PEAV_UnrealizedChore@23@@Z @191 PRIVATE + ?_RunAndWait@_TaskCollection@details@Concurrency@@QEAA?AW4_TaskCollectionStatus@23@PEAV_UnrealizedChore@23@@Z @192 PRIVATE + ?_Schedule@_StructuredTaskCollection@details@Concurrency@@QEAAXPEAV_UnrealizedChore@23@@Z @193 PRIVATE + ?_Schedule@_TaskCollection@details@Concurrency@@QEAAXPEAV_UnrealizedChore@23@@Z @194 PRIVATE + ?_SetSpinCount@?$_SpinWait@$00@details@Concurrency@@QEAAXI@Z=SpinWait__SetSpinCount @195 + ?_SetSpinCount@?$_SpinWait@$0A@@details@Concurrency@@QEAAXI@Z=SpinWait__SetSpinCount @196 + ?_ShouldSpinAgain@?$_SpinWait@$00@details@Concurrency@@IEAA_NXZ=SpinWait__ShouldSpinAgain @197 + ?_ShouldSpinAgain@?$_SpinWait@$0A@@details@Concurrency@@IEAA_NXZ=SpinWait__ShouldSpinAgain @198 + ?_SpinOnce@?$_SpinWait@$00@details@Concurrency@@QEAA_NXZ=SpinWait__SpinOnce @199 + ?_SpinOnce@?$_SpinWait@$0A@@details@Concurrency@@QEAA_NXZ=SpinWait__SpinOnce @200 + ?_SpinYield@Context@Concurrency@@SAXXZ=Context__SpinYield @201 + ?_Start@_Timer@details@Concurrency@@IEAAXXZ @202 PRIVATE + ?_Stop@_Timer@details@Concurrency@@IEAAXXZ @203 PRIVATE + ?_Tidy@exception@std@@AEAAXXZ @204 PRIVATE + ?_Trace_ppl_function@Concurrency@@YAXAEBU_GUID@@EW4ConcRT_EventType@1@@Z=Concurrency__Trace_ppl_function @205 + ?_TryAcquire@_NonReentrantBlockingLock@details@Concurrency@@QEAA_NXZ=_ReentrantBlockingLock__TryAcquire @206 + ?_TryAcquire@_ReentrantBlockingLock@details@Concurrency@@QEAA_NXZ=_ReentrantBlockingLock__TryAcquire @207 + ?_TryAcquire@_ReentrantLock@details@Concurrency@@QEAA_NXZ @208 PRIVATE + ?_TryAcquireWrite@_ReaderWriterLock@details@Concurrency@@QEAA_NXZ @209 PRIVATE + ?_Type_info_dtor@type_info@@CAXPEAV1@@Z @210 PRIVATE + ?_Type_info_dtor_internal@type_info@@CAXPEAV1@@Z @211 PRIVATE + ?_ValidateExecute@@YAHP6A_JXZ@Z @212 PRIVATE + ?_ValidateExecute@@YAHP6GHXZ@Z @213 PRIVATE + ?_ValidateRead@@YAHPEBXI@Z @214 PRIVATE + ?_ValidateWrite@@YAHPEAXI@Z @215 PRIVATE + ?_Value@_SpinCount@details@Concurrency@@SAIXZ=SpinCount__Value @216 + ?__ExceptionPtrAssign@@YAXPEAXPEBX@Z=__ExceptionPtrAssign @217 + ?__ExceptionPtrCompare@@YA_NPEBX0@Z=__ExceptionPtrCompare @218 + ?__ExceptionPtrCopy@@YAXPEAXPEBX@Z=__ExceptionPtrCopy @219 + ?__ExceptionPtrCopyException@@YAXPEAXPEBX1@Z=__ExceptionPtrCopyException @220 + ?__ExceptionPtrCreate@@YAXPEAX@Z=__ExceptionPtrCreate @221 + ?__ExceptionPtrCurrentException@@YAXPEAX@Z=__ExceptionPtrCurrentException @222 + ?__ExceptionPtrDestroy@@YAXPEAX@Z=__ExceptionPtrDestroy @223 + ?__ExceptionPtrRethrow@@YAXPEBX@Z=__ExceptionPtrRethrow @224 + __uncaught_exception=MSVCRT___uncaught_exception @225 + ?_inconsistency@@YAXXZ @226 PRIVATE + ?_invalid_parameter@@YAXPEBG00I_K@Z=MSVCRT__invalid_parameter @227 + ?_is_exception_typeof@@YAHAEBVtype_info@@PEAU_EXCEPTION_POINTERS@@@Z=_is_exception_typeof @228 + ?_name_internal_method@type_info@@QEBAPEBDPEAU__type_info_node@@@Z=type_info_name_internal_method @229 + ?_open@@YAHPEBDHH@Z=MSVCRT__open @230 + ?_query_new_handler@@YAP6AH_K@ZXZ=MSVCRT__query_new_handler @231 + ?_query_new_mode@@YAHXZ=MSVCRT__query_new_mode @232 + ?_set_new_handler@@YAP6AH_K@ZH@Z @233 PRIVATE + ?_set_new_handler@@YAP6AH_K@ZP6AH0@Z@Z=MSVCRT__set_new_handler @234 + ?_set_new_mode@@YAHH@Z=MSVCRT__set_new_mode @235 + ?_set_se_translator@@YAP6AXIPEAU_EXCEPTION_POINTERS@@@ZH@Z @236 PRIVATE + ?_set_se_translator@@YAP6AXIPEAU_EXCEPTION_POINTERS@@@ZP6AXI0@Z@Z=MSVCRT__set_se_translator @237 + ?_sopen@@YAHPEBDHHH@Z=MSVCRT__sopen @238 + ?_type_info_dtor_internal_method@type_info@@QEAAXXZ @239 PRIVATE + ?_wopen@@YAHPEB_WHH@Z=MSVCRT__wopen @240 + ?_wsopen@@YAHPEB_WHHH@Z=MSVCRT__wsopen @241 + ?before@type_info@@QEBAHAEBV1@@Z=MSVCRT_type_info_before @242 + ?get_error_code@scheduler_resource_allocation_error@Concurrency@@QEBAJXZ=scheduler_resource_allocation_error_get_error_code @243 + ?lock@critical_section@Concurrency@@QEAAXXZ=critical_section_lock @244 + ?lock@reader_writer_lock@Concurrency@@QEAAXXZ=reader_writer_lock_lock @245 + ?lock_read@reader_writer_lock@Concurrency@@QEAAXXZ=reader_writer_lock_lock_read @246 + ?name@type_info@@QEBAPEBDPEAU__type_info_node@@@Z=type_info_name_internal_method @247 + ?native_handle@critical_section@Concurrency@@QEAAAEAV12@XZ=critical_section_native_handle @248 + ?raw_name@type_info@@QEBAPEBDXZ=MSVCRT_type_info_raw_name @249 + ?reset@event@Concurrency@@QEAAXXZ=event_reset @250 + ?set@event@Concurrency@@QEAAXXZ=event_set @251 + ?set_new_handler@@YAP6AXXZP6AXXZ@Z=MSVCRT_set_new_handler @252 + ?set_terminate@@YAP6AXXZH@Z @253 PRIVATE + ?set_terminate@@YAP6AXXZP6AXXZ@Z=MSVCRT_set_terminate @254 + ?set_unexpected@@YAP6AXXZH@Z @255 PRIVATE + ?set_unexpected@@YAP6AXXZP6AXXZ@Z=MSVCRT_set_unexpected @256 + ?swprintf@@YAHPAGIPBGZZ=MSVCRT__snwprintf @257 + ?swprintf@@YAHPA_WIPB_WZZ=MSVCRT__snwprintf @258 + ?terminate@@YAXXZ=MSVCRT_terminate @259 + ?try_lock@critical_section@Concurrency@@QEAA_NXZ=critical_section_try_lock @260 + ?try_lock@reader_writer_lock@Concurrency@@QEAA_NXZ=reader_writer_lock_try_lock @261 + ?try_lock_read@reader_writer_lock@Concurrency@@QEAA_NXZ=reader_writer_lock_try_lock_read @262 + ?unexpected@@YAXXZ=MSVCRT_unexpected @263 + ?unlock@critical_section@Concurrency@@QEAAXXZ=critical_section_unlock @264 + ?unlock@reader_writer_lock@Concurrency@@QEAAXXZ=reader_writer_lock_unlock @265 + ?vswprintf@@YAHPA_WIPB_WPAD@Z=MSVCRT_vsnwprintf @266 + ?wait@Concurrency@@YAXI@Z=Concurrency_wait @267 + ?wait@event@Concurrency@@QEAA_KI@Z=event_wait @268 + ?wait_for_multiple@event@Concurrency@@SA_KPEAPEAV12@_K_NI@Z=event_wait_for_multiple @269 + ?what@exception@std@@UEBAPEBDXZ=MSVCRT_what_exception @270 + $I10_OUTPUT=MSVCRT_I10_OUTPUT @271 + _CRT_RTC_INIT @272 + _CRT_RTC_INITW @273 + _CreateFrameInfo @274 + _CxxThrowException @275 + _FindAndUnlinkFrame @276 + _Getdays @277 + _Getmonths @278 + _Gettnames @279 + _HUGE=MSVCRT__HUGE @280 DATA + _IsExceptionObjectToBeDestroyed @281 + _NLG_Dispatch2 @282 PRIVATE + _NLG_Return @283 PRIVATE + _NLG_Return2 @284 PRIVATE + _SetImageBase @285 PRIVATE + _SetThrowImageBase @286 PRIVATE + _Strftime @287 + _XcptFilter @288 + __AdjustPointer @289 + __BuildCatchObject @290 PRIVATE + __BuildCatchObjectHelper @291 PRIVATE + __C_specific_handler=ntdll.__C_specific_handler @292 + __CppXcptFilter @293 + __CxxCallUnwindDelDtor @294 PRIVATE + __CxxCallUnwindDtor @295 PRIVATE + __CxxCallUnwindStdDelDtor @296 PRIVATE + __CxxCallUnwindVecDtor @297 PRIVATE + __CxxDetectRethrow @298 + __CxxExceptionFilter @299 + __CxxFrameHandler @300 + __CxxFrameHandler2=__CxxFrameHandler @301 + __CxxFrameHandler3=__CxxFrameHandler @302 + __CxxQueryExceptionSize @303 + __CxxRegisterExceptionObject @304 + __CxxUnregisterExceptionObject @305 + __DestructExceptionObject @306 + __FrameUnwindFilter @307 PRIVATE + __RTCastToVoid=MSVCRT___RTCastToVoid @308 + __RTDynamicCast=MSVCRT___RTDynamicCast @309 + __RTtypeid=MSVCRT___RTtypeid @310 + __STRINGTOLD @311 + __STRINGTOLD_L @312 PRIVATE + __TypeMatch @313 PRIVATE + ___lc_codepage_func @314 + ___lc_collate_cp_func @315 + ___lc_handle_func @316 + ___mb_cur_max_func=MSVCRT____mb_cur_max_func @317 + ___mb_cur_max_l_func @318 + ___setlc_active_func=MSVCRT____setlc_active_func @319 + ___unguarded_readlc_active_add_func=MSVCRT____unguarded_readlc_active_add_func @320 + __argc=MSVCRT___argc @321 DATA + __argv=MSVCRT___argv @322 DATA + __badioinfo=MSVCRT___badioinfo @323 DATA + __clean_type_info_names_internal @324 + __create_locale=MSVCRT__create_locale @325 + __crtCompareStringA @326 + __crtCompareStringW @327 + __crtLCMapStringA @328 + __crtLCMapStringW @329 + __daylight=MSVCRT___p__daylight @330 + __dllonexit @331 + __doserrno=MSVCRT___doserrno @332 + __dstbias=MSVCRT___p__dstbias @333 + ___fls_getvalue@4 @334 PRIVATE + ___fls_setvalue@8 @335 PRIVATE + __fpecode @336 + __free_locale=MSVCRT__free_locale @337 + __get_current_locale=MSVCRT__get_current_locale @338 + __get_flsindex @339 PRIVATE + __get_tlsindex @340 PRIVATE + __getmainargs @341 + __initenv=MSVCRT___initenv @342 DATA + __iob_func=__p__iob @343 + __isascii=MSVCRT___isascii @344 + __iscsym=MSVCRT___iscsym @345 + __iscsymf=MSVCRT___iscsymf @346 + __iswcsym @347 PRIVATE + __iswcsymf @348 PRIVATE + __lconv_init @349 + __mb_cur_max=MSVCRT___mb_cur_max @350 DATA + __p___argc=MSVCRT___p___argc @351 + __p___argv=MSVCRT___p___argv @352 + __p___initenv @353 + __p___mb_cur_max @354 + __p___wargv=MSVCRT___p___wargv @355 + __p___winitenv @356 + __p__acmdln=MSVCRT___p__acmdln @357 + __p__commode @358 + __p__daylight=MSVCRT___p__daylight @359 + __p__dstbias=MSVCRT___p__dstbias @360 + __p__environ=MSVCRT___p__environ @361 + __p__fmode=MSVCRT___p__fmode @362 + __p__iob @363 + __p__mbcasemap @364 PRIVATE + __p__mbctype @365 + __p__pctype=MSVCRT___p__pctype @366 + __p__pgmptr=MSVCRT___p__pgmptr @367 + __p__pwctype @368 PRIVATE + __p__timezone=MSVCRT___p__timezone @369 + __p__tzname @370 + __p__wcmdln=MSVCRT___p__wcmdln @371 + __p__wenviron=MSVCRT___p__wenviron @372 + __p__wpgmptr=MSVCRT___p__wpgmptr @373 + __pctype_func=MSVCRT___pctype_func @374 + __pioinfo=MSVCRT___pioinfo @375 DATA + __pwctype_func @376 PRIVATE + __pxcptinfoptrs=MSVCRT___pxcptinfoptrs @377 + __report_gsfailure @378 PRIVATE + __set_app_type=MSVCRT___set_app_type @379 + __set_flsgetvalue @380 PRIVATE + __setlc_active=MSVCRT___setlc_active @381 DATA + __setusermatherr=MSVCRT___setusermatherr @382 + __strncnt=MSVCRT___strncnt @383 + __swprintf_l=MSVCRT___swprintf_l @384 + __sys_errlist @385 + __sys_nerr @386 + __threadhandle=kernel32.GetCurrentThread @387 + __threadid=kernel32.GetCurrentThreadId @388 + __timezone=MSVCRT___p__timezone @389 + __toascii=MSVCRT___toascii @390 + __tzname=__p__tzname @391 + __unDName @392 + __unDNameEx @393 + __unDNameHelper @394 PRIVATE + __unguarded_readlc_active=MSVCRT___unguarded_readlc_active @395 DATA + __vswprintf_l=MSVCRT_vswprintf_l @396 + __wargv=MSVCRT___wargv @397 DATA + __wcserror=MSVCRT___wcserror @398 + __wcserror_s=MSVCRT___wcserror_s @399 + __wcsncnt @400 PRIVATE + __wgetmainargs @401 + __winitenv=MSVCRT___winitenv @402 DATA + _abnormal_termination @403 + _abs64 @404 + _access=MSVCRT__access @405 + _access_s=MSVCRT__access_s @406 + _acmdln=MSVCRT__acmdln @407 DATA + _aligned_free @408 + _aligned_malloc @409 + _aligned_msize @410 + _aligned_offset_malloc @411 + _aligned_offset_realloc @412 + _aligned_offset_recalloc @413 PRIVATE + _aligned_realloc @414 + _aligned_recalloc @415 PRIVATE + _amsg_exit @416 + _assert=MSVCRT__assert @417 + _atodbl=MSVCRT__atodbl @418 + _atodbl_l=MSVCRT__atodbl_l @419 + _atof_l=MSVCRT__atof_l @420 + _atoflt=MSVCRT__atoflt @421 + _atoflt_l=MSVCRT__atoflt_l @422 + _atoi64=MSVCRT__atoi64 @423 + _atoi64_l=MSVCRT__atoi64_l @424 + _atoi_l=MSVCRT__atoi_l @425 + _atol_l=MSVCRT__atol_l @426 + _atoldbl=MSVCRT__atoldbl @427 + _atoldbl_l @428 PRIVATE + _beep=MSVCRT__beep @429 + _beginthread @430 + _beginthreadex @431 + _byteswap_uint64 @432 + _byteswap_ulong=MSVCRT__byteswap_ulong @433 + _byteswap_ushort @434 + _c_exit=MSVCRT__c_exit @435 + _cabs=MSVCRT__cabs @436 + _callnewh @437 + _calloc_crt=MSVCRT_calloc @438 + _cexit=MSVCRT__cexit @439 + _cgets @440 + _cgets_s @441 PRIVATE + _cgetws @442 PRIVATE + _cgetws_s @443 PRIVATE + _chdir=MSVCRT__chdir @444 + _chdrive=MSVCRT__chdrive @445 + _chgsign=MSVCRT__chgsign @446 + _chgsignf=MSVCRT__chgsignf @447 + _chmod=MSVCRT__chmod @448 + _chsize=MSVCRT__chsize @449 + _chsize_s=MSVCRT__chsize_s @450 + _clearfp @451 + _close=MSVCRT__close @452 + _commit=MSVCRT__commit @453 + _commode=MSVCRT__commode @454 DATA + _configthreadlocale @455 + _control87 @456 + _controlfp @457 + _controlfp_s @458 + _copysign=MSVCRT__copysign @459 + _copysignf=MSVCRT__copysignf @460 + _cprintf @461 + _cprintf_l @462 PRIVATE + _cprintf_p @463 PRIVATE + _cprintf_p_l @464 PRIVATE + _cprintf_s @465 PRIVATE + _cprintf_s_l @466 PRIVATE + _cputs @467 + _cputws @468 + _creat=MSVCRT__creat @469 + _create_locale=MSVCRT__create_locale @470 + __crt_debugger_hook=MSVCRT__crt_debugger_hook @471 + _cscanf @472 + _cscanf_l @473 + _cscanf_s @474 + _cscanf_s_l @475 + _ctime32=MSVCRT__ctime32 @476 + _ctime32_s=MSVCRT__ctime32_s @477 + _ctime64=MSVCRT__ctime64 @478 + _ctime64_s=MSVCRT__ctime64_s @479 + _cwait @480 + _cwprintf @481 + _cwprintf_l @482 PRIVATE + _cwprintf_p @483 PRIVATE + _cwprintf_p_l @484 PRIVATE + _cwprintf_s @485 PRIVATE + _cwprintf_s_l @486 PRIVATE + _cwscanf @487 + _cwscanf_l @488 + _cwscanf_s @489 + _cwscanf_s_l @490 + _daylight=MSVCRT___daylight @491 DATA + _difftime32=MSVCRT__difftime32 @492 + _difftime64=MSVCRT__difftime64 @493 + _dosmaperr @494 PRIVATE + _dstbias=MSVCRT__dstbias @495 DATA + _dup=MSVCRT__dup @496 + _dup2=MSVCRT__dup2 @497 + _dupenv_s @498 + _ecvt=MSVCRT__ecvt @499 + _ecvt_s=MSVCRT__ecvt_s @500 + _encoded_null @501 + _endthread @502 + _endthreadex @503 + _environ=MSVCRT__environ @504 DATA + _eof=MSVCRT__eof @505 + _errno=MSVCRT__errno @506 + _execl @507 + _execle @508 + _execlp @509 + _execlpe @510 + _execv @511 + _execve=MSVCRT__execve @512 + _execvp @513 + _execvpe @514 + _exit=MSVCRT__exit @515 + _expand @516 + _fclose_nolock=MSVCRT__fclose_nolock @517 + _fcloseall=MSVCRT__fcloseall @518 + _fcvt=MSVCRT__fcvt @519 + _fcvt_s=MSVCRT__fcvt_s @520 + _fdopen=MSVCRT__fdopen @521 + _fflush_nolock=MSVCRT__fflush_nolock @522 + _fgetc_nolock=MSVCRT__fgetc_nolock @523 + _fgetchar=MSVCRT__fgetchar @524 + _fgetwc_nolock=MSVCRT__fgetwc_nolock @525 + _fgetwchar=MSVCRT__fgetwchar @526 + _filbuf=MSVCRT__filbuf @527 + _filelength=MSVCRT__filelength @528 + _filelengthi64=MSVCRT__filelengthi64 @529 + _fileno=MSVCRT__fileno @530 + _findclose=MSVCRT__findclose @531 + _findfirst32=MSVCRT__findfirst32 @532 + _findfirst32i64 @533 PRIVATE + _findfirst64=MSVCRT__findfirst64 @534 + _findfirst64i32=MSVCRT__findfirst64i32 @535 + _findnext32=MSVCRT__findnext32 @536 + _findnext32i64 @537 PRIVATE + _findnext64=MSVCRT__findnext64 @538 + _findnext64i32=MSVCRT__findnext64i32 @539 + _finite=MSVCRT__finite @540 + _finitef=MSVCRT__finitef @541 + _flsbuf=MSVCRT__flsbuf @542 + _flushall=MSVCRT__flushall @543 + _fmode=MSVCRT__fmode @544 DATA + _fpclass=MSVCRT__fpclass @545 + _fpieee_flt @546 + _fpreset @547 + _fprintf_l @548 PRIVATE + _fprintf_p @549 PRIVATE + _fprintf_p_l @550 PRIVATE + _fprintf_s_l @551 PRIVATE + _fputc_nolock=MSVCRT__fputc_nolock @552 + _fputchar=MSVCRT__fputchar @553 + _fputwc_nolock=MSVCRT__fputwc_nolock @554 + _fputwchar=MSVCRT__fputwchar @555 + _fread_nolock=MSVCRT__fread_nolock @556 + _fread_nolock_s=MSVCRT__fread_nolock_s @557 + _free_locale=MSVCRT__free_locale @558 + _freea @559 PRIVATE + _freea_s @560 PRIVATE + _freefls @561 PRIVATE + _fscanf_l=MSVCRT__fscanf_l @562 + _fscanf_s_l=MSVCRT__fscanf_s_l @563 + _fseek_nolock=MSVCRT__fseek_nolock @564 + _fseeki64=MSVCRT__fseeki64 @565 + _fseeki64_nolock=MSVCRT__fseeki64_nolock @566 + _fsopen=MSVCRT__fsopen @567 + _fstat32=MSVCRT__fstat32 @568 + _fstat32i64=MSVCRT__fstat32i64 @569 + _fstat64=MSVCRT__fstat64 @570 + _fstat64i32=MSVCRT__fstat64i32 @571 + _ftell_nolock=MSVCRT__ftell_nolock @572 + _ftelli64=MSVCRT__ftelli64 @573 + _ftelli64_nolock=MSVCRT__ftelli64_nolock @574 + _ftime32=MSVCRT__ftime32 @575 + _ftime32_s=MSVCRT__ftime32_s @576 + _ftime64=MSVCRT__ftime64 @577 + _ftime64_s=MSVCRT__ftime64_s @578 + _fullpath=MSVCRT__fullpath @579 + _futime32 @580 + _futime64 @581 + _fwprintf_l=MSVCRT__fwprintf_l @582 + _fwprintf_p @583 PRIVATE + _fwprintf_p_l @584 PRIVATE + _fwprintf_s_l @585 PRIVATE + _fwrite_nolock=MSVCRT__fwrite_nolock @586 + _fwscanf_l=MSVCRT__fwscanf_l @587 + _fwscanf_s_l=MSVCRT__fwscanf_s_l @588 + _gcvt=MSVCRT__gcvt @589 + _gcvt_s=MSVCRT__gcvt_s @590 + _get_current_locale=MSVCRT__get_current_locale @591 + _get_daylight @592 + _get_doserrno @593 + _get_dstbias=MSVCRT__get_dstbias @594 + _get_errno @595 + _get_fmode=MSVCRT__get_fmode @596 + _get_heap_handle @597 + _get_invalid_parameter_handler @598 + _get_osfhandle=MSVCRT__get_osfhandle @599 + _get_output_format=MSVCRT__get_output_format @600 + _get_pgmptr @601 + _get_printf_count_output=MSVCRT__get_printf_count_output @602 + _get_purecall_handler @603 + _get_terminate=MSVCRT__get_terminate @604 + _get_timezone @605 + _get_tzname=MSVCRT__get_tzname @606 + _get_unexpected=MSVCRT__get_unexpected @607 + _get_wpgmptr @608 + _getc_nolock=MSVCRT__fgetc_nolock @609 + _getch @610 + _getch_nolock @611 + _getche @612 + _getche_nolock @613 + _getcwd=MSVCRT__getcwd @614 + _getdcwd=MSVCRT__getdcwd @615 + _getdcwd_nolock @616 PRIVATE + _getdiskfree=MSVCRT__getdiskfree @617 + _getdllprocaddr @618 + _getdrive=MSVCRT__getdrive @619 + _getdrives=kernel32.GetLogicalDrives @620 + _getmaxstdio=MSVCRT__getmaxstdio @621 + _getmbcp @622 + _getpid @623 + _getptd @624 + _getsystime @625 PRIVATE + _getw=MSVCRT__getw @626 + _getwc_nolock=MSVCRT__fgetwc_nolock @627 + _getwch @628 + _getwch_nolock @629 + _getwche @630 + _getwche_nolock @631 + _getws=MSVCRT__getws @632 + _getws_s @633 PRIVATE + _gmtime32=MSVCRT__gmtime32 @634 + _gmtime32_s=MSVCRT__gmtime32_s @635 + _gmtime64=MSVCRT__gmtime64 @636 + _gmtime64_s=MSVCRT__gmtime64_s @637 + _heapadd @638 + _heapchk @639 + _heapmin @640 + _heapset @641 + _heapused @642 PRIVATE + _heapwalk @643 + _hypot @644 + _hypotf=MSVCRT__hypotf @645 + _i64toa=ntdll._i64toa @646 + _i64toa_s=MSVCRT__i64toa_s @647 + _i64tow=ntdll._i64tow @648 + _i64tow_s=MSVCRT__i64tow_s @649 + _initptd @650 PRIVATE + _initterm @651 + _initterm_e @652 + _invalid_parameter=MSVCRT__invalid_parameter @653 + _invalid_parameter_noinfo @654 + _invalid_parameter_noinfo_noreturn @655 + _invoke_watson @656 PRIVATE + _iob=MSVCRT__iob @657 DATA + _isalnum_l=MSVCRT__isalnum_l @658 + _isalpha_l=MSVCRT__isalpha_l @659 + _isatty=MSVCRT__isatty @660 + _iscntrl_l=MSVCRT__iscntrl_l @661 + _isctype=MSVCRT__isctype @662 + _isctype_l=MSVCRT__isctype_l @663 + _isdigit_l=MSVCRT__isdigit_l @664 + _isgraph_l=MSVCRT__isgraph_l @665 + _isleadbyte_l=MSVCRT__isleadbyte_l @666 + _islower_l=MSVCRT__islower_l @667 + _ismbbalnum @668 PRIVATE + _ismbbalnum_l @669 PRIVATE + _ismbbalpha @670 PRIVATE + _ismbbalpha_l @671 PRIVATE + _ismbbgraph @672 PRIVATE + _ismbbgraph_l @673 PRIVATE + _ismbbkalnum @674 PRIVATE + _ismbbkalnum_l @675 PRIVATE + _ismbbkana @676 + _ismbbkana_l @677 PRIVATE + _ismbbkprint @678 PRIVATE + _ismbbkprint_l @679 PRIVATE + _ismbbkpunct @680 PRIVATE + _ismbbkpunct_l @681 PRIVATE + _ismbblead @682 + _ismbblead_l @683 + _ismbbprint @684 PRIVATE + _ismbbprint_l @685 PRIVATE + _ismbbpunct @686 PRIVATE + _ismbbpunct_l @687 PRIVATE + _ismbbtrail @688 + _ismbbtrail_l @689 + _ismbcalnum @690 + _ismbcalnum_l @691 PRIVATE + _ismbcalpha @692 + _ismbcalpha_l @693 PRIVATE + _ismbcdigit @694 + _ismbcdigit_l @695 PRIVATE + _ismbcgraph @696 + _ismbcgraph_l @697 PRIVATE + _ismbchira @698 + _ismbchira_l @699 PRIVATE + _ismbckata @700 + _ismbckata_l @701 PRIVATE + _ismbcl0 @702 + _ismbcl0_l @703 + _ismbcl1 @704 + _ismbcl1_l @705 + _ismbcl2 @706 + _ismbcl2_l @707 + _ismbclegal @708 + _ismbclegal_l @709 + _ismbclower @710 + _ismbclower_l @711 PRIVATE + _ismbcprint @712 + _ismbcprint_l @713 PRIVATE + _ismbcpunct @714 + _ismbcpunct_l @715 PRIVATE + _ismbcspace @716 + _ismbcspace_l @717 PRIVATE + _ismbcsymbol @718 + _ismbcsymbol_l @719 PRIVATE + _ismbcupper @720 + _ismbcupper_l @721 PRIVATE + _ismbslead @722 + _ismbslead_l @723 PRIVATE + _ismbstrail @724 + _ismbstrail_l @725 PRIVATE + _isnan=MSVCRT__isnan @726 + _isnanf=MSVCRT__isnanf @727 + _isprint_l=MSVCRT__isprint_l @728 + _ispunct_l @729 PRIVATE + _isspace_l=MSVCRT__isspace_l @730 + _isupper_l=MSVCRT__isupper_l @731 + _iswalnum_l=MSVCRT__iswalnum_l @732 + _iswalpha_l=MSVCRT__iswalpha_l @733 + _iswcntrl_l=MSVCRT__iswcntrl_l @734 + _iswcsym_l @735 PRIVATE + _iswcsymf_l @736 PRIVATE + _iswctype_l=MSVCRT__iswctype_l @737 + _iswdigit_l=MSVCRT__iswdigit_l @738 + _iswgraph_l=MSVCRT__iswgraph_l @739 + _iswlower_l=MSVCRT__iswlower_l @740 + _iswprint_l=MSVCRT__iswprint_l @741 + _iswpunct_l=MSVCRT__iswpunct_l @742 + _iswspace_l=MSVCRT__iswspace_l @743 + _iswupper_l=MSVCRT__iswupper_l @744 + _iswxdigit_l=MSVCRT__iswxdigit_l @745 + _isxdigit_l=MSVCRT__isxdigit_l @746 + _itoa=MSVCRT__itoa @747 + _itoa_s=MSVCRT__itoa_s @748 + _itow=ntdll._itow @749 + _itow_s=MSVCRT__itow_s @750 + _j0=MSVCRT__j0 @751 + _j1=MSVCRT__j1 @752 + _jn=MSVCRT__jn @753 + _kbhit @754 + _lfind @755 + _lfind_s @756 + _loaddll @757 + _local_unwind @758 + _localtime32=MSVCRT__localtime32 @759 + _localtime32_s @760 + _localtime64=MSVCRT__localtime64 @761 + _localtime64_s @762 + _lock @763 + _lock_file=MSVCRT__lock_file @764 + _locking=MSVCRT__locking @765 + _logb=MSVCRT__logb @766 + _logbf=MSVCRT__logbf @767 + _lrotl=MSVCRT__lrotl @768 + _lrotr=MSVCRT__lrotr @769 + _lsearch @770 + _lsearch_s @771 PRIVATE + _lseek=MSVCRT__lseek @772 + _lseeki64=MSVCRT__lseeki64 @773 + _ltoa=ntdll._ltoa @774 + _ltoa_s=MSVCRT__ltoa_s @775 + _ltow=ntdll._ltow @776 + _ltow_s=MSVCRT__ltow_s @777 + _makepath=MSVCRT__makepath @778 + _makepath_s=MSVCRT__makepath_s @779 + _malloc_crt=MSVCRT_malloc @780 + _mbbtombc @781 + _mbbtombc_l @782 PRIVATE + _mbbtype @783 + _mbbtype_l @784 PRIVATE + _mbccpy @785 + _mbccpy_l @786 + _mbccpy_s @787 + _mbccpy_s_l @788 + _mbcjistojms @789 + _mbcjistojms_l @790 PRIVATE + _mbcjmstojis @791 + _mbcjmstojis_l @792 PRIVATE + _mbclen @793 + _mbclen_l @794 PRIVATE + _mbctohira @795 + _mbctohira_l @796 PRIVATE + _mbctokata @797 + _mbctokata_l @798 PRIVATE + _mbctolower @799 + _mbctolower_l @800 PRIVATE + _mbctombb @801 + _mbctombb_l @802 PRIVATE + _mbctoupper @803 + _mbctoupper_l @804 PRIVATE + _mbctype=MSVCRT_mbctype @805 DATA + _mblen_l @806 PRIVATE + _mbsbtype @807 + _mbsbtype_l @808 PRIVATE + _mbscat_s @809 + _mbscat_s_l @810 + _mbschr @811 + _mbschr_l @812 PRIVATE + _mbscmp @813 + _mbscmp_l @814 PRIVATE + _mbscoll @815 + _mbscoll_l @816 + _mbscpy_s @817 + _mbscpy_s_l @818 + _mbscspn @819 + _mbscspn_l @820 PRIVATE + _mbsdec @821 + _mbsdec_l @822 PRIVATE + _mbsicmp @823 + _mbsicmp_l @824 PRIVATE + _mbsicoll @825 + _mbsicoll_l @826 + _mbsinc @827 + _mbsinc_l @828 PRIVATE + _mbslen @829 + _mbslen_l @830 + _mbslwr @831 + _mbslwr_l @832 PRIVATE + _mbslwr_s @833 + _mbslwr_s_l @834 PRIVATE + _mbsnbcat @835 + _mbsnbcat_l @836 PRIVATE + _mbsnbcat_s @837 + _mbsnbcat_s_l @838 PRIVATE + _mbsnbcmp @839 + _mbsnbcmp_l @840 PRIVATE + _mbsnbcnt @841 + _mbsnbcnt_l @842 PRIVATE + _mbsnbcoll @843 + _mbsnbcoll_l @844 + _mbsnbcpy @845 + _mbsnbcpy_l @846 PRIVATE + _mbsnbcpy_s @847 + _mbsnbcpy_s_l @848 + _mbsnbicmp @849 + _mbsnbicmp_l @850 PRIVATE + _mbsnbicoll @851 + _mbsnbicoll_l @852 + _mbsnbset @853 + _mbsnbset_l @854 PRIVATE + _mbsnbset_s @855 PRIVATE + _mbsnbset_s_l @856 PRIVATE + _mbsncat @857 + _mbsncat_l @858 PRIVATE + _mbsncat_s @859 PRIVATE + _mbsncat_s_l @860 PRIVATE + _mbsnccnt @861 + _mbsnccnt_l @862 PRIVATE + _mbsncmp @863 + _mbsncmp_l @864 PRIVATE + _mbsncoll @865 PRIVATE + _mbsncoll_l @866 PRIVATE + _mbsncpy @867 + _mbsncpy_l @868 PRIVATE + _mbsncpy_s @869 PRIVATE + _mbsncpy_s_l @870 PRIVATE + _mbsnextc @871 + _mbsnextc_l @872 PRIVATE + _mbsnicmp @873 + _mbsnicmp_l @874 PRIVATE + _mbsnicoll @875 PRIVATE + _mbsnicoll_l @876 PRIVATE + _mbsninc @877 + _mbsninc_l @878 PRIVATE + _mbsnlen @879 + _mbsnlen_l @880 + _mbsnset @881 + _mbsnset_l @882 PRIVATE + _mbsnset_s @883 PRIVATE + _mbsnset_s_l @884 PRIVATE + _mbspbrk @885 + _mbspbrk_l @886 PRIVATE + _mbsrchr @887 + _mbsrchr_l @888 PRIVATE + _mbsrev @889 + _mbsrev_l @890 PRIVATE + _mbsset @891 + _mbsset_l @892 PRIVATE + _mbsset_s @893 PRIVATE + _mbsset_s_l @894 PRIVATE + _mbsspn @895 + _mbsspn_l @896 PRIVATE + _mbsspnp @897 + _mbsspnp_l @898 PRIVATE + _mbsstr @899 + _mbsstr_l @900 PRIVATE + _mbstok @901 + _mbstok_l @902 + _mbstok_s @903 + _mbstok_s_l @904 + _mbstowcs_l=MSVCRT__mbstowcs_l @905 + _mbstowcs_s_l=MSVCRT__mbstowcs_s_l @906 + _mbstrlen @907 + _mbstrlen_l @908 + _mbstrnlen @909 PRIVATE + _mbstrnlen_l @910 PRIVATE + _mbsupr @911 + _mbsupr_l @912 PRIVATE + _mbsupr_s @913 + _mbsupr_s_l @914 PRIVATE + _mbtowc_l=MSVCRT_mbtowc_l @915 + _memccpy=ntdll._memccpy @916 + _memicmp=MSVCRT__memicmp @917 + _memicmp_l=MSVCRT__memicmp_l @918 + _mkdir=MSVCRT__mkdir @919 + _mkgmtime32=MSVCRT__mkgmtime32 @920 + _mkgmtime64=MSVCRT__mkgmtime64 @921 + _mktemp=MSVCRT__mktemp @922 + _mktemp_s=MSVCRT__mktemp_s @923 + _mktime32=MSVCRT__mktime32 @924 + _mktime64=MSVCRT__mktime64 @925 + _msize @926 + _nextafter=MSVCRT__nextafter @927 + _nextafterf=MSVCRT__nextafterf @928 + _onexit=MSVCRT__onexit @929 + _open=MSVCRT__open @930 + _open_osfhandle=MSVCRT__open_osfhandle @931 + _pclose=MSVCRT__pclose @932 + _pctype=MSVCRT__pctype @933 DATA + _pgmptr=MSVCRT__pgmptr @934 DATA + _pipe=MSVCRT__pipe @935 + _popen=MSVCRT__popen @936 + _printf_l @937 PRIVATE + _printf_p @938 PRIVATE + _printf_p_l @939 PRIVATE + _printf_s_l @940 PRIVATE + _purecall @941 + _putc_nolock=MSVCRT__fputc_nolock @942 + _putch @943 + _putch_nolock @944 + _putenv @945 + _putenv_s @946 + _putw=MSVCRT__putw @947 + _putwc_nolock=MSVCRT__fputwc_nolock @948 + _putwch @949 + _putwch_nolock @950 + _putws=MSVCRT__putws @951 + _read=MSVCRT__read @952 + _realloc_crt=MSVCRT_realloc @953 + _recalloc @954 + _recalloc_crt @955 PRIVATE + _resetstkoflw=MSVCRT__resetstkoflw @956 + _rmdir=MSVCRT__rmdir @957 + _rmtmp=MSVCRT__rmtmp @958 + _rotl @959 + _rotl64 @960 + _rotr @961 + _rotr64 @962 + _scalb=MSVCRT__scalb @963 + _scalbf=MSVCRT__scalbf @964 + _scanf_l=MSVCRT__scanf_l @965 + _scanf_s_l=MSVCRT__scanf_s_l @966 + _scprintf=MSVCRT__scprintf @967 + _scprintf_l @968 PRIVATE + _scprintf_p @969 PRIVATE + _scprintf_p_l @970 PRIVATE + _scwprintf=MSVCRT__scwprintf @971 + _scwprintf_l @972 PRIVATE + _scwprintf_p @973 PRIVATE + _scwprintf_p_l @974 PRIVATE + _searchenv=MSVCRT__searchenv @975 + _searchenv_s=MSVCRT__searchenv_s @976 + _set_SSE2_enable=MSVCRT__set_SSE2_enable @977 + _set_abort_behavior=MSVCRT__set_abort_behavior @978 + _set_controlfp @979 + _set_doserrno @980 + _set_errno @981 + _set_error_mode @982 + _set_fmode=MSVCRT__set_fmode @983 + _set_invalid_parameter_handler @984 + _set_malloc_crt_max_wait @985 PRIVATE + _set_output_format=MSVCRT__set_output_format @986 + _set_printf_count_output=MSVCRT__set_printf_count_output @987 + _set_purecall_handler @988 + _seterrormode @989 + _setjmp=MSVCRT__setjmp @990 + _setjmpex=MSVCRT__setjmpex @991 + _setmaxstdio=MSVCRT__setmaxstdio @992 + _setmbcp @993 + _setmode=MSVCRT__setmode @994 + _setsystime @995 PRIVATE + _sleep=MSVCRT__sleep @996 + _snprintf=MSVCRT__snprintf @997 + _snprintf_c @998 PRIVATE + _snprintf_c_l @999 PRIVATE + _snprintf_l=MSVCRT__snprintf_l @1000 + _snprintf_s=MSVCRT__snprintf_s @1001 + _snprintf_s_l @1002 PRIVATE + _snscanf=MSVCRT__snscanf @1003 + _snscanf_l=MSVCRT__snscanf_l @1004 + _snscanf_s=MSVCRT__snscanf_s @1005 + _snscanf_s_l=MSVCRT__snscanf_s_l @1006 + _snwprintf=MSVCRT__snwprintf @1007 + _snwprintf_l=MSVCRT__snwprintf_l @1008 + _snwprintf_s=MSVCRT__snwprintf_s @1009 + _snwprintf_s_l=MSVCRT__snwprintf_s_l @1010 + _snwscanf=MSVCRT__snwscanf @1011 + _snwscanf_l=MSVCRT__snwscanf_l @1012 + _snwscanf_s=MSVCRT__snwscanf_s @1013 + _snwscanf_s_l=MSVCRT__snwscanf_s_l @1014 + _sopen=MSVCRT__sopen @1015 + _sopen_s=MSVCRT__sopen_s @1016 + _spawnl=MSVCRT__spawnl @1017 + _spawnle=MSVCRT__spawnle @1018 + _spawnlp=MSVCRT__spawnlp @1019 + _spawnlpe=MSVCRT__spawnlpe @1020 + _spawnv=MSVCRT__spawnv @1021 + _spawnve=MSVCRT__spawnve @1022 + _spawnvp=MSVCRT__spawnvp @1023 + _spawnvpe=MSVCRT__spawnvpe @1024 + _splitpath=MSVCRT__splitpath @1025 + _splitpath_s=MSVCRT__splitpath_s @1026 + _sprintf_l=MSVCRT_sprintf_l @1027 + _sprintf_p=MSVCRT__sprintf_p @1028 + _sprintf_p_l=MSVCRT_sprintf_p_l @1029 + _sprintf_s_l=MSVCRT_sprintf_s_l @1030 + _sscanf_l=MSVCRT__sscanf_l @1031 + _sscanf_s_l=MSVCRT__sscanf_s_l @1032 + _stat32=MSVCRT__stat32 @1033 + _stat32i64=MSVCRT__stat32i64 @1034 + _stat64=MSVCRT_stat64 @1035 + _stat64i32=MSVCRT__stat64i32 @1036 + _statusfp @1037 + _strcoll_l=MSVCRT_strcoll_l @1038 + _strdate=MSVCRT__strdate @1039 + _strdate_s @1040 + _strdup=MSVCRT__strdup @1041 + _strerror=MSVCRT__strerror @1042 + _strerror_s @1043 PRIVATE + _strftime_l=MSVCRT__strftime_l @1044 + _stricmp=MSVCRT__stricmp @1045 + _stricmp_l=MSVCRT__stricmp_l @1046 + _stricoll=MSVCRT__stricoll @1047 + _stricoll_l=MSVCRT__stricoll_l @1048 + _strlwr=MSVCRT__strlwr @1049 + _strlwr_l @1050 + _strlwr_s=MSVCRT__strlwr_s @1051 + _strlwr_s_l=MSVCRT__strlwr_s_l @1052 + _strncoll=MSVCRT__strncoll @1053 + _strncoll_l=MSVCRT__strncoll_l @1054 + _strnicmp=MSVCRT__strnicmp @1055 + _strnicmp_l=MSVCRT__strnicmp_l @1056 + _strnicoll=MSVCRT__strnicoll @1057 + _strnicoll_l=MSVCRT__strnicoll_l @1058 + _strnset=MSVCRT__strnset @1059 + _strnset_s=MSVCRT__strnset_s @1060 + _strrev=MSVCRT__strrev @1061 + _strset @1062 + _strset_s @1063 PRIVATE + _strtime=MSVCRT__strtime @1064 + _strtime_s @1065 + _strtod_l=MSVCRT_strtod_l @1066 + _strtoi64=MSVCRT_strtoi64 @1067 + _strtoi64_l=MSVCRT_strtoi64_l @1068 + _strtol_l=MSVCRT__strtol_l @1069 + _strtoui64=MSVCRT_strtoui64 @1070 + _strtoui64_l=MSVCRT_strtoui64_l @1071 + _strtoul_l=MSVCRT_strtoul_l @1072 + _strupr=MSVCRT__strupr @1073 + _strupr_l=MSVCRT__strupr_l @1074 + _strupr_s=MSVCRT__strupr_s @1075 + _strupr_s_l=MSVCRT__strupr_s_l @1076 + _strxfrm_l=MSVCRT__strxfrm_l @1077 + _swab=MSVCRT__swab @1078 + _swprintf=MSVCRT_swprintf @1079 + _swprintf_c @1080 PRIVATE + _swprintf_c_l @1081 PRIVATE + _swprintf_p @1082 PRIVATE + _swprintf_p_l=MSVCRT_swprintf_p_l @1083 + _swprintf_s_l=MSVCRT__swprintf_s_l @1084 + _swscanf_l=MSVCRT__swscanf_l @1085 + _swscanf_s_l=MSVCRT__swscanf_s_l @1086 + _sys_errlist=MSVCRT__sys_errlist @1087 DATA + _sys_nerr=MSVCRT__sys_nerr @1088 DATA + _tell=MSVCRT__tell @1089 + _telli64 @1090 + _tempnam=MSVCRT__tempnam @1091 + _time32=MSVCRT__time32 @1092 + _time64=MSVCRT__time64 @1093 + _timezone=MSVCRT___timezone @1094 DATA + _tolower=MSVCRT__tolower @1095 + _tolower_l=MSVCRT__tolower_l @1096 + _toupper=MSVCRT__toupper @1097 + _toupper_l=MSVCRT__toupper_l @1098 + _towlower_l=MSVCRT__towlower_l @1099 + _towupper_l=MSVCRT__towupper_l @1100 + _tzname=MSVCRT__tzname @1101 DATA + _tzset=MSVCRT__tzset @1102 + _ui64toa=ntdll._ui64toa @1103 + _ui64toa_s=MSVCRT__ui64toa_s @1104 + _ui64tow=ntdll._ui64tow @1105 + _ui64tow_s=MSVCRT__ui64tow_s @1106 + _ultoa=ntdll._ultoa @1107 + _ultoa_s=MSVCRT__ultoa_s @1108 + _ultow=ntdll._ultow @1109 + _ultow_s=MSVCRT__ultow_s @1110 + _umask=MSVCRT__umask @1111 + _umask_s @1112 PRIVATE + _ungetc_nolock=MSVCRT__ungetc_nolock @1113 + _ungetch @1114 + _ungetch_nolock @1115 + _ungetwc_nolock=MSVCRT__ungetwc_nolock @1116 + _ungetwch @1117 + _ungetwch_nolock @1118 + _unlink=MSVCRT__unlink @1119 + _unloaddll @1120 + _unlock @1121 + _unlock_file=MSVCRT__unlock_file @1122 + _utime32 @1123 + _utime64 @1124 + _vcprintf @1125 + _vcprintf_l @1126 PRIVATE + _vcprintf_p @1127 PRIVATE + _vcprintf_p_l @1128 PRIVATE + _vcprintf_s @1129 PRIVATE + _vcprintf_s_l @1130 PRIVATE + _vcwprintf @1131 + _vcwprintf_l @1132 PRIVATE + _vcwprintf_p @1133 PRIVATE + _vcwprintf_p_l @1134 PRIVATE + _vcwprintf_s @1135 PRIVATE + _vcwprintf_s_l @1136 PRIVATE + _vfprintf_l=MSVCRT__vfprintf_l @1137 + _vfprintf_p=MSVCRT__vfprintf_p @1138 + _vfprintf_p_l=MSVCRT__vfprintf_p_l @1139 + _vfprintf_s_l=MSVCRT__vfprintf_s_l @1140 + _vfwprintf_l=MSVCRT__vfwprintf_l @1141 + _vfwprintf_p=MSVCRT__vfwprintf_p @1142 + _vfwprintf_p_l=MSVCRT__vfwprintf_p_l @1143 + _vfwprintf_s_l=MSVCRT__vfwprintf_s_l @1144 + _vprintf_l @1145 PRIVATE + _vprintf_p @1146 PRIVATE + _vprintf_p_l @1147 PRIVATE + _vprintf_s_l @1148 PRIVATE + _vscprintf=MSVCRT__vscprintf @1149 + _vscprintf_l=MSVCRT__vscprintf_l @1150 + _vscprintf_p=MSVCRT__vscprintf_p @1151 + _vscprintf_p_l=MSVCRT__vscprintf_p_l @1152 + _vscwprintf=MSVCRT__vscwprintf @1153 + _vscwprintf_l=MSVCRT__vscwprintf_l @1154 + _vscwprintf_p=MSVCRT__vscwprintf_p @1155 + _vscwprintf_p_l=MSVCRT__vscwprintf_p_l @1156 + _vsnprintf=MSVCRT_vsnprintf @1157 + _vsnprintf_c=MSVCRT_vsnprintf @1158 + _vsnprintf_c_l=MSVCRT_vsnprintf_l @1159 + _vsnprintf_l=MSVCRT_vsnprintf_l @1160 + _vsnprintf_s=MSVCRT_vsnprintf_s @1161 + _vsnprintf_s_l=MSVCRT_vsnprintf_s_l @1162 + _vsnwprintf=MSVCRT_vsnwprintf @1163 + _vsnwprintf_l=MSVCRT_vsnwprintf_l @1164 + _vsnwprintf_s=MSVCRT_vsnwprintf_s @1165 + _vsnwprintf_s_l=MSVCRT_vsnwprintf_s_l @1166 + _vsprintf_l=MSVCRT_vsprintf_l @1167 + _vsprintf_p=MSVCRT_vsprintf_p @1168 + _vsprintf_p_l=MSVCRT_vsprintf_p_l @1169 + _vsprintf_s_l=MSVCRT_vsprintf_s_l @1170 + _vswprintf=MSVCRT_vswprintf @1171 + _vswprintf_c=MSVCRT_vsnwprintf @1172 + _vswprintf_c_l=MSVCRT_vsnwprintf_l @1173 + _vswprintf_l=MSVCRT_vswprintf_l @1174 + _vswprintf_p=MSVCRT__vswprintf_p @1175 + _vswprintf_p_l=MSVCRT_vswprintf_p_l @1176 + _vswprintf_s_l=MSVCRT_vswprintf_s_l @1177 + _vwprintf_l @1178 PRIVATE + _vwprintf_p @1179 PRIVATE + _vwprintf_p_l @1180 PRIVATE + _vwprintf_s_l @1181 PRIVATE + _waccess=MSVCRT__waccess @1182 + _waccess_s=MSVCRT__waccess_s @1183 + _wasctime=MSVCRT__wasctime @1184 + _wasctime_s=MSVCRT__wasctime_s @1185 + _wassert=MSVCRT__wassert @1186 + _wchdir=MSVCRT__wchdir @1187 + _wchmod=MSVCRT__wchmod @1188 + _wcmdln=MSVCRT__wcmdln @1189 DATA + _wcreat=MSVCRT__wcreat @1190 + _wcscoll_l=MSVCRT__wcscoll_l @1191 + _wcsdup=MSVCRT__wcsdup @1192 + _wcserror=MSVCRT__wcserror @1193 + _wcserror_s=MSVCRT__wcserror_s @1194 + _wcsftime_l=MSVCRT__wcsftime_l @1195 + _wcsicmp=MSVCRT__wcsicmp @1196 + _wcsicmp_l=MSVCRT__wcsicmp_l @1197 + _wcsicoll=MSVCRT__wcsicoll @1198 + _wcsicoll_l=MSVCRT__wcsicoll_l @1199 + _wcslwr=MSVCRT__wcslwr @1200 + _wcslwr_l=MSVCRT__wcslwr_l @1201 + _wcslwr_s=MSVCRT__wcslwr_s @1202 + _wcslwr_s_l=MSVCRT__wcslwr_s_l @1203 + _wcsncoll=MSVCRT__wcsncoll @1204 + _wcsncoll_l=MSVCRT__wcsncoll_l @1205 + _wcsnicmp=MSVCRT__wcsnicmp @1206 + _wcsnicmp_l=MSVCRT__wcsnicmp_l @1207 + _wcsnicoll=MSVCRT__wcsnicoll @1208 + _wcsnicoll_l=MSVCRT__wcsnicoll_l @1209 + _wcsnset=MSVCRT__wcsnset @1210 + _wcsnset_s=MSVCRT__wcsnset_s @1211 + _wcsrev=MSVCRT__wcsrev @1212 + _wcsset=MSVCRT__wcsset @1213 + _wcsset_s=MSVCRT__wcsset_s @1214 + _wcstod_l=MSVCRT__wcstod_l @1215 + _wcstoi64=MSVCRT__wcstoi64 @1216 + _wcstoi64_l=MSVCRT__wcstoi64_l @1217 + _wcstol_l=MSVCRT__wcstol_l @1218 + _wcstombs_l=MSVCRT__wcstombs_l @1219 + _wcstombs_s_l=MSVCRT__wcstombs_s_l @1220 + _wcstoui64=MSVCRT__wcstoui64 @1221 + _wcstoui64_l=MSVCRT__wcstoui64_l @1222 + _wcstoul_l=MSVCRT__wcstoul_l @1223 + _wcsupr=MSVCRT__wcsupr @1224 + _wcsupr_l=MSVCRT__wcsupr_l @1225 + _wcsupr_s=MSVCRT__wcsupr_s @1226 + _wcsupr_s_l=MSVCRT__wcsupr_s_l @1227 + _wcsxfrm_l=MSVCRT__wcsxfrm_l @1228 + _wctime32=MSVCRT__wctime32 @1229 + _wctime32_s=MSVCRT__wctime32_s @1230 + _wctime64=MSVCRT__wctime64 @1231 + _wctime64_s=MSVCRT__wctime64_s @1232 + _wctomb_l=MSVCRT__wctomb_l @1233 + _wctomb_s_l=MSVCRT__wctomb_s_l @1234 + _wdupenv_s @1235 + _wenviron=MSVCRT__wenviron @1236 DATA + _wexecl @1237 + _wexecle @1238 + _wexeclp @1239 + _wexeclpe @1240 + _wexecv @1241 + _wexecve @1242 + _wexecvp @1243 + _wexecvpe @1244 + _wfdopen=MSVCRT__wfdopen @1245 + _wfindfirst32=MSVCRT__wfindfirst32 @1246 + _wfindfirst32i64 @1247 PRIVATE + _wfindfirst64=MSVCRT__wfindfirst64 @1248 + _wfindfirst64i32=MSVCRT__wfindfirst64i32 @1249 + _wfindnext32=MSVCRT__wfindnext32 @1250 + _wfindnext32i64 @1251 PRIVATE + _wfindnext64=MSVCRT__wfindnext64 @1252 + _wfindnext64i32=MSVCRT__wfindnext64i32 @1253 + _wfopen=MSVCRT__wfopen @1254 + _wfopen_s=MSVCRT__wfopen_s @1255 + _wfreopen=MSVCRT__wfreopen @1256 + _wfreopen_s=MSVCRT__wfreopen_s @1257 + _wfsopen=MSVCRT__wfsopen @1258 + _wfullpath=MSVCRT__wfullpath @1259 + _wgetcwd=MSVCRT__wgetcwd @1260 + _wgetdcwd=MSVCRT__wgetdcwd @1261 + _wgetdcwd_nolock @1262 PRIVATE + _wgetenv=MSVCRT__wgetenv @1263 + _wgetenv_s @1264 + _wmakepath=MSVCRT__wmakepath @1265 + _wmakepath_s=MSVCRT__wmakepath_s @1266 + _wmkdir=MSVCRT__wmkdir @1267 + _wmktemp=MSVCRT__wmktemp @1268 + _wmktemp_s=MSVCRT__wmktemp_s @1269 + _wopen=MSVCRT__wopen @1270 + _wperror=MSVCRT__wperror @1271 + _wpgmptr=MSVCRT__wpgmptr @1272 DATA + _wpopen=MSVCRT__wpopen @1273 + _wprintf_l @1274 PRIVATE + _wprintf_p @1275 PRIVATE + _wprintf_p_l @1276 PRIVATE + _wprintf_s_l @1277 PRIVATE + _wputenv @1278 + _wputenv_s @1279 + _wremove=MSVCRT__wremove @1280 + _wrename=MSVCRT__wrename @1281 + _write=MSVCRT__write @1282 + _wrmdir=MSVCRT__wrmdir @1283 + _wscanf_l=MSVCRT__wscanf_l @1284 + _wscanf_s_l=MSVCRT__wscanf_s_l @1285 + _wsearchenv=MSVCRT__wsearchenv @1286 + _wsearchenv_s=MSVCRT__wsearchenv_s @1287 + _wsetlocale=MSVCRT__wsetlocale @1288 + _wsopen=MSVCRT__wsopen @1289 + _wsopen_s=MSVCRT__wsopen_s @1290 + _wspawnl=MSVCRT__wspawnl @1291 + _wspawnle=MSVCRT__wspawnle @1292 + _wspawnlp=MSVCRT__wspawnlp @1293 + _wspawnlpe=MSVCRT__wspawnlpe @1294 + _wspawnv=MSVCRT__wspawnv @1295 + _wspawnve=MSVCRT__wspawnve @1296 + _wspawnvp=MSVCRT__wspawnvp @1297 + _wspawnvpe=MSVCRT__wspawnvpe @1298 + _wsplitpath=MSVCRT__wsplitpath @1299 + _wsplitpath_s=MSVCRT__wsplitpath_s @1300 + _wstat32=MSVCRT__wstat32 @1301 + _wstat32i64=MSVCRT__wstat32i64 @1302 + _wstat64=MSVCRT__wstat64 @1303 + _wstat64i32=MSVCRT__wstat64i32 @1304 + _wstrdate=MSVCRT__wstrdate @1305 + _wstrdate_s @1306 + _wstrtime=MSVCRT__wstrtime @1307 + _wstrtime_s @1308 + _wsystem @1309 + _wtempnam=MSVCRT__wtempnam @1310 + _wtmpnam=MSVCRT__wtmpnam @1311 + _wtmpnam_s=MSVCRT__wtmpnam_s @1312 + _wtof=MSVCRT__wtof @1313 + _wtof_l=MSVCRT__wtof_l @1314 + _wtoi=MSVCRT__wtoi @1315 + _wtoi64=MSVCRT__wtoi64 @1316 + _wtoi64_l=MSVCRT__wtoi64_l @1317 + _wtoi_l=MSVCRT__wtoi_l @1318 + _wtol=MSVCRT__wtol @1319 + _wtol_l=MSVCRT__wtol_l @1320 + _wunlink=MSVCRT__wunlink @1321 + _wutime32 @1322 + _wutime64 @1323 + _y0=MSVCRT__y0 @1324 + _y1=MSVCRT__y1 @1325 + _yn=MSVCRT__yn @1326 + abort=MSVCRT_abort @1327 + abs=MSVCRT_abs @1328 + acos=MSVCRT_acos @1329 + acosf=MSVCRT_acosf @1330 + asctime=MSVCRT_asctime @1331 + asctime_s=MSVCRT_asctime_s @1332 + asin=MSVCRT_asin @1333 + asinf=MSVCRT_asinf @1334 + atan=MSVCRT_atan @1335 + atanf=MSVCRT_atanf @1336 + atan2=MSVCRT_atan2 @1337 + atan2f=MSVCRT_atan2f @1338 + atexit=MSVCRT_atexit @1339 PRIVATE + atof=MSVCRT_atof @1340 + atoi=MSVCRT_atoi @1341 + atol=MSVCRT_atol @1342 + bsearch=MSVCRT_bsearch @1343 + bsearch_s=MSVCRT_bsearch_s @1344 + btowc=MSVCRT_btowc @1345 + calloc=MSVCRT_calloc @1346 + ceil=MSVCRT_ceil @1347 + ceilf=MSVCRT_ceilf @1348 + clearerr=MSVCRT_clearerr @1349 + clearerr_s=MSVCRT_clearerr_s @1350 + clock=MSVCRT_clock @1351 + cos=MSVCRT_cos @1352 + cosf=MSVCRT_cosf @1353 + cosh=MSVCRT_cosh @1354 + coshf=MSVCRT_coshf @1355 + div=MSVCRT_div @1356 + exit=MSVCRT_exit @1357 + exp=MSVCRT_exp @1358 + expf=MSVCRT_expf @1359 + fabs=MSVCRT_fabs @1360 + fclose=MSVCRT_fclose @1361 + feof=MSVCRT_feof @1362 + ferror=MSVCRT_ferror @1363 + fflush=MSVCRT_fflush @1364 + fgetc=MSVCRT_fgetc @1365 + fgetpos=MSVCRT_fgetpos @1366 + fgets=MSVCRT_fgets @1367 + fgetwc=MSVCRT_fgetwc @1368 + fgetws=MSVCRT_fgetws @1369 + floor=MSVCRT_floor @1370 + floorf=MSVCRT_floorf @1371 + fmod=MSVCRT_fmod @1372 + fmodf=MSVCRT_fmodf @1373 + fopen=MSVCRT_fopen @1374 + fopen_s=MSVCRT_fopen_s @1375 + fprintf=MSVCRT_fprintf @1376 + fprintf_s=MSVCRT_fprintf_s @1377 + fputc=MSVCRT_fputc @1378 + fputs=MSVCRT_fputs @1379 + fputwc=MSVCRT_fputwc @1380 + fputws=MSVCRT_fputws @1381 + fread=MSVCRT_fread @1382 + fread_s=MSVCRT_fread_s @1383 + free=MSVCRT_free @1384 + freopen=MSVCRT_freopen @1385 + freopen_s=MSVCRT_freopen_s @1386 + frexp=MSVCRT_frexp @1387 + fscanf=MSVCRT_fscanf @1388 + fscanf_s=MSVCRT_fscanf_s @1389 + fseek=MSVCRT_fseek @1390 + fsetpos=MSVCRT_fsetpos @1391 + ftell=MSVCRT_ftell @1392 + fwprintf=MSVCRT_fwprintf @1393 + fwprintf_s=MSVCRT_fwprintf_s @1394 + fwrite=MSVCRT_fwrite @1395 + fwscanf=MSVCRT_fwscanf @1396 + fwscanf_s=MSVCRT_fwscanf_s @1397 + getc=MSVCRT_getc @1398 + getchar=MSVCRT_getchar @1399 + getenv=MSVCRT_getenv @1400 + getenv_s @1401 + gets=MSVCRT_gets @1402 + gets_s=MSVCRT_gets_s @1403 + getwc=MSVCRT_getwc @1404 + getwchar=MSVCRT_getwchar @1405 + is_wctype=ntdll.iswctype @1406 + isalnum=MSVCRT_isalnum @1407 + isalpha=MSVCRT_isalpha @1408 + iscntrl=MSVCRT_iscntrl @1409 + isdigit=MSVCRT_isdigit @1410 + isgraph=MSVCRT_isgraph @1411 + isleadbyte=MSVCRT_isleadbyte @1412 + islower=MSVCRT_islower @1413 + isprint=MSVCRT_isprint @1414 + ispunct=MSVCRT_ispunct @1415 + isspace=MSVCRT_isspace @1416 + isupper=MSVCRT_isupper @1417 + iswalnum=MSVCRT_iswalnum @1418 + iswalpha=ntdll.iswalpha @1419 + iswascii=MSVCRT_iswascii @1420 + iswcntrl=MSVCRT_iswcntrl @1421 + iswctype=ntdll.iswctype @1422 + iswdigit=MSVCRT_iswdigit @1423 + iswgraph=MSVCRT_iswgraph @1424 + iswlower=MSVCRT_iswlower @1425 + iswprint=MSVCRT_iswprint @1426 + iswpunct=MSVCRT_iswpunct @1427 + iswspace=MSVCRT_iswspace @1428 + iswupper=MSVCRT_iswupper @1429 + iswxdigit=MSVCRT_iswxdigit @1430 + isxdigit=MSVCRT_isxdigit @1431 + labs=MSVCRT_labs @1432 + ldexp=MSVCRT_ldexp @1433 + ldiv=MSVCRT_ldiv @1434 + llabs=MSVCRT_llabs @1435 + lldiv=MSVCRT_lldiv @1436 + localeconv=MSVCRT_localeconv @1437 + log=MSVCRT_log @1438 + logf=MSVCRT_logf @1439 + log10=MSVCRT_log10 @1440 + log10f=MSVCRT_log10f @1441 + longjmp=MSVCRT_longjmp @1442 + malloc=MSVCRT_malloc @1443 + mblen=MSVCRT_mblen @1444 + mbrlen=MSVCRT_mbrlen @1445 + mbrtowc=MSVCRT_mbrtowc @1446 + mbsrtowcs=MSVCRT_mbsrtowcs @1447 + mbsrtowcs_s=MSVCRT_mbsrtowcs_s @1448 + mbstowcs=MSVCRT_mbstowcs @1449 + mbstowcs_s=MSVCRT__mbstowcs_s @1450 + mbtowc=MSVCRT_mbtowc @1451 + memchr=MSVCRT_memchr @1452 + memcmp=MSVCRT_memcmp @1453 + memcpy=MSVCRT_memcpy @1454 + memcpy_s=MSVCRT_memcpy_s @1455 + memmove=MSVCRT_memmove @1456 + memmove_s=MSVCRT_memmove_s @1457 + memset=MSVCRT_memset @1458 + modf=MSVCRT_modf @1459 + modff=MSVCRT_modff @1460 + perror=MSVCRT_perror @1461 + pow=MSVCRT_pow @1462 + powf=MSVCRT_powf @1463 + printf=MSVCRT_printf @1464 + printf_s=MSVCRT_printf_s @1465 + putc=MSVCRT_putc @1466 + putchar=MSVCRT_putchar @1467 + puts=MSVCRT_puts @1468 + putwc=MSVCRT_fputwc @1469 + putwchar=MSVCRT__fputwchar @1470 + qsort=MSVCRT_qsort @1471 + qsort_s=MSVCRT_qsort_s @1472 + raise=MSVCRT_raise @1473 + rand=MSVCRT_rand @1474 + rand_s=MSVCRT_rand_s @1475 + realloc=MSVCRT_realloc @1476 + remove=MSVCRT_remove @1477 + rename=MSVCRT_rename @1478 + rewind=MSVCRT_rewind @1479 + scanf=MSVCRT_scanf @1480 + scanf_s=MSVCRT_scanf_s @1481 + setbuf=MSVCRT_setbuf @1482 + setjmp=MSVCRT__setjmp @1483 PRIVATE + setlocale=MSVCRT_setlocale @1484 + setvbuf=MSVCRT_setvbuf @1485 + signal=MSVCRT_signal @1486 + sin=MSVCRT_sin @1487 + sinf=MSVCRT_sinf @1488 + sinh=MSVCRT_sinh @1489 + sinhf=MSVCRT_sinhf @1490 + sprintf=MSVCRT_sprintf @1491 + sprintf_s=MSVCRT_sprintf_s @1492 + sqrt=MSVCRT_sqrt @1493 + sqrtf=MSVCRT_sqrtf @1494 + srand=MSVCRT_srand @1495 + sscanf=MSVCRT_sscanf @1496 + sscanf_s=MSVCRT_sscanf_s @1497 + strcat=ntdll.strcat @1498 + strcat_s=MSVCRT_strcat_s @1499 + strchr=MSVCRT_strchr @1500 + strcmp=MSVCRT_strcmp @1501 + strcoll=MSVCRT_strcoll @1502 + strcpy=MSVCRT_strcpy @1503 + strcpy_s=MSVCRT_strcpy_s @1504 + strcspn=MSVCRT_strcspn @1505 + strerror=MSVCRT_strerror @1506 + strerror_s=MSVCRT_strerror_s @1507 + strftime=MSVCRT_strftime @1508 + strlen=MSVCRT_strlen @1509 + strncat=MSVCRT_strncat @1510 + strncat_s=MSVCRT_strncat_s @1511 + strncmp=MSVCRT_strncmp @1512 + strncpy=MSVCRT_strncpy @1513 + strncpy_s=MSVCRT_strncpy_s @1514 + strnlen=MSVCRT_strnlen @1515 + strpbrk=MSVCRT_strpbrk @1516 + strrchr=MSVCRT_strrchr @1517 + strspn=ntdll.strspn @1518 + strstr=MSVCRT_strstr @1519 + strtod=MSVCRT_strtod @1520 + strtok=MSVCRT_strtok @1521 + strtok_s=MSVCRT_strtok_s @1522 + strtol=MSVCRT_strtol @1523 + strtoul=MSVCRT_strtoul @1524 + strxfrm=MSVCRT_strxfrm @1525 + swprintf_s=MSVCRT_swprintf_s @1526 + swscanf=MSVCRT_swscanf @1527 + swscanf_s=MSVCRT_swscanf_s @1528 + system=MSVCRT_system @1529 + tan=MSVCRT_tan @1530 + tanf=MSVCRT_tanf @1531 + tanh=MSVCRT_tanh @1532 + tanhf=MSVCRT_tanhf @1533 + tmpfile=MSVCRT_tmpfile @1534 + tmpfile_s=MSVCRT_tmpfile_s @1535 + tmpnam=MSVCRT_tmpnam @1536 + tmpnam_s=MSVCRT_tmpnam_s @1537 + tolower=MSVCRT_tolower @1538 + toupper=MSVCRT_toupper @1539 + towlower=MSVCRT_towlower @1540 + towupper=MSVCRT_towupper @1541 + ungetc=MSVCRT_ungetc @1542 + ungetwc=MSVCRT_ungetwc @1543 + vfprintf=MSVCRT_vfprintf @1544 + vfprintf_s=MSVCRT_vfprintf_s @1545 + vfwprintf=MSVCRT_vfwprintf @1546 + vfwprintf_s=MSVCRT_vfwprintf_s @1547 + vprintf=MSVCRT_vprintf @1548 + vprintf_s=MSVCRT_vprintf_s @1549 + vsprintf=MSVCRT_vsprintf @1550 + vsprintf_s=MSVCRT_vsprintf_s @1551 + vswprintf_s=MSVCRT_vswprintf_s @1552 + vwprintf=MSVCRT_vwprintf @1553 + vwprintf_s=MSVCRT_vwprintf_s @1554 + wcrtomb=MSVCRT_wcrtomb @1555 + wcrtomb_s @1556 PRIVATE + wcscat=ntdll.wcscat @1557 + wcscat_s=MSVCRT_wcscat_s @1558 + wcschr=MSVCRT_wcschr @1559 + wcscmp=MSVCRT_wcscmp @1560 + wcscoll=MSVCRT_wcscoll @1561 + wcscpy=ntdll.wcscpy @1562 + wcscpy_s=MSVCRT_wcscpy_s @1563 + wcscspn=ntdll.wcscspn @1564 + wcsftime=MSVCRT_wcsftime @1565 + wcslen=MSVCRT_wcslen @1566 + wcsncat=ntdll.wcsncat @1567 + wcsncat_s=MSVCRT_wcsncat_s @1568 + wcsncmp=MSVCRT_wcsncmp @1569 + wcsncpy=MSVCRT_wcsncpy @1570 + wcsncpy_s=MSVCRT_wcsncpy_s @1571 + wcsnlen=MSVCRT_wcsnlen @1572 + wcspbrk=MSVCRT_wcspbrk @1573 + wcsrchr=MSVCRT_wcsrchr @1574 + wcsrtombs=MSVCRT_wcsrtombs @1575 + wcsrtombs_s=MSVCRT_wcsrtombs_s @1576 + wcsspn=ntdll.wcsspn @1577 + wcsstr=MSVCRT_wcsstr @1578 + wcstod=MSVCRT_wcstod @1579 + wcstok=MSVCRT_wcstok @1580 + wcstok_s=MSVCRT_wcstok_s @1581 + wcstol=MSVCRT_wcstol @1582 + wcstombs=MSVCRT_wcstombs @1583 + wcstombs_s=MSVCRT_wcstombs_s @1584 + wcstoul=MSVCRT_wcstoul @1585 + wcsxfrm=MSVCRT_wcsxfrm @1586 + wctob=MSVCRT_wctob @1587 + wctomb=MSVCRT_wctomb @1588 + wctomb_s=MSVCRT_wctomb_s @1589 + wmemcpy_s @1590 + wmemmove_s @1591 + wprintf=MSVCRT_wprintf @1592 + wprintf_s=MSVCRT_wprintf_s @1593 + wscanf=MSVCRT_wscanf @1594 + wscanf_s=MSVCRT_wscanf_s @1595 diff --git a/lib64/wine/libmsvcr110.def b/lib64/wine/libmsvcr110.def new file mode 100644 index 0000000..6251e24 --- /dev/null +++ b/lib64/wine/libmsvcr110.def @@ -0,0 +1,1682 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/msvcr110/msvcr110.spec; do not edit! + +LIBRARY msvcr110.dll + +EXPORTS + ??0?$_SpinWait@$00@details@Concurrency@@QEAA@P6AXXZ@Z=SpinWait_ctor_yield @1 + ??0?$_SpinWait@$0A@@details@Concurrency@@QEAA@P6AXXZ@Z=SpinWait_ctor @2 + ??0SchedulerPolicy@Concurrency@@QEAA@_KZZ=SchedulerPolicy_ctor_policies @3 + ??0SchedulerPolicy@Concurrency@@QEAA@AEBV01@@Z=SchedulerPolicy_copy_ctor @4 + ??0SchedulerPolicy@Concurrency@@QEAA@XZ=SchedulerPolicy_ctor @5 + ??0_CancellationTokenState@details@Concurrency@@AEAA@XZ @6 PRIVATE + ??0_Cancellation_beacon@details@Concurrency@@QEAA@XZ @7 PRIVATE + ??0_Condition_variable@details@Concurrency@@QEAA@XZ=_Condition_variable_ctor @8 + ??0_Context@details@Concurrency@@QEAA@PEAVContext@2@@Z @9 PRIVATE + ??0_Interruption_exception@details@Concurrency@@QEAA@PEBD@Z @10 PRIVATE + ??0_Interruption_exception@details@Concurrency@@QEAA@XZ @11 PRIVATE + ??0_NonReentrantBlockingLock@details@Concurrency@@QEAA@XZ=_ReentrantBlockingLock_ctor @12 + ??0_NonReentrantPPLLock@details@Concurrency@@QEAA@XZ=_NonReentrantPPLLock_ctor @13 + ??0_ReaderWriterLock@details@Concurrency@@QEAA@XZ @14 PRIVATE + ??0_ReentrantBlockingLock@details@Concurrency@@QEAA@XZ=_ReentrantBlockingLock_ctor @15 + ??0_ReentrantLock@details@Concurrency@@QEAA@XZ @16 PRIVATE + ??0_ReentrantPPLLock@details@Concurrency@@QEAA@XZ=_ReentrantPPLLock_ctor @17 + ??0_Scheduler@details@Concurrency@@QEAA@PEAVScheduler@2@@Z=_Scheduler_ctor_sched @18 + ??0_Scoped_lock@_NonReentrantPPLLock@details@Concurrency@@QEAA@AEAV123@@Z=_NonReentrantPPLLock__Scoped_lock_ctor @19 + ??0_Scoped_lock@_ReentrantPPLLock@details@Concurrency@@QEAA@AEAV123@@Z=_ReentrantPPLLock__Scoped_lock_ctor @20 + ??0_SpinLock@details@Concurrency@@QEAA@AECJ@Z @21 PRIVATE + ??0_StructuredTaskCollection@details@Concurrency@@QEAA@PEAV_CancellationTokenState@12@@Z @22 PRIVATE + ??0_TaskCollection@details@Concurrency@@QEAA@PEAV_CancellationTokenState@12@@Z @23 PRIVATE + ??0_TaskCollection@details@Concurrency@@QEAA@XZ @24 PRIVATE + ??0_Timer@details@Concurrency@@IEAA@I_N@Z @25 PRIVATE + ??0__non_rtti_object@std@@QEAA@AEBV01@@Z=MSVCRT___non_rtti_object_copy_ctor @26 + ??0__non_rtti_object@std@@QEAA@PEBD@Z=MSVCRT___non_rtti_object_ctor @27 + ??0bad_cast@std@@AEAA@PEBQEBD@Z=MSVCRT_bad_cast_ctor @28 + ??0bad_cast@std@@QEAA@AEBV01@@Z=MSVCRT_bad_cast_copy_ctor @29 + ??0bad_cast@std@@QEAA@PEBD@Z=MSVCRT_bad_cast_ctor_charptr @30 + ??0bad_target@Concurrency@@QEAA@PEBD@Z @31 PRIVATE + ??0bad_target@Concurrency@@QEAA@XZ @32 PRIVATE + ??0bad_typeid@std@@QEAA@AEBV01@@Z=MSVCRT_bad_typeid_copy_ctor @33 + ??0bad_typeid@std@@QEAA@PEBD@Z=MSVCRT_bad_typeid_ctor @34 + ??0context_self_unblock@Concurrency@@QEAA@PEBD@Z @35 PRIVATE + ??0context_self_unblock@Concurrency@@QEAA@XZ @36 PRIVATE + ??0context_unblock_unbalanced@Concurrency@@QEAA@PEBD@Z @37 PRIVATE + ??0context_unblock_unbalanced@Concurrency@@QEAA@XZ @38 PRIVATE + ??0critical_section@Concurrency@@QEAA@XZ=critical_section_ctor @39 + ??0default_scheduler_exists@Concurrency@@QEAA@PEBD@Z @40 PRIVATE + ??0default_scheduler_exists@Concurrency@@QEAA@XZ @41 PRIVATE + ??0event@Concurrency@@QEAA@XZ=event_ctor @42 + ??0exception@std@@QEAA@AEBQEBD@Z=MSVCRT_exception_ctor @43 + ??0exception@std@@QEAA@AEBQEBDH@Z=MSVCRT_exception_ctor_noalloc @44 + ??0exception@std@@QEAA@AEBV01@@Z=MSVCRT_exception_copy_ctor @45 + ??0exception@std@@QEAA@XZ=MSVCRT_exception_default_ctor @46 + ??0improper_lock@Concurrency@@QEAA@PEBD@Z=improper_lock_ctor_str @47 + ??0improper_lock@Concurrency@@QEAA@XZ=improper_lock_ctor @48 + ??0improper_scheduler_attach@Concurrency@@QEAA@PEBD@Z=improper_scheduler_attach_ctor_str @49 + ??0improper_scheduler_attach@Concurrency@@QEAA@XZ=improper_scheduler_attach_ctor @50 + ??0improper_scheduler_detach@Concurrency@@QEAA@PEBD@Z=improper_scheduler_detach_ctor_str @51 + ??0improper_scheduler_detach@Concurrency@@QEAA@XZ=improper_scheduler_detach_ctor @52 + ??0improper_scheduler_reference@Concurrency@@QEAA@PEBD@Z @53 PRIVATE + ??0improper_scheduler_reference@Concurrency@@QEAA@XZ @54 PRIVATE + ??0invalid_link_target@Concurrency@@QEAA@PEBD@Z @55 PRIVATE + ??0invalid_link_target@Concurrency@@QEAA@XZ @56 PRIVATE + ??0invalid_multiple_scheduling@Concurrency@@QEAA@PEBD@Z @57 PRIVATE + ??0invalid_multiple_scheduling@Concurrency@@QEAA@XZ @58 PRIVATE + ??0invalid_operation@Concurrency@@QEAA@PEBD@Z @59 PRIVATE + ??0invalid_operation@Concurrency@@QEAA@XZ @60 PRIVATE + ??0invalid_oversubscribe_operation@Concurrency@@QEAA@PEBD@Z @61 PRIVATE + ??0invalid_oversubscribe_operation@Concurrency@@QEAA@XZ @62 PRIVATE + ??0invalid_scheduler_policy_key@Concurrency@@QEAA@PEBD@Z=invalid_scheduler_policy_key_ctor_str @63 + ??0invalid_scheduler_policy_key@Concurrency@@QEAA@XZ=invalid_scheduler_policy_key_ctor @64 + ??0invalid_scheduler_policy_thread_specification@Concurrency@@QEAA@PEBD@Z=invalid_scheduler_policy_thread_specification_ctor_str @65 + ??0invalid_scheduler_policy_thread_specification@Concurrency@@QEAA@XZ=invalid_scheduler_policy_thread_specification_ctor @66 + ??0invalid_scheduler_policy_value@Concurrency@@QEAA@PEBD@Z=invalid_scheduler_policy_value_ctor_str @67 + ??0invalid_scheduler_policy_value@Concurrency@@QEAA@XZ=invalid_scheduler_policy_value_ctor @68 + ??0message_not_found@Concurrency@@QEAA@PEBD@Z @69 PRIVATE + ??0message_not_found@Concurrency@@QEAA@XZ @70 PRIVATE + ??0missing_wait@Concurrency@@QEAA@PEBD@Z @71 PRIVATE + ??0missing_wait@Concurrency@@QEAA@XZ @72 PRIVATE + ??0nested_scheduler_missing_detach@Concurrency@@QEAA@PEBD@Z @73 PRIVATE + ??0nested_scheduler_missing_detach@Concurrency@@QEAA@XZ @74 PRIVATE + ??0operation_timed_out@Concurrency@@QEAA@PEBD@Z @75 PRIVATE + ??0operation_timed_out@Concurrency@@QEAA@XZ @76 PRIVATE + ??0reader_writer_lock@Concurrency@@QEAA@XZ=reader_writer_lock_ctor @77 + ??0scheduler_not_attached@Concurrency@@QEAA@PEBD@Z @78 PRIVATE + ??0scheduler_not_attached@Concurrency@@QEAA@XZ @79 PRIVATE + ??0scheduler_resource_allocation_error@Concurrency@@QEAA@J@Z=scheduler_resource_allocation_error_ctor @80 + ??0scheduler_resource_allocation_error@Concurrency@@QEAA@PEBDJ@Z=scheduler_resource_allocation_error_ctor_name @81 + ??0scheduler_worker_creation_error@Concurrency@@QEAA@J@Z @82 PRIVATE + ??0scheduler_worker_creation_error@Concurrency@@QEAA@PEBDJ@Z @83 PRIVATE + ??0scoped_lock@critical_section@Concurrency@@QEAA@AEAV12@@Z=critical_section_scoped_lock_ctor @84 + ??0scoped_lock@reader_writer_lock@Concurrency@@QEAA@AEAV12@@Z=reader_writer_lock_scoped_lock_ctor @85 + ??0scoped_lock_read@reader_writer_lock@Concurrency@@QEAA@AEAV12@@Z=reader_writer_lock_scoped_lock_read_ctor @86 + ??0task_canceled@Concurrency@@QEAA@PEBD@Z @87 PRIVATE + ??0task_canceled@Concurrency@@QEAA@XZ @88 PRIVATE + ??0unsupported_os@Concurrency@@QEAA@PEBD@Z @89 PRIVATE + ??0unsupported_os@Concurrency@@QEAA@XZ @90 PRIVATE + ??1SchedulerPolicy@Concurrency@@QEAA@XZ=SchedulerPolicy_dtor @91 + ??1_CancellationTokenState@details@Concurrency@@UEAA@XZ @92 PRIVATE + ??1_Cancellation_beacon@details@Concurrency@@QEAA@XZ @93 PRIVATE + ??1_Condition_variable@details@Concurrency@@QEAA@XZ=_Condition_variable_dtor @94 + ??1_NonReentrantBlockingLock@details@Concurrency@@QEAA@XZ=_ReentrantBlockingLock_dtor @95 + ??1_ReentrantBlockingLock@details@Concurrency@@QEAA@XZ=_ReentrantBlockingLock_dtor @96 + ??1_Scoped_lock@_NonReentrantPPLLock@details@Concurrency@@QEAA@XZ=_NonReentrantPPLLock__Scoped_lock_dtor @97 + ??1_Scoped_lock@_ReentrantPPLLock@details@Concurrency@@QEAA@XZ=_ReentrantPPLLock__Scoped_lock_dtor @98 + ??1_SpinLock@details@Concurrency@@QEAA@XZ @99 PRIVATE + ??1_TaskCollection@details@Concurrency@@QEAA@XZ @100 PRIVATE + ??1_Timer@details@Concurrency@@MEAA@XZ @101 PRIVATE + ??1__non_rtti_object@std@@UEAA@XZ=MSVCRT___non_rtti_object_dtor @102 + ??1bad_cast@std@@UEAA@XZ=MSVCRT_bad_cast_dtor @103 + ??1bad_typeid@std@@UEAA@XZ=MSVCRT_bad_typeid_dtor @104 + ??1critical_section@Concurrency@@QEAA@XZ=critical_section_dtor @105 + ??1event@Concurrency@@QEAA@XZ=event_dtor @106 + ??1exception@std@@UEAA@XZ=MSVCRT_exception_dtor @107 + ??1reader_writer_lock@Concurrency@@QEAA@XZ=reader_writer_lock_dtor @108 + ??1scoped_lock@critical_section@Concurrency@@QEAA@XZ=critical_section_scoped_lock_dtor @109 + ??1scoped_lock@reader_writer_lock@Concurrency@@QEAA@XZ=reader_writer_lock_scoped_lock_dtor @110 + ??1scoped_lock_read@reader_writer_lock@Concurrency@@QEAA@XZ=reader_writer_lock_scoped_lock_read_dtor @111 + ??1type_info@@UEAA@XZ=MSVCRT_type_info_dtor @112 + ??2@YAPEAX_K@Z=MSVCRT_operator_new @113 + ??2@YAPEAX_KHPEBDH@Z=MSVCRT_operator_new_dbg @114 + ??3@YAXPEAX@Z=MSVCRT_operator_delete @115 + ??3@YAXPEAXHPEBDH@Z @116 PRIVATE + ??4?$_SpinWait@$00@details@Concurrency@@QEAAAEAV012@AEBV012@@Z @117 PRIVATE + ??4?$_SpinWait@$0A@@details@Concurrency@@QEAAAEAV012@AEBV012@@Z @118 PRIVATE + ??4SchedulerPolicy@Concurrency@@QEAAAEAV01@AEBV01@@Z=SchedulerPolicy_op_assign @119 + ??4__non_rtti_object@std@@QEAAAEAV01@AEBV01@@Z=MSVCRT___non_rtti_object_opequals @120 + ??4bad_cast@std@@QEAAAEAV01@AEBV01@@Z=MSVCRT_bad_cast_opequals @121 + ??4bad_typeid@std@@QEAAAEAV01@AEBV01@@Z=MSVCRT_bad_typeid_opequals @122 + ??4exception@std@@QEAAAEAV01@AEBV01@@Z=MSVCRT_exception_opequals @123 + ??8type_info@@QEBA_NAEBV0@@Z=MSVCRT_type_info_opequals_equals @124 + ??9type_info@@QEBA_NAEBV0@@Z=MSVCRT_type_info_opnot_equals @125 + ??_7__non_rtti_object@std@@6B@=MSVCRT___non_rtti_object_vtable @126 DATA + ??_7bad_cast@std@@6B@=MSVCRT_bad_cast_vtable @127 DATA + ??_7bad_typeid@std@@6B@=MSVCRT_bad_typeid_vtable @128 DATA + ??_7exception@std@@6B@=MSVCRT_exception_vtable @129 DATA + ??_F?$_SpinWait@$00@details@Concurrency@@QEAAXXZ=SpinWait_dtor @130 + ??_F?$_SpinWait@$0A@@details@Concurrency@@QEAAXXZ=SpinWait_dtor @131 + ??_F_Context@details@Concurrency@@QEAAXXZ @132 PRIVATE + ??_F_Scheduler@details@Concurrency@@QEAAXXZ=_Scheduler_ctor @133 + ??_Fbad_cast@std@@QEAAXXZ=MSVCRT_bad_cast_default_ctor @134 + ??_Fbad_typeid@std@@QEAAXXZ=MSVCRT_bad_typeid_default_ctor @135 + ??_U@YAPEAX_K@Z=MSVCRT_operator_new @136 + ??_U@YAPEAX_KHPEBDH@Z=MSVCRT_operator_new_dbg @137 + ??_V@YAXPEAX@Z=MSVCRT_operator_delete @138 + ??_V@YAXPEAXHPEBDH@Z @139 PRIVATE + ?Alloc@Concurrency@@YAPEAX_K@Z=Concurrency_Alloc @140 + ?Block@Context@Concurrency@@SAXXZ=Context_Block @141 + ?Create@CurrentScheduler@Concurrency@@SAXAEBVSchedulerPolicy@2@@Z=CurrentScheduler_Create @142 + ?Create@Scheduler@Concurrency@@SAPEAV12@AEBVSchedulerPolicy@2@@Z=Scheduler_Create @143 + ?CreateResourceManager@Concurrency@@YAPEAUIResourceManager@1@XZ @144 PRIVATE + ?CreateScheduleGroup@CurrentScheduler@Concurrency@@SAPEAVScheduleGroup@2@AEAVlocation@2@@Z=CurrentScheduler_CreateScheduleGroup_loc @145 + ?CreateScheduleGroup@CurrentScheduler@Concurrency@@SAPEAVScheduleGroup@2@XZ=CurrentScheduler_CreateScheduleGroup @146 + ?CurrentContext@Context@Concurrency@@SAPEAV12@XZ=Context_CurrentContext @147 + ?Detach@CurrentScheduler@Concurrency@@SAXXZ=CurrentScheduler_Detach @148 + ?DisableTracing@Concurrency@@YAJXZ @149 PRIVATE + ?EnableTracing@Concurrency@@YAJXZ @150 PRIVATE + ?Free@Concurrency@@YAXPEAX@Z=Concurrency_Free @151 + ?Get@CurrentScheduler@Concurrency@@SAPEAVScheduler@2@XZ=CurrentScheduler_Get @152 + ?GetExecutionContextId@Concurrency@@YAIXZ @153 PRIVATE + ?GetNumberOfVirtualProcessors@CurrentScheduler@Concurrency@@SAIXZ=CurrentScheduler_GetNumberOfVirtualProcessors @154 + ?GetOSVersion@Concurrency@@YA?AW4OSVersion@IResourceManager@1@XZ @155 PRIVATE + ?GetPolicy@CurrentScheduler@Concurrency@@SA?AVSchedulerPolicy@2@XZ=CurrentScheduler_GetPolicy @156 + ?GetPolicyValue@SchedulerPolicy@Concurrency@@QEBAIW4PolicyElementKey@2@@Z=SchedulerPolicy_GetPolicyValue @157 + ?GetProcessorCount@Concurrency@@YAIXZ @158 PRIVATE + ?GetProcessorNodeCount@Concurrency@@YAIXZ @159 PRIVATE + ?GetSchedulerId@Concurrency@@YAIXZ @160 PRIVATE + ?GetSharedTimerQueue@details@Concurrency@@YAPEAXXZ @161 PRIVATE + ?Id@Context@Concurrency@@SAIXZ=Context_Id @162 + ?Id@CurrentScheduler@Concurrency@@SAIXZ=CurrentScheduler_Id @163 + ?IsAvailableLocation@CurrentScheduler@Concurrency@@SA_NAEBVlocation@2@@Z=CurrentScheduler_IsAvailableLocation @164 + ?IsCurrentTaskCollectionCanceling@Context@Concurrency@@SA_NXZ=Context_IsCurrentTaskCollectionCanceling @165 + ?Log2@details@Concurrency@@YAK_K@Z @166 PRIVATE + ?Oversubscribe@Context@Concurrency@@SAX_N@Z=Context_Oversubscribe @167 + ?RegisterShutdownEvent@CurrentScheduler@Concurrency@@SAXPEAX@Z=CurrentScheduler_RegisterShutdownEvent @168 + ?ResetDefaultSchedulerPolicy@Scheduler@Concurrency@@SAXXZ=Scheduler_ResetDefaultSchedulerPolicy @169 + ?ScheduleGroupId@Context@Concurrency@@SAIXZ=Context_ScheduleGroupId @170 + ?ScheduleTask@CurrentScheduler@Concurrency@@SAXP6AXPEAX@Z0@Z=CurrentScheduler_ScheduleTask @171 + ?ScheduleTask@CurrentScheduler@Concurrency@@SAXP6AXPEAX@Z0AEAVlocation@2@@Z=CurrentScheduler_ScheduleTask_loc @172 + ?SetConcurrencyLimits@SchedulerPolicy@Concurrency@@QEAAXII@Z=SchedulerPolicy_SetConcurrencyLimits @173 + ?SetDefaultSchedulerPolicy@Scheduler@Concurrency@@SAXAEBVSchedulerPolicy@2@@Z=Scheduler_SetDefaultSchedulerPolicy @174 + ?SetPolicyValue@SchedulerPolicy@Concurrency@@QEAAIW4PolicyElementKey@2@I@Z=SchedulerPolicy_SetPolicyValue @175 + ?VirtualProcessorId@Context@Concurrency@@SAIXZ=Context_VirtualProcessorId @176 + ?Yield@Context@Concurrency@@SAXXZ=Context_Yield @177 + ?_Abort@_StructuredTaskCollection@details@Concurrency@@AEAAXXZ @178 PRIVATE + ?_Acquire@_NonReentrantBlockingLock@details@Concurrency@@QEAAXXZ=_ReentrantBlockingLock__Acquire @179 + ?_Acquire@_NonReentrantPPLLock@details@Concurrency@@QEAAXPEAX@Z=_NonReentrantPPLLock__Acquire @180 + ?_Acquire@_ReentrantBlockingLock@details@Concurrency@@QEAAXXZ=_ReentrantBlockingLock__Acquire @181 + ?_Acquire@_ReentrantLock@details@Concurrency@@QEAAXXZ @182 PRIVATE + ?_Acquire@_ReentrantPPLLock@details@Concurrency@@QEAAXPEAX@Z=_ReentrantPPLLock__Acquire @183 + ?_AcquireRead@_ReaderWriterLock@details@Concurrency@@QEAAXXZ @184 PRIVATE + ?_AcquireWrite@_ReaderWriterLock@details@Concurrency@@QEAAXXZ @185 PRIVATE + ?_Cancel@_CancellationTokenState@details@Concurrency@@QEAAXXZ @186 PRIVATE + ?_Cancel@_StructuredTaskCollection@details@Concurrency@@QEAAXXZ @187 PRIVATE + ?_Cancel@_TaskCollection@details@Concurrency@@QEAAXXZ @188 PRIVATE + ?_CheckTaskCollection@_UnrealizedChore@details@Concurrency@@IEAAXXZ @189 PRIVATE + ?_CleanupToken@_StructuredTaskCollection@details@Concurrency@@AEAAXXZ @190 PRIVATE + ?_ConcRT_Assert@details@Concurrency@@YAXPEBD0H@Z @191 PRIVATE + ?_ConcRT_CoreAssert@details@Concurrency@@YAXPEBD0H@Z @192 PRIVATE + ?_ConcRT_DumpMessage@details@Concurrency@@YAXPEB_WZZ @193 PRIVATE + ?_ConcRT_Trace@details@Concurrency@@YAXHPEB_WZZ @194 PRIVATE + ?_Confirm_cancel@_Cancellation_beacon@details@Concurrency@@QEAA_NXZ @195 PRIVATE + ?_Copy_str@exception@std@@AEAAXPEBD@Z @196 PRIVATE + ?_CurrentContext@_Context@details@Concurrency@@SA?AV123@XZ @197 PRIVATE + ?_Current_node@location@Concurrency@@SA?AV12@XZ @198 PRIVATE + ?_DeregisterCallback@_CancellationTokenState@details@Concurrency@@QEAAXPEAV_CancellationTokenRegistration@23@@Z @199 PRIVATE + ?_Destroy@_AsyncTaskCollection@details@Concurrency@@EEAAXXZ @200 PRIVATE + ?_Destroy@_CancellationTokenState@details@Concurrency@@EEAAXXZ @201 PRIVATE + ?_DoYield@?$_SpinWait@$00@details@Concurrency@@IEAAXXZ=SpinWait__DoYield @202 + ?_DoYield@?$_SpinWait@$0A@@details@Concurrency@@IEAAXXZ=SpinWait__DoYield @203 + ?_Get@_CurrentScheduler@details@Concurrency@@SA?AV_Scheduler@23@XZ=_CurrentScheduler__Get @204 + ?_GetConcRTTraceInfo@Concurrency@@YAPEBU_CONCRT_TRACE_INFO@details@1@XZ @205 PRIVATE + ?_GetConcurrency@details@Concurrency@@YAIXZ=_GetConcurrency @206 + ?_GetCurrentInlineDepth@_StackGuard@details@Concurrency@@CAAEA_KXZ @207 PRIVATE + ?_GetNumberOfVirtualProcessors@_CurrentScheduler@details@Concurrency@@SAIXZ=_CurrentScheduler__GetNumberOfVirtualProcessors @208 + ?_GetScheduler@_Scheduler@details@Concurrency@@QEAAPEAVScheduler@3@XZ=_Scheduler__GetScheduler @209 + ?_Id@_CurrentScheduler@details@Concurrency@@SAIXZ=_CurrentScheduler__Id @210 + ?_Invoke@_CancellationTokenRegistration@details@Concurrency@@AEAAXXZ @211 PRIVATE + ?_IsCanceling@_StructuredTaskCollection@details@Concurrency@@QEAA_NXZ @212 PRIVATE + ?_IsCanceling@_TaskCollection@details@Concurrency@@QEAA_NXZ @213 PRIVATE + ?_IsSynchronouslyBlocked@_Context@details@Concurrency@@QEBA_NXZ @214 PRIVATE + ?_Name_base@type_info@@CAPEBDPEBV1@PEAU__type_info_node@@@Z @215 PRIVATE + ?_Name_base_internal@type_info@@CAPEBDPEBV1@PEAU__type_info_node@@@Z @216 PRIVATE + ?_NewCollection@_AsyncTaskCollection@details@Concurrency@@SAPEAV123@PEAV_CancellationTokenState@23@@Z @217 PRIVATE + ?_NewTokenState@_CancellationTokenState@details@Concurrency@@SAPEAV123@XZ @218 PRIVATE + ?_NumberOfSpins@?$_SpinWait@$00@details@Concurrency@@IEAAKXZ=SpinWait__NumberOfSpins @219 + ?_NumberOfSpins@?$_SpinWait@$0A@@details@Concurrency@@IEAAKXZ=SpinWait__NumberOfSpins @220 + ?_Oversubscribe@_Context@details@Concurrency@@SAX_N@Z @221 PRIVATE + ?_Reference@_Scheduler@details@Concurrency@@QEAAIXZ=_Scheduler__Reference @222 + ?_RegisterCallback@_CancellationTokenState@details@Concurrency@@QEAAPEAV_CancellationTokenRegistration@23@P6AXPEAX@Z0H@Z @223 PRIVATE + ?_RegisterCallback@_CancellationTokenState@details@Concurrency@@QEAAXPEAV_CancellationTokenRegistration@23@@Z @224 PRIVATE + ?_Release@_NonReentrantBlockingLock@details@Concurrency@@QEAAXXZ=_ReentrantBlockingLock__Release @225 + ?_Release@_NonReentrantPPLLock@details@Concurrency@@QEAAXXZ=_NonReentrantPPLLock__Release @226 + ?_Release@_ReentrantBlockingLock@details@Concurrency@@QEAAXXZ=_ReentrantBlockingLock__Release @227 + ?_Release@_ReentrantLock@details@Concurrency@@QEAAXXZ @228 PRIVATE + ?_Release@_ReentrantPPLLock@details@Concurrency@@QEAAXXZ=_ReentrantPPLLock__Release @229 + ?_Release@_Scheduler@details@Concurrency@@QEAAIXZ=_Scheduler__Release @230 + ?_ReleaseRead@_ReaderWriterLock@details@Concurrency@@QEAAXXZ @231 PRIVATE + ?_ReleaseWrite@_ReaderWriterLock@details@Concurrency@@QEAAXXZ @232 PRIVATE + ?_ReportUnobservedException@details@Concurrency@@YAXXZ @233 PRIVATE + ?_Reset@?$_SpinWait@$00@details@Concurrency@@IEAAXXZ=SpinWait__Reset @234 + ?_Reset@?$_SpinWait@$0A@@details@Concurrency@@IEAAXXZ=SpinWait__Reset @235 + ?_RunAndWait@_StructuredTaskCollection@details@Concurrency@@QEAA?AW4_TaskCollectionStatus@23@PEAV_UnrealizedChore@23@@Z @236 PRIVATE + ?_RunAndWait@_TaskCollection@details@Concurrency@@QEAA?AW4_TaskCollectionStatus@23@PEAV_UnrealizedChore@23@@Z @237 PRIVATE + ?_Schedule@_StructuredTaskCollection@details@Concurrency@@QEAAXPEAV_UnrealizedChore@23@@Z @238 PRIVATE + ?_Schedule@_StructuredTaskCollection@details@Concurrency@@QEAAXPEAV_UnrealizedChore@23@PEAVlocation@3@@Z @239 PRIVATE + ?_Schedule@_TaskCollection@details@Concurrency@@QEAAXPEAV_UnrealizedChore@23@@Z @240 PRIVATE + ?_Schedule@_TaskCollection@details@Concurrency@@QEAAXPEAV_UnrealizedChore@23@PEAVlocation@3@@Z @241 PRIVATE + ?_ScheduleTask@_CurrentScheduler@details@Concurrency@@SAXP6AXPEAX@Z0@Z=_CurrentScheduler__ScheduleTask @242 + ?_SetSpinCount@?$_SpinWait@$00@details@Concurrency@@QEAAXI@Z=SpinWait__SetSpinCount @243 + ?_SetSpinCount@?$_SpinWait@$0A@@details@Concurrency@@QEAAXI@Z=SpinWait__SetSpinCount @244 + ?_SetUnobservedExceptionHandler@details@Concurrency@@YAXP6AXXZ@Z @245 PRIVATE + ?_ShouldSpinAgain@?$_SpinWait@$00@details@Concurrency@@IEAA_NXZ=SpinWait__ShouldSpinAgain @246 + ?_ShouldSpinAgain@?$_SpinWait@$0A@@details@Concurrency@@IEAA_NXZ=SpinWait__ShouldSpinAgain @247 + ?_SpinOnce@?$_SpinWait@$00@details@Concurrency@@QEAA_NXZ=SpinWait__SpinOnce @248 + ?_SpinOnce@?$_SpinWait@$0A@@details@Concurrency@@QEAA_NXZ=SpinWait__SpinOnce @249 + ?_SpinYield@Context@Concurrency@@SAXXZ=Context__SpinYield @250 + ?_Start@_Timer@details@Concurrency@@IEAAXXZ @251 PRIVATE + ?_Stop@_Timer@details@Concurrency@@IEAAXXZ @252 PRIVATE + ?_Tidy@exception@std@@AEAAXXZ @253 PRIVATE + ?_Trace_agents@Concurrency@@YAXW4Agents_EventType@1@_JZZ=_Trace_agents @254 + ?_Trace_ppl_function@Concurrency@@YAXAEBU_GUID@@EW4ConcRT_EventType@1@@Z=Concurrency__Trace_ppl_function @255 + ?_TryAcquire@_NonReentrantBlockingLock@details@Concurrency@@QEAA_NXZ=_ReentrantBlockingLock__TryAcquire @256 + ?_TryAcquire@_ReentrantBlockingLock@details@Concurrency@@QEAA_NXZ=_ReentrantBlockingLock__TryAcquire @257 + ?_TryAcquire@_ReentrantLock@details@Concurrency@@QEAA_NXZ @258 PRIVATE + ?_TryAcquireWrite@_ReaderWriterLock@details@Concurrency@@QEAA_NXZ @259 PRIVATE + ?_Type_info_dtor@type_info@@CAXPEAV1@@Z @260 PRIVATE + ?_Type_info_dtor_internal@type_info@@CAXPEAV1@@Z @261 PRIVATE + ?_UnderlyingYield@details@Concurrency@@YAXXZ @262 PRIVATE + ?_ValidateExecute@@YAHP6A_JXZ@Z @263 PRIVATE + ?_ValidateRead@@YAHPEBXI@Z @264 PRIVATE + ?_ValidateWrite@@YAHPEAXI@Z @265 PRIVATE + ?_Value@_SpinCount@details@Concurrency@@SAIXZ=SpinCount__Value @266 + ?_Yield@_Context@details@Concurrency@@SAXXZ @267 PRIVATE + ?__ExceptionPtrAssign@@YAXPEAXPEBX@Z=__ExceptionPtrAssign @268 + ?__ExceptionPtrCompare@@YA_NPEBX0@Z=__ExceptionPtrCompare @269 + ?__ExceptionPtrCopy@@YAXPEAXPEBX@Z=__ExceptionPtrCopy @270 + ?__ExceptionPtrCopyException@@YAXPEAXPEBX1@Z=__ExceptionPtrCopyException @271 + ?__ExceptionPtrCreate@@YAXPEAX@Z=__ExceptionPtrCreate @272 + ?__ExceptionPtrCurrentException@@YAXPEAX@Z=__ExceptionPtrCurrentException @273 + ?__ExceptionPtrDestroy@@YAXPEAX@Z=__ExceptionPtrDestroy @274 + ?__ExceptionPtrRethrow@@YAXPEBX@Z=__ExceptionPtrRethrow @275 + ?__ExceptionPtrSwap@@YAXPEAX0@Z @276 PRIVATE + ?__ExceptionPtrToBool@@YA_NPEBX@Z=__ExceptionPtrToBool @277 + __uncaught_exception=MSVCRT___uncaught_exception @278 + ?_inconsistency@@YAXXZ @279 PRIVATE + ?_invalid_parameter@@YAXPEBG00I_K@Z=MSVCRT__invalid_parameter @280 + ?_is_exception_typeof@@YAHAEBVtype_info@@PEAU_EXCEPTION_POINTERS@@@Z=_is_exception_typeof @281 + ?_name_internal_method@type_info@@QEBAPEBDPEAU__type_info_node@@@Z=type_info_name_internal_method @282 + ?_open@@YAHPEBDHH@Z=MSVCRT__open @283 + ?_query_new_handler@@YAP6AH_K@ZXZ=MSVCRT__query_new_handler @284 + ?_query_new_mode@@YAHXZ=MSVCRT__query_new_mode @285 + ?_set_new_handler@@YAP6AH_K@ZH@Z @286 PRIVATE + ?_set_new_handler@@YAP6AH_K@ZP6AH0@Z@Z=MSVCRT__set_new_handler @287 + ?_set_new_mode@@YAHH@Z=MSVCRT__set_new_mode @288 + ?_set_se_translator@@YAP6AXIPEAU_EXCEPTION_POINTERS@@@ZH@Z @289 PRIVATE + ?_set_se_translator@@YAP6AXIPEAU_EXCEPTION_POINTERS@@@ZP6AXI0@Z@Z=MSVCRT__set_se_translator @290 + ?_sopen@@YAHPEBDHHH@Z=MSVCRT__sopen @291 + ?_type_info_dtor_internal_method@type_info@@QEAAXXZ @292 PRIVATE + ?_wopen@@YAHPEB_WHH@Z=MSVCRT__wopen @293 + ?_wsopen@@YAHPEB_WHHH@Z=MSVCRT__wsopen @294 + ?before@type_info@@QEBA_NAEBV1@@Z=MSVCRT_type_info_before @295 + ?current@location@Concurrency@@SA?AV12@XZ @296 PRIVATE + ?from_numa_node@location@Concurrency@@SA?AV12@G@Z @297 PRIVATE + ?get_error_code@scheduler_resource_allocation_error@Concurrency@@QEBAJXZ=scheduler_resource_allocation_error_get_error_code @298 + ?lock@critical_section@Concurrency@@QEAAXXZ=critical_section_lock @299 + ?lock@reader_writer_lock@Concurrency@@QEAAXXZ=reader_writer_lock_lock @300 + ?lock_read@reader_writer_lock@Concurrency@@QEAAXXZ=reader_writer_lock_lock_read @301 + ?name@type_info@@QEBAPEBDPEAU__type_info_node@@@Z=type_info_name_internal_method @302 + ?native_handle@critical_section@Concurrency@@QEAAAEAV12@XZ=critical_section_native_handle @303 + ?notify_all@_Condition_variable@details@Concurrency@@QEAAXXZ=_Condition_variable_notify_all @304 + ?notify_one@_Condition_variable@details@Concurrency@@QEAAXXZ=_Condition_variable_notify_one @305 + ?raw_name@type_info@@QEBAPEBDXZ=MSVCRT_type_info_raw_name @306 + ?reset@event@Concurrency@@QEAAXXZ=event_reset @307 + ?set@event@Concurrency@@QEAAXXZ=event_set @308 + ?set_new_handler@@YAP6AXXZP6AXXZ@Z=MSVCRT_set_new_handler @309 + ?set_task_execution_resources@Concurrency@@YAXGPEAU_GROUP_AFFINITY@@@Z @310 PRIVATE + ?set_task_execution_resources@Concurrency@@YAX_K@Z @311 PRIVATE + ?set_terminate@@YAP6AXXZH@Z @312 PRIVATE + ?set_terminate@@YAP6AXXZP6AXXZ@Z=MSVCRT_set_terminate @313 + ?set_unexpected@@YAP6AXXZH@Z @314 PRIVATE + ?set_unexpected@@YAP6AXXZP6AXXZ@Z=MSVCRT_set_unexpected @315 + ?swprintf@@YAHPAGIPBGZZ=MSVCRT__snwprintf @316 + ?swprintf@@YAHPA_WIPB_WZZ=MSVCRT__snwprintf @317 + ?terminate@@YAXXZ=MSVCRT_terminate @318 + ?try_lock@critical_section@Concurrency@@QEAA_NXZ=critical_section_try_lock @319 + ?try_lock@reader_writer_lock@Concurrency@@QEAA_NXZ=reader_writer_lock_try_lock @320 + ?try_lock_for@critical_section@Concurrency@@QEAA_NI@Z=critical_section_try_lock_for @321 + ?try_lock_read@reader_writer_lock@Concurrency@@QEAA_NXZ=reader_writer_lock_try_lock_read @322 + ?unexpected@@YAXXZ=MSVCRT_unexpected @323 + ?unlock@critical_section@Concurrency@@QEAAXXZ=critical_section_unlock @324 + ?unlock@reader_writer_lock@Concurrency@@QEAAXXZ=reader_writer_lock_unlock @325 + ?vswprintf@@YAHPA_WIPB_WPAD@Z=MSVCRT_vsnwprintf @326 + ?wait@Concurrency@@YAXI@Z=Concurrency_wait @327 + ?wait@_Condition_variable@details@Concurrency@@QEAAXAEAVcritical_section@3@@Z=_Condition_variable_wait @328 + ?wait@event@Concurrency@@QEAA_KI@Z=event_wait @329 + ?wait_for@_Condition_variable@details@Concurrency@@QEAA_NAEAVcritical_section@3@I@Z=_Condition_variable_wait_for @330 + ?wait_for_multiple@event@Concurrency@@SA_KPEAPEAV12@_K_NI@Z=event_wait_for_multiple @331 + ?what@exception@std@@UEBAPEBDXZ=MSVCRT_what_exception @332 + $I10_OUTPUT=MSVCRT_I10_OUTPUT @333 + _CRT_RTC_INIT @334 + _CRT_RTC_INITW @335 + _CreateFrameInfo @336 + _CxxThrowException @337 + _FindAndUnlinkFrame @338 + _GetImageBase @339 PRIVATE + _GetThrowImageBase @340 PRIVATE + _Getdays @341 + _Getmonths @342 + _Gettnames @343 + _HUGE=MSVCRT__HUGE @344 DATA + _IsExceptionObjectToBeDestroyed @345 + _Lock_shared_ptr_spin_lock @346 + __NLG_Dispatch2 @347 PRIVATE + __NLG_Return2 @348 PRIVATE + _SetImageBase @349 PRIVATE + _SetThrowImageBase @350 PRIVATE + _Strftime @351 + _Unlock_shared_ptr_spin_lock @352 + _W_Getdays @353 + _W_Getmonths @354 + _W_Gettnames @355 + _Wcsftime @356 + _XcptFilter @357 + __AdjustPointer @358 + __BuildCatchObject @359 PRIVATE + __BuildCatchObjectHelper @360 PRIVATE + __C_specific_handler=ntdll.__C_specific_handler @361 + __CppXcptFilter @362 + __CxxDetectRethrow @363 + __CxxExceptionFilter @364 + __CxxFrameHandler @365 + __CxxFrameHandler2=__CxxFrameHandler @366 + __CxxFrameHandler3=__CxxFrameHandler @367 + __CxxQueryExceptionSize @368 + __CxxRegisterExceptionObject @369 + __CxxUnregisterExceptionObject @370 + __DestructExceptionObject @371 + __FrameUnwindFilter @372 PRIVATE + __RTCastToVoid=MSVCRT___RTCastToVoid @373 + __RTDynamicCast=MSVCRT___RTDynamicCast @374 + __RTtypeid=MSVCRT___RTtypeid @375 + __STRINGTOLD @376 + __STRINGTOLD_L @377 PRIVATE + __TypeMatch @378 PRIVATE + ___lc_codepage_func @379 + ___lc_collate_cp_func @380 + ___lc_locale_name_func @381 + ___mb_cur_max_func=MSVCRT____mb_cur_max_func @382 + ___mb_cur_max_l_func @383 + ___setlc_active_func=MSVCRT____setlc_active_func @384 + ___unguarded_readlc_active_add_func=MSVCRT____unguarded_readlc_active_add_func @385 + __argc=MSVCRT___argc @386 DATA + __argv=MSVCRT___argv @387 DATA + __badioinfo=MSVCRT___badioinfo @388 DATA + __clean_type_info_names_internal @389 + __create_locale=MSVCRT__create_locale @390 + __crtCaptureCurrentContext=ntdll.RtlCaptureContext @391 + __crtCapturePreviousContext @392 + __crtCompareStringA @393 + __crtCompareStringEx @394 PRIVATE + __crtCompareStringW @395 + __crtCreateSymbolicLinkW @396 PRIVATE + __crtEnumSystemLocalesEx @397 PRIVATE + __crtFlsAlloc @398 PRIVATE + __crtFlsFree @399 PRIVATE + __crtFlsGetValue @400 PRIVATE + __crtFlsSetValue @401 PRIVATE + __crtGetDateFormatEx @402 PRIVATE + __crtGetLocaleInfoEx @403 + __crtGetShowWindowMode=MSVCR110__crtGetShowWindowMode @404 + __crtGetTimeFormatEx @405 PRIVATE + __crtGetUserDefaultLocaleName @406 PRIVATE + __crtInitializeCriticalSectionEx=MSVCR110__crtInitializeCriticalSectionEx @407 + __crtIsPackagedApp @408 PRIVATE + __crtIsValidLocaleName @409 PRIVATE + __crtLCMapStringA @410 + __crtLCMapStringEx @411 PRIVATE + __crtLCMapStringW @412 + __crtSetThreadStackGuarantee @413 PRIVATE + __crtSetUnhandledExceptionFilter=MSVCR110__crtSetUnhandledExceptionFilter @414 + __crtTerminateProcess=MSVCR110__crtTerminateProcess @415 + __crtUnhandledException=MSVCRT__crtUnhandledException @416 + __daylight=MSVCRT___p__daylight @417 + __dllonexit @418 + __doserrno=MSVCRT___doserrno @419 + __dstbias=MSVCRT___p__dstbias @420 + __fpecode @421 + __free_locale=MSVCRT__free_locale @422 + __get_current_locale=MSVCRT__get_current_locale @423 + __get_flsindex @424 PRIVATE + __get_tlsindex @425 PRIVATE + __getmainargs @426 + __initenv=MSVCRT___initenv @427 DATA + __iob_func=__p__iob @428 + __isascii=MSVCRT___isascii @429 + __iscsym=MSVCRT___iscsym @430 + __iscsymf=MSVCRT___iscsymf @431 + __iswcsym @432 PRIVATE + __iswcsymf @433 PRIVATE + __lconv_init @434 + __mb_cur_max=MSVCRT___mb_cur_max @435 DATA + __p___argc=MSVCRT___p___argc @436 + __p___argv=MSVCRT___p___argv @437 + __p___initenv @438 + __p___mb_cur_max @439 + __p___wargv=MSVCRT___p___wargv @440 + __p___winitenv @441 + __p__acmdln=MSVCRT___p__acmdln @442 + __p__commode @443 + __p__daylight=MSVCRT___p__daylight @444 + __p__dstbias=MSVCRT___p__dstbias @445 + __p__environ=MSVCRT___p__environ @446 + __p__fmode=MSVCRT___p__fmode @447 + __p__iob @448 + __p__mbcasemap @449 PRIVATE + __p__mbctype @450 + __p__pctype=MSVCRT___p__pctype @451 + __p__pgmptr=MSVCRT___p__pgmptr @452 + __p__pwctype @453 PRIVATE + __p__timezone=MSVCRT___p__timezone @454 + __p__tzname @455 + __p__wcmdln=MSVCRT___p__wcmdln @456 + __p__wenviron=MSVCRT___p__wenviron @457 + __p__wpgmptr=MSVCRT___p__wpgmptr @458 + __pctype_func=MSVCRT___pctype_func @459 + __pioinfo=MSVCRT___pioinfo @460 DATA + __pwctype_func @461 PRIVATE + __pxcptinfoptrs=MSVCRT___pxcptinfoptrs @462 + __report_gsfailure @463 PRIVATE + __set_app_type=MSVCRT___set_app_type @464 + __setlc_active=MSVCRT___setlc_active @465 DATA + __setusermatherr=MSVCRT___setusermatherr @466 + __strncnt=MSVCRT___strncnt @467 + __swprintf_l=MSVCRT___swprintf_l @468 + __sys_errlist @469 + __sys_nerr @470 + __threadhandle=kernel32.GetCurrentThread @471 + __threadid=kernel32.GetCurrentThreadId @472 + __timezone=MSVCRT___p__timezone @473 + __toascii=MSVCRT___toascii @474 + __tzname=__p__tzname @475 + __unDName @476 + __unDNameEx @477 + __unDNameHelper @478 PRIVATE + __unguarded_readlc_active=MSVCRT___unguarded_readlc_active @479 DATA + __vswprintf_l=MSVCRT_vswprintf_l @480 + __wargv=MSVCRT___wargv @481 DATA + __wcserror=MSVCRT___wcserror @482 + __wcserror_s=MSVCRT___wcserror_s @483 + __wcsncnt @484 PRIVATE + __wgetmainargs @485 + __winitenv=MSVCRT___winitenv @486 DATA + _abnormal_termination @487 + _abs64 @488 + _access=MSVCRT__access @489 + _access_s=MSVCRT__access_s @490 + _acmdln=MSVCRT__acmdln @491 DATA + _aligned_free @492 + _aligned_malloc @493 + _aligned_msize @494 + _aligned_offset_malloc @495 + _aligned_offset_realloc @496 + _aligned_offset_recalloc @497 PRIVATE + _aligned_realloc @498 + _aligned_recalloc @499 PRIVATE + _amsg_exit @500 + _assert=MSVCRT__assert @501 + _atodbl=MSVCRT__atodbl @502 + _atodbl_l=MSVCRT__atodbl_l @503 + _atof_l=MSVCRT__atof_l @504 + _atoflt=MSVCRT__atoflt @505 + _atoflt_l=MSVCRT__atoflt_l @506 + _atoi64=MSVCRT__atoi64 @507 + _atoi64_l=MSVCRT__atoi64_l @508 + _atoi_l=MSVCRT__atoi_l @509 + _atol_l=MSVCRT__atol_l @510 + _atoldbl=MSVCRT__atoldbl @511 + _atoldbl_l @512 PRIVATE + _beep=MSVCRT__beep @513 + _beginthread @514 + _beginthreadex @515 + _byteswap_uint64 @516 + _byteswap_ulong=MSVCRT__byteswap_ulong @517 + _byteswap_ushort @518 + _c_exit=MSVCRT__c_exit @519 + _cabs=MSVCRT__cabs @520 + _callnewh @521 + _calloc_crt=MSVCRT_calloc @522 + _cexit=MSVCRT__cexit @523 + _cgets @524 + _cgets_s @525 PRIVATE + _cgetws @526 PRIVATE + _cgetws_s @527 PRIVATE + _chdir=MSVCRT__chdir @528 + _chdrive=MSVCRT__chdrive @529 + _chgsign=MSVCRT__chgsign @530 + _chgsignf=MSVCRT__chgsignf @531 + _chmod=MSVCRT__chmod @532 + _chsize=MSVCRT__chsize @533 + _chsize_s=MSVCRT__chsize_s @534 + _clearfp @535 + _close=MSVCRT__close @536 + _commit=MSVCRT__commit @537 + _commode=MSVCRT__commode @538 DATA + _configthreadlocale @539 + _control87 @540 + _controlfp @541 + _controlfp_s @542 + _copysign=MSVCRT__copysign @543 + _copysignf=MSVCRT__copysignf @544 + _cprintf @545 + _cprintf_l @546 PRIVATE + _cprintf_p @547 PRIVATE + _cprintf_p_l @548 PRIVATE + _cprintf_s @549 PRIVATE + _cprintf_s_l @550 PRIVATE + _cputs @551 + _cputws @552 + _creat=MSVCRT__creat @553 + _create_locale=MSVCRT__create_locale @554 + __crt_debugger_hook=MSVCRT__crt_debugger_hook @555 + _cscanf @556 + _cscanf_l @557 + _cscanf_s @558 + _cscanf_s_l @559 + _ctime32=MSVCRT__ctime32 @560 + _ctime32_s=MSVCRT__ctime32_s @561 + _ctime64=MSVCRT__ctime64 @562 + _ctime64_s=MSVCRT__ctime64_s @563 + _cwait @564 + _cwprintf @565 + _cwprintf_l @566 PRIVATE + _cwprintf_p @567 PRIVATE + _cwprintf_p_l @568 PRIVATE + _cwprintf_s @569 PRIVATE + _cwprintf_s_l @570 PRIVATE + _cwscanf @571 + _cwscanf_l @572 + _cwscanf_s @573 + _cwscanf_s_l @574 + _daylight=MSVCRT___daylight @575 DATA + _difftime32=MSVCRT__difftime32 @576 + _difftime64=MSVCRT__difftime64 @577 + _dosmaperr @578 PRIVATE + _dstbias=MSVCRT__dstbias @579 DATA + _dup=MSVCRT__dup @580 + _dup2=MSVCRT__dup2 @581 + _dupenv_s @582 + _ecvt=MSVCRT__ecvt @583 + _ecvt_s=MSVCRT__ecvt_s @584 + _endthread @585 + _endthreadex @586 + _environ=MSVCRT__environ @587 DATA + _eof=MSVCRT__eof @588 + _errno=MSVCRT__errno @589 + _execl @590 + _execle @591 + _execlp @592 + _execlpe @593 + _execv @594 + _execve=MSVCRT__execve @595 + _execvp @596 + _execvpe @597 + _exit=MSVCRT__exit @598 + _expand @599 + _fclose_nolock=MSVCRT__fclose_nolock @600 + _fcloseall=MSVCRT__fcloseall @601 + _fcvt=MSVCRT__fcvt @602 + _fcvt_s=MSVCRT__fcvt_s @603 + _fdopen=MSVCRT__fdopen @604 + _fflush_nolock=MSVCRT__fflush_nolock @605 + _fgetc_nolock=MSVCRT__fgetc_nolock @606 + _fgetchar=MSVCRT__fgetchar @607 + _fgetwc_nolock=MSVCRT__fgetwc_nolock @608 + _fgetwchar=MSVCRT__fgetwchar @609 + _filbuf=MSVCRT__filbuf @610 + _filelength=MSVCRT__filelength @611 + _filelengthi64=MSVCRT__filelengthi64 @612 + _fileno=MSVCRT__fileno @613 + _findclose=MSVCRT__findclose @614 + _findfirst32=MSVCRT__findfirst32 @615 + _findfirst32i64 @616 PRIVATE + _findfirst64=MSVCRT__findfirst64 @617 + _findfirst64i32=MSVCRT__findfirst64i32 @618 + _findnext32=MSVCRT__findnext32 @619 + _findnext32i64 @620 PRIVATE + _findnext64=MSVCRT__findnext64 @621 + _findnext64i32=MSVCRT__findnext64i32 @622 + _finite=MSVCRT__finite @623 + _finitef=MSVCRT__finitef @624 + _flsbuf=MSVCRT__flsbuf @625 + _flushall=MSVCRT__flushall @626 + _fmode=MSVCRT__fmode @627 DATA + _fpclass=MSVCRT__fpclass @628 + _fpieee_flt @629 + _fpreset @630 + _fprintf_l @631 PRIVATE + _fprintf_p @632 PRIVATE + _fprintf_p_l @633 PRIVATE + _fprintf_s_l @634 PRIVATE + _fputc_nolock=MSVCRT__fputc_nolock @635 + _fputchar=MSVCRT__fputchar @636 + _fputwc_nolock=MSVCRT__fputwc_nolock @637 + _fputwchar=MSVCRT__fputwchar @638 + _fread_nolock=MSVCRT__fread_nolock @639 + _fread_nolock_s=MSVCRT__fread_nolock_s @640 + _free_locale=MSVCRT__free_locale @641 + _freea @642 PRIVATE + _freea_s @643 PRIVATE + _freefls @644 PRIVATE + _fscanf_l=MSVCRT__fscanf_l @645 + _fscanf_s_l=MSVCRT__fscanf_s_l @646 + _fseek_nolock=MSVCRT__fseek_nolock @647 + _fseeki64=MSVCRT__fseeki64 @648 + _fseeki64_nolock=MSVCRT__fseeki64_nolock @649 + _fsopen=MSVCRT__fsopen @650 + _fstat32=MSVCRT__fstat32 @651 + _fstat32i64=MSVCRT__fstat32i64 @652 + _fstat64=MSVCRT__fstat64 @653 + _fstat64i32=MSVCRT__fstat64i32 @654 + _ftell_nolock=MSVCRT__ftell_nolock @655 + _ftelli64=MSVCRT__ftelli64 @656 + _ftelli64_nolock=MSVCRT__ftelli64_nolock @657 + _ftime32=MSVCRT__ftime32 @658 + _ftime32_s=MSVCRT__ftime32_s @659 + _ftime64=MSVCRT__ftime64 @660 + _ftime64_s=MSVCRT__ftime64_s @661 + _fullpath=MSVCRT__fullpath @662 + _futime32 @663 + _futime64 @664 + _fwprintf_l=MSVCRT__fwprintf_l @665 + _fwprintf_p @666 PRIVATE + _fwprintf_p_l @667 PRIVATE + _fwprintf_s_l @668 PRIVATE + _fwrite_nolock=MSVCRT__fwrite_nolock @669 + _fwscanf_l=MSVCRT__fwscanf_l @670 + _fwscanf_s_l=MSVCRT__fwscanf_s_l @671 + _gcvt=MSVCRT__gcvt @672 + _gcvt_s=MSVCRT__gcvt_s @673 + _get_current_locale=MSVCRT__get_current_locale @674 + _get_daylight @675 + _get_doserrno @676 + _get_dstbias=MSVCRT__get_dstbias @677 + _get_errno @678 + _get_fmode=MSVCRT__get_fmode @679 + _get_heap_handle @680 + _get_invalid_parameter_handler @681 + _get_osfhandle=MSVCRT__get_osfhandle @682 + _get_output_format=MSVCRT__get_output_format @683 + _get_pgmptr @684 + _get_printf_count_output=MSVCRT__get_printf_count_output @685 + _get_purecall_handler @686 + _get_terminate=MSVCRT__get_terminate @687 + _get_timezone @688 + _get_tzname=MSVCRT__get_tzname @689 + _get_unexpected=MSVCRT__get_unexpected @690 + _get_wpgmptr @691 + _getc_nolock=MSVCRT__fgetc_nolock @692 + _getch @693 + _getch_nolock @694 + _getche @695 + _getche_nolock @696 + _getcwd=MSVCRT__getcwd @697 + _getdcwd=MSVCRT__getdcwd @698 + _getdiskfree=MSVCRT__getdiskfree @699 + _getdllprocaddr @700 + _getdrive=MSVCRT__getdrive @701 + _getdrives=kernel32.GetLogicalDrives @702 + _getmaxstdio=MSVCRT__getmaxstdio @703 + _getmbcp @704 + _getpid @705 + _getptd @706 + _getsystime @707 PRIVATE + _getw=MSVCRT__getw @708 + _getwc_nolock=MSVCRT__fgetwc_nolock @709 + _getwch @710 + _getwch_nolock @711 + _getwche @712 + _getwche_nolock @713 + _getws=MSVCRT__getws @714 + _getws_s @715 PRIVATE + _gmtime32=MSVCRT__gmtime32 @716 + _gmtime32_s=MSVCRT__gmtime32_s @717 + _gmtime64=MSVCRT__gmtime64 @718 + _gmtime64_s=MSVCRT__gmtime64_s @719 + _heapadd @720 + _heapchk @721 + _heapmin @722 + _heapset @723 + _heapused @724 PRIVATE + _heapwalk @725 + _hypot @726 + _hypotf=MSVCRT__hypotf @727 + _i64toa=ntdll._i64toa @728 + _i64toa_s=MSVCRT__i64toa_s @729 + _i64tow=ntdll._i64tow @730 + _i64tow_s=MSVCRT__i64tow_s @731 + _initptd @732 PRIVATE + _initterm @733 + _initterm_e @734 + _invalid_parameter=MSVCRT__invalid_parameter @735 + _invalid_parameter_noinfo @736 + _invalid_parameter_noinfo_noreturn @737 + _invoke_watson @738 PRIVATE + _iob=MSVCRT__iob @739 DATA + _isalnum_l=MSVCRT__isalnum_l @740 + _isalpha_l=MSVCRT__isalpha_l @741 + _isatty=MSVCRT__isatty @742 + _iscntrl_l=MSVCRT__iscntrl_l @743 + _isctype=MSVCRT__isctype @744 + _isctype_l=MSVCRT__isctype_l @745 + _isdigit_l=MSVCRT__isdigit_l @746 + _isgraph_l=MSVCRT__isgraph_l @747 + _isleadbyte_l=MSVCRT__isleadbyte_l @748 + _islower_l=MSVCRT__islower_l @749 + _ismbbalnum @750 PRIVATE + _ismbbalnum_l @751 PRIVATE + _ismbbalpha @752 PRIVATE + _ismbbalpha_l @753 PRIVATE + _ismbbgraph @754 PRIVATE + _ismbbgraph_l @755 PRIVATE + _ismbbkalnum @756 PRIVATE + _ismbbkalnum_l @757 PRIVATE + _ismbbkana @758 + _ismbbkana_l @759 PRIVATE + _ismbbkprint @760 PRIVATE + _ismbbkprint_l @761 PRIVATE + _ismbbkpunct @762 PRIVATE + _ismbbkpunct_l @763 PRIVATE + _ismbblead @764 + _ismbblead_l @765 + _ismbbprint @766 PRIVATE + _ismbbprint_l @767 PRIVATE + _ismbbpunct @768 PRIVATE + _ismbbpunct_l @769 PRIVATE + _ismbbtrail @770 + _ismbbtrail_l @771 + _ismbcalnum @772 + _ismbcalnum_l @773 PRIVATE + _ismbcalpha @774 + _ismbcalpha_l @775 PRIVATE + _ismbcdigit @776 + _ismbcdigit_l @777 PRIVATE + _ismbcgraph @778 + _ismbcgraph_l @779 PRIVATE + _ismbchira @780 + _ismbchira_l @781 PRIVATE + _ismbckata @782 + _ismbckata_l @783 PRIVATE + _ismbcl0 @784 + _ismbcl0_l @785 + _ismbcl1 @786 + _ismbcl1_l @787 + _ismbcl2 @788 + _ismbcl2_l @789 + _ismbclegal @790 + _ismbclegal_l @791 + _ismbclower @792 PRIVATE + _ismbclower_l @793 PRIVATE + _ismbcprint @794 PRIVATE + _ismbcprint_l @795 PRIVATE + _ismbcpunct @796 + _ismbcpunct_l @797 PRIVATE + _ismbcspace @798 + _ismbcspace_l @799 PRIVATE + _ismbcsymbol @800 + _ismbcsymbol_l @801 PRIVATE + _ismbcupper @802 + _ismbcupper_l @803 PRIVATE + _ismbslead @804 + _ismbslead_l @805 PRIVATE + _ismbstrail @806 + _ismbstrail_l @807 PRIVATE + _isnan=MSVCRT__isnan @808 + _isnanf=MSVCRT__isnanf @809 + _isprint_l=MSVCRT__isprint_l @810 + _ispunct_l @811 PRIVATE + _isspace_l=MSVCRT__isspace_l @812 + _isupper_l=MSVCRT__isupper_l @813 + _iswalnum_l=MSVCRT__iswalnum_l @814 + _iswalpha_l=MSVCRT__iswalpha_l @815 + _iswcntrl_l=MSVCRT__iswcntrl_l @816 + _iswcsym_l @817 PRIVATE + _iswcsymf_l @818 PRIVATE + _iswctype_l=MSVCRT__iswctype_l @819 + _iswdigit_l=MSVCRT__iswdigit_l @820 + _iswgraph_l=MSVCRT__iswgraph_l @821 + _iswlower_l=MSVCRT__iswlower_l @822 + _iswprint_l=MSVCRT__iswprint_l @823 + _iswpunct_l=MSVCRT__iswpunct_l @824 + _iswspace_l=MSVCRT__iswspace_l @825 + _iswupper_l=MSVCRT__iswupper_l @826 + _iswxdigit_l=MSVCRT__iswxdigit_l @827 + _isxdigit_l=MSVCRT__isxdigit_l @828 + _itoa=MSVCRT__itoa @829 + _itoa_s=MSVCRT__itoa_s @830 + _itow=ntdll._itow @831 + _itow_s=MSVCRT__itow_s @832 + _j0=MSVCRT__j0 @833 + _j1=MSVCRT__j1 @834 + _jn=MSVCRT__jn @835 + _kbhit @836 + _lfind @837 + _lfind_s @838 + _loaddll @839 + _local_unwind @840 + _localtime32=MSVCRT__localtime32 @841 + _localtime32_s @842 + _localtime64=MSVCRT__localtime64 @843 + _localtime64_s @844 + _lock @845 + _lock_file=MSVCRT__lock_file @846 + _locking=MSVCRT__locking @847 + _logb=MSVCRT__logb @848 + _logbf=MSVCRT__logbf @849 + _lrotl=MSVCRT__lrotl @850 + _lrotr=MSVCRT__lrotr @851 + _lsearch @852 + _lsearch_s @853 PRIVATE + _lseek=MSVCRT__lseek @854 + _lseeki64=MSVCRT__lseeki64 @855 + _ltoa=ntdll._ltoa @856 + _ltoa_s=MSVCRT__ltoa_s @857 + _ltow=ntdll._ltow @858 + _ltow_s=MSVCRT__ltow_s @859 + _makepath=MSVCRT__makepath @860 + _makepath_s=MSVCRT__makepath_s @861 + _malloc_crt=MSVCRT_malloc @862 + _mbbtombc @863 + _mbbtombc_l @864 PRIVATE + _mbbtype @865 + _mbbtype_l @866 PRIVATE + _mbccpy @867 + _mbccpy_l @868 + _mbccpy_s @869 + _mbccpy_s_l @870 + _mbcjistojms @871 + _mbcjistojms_l @872 PRIVATE + _mbcjmstojis @873 + _mbcjmstojis_l @874 PRIVATE + _mbclen @875 + _mbclen_l @876 PRIVATE + _mbctohira @877 + _mbctohira_l @878 PRIVATE + _mbctokata @879 + _mbctokata_l @880 PRIVATE + _mbctolower @881 + _mbctolower_l @882 PRIVATE + _mbctombb @883 + _mbctombb_l @884 PRIVATE + _mbctoupper @885 + _mbctoupper_l @886 PRIVATE + _mbctype=MSVCRT_mbctype @887 DATA + _mblen_l @888 PRIVATE + _mbsbtype @889 + _mbsbtype_l @890 PRIVATE + _mbscat_s @891 + _mbscat_s_l @892 + _mbschr @893 + _mbschr_l @894 PRIVATE + _mbscmp @895 + _mbscmp_l @896 PRIVATE + _mbscoll @897 + _mbscoll_l @898 + _mbscpy_s @899 + _mbscpy_s_l @900 + _mbscspn @901 + _mbscspn_l @902 PRIVATE + _mbsdec @903 + _mbsdec_l @904 PRIVATE + _mbsicmp @905 + _mbsicmp_l @906 PRIVATE + _mbsicoll @907 + _mbsicoll_l @908 + _mbsinc @909 + _mbsinc_l @910 PRIVATE + _mbslen @911 + _mbslen_l @912 + _mbslwr @913 + _mbslwr_l @914 PRIVATE + _mbslwr_s @915 + _mbslwr_s_l @916 PRIVATE + _mbsnbcat @917 + _mbsnbcat_l @918 PRIVATE + _mbsnbcat_s @919 + _mbsnbcat_s_l @920 PRIVATE + _mbsnbcmp @921 + _mbsnbcmp_l @922 PRIVATE + _mbsnbcnt @923 + _mbsnbcnt_l @924 PRIVATE + _mbsnbcoll @925 + _mbsnbcoll_l @926 + _mbsnbcpy @927 + _mbsnbcpy_l @928 PRIVATE + _mbsnbcpy_s @929 + _mbsnbcpy_s_l @930 + _mbsnbicmp @931 + _mbsnbicmp_l @932 PRIVATE + _mbsnbicoll @933 + _mbsnbicoll_l @934 + _mbsnbset @935 + _mbsnbset_l @936 PRIVATE + _mbsnbset_s @937 PRIVATE + _mbsnbset_s_l @938 PRIVATE + _mbsncat @939 + _mbsncat_l @940 PRIVATE + _mbsncat_s @941 PRIVATE + _mbsncat_s_l @942 PRIVATE + _mbsnccnt @943 + _mbsnccnt_l @944 PRIVATE + _mbsncmp @945 + _mbsncmp_l @946 PRIVATE + _mbsncoll @947 PRIVATE + _mbsncoll_l @948 PRIVATE + _mbsncpy @949 + _mbsncpy_l @950 PRIVATE + _mbsncpy_s @951 PRIVATE + _mbsncpy_s_l @952 PRIVATE + _mbsnextc @953 + _mbsnextc_l @954 PRIVATE + _mbsnicmp @955 + _mbsnicmp_l @956 PRIVATE + _mbsnicoll @957 PRIVATE + _mbsnicoll_l @958 PRIVATE + _mbsninc @959 + _mbsninc_l @960 PRIVATE + _mbsnlen @961 + _mbsnlen_l @962 + _mbsnset @963 + _mbsnset_l @964 PRIVATE + _mbsnset_s @965 PRIVATE + _mbsnset_s_l @966 PRIVATE + _mbspbrk @967 + _mbspbrk_l @968 PRIVATE + _mbsrchr @969 + _mbsrchr_l @970 PRIVATE + _mbsrev @971 + _mbsrev_l @972 PRIVATE + _mbsset @973 + _mbsset_l @974 PRIVATE + _mbsset_s @975 PRIVATE + _mbsset_s_l @976 PRIVATE + _mbsspn @977 + _mbsspn_l @978 PRIVATE + _mbsspnp @979 + _mbsspnp_l @980 PRIVATE + _mbsstr @981 + _mbsstr_l @982 PRIVATE + _mbstok @983 + _mbstok_l @984 + _mbstok_s @985 + _mbstok_s_l @986 + _mbstowcs_l=MSVCRT__mbstowcs_l @987 + _mbstowcs_s_l=MSVCRT__mbstowcs_s_l @988 + _mbstrlen @989 + _mbstrlen_l @990 + _mbstrnlen @991 PRIVATE + _mbstrnlen_l @992 PRIVATE + _mbsupr @993 + _mbsupr_l @994 PRIVATE + _mbsupr_s @995 + _mbsupr_s_l @996 PRIVATE + _mbtowc_l=MSVCRT_mbtowc_l @997 + _memccpy=ntdll._memccpy @998 + _memicmp=MSVCRT__memicmp @999 + _memicmp_l=MSVCRT__memicmp_l @1000 + _mkdir=MSVCRT__mkdir @1001 + _mkgmtime32=MSVCRT__mkgmtime32 @1002 + _mkgmtime64=MSVCRT__mkgmtime64 @1003 + _mktemp=MSVCRT__mktemp @1004 + _mktemp_s=MSVCRT__mktemp_s @1005 + _mktime32=MSVCRT__mktime32 @1006 + _mktime64=MSVCRT__mktime64 @1007 + _msize @1008 + _nextafter=MSVCRT__nextafter @1009 + _nextafterf=MSVCRT__nextafterf @1010 + _onexit=MSVCRT__onexit @1011 + _open=MSVCRT__open @1012 + _open_osfhandle=MSVCRT__open_osfhandle @1013 + _pclose=MSVCRT__pclose @1014 + _pctype=MSVCRT__pctype @1015 DATA + _pgmptr=MSVCRT__pgmptr @1016 DATA + _pipe=MSVCRT__pipe @1017 + _popen=MSVCRT__popen @1018 + _printf_l @1019 PRIVATE + _printf_p @1020 PRIVATE + _printf_p_l @1021 PRIVATE + _printf_s_l @1022 PRIVATE + _purecall @1023 + _putc_nolock=MSVCRT__fputc_nolock @1024 + _putch @1025 + _putch_nolock @1026 + _putenv @1027 + _putenv_s @1028 + _putw=MSVCRT__putw @1029 + _putwc_nolock=MSVCRT__fputwc_nolock @1030 + _putwch @1031 + _putwch_nolock @1032 + _putws=MSVCRT__putws @1033 + _read=MSVCRT__read @1034 + _realloc_crt=MSVCRT_realloc @1035 + _recalloc @1036 + _recalloc_crt @1037 PRIVATE + _resetstkoflw=MSVCRT__resetstkoflw @1038 + _rmdir=MSVCRT__rmdir @1039 + _rmtmp=MSVCRT__rmtmp @1040 + _rotl @1041 + _rotl64 @1042 + _rotr @1043 + _rotr64 @1044 + _scalb=MSVCRT__scalb @1045 + _scalbf=MSVCRT__scalbf @1046 + _scanf_l=MSVCRT__scanf_l @1047 + _scanf_s_l=MSVCRT__scanf_s_l @1048 + _scprintf=MSVCRT__scprintf @1049 + _scprintf_l @1050 PRIVATE + _scprintf_p @1051 PRIVATE + _scprintf_p_l @1052 PRIVATE + _scwprintf=MSVCRT__scwprintf @1053 + _scwprintf_l @1054 PRIVATE + _scwprintf_p @1055 PRIVATE + _scwprintf_p_l @1056 PRIVATE + _searchenv=MSVCRT__searchenv @1057 + _searchenv_s=MSVCRT__searchenv_s @1058 + _set_abort_behavior=MSVCRT__set_abort_behavior @1059 + _set_controlfp @1060 + _set_doserrno @1061 + _set_errno @1062 + _set_error_mode @1063 + _set_fmode=MSVCRT__set_fmode @1064 + _set_invalid_parameter_handler @1065 + _set_malloc_crt_max_wait @1066 PRIVATE + _set_output_format=MSVCRT__set_output_format @1067 + _set_printf_count_output=MSVCRT__set_printf_count_output @1068 + _set_purecall_handler @1069 + _seterrormode @1070 + _setjmp=MSVCRT__setjmp @1071 + _setjmpex=MSVCRT__setjmpex @1072 + _setmaxstdio=MSVCRT__setmaxstdio @1073 + _setmbcp @1074 + _setmode=MSVCRT__setmode @1075 + _setsystime @1076 PRIVATE + _sleep=MSVCRT__sleep @1077 + _snprintf=MSVCRT__snprintf @1078 + _snprintf_c @1079 PRIVATE + _snprintf_c_l @1080 PRIVATE + _snprintf_l=MSVCRT__snprintf_l @1081 + _snprintf_s=MSVCRT__snprintf_s @1082 + _snprintf_s_l @1083 PRIVATE + _snscanf=MSVCRT__snscanf @1084 + _snscanf_l=MSVCRT__snscanf_l @1085 + _snscanf_s=MSVCRT__snscanf_s @1086 + _snscanf_s_l=MSVCRT__snscanf_s_l @1087 + _snwprintf=MSVCRT__snwprintf @1088 + _snwprintf_l=MSVCRT__snwprintf_l @1089 + _snwprintf_s=MSVCRT__snwprintf_s @1090 + _snwprintf_s_l=MSVCRT__snwprintf_s_l @1091 + _snwscanf=MSVCRT__snwscanf @1092 + _snwscanf_l=MSVCRT__snwscanf_l @1093 + _snwscanf_s=MSVCRT__snwscanf_s @1094 + _snwscanf_s_l=MSVCRT__snwscanf_s_l @1095 + _sopen=MSVCRT__sopen @1096 + _sopen_s=MSVCRT__sopen_s @1097 + _spawnl=MSVCRT__spawnl @1098 + _spawnle=MSVCRT__spawnle @1099 + _spawnlp=MSVCRT__spawnlp @1100 + _spawnlpe=MSVCRT__spawnlpe @1101 + _spawnv=MSVCRT__spawnv @1102 + _spawnve=MSVCRT__spawnve @1103 + _spawnvp=MSVCRT__spawnvp @1104 + _spawnvpe=MSVCRT__spawnvpe @1105 + _splitpath=MSVCRT__splitpath @1106 + _splitpath_s=MSVCRT__splitpath_s @1107 + _sprintf_l=MSVCRT_sprintf_l @1108 + _sprintf_p=MSVCRT__sprintf_p @1109 + _sprintf_p_l=MSVCRT_sprintf_p_l @1110 + _sprintf_s_l=MSVCRT_sprintf_s_l @1111 + _sscanf_l=MSVCRT__sscanf_l @1112 + _sscanf_s_l=MSVCRT__sscanf_s_l @1113 + _stat32=MSVCRT__stat32 @1114 + _stat32i64=MSVCRT__stat32i64 @1115 + _stat64=MSVCRT_stat64 @1116 + _stat64i32=MSVCRT__stat64i32 @1117 + _statusfp @1118 + _strcoll_l=MSVCRT_strcoll_l @1119 + _strdate=MSVCRT__strdate @1120 + _strdate_s @1121 + _strdup=MSVCRT__strdup @1122 + _strerror=MSVCRT__strerror @1123 + _strerror_s @1124 PRIVATE + _strftime_l=MSVCRT__strftime_l @1125 + _stricmp=MSVCRT__stricmp @1126 + _stricmp_l=MSVCRT__stricmp_l @1127 + _stricoll=MSVCRT__stricoll @1128 + _stricoll_l=MSVCRT__stricoll_l @1129 + _strlwr=MSVCRT__strlwr @1130 + _strlwr_l @1131 + _strlwr_s=MSVCRT__strlwr_s @1132 + _strlwr_s_l=MSVCRT__strlwr_s_l @1133 + _strncoll=MSVCRT__strncoll @1134 + _strncoll_l=MSVCRT__strncoll_l @1135 + _strnicmp=MSVCRT__strnicmp @1136 + _strnicmp_l=MSVCRT__strnicmp_l @1137 + _strnicoll=MSVCRT__strnicoll @1138 + _strnicoll_l=MSVCRT__strnicoll_l @1139 + _strnset=MSVCRT__strnset @1140 + _strnset_s=MSVCRT__strnset_s @1141 + _strrev=MSVCRT__strrev @1142 + _strset @1143 + _strset_s @1144 PRIVATE + _strtime=MSVCRT__strtime @1145 + _strtime_s @1146 + _strtod_l=MSVCRT_strtod_l @1147 + _strtoi64=MSVCRT_strtoi64 @1148 + _strtoi64_l=MSVCRT_strtoi64_l @1149 + _strtol_l=MSVCRT__strtol_l @1150 + _strtoui64=MSVCRT_strtoui64 @1151 + _strtoui64_l=MSVCRT_strtoui64_l @1152 + _strtoul_l=MSVCRT_strtoul_l @1153 + _strupr=MSVCRT__strupr @1154 + _strupr_l=MSVCRT__strupr_l @1155 + _strupr_s=MSVCRT__strupr_s @1156 + _strupr_s_l=MSVCRT__strupr_s_l @1157 + _strxfrm_l=MSVCRT__strxfrm_l @1158 + _swab=MSVCRT__swab @1159 + _swprintf=MSVCRT_swprintf @1160 + _swprintf_c @1161 PRIVATE + _swprintf_c_l @1162 PRIVATE + _swprintf_p @1163 PRIVATE + _swprintf_p_l=MSVCRT_swprintf_p_l @1164 + _swprintf_s_l=MSVCRT__swprintf_s_l @1165 + _swscanf_l=MSVCRT__swscanf_l @1166 + _swscanf_s_l=MSVCRT__swscanf_s_l @1167 + _sys_errlist=MSVCRT__sys_errlist @1168 DATA + _sys_nerr=MSVCRT__sys_nerr @1169 DATA + _tell=MSVCRT__tell @1170 + _telli64 @1171 + _tempnam=MSVCRT__tempnam @1172 + _time32=MSVCRT__time32 @1173 + _time64=MSVCRT__time64 @1174 + _timezone=MSVCRT___timezone @1175 DATA + _tolower=MSVCRT__tolower @1176 + _tolower_l=MSVCRT__tolower_l @1177 + _toupper=MSVCRT__toupper @1178 + _toupper_l=MSVCRT__toupper_l @1179 + _towlower_l=MSVCRT__towlower_l @1180 + _towupper_l=MSVCRT__towupper_l @1181 + _tzname=MSVCRT__tzname @1182 DATA + _tzset=MSVCRT__tzset @1183 + _ui64toa=ntdll._ui64toa @1184 + _ui64toa_s=MSVCRT__ui64toa_s @1185 + _ui64tow=ntdll._ui64tow @1186 + _ui64tow_s=MSVCRT__ui64tow_s @1187 + _ultoa=ntdll._ultoa @1188 + _ultoa_s=MSVCRT__ultoa_s @1189 + _ultow=ntdll._ultow @1190 + _ultow_s=MSVCRT__ultow_s @1191 + _umask=MSVCRT__umask @1192 + _umask_s @1193 PRIVATE + _ungetc_nolock=MSVCRT__ungetc_nolock @1194 + _ungetch @1195 + _ungetch_nolock @1196 + _ungetwc_nolock=MSVCRT__ungetwc_nolock @1197 + _ungetwch @1198 + _ungetwch_nolock @1199 + _unlink=MSVCRT__unlink @1200 + _unloaddll @1201 + _unlock @1202 + _unlock_file=MSVCRT__unlock_file @1203 + _utime32 @1204 + _utime64 @1205 + _vcprintf @1206 + _vcprintf_l @1207 PRIVATE + _vcprintf_p @1208 PRIVATE + _vcprintf_p_l @1209 PRIVATE + _vcprintf_s @1210 PRIVATE + _vcprintf_s_l @1211 PRIVATE + _vcwprintf @1212 + _vcwprintf_l @1213 PRIVATE + _vcwprintf_p @1214 PRIVATE + _vcwprintf_p_l @1215 PRIVATE + _vcwprintf_s @1216 PRIVATE + _vcwprintf_s_l @1217 PRIVATE + _vfprintf_l=MSVCRT__vfprintf_l @1218 + _vfprintf_p=MSVCRT__vfprintf_p @1219 + _vfprintf_p_l=MSVCRT__vfprintf_p_l @1220 + _vfprintf_s_l=MSVCRT__vfprintf_s_l @1221 + _vfwprintf_l=MSVCRT__vfwprintf_l @1222 + _vfwprintf_p=MSVCRT__vfwprintf_p @1223 + _vfwprintf_p_l=MSVCRT__vfwprintf_p_l @1224 + _vfwprintf_s_l=MSVCRT__vfwprintf_s_l @1225 + _vprintf_l @1226 PRIVATE + _vprintf_p @1227 PRIVATE + _vprintf_p_l @1228 PRIVATE + _vprintf_s_l @1229 PRIVATE + _vscprintf=MSVCRT__vscprintf @1230 + _vscprintf_l=MSVCRT__vscprintf_l @1231 + _vscprintf_p=MSVCRT__vscprintf_p @1232 + _vscprintf_p_l=MSVCRT__vscprintf_p_l @1233 + _vscwprintf=MSVCRT__vscwprintf @1234 + _vscwprintf_l=MSVCRT__vscwprintf_l @1235 + _vscwprintf_p=MSVCRT__vscwprintf_p @1236 + _vscwprintf_p_l=MSVCRT__vscwprintf_p_l @1237 + _vsnprintf=MSVCRT_vsnprintf @1238 + _vsnprintf_c=MSVCRT_vsnprintf @1239 + _vsnprintf_c_l=MSVCRT_vsnprintf_l @1240 + _vsnprintf_l=MSVCRT_vsnprintf_l @1241 + _vsnprintf_s=MSVCRT_vsnprintf_s @1242 + _vsnprintf_s_l=MSVCRT_vsnprintf_s_l @1243 + _vsnwprintf=MSVCRT_vsnwprintf @1244 + _vsnwprintf_l=MSVCRT_vsnwprintf_l @1245 + _vsnwprintf_s=MSVCRT_vsnwprintf_s @1246 + _vsnwprintf_s_l=MSVCRT_vsnwprintf_s_l @1247 + _vsprintf_l=MSVCRT_vsprintf_l @1248 + _vsprintf_p=MSVCRT_vsprintf_p @1249 + _vsprintf_p_l=MSVCRT_vsprintf_p_l @1250 + _vsprintf_s_l=MSVCRT_vsprintf_s_l @1251 + _vswprintf=MSVCRT_vswprintf @1252 + _vswprintf_c=MSVCRT_vsnwprintf @1253 + _vswprintf_c_l=MSVCRT_vsnwprintf_l @1254 + _vswprintf_l=MSVCRT_vswprintf_l @1255 + _vswprintf_p=MSVCRT__vswprintf_p @1256 + _vswprintf_p_l=MSVCRT_vswprintf_p_l @1257 + _vswprintf_s_l=MSVCRT_vswprintf_s_l @1258 + _vwprintf_l @1259 PRIVATE + _vwprintf_p @1260 PRIVATE + _vwprintf_p_l @1261 PRIVATE + _vwprintf_s_l @1262 PRIVATE + _waccess=MSVCRT__waccess @1263 + _waccess_s=MSVCRT__waccess_s @1264 + _wasctime=MSVCRT__wasctime @1265 + _wasctime_s=MSVCRT__wasctime_s @1266 + _wassert=MSVCRT__wassert @1267 + _wchdir=MSVCRT__wchdir @1268 + _wchmod=MSVCRT__wchmod @1269 + _wcmdln=MSVCRT__wcmdln @1270 DATA + _wcreat=MSVCRT__wcreat @1271 + _wcreate_locale=MSVCRT__wcreate_locale @1272 + _wcscoll_l=MSVCRT__wcscoll_l @1273 + _wcsdup=MSVCRT__wcsdup @1274 + _wcserror=MSVCRT__wcserror @1275 + _wcserror_s=MSVCRT__wcserror_s @1276 + _wcsftime_l=MSVCRT__wcsftime_l @1277 + _wcsicmp=MSVCRT__wcsicmp @1278 + _wcsicmp_l=MSVCRT__wcsicmp_l @1279 + _wcsicoll=MSVCRT__wcsicoll @1280 + _wcsicoll_l=MSVCRT__wcsicoll_l @1281 + _wcslwr=MSVCRT__wcslwr @1282 + _wcslwr_l=MSVCRT__wcslwr_l @1283 + _wcslwr_s=MSVCRT__wcslwr_s @1284 + _wcslwr_s_l=MSVCRT__wcslwr_s_l @1285 + _wcsncoll=MSVCRT__wcsncoll @1286 + _wcsncoll_l=MSVCRT__wcsncoll_l @1287 + _wcsnicmp=MSVCRT__wcsnicmp @1288 + _wcsnicmp_l=MSVCRT__wcsnicmp_l @1289 + _wcsnicoll=MSVCRT__wcsnicoll @1290 + _wcsnicoll_l=MSVCRT__wcsnicoll_l @1291 + _wcsnset=MSVCRT__wcsnset @1292 + _wcsnset_s=MSVCRT__wcsnset_s @1293 + _wcsrev=MSVCRT__wcsrev @1294 + _wcsset=MSVCRT__wcsset @1295 + _wcsset_s=MSVCRT__wcsset_s @1296 + _wcstod_l=MSVCRT__wcstod_l @1297 + _wcstoi64=MSVCRT__wcstoi64 @1298 + _wcstoi64_l=MSVCRT__wcstoi64_l @1299 + _wcstol_l=MSVCRT__wcstol_l @1300 + _wcstombs_l=MSVCRT__wcstombs_l @1301 + _wcstombs_s_l=MSVCRT__wcstombs_s_l @1302 + _wcstoui64=MSVCRT__wcstoui64 @1303 + _wcstoui64_l=MSVCRT__wcstoui64_l @1304 + _wcstoul_l=MSVCRT__wcstoul_l @1305 + _wcsupr=MSVCRT__wcsupr @1306 + _wcsupr_l=MSVCRT__wcsupr_l @1307 + _wcsupr_s=MSVCRT__wcsupr_s @1308 + _wcsupr_s_l=MSVCRT__wcsupr_s_l @1309 + _wcsxfrm_l=MSVCRT__wcsxfrm_l @1310 + _wctime32=MSVCRT__wctime32 @1311 + _wctime32_s=MSVCRT__wctime32_s @1312 + _wctime64=MSVCRT__wctime64 @1313 + _wctime64_s=MSVCRT__wctime64_s @1314 + _wctomb_l=MSVCRT__wctomb_l @1315 + _wctomb_s_l=MSVCRT__wctomb_s_l @1316 + _wdupenv_s @1317 + _wenviron=MSVCRT__wenviron @1318 DATA + _wexecl @1319 + _wexecle @1320 + _wexeclp @1321 + _wexeclpe @1322 + _wexecv @1323 + _wexecve @1324 + _wexecvp @1325 + _wexecvpe @1326 + _wfdopen=MSVCRT__wfdopen @1327 + _wfindfirst32=MSVCRT__wfindfirst32 @1328 + _wfindfirst32i64 @1329 PRIVATE + _wfindfirst64=MSVCRT__wfindfirst64 @1330 + _wfindfirst64i32=MSVCRT__wfindfirst64i32 @1331 + _wfindnext32=MSVCRT__wfindnext32 @1332 + _wfindnext32i64 @1333 PRIVATE + _wfindnext64=MSVCRT__wfindnext64 @1334 + _wfindnext64i32=MSVCRT__wfindnext64i32 @1335 + _wfopen=MSVCRT__wfopen @1336 + _wfopen_s=MSVCRT__wfopen_s @1337 + _wfreopen=MSVCRT__wfreopen @1338 + _wfreopen_s=MSVCRT__wfreopen_s @1339 + _wfsopen=MSVCRT__wfsopen @1340 + _wfullpath=MSVCRT__wfullpath @1341 + _wgetcwd=MSVCRT__wgetcwd @1342 + _wgetdcwd=MSVCRT__wgetdcwd @1343 + _wgetenv=MSVCRT__wgetenv @1344 + _wgetenv_s @1345 + _wmakepath=MSVCRT__wmakepath @1346 + _wmakepath_s=MSVCRT__wmakepath_s @1347 + _wmkdir=MSVCRT__wmkdir @1348 + _wmktemp=MSVCRT__wmktemp @1349 + _wmktemp_s=MSVCRT__wmktemp_s @1350 + _wopen=MSVCRT__wopen @1351 + _wperror=MSVCRT__wperror @1352 + _wpgmptr=MSVCRT__wpgmptr @1353 DATA + _wpopen=MSVCRT__wpopen @1354 + _wprintf_l @1355 PRIVATE + _wprintf_p @1356 PRIVATE + _wprintf_p_l @1357 PRIVATE + _wprintf_s_l @1358 PRIVATE + _wputenv @1359 + _wputenv_s @1360 + _wremove=MSVCRT__wremove @1361 + _wrename=MSVCRT__wrename @1362 + _write=MSVCRT__write @1363 + _wrmdir=MSVCRT__wrmdir @1364 + _wscanf_l=MSVCRT__wscanf_l @1365 + _wscanf_s_l=MSVCRT__wscanf_s_l @1366 + _wsearchenv=MSVCRT__wsearchenv @1367 + _wsearchenv_s=MSVCRT__wsearchenv_s @1368 + _wsetlocale=MSVCRT__wsetlocale @1369 + _wsopen=MSVCRT__wsopen @1370 + _wsopen_s=MSVCRT__wsopen_s @1371 + _wspawnl=MSVCRT__wspawnl @1372 + _wspawnle=MSVCRT__wspawnle @1373 + _wspawnlp=MSVCRT__wspawnlp @1374 + _wspawnlpe=MSVCRT__wspawnlpe @1375 + _wspawnv=MSVCRT__wspawnv @1376 + _wspawnve=MSVCRT__wspawnve @1377 + _wspawnvp=MSVCRT__wspawnvp @1378 + _wspawnvpe=MSVCRT__wspawnvpe @1379 + _wsplitpath=MSVCRT__wsplitpath @1380 + _wsplitpath_s=MSVCRT__wsplitpath_s @1381 + _wstat32=MSVCRT__wstat32 @1382 + _wstat32i64=MSVCRT__wstat32i64 @1383 + _wstat64=MSVCRT__wstat64 @1384 + _wstat64i32=MSVCRT__wstat64i32 @1385 + _wstrdate=MSVCRT__wstrdate @1386 + _wstrdate_s @1387 + _wstrtime=MSVCRT__wstrtime @1388 + _wstrtime_s @1389 + _wsystem @1390 + _wtempnam=MSVCRT__wtempnam @1391 + _wtmpnam=MSVCRT__wtmpnam @1392 + _wtmpnam_s=MSVCRT__wtmpnam_s @1393 + _wtof=MSVCRT__wtof @1394 + _wtof_l=MSVCRT__wtof_l @1395 + _wtoi=MSVCRT__wtoi @1396 + _wtoi64=MSVCRT__wtoi64 @1397 + _wtoi64_l=MSVCRT__wtoi64_l @1398 + _wtoi_l=MSVCRT__wtoi_l @1399 + _wtol=MSVCRT__wtol @1400 + _wtol_l=MSVCRT__wtol_l @1401 + _wunlink=MSVCRT__wunlink @1402 + _wutime32 @1403 + _wutime64 @1404 + _y0=MSVCRT__y0 @1405 + _y1=MSVCRT__y1 @1406 + _yn=MSVCRT__yn @1407 + abort=MSVCRT_abort @1408 + abs=MSVCRT_abs @1409 + acos=MSVCRT_acos @1410 + acosf=MSVCRT_acosf @1411 + asctime=MSVCRT_asctime @1412 + asctime_s=MSVCRT_asctime_s @1413 + asin=MSVCRT_asin @1414 + asinf=MSVCRT_asinf @1415 + atan=MSVCRT_atan @1416 + atanf=MSVCRT_atanf @1417 + atan2=MSVCRT_atan2 @1418 + atan2f=MSVCRT_atan2f @1419 + atexit=MSVCRT_atexit @1420 PRIVATE + atof=MSVCRT_atof @1421 + atoi=MSVCRT_atoi @1422 + atol=MSVCRT_atol @1423 + bsearch=MSVCRT_bsearch @1424 + bsearch_s=MSVCRT_bsearch_s @1425 + btowc=MSVCRT_btowc @1426 + calloc=MSVCRT_calloc @1427 + ceil=MSVCRT_ceil @1428 + ceilf=MSVCRT_ceilf @1429 + clearerr=MSVCRT_clearerr @1430 + clearerr_s=MSVCRT_clearerr_s @1431 + clock=MSVCRT_clock @1432 + cos=MSVCRT_cos @1433 + cosf=MSVCRT_cosf @1434 + cosh=MSVCRT_cosh @1435 + coshf=MSVCRT_coshf @1436 + div=MSVCRT_div @1437 + exit=MSVCRT_exit @1438 + exp=MSVCRT_exp @1439 + expf=MSVCRT_expf @1440 + fabs=MSVCRT_fabs @1441 + fabsf=MSVCRT_fabsf @1442 + fclose=MSVCRT_fclose @1443 + feof=MSVCRT_feof @1444 + ferror=MSVCRT_ferror @1445 + fflush=MSVCRT_fflush @1446 + fgetc=MSVCRT_fgetc @1447 + fgetpos=MSVCRT_fgetpos @1448 + fgets=MSVCRT_fgets @1449 + fgetwc=MSVCRT_fgetwc @1450 + fgetws=MSVCRT_fgetws @1451 + floor=MSVCRT_floor @1452 + floorf=MSVCRT_floorf @1453 + fmod=MSVCRT_fmod @1454 + fmodf=MSVCRT_fmodf @1455 + fopen=MSVCRT_fopen @1456 + fopen_s=MSVCRT_fopen_s @1457 + fprintf=MSVCRT_fprintf @1458 + fprintf_s=MSVCRT_fprintf_s @1459 + fputc=MSVCRT_fputc @1460 + fputs=MSVCRT_fputs @1461 + fputwc=MSVCRT_fputwc @1462 + fputws=MSVCRT_fputws @1463 + fread=MSVCRT_fread @1464 + fread_s=MSVCRT_fread_s @1465 + free=MSVCRT_free @1466 + freopen=MSVCRT_freopen @1467 + freopen_s=MSVCRT_freopen_s @1468 + frexp=MSVCRT_frexp @1469 + fscanf=MSVCRT_fscanf @1470 + fscanf_s=MSVCRT_fscanf_s @1471 + fseek=MSVCRT_fseek @1472 + fsetpos=MSVCRT_fsetpos @1473 + ftell=MSVCRT_ftell @1474 + fwprintf=MSVCRT_fwprintf @1475 + fwprintf_s=MSVCRT_fwprintf_s @1476 + fwrite=MSVCRT_fwrite @1477 + fwscanf=MSVCRT_fwscanf @1478 + fwscanf_s=MSVCRT_fwscanf_s @1479 + getc=MSVCRT_getc @1480 + getchar=MSVCRT_getchar @1481 + getenv=MSVCRT_getenv @1482 + getenv_s @1483 + gets=MSVCRT_gets @1484 + gets_s=MSVCRT_gets_s @1485 + getwc=MSVCRT_getwc @1486 + getwchar=MSVCRT_getwchar @1487 + is_wctype=ntdll.iswctype @1488 + isalnum=MSVCRT_isalnum @1489 + isalpha=MSVCRT_isalpha @1490 + iscntrl=MSVCRT_iscntrl @1491 + isdigit=MSVCRT_isdigit @1492 + isgraph=MSVCRT_isgraph @1493 + isleadbyte=MSVCRT_isleadbyte @1494 + islower=MSVCRT_islower @1495 + isprint=MSVCRT_isprint @1496 + ispunct=MSVCRT_ispunct @1497 + isspace=MSVCRT_isspace @1498 + isupper=MSVCRT_isupper @1499 + iswalnum=MSVCRT_iswalnum @1500 + iswalpha=ntdll.iswalpha @1501 + iswascii=MSVCRT_iswascii @1502 + iswcntrl=MSVCRT_iswcntrl @1503 + iswctype=ntdll.iswctype @1504 + iswdigit=MSVCRT_iswdigit @1505 + iswgraph=MSVCRT_iswgraph @1506 + iswlower=MSVCRT_iswlower @1507 + iswprint=MSVCRT_iswprint @1508 + iswpunct=MSVCRT_iswpunct @1509 + iswspace=MSVCRT_iswspace @1510 + iswupper=MSVCRT_iswupper @1511 + iswxdigit=MSVCRT_iswxdigit @1512 + isxdigit=MSVCRT_isxdigit @1513 + labs=MSVCRT_labs @1514 + ldexp=MSVCRT_ldexp @1515 + ldiv=MSVCRT_ldiv @1516 + llabs=MSVCRT_llabs @1517 + lldiv=MSVCRT_lldiv @1518 + localeconv=MSVCRT_localeconv @1519 + log=MSVCRT_log @1520 + logf=MSVCRT_logf @1521 + log10=MSVCRT_log10 @1522 + log10f=MSVCRT_log10f @1523 + longjmp=MSVCRT_longjmp @1524 + malloc=MSVCRT_malloc @1525 + mblen=MSVCRT_mblen @1526 + mbrlen=MSVCRT_mbrlen @1527 + mbrtowc=MSVCRT_mbrtowc @1528 + mbsrtowcs=MSVCRT_mbsrtowcs @1529 + mbsrtowcs_s=MSVCRT_mbsrtowcs_s @1530 + mbstowcs=MSVCRT_mbstowcs @1531 + mbstowcs_s=MSVCRT__mbstowcs_s @1532 + mbtowc=MSVCRT_mbtowc @1533 + memchr=MSVCRT_memchr @1534 + memcmp=MSVCRT_memcmp @1535 + memcpy=MSVCRT_memcpy @1536 + memcpy_s=MSVCRT_memcpy_s @1537 + memmove=MSVCRT_memmove @1538 + memmove_s=MSVCRT_memmove_s @1539 + memset=MSVCRT_memset @1540 + modf=MSVCRT_modf @1541 + modff=MSVCRT_modff @1542 + perror=MSVCRT_perror @1543 + pow=MSVCRT_pow @1544 + powf=MSVCRT_powf @1545 + printf=MSVCRT_printf @1546 + printf_s=MSVCRT_printf_s @1547 + putc=MSVCRT_putc @1548 + putchar=MSVCRT_putchar @1549 + puts=MSVCRT_puts @1550 + putwc=MSVCRT_fputwc @1551 + putwchar=MSVCRT__fputwchar @1552 + qsort=MSVCRT_qsort @1553 + qsort_s=MSVCRT_qsort_s @1554 + raise=MSVCRT_raise @1555 + rand=MSVCRT_rand @1556 + rand_s=MSVCRT_rand_s @1557 + realloc=MSVCRT_realloc @1558 + remove=MSVCRT_remove @1559 + rename=MSVCRT_rename @1560 + rewind=MSVCRT_rewind @1561 + scanf=MSVCRT_scanf @1562 + scanf_s=MSVCRT_scanf_s @1563 + setbuf=MSVCRT_setbuf @1564 + setjmp=MSVCRT__setjmp @1565 PRIVATE + setlocale=MSVCRT_setlocale @1566 + setvbuf=MSVCRT_setvbuf @1567 + signal=MSVCRT_signal @1568 + sin=MSVCRT_sin @1569 + sinf=MSVCRT_sinf @1570 + sinh=MSVCRT_sinh @1571 + sinhf=MSVCRT_sinhf @1572 + sprintf=MSVCRT_sprintf @1573 + sprintf_s=MSVCRT_sprintf_s @1574 + sqrt=MSVCRT_sqrt @1575 + sqrtf=MSVCRT_sqrtf @1576 + srand=MSVCRT_srand @1577 + sscanf=MSVCRT_sscanf @1578 + sscanf_s=MSVCRT_sscanf_s @1579 + strcat=ntdll.strcat @1580 + strcat_s=MSVCRT_strcat_s @1581 + strchr=MSVCRT_strchr @1582 + strcmp=MSVCRT_strcmp @1583 + strcoll=MSVCRT_strcoll @1584 + strcpy=MSVCRT_strcpy @1585 + strcpy_s=MSVCRT_strcpy_s @1586 + strcspn=MSVCRT_strcspn @1587 + strerror=MSVCRT_strerror @1588 + strerror_s=MSVCRT_strerror_s @1589 + strftime=MSVCRT_strftime @1590 + strlen=MSVCRT_strlen @1591 + strncat=MSVCRT_strncat @1592 + strncat_s=MSVCRT_strncat_s @1593 + strncmp=MSVCRT_strncmp @1594 + strncpy=MSVCRT_strncpy @1595 + strncpy_s=MSVCRT_strncpy_s @1596 + strnlen=MSVCRT_strnlen @1597 + strpbrk=MSVCRT_strpbrk @1598 + strrchr=MSVCRT_strrchr @1599 + strspn=ntdll.strspn @1600 + strstr=MSVCRT_strstr @1601 + strtod=MSVCRT_strtod @1602 + strtok=MSVCRT_strtok @1603 + strtok_s=MSVCRT_strtok_s @1604 + strtol=MSVCRT_strtol @1605 + strtoul=MSVCRT_strtoul @1606 + strxfrm=MSVCRT_strxfrm @1607 + swprintf_s=MSVCRT_swprintf_s @1608 + swscanf=MSVCRT_swscanf @1609 + swscanf_s=MSVCRT_swscanf_s @1610 + system=MSVCRT_system @1611 + tan=MSVCRT_tan @1612 + tanf=MSVCRT_tanf @1613 + tanh=MSVCRT_tanh @1614 + tanhf=MSVCRT_tanhf @1615 + tmpfile=MSVCRT_tmpfile @1616 + tmpfile_s=MSVCRT_tmpfile_s @1617 + tmpnam=MSVCRT_tmpnam @1618 + tmpnam_s=MSVCRT_tmpnam_s @1619 + tolower=MSVCRT_tolower @1620 + toupper=MSVCRT_toupper @1621 + towlower=MSVCRT_towlower @1622 + towupper=MSVCRT_towupper @1623 + ungetc=MSVCRT_ungetc @1624 + ungetwc=MSVCRT_ungetwc @1625 + vfprintf=MSVCRT_vfprintf @1626 + vfprintf_s=MSVCRT_vfprintf_s @1627 + vfwprintf=MSVCRT_vfwprintf @1628 + vfwprintf_s=MSVCRT_vfwprintf_s @1629 + vprintf=MSVCRT_vprintf @1630 + vprintf_s=MSVCRT_vprintf_s @1631 + vsprintf=MSVCRT_vsprintf @1632 + vsprintf_s=MSVCRT_vsprintf_s @1633 + vswprintf_s=MSVCRT_vswprintf_s @1634 + vwprintf=MSVCRT_vwprintf @1635 + vwprintf_s=MSVCRT_vwprintf_s @1636 + wcrtomb=MSVCRT_wcrtomb @1637 + wcrtomb_s @1638 PRIVATE + wcscat=ntdll.wcscat @1639 + wcscat_s=MSVCRT_wcscat_s @1640 + wcschr=MSVCRT_wcschr @1641 + wcscmp=MSVCRT_wcscmp @1642 + wcscoll=MSVCRT_wcscoll @1643 + wcscpy=ntdll.wcscpy @1644 + wcscpy_s=MSVCRT_wcscpy_s @1645 + wcscspn=ntdll.wcscspn @1646 + wcsftime=MSVCRT_wcsftime @1647 + wcslen=MSVCRT_wcslen @1648 + wcsncat=ntdll.wcsncat @1649 + wcsncat_s=MSVCRT_wcsncat_s @1650 + wcsncmp=MSVCRT_wcsncmp @1651 + wcsncpy=MSVCRT_wcsncpy @1652 + wcsncpy_s=MSVCRT_wcsncpy_s @1653 + wcsnlen=MSVCRT_wcsnlen @1654 + wcspbrk=MSVCRT_wcspbrk @1655 + wcsrchr=MSVCRT_wcsrchr @1656 + wcsrtombs=MSVCRT_wcsrtombs @1657 + wcsrtombs_s=MSVCRT_wcsrtombs_s @1658 + wcsspn=ntdll.wcsspn @1659 + wcsstr=MSVCRT_wcsstr @1660 + wcstod=MSVCRT_wcstod @1661 + wcstok=MSVCRT_wcstok @1662 + wcstok_s=MSVCRT_wcstok_s @1663 + wcstol=MSVCRT_wcstol @1664 + wcstombs=MSVCRT_wcstombs @1665 + wcstombs_s=MSVCRT_wcstombs_s @1666 + wcstoul=MSVCRT_wcstoul @1667 + wcsxfrm=MSVCRT_wcsxfrm @1668 + wctob=MSVCRT_wctob @1669 + wctomb=MSVCRT_wctomb @1670 + wctomb_s=MSVCRT_wctomb_s @1671 + wmemcpy_s @1672 + wmemmove_s @1673 + wprintf=MSVCRT_wprintf @1674 + wprintf_s=MSVCRT_wprintf_s @1675 + wscanf=MSVCRT_wscanf @1676 + wscanf_s=MSVCRT_wscanf_s @1677 diff --git a/lib64/wine/libmsvcr120.def b/lib64/wine/libmsvcr120.def new file mode 100644 index 0000000..b549704 --- /dev/null +++ b/lib64/wine/libmsvcr120.def @@ -0,0 +1,1938 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/msvcr120/msvcr120.spec; do not edit! + +LIBRARY msvcr120.dll + +EXPORTS + ??0?$_SpinWait@$00@details@Concurrency@@QEAA@P6AXXZ@Z=SpinWait_ctor_yield @1 + ??0?$_SpinWait@$0A@@details@Concurrency@@QEAA@P6AXXZ@Z=SpinWait_ctor @2 + ??0SchedulerPolicy@Concurrency@@QEAA@_KZZ=SchedulerPolicy_ctor_policies @3 + ??0SchedulerPolicy@Concurrency@@QEAA@AEBV01@@Z=SchedulerPolicy_copy_ctor @4 + ??0SchedulerPolicy@Concurrency@@QEAA@XZ=SchedulerPolicy_ctor @5 + ??0_Cancellation_beacon@details@Concurrency@@QEAA@XZ @6 PRIVATE + ??0_Condition_variable@details@Concurrency@@QEAA@XZ=_Condition_variable_ctor @7 + ??0_Context@details@Concurrency@@QEAA@PEAVContext@2@@Z @8 PRIVATE + ??0_Interruption_exception@details@Concurrency@@QEAA@PEBD@Z @9 PRIVATE + ??0_Interruption_exception@details@Concurrency@@QEAA@XZ @10 PRIVATE + ??0_NonReentrantBlockingLock@details@Concurrency@@QEAA@XZ=_ReentrantBlockingLock_ctor @11 + ??0_NonReentrantPPLLock@details@Concurrency@@QEAA@XZ=_NonReentrantPPLLock_ctor @12 + ??0_ReaderWriterLock@details@Concurrency@@QEAA@XZ @13 PRIVATE + ??0_ReentrantBlockingLock@details@Concurrency@@QEAA@XZ=_ReentrantBlockingLock_ctor @14 + ??0_ReentrantLock@details@Concurrency@@QEAA@XZ @15 PRIVATE + ??0_ReentrantPPLLock@details@Concurrency@@QEAA@XZ=_ReentrantPPLLock_ctor @16 + ??0_Scheduler@details@Concurrency@@QEAA@PEAVScheduler@2@@Z=_Scheduler_ctor_sched @17 + ??0_Scoped_lock@_NonReentrantPPLLock@details@Concurrency@@QEAA@AEAV123@@Z=_NonReentrantPPLLock__Scoped_lock_ctor @18 + ??0_Scoped_lock@_ReentrantPPLLock@details@Concurrency@@QEAA@AEAV123@@Z=_ReentrantPPLLock__Scoped_lock_ctor @19 + ??0_SpinLock@details@Concurrency@@QEAA@AECJ@Z @20 PRIVATE + ??0_StructuredTaskCollection@details@Concurrency@@QEAA@PEAV_CancellationTokenState@12@@Z @21 PRIVATE + ??0_TaskCollection@details@Concurrency@@QEAA@PEAV_CancellationTokenState@12@@Z @22 PRIVATE + ??0_TaskCollection@details@Concurrency@@QEAA@XZ @23 PRIVATE + ??0_Timer@details@Concurrency@@IEAA@I_N@Z @24 PRIVATE + ??0__non_rtti_object@std@@QEAA@AEBV01@@Z=MSVCRT___non_rtti_object_copy_ctor @25 + ??0__non_rtti_object@std@@QEAA@PEBD@Z=MSVCRT___non_rtti_object_ctor @26 + ??0bad_cast@std@@AEAA@PEBQEBD@Z=MSVCRT_bad_cast_ctor @27 + ??0bad_cast@std@@QEAA@AEBV01@@Z=MSVCRT_bad_cast_copy_ctor @28 + ??0bad_cast@std@@QEAA@PEBD@Z=MSVCRT_bad_cast_ctor_charptr @29 + ??0bad_target@Concurrency@@QEAA@PEBD@Z @30 PRIVATE + ??0bad_target@Concurrency@@QEAA@XZ @31 PRIVATE + ??0bad_typeid@std@@QEAA@AEBV01@@Z=MSVCRT_bad_typeid_copy_ctor @32 + ??0bad_typeid@std@@QEAA@PEBD@Z=MSVCRT_bad_typeid_ctor @33 + ??0context_self_unblock@Concurrency@@QEAA@PEBD@Z @34 PRIVATE + ??0context_self_unblock@Concurrency@@QEAA@XZ @35 PRIVATE + ??0context_unblock_unbalanced@Concurrency@@QEAA@PEBD@Z @36 PRIVATE + ??0context_unblock_unbalanced@Concurrency@@QEAA@XZ @37 PRIVATE + ??0critical_section@Concurrency@@QEAA@XZ=critical_section_ctor @38 + ??0default_scheduler_exists@Concurrency@@QEAA@PEBD@Z @39 PRIVATE + ??0default_scheduler_exists@Concurrency@@QEAA@XZ @40 PRIVATE + ??0event@Concurrency@@QEAA@XZ=event_ctor @41 + ??0exception@std@@QEAA@AEBQEBD@Z=MSVCRT_exception_ctor @42 + ??0exception@std@@QEAA@AEBQEBDH@Z=MSVCRT_exception_ctor_noalloc @43 + ??0exception@std@@QEAA@AEBV01@@Z=MSVCRT_exception_copy_ctor @44 + ??0exception@std@@QEAA@XZ=MSVCRT_exception_default_ctor @45 + ??0improper_lock@Concurrency@@QEAA@PEBD@Z=improper_lock_ctor_str @46 + ??0improper_lock@Concurrency@@QEAA@XZ=improper_lock_ctor @47 + ??0improper_scheduler_attach@Concurrency@@QEAA@PEBD@Z=improper_scheduler_attach_ctor_str @48 + ??0improper_scheduler_attach@Concurrency@@QEAA@XZ=improper_scheduler_attach_ctor @49 + ??0improper_scheduler_detach@Concurrency@@QEAA@PEBD@Z=improper_scheduler_detach_ctor_str @50 + ??0improper_scheduler_detach@Concurrency@@QEAA@XZ=improper_scheduler_detach_ctor @51 + ??0improper_scheduler_reference@Concurrency@@QEAA@PEBD@Z @52 PRIVATE + ??0improper_scheduler_reference@Concurrency@@QEAA@XZ @53 PRIVATE + ??0invalid_link_target@Concurrency@@QEAA@PEBD@Z @54 PRIVATE + ??0invalid_link_target@Concurrency@@QEAA@XZ @55 PRIVATE + ??0invalid_multiple_scheduling@Concurrency@@QEAA@PEBD@Z @56 PRIVATE + ??0invalid_multiple_scheduling@Concurrency@@QEAA@XZ @57 PRIVATE + ??0invalid_operation@Concurrency@@QEAA@PEBD@Z @58 PRIVATE + ??0invalid_operation@Concurrency@@QEAA@XZ @59 PRIVATE + ??0invalid_oversubscribe_operation@Concurrency@@QEAA@PEBD@Z @60 PRIVATE + ??0invalid_oversubscribe_operation@Concurrency@@QEAA@XZ @61 PRIVATE + ??0invalid_scheduler_policy_key@Concurrency@@QEAA@PEBD@Z=invalid_scheduler_policy_key_ctor_str @62 + ??0invalid_scheduler_policy_key@Concurrency@@QEAA@XZ=invalid_scheduler_policy_key_ctor @63 + ??0invalid_scheduler_policy_thread_specification@Concurrency@@QEAA@PEBD@Z=invalid_scheduler_policy_thread_specification_ctor_str @64 + ??0invalid_scheduler_policy_thread_specification@Concurrency@@QEAA@XZ=invalid_scheduler_policy_thread_specification_ctor @65 + ??0invalid_scheduler_policy_value@Concurrency@@QEAA@PEBD@Z=invalid_scheduler_policy_value_ctor_str @66 + ??0invalid_scheduler_policy_value@Concurrency@@QEAA@XZ=invalid_scheduler_policy_value_ctor @67 + ??0message_not_found@Concurrency@@QEAA@PEBD@Z @68 PRIVATE + ??0message_not_found@Concurrency@@QEAA@XZ @69 PRIVATE + ??0missing_wait@Concurrency@@QEAA@PEBD@Z @70 PRIVATE + ??0missing_wait@Concurrency@@QEAA@XZ @71 PRIVATE + ??0nested_scheduler_missing_detach@Concurrency@@QEAA@PEBD@Z @72 PRIVATE + ??0nested_scheduler_missing_detach@Concurrency@@QEAA@XZ @73 PRIVATE + ??0operation_timed_out@Concurrency@@QEAA@PEBD@Z @74 PRIVATE + ??0operation_timed_out@Concurrency@@QEAA@XZ @75 PRIVATE + ??0reader_writer_lock@Concurrency@@QEAA@XZ=reader_writer_lock_ctor @76 + ??0scheduler_not_attached@Concurrency@@QEAA@PEBD@Z @77 PRIVATE + ??0scheduler_not_attached@Concurrency@@QEAA@XZ @78 PRIVATE + ??0scheduler_resource_allocation_error@Concurrency@@QEAA@J@Z=scheduler_resource_allocation_error_ctor @79 + ??0scheduler_resource_allocation_error@Concurrency@@QEAA@PEBDJ@Z=scheduler_resource_allocation_error_ctor_name @80 + ??0scheduler_worker_creation_error@Concurrency@@QEAA@J@Z @81 PRIVATE + ??0scheduler_worker_creation_error@Concurrency@@QEAA@PEBDJ@Z @82 PRIVATE + ??0scoped_lock@critical_section@Concurrency@@QEAA@AEAV12@@Z=critical_section_scoped_lock_ctor @83 + ??0scoped_lock@reader_writer_lock@Concurrency@@QEAA@AEAV12@@Z=reader_writer_lock_scoped_lock_ctor @84 + ??0scoped_lock_read@reader_writer_lock@Concurrency@@QEAA@AEAV12@@Z=reader_writer_lock_scoped_lock_read_ctor @85 + ??0task_canceled@Concurrency@@QEAA@PEBD@Z @86 PRIVATE + ??0task_canceled@Concurrency@@QEAA@XZ @87 PRIVATE + ??0unsupported_os@Concurrency@@QEAA@PEBD@Z @88 PRIVATE + ??0unsupported_os@Concurrency@@QEAA@XZ @89 PRIVATE + ??1SchedulerPolicy@Concurrency@@QEAA@XZ=SchedulerPolicy_dtor @90 + ??1_Cancellation_beacon@details@Concurrency@@QEAA@XZ @91 PRIVATE + ??1_Condition_variable@details@Concurrency@@QEAA@XZ=_Condition_variable_dtor @92 + ??1_NonReentrantBlockingLock@details@Concurrency@@QEAA@XZ=_ReentrantBlockingLock_dtor @93 + ??1_ReentrantBlockingLock@details@Concurrency@@QEAA@XZ=_ReentrantBlockingLock_dtor @94 + ??1_Scoped_lock@_NonReentrantPPLLock@details@Concurrency@@QEAA@XZ=_NonReentrantPPLLock__Scoped_lock_dtor @95 + ??1_Scoped_lock@_ReentrantPPLLock@details@Concurrency@@QEAA@XZ=_ReentrantPPLLock__Scoped_lock_dtor @96 + ??1_SpinLock@details@Concurrency@@QEAA@XZ @97 PRIVATE + ??1_StructuredTaskCollection@details@Concurrency@@QEAA@XZ @98 PRIVATE + ??1_TaskCollection@details@Concurrency@@QEAA@XZ @99 PRIVATE + ??1_Timer@details@Concurrency@@MEAA@XZ @100 PRIVATE + ??1__non_rtti_object@std@@UEAA@XZ=MSVCRT___non_rtti_object_dtor @101 + ??1bad_cast@std@@UEAA@XZ=MSVCRT_bad_cast_dtor @102 + ??1bad_typeid@std@@UEAA@XZ=MSVCRT_bad_typeid_dtor @103 + ??1critical_section@Concurrency@@QEAA@XZ=critical_section_dtor @104 + ??1event@Concurrency@@QEAA@XZ=event_dtor @105 + ??1exception@std@@UEAA@XZ=MSVCRT_exception_dtor @106 + ??1reader_writer_lock@Concurrency@@QEAA@XZ=reader_writer_lock_dtor @107 + ??1scoped_lock@critical_section@Concurrency@@QEAA@XZ=critical_section_scoped_lock_dtor @108 + ??1scoped_lock@reader_writer_lock@Concurrency@@QEAA@XZ=reader_writer_lock_scoped_lock_dtor @109 + ??1scoped_lock_read@reader_writer_lock@Concurrency@@QEAA@XZ=reader_writer_lock_scoped_lock_read_dtor @110 + ??1type_info@@UEAA@XZ=MSVCRT_type_info_dtor @111 + ??2@YAPEAX_K@Z=MSVCRT_operator_new @112 + ??2@YAPEAX_KHPEBDH@Z=MSVCRT_operator_new_dbg @113 + ??3@YAXPEAX@Z=MSVCRT_operator_delete @114 + ??3@YAXPEAXHPEBDH@Z @115 PRIVATE + ??4?$_SpinWait@$00@details@Concurrency@@QEAAAEAV012@AEBV012@@Z @116 PRIVATE + ??4?$_SpinWait@$0A@@details@Concurrency@@QEAAAEAV012@AEBV012@@Z @117 PRIVATE + ??4SchedulerPolicy@Concurrency@@QEAAAEAV01@AEBV01@@Z=SchedulerPolicy_op_assign @118 + ??4__non_rtti_object@std@@QEAAAEAV01@AEBV01@@Z=MSVCRT___non_rtti_object_opequals @119 + ??4bad_cast@std@@QEAAAEAV01@AEBV01@@Z=MSVCRT_bad_cast_opequals @120 + ??4bad_typeid@std@@QEAAAEAV01@AEBV01@@Z=MSVCRT_bad_typeid_opequals @121 + ??4exception@std@@QEAAAEAV01@AEBV01@@Z=MSVCRT_exception_opequals @122 + ??8type_info@@QEBA_NAEBV0@@Z=MSVCRT_type_info_opequals_equals @123 + ??9type_info@@QEBA_NAEBV0@@Z=MSVCRT_type_info_opnot_equals @124 + ??_7__non_rtti_object@std@@6B@=MSVCRT___non_rtti_object_vtable @125 DATA + ??_7bad_cast@std@@6B@=MSVCRT_bad_cast_vtable @126 DATA + ??_7bad_typeid@std@@6B@=MSVCRT_bad_typeid_vtable @127 DATA + ??_7exception@std@@6B@=MSVCRT_exception_vtable @128 DATA + ??_F?$_SpinWait@$00@details@Concurrency@@QEAAXXZ=SpinWait_dtor @129 + ??_F?$_SpinWait@$0A@@details@Concurrency@@QEAAXXZ=SpinWait_dtor @130 + ??_F_Context@details@Concurrency@@QEAAXXZ @131 PRIVATE + ??_F_Scheduler@details@Concurrency@@QEAAXXZ=_Scheduler_ctor @132 + ??_Fbad_cast@std@@QEAAXXZ=MSVCRT_bad_cast_default_ctor @133 + ??_Fbad_typeid@std@@QEAAXXZ=MSVCRT_bad_typeid_default_ctor @134 + ??_U@YAPEAX_K@Z=MSVCRT_operator_new @135 + ??_U@YAPEAX_KHPEBDH@Z=MSVCRT_operator_new_dbg @136 + ??_V@YAXPEAX@Z=MSVCRT_operator_delete @137 + ??_V@YAXPEAXHPEBDH@Z @138 PRIVATE + ?Alloc@Concurrency@@YAPEAX_K@Z=Concurrency_Alloc @139 + ?Block@Context@Concurrency@@SAXXZ=Context_Block @140 + ?CaptureCallstack@platform@details@Concurrency@@YA_KPEAPEAX_K1@Z @141 PRIVATE + ?Create@CurrentScheduler@Concurrency@@SAXAEBVSchedulerPolicy@2@@Z=CurrentScheduler_Create @142 + ?Create@Scheduler@Concurrency@@SAPEAV12@AEBVSchedulerPolicy@2@@Z=Scheduler_Create @143 + ?CreateResourceManager@Concurrency@@YAPEAUIResourceManager@1@XZ @144 PRIVATE + ?CreateScheduleGroup@CurrentScheduler@Concurrency@@SAPEAVScheduleGroup@2@AEAVlocation@2@@Z=CurrentScheduler_CreateScheduleGroup_loc @145 + ?CreateScheduleGroup@CurrentScheduler@Concurrency@@SAPEAVScheduleGroup@2@XZ=CurrentScheduler_CreateScheduleGroup @146 + ?CurrentContext@Context@Concurrency@@SAPEAV12@XZ=Context_CurrentContext @147 + ?Detach@CurrentScheduler@Concurrency@@SAXXZ=CurrentScheduler_Detach @148 + ?DisableTracing@Concurrency@@YAJXZ @149 PRIVATE + ?EnableTracing@Concurrency@@YAJXZ @150 PRIVATE + ?Free@Concurrency@@YAXPEAX@Z=Concurrency_Free @151 + ?Get@CurrentScheduler@Concurrency@@SAPEAVScheduler@2@XZ=CurrentScheduler_Get @152 + ?GetCurrentThreadId@platform@details@Concurrency@@YAJXZ=kernel32.GetCurrentThreadId @153 + ?GetExecutionContextId@Concurrency@@YAIXZ @154 PRIVATE + ?GetNumberOfVirtualProcessors@CurrentScheduler@Concurrency@@SAIXZ=CurrentScheduler_GetNumberOfVirtualProcessors @155 + ?GetOSVersion@Concurrency@@YA?AW4OSVersion@IResourceManager@1@XZ @156 PRIVATE + ?GetPolicy@CurrentScheduler@Concurrency@@SA?AVSchedulerPolicy@2@XZ=CurrentScheduler_GetPolicy @157 + ?GetPolicyValue@SchedulerPolicy@Concurrency@@QEBAIW4PolicyElementKey@2@@Z=SchedulerPolicy_GetPolicyValue @158 + ?GetProcessorCount@Concurrency@@YAIXZ @159 PRIVATE + ?GetProcessorNodeCount@Concurrency@@YAIXZ @160 PRIVATE + ?GetSchedulerId@Concurrency@@YAIXZ @161 PRIVATE + ?GetSharedTimerQueue@details@Concurrency@@YAPEAXXZ @162 PRIVATE + ?Id@Context@Concurrency@@SAIXZ=Context_Id @163 + ?Id@CurrentScheduler@Concurrency@@SAIXZ=CurrentScheduler_Id @164 + ?IsAvailableLocation@CurrentScheduler@Concurrency@@SA_NAEBVlocation@2@@Z=CurrentScheduler_IsAvailableLocation @165 + ?IsCurrentTaskCollectionCanceling@Context@Concurrency@@SA_NXZ=Context_IsCurrentTaskCollectionCanceling @166 + ?Log2@details@Concurrency@@YAK_K@Z @167 PRIVATE + ?Oversubscribe@Context@Concurrency@@SAX_N@Z=Context_Oversubscribe @168 + ?RegisterShutdownEvent@CurrentScheduler@Concurrency@@SAXPEAX@Z=CurrentScheduler_RegisterShutdownEvent @169 + ?ResetDefaultSchedulerPolicy@Scheduler@Concurrency@@SAXXZ=Scheduler_ResetDefaultSchedulerPolicy @170 + ?ScheduleGroupId@Context@Concurrency@@SAIXZ=Context_ScheduleGroupId @171 + ?ScheduleTask@CurrentScheduler@Concurrency@@SAXP6AXPEAX@Z0@Z=CurrentScheduler_ScheduleTask @172 + ?ScheduleTask@CurrentScheduler@Concurrency@@SAXP6AXPEAX@Z0AEAVlocation@2@@Z=CurrentScheduler_ScheduleTask_loc @173 + ?SetConcurrencyLimits@SchedulerPolicy@Concurrency@@QEAAXII@Z=SchedulerPolicy_SetConcurrencyLimits @174 + ?SetDefaultSchedulerPolicy@Scheduler@Concurrency@@SAXAEBVSchedulerPolicy@2@@Z=Scheduler_SetDefaultSchedulerPolicy @175 + ?SetPolicyValue@SchedulerPolicy@Concurrency@@QEAAIW4PolicyElementKey@2@I@Z=SchedulerPolicy_SetPolicyValue @176 + ?VirtualProcessorId@Context@Concurrency@@SAIXZ=Context_VirtualProcessorId @177 + ?Yield@Context@Concurrency@@SAXXZ=Context_Yield @178 + ?_Abort@_StructuredTaskCollection@details@Concurrency@@AEAAXXZ @179 PRIVATE + ?_Acquire@_NonReentrantBlockingLock@details@Concurrency@@QEAAXXZ=_ReentrantBlockingLock__Acquire @180 + ?_Acquire@_NonReentrantPPLLock@details@Concurrency@@QEAAXPEAX@Z=_NonReentrantPPLLock__Acquire @181 + ?_Acquire@_ReentrantBlockingLock@details@Concurrency@@QEAAXXZ=_ReentrantBlockingLock__Acquire @182 + ?_Acquire@_ReentrantLock@details@Concurrency@@QEAAXXZ @183 PRIVATE + ?_Acquire@_ReentrantPPLLock@details@Concurrency@@QEAAXPEAX@Z=_ReentrantPPLLock__Acquire @184 + ?_AcquireRead@_ReaderWriterLock@details@Concurrency@@QEAAXXZ @185 PRIVATE + ?_AcquireWrite@_ReaderWriterLock@details@Concurrency@@QEAAXXZ @186 PRIVATE + ?_Cancel@_StructuredTaskCollection@details@Concurrency@@QEAAXXZ @187 PRIVATE + ?_Cancel@_TaskCollection@details@Concurrency@@QEAAXXZ @188 PRIVATE + ?_CheckTaskCollection@_UnrealizedChore@details@Concurrency@@IEAAXXZ @189 PRIVATE + ?_CleanupToken@_StructuredTaskCollection@details@Concurrency@@AEAAXXZ @190 PRIVATE + ?_ConcRT_Assert@details@Concurrency@@YAXPEBD0H@Z @191 PRIVATE + ?_ConcRT_CoreAssert@details@Concurrency@@YAXPEBD0H@Z @192 PRIVATE + ?_ConcRT_DumpMessage@details@Concurrency@@YAXPEB_WZZ @193 PRIVATE + ?_ConcRT_Trace@details@Concurrency@@YAXHPEB_WZZ @194 PRIVATE + ?_Confirm_cancel@_Cancellation_beacon@details@Concurrency@@QEAA_NXZ @195 PRIVATE + ?_Copy_str@exception@std@@AEAAXPEBD@Z @196 PRIVATE + ?_CurrentContext@_Context@details@Concurrency@@SA?AV123@XZ @197 PRIVATE + ?_Current_node@location@Concurrency@@SA?AV12@XZ @198 PRIVATE + ?_Destroy@_AsyncTaskCollection@details@Concurrency@@EEAAXXZ @199 PRIVATE + ?_Destroy@_CancellationTokenState@details@Concurrency@@EEAAXXZ @200 PRIVATE + ?_DoYield@?$_SpinWait@$00@details@Concurrency@@IEAAXXZ=SpinWait__DoYield @201 + ?_DoYield@?$_SpinWait@$0A@@details@Concurrency@@IEAAXXZ=SpinWait__DoYield @202 + ?_Get@_CurrentScheduler@details@Concurrency@@SA?AV_Scheduler@23@XZ=_CurrentScheduler__Get @203 + ?_GetConcRTTraceInfo@Concurrency@@YAPEBU_CONCRT_TRACE_INFO@details@1@XZ @204 PRIVATE + ?_GetConcurrency@details@Concurrency@@YAIXZ=_GetConcurrency @205 + ?_GetCurrentInlineDepth@_StackGuard@details@Concurrency@@CAAEA_KXZ @206 PRIVATE + ?_GetNumberOfVirtualProcessors@_CurrentScheduler@details@Concurrency@@SAIXZ=_CurrentScheduler__GetNumberOfVirtualProcessors @207 + ?_GetScheduler@_Scheduler@details@Concurrency@@QEAAPEAVScheduler@3@XZ=_Scheduler__GetScheduler @208 + ?_Id@_CurrentScheduler@details@Concurrency@@SAIXZ=_CurrentScheduler__Id @209 + ?_IsCanceling@_StructuredTaskCollection@details@Concurrency@@QEAA_NXZ @210 PRIVATE + ?_IsCanceling@_TaskCollection@details@Concurrency@@QEAA_NXZ @211 PRIVATE + ?_IsSynchronouslyBlocked@_Context@details@Concurrency@@QEBA_NXZ @212 PRIVATE + ?_Name_base@type_info@@CAPEBDPEBV1@PEAU__type_info_node@@@Z @213 PRIVATE + ?_Name_base_internal@type_info@@CAPEBDPEBV1@PEAU__type_info_node@@@Z @214 PRIVATE + ?_NewCollection@_AsyncTaskCollection@details@Concurrency@@SAPEAV123@PEAV_CancellationTokenState@23@@Z @215 PRIVATE + ?_NumberOfSpins@?$_SpinWait@$00@details@Concurrency@@IEAAKXZ=SpinWait__NumberOfSpins @216 + ?_NumberOfSpins@?$_SpinWait@$0A@@details@Concurrency@@IEAAKXZ=SpinWait__NumberOfSpins @217 + ?_Oversubscribe@_Context@details@Concurrency@@SAX_N@Z @218 PRIVATE + ?_Reference@_Scheduler@details@Concurrency@@QEAAIXZ=_Scheduler__Reference @219 + ?_Release@_NonReentrantBlockingLock@details@Concurrency@@QEAAXXZ=_ReentrantBlockingLock__Release @220 + ?_Release@_NonReentrantPPLLock@details@Concurrency@@QEAAXXZ=_NonReentrantPPLLock__Release @221 + ?_Release@_ReentrantBlockingLock@details@Concurrency@@QEAAXXZ=_ReentrantBlockingLock__Release @222 + ?_Release@_ReentrantLock@details@Concurrency@@QEAAXXZ @223 PRIVATE + ?_Release@_ReentrantPPLLock@details@Concurrency@@QEAAXXZ=_ReentrantPPLLock__Release @224 + ?_Release@_Scheduler@details@Concurrency@@QEAAIXZ=_Scheduler__Release @225 + ?_ReleaseRead@_ReaderWriterLock@details@Concurrency@@QEAAXXZ @226 PRIVATE + ?_ReleaseWrite@_ReaderWriterLock@details@Concurrency@@QEAAXXZ @227 PRIVATE + ?_ReportUnobservedException@details@Concurrency@@YAXXZ @228 PRIVATE + ?_Reset@?$_SpinWait@$00@details@Concurrency@@IEAAXXZ=SpinWait__Reset @229 + ?_Reset@?$_SpinWait@$0A@@details@Concurrency@@IEAAXXZ=SpinWait__Reset @230 + ?_RunAndWait@_StructuredTaskCollection@details@Concurrency@@QEAA?AW4_TaskCollectionStatus@23@PEAV_UnrealizedChore@23@@Z @231 PRIVATE + ?_RunAndWait@_TaskCollection@details@Concurrency@@QEAA?AW4_TaskCollectionStatus@23@PEAV_UnrealizedChore@23@@Z @232 PRIVATE + ?_Schedule@_StructuredTaskCollection@details@Concurrency@@QEAAXPEAV_UnrealizedChore@23@@Z @233 PRIVATE + ?_Schedule@_StructuredTaskCollection@details@Concurrency@@QEAAXPEAV_UnrealizedChore@23@PEAVlocation@3@@Z @234 PRIVATE + ?_Schedule@_TaskCollection@details@Concurrency@@QEAAXPEAV_UnrealizedChore@23@@Z @235 PRIVATE + ?_Schedule@_TaskCollection@details@Concurrency@@QEAAXPEAV_UnrealizedChore@23@PEAVlocation@3@@Z @236 PRIVATE + ?_ScheduleTask@_CurrentScheduler@details@Concurrency@@SAXP6AXPEAX@Z0@Z=_CurrentScheduler__ScheduleTask @237 + ?_SetSpinCount@?$_SpinWait@$00@details@Concurrency@@QEAAXI@Z=SpinWait__SetSpinCount @238 + ?_SetSpinCount@?$_SpinWait@$0A@@details@Concurrency@@QEAAXI@Z=SpinWait__SetSpinCount @239 + ?_SetUnobservedExceptionHandler@details@Concurrency@@YAXP6AXXZ@Z @240 PRIVATE + ?_ShouldSpinAgain@?$_SpinWait@$00@details@Concurrency@@IEAA_NXZ=SpinWait__ShouldSpinAgain @241 + ?_ShouldSpinAgain@?$_SpinWait@$0A@@details@Concurrency@@IEAA_NXZ=SpinWait__ShouldSpinAgain @242 + ?_SpinOnce@?$_SpinWait@$00@details@Concurrency@@QEAA_NXZ=SpinWait__SpinOnce @243 + ?_SpinOnce@?$_SpinWait@$0A@@details@Concurrency@@QEAA_NXZ=SpinWait__SpinOnce @244 + ?_SpinYield@Context@Concurrency@@SAXXZ=Context__SpinYield @245 + ?_Start@_Timer@details@Concurrency@@IEAAXXZ @246 PRIVATE + ?_Stop@_Timer@details@Concurrency@@IEAAXXZ @247 PRIVATE + ?_Tidy@exception@std@@AEAAXXZ @248 PRIVATE + ?_Trace_agents@Concurrency@@YAXW4Agents_EventType@1@_JZZ=_Trace_agents @249 + ?_Trace_ppl_function@Concurrency@@YAXAEBU_GUID@@EW4ConcRT_EventType@1@@Z=Concurrency__Trace_ppl_function @250 + ?_TryAcquire@_NonReentrantBlockingLock@details@Concurrency@@QEAA_NXZ=_ReentrantBlockingLock__TryAcquire @251 + ?_TryAcquire@_ReentrantBlockingLock@details@Concurrency@@QEAA_NXZ=_ReentrantBlockingLock__TryAcquire @252 + ?_TryAcquire@_ReentrantLock@details@Concurrency@@QEAA_NXZ @253 PRIVATE + ?_TryAcquireWrite@_ReaderWriterLock@details@Concurrency@@QEAA_NXZ @254 PRIVATE + ?_Type_info_dtor@type_info@@CAXPEAV1@@Z @255 PRIVATE + ?_Type_info_dtor_internal@type_info@@CAXPEAV1@@Z @256 PRIVATE + ?_UnderlyingYield@details@Concurrency@@YAXXZ @257 PRIVATE + ?_ValidateExecute@@YAHP6A_JXZ@Z @258 PRIVATE + ?_ValidateRead@@YAHPEBXI@Z @259 PRIVATE + ?_ValidateWrite@@YAHPEAXI@Z @260 PRIVATE + ?_Value@_SpinCount@details@Concurrency@@SAIXZ=SpinCount__Value @261 + ?_Yield@_Context@details@Concurrency@@SAXXZ @262 PRIVATE + ?__ExceptionPtrAssign@@YAXPEAXPEBX@Z=__ExceptionPtrAssign @263 + ?__ExceptionPtrCompare@@YA_NPEBX0@Z=__ExceptionPtrCompare @264 + ?__ExceptionPtrCopy@@YAXPEAXPEBX@Z=__ExceptionPtrCopy @265 + ?__ExceptionPtrCopyException@@YAXPEAXPEBX1@Z=__ExceptionPtrCopyException @266 + ?__ExceptionPtrCreate@@YAXPEAX@Z=__ExceptionPtrCreate @267 + ?__ExceptionPtrCurrentException@@YAXPEAX@Z=__ExceptionPtrCurrentException @268 + ?__ExceptionPtrDestroy@@YAXPEAX@Z=__ExceptionPtrDestroy @269 + ?__ExceptionPtrRethrow@@YAXPEBX@Z=__ExceptionPtrRethrow @270 + ?__ExceptionPtrSwap@@YAXPEAX0@Z @271 PRIVATE + ?__ExceptionPtrToBool@@YA_NPEBX@Z=__ExceptionPtrToBool @272 + __uncaught_exception=MSVCRT___uncaught_exception @273 + ?_inconsistency@@YAXXZ @274 PRIVATE + ?_invalid_parameter@@YAXPEBG00I_K@Z=MSVCRT__invalid_parameter @275 + ?_is_exception_typeof@@YAHAEBVtype_info@@PEAU_EXCEPTION_POINTERS@@@Z=_is_exception_typeof @276 + ?_name_internal_method@type_info@@QEBAPEBDPEAU__type_info_node@@@Z=type_info_name_internal_method @277 + ?_open@@YAHPEBDHH@Z=MSVCRT__open @278 + ?_query_new_handler@@YAP6AH_K@ZXZ=MSVCRT__query_new_handler @279 + ?_query_new_mode@@YAHXZ=MSVCRT__query_new_mode @280 + ?_set_new_handler@@YAP6AH_K@ZH@Z @281 PRIVATE + ?_set_new_handler@@YAP6AH_K@ZP6AH0@Z@Z=MSVCRT__set_new_handler @282 + ?_set_new_mode@@YAHH@Z=MSVCRT__set_new_mode @283 + ?_set_se_translator@@YAP6AXIPEAU_EXCEPTION_POINTERS@@@ZH@Z @284 PRIVATE + ?_set_se_translator@@YAP6AXIPEAU_EXCEPTION_POINTERS@@@ZP6AXI0@Z@Z=MSVCRT__set_se_translator @285 + ?_sopen@@YAHPEBDHHH@Z=MSVCRT__sopen @286 + ?_type_info_dtor_internal_method@type_info@@QEAAXXZ @287 PRIVATE + ?_wopen@@YAHPEB_WHH@Z=MSVCRT__wopen @288 + ?_wsopen@@YAHPEB_WHHH@Z=MSVCRT__wsopen @289 + ?before@type_info@@QEBA_NAEBV1@@Z=MSVCRT_type_info_before @290 + ?current@location@Concurrency@@SA?AV12@XZ @291 PRIVATE + ?from_numa_node@location@Concurrency@@SA?AV12@G@Z @292 PRIVATE + ?get_error_code@scheduler_resource_allocation_error@Concurrency@@QEBAJXZ=scheduler_resource_allocation_error_get_error_code @293 + ?lock@critical_section@Concurrency@@QEAAXXZ=critical_section_lock @294 + ?lock@reader_writer_lock@Concurrency@@QEAAXXZ=reader_writer_lock_lock @295 + ?lock_read@reader_writer_lock@Concurrency@@QEAAXXZ=reader_writer_lock_lock_read @296 + ?name@type_info@@QEBAPEBDPEAU__type_info_node@@@Z=type_info_name_internal_method @297 + ?native_handle@critical_section@Concurrency@@QEAAAEAV12@XZ=critical_section_native_handle @298 + ?notify_all@_Condition_variable@details@Concurrency@@QEAAXXZ=_Condition_variable_notify_all @299 + ?notify_one@_Condition_variable@details@Concurrency@@QEAAXXZ=_Condition_variable_notify_one @300 + ?raw_name@type_info@@QEBAPEBDXZ=MSVCRT_type_info_raw_name @301 + ?reset@event@Concurrency@@QEAAXXZ=event_reset @302 + ?set@event@Concurrency@@QEAAXXZ=event_set @303 + ?set_new_handler@@YAP6AXXZP6AXXZ@Z=MSVCRT_set_new_handler @304 + ?set_task_execution_resources@Concurrency@@YAXGPEAU_GROUP_AFFINITY@@@Z @305 PRIVATE + ?set_task_execution_resources@Concurrency@@YAX_K@Z @306 PRIVATE + ?set_terminate@@YAP6AXXZH@Z @307 PRIVATE + ?set_terminate@@YAP6AXXZP6AXXZ@Z=MSVCRT_set_terminate @308 + ?set_unexpected@@YAP6AXXZH@Z @309 PRIVATE + ?set_unexpected@@YAP6AXXZP6AXXZ@Z=MSVCRT_set_unexpected @310 + ?swprintf@@YAHPAGIPBGZZ=MSVCRT__snwprintf @311 + ?swprintf@@YAHPA_WIPB_WZZ=MSVCRT__snwprintf @312 + ?terminate@@YAXXZ=MSVCRT_terminate @313 + ?try_lock@critical_section@Concurrency@@QEAA_NXZ=critical_section_try_lock @314 + ?try_lock@reader_writer_lock@Concurrency@@QEAA_NXZ=reader_writer_lock_try_lock @315 + ?try_lock_for@critical_section@Concurrency@@QEAA_NI@Z=critical_section_try_lock_for @316 + ?try_lock_read@reader_writer_lock@Concurrency@@QEAA_NXZ=reader_writer_lock_try_lock_read @317 + ?unexpected@@YAXXZ=MSVCRT_unexpected @318 + ?unlock@critical_section@Concurrency@@QEAAXXZ=critical_section_unlock @319 + ?unlock@reader_writer_lock@Concurrency@@QEAAXXZ=reader_writer_lock_unlock @320 + ?vswprintf@@YAHPA_WIPB_WPAD@Z=MSVCRT_vsnwprintf @321 + ?wait@Concurrency@@YAXI@Z=Concurrency_wait @322 + ?wait@_Condition_variable@details@Concurrency@@QEAAXAEAVcritical_section@3@@Z=_Condition_variable_wait @323 + ?wait@event@Concurrency@@QEAA_KI@Z=event_wait @324 + ?wait_for@_Condition_variable@details@Concurrency@@QEAA_NAEAVcritical_section@3@I@Z=_Condition_variable_wait_for @325 + ?wait_for_multiple@event@Concurrency@@SA_KPEAPEAV12@_K_NI@Z=event_wait_for_multiple @326 + ?what@exception@std@@UEBAPEBDXZ=MSVCRT_what_exception @327 + $I10_OUTPUT=MSVCRT_I10_OUTPUT @328 + _CRT_RTC_INIT @329 + _CRT_RTC_INITW @330 + _Cbuild=MSVCR120__Cbuild @331 + _CreateFrameInfo @332 + _CxxThrowException @333 + _FCbuild @334 PRIVATE + _FindAndUnlinkFrame @335 + _GetImageBase @336 PRIVATE + _GetThrowImageBase @337 PRIVATE + _Getdays @338 + _Getmonths @339 + _Gettnames @340 + _HUGE=MSVCRT__HUGE @341 DATA + _IsExceptionObjectToBeDestroyed @342 + _LCbuild @343 PRIVATE + __NLG_Dispatch2 @344 PRIVATE + __NLG_Return2 @345 PRIVATE + _SetWinRTOutOfMemoryExceptionCallback=MSVCR120__SetWinRTOutOfMemoryExceptionCallback @346 + _SetImageBase @347 PRIVATE + _SetThrowImageBase @348 PRIVATE + _Strftime @349 + _W_Getdays @350 + _W_Getmonths @351 + _W_Gettnames @352 + _Wcsftime @353 + _XcptFilter @354 + __AdjustPointer @355 + __BuildCatchObject @356 PRIVATE + __BuildCatchObjectHelper @357 PRIVATE + __C_specific_handler=ntdll.__C_specific_handler @358 + __CppXcptFilter @359 + __CxxDetectRethrow @360 + __CxxExceptionFilter @361 + __CxxFrameHandler @362 + __CxxFrameHandler2=__CxxFrameHandler @363 + __CxxFrameHandler3=__CxxFrameHandler @364 + __CxxQueryExceptionSize @365 + __CxxRegisterExceptionObject @366 + __CxxUnregisterExceptionObject @367 + __DestructExceptionObject @368 + __FrameUnwindFilter @369 PRIVATE + __GetPlatformExceptionInfo @370 PRIVATE + __RTCastToVoid=MSVCRT___RTCastToVoid @371 + __RTDynamicCast=MSVCRT___RTDynamicCast @372 + __RTtypeid=MSVCRT___RTtypeid @373 + __STRINGTOLD @374 + __STRINGTOLD_L @375 PRIVATE + __TypeMatch @376 PRIVATE + ___lc_codepage_func @377 + ___lc_collate_cp_func @378 + ___lc_locale_name_func @379 + ___mb_cur_max_func=MSVCRT____mb_cur_max_func @380 + ___mb_cur_max_l_func @381 + ___setlc_active_func=MSVCRT____setlc_active_func @382 + ___unguarded_readlc_active_add_func=MSVCRT____unguarded_readlc_active_add_func @383 + __argc=MSVCRT___argc @384 DATA + __argv=MSVCRT___argv @385 DATA + __badioinfo=MSVCRT___badioinfo @386 DATA + __clean_type_info_names_internal @387 + __create_locale=MSVCRT__create_locale @388 + __crtCaptureCurrentContext=ntdll.RtlCaptureContext @389 + __crtCapturePreviousContext @390 + __crtCompareStringA @391 + __crtCompareStringEx @392 PRIVATE + __crtCompareStringW @393 + __crtCreateEventExW @394 PRIVATE + __crtCreateSymbolicLinkW @395 PRIVATE + __crtEnumSystemLocalesEx @396 PRIVATE + __crtFlsAlloc @397 PRIVATE + __crtFlsFree @398 PRIVATE + __crtFlsGetValue @399 PRIVATE + __crtFlsSetValue @400 PRIVATE + __crtGetDateFormatEx @401 PRIVATE + __crtGetFileInformationByHandleEx @402 PRIVATE + __crtGetLocaleInfoEx @403 + __crtGetShowWindowMode=MSVCR110__crtGetShowWindowMode @404 + __crtGetTickCount64 @405 PRIVATE + __crtGetTimeFormatEx @406 PRIVATE + __crtGetUserDefaultLocaleName @407 PRIVATE + __crtInitializeCriticalSectionEx=MSVCR110__crtInitializeCriticalSectionEx @408 + __crtIsPackagedApp @409 PRIVATE + __crtIsValidLocaleName @410 PRIVATE + __crtLCMapStringA @411 + __crtLCMapStringEx @412 PRIVATE + __crtLCMapStringW @413 + __crtSetFileInformationByHandle @414 PRIVATE + __crtSetThreadStackGuarantee @415 PRIVATE + __crtSetUnhandledExceptionFilter=MSVCR110__crtSetUnhandledExceptionFilter @416 + __crtTerminateProcess=MSVCR110__crtTerminateProcess @417 + __crtSleep=MSVCRT__crtSleep @418 + __crtUnhandledException=MSVCRT__crtUnhandledException @419 + __daylight=MSVCRT___p__daylight @420 + __dllonexit @421 + __doserrno=MSVCRT___doserrno @422 + __dstbias=MSVCRT___p__dstbias @423 + __fpecode @424 + __free_locale=MSVCRT__free_locale @425 + __get_current_locale=MSVCRT__get_current_locale @426 + __get_flsindex @427 PRIVATE + __get_tlsindex @428 PRIVATE + __getmainargs @429 + __initenv=MSVCRT___initenv @430 DATA + __iob_func=__p__iob @431 + __isascii=MSVCRT___isascii @432 + __iscsym=MSVCRT___iscsym @433 + __iscsymf=MSVCRT___iscsymf @434 + __iswcsym @435 PRIVATE + __iswcsymf @436 PRIVATE + __lconv_init @437 + __mb_cur_max=MSVCRT___mb_cur_max @438 DATA + __p___argc=MSVCRT___p___argc @439 + __p___argv=MSVCRT___p___argv @440 + __p___initenv @441 + __p___mb_cur_max @442 + __p___wargv=MSVCRT___p___wargv @443 + __p___winitenv @444 + __p__acmdln=MSVCRT___p__acmdln @445 + __p__commode @446 + __p__daylight=MSVCRT___p__daylight @447 + __p__dstbias=MSVCRT___p__dstbias @448 + __p__environ=MSVCRT___p__environ @449 + __p__fmode=MSVCRT___p__fmode @450 + __p__iob @451 + __p__mbcasemap @452 PRIVATE + __p__mbctype @453 + __p__pctype=MSVCRT___p__pctype @454 + __p__pgmptr=MSVCRT___p__pgmptr @455 + __p__pwctype @456 PRIVATE + __p__timezone=MSVCRT___p__timezone @457 + __p__tzname @458 + __p__wcmdln=MSVCRT___p__wcmdln @459 + __p__wenviron=MSVCRT___p__wenviron @460 + __p__wpgmptr=MSVCRT___p__wpgmptr @461 + __pctype_func=MSVCRT___pctype_func @462 + __pioinfo=MSVCRT___pioinfo @463 DATA + __pwctype_func @464 PRIVATE + __pxcptinfoptrs=MSVCRT___pxcptinfoptrs @465 + __report_gsfailure @466 PRIVATE + __set_app_type=MSVCRT___set_app_type @467 + __setlc_active=MSVCRT___setlc_active @468 DATA + __setusermatherr=MSVCRT___setusermatherr @469 + __strncnt=MSVCRT___strncnt @470 + __swprintf_l=MSVCRT___swprintf_l @471 + __sys_errlist @472 + __sys_nerr @473 + __threadhandle=kernel32.GetCurrentThread @474 + __threadid=kernel32.GetCurrentThreadId @475 + __timezone=MSVCRT___p__timezone @476 + __toascii=MSVCRT___toascii @477 + __tzname=__p__tzname @478 + __unDName @479 + __unDNameEx @480 + __unDNameHelper @481 PRIVATE + __unguarded_readlc_active=MSVCRT___unguarded_readlc_active @482 DATA + __vswprintf_l=MSVCRT_vswprintf_l @483 + __wargv=MSVCRT___wargv @484 DATA + __wcserror=MSVCRT___wcserror @485 + __wcserror_s=MSVCRT___wcserror_s @486 + __wcsncnt @487 PRIVATE + __wgetmainargs @488 + __winitenv=MSVCRT___winitenv @489 DATA + _abnormal_termination @490 + _abs64 @491 + _access=MSVCRT__access @492 + _access_s=MSVCRT__access_s @493 + _acmdln=MSVCRT__acmdln @494 DATA + _aligned_free @495 + _aligned_malloc @496 + _aligned_msize @497 + _aligned_offset_malloc @498 + _aligned_offset_realloc @499 + _aligned_offset_recalloc @500 PRIVATE + _aligned_realloc @501 + _aligned_recalloc @502 PRIVATE + _amsg_exit @503 + _assert=MSVCRT__assert @504 + _atodbl=MSVCRT__atodbl @505 + _atodbl_l=MSVCRT__atodbl_l @506 + _atof_l=MSVCRT__atof_l @507 + _atoflt=MSVCRT__atoflt @508 + _atoflt_l=MSVCRT__atoflt_l @509 + _atoi64=MSVCRT__atoi64 @510 + _atoi64_l=MSVCRT__atoi64_l @511 + _atoi_l=MSVCRT__atoi_l @512 + _atol_l=MSVCRT__atol_l @513 + _atoldbl=MSVCRT__atoldbl @514 + _atoldbl_l @515 PRIVATE + _atoll_l=MSVCRT__atoll_l @516 + _beep=MSVCRT__beep @517 + _beginthread @518 + _beginthreadex @519 + _byteswap_uint64 @520 + _byteswap_ulong=MSVCRT__byteswap_ulong @521 + _byteswap_ushort @522 + _c_exit=MSVCRT__c_exit @523 + _cabs=MSVCRT__cabs @524 + _callnewh @525 + _calloc_crt=MSVCRT_calloc @526 + _cexit=MSVCRT__cexit @527 + _cgets @528 + _cgets_s @529 PRIVATE + _cgetws @530 PRIVATE + _cgetws_s @531 PRIVATE + _chdir=MSVCRT__chdir @532 + _chdrive=MSVCRT__chdrive @533 + _chgsign=MSVCRT__chgsign @534 + _chgsignf=MSVCRT__chgsignf @535 + _chmod=MSVCRT__chmod @536 + _chsize=MSVCRT__chsize @537 + _chsize_s=MSVCRT__chsize_s @538 + _clearfp @539 + _close=MSVCRT__close @540 + _commit=MSVCRT__commit @541 + _commode=MSVCRT__commode @542 DATA + _configthreadlocale @543 + _control87 @544 + _controlfp @545 + _controlfp_s @546 + _copysign=MSVCRT__copysign @547 + _copysignf=MSVCRT__copysignf @548 + _cprintf @549 + _cprintf_l @550 PRIVATE + _cprintf_p @551 PRIVATE + _cprintf_p_l @552 PRIVATE + _cprintf_s @553 PRIVATE + _cprintf_s_l @554 PRIVATE + _cputs @555 + _cputws @556 + _creat=MSVCRT__creat @557 + _create_locale=MSVCRT__create_locale @558 + __crt_debugger_hook=MSVCRT__crt_debugger_hook @559 + _cscanf @560 + _cscanf_l @561 + _cscanf_s @562 + _cscanf_s_l @563 + _ctime32=MSVCRT__ctime32 @564 + _ctime32_s=MSVCRT__ctime32_s @565 + _ctime64=MSVCRT__ctime64 @566 + _ctime64_s=MSVCRT__ctime64_s @567 + _cwait @568 + _cwprintf @569 + _cwprintf_l @570 PRIVATE + _cwprintf_p @571 PRIVATE + _cwprintf_p_l @572 PRIVATE + _cwprintf_s @573 PRIVATE + _cwprintf_s_l @574 PRIVATE + _cwscanf @575 + _cwscanf_l @576 + _cwscanf_s @577 + _cwscanf_s_l @578 + _daylight=MSVCRT___daylight @579 DATA + _dclass=MSVCR120__dclass @580 + _difftime32=MSVCRT__difftime32 @581 + _difftime64=MSVCRT__difftime64 @582 + _dosmaperr @583 PRIVATE + _dpcomp=MSVCR120__dpcomp @584 + _dsign=MSVCR120__dsign @585 + _dstbias=MSVCRT__dstbias @586 DATA + _dtest=MSVCR120__dtest @587 + _dup=MSVCRT__dup @588 + _dup2=MSVCRT__dup2 @589 + _dupenv_s @590 + _ecvt=MSVCRT__ecvt @591 + _ecvt_s=MSVCRT__ecvt_s @592 + _endthread @593 + _endthreadex @594 + _environ=MSVCRT__environ @595 DATA + _eof=MSVCRT__eof @596 + _errno=MSVCRT__errno @597 + _except1 @598 + _execl @599 + _execle @600 + _execlp @601 + _execlpe @602 + _execv @603 + _execve=MSVCRT__execve @604 + _execvp @605 + _execvpe @606 + _exit=MSVCRT__exit @607 + _expand @608 + _fclose_nolock=MSVCRT__fclose_nolock @609 + _fcloseall=MSVCRT__fcloseall @610 + _fcvt=MSVCRT__fcvt @611 + _fcvt_s=MSVCRT__fcvt_s @612 + _fdclass=MSVCR120__fdclass @613 + _fdopen=MSVCRT__fdopen @614 + _fdpcomp=MSVCR120__fdpcomp @615 + _fdsign=MSVCR120__fdsign @616 + _fdtest=MSVCR120__fdtest @617 + _fflush_nolock=MSVCRT__fflush_nolock @618 + _fgetc_nolock=MSVCRT__fgetc_nolock @619 + _fgetchar=MSVCRT__fgetchar @620 + _fgetwc_nolock=MSVCRT__fgetwc_nolock @621 + _fgetwchar=MSVCRT__fgetwchar @622 + _filbuf=MSVCRT__filbuf @623 + _filelength=MSVCRT__filelength @624 + _filelengthi64=MSVCRT__filelengthi64 @625 + _fileno=MSVCRT__fileno @626 + _findclose=MSVCRT__findclose @627 + _findfirst32=MSVCRT__findfirst32 @628 + _findfirst32i64 @629 PRIVATE + _findfirst64=MSVCRT__findfirst64 @630 + _findfirst64i32=MSVCRT__findfirst64i32 @631 + _findnext32=MSVCRT__findnext32 @632 + _findnext32i64 @633 PRIVATE + _findnext64=MSVCRT__findnext64 @634 + _findnext64i32=MSVCRT__findnext64i32 @635 + _finite=MSVCRT__finite @636 + _finitef=MSVCRT__finitef @637 + _flsbuf=MSVCRT__flsbuf @638 + _flushall=MSVCRT__flushall @639 + _fmode=MSVCRT__fmode @640 DATA + _fpclass=MSVCRT__fpclass @641 + _fpieee_flt @642 + _fpreset @643 + _fprintf_l @644 PRIVATE + _fprintf_p @645 PRIVATE + _fprintf_p_l @646 PRIVATE + _fprintf_s_l @647 PRIVATE + _fputc_nolock=MSVCRT__fputc_nolock @648 + _fputchar=MSVCRT__fputchar @649 + _fputwc_nolock=MSVCRT__fputwc_nolock @650 + _fputwchar=MSVCRT__fputwchar @651 + _fread_nolock=MSVCRT__fread_nolock @652 + _fread_nolock_s=MSVCRT__fread_nolock_s @653 + _free_locale=MSVCRT__free_locale @654 + _freea @655 PRIVATE + _freea_s @656 PRIVATE + _freefls @657 PRIVATE + _fscanf_l=MSVCRT__fscanf_l @658 + _fscanf_s_l=MSVCRT__fscanf_s_l @659 + _fseek_nolock=MSVCRT__fseek_nolock @660 + _fseeki64=MSVCRT__fseeki64 @661 + _fseeki64_nolock=MSVCRT__fseeki64_nolock @662 + _fsopen=MSVCRT__fsopen @663 + _fstat32=MSVCRT__fstat32 @664 + _fstat32i64=MSVCRT__fstat32i64 @665 + _fstat64=MSVCRT__fstat64 @666 + _fstat64i32=MSVCRT__fstat64i32 @667 + _ftell_nolock=MSVCRT__ftell_nolock @668 + _ftelli64=MSVCRT__ftelli64 @669 + _ftelli64_nolock=MSVCRT__ftelli64_nolock @670 + _ftime32=MSVCRT__ftime32 @671 + _ftime32_s=MSVCRT__ftime32_s @672 + _ftime64=MSVCRT__ftime64 @673 + _ftime64_s=MSVCRT__ftime64_s @674 + _fullpath=MSVCRT__fullpath @675 + _futime32 @676 + _futime64 @677 + _fwprintf_l=MSVCRT__fwprintf_l @678 + _fwprintf_p @679 PRIVATE + _fwprintf_p_l @680 PRIVATE + _fwprintf_s_l @681 PRIVATE + _fwrite_nolock=MSVCRT__fwrite_nolock @682 + _fwscanf_l=MSVCRT__fwscanf_l @683 + _fwscanf_s_l=MSVCRT__fwscanf_s_l @684 + _gcvt=MSVCRT__gcvt @685 + _gcvt_s=MSVCRT__gcvt_s @686 + _get_current_locale=MSVCRT__get_current_locale @687 + _get_daylight @688 + _get_doserrno @689 + _get_dstbias=MSVCRT__get_dstbias @690 + _get_errno @691 + _get_fmode=MSVCRT__get_fmode @692 + _get_heap_handle @693 + _get_invalid_parameter_handler @694 + _get_osfhandle=MSVCRT__get_osfhandle @695 + _get_output_format=MSVCRT__get_output_format @696 + _get_pgmptr @697 + _get_printf_count_output=MSVCRT__get_printf_count_output @698 + _get_purecall_handler @699 + _get_terminate=MSVCRT__get_terminate @700 + _get_timezone @701 + _get_tzname=MSVCRT__get_tzname @702 + _get_unexpected=MSVCRT__get_unexpected @703 + _get_wpgmptr @704 + _getc_nolock=MSVCRT__fgetc_nolock @705 + _getch @706 + _getch_nolock @707 + _getche @708 + _getche_nolock @709 + _getcwd=MSVCRT__getcwd @710 + _getdcwd=MSVCRT__getdcwd @711 + _getdiskfree=MSVCRT__getdiskfree @712 + _getdllprocaddr @713 + _getdrive=MSVCRT__getdrive @714 + _getdrives=kernel32.GetLogicalDrives @715 + _getmaxstdio=MSVCRT__getmaxstdio @716 + _getmbcp @717 + _getpid @718 + _getptd @719 + _getsystime @720 PRIVATE + _getw=MSVCRT__getw @721 + _getwc_nolock=MSVCRT__fgetwc_nolock @722 + _getwch @723 + _getwch_nolock @724 + _getwche @725 + _getwche_nolock @726 + _getws=MSVCRT__getws @727 + _getws_s @728 PRIVATE + _gmtime32=MSVCRT__gmtime32 @729 + _gmtime32_s=MSVCRT__gmtime32_s @730 + _gmtime64=MSVCRT__gmtime64 @731 + _gmtime64_s=MSVCRT__gmtime64_s @732 + _heapadd @733 + _heapchk @734 + _heapmin @735 + _heapset @736 + _heapused @737 PRIVATE + _heapwalk @738 + _hypot @739 + _hypotf=MSVCRT__hypotf @740 + _i64toa=ntdll._i64toa @741 + _i64toa_s=MSVCRT__i64toa_s @742 + _i64tow=ntdll._i64tow @743 + _i64tow_s=MSVCRT__i64tow_s @744 + _initptd @745 PRIVATE + _initterm @746 + _initterm_e @747 + _invalid_parameter=MSVCRT__invalid_parameter @748 + _invalid_parameter_noinfo @749 + _invalid_parameter_noinfo_noreturn @750 + _invoke_watson @751 PRIVATE + _iob=MSVCRT__iob @752 DATA + _isalnum_l=MSVCRT__isalnum_l @753 + _isalpha_l=MSVCRT__isalpha_l @754 + _isatty=MSVCRT__isatty @755 + _isblank_l=MSVCRT__isblank_l @756 + _iscntrl_l=MSVCRT__iscntrl_l @757 + _isctype=MSVCRT__isctype @758 + _isctype_l=MSVCRT__isctype_l @759 + _isdigit_l=MSVCRT__isdigit_l @760 + _isgraph_l=MSVCRT__isgraph_l @761 + _isleadbyte_l=MSVCRT__isleadbyte_l @762 + _islower_l=MSVCRT__islower_l @763 + _ismbbalnum @764 PRIVATE + _ismbbalnum_l @765 PRIVATE + _ismbbalpha @766 PRIVATE + _ismbbalpha_l @767 PRIVATE + _ismbbblank @768 PRIVATE + _ismbbblank_l @769 PRIVATE + _ismbbgraph @770 PRIVATE + _ismbbgraph_l @771 PRIVATE + _ismbbkalnum @772 PRIVATE + _ismbbkalnum_l @773 PRIVATE + _ismbbkana @774 + _ismbbkana_l @775 PRIVATE + _ismbbkprint @776 PRIVATE + _ismbbkprint_l @777 PRIVATE + _ismbbkpunct @778 PRIVATE + _ismbbkpunct_l @779 PRIVATE + _ismbblead @780 + _ismbblead_l @781 + _ismbbprint @782 PRIVATE + _ismbbprint_l @783 PRIVATE + _ismbbpunct @784 PRIVATE + _ismbbpunct_l @785 PRIVATE + _ismbbtrail @786 + _ismbbtrail_l @787 + _ismbcalnum @788 + _ismbcalnum_l @789 PRIVATE + _ismbcalpha @790 + _ismbcalpha_l @791 PRIVATE + _ismbcblank @792 PRIVATE + _ismbcblank_l @793 PRIVATE + _ismbcdigit @794 + _ismbcdigit_l @795 PRIVATE + _ismbcgraph @796 + _ismbcgraph_l @797 PRIVATE + _ismbchira @798 + _ismbchira_l @799 PRIVATE + _ismbckata @800 + _ismbckata_l @801 PRIVATE + _ismbcl0 @802 + _ismbcl0_l @803 + _ismbcl1 @804 + _ismbcl1_l @805 + _ismbcl2 @806 + _ismbcl2_l @807 + _ismbclegal @808 + _ismbclegal_l @809 + _ismbclower @810 PRIVATE + _ismbclower_l @811 PRIVATE + _ismbcprint @812 + _ismbcprint_l @813 PRIVATE + _ismbcpunct @814 + _ismbcpunct_l @815 PRIVATE + _ismbcspace @816 + _ismbcspace_l @817 PRIVATE + _ismbcsymbol @818 + _ismbcsymbol_l @819 PRIVATE + _ismbcupper @820 + _ismbcupper_l @821 PRIVATE + _ismbslead @822 + _ismbslead_l @823 PRIVATE + _ismbstrail @824 + _ismbstrail_l @825 PRIVATE + _isnan=MSVCRT__isnan @826 + _isnanf=MSVCRT__isnanf @827 + _isprint_l=MSVCRT__isprint_l @828 + _ispunct_l @829 PRIVATE + _isspace_l=MSVCRT__isspace_l @830 + _isupper_l=MSVCRT__isupper_l @831 + _iswalnum_l=MSVCRT__iswalnum_l @832 + _iswalpha_l=MSVCRT__iswalpha_l @833 + _iswblank_l=MSVCRT__iswblank_l @834 + _iswcntrl_l=MSVCRT__iswcntrl_l @835 + _iswcsym_l @836 PRIVATE + _iswcsymf_l @837 PRIVATE + _iswctype_l=MSVCRT__iswctype_l @838 + _iswdigit_l=MSVCRT__iswdigit_l @839 + _iswgraph_l=MSVCRT__iswgraph_l @840 + _iswlower_l=MSVCRT__iswlower_l @841 + _iswprint_l=MSVCRT__iswprint_l @842 + _iswpunct_l=MSVCRT__iswpunct_l @843 + _iswspace_l=MSVCRT__iswspace_l @844 + _iswupper_l=MSVCRT__iswupper_l @845 + _iswxdigit_l=MSVCRT__iswxdigit_l @846 + _isxdigit_l=MSVCRT__isxdigit_l @847 + _itoa=MSVCRT__itoa @848 + _itoa_s=MSVCRT__itoa_s @849 + _itow=ntdll._itow @850 + _itow_s=MSVCRT__itow_s @851 + _j0=MSVCRT__j0 @852 + _j1=MSVCRT__j1 @853 + _jn=MSVCRT__jn @854 + _kbhit @855 + _ldclass=MSVCR120__ldclass @856 + _ldpcomp=MSVCR120__dpcomp @857 + _ldsign=MSVCR120__dsign @858 + _ldtest=MSVCR120__ldtest @859 + _lfind @860 + _lfind_s @861 + _loaddll @862 + _local_unwind @863 + _localtime32=MSVCRT__localtime32 @864 + _localtime32_s @865 + _localtime64=MSVCRT__localtime64 @866 + _localtime64_s @867 + _lock @868 + _lock_file=MSVCRT__lock_file @869 + _locking=MSVCRT__locking @870 + _logb=MSVCRT__logb @871 + _logbf=MSVCRT__logbf @872 + _lrotl=MSVCRT__lrotl @873 + _lrotr=MSVCRT__lrotr @874 + _lsearch @875 + _lsearch_s @876 PRIVATE + _lseek=MSVCRT__lseek @877 + _lseeki64=MSVCRT__lseeki64 @878 + _ltoa=ntdll._ltoa @879 + _ltoa_s=MSVCRT__ltoa_s @880 + _ltow=ntdll._ltow @881 + _ltow_s=MSVCRT__ltow_s @882 + _makepath=MSVCRT__makepath @883 + _makepath_s=MSVCRT__makepath_s @884 + _malloc_crt=MSVCRT_malloc @885 + _mbbtombc @886 + _mbbtombc_l @887 PRIVATE + _mbbtype @888 + _mbbtype_l @889 PRIVATE + _mbccpy @890 + _mbccpy_l @891 + _mbccpy_s @892 + _mbccpy_s_l @893 + _mbcjistojms @894 + _mbcjistojms_l @895 PRIVATE + _mbcjmstojis @896 + _mbcjmstojis_l @897 PRIVATE + _mbclen @898 + _mbclen_l @899 PRIVATE + _mbctohira @900 + _mbctohira_l @901 PRIVATE + _mbctokata @902 + _mbctokata_l @903 PRIVATE + _mbctolower @904 + _mbctolower_l @905 PRIVATE + _mbctombb @906 + _mbctombb_l @907 PRIVATE + _mbctoupper @908 + _mbctoupper_l @909 PRIVATE + _mbctype=MSVCRT_mbctype @910 DATA + _mblen_l @911 PRIVATE + _mbsbtype @912 + _mbsbtype_l @913 PRIVATE + _mbscat_s @914 + _mbscat_s_l @915 + _mbschr @916 + _mbschr_l @917 PRIVATE + _mbscmp @918 + _mbscmp_l @919 PRIVATE + _mbscoll @920 + _mbscoll_l @921 + _mbscpy_s @922 + _mbscpy_s_l @923 + _mbscspn @924 + _mbscspn_l @925 PRIVATE + _mbsdec @926 + _mbsdec_l @927 PRIVATE + _mbsicmp @928 + _mbsicmp_l @929 PRIVATE + _mbsicoll @930 + _mbsicoll_l @931 + _mbsinc @932 + _mbsinc_l @933 PRIVATE + _mbslen @934 + _mbslen_l @935 + _mbslwr @936 + _mbslwr_l @937 PRIVATE + _mbslwr_s @938 + _mbslwr_s_l @939 PRIVATE + _mbsnbcat @940 + _mbsnbcat_l @941 PRIVATE + _mbsnbcat_s @942 + _mbsnbcat_s_l @943 PRIVATE + _mbsnbcmp @944 + _mbsnbcmp_l @945 PRIVATE + _mbsnbcnt @946 + _mbsnbcnt_l @947 PRIVATE + _mbsnbcoll @948 + _mbsnbcoll_l @949 + _mbsnbcpy @950 + _mbsnbcpy_l @951 PRIVATE + _mbsnbcpy_s @952 + _mbsnbcpy_s_l @953 + _mbsnbicmp @954 + _mbsnbicmp_l @955 PRIVATE + _mbsnbicoll @956 + _mbsnbicoll_l @957 + _mbsnbset @958 + _mbsnbset_l @959 PRIVATE + _mbsnbset_s @960 PRIVATE + _mbsnbset_s_l @961 PRIVATE + _mbsncat @962 + _mbsncat_l @963 PRIVATE + _mbsncat_s @964 PRIVATE + _mbsncat_s_l @965 PRIVATE + _mbsnccnt @966 + _mbsnccnt_l @967 PRIVATE + _mbsncmp @968 + _mbsncmp_l @969 PRIVATE + _mbsncoll @970 PRIVATE + _mbsncoll_l @971 PRIVATE + _mbsncpy @972 + _mbsncpy_l @973 PRIVATE + _mbsncpy_s @974 PRIVATE + _mbsncpy_s_l @975 PRIVATE + _mbsnextc @976 + _mbsnextc_l @977 PRIVATE + _mbsnicmp @978 + _mbsnicmp_l @979 PRIVATE + _mbsnicoll @980 PRIVATE + _mbsnicoll_l @981 PRIVATE + _mbsninc @982 + _mbsninc_l @983 PRIVATE + _mbsnlen @984 + _mbsnlen_l @985 + _mbsnset @986 + _mbsnset_l @987 PRIVATE + _mbsnset_s @988 PRIVATE + _mbsnset_s_l @989 PRIVATE + _mbspbrk @990 + _mbspbrk_l @991 PRIVATE + _mbsrchr @992 + _mbsrchr_l @993 PRIVATE + _mbsrev @994 + _mbsrev_l @995 PRIVATE + _mbsset @996 + _mbsset_l @997 PRIVATE + _mbsset_s @998 PRIVATE + _mbsset_s_l @999 PRIVATE + _mbsspn @1000 + _mbsspn_l @1001 PRIVATE + _mbsspnp @1002 + _mbsspnp_l @1003 PRIVATE + _mbsstr @1004 + _mbsstr_l @1005 PRIVATE + _mbstok @1006 + _mbstok_l @1007 + _mbstok_s @1008 + _mbstok_s_l @1009 + _mbstowcs_l=MSVCRT__mbstowcs_l @1010 + _mbstowcs_s_l=MSVCRT__mbstowcs_s_l @1011 + _mbstrlen @1012 + _mbstrlen_l @1013 + _mbstrnlen @1014 PRIVATE + _mbstrnlen_l @1015 PRIVATE + _mbsupr @1016 + _mbsupr_l @1017 PRIVATE + _mbsupr_s @1018 + _mbsupr_s_l @1019 PRIVATE + _mbtowc_l=MSVCRT_mbtowc_l @1020 + _memccpy=ntdll._memccpy @1021 + _memicmp=MSVCRT__memicmp @1022 + _memicmp_l=MSVCRT__memicmp_l @1023 + _mkdir=MSVCRT__mkdir @1024 + _mkgmtime32=MSVCRT__mkgmtime32 @1025 + _mkgmtime64=MSVCRT__mkgmtime64 @1026 + _mktemp=MSVCRT__mktemp @1027 + _mktemp_s=MSVCRT__mktemp_s @1028 + _mktime32=MSVCRT__mktime32 @1029 + _mktime64=MSVCRT__mktime64 @1030 + _msize @1031 + _nextafter=MSVCRT__nextafter @1032 + _nextafterf=MSVCRT__nextafterf @1033 + _onexit=MSVCRT__onexit @1034 + _open=MSVCRT__open @1035 + _open_osfhandle=MSVCRT__open_osfhandle @1036 + _pclose=MSVCRT__pclose @1037 + _pctype=MSVCRT__pctype @1038 DATA + _pgmptr=MSVCRT__pgmptr @1039 DATA + _pipe=MSVCRT__pipe @1040 + _popen=MSVCRT__popen @1041 + _printf_l @1042 PRIVATE + _printf_p @1043 PRIVATE + _printf_p_l @1044 PRIVATE + _printf_s_l @1045 PRIVATE + _purecall @1046 + _putc_nolock=MSVCRT__fputc_nolock @1047 + _putch @1048 + _putch_nolock @1049 + _putenv @1050 + _putenv_s @1051 + _putw=MSVCRT__putw @1052 + _putwc_nolock=MSVCRT__fputwc_nolock @1053 + _putwch @1054 + _putwch_nolock @1055 + _putws=MSVCRT__putws @1056 + _read=MSVCRT__read @1057 + _realloc_crt=MSVCRT_realloc @1058 + _recalloc @1059 + _recalloc_crt @1060 PRIVATE + _resetstkoflw=MSVCRT__resetstkoflw @1061 + _rmdir=MSVCRT__rmdir @1062 + _rmtmp=MSVCRT__rmtmp @1063 + _rotl @1064 + _rotl64 @1065 + _rotr @1066 + _rotr64 @1067 + _scalb=MSVCRT__scalb @1068 + _scalbf=MSVCRT__scalbf @1069 + _scanf_l=MSVCRT__scanf_l @1070 + _scanf_s_l=MSVCRT__scanf_s_l @1071 + _scprintf=MSVCRT__scprintf @1072 + _scprintf_l @1073 PRIVATE + _scprintf_p @1074 PRIVATE + _scprintf_p_l @1075 PRIVATE + _scwprintf=MSVCRT__scwprintf @1076 + _scwprintf_l @1077 PRIVATE + _scwprintf_p @1078 PRIVATE + _scwprintf_p_l @1079 PRIVATE + _searchenv=MSVCRT__searchenv @1080 + _searchenv_s=MSVCRT__searchenv_s @1081 + _set_FMA3_enable=MSVCRT__set_FMA3_enable @1082 + _set_abort_behavior=MSVCRT__set_abort_behavior @1083 + _set_controlfp @1084 + _set_doserrno @1085 + _set_errno @1086 + _set_error_mode @1087 + _set_fmode=MSVCRT__set_fmode @1088 + _set_invalid_parameter_handler @1089 + _set_malloc_crt_max_wait @1090 PRIVATE + _set_output_format=MSVCRT__set_output_format @1091 + _set_printf_count_output=MSVCRT__set_printf_count_output @1092 + _set_purecall_handler @1093 + _seterrormode @1094 + _setjmp=MSVCRT__setjmp @1095 + _setjmpex=MSVCRT__setjmpex @1096 + _setmaxstdio=MSVCRT__setmaxstdio @1097 + _setmbcp @1098 + _setmode=MSVCRT__setmode @1099 + _setsystime @1100 PRIVATE + _sleep=MSVCRT__sleep @1101 + _snprintf=MSVCRT__snprintf @1102 + _snprintf_c @1103 PRIVATE + _snprintf_c_l @1104 PRIVATE + _snprintf_l=MSVCRT__snprintf_l @1105 + _snprintf_s=MSVCRT__snprintf_s @1106 + _snprintf_s_l @1107 PRIVATE + _snscanf=MSVCRT__snscanf @1108 + _snscanf_l=MSVCRT__snscanf_l @1109 + _snscanf_s=MSVCRT__snscanf_s @1110 + _snscanf_s_l=MSVCRT__snscanf_s_l @1111 + _snwprintf=MSVCRT__snwprintf @1112 + _snwprintf_l=MSVCRT__snwprintf_l @1113 + _snwprintf_s=MSVCRT__snwprintf_s @1114 + _snwprintf_s_l=MSVCRT__snwprintf_s_l @1115 + _snwscanf=MSVCRT__snwscanf @1116 + _snwscanf_l=MSVCRT__snwscanf_l @1117 + _snwscanf_s=MSVCRT__snwscanf_s @1118 + _snwscanf_s_l=MSVCRT__snwscanf_s_l @1119 + _sopen=MSVCRT__sopen @1120 + _sopen_s=MSVCRT__sopen_s @1121 + _spawnl=MSVCRT__spawnl @1122 + _spawnle=MSVCRT__spawnle @1123 + _spawnlp=MSVCRT__spawnlp @1124 + _spawnlpe=MSVCRT__spawnlpe @1125 + _spawnv=MSVCRT__spawnv @1126 + _spawnve=MSVCRT__spawnve @1127 + _spawnvp=MSVCRT__spawnvp @1128 + _spawnvpe=MSVCRT__spawnvpe @1129 + _splitpath=MSVCRT__splitpath @1130 + _splitpath_s=MSVCRT__splitpath_s @1131 + _sprintf_l=MSVCRT_sprintf_l @1132 + _sprintf_p=MSVCRT__sprintf_p @1133 + _sprintf_p_l=MSVCRT_sprintf_p_l @1134 + _sprintf_s_l=MSVCRT_sprintf_s_l @1135 + _sscanf_l=MSVCRT__sscanf_l @1136 + _sscanf_s_l=MSVCRT__sscanf_s_l @1137 + _stat32=MSVCRT__stat32 @1138 + _stat32i64=MSVCRT__stat32i64 @1139 + _stat64=MSVCRT_stat64 @1140 + _stat64i32=MSVCRT__stat64i32 @1141 + _statusfp @1142 + _strcoll_l=MSVCRT_strcoll_l @1143 + _strdate=MSVCRT__strdate @1144 + _strdate_s @1145 + _strdup=MSVCRT__strdup @1146 + _strerror=MSVCRT__strerror @1147 + _strerror_s @1148 PRIVATE + _strftime_l=MSVCRT__strftime_l @1149 + _stricmp=MSVCRT__stricmp @1150 + _stricmp_l=MSVCRT__stricmp_l @1151 + _stricoll=MSVCRT__stricoll @1152 + _stricoll_l=MSVCRT__stricoll_l @1153 + _strlwr=MSVCRT__strlwr @1154 + _strlwr_l @1155 + _strlwr_s=MSVCRT__strlwr_s @1156 + _strlwr_s_l=MSVCRT__strlwr_s_l @1157 + _strncoll=MSVCRT__strncoll @1158 + _strncoll_l=MSVCRT__strncoll_l @1159 + _strnicmp=MSVCRT__strnicmp @1160 + _strnicmp_l=MSVCRT__strnicmp_l @1161 + _strnicoll=MSVCRT__strnicoll @1162 + _strnicoll_l=MSVCRT__strnicoll_l @1163 + _strnset=MSVCRT__strnset @1164 + _strnset_s=MSVCRT__strnset_s @1165 + _strrev=MSVCRT__strrev @1166 + _strset @1167 + _strset_s @1168 PRIVATE + _strtime=MSVCRT__strtime @1169 + _strtime_s @1170 + _strtod_l=MSVCRT_strtod_l @1171 + _strtof_l=MSVCRT__strtof_l @1172 + _strtoi64=MSVCRT_strtoi64 @1173 + _strtoi64_l=MSVCRT_strtoi64_l @1174 + _strtoimax_l @1175 PRIVATE + _strtol_l=MSVCRT__strtol_l @1176 + _strtold_l @1177 PRIVATE + _strtoll_l=MSVCRT_strtoi64_l @1178 + _strtoui64=MSVCRT_strtoui64 @1179 + _strtoui64_l=MSVCRT_strtoui64_l @1180 + _strtoul_l=MSVCRT_strtoul_l @1181 + _strtoull_l=MSVCRT_strtoui64_l @1182 + _strtoumax_l @1183 PRIVATE + _strupr=MSVCRT__strupr @1184 + _strupr_l=MSVCRT__strupr_l @1185 + _strupr_s=MSVCRT__strupr_s @1186 + _strupr_s_l=MSVCRT__strupr_s_l @1187 + _strxfrm_l=MSVCRT__strxfrm_l @1188 + _swab=MSVCRT__swab @1189 + _swprintf=MSVCRT_swprintf @1190 + _swprintf_c @1191 PRIVATE + _swprintf_c_l @1192 PRIVATE + _swprintf_p @1193 PRIVATE + _swprintf_p_l=MSVCRT_swprintf_p_l @1194 + _swprintf_s_l=MSVCRT__swprintf_s_l @1195 + _swscanf_l=MSVCRT__swscanf_l @1196 + _swscanf_s_l=MSVCRT__swscanf_s_l @1197 + _sys_errlist=MSVCRT__sys_errlist @1198 DATA + _sys_nerr=MSVCRT__sys_nerr @1199 DATA + _tell=MSVCRT__tell @1200 + _telli64 @1201 + _tempnam=MSVCRT__tempnam @1202 + _time32=MSVCRT__time32 @1203 + _time64=MSVCRT__time64 @1204 + _timezone=MSVCRT___timezone @1205 DATA + _tolower=MSVCRT__tolower @1206 + _tolower_l=MSVCRT__tolower_l @1207 + _toupper=MSVCRT__toupper @1208 + _toupper_l=MSVCRT__toupper_l @1209 + _towlower_l=MSVCRT__towlower_l @1210 + _towupper_l=MSVCRT__towupper_l @1211 + _tzname=MSVCRT__tzname @1212 DATA + _tzset=MSVCRT__tzset @1213 + _ui64toa=ntdll._ui64toa @1214 + _ui64toa_s=MSVCRT__ui64toa_s @1215 + _ui64tow=ntdll._ui64tow @1216 + _ui64tow_s=MSVCRT__ui64tow_s @1217 + _ultoa=ntdll._ultoa @1218 + _ultoa_s=MSVCRT__ultoa_s @1219 + _ultow=ntdll._ultow @1220 + _ultow_s=MSVCRT__ultow_s @1221 + _umask=MSVCRT__umask @1222 + _umask_s @1223 PRIVATE + _ungetc_nolock=MSVCRT__ungetc_nolock @1224 + _ungetch @1225 + _ungetch_nolock @1226 + _ungetwc_nolock=MSVCRT__ungetwc_nolock @1227 + _ungetwch @1228 + _ungetwch_nolock @1229 + _unlink=MSVCRT__unlink @1230 + _unloaddll @1231 + _unlock @1232 + _unlock_file=MSVCRT__unlock_file @1233 + _utime32 @1234 + _utime64 @1235 + _vacopy=MSVCR120__vacopy @1236 + _vcprintf @1237 + _vcprintf_l @1238 PRIVATE + _vcprintf_p @1239 PRIVATE + _vcprintf_p_l @1240 PRIVATE + _vcprintf_s @1241 PRIVATE + _vcprintf_s_l @1242 PRIVATE + _vcwprintf @1243 + _vcwprintf_l @1244 PRIVATE + _vcwprintf_p @1245 PRIVATE + _vcwprintf_p_l @1246 PRIVATE + _vcwprintf_s @1247 PRIVATE + _vcwprintf_s_l @1248 PRIVATE + _vfprintf_l=MSVCRT__vfprintf_l @1249 + _vfprintf_p=MSVCRT__vfprintf_p @1250 + _vfprintf_p_l=MSVCRT__vfprintf_p_l @1251 + _vfprintf_s_l=MSVCRT__vfprintf_s_l @1252 + _vfwprintf_l=MSVCRT__vfwprintf_l @1253 + _vfwprintf_p=MSVCRT__vfwprintf_p @1254 + _vfwprintf_p_l=MSVCRT__vfwprintf_p_l @1255 + _vfwprintf_s_l=MSVCRT__vfwprintf_s_l @1256 + _vprintf_l @1257 PRIVATE + _vprintf_p @1258 PRIVATE + _vprintf_p_l @1259 PRIVATE + _vprintf_s_l @1260 PRIVATE + _vscprintf=MSVCRT__vscprintf @1261 + _vscprintf_l=MSVCRT__vscprintf_l @1262 + _vscprintf_p=MSVCRT__vscprintf_p @1263 + _vscprintf_p_l=MSVCRT__vscprintf_p_l @1264 + _vscwprintf=MSVCRT__vscwprintf @1265 + _vscwprintf_l=MSVCRT__vscwprintf_l @1266 + _vscwprintf_p=MSVCRT__vscwprintf_p @1267 + _vscwprintf_p_l=MSVCRT__vscwprintf_p_l @1268 + _vsnprintf=MSVCRT_vsnprintf @1269 + _vsnprintf_c=MSVCRT_vsnprintf @1270 + _vsnprintf_c_l=MSVCRT_vsnprintf_l @1271 + _vsnprintf_l=MSVCRT_vsnprintf_l @1272 + _vsnprintf_s=MSVCRT_vsnprintf_s @1273 + _vsnprintf_s_l=MSVCRT_vsnprintf_s_l @1274 + _vsnwprintf=MSVCRT_vsnwprintf @1275 + _vsnwprintf_l=MSVCRT_vsnwprintf_l @1276 + _vsnwprintf_s=MSVCRT_vsnwprintf_s @1277 + _vsnwprintf_s_l=MSVCRT_vsnwprintf_s_l @1278 + _vsprintf_l=MSVCRT_vsprintf_l @1279 + _vsprintf_p=MSVCRT_vsprintf_p @1280 + _vsprintf_p_l=MSVCRT_vsprintf_p_l @1281 + _vsprintf_s_l=MSVCRT_vsprintf_s_l @1282 + _vswprintf=MSVCRT_vswprintf @1283 + _vswprintf_c=MSVCRT_vsnwprintf @1284 + _vswprintf_c_l=MSVCRT_vsnwprintf_l @1285 + _vswprintf_l=MSVCRT_vswprintf_l @1286 + _vswprintf_p=MSVCRT__vswprintf_p @1287 + _vswprintf_p_l=MSVCRT_vswprintf_p_l @1288 + _vswprintf_s_l=MSVCRT_vswprintf_s_l @1289 + _vwprintf_l @1290 PRIVATE + _vwprintf_p @1291 PRIVATE + _vwprintf_p_l @1292 PRIVATE + _vwprintf_s_l @1293 PRIVATE + _waccess=MSVCRT__waccess @1294 + _waccess_s=MSVCRT__waccess_s @1295 + _wasctime=MSVCRT__wasctime @1296 + _wasctime_s=MSVCRT__wasctime_s @1297 + _wassert=MSVCRT__wassert @1298 + _wchdir=MSVCRT__wchdir @1299 + _wchmod=MSVCRT__wchmod @1300 + _wcmdln=MSVCRT__wcmdln @1301 DATA + _wcreat=MSVCRT__wcreat @1302 + _wcreate_locale=MSVCRT__wcreate_locale @1303 + _wcscoll_l=MSVCRT__wcscoll_l @1304 + _wcsdup=MSVCRT__wcsdup @1305 + _wcserror=MSVCRT__wcserror @1306 + _wcserror_s=MSVCRT__wcserror_s @1307 + _wcsftime_l=MSVCRT__wcsftime_l @1308 + _wcsicmp=MSVCRT__wcsicmp @1309 + _wcsicmp_l=MSVCRT__wcsicmp_l @1310 + _wcsicoll=MSVCRT__wcsicoll @1311 + _wcsicoll_l=MSVCRT__wcsicoll_l @1312 + _wcslwr=MSVCRT__wcslwr @1313 + _wcslwr_l=MSVCRT__wcslwr_l @1314 + _wcslwr_s=MSVCRT__wcslwr_s @1315 + _wcslwr_s_l=MSVCRT__wcslwr_s_l @1316 + _wcsncoll=MSVCRT__wcsncoll @1317 + _wcsncoll_l=MSVCRT__wcsncoll_l @1318 + _wcsnicmp=MSVCRT__wcsnicmp @1319 + _wcsnicmp_l=MSVCRT__wcsnicmp_l @1320 + _wcsnicoll=MSVCRT__wcsnicoll @1321 + _wcsnicoll_l=MSVCRT__wcsnicoll_l @1322 + _wcsnset=MSVCRT__wcsnset @1323 + _wcsnset_s=MSVCRT__wcsnset_s @1324 + _wcsrev=MSVCRT__wcsrev @1325 + _wcsset=MSVCRT__wcsset @1326 + _wcsset_s=MSVCRT__wcsset_s @1327 + _wcstod_l=MSVCRT__wcstod_l @1328 + _wcstof_l=MSVCRT__wcstof_l @1329 + _wcstoi64=MSVCRT__wcstoi64 @1330 + _wcstoi64_l=MSVCRT__wcstoi64_l @1331 + _wcstoimax_l @1332 PRIVATE + _wcstol_l=MSVCRT__wcstol_l @1333 + _wcstold_l @1334 PRIVATE + _wcstoll_l=MSVCRT__wcstoi64_l @1335 + _wcstombs_l=MSVCRT__wcstombs_l @1336 + _wcstombs_s_l=MSVCRT__wcstombs_s_l @1337 + _wcstoui64=MSVCRT__wcstoui64 @1338 + _wcstoui64_l=MSVCRT__wcstoui64_l @1339 + _wcstoul_l=MSVCRT__wcstoul_l @1340 + _wcstoull_l=MSVCRT__wcstoui64_l @1341 + _wcstoumax_l @1342 PRIVATE + _wcsupr=MSVCRT__wcsupr @1343 + _wcsupr_l=MSVCRT__wcsupr_l @1344 + _wcsupr_s=MSVCRT__wcsupr_s @1345 + _wcsupr_s_l=MSVCRT__wcsupr_s_l @1346 + _wcsxfrm_l=MSVCRT__wcsxfrm_l @1347 + _wctime32=MSVCRT__wctime32 @1348 + _wctime32_s=MSVCRT__wctime32_s @1349 + _wctime64=MSVCRT__wctime64 @1350 + _wctime64_s=MSVCRT__wctime64_s @1351 + _wctomb_l=MSVCRT__wctomb_l @1352 + _wctomb_s_l=MSVCRT__wctomb_s_l @1353 + _wdupenv_s @1354 + _wenviron=MSVCRT__wenviron @1355 DATA + _wexecl @1356 + _wexecle @1357 + _wexeclp @1358 + _wexeclpe @1359 + _wexecv @1360 + _wexecve @1361 + _wexecvp @1362 + _wexecvpe @1363 + _wfdopen=MSVCRT__wfdopen @1364 + _wfindfirst32=MSVCRT__wfindfirst32 @1365 + _wfindfirst32i64 @1366 PRIVATE + _wfindfirst64=MSVCRT__wfindfirst64 @1367 + _wfindfirst64i32=MSVCRT__wfindfirst64i32 @1368 + _wfindnext32=MSVCRT__wfindnext32 @1369 + _wfindnext32i64 @1370 PRIVATE + _wfindnext64=MSVCRT__wfindnext64 @1371 + _wfindnext64i32=MSVCRT__wfindnext64i32 @1372 + _wfopen=MSVCRT__wfopen @1373 + _wfopen_s=MSVCRT__wfopen_s @1374 + _wfreopen=MSVCRT__wfreopen @1375 + _wfreopen_s=MSVCRT__wfreopen_s @1376 + _wfsopen=MSVCRT__wfsopen @1377 + _wfullpath=MSVCRT__wfullpath @1378 + _wgetcwd=MSVCRT__wgetcwd @1379 + _wgetdcwd=MSVCRT__wgetdcwd @1380 + _wgetenv=MSVCRT__wgetenv @1381 + _wgetenv_s @1382 + _wmakepath=MSVCRT__wmakepath @1383 + _wmakepath_s=MSVCRT__wmakepath_s @1384 + _wmkdir=MSVCRT__wmkdir @1385 + _wmktemp=MSVCRT__wmktemp @1386 + _wmktemp_s=MSVCRT__wmktemp_s @1387 + _wopen=MSVCRT__wopen @1388 + _wperror=MSVCRT__wperror @1389 + _wpgmptr=MSVCRT__wpgmptr @1390 DATA + _wpopen=MSVCRT__wpopen @1391 + _wprintf_l @1392 PRIVATE + _wprintf_p @1393 PRIVATE + _wprintf_p_l @1394 PRIVATE + _wprintf_s_l @1395 PRIVATE + _wputenv @1396 + _wputenv_s @1397 + _wremove=MSVCRT__wremove @1398 + _wrename=MSVCRT__wrename @1399 + _write=MSVCRT__write @1400 + _wrmdir=MSVCRT__wrmdir @1401 + _wscanf_l=MSVCRT__wscanf_l @1402 + _wscanf_s_l=MSVCRT__wscanf_s_l @1403 + _wsearchenv=MSVCRT__wsearchenv @1404 + _wsearchenv_s=MSVCRT__wsearchenv_s @1405 + _wsetlocale=MSVCRT__wsetlocale @1406 + _wsopen=MSVCRT__wsopen @1407 + _wsopen_s=MSVCRT__wsopen_s @1408 + _wspawnl=MSVCRT__wspawnl @1409 + _wspawnle=MSVCRT__wspawnle @1410 + _wspawnlp=MSVCRT__wspawnlp @1411 + _wspawnlpe=MSVCRT__wspawnlpe @1412 + _wspawnv=MSVCRT__wspawnv @1413 + _wspawnve=MSVCRT__wspawnve @1414 + _wspawnvp=MSVCRT__wspawnvp @1415 + _wspawnvpe=MSVCRT__wspawnvpe @1416 + _wsplitpath=MSVCRT__wsplitpath @1417 + _wsplitpath_s=MSVCRT__wsplitpath_s @1418 + _wstat32=MSVCRT__wstat32 @1419 + _wstat32i64=MSVCRT__wstat32i64 @1420 + _wstat64=MSVCRT__wstat64 @1421 + _wstat64i32=MSVCRT__wstat64i32 @1422 + _wstrdate=MSVCRT__wstrdate @1423 + _wstrdate_s @1424 + _wstrtime=MSVCRT__wstrtime @1425 + _wstrtime_s @1426 + _wsystem @1427 + _wtempnam=MSVCRT__wtempnam @1428 + _wtmpnam=MSVCRT__wtmpnam @1429 + _wtmpnam_s=MSVCRT__wtmpnam_s @1430 + _wtof=MSVCRT__wtof @1431 + _wtof_l=MSVCRT__wtof_l @1432 + _wtoi=MSVCRT__wtoi @1433 + _wtoi64=MSVCRT__wtoi64 @1434 + _wtoi64_l=MSVCRT__wtoi64_l @1435 + _wtoi_l=MSVCRT__wtoi_l @1436 + _wtol=MSVCRT__wtol @1437 + _wtol_l=MSVCRT__wtol_l @1438 + _wtoll=MSVCRT__wtoll @1439 + _wtoll_l=MSVCRT__wtoll_l @1440 + _wunlink=MSVCRT__wunlink @1441 + _wutime32 @1442 + _wutime64 @1443 + _y0=MSVCRT__y0 @1444 + _y1=MSVCRT__y1 @1445 + _yn=MSVCRT__yn @1446 + abort=MSVCRT_abort @1447 + abs=MSVCRT_abs @1448 + acos=MSVCRT_acos @1449 + acosf=MSVCRT_acosf @1450 + acosh=MSVCR120_acosh @1451 + acoshf=MSVCR120_acoshf @1452 + acoshl=MSVCR120_acoshl @1453 + asctime=MSVCRT_asctime @1454 + asctime_s=MSVCRT_asctime_s @1455 + asin=MSVCRT_asin @1456 + asinf=MSVCRT_asinf @1457 + asinh=MSVCR120_asinh @1458 + asinhf=MSVCR120_asinhf @1459 + asinhl=MSVCR120_asinhl @1460 + atan=MSVCRT_atan @1461 + atanf=MSVCRT_atanf @1462 + atan2=MSVCRT_atan2 @1463 + atan2f=MSVCRT_atan2f @1464 + atanh=MSVCR120_atanh @1465 + atanhf=MSVCR120_atanhf @1466 + atanhl=MSVCR120_atanhl @1467 + atexit=MSVCRT_atexit @1468 PRIVATE + atof=MSVCRT_atof @1469 + atoi=MSVCRT_atoi @1470 + atol=MSVCRT_atol @1471 + atoll=MSVCRT_atoll @1472 + bsearch=MSVCRT_bsearch @1473 + bsearch_s=MSVCRT_bsearch_s @1474 + btowc=MSVCRT_btowc @1475 + cabs @1476 PRIVATE + cabsf @1477 PRIVATE + cabsl @1478 PRIVATE + cacos @1479 PRIVATE + cacosf @1480 PRIVATE + cacosh @1481 PRIVATE + cacoshf @1482 PRIVATE + cacoshl @1483 PRIVATE + cacosl @1484 PRIVATE + calloc=MSVCRT_calloc @1485 + carg @1486 PRIVATE + cargf @1487 PRIVATE + cargl @1488 PRIVATE + casin @1489 PRIVATE + casinf @1490 PRIVATE + casinh @1491 PRIVATE + casinhf @1492 PRIVATE + casinhl @1493 PRIVATE + casinl @1494 PRIVATE + catan @1495 PRIVATE + catanf @1496 PRIVATE + catanh @1497 PRIVATE + catanhf @1498 PRIVATE + catanhl @1499 PRIVATE + catanl @1500 PRIVATE + cbrt=MSVCR120_cbrt @1501 + cbrtf=MSVCR120_cbrtf @1502 + cbrtl=MSVCR120_cbrtl @1503 + ccos @1504 PRIVATE + ccosf @1505 PRIVATE + ccosh @1506 PRIVATE + ccoshf @1507 PRIVATE + ccoshl @1508 PRIVATE + ccosl @1509 PRIVATE + ceil=MSVCRT_ceil @1510 + ceilf=MSVCRT_ceilf @1511 + cexp @1512 PRIVATE + cexpf @1513 PRIVATE + cexpl @1514 PRIVATE + cimag @1515 PRIVATE + cimagf @1516 PRIVATE + cimagl @1517 PRIVATE + clearerr=MSVCRT_clearerr @1518 + clearerr_s=MSVCRT_clearerr_s @1519 + clock=MSVCRT_clock @1520 + clog @1521 PRIVATE + clog10 @1522 PRIVATE + clog10f @1523 PRIVATE + clog10l @1524 PRIVATE + clogf @1525 PRIVATE + clogl @1526 PRIVATE + conj @1527 PRIVATE + conjf @1528 PRIVATE + conjl @1529 PRIVATE + copysign=MSVCRT__copysign @1530 + copysignf=MSVCRT__copysignf @1531 + copysignl=MSVCRT__copysign @1532 + cos=MSVCRT_cos @1533 + cosf=MSVCRT_cosf @1534 + cosh=MSVCRT_cosh @1535 + coshf=MSVCRT_coshf @1536 + cpow @1537 PRIVATE + cpowf @1538 PRIVATE + cpowl @1539 PRIVATE + cproj @1540 PRIVATE + cprojf @1541 PRIVATE + cprojl @1542 PRIVATE + creal=MSVCR120_creal @1543 + crealf @1544 PRIVATE + creall @1545 PRIVATE + csin @1546 PRIVATE + csinf @1547 PRIVATE + csinh @1548 PRIVATE + csinhf @1549 PRIVATE + csinhl @1550 PRIVATE + csinl @1551 PRIVATE + csqrt @1552 PRIVATE + csqrtf @1553 PRIVATE + csqrtl @1554 PRIVATE + ctan @1555 PRIVATE + ctanf @1556 PRIVATE + ctanh @1557 PRIVATE + ctanhf @1558 PRIVATE + ctanhl @1559 PRIVATE + ctanl @1560 PRIVATE + div=MSVCRT_div @1561 + erf=MSVCR120_erf @1562 + erfc=MSVCR120_erfc @1563 + erfcf=MSVCR120_erfcf @1564 + erfcl=MSVCR120_erfcl @1565 + erff=MSVCR120_erff @1566 + erfl=MSVCR120_erfl @1567 + exit=MSVCRT_exit @1568 + exp=MSVCRT_exp @1569 + exp2=MSVCR120_exp2 @1570 + exp2f=MSVCR120_exp2f @1571 + exp2l=MSVCR120_exp2l @1572 + expf=MSVCRT_expf @1573 + expm1=MSVCR120_expm1 @1574 + expm1f=MSVCR120_expm1f @1575 + expm1l=MSVCR120_expm1l @1576 + fabs=MSVCRT_fabs @1577 + fabsf=MSVCRT_fabsf @1578 + fclose=MSVCRT_fclose @1579 + fdim @1580 PRIVATE + fdimf @1581 PRIVATE + fdiml @1582 PRIVATE + feclearexcept @1583 PRIVATE + fegetenv=MSVCRT_fegetenv @1584 + fegetexceptflag @1585 PRIVATE + fegetround=MSVCRT_fegetround @1586 + feholdexcept @1587 PRIVATE + feof=MSVCRT_feof @1588 + feraiseexcept @1589 PRIVATE + ferror=MSVCRT_ferror @1590 + fesetenv=MSVCRT_fesetenv @1591 + fesetexceptflag @1592 PRIVATE + fesetround=MSVCRT_fesetround @1593 + fetestexcept @1594 PRIVATE + feupdateenv @1595 PRIVATE + fflush=MSVCRT_fflush @1596 + fgetc=MSVCRT_fgetc @1597 + fgetpos=MSVCRT_fgetpos @1598 + fgets=MSVCRT_fgets @1599 + fgetwc=MSVCRT_fgetwc @1600 + fgetws=MSVCRT_fgetws @1601 + floor=MSVCRT_floor @1602 + floorf=MSVCRT_floorf @1603 + fma @1604 PRIVATE + fmaf @1605 PRIVATE + fmal @1606 PRIVATE + fmax=MSVCR120_fmax @1607 + fmaxf=MSVCR120_fmaxf @1608 + fmaxl=MSVCR120_fmax @1609 + fmin=MSVCR120_fmin @1610 + fminf=MSVCR120_fminf @1611 + fminl=MSVCR120_fmin @1612 + fmod=MSVCRT_fmod @1613 + fmodf=MSVCRT_fmodf @1614 + fopen=MSVCRT_fopen @1615 + fopen_s=MSVCRT_fopen_s @1616 + fprintf=MSVCRT_fprintf @1617 + fprintf_s=MSVCRT_fprintf_s @1618 + fputc=MSVCRT_fputc @1619 + fputs=MSVCRT_fputs @1620 + fputwc=MSVCRT_fputwc @1621 + fputws=MSVCRT_fputws @1622 + fread=MSVCRT_fread @1623 + fread_s=MSVCRT_fread_s @1624 + free=MSVCRT_free @1625 + freopen=MSVCRT_freopen @1626 + freopen_s=MSVCRT_freopen_s @1627 + frexp=MSVCRT_frexp @1628 + fscanf=MSVCRT_fscanf @1629 + fscanf_s=MSVCRT_fscanf_s @1630 + fseek=MSVCRT_fseek @1631 + fsetpos=MSVCRT_fsetpos @1632 + ftell=MSVCRT_ftell @1633 + fwprintf=MSVCRT_fwprintf @1634 + fwprintf_s=MSVCRT_fwprintf_s @1635 + fwrite=MSVCRT_fwrite @1636 + fwscanf=MSVCRT_fwscanf @1637 + fwscanf_s=MSVCRT_fwscanf_s @1638 + getc=MSVCRT_getc @1639 + getchar=MSVCRT_getchar @1640 + getenv=MSVCRT_getenv @1641 + getenv_s @1642 + gets=MSVCRT_gets @1643 + gets_s=MSVCRT_gets_s @1644 + getwc=MSVCRT_getwc @1645 + getwchar=MSVCRT_getwchar @1646 + ilogb=MSVCR120_ilogb @1647 + ilogbf=MSVCR120_ilogbf @1648 + ilogbl=MSVCR120_ilogbl @1649 + imaxabs @1650 PRIVATE + imaxdiv @1651 PRIVATE + is_wctype=ntdll.iswctype @1652 + isalnum=MSVCRT_isalnum @1653 + isalpha=MSVCRT_isalpha @1654 + isblank=MSVCRT_isblank @1655 + iscntrl=MSVCRT_iscntrl @1656 + isdigit=MSVCRT_isdigit @1657 + isgraph=MSVCRT_isgraph @1658 + isleadbyte=MSVCRT_isleadbyte @1659 + islower=MSVCRT_islower @1660 + isprint=MSVCRT_isprint @1661 + ispunct=MSVCRT_ispunct @1662 + isspace=MSVCRT_isspace @1663 + isupper=MSVCRT_isupper @1664 + iswalnum=MSVCRT_iswalnum @1665 + iswalpha=ntdll.iswalpha @1666 + iswascii=MSVCRT_iswascii @1667 + iswblank=MSVCRT_iswblank @1668 + iswcntrl=MSVCRT_iswcntrl @1669 + iswctype=ntdll.iswctype @1670 + iswdigit=MSVCRT_iswdigit @1671 + iswgraph=MSVCRT_iswgraph @1672 + iswlower=MSVCRT_iswlower @1673 + iswprint=MSVCRT_iswprint @1674 + iswpunct=MSVCRT_iswpunct @1675 + iswspace=MSVCRT_iswspace @1676 + iswupper=MSVCRT_iswupper @1677 + iswxdigit=MSVCRT_iswxdigit @1678 + isxdigit=MSVCRT_isxdigit @1679 + labs=MSVCRT_labs @1680 + ldexp=MSVCRT_ldexp @1681 + ldiv=MSVCRT_ldiv @1682 + lgamma=MSVCR120_lgamma @1683 + lgammaf=MSVCR120_lgammaf @1684 + lgammal=MSVCR120_lgammal @1685 + llabs=MSVCRT_llabs @1686 + lldiv=MSVCRT_lldiv @1687 + llrint=MSVCR120_llrint @1688 + llrintf=MSVCR120_llrintf @1689 + llrintl=MSVCR120_llrintl @1690 + llround=MSVCR120_llround @1691 + llroundf=MSVCR120_llroundf @1692 + llroundl=MSVCR120_llroundl @1693 + localeconv=MSVCRT_localeconv @1694 + log=MSVCRT_log @1695 + logf=MSVCRT_logf @1696 + log10=MSVCRT_log10 @1697 + log10f=MSVCRT_log10f @1698 + log1p=MSVCR120_log1p @1699 + log1pf=MSVCR120_log1pf @1700 + log1pl=MSVCR120_log1pl @1701 + log2=MSVCR120_log2 @1702 + log2f=MSVCR120_log2f @1703 + log2l=MSVCR120_log2l @1704 + logb @1705 PRIVATE + logbf @1706 PRIVATE + logbl @1707 PRIVATE + longjmp=MSVCRT_longjmp @1708 + lrint=MSVCR120_lrint @1709 + lrintf=MSVCR120_lrintf @1710 + lrintl=MSVCR120_lrintl @1711 + lround=MSVCR120_lround @1712 + lroundf=MSVCR120_lroundf @1713 + lroundl=MSVCR120_lroundl @1714 + malloc=MSVCRT_malloc @1715 + mblen=MSVCRT_mblen @1716 + mbrlen=MSVCRT_mbrlen @1717 + mbrtowc=MSVCRT_mbrtowc @1718 + mbsrtowcs=MSVCRT_mbsrtowcs @1719 + mbsrtowcs_s=MSVCRT_mbsrtowcs_s @1720 + mbstowcs=MSVCRT_mbstowcs @1721 + mbstowcs_s=MSVCRT__mbstowcs_s @1722 + mbtowc=MSVCRT_mbtowc @1723 + memchr=MSVCRT_memchr @1724 + memcmp=MSVCRT_memcmp @1725 + memcpy=MSVCRT_memcpy @1726 + memcpy_s=MSVCRT_memcpy_s @1727 + memmove=MSVCRT_memmove @1728 + memmove_s=MSVCRT_memmove_s @1729 + memset=MSVCRT_memset @1730 + modf=MSVCRT_modf @1731 + modff=MSVCRT_modff @1732 + nan=MSVCR120_nan @1733 + nanf=MSVCR120_nanf @1734 + nanl=MSVCR120_nan @1735 + nearbyint=MSVCRT_nearbyint @1736 + nearbyintf=MSVCRT_nearbyintf @1737 + nearbyintl=MSVCRT_nearbyint @1738 + nextafter=MSVCRT__nextafter @1739 + nextafterf=MSVCRT__nextafterf @1740 + nextafterl=MSVCRT__nextafter @1741 + nexttoward=MSVCRT_nexttoward @1742 + nexttowardf=MSVCRT_nexttowardf @1743 + nexttowardl=MSVCRT_nexttoward @1744 + norm @1745 PRIVATE + normf @1746 PRIVATE + norml @1747 PRIVATE + perror=MSVCRT_perror @1748 + pow=MSVCRT_pow @1749 + powf=MSVCRT_powf @1750 + printf=MSVCRT_printf @1751 + printf_s=MSVCRT_printf_s @1752 + putc=MSVCRT_putc @1753 + putchar=MSVCRT_putchar @1754 + puts=MSVCRT_puts @1755 + putwc=MSVCRT_fputwc @1756 + putwchar=MSVCRT__fputwchar @1757 + qsort=MSVCRT_qsort @1758 + qsort_s=MSVCRT_qsort_s @1759 + raise=MSVCRT_raise @1760 + rand=MSVCRT_rand @1761 + rand_s=MSVCRT_rand_s @1762 + realloc=MSVCRT_realloc @1763 + remainder=MSVCR120_remainder @1764 + remainderf=MSVCR120_remainderf @1765 + remainderl=MSVCR120_remainderl @1766 + remove=MSVCRT_remove @1767 + remquo=MSVCR120_remquo @1768 + remquof=MSVCR120_remquof @1769 + remquol=MSVCR120_remquol @1770 + rename=MSVCRT_rename @1771 + rewind=MSVCRT_rewind @1772 + rint=MSVCR120_rint @1773 + rintf=MSVCR120_rintf @1774 + rintl=MSVCR120_rintl @1775 + round=MSVCR120_round @1776 + roundf=MSVCR120_roundf @1777 + roundl=MSVCR120_roundl @1778 + scalbln=MSVCRT__scalb @1779 + scalblnf=MSVCRT__scalbf @1780 + scalblnl=MSVCR120_scalbnl @1781 + scalbn=MSVCRT__scalb @1782 + scalbnf=MSVCRT__scalbf @1783 + scalbnl=MSVCR120_scalbnl @1784 + scanf=MSVCRT_scanf @1785 + scanf_s=MSVCRT_scanf_s @1786 + setbuf=MSVCRT_setbuf @1787 + setjmp=MSVCRT__setjmp @1788 PRIVATE + setlocale=MSVCRT_setlocale @1789 + setvbuf=MSVCRT_setvbuf @1790 + signal=MSVCRT_signal @1791 + sin=MSVCRT_sin @1792 + sinf=MSVCRT_sinf @1793 + sinh=MSVCRT_sinh @1794 + sinhf=MSVCRT_sinhf @1795 + sprintf=MSVCRT_sprintf @1796 + sprintf_s=MSVCRT_sprintf_s @1797 + sqrt=MSVCRT_sqrt @1798 + sqrtf=MSVCRT_sqrtf @1799 + srand=MSVCRT_srand @1800 + sscanf=MSVCRT_sscanf @1801 + sscanf_s=MSVCRT_sscanf_s @1802 + strcat=ntdll.strcat @1803 + strcat_s=MSVCRT_strcat_s @1804 + strchr=MSVCRT_strchr @1805 + strcmp=MSVCRT_strcmp @1806 + strcoll=MSVCRT_strcoll @1807 + strcpy=MSVCRT_strcpy @1808 + strcpy_s=MSVCRT_strcpy_s @1809 + strcspn=MSVCRT_strcspn @1810 + strerror=MSVCRT_strerror @1811 + strerror_s=MSVCRT_strerror_s @1812 + strftime=MSVCRT_strftime @1813 + strlen=MSVCRT_strlen @1814 + strncat=MSVCRT_strncat @1815 + strncat_s=MSVCRT_strncat_s @1816 + strncmp=MSVCRT_strncmp @1817 + strncpy=MSVCRT_strncpy @1818 + strncpy_s=MSVCRT_strncpy_s @1819 + strnlen=MSVCRT_strnlen @1820 + strpbrk=MSVCRT_strpbrk @1821 + strrchr=MSVCRT_strrchr @1822 + strspn=ntdll.strspn @1823 + strstr=MSVCRT_strstr @1824 + strtod=MSVCRT_strtod @1825 + strtof=MSVCRT_strtof @1826 + strtoimax @1827 PRIVATE + strtok=MSVCRT_strtok @1828 + strtok_s=MSVCRT_strtok_s @1829 + strtol=MSVCRT_strtol @1830 + strtold @1831 PRIVATE + strtoll=MSVCRT_strtoi64 @1832 + strtoul=MSVCRT_strtoul @1833 + strtoull=MSVCRT_strtoui64 @1834 + strtoumax @1835 PRIVATE + strxfrm=MSVCRT_strxfrm @1836 + swprintf_s=MSVCRT_swprintf_s @1837 + swscanf=MSVCRT_swscanf @1838 + swscanf_s=MSVCRT_swscanf_s @1839 + system=MSVCRT_system @1840 + tan=MSVCRT_tan @1841 + tanf=MSVCRT_tanf @1842 + tanh=MSVCRT_tanh @1843 + tanhf=MSVCRT_tanhf @1844 + tgamma @1845 PRIVATE + tgammaf @1846 PRIVATE + tgammal @1847 PRIVATE + tmpfile=MSVCRT_tmpfile @1848 + tmpfile_s=MSVCRT_tmpfile_s @1849 + tmpnam=MSVCRT_tmpnam @1850 + tmpnam_s=MSVCRT_tmpnam_s @1851 + tolower=MSVCRT_tolower @1852 + toupper=MSVCRT_toupper @1853 + towctrans=MSVCR120_towctrans @1854 + towlower=MSVCRT_towlower @1855 + towupper=MSVCRT_towupper @1856 + trunc=MSVCR120_trunc @1857 + truncf=MSVCR120_truncf @1858 + truncl=MSVCR120_truncl @1859 + ungetc=MSVCRT_ungetc @1860 + ungetwc=MSVCRT_ungetwc @1861 + vfprintf=MSVCRT_vfprintf @1862 + vfprintf_s=MSVCRT_vfprintf_s @1863 + vfscanf @1864 PRIVATE + vfscanf_s @1865 PRIVATE + vfwprintf=MSVCRT_vfwprintf @1866 + vfwprintf_s=MSVCRT_vfwprintf_s @1867 + vfwscanf @1868 PRIVATE + vfwscanf_s @1869 PRIVATE + vprintf=MSVCRT_vprintf @1870 + vprintf_s=MSVCRT_vprintf_s @1871 + vscanf @1872 PRIVATE + vscanf_s @1873 PRIVATE + vsprintf=MSVCRT_vsprintf @1874 + vsprintf_s=MSVCRT_vsprintf_s @1875 + vsscanf=MSVCRT_vsscanf @1876 + vsscanf_s @1877 PRIVATE + vswprintf_s=MSVCRT_vswprintf_s @1878 + vswscanf=MSVCRT_vswscanf @1879 + vswscanf_s @1880 PRIVATE + vwprintf=MSVCRT_vwprintf @1881 + vwprintf_s=MSVCRT_vwprintf_s @1882 + vwscanf @1883 PRIVATE + vwscanf_s @1884 PRIVATE + wcrtomb=MSVCRT_wcrtomb @1885 + wcrtomb_s @1886 PRIVATE + wcscat=ntdll.wcscat @1887 + wcscat_s=MSVCRT_wcscat_s @1888 + wcschr=MSVCRT_wcschr @1889 + wcscmp=MSVCRT_wcscmp @1890 + wcscoll=MSVCRT_wcscoll @1891 + wcscpy=ntdll.wcscpy @1892 + wcscpy_s=MSVCRT_wcscpy_s @1893 + wcscspn=ntdll.wcscspn @1894 + wcsftime=MSVCRT_wcsftime @1895 + wcslen=MSVCRT_wcslen @1896 + wcsncat=ntdll.wcsncat @1897 + wcsncat_s=MSVCRT_wcsncat_s @1898 + wcsncmp=MSVCRT_wcsncmp @1899 + wcsncpy=MSVCRT_wcsncpy @1900 + wcsncpy_s=MSVCRT_wcsncpy_s @1901 + wcsnlen=MSVCRT_wcsnlen @1902 + wcspbrk=MSVCRT_wcspbrk @1903 + wcsrchr=MSVCRT_wcsrchr @1904 + wcsrtombs=MSVCRT_wcsrtombs @1905 + wcsrtombs_s=MSVCRT_wcsrtombs_s @1906 + wcsspn=ntdll.wcsspn @1907 + wcsstr=MSVCRT_wcsstr @1908 + wcstod=MSVCRT_wcstod @1909 + wcstof=MSVCRT_wcstof @1910 + wcstoimax @1911 PRIVATE + wcstok=MSVCRT_wcstok @1912 + wcstok_s=MSVCRT_wcstok_s @1913 + wcstol=MSVCRT_wcstol @1914 + wcstold @1915 PRIVATE + wcstoll=MSVCRT__wcstoi64 @1916 + wcstombs=MSVCRT_wcstombs @1917 + wcstombs_s=MSVCRT_wcstombs_s @1918 + wcstoul=MSVCRT_wcstoul @1919 + wcstoull=MSVCRT__wcstoui64 @1920 + wcstoumax @1921 PRIVATE + wcsxfrm=MSVCRT_wcsxfrm @1922 + wctob=MSVCRT_wctob @1923 + wctomb=MSVCRT_wctomb @1924 + wctomb_s=MSVCRT_wctomb_s @1925 + wctrans=MSVCR120_wctrans @1926 + wctype @1927 + wmemcpy_s @1928 + wmemmove_s @1929 + wprintf=MSVCRT_wprintf @1930 + wprintf_s=MSVCRT_wprintf_s @1931 + wscanf=MSVCRT_wscanf @1932 + wscanf_s=MSVCRT_wscanf_s @1933 diff --git a/lib64/wine/libmsvcr70.def b/lib64/wine/libmsvcr70.def new file mode 100644 index 0000000..38a4475 --- /dev/null +++ b/lib64/wine/libmsvcr70.def @@ -0,0 +1,780 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/msvcr70/msvcr70.spec; do not edit! + +LIBRARY msvcr70.dll + +EXPORTS + ??0__non_rtti_object@@QEAA@AEBV0@@Z=MSVCRT___non_rtti_object_copy_ctor @1 + ??0__non_rtti_object@@QEAA@PEBD@Z=MSVCRT___non_rtti_object_ctor @2 + ??0bad_cast@@AEAA@PEBQEBD@Z=MSVCRT_bad_cast_ctor @3 + ??0bad_cast@@QEAA@AEBQEBD@Z=MSVCRT_bad_cast_ctor @4 + ??0bad_cast@@QEAA@AEBV0@@Z=MSVCRT_bad_cast_copy_ctor @5 + ??0bad_cast@@QEAA@PEBD@Z=MSVCRT_bad_cast_ctor_charptr @6 + ??0bad_typeid@@QEAA@AEBV0@@Z=MSVCRT_bad_typeid_copy_ctor @7 + ??0bad_typeid@@QEAA@PEBD@Z=MSVCRT_bad_typeid_ctor @8 + ??0exception@@QEAA@AEBQEBD@Z=MSVCRT_exception_ctor @9 + ??0exception@@QEAA@AEBV0@@Z=MSVCRT_exception_copy_ctor @10 + ??0exception@@QEAA@XZ=MSVCRT_exception_default_ctor @11 + ??1__non_rtti_object@@UEAA@XZ=MSVCRT___non_rtti_object_dtor @12 + ??1bad_cast@@UEAA@XZ=MSVCRT_bad_cast_dtor @13 + ??1bad_typeid@@UEAA@XZ=MSVCRT_bad_typeid_dtor @14 + ??1exception@@UEAA@XZ=MSVCRT_exception_dtor @15 + ??1type_info@@UEAA@XZ=MSVCRT_type_info_dtor @16 + ??2@YAPEAX_K@Z=MSVCRT_operator_new @17 + ??3@YAXPEAX@Z=MSVCRT_operator_delete @18 + ??4__non_rtti_object@@QEAAAEAV0@AEBV0@@Z=MSVCRT___non_rtti_object_opequals @19 + ??4bad_cast@@QEAAAEAV0@AEBV0@@Z=MSVCRT_bad_cast_opequals @20 + ??4bad_typeid@@QEAAAEAV0@AEBV0@@Z=MSVCRT_bad_typeid_opequals @21 + ??4exception@@QEAAAEAV0@AEBV0@@Z=MSVCRT_exception_opequals @22 + ??8type_info@@QEBAHAEBV0@@Z=MSVCRT_type_info_opequals_equals @23 + ??9type_info@@QEBAHAEBV0@@Z=MSVCRT_type_info_opnot_equals @24 + ??_7__non_rtti_object@@6B@=MSVCRT___non_rtti_object_vtable @25 DATA + ??_7bad_cast@@6B@=MSVCRT_bad_cast_vtable @26 DATA + ??_7bad_typeid@@6B@=MSVCRT_bad_typeid_vtable @27 DATA + ??_7exception@@6B@=MSVCRT_exception_vtable @28 DATA + ??_Fbad_cast@@QEAAXXZ=MSVCRT_bad_cast_default_ctor @29 + ??_Fbad_typeid@@QEAAXXZ=MSVCRT_bad_typeid_default_ctor @30 + ??_U@YAPEAX_K@Z=MSVCRT_operator_new @31 + ??_V@YAXPEAX@Z=MSVCRT_operator_delete @32 + __uncaught_exception=MSVCRT___uncaught_exception @33 + ?_query_new_handler@@YAP6AH_K@ZXZ=MSVCRT__query_new_handler @34 + ?_query_new_mode@@YAHXZ=MSVCRT__query_new_mode @35 + ?_set_new_handler@@YAP6AH_K@ZP6AH0@Z@Z=MSVCRT__set_new_handler @36 + ?_set_new_mode@@YAHH@Z=MSVCRT__set_new_mode @37 + ?_set_se_translator@@YAP6AXIPEAU_EXCEPTION_POINTERS@@@ZP6AXI0@Z@Z=MSVCRT__set_se_translator @38 + ?before@type_info@@QEBAHAEBV1@@Z=MSVCRT_type_info_before @39 + ?name@type_info@@QEBAPEBDXZ=MSVCRT_type_info_name @40 + ?raw_name@type_info@@QEBAPEBDXZ=MSVCRT_type_info_raw_name @41 + ?set_new_handler@@YAP6AXXZP6AXXZ@Z=MSVCRT_set_new_handler @42 + ?set_terminate@@YAP6AXXZP6AXXZ@Z=MSVCRT_set_terminate @43 + ?set_unexpected@@YAP6AXXZP6AXXZ@Z=MSVCRT_set_unexpected @44 + ?terminate@@YAXXZ=MSVCRT_terminate @45 + ?unexpected@@YAXXZ=MSVCRT_unexpected @46 + ?what@exception@@UEBAPEBDXZ=MSVCRT_what_exception @47 + $I10_OUTPUT=MSVCRT_I10_OUTPUT @48 + _CRT_RTC_INIT @49 + _CxxThrowException @50 + _Getdays @51 + _Getmonths @52 + _Gettnames @53 + _HUGE=MSVCRT__HUGE @54 DATA + _Strftime @55 + _XcptFilter @56 + __CxxCallUnwindDtor @57 PRIVATE + __CxxCallUnwindVecDtor @58 PRIVATE + __CxxDetectRethrow @59 + __CxxExceptionFilter @60 + __CxxFrameHandler @61 + __CxxQueryExceptionSize @62 + __CxxRegisterExceptionObject @63 + __CxxUnregisterExceptionObject @64 + __DestructExceptionObject @65 + __RTCastToVoid=MSVCRT___RTCastToVoid @66 + __RTDynamicCast=MSVCRT___RTDynamicCast @67 + __RTtypeid=MSVCRT___RTtypeid @68 + __STRINGTOLD @69 + ___lc_codepage_func @70 + ___lc_collate_cp_func @71 + ___lc_handle_func @72 + ___mb_cur_max_func=MSVCRT____mb_cur_max_func @73 + ___setlc_active_func=MSVCRT____setlc_active_func @74 + ___unguarded_readlc_active_add_func=MSVCRT____unguarded_readlc_active_add_func @75 + __argc=MSVCRT___argc @76 DATA + __argv=MSVCRT___argv @77 DATA + __badioinfo=MSVCRT___badioinfo @78 DATA + __buffer_overrun @79 PRIVATE + __crtCompareStringA @80 + __crtCompareStringW @81 + __crtGetLocaleInfoW @82 + __crtGetStringTypeW @83 + __crtLCMapStringA @84 + __crtLCMapStringW @85 + __dllonexit @86 + __doserrno=MSVCRT___doserrno @87 + __fpecode @88 + __getmainargs @89 + __initenv=MSVCRT___initenv @90 DATA + __iob_func=__p__iob @91 + __isascii=MSVCRT___isascii @92 + __iscsym=MSVCRT___iscsym @93 + __iscsymf=MSVCRT___iscsymf @94 + __lc_codepage=MSVCRT___lc_codepage @95 DATA + __lc_collate_cp=MSVCRT___lc_collate_cp @96 DATA + __lc_handle=MSVCRT___lc_handle @97 DATA + __lconv_init @98 + __mb_cur_max=MSVCRT___mb_cur_max @99 DATA + __p___argc=MSVCRT___p___argc @100 + __p___argv=MSVCRT___p___argv @101 + __p___initenv @102 + __p___mb_cur_max @103 + __p___wargv=MSVCRT___p___wargv @104 + __p___winitenv @105 + __p__acmdln=MSVCRT___p__acmdln @106 + __p__amblksiz @107 + __p__commode @108 + __p__daylight=MSVCRT___p__daylight @109 + __p__dstbias=MSVCRT___p__dstbias @110 + __p__environ=MSVCRT___p__environ @111 + __p__fileinfo @112 PRIVATE + __p__fmode=MSVCRT___p__fmode @113 + __p__iob @114 + __p__mbcasemap @115 PRIVATE + __p__mbctype @116 + __p__osver @117 + __p__pctype=MSVCRT___p__pctype @118 + __p__pgmptr=MSVCRT___p__pgmptr @119 + __p__pwctype @120 PRIVATE + __p__timezone=MSVCRT___p__timezone @121 + __p__tzname @122 + __p__wcmdln=MSVCRT___p__wcmdln @123 + __p__wenviron=MSVCRT___p__wenviron @124 + __p__winmajor @125 + __p__winminor @126 + __p__winver @127 + __p__wpgmptr=MSVCRT___p__wpgmptr @128 + __pctype_func=MSVCRT___pctype_func @129 + __pioinfo=MSVCRT___pioinfo @130 DATA + __pwctype_func @131 PRIVATE + __pxcptinfoptrs=MSVCRT___pxcptinfoptrs @132 + __security_error_handler @133 + __set_app_type=MSVCRT___set_app_type @134 + __set_buffer_overrun_handler @135 PRIVATE + __setlc_active=MSVCRT___setlc_active @136 DATA + __setusermatherr=MSVCRT___setusermatherr @137 + __threadhandle=kernel32.GetCurrentThread @138 + __threadid=kernel32.GetCurrentThreadId @139 + __toascii=MSVCRT___toascii @140 + __unDName @141 + __unDNameEx @142 + __unguarded_readlc_active=MSVCRT___unguarded_readlc_active @143 DATA + __wargv=MSVCRT___wargv @144 DATA + __wcserror=MSVCRT___wcserror @145 + __wgetmainargs @146 + __winitenv=MSVCRT___winitenv @147 DATA + _abnormal_termination @148 + _access=MSVCRT__access @149 + _acmdln=MSVCRT__acmdln @150 DATA + _aexit_rtn @151 DATA + _aligned_free @152 + _aligned_malloc @153 + _aligned_offset_malloc @154 + _aligned_offset_realloc @155 + _aligned_realloc @156 + _amsg_exit @157 + _assert=MSVCRT__assert @158 + _atodbl=MSVCRT__atodbl @159 + _atoi64=MSVCRT__atoi64 @160 + _atoldbl=MSVCRT__atoldbl @161 + _beep=MSVCRT__beep @162 + _beginthread @163 + _beginthreadex @164 + _c_exit=MSVCRT__c_exit @165 + _cabs=MSVCRT__cabs @166 + _callnewh @167 + _cexit=MSVCRT__cexit @168 + _cgets @169 + _cgetws @170 PRIVATE + _chdir=MSVCRT__chdir @171 + _chdrive=MSVCRT__chdrive @172 + _chgsign=MSVCRT__chgsign @173 + _chmod=MSVCRT__chmod @174 + _chsize=MSVCRT__chsize @175 + _clearfp @176 + _close=MSVCRT__close @177 + _commit=MSVCRT__commit @178 + _commode=MSVCRT__commode @179 DATA + _control87 @180 + _controlfp @181 + _copysign=MSVCRT__copysign @182 + _cprintf @183 + _cputs @184 + _cputws @185 + _creat=MSVCRT__creat @186 + _cscanf @187 + _ctime64=MSVCRT__ctime64 @188 + _ctype=MSVCRT__ctype @189 DATA + _cwait @190 + _cwprintf @191 + _cwscanf @192 + _daylight=MSVCRT___daylight @193 DATA + _dstbias=MSVCRT__dstbias @194 DATA + _dup=MSVCRT__dup @195 + _dup2=MSVCRT__dup2 @196 + _ecvt=MSVCRT__ecvt @197 + _endthread @198 + _endthreadex @199 + _environ=MSVCRT__environ @200 DATA + _eof=MSVCRT__eof @201 + _errno=MSVCRT__errno @202 + _execl @203 + _execle @204 + _execlp @205 + _execlpe @206 + _execv @207 + _execve=MSVCRT__execve @208 + _execvp @209 + _execvpe @210 + _exit=MSVCRT__exit @211 + _expand @212 + _fcloseall=MSVCRT__fcloseall @213 + _fcvt=MSVCRT__fcvt @214 + _fdopen=MSVCRT__fdopen @215 + _fgetchar=MSVCRT__fgetchar @216 + _fgetwchar=MSVCRT__fgetwchar @217 + _filbuf=MSVCRT__filbuf @218 + _filelength=MSVCRT__filelength @219 + _filelengthi64=MSVCRT__filelengthi64 @220 + _fileno=MSVCRT__fileno @221 + _findclose=MSVCRT__findclose @222 + _findfirst=MSVCRT__findfirst @223 + _findfirst64=MSVCRT__findfirst64 @224 + _findfirsti64=MSVCRT__findfirsti64 @225 + _findnext=MSVCRT__findnext @226 + _findnext64=MSVCRT__findnext64 @227 + _findnexti64=MSVCRT__findnexti64 @228 + _finite=MSVCRT__finite @229 + _flsbuf=MSVCRT__flsbuf @230 + _flushall=MSVCRT__flushall @231 + _fmode=MSVCRT__fmode @232 DATA + _fpclass=MSVCRT__fpclass @233 + _fpieee_flt @234 + _fpreset @235 + _fputchar=MSVCRT__fputchar @236 + _fputwchar=MSVCRT__fputwchar @237 + _fsopen=MSVCRT__fsopen @238 + _fstat=MSVCRT__fstat @239 + _fstat64=MSVCRT__fstat64 @240 + _fstati64=MSVCRT__fstati64 @241 + _ftime=MSVCRT__ftime @242 + _ftime64=MSVCRT__ftime64 @243 + _fullpath=MSVCRT__fullpath @244 + _futime @245 + _futime64 @246 + _gcvt=MSVCRT__gcvt @247 + _get_osfhandle=MSVCRT__get_osfhandle @248 + _get_sbh_threshold @249 + _getch @250 + _getche @251 + _getcwd=MSVCRT__getcwd @252 + _getdcwd=MSVCRT__getdcwd @253 + _getdiskfree=MSVCRT__getdiskfree @254 + _getdllprocaddr @255 + _getdrive=MSVCRT__getdrive @256 + _getdrives=kernel32.GetLogicalDrives @257 + _getmaxstdio=MSVCRT__getmaxstdio @258 + _getmbcp @259 + _getpid @260 + _getsystime @261 PRIVATE + _getw=MSVCRT__getw @262 + _getwch @263 + _getwche @264 + _getws=MSVCRT__getws @265 + _gmtime64=MSVCRT__gmtime64 @266 + _heapadd @267 + _heapchk @268 + _heapmin @269 + _heapset @270 + _heapused @271 PRIVATE + _heapwalk @272 + _hypot @273 + _i64toa=ntdll._i64toa @274 + _i64tow=ntdll._i64tow @275 + _initterm @276 + _iob=MSVCRT__iob @277 DATA + _isatty=MSVCRT__isatty @278 + _isctype=MSVCRT__isctype @279 + _ismbbalnum @280 PRIVATE + _ismbbalpha @281 PRIVATE + _ismbbgraph @282 PRIVATE + _ismbbkalnum @283 PRIVATE + _ismbbkana @284 + _ismbbkprint @285 PRIVATE + _ismbbkpunct @286 PRIVATE + _ismbblead @287 + _ismbbprint @288 PRIVATE + _ismbbpunct @289 PRIVATE + _ismbbtrail @290 + _ismbcalnum @291 + _ismbcalpha @292 + _ismbcdigit @293 + _ismbcgraph @294 + _ismbchira @295 + _ismbckata @296 + _ismbcl0 @297 + _ismbcl1 @298 + _ismbcl2 @299 + _ismbclegal @300 + _ismbclower @301 + _ismbcprint @302 + _ismbcpunct @303 + _ismbcspace @304 + _ismbcsymbol @305 + _ismbcupper @306 + _ismbslead @307 + _ismbstrail @308 + _isnan=MSVCRT__isnan @309 + _itoa=MSVCRT__itoa @310 + _itow=ntdll._itow @311 + _j0=MSVCRT__j0 @312 + _j1=MSVCRT__j1 @313 + _jn=MSVCRT__jn @314 + _kbhit @315 + _lfind @316 + _loaddll @317 + _localtime64=MSVCRT__localtime64 @318 + _lock @319 + _locking=MSVCRT__locking @320 + _logb=MSVCRT__logb @321 + _lrotl=MSVCRT__lrotl @322 + _lrotr=MSVCRT__lrotr @323 + _lsearch @324 + _lseek=MSVCRT__lseek @325 + _lseeki64=MSVCRT__lseeki64 @326 + _ltoa=ntdll._ltoa @327 + _ltow=ntdll._ltow @328 + _makepath=MSVCRT__makepath @329 + _mbbtombc @330 + _mbbtype @331 + _mbccpy @332 + _mbcjistojms @333 + _mbcjmstojis @334 + _mbclen @335 + _mbctohira @336 + _mbctokata @337 + _mbctolower @338 + _mbctombb @339 + _mbctoupper @340 + _mbctype=MSVCRT_mbctype @341 DATA + _mbsbtype @342 + _mbscat @343 + _mbschr @344 + _mbscmp @345 + _mbscoll @346 + _mbscpy @347 + _mbscspn @348 + _mbsdec @349 + _mbsdup=MSVCRT__strdup @350 + _mbsicmp @351 + _mbsicoll @352 + _mbsinc @353 + _mbslen @354 + _mbslwr @355 + _mbsnbcat @356 + _mbsnbcmp @357 + _mbsnbcnt @358 + _mbsnbcoll @359 + _mbsnbcpy @360 + _mbsnbicmp @361 + _mbsnbicoll @362 + _mbsnbset @363 + _mbsncat @364 + _mbsnccnt @365 + _mbsncmp @366 + _mbsncoll @367 PRIVATE + _mbsncpy @368 + _mbsnextc @369 + _mbsnicmp @370 + _mbsnicoll @371 PRIVATE + _mbsninc @372 + _mbsnset @373 + _mbspbrk @374 + _mbsrchr @375 + _mbsrev @376 + _mbsset @377 + _mbsspn @378 + _mbsspnp @379 + _mbsstr @380 + _mbstok @381 + _mbstrlen @382 + _mbsupr @383 + _memccpy=ntdll._memccpy @384 + _memicmp=MSVCRT__memicmp @385 + _mkdir=MSVCRT__mkdir @386 + _mktemp=MSVCRT__mktemp @387 + _mktime64=MSVCRT__mktime64 @388 + _msize @389 + _nextafter=MSVCRT__nextafter @390 + _onexit=MSVCRT__onexit @391 + _open=MSVCRT__open @392 + _open_osfhandle=MSVCRT__open_osfhandle @393 + _osplatform=MSVCRT__osplatform @394 DATA + _osver=MSVCRT__osver @395 DATA + _pclose=MSVCRT__pclose @396 + _pctype=MSVCRT__pctype @397 DATA + _pgmptr=MSVCRT__pgmptr @398 DATA + _pipe=MSVCRT__pipe @399 + _popen=MSVCRT__popen @400 + _purecall @401 + _putch @402 + _putenv @403 + _putw=MSVCRT__putw @404 + _putwch @405 + _putws=MSVCRT__putws @406 + _read=MSVCRT__read @407 + _resetstkoflw=MSVCRT__resetstkoflw @408 + _rmdir=MSVCRT__rmdir @409 + _rmtmp=MSVCRT__rmtmp @410 + _rotl @411 + _rotr @412 + _scalb=MSVCRT__scalb @413 + _scprintf=MSVCRT__scprintf @414 + _scwprintf=MSVCRT__scwprintf @415 + _searchenv=MSVCRT__searchenv @416 + _set_SSE2_enable=MSVCRT__set_SSE2_enable @417 + _set_error_mode @418 + _set_sbh_threshold @419 + _set_security_error_handler @420 + _seterrormode @421 + _setjmp=MSVCRT__setjmp @422 + _setmaxstdio=MSVCRT__setmaxstdio @423 + _setmbcp @424 + _setmode=MSVCRT__setmode @425 + _setsystime @426 PRIVATE + _sleep=MSVCRT__sleep @427 + _snprintf=MSVCRT__snprintf @428 + _snscanf=MSVCRT__snscanf @429 + _snwprintf=MSVCRT__snwprintf @430 + _snwscanf=MSVCRT__snwscanf @431 + _sopen=MSVCRT__sopen @432 + _spawnl=MSVCRT__spawnl @433 + _spawnle=MSVCRT__spawnle @434 + _spawnlp=MSVCRT__spawnlp @435 + _spawnlpe=MSVCRT__spawnlpe @436 + _spawnv=MSVCRT__spawnv @437 + _spawnve=MSVCRT__spawnve @438 + _spawnvp=MSVCRT__spawnvp @439 + _spawnvpe=MSVCRT__spawnvpe @440 + _splitpath=MSVCRT__splitpath @441 + _stat=MSVCRT_stat @442 + _stat64=MSVCRT_stat64 @443 + _stati64=MSVCRT_stati64 @444 + _statusfp @445 + _strcmpi=MSVCRT__stricmp @446 + _strdate=MSVCRT__strdate @447 + _strdup=MSVCRT__strdup @448 + _strerror=MSVCRT__strerror @449 + _stricmp=MSVCRT__stricmp @450 + _stricoll=MSVCRT__stricoll @451 + _strlwr=MSVCRT__strlwr @452 + _strncoll=MSVCRT__strncoll @453 + _strnicmp=MSVCRT__strnicmp @454 + _strnicoll=MSVCRT__strnicoll @455 + _strnset=MSVCRT__strnset @456 + _strrev=MSVCRT__strrev @457 + _strset @458 + _strtime=MSVCRT__strtime @459 + _strtoi64=MSVCRT_strtoi64 @460 + _strtoui64=MSVCRT_strtoui64 @461 + _strupr=MSVCRT__strupr @462 + _swab=MSVCRT__swab @463 + _sys_errlist=MSVCRT__sys_errlist @464 DATA + _sys_nerr=MSVCRT__sys_nerr @465 DATA + _tell=MSVCRT__tell @466 + _telli64 @467 + _tempnam=MSVCRT__tempnam @468 + _time64=MSVCRT__time64 @469 + _timezone=MSVCRT___timezone @470 DATA + _tolower=MSVCRT__tolower @471 + _toupper=MSVCRT__toupper @472 + _tzname=MSVCRT__tzname @473 DATA + _tzset=MSVCRT__tzset @474 + _ui64toa=ntdll._ui64toa @475 + _ui64tow=ntdll._ui64tow @476 + _ultoa=ntdll._ultoa @477 + _ultow=ntdll._ultow @478 + _umask=MSVCRT__umask @479 + _ungetch @480 + _ungetwch @481 + _unlink=MSVCRT__unlink @482 + _unloaddll @483 + _unlock @484 + _utime @485 + _utime64 @486 + _vscprintf=MSVCRT__vscprintf @487 + _vscwprintf=MSVCRT__vscwprintf @488 + _vsnprintf=MSVCRT_vsnprintf @489 + _vsnwprintf=MSVCRT_vsnwprintf @490 + _waccess=MSVCRT__waccess @491 + _wasctime=MSVCRT__wasctime @492 + _wchdir=MSVCRT__wchdir @493 + _wchmod=MSVCRT__wchmod @494 + _wcmdln=MSVCRT__wcmdln @495 DATA + _wcreat=MSVCRT__wcreat @496 + _wcsdup=MSVCRT__wcsdup @497 + _wcserror=MSVCRT__wcserror @498 + _wcsicmp=MSVCRT__wcsicmp @499 + _wcsicoll=MSVCRT__wcsicoll @500 + _wcslwr=MSVCRT__wcslwr @501 + _wcsncoll=MSVCRT__wcsncoll @502 + _wcsnicmp=MSVCRT__wcsnicmp @503 + _wcsnicoll=MSVCRT__wcsnicoll @504 + _wcsnset=MSVCRT__wcsnset @505 + _wcsrev=MSVCRT__wcsrev @506 + _wcsset=MSVCRT__wcsset @507 + _wcstoi64=MSVCRT__wcstoi64 @508 + _wcstoui64=MSVCRT__wcstoui64 @509 + _wcsupr=MSVCRT__wcsupr @510 + _wctime=MSVCRT__wctime @511 + _wctime64=MSVCRT__wctime64 @512 + _wenviron=MSVCRT__wenviron @513 DATA + _wexecl @514 + _wexecle @515 + _wexeclp @516 + _wexeclpe @517 + _wexecv @518 + _wexecve @519 + _wexecvp @520 + _wexecvpe @521 + _wfdopen=MSVCRT__wfdopen @522 + _wfindfirst=MSVCRT__wfindfirst @523 + _wfindfirst64=MSVCRT__wfindfirst64 @524 + _wfindfirsti64=MSVCRT__wfindfirsti64 @525 + _wfindnext=MSVCRT__wfindnext @526 + _wfindnext64=MSVCRT__wfindnext64 @527 + _wfindnexti64=MSVCRT__wfindnexti64 @528 + _wfopen=MSVCRT__wfopen @529 + _wfreopen=MSVCRT__wfreopen @530 + _wfsopen=MSVCRT__wfsopen @531 + _wfullpath=MSVCRT__wfullpath @532 + _wgetcwd=MSVCRT__wgetcwd @533 + _wgetdcwd=MSVCRT__wgetdcwd @534 + _wgetenv=MSVCRT__wgetenv @535 + _winmajor=MSVCRT__winmajor @536 DATA + _winminor=MSVCRT__winminor @537 DATA + _winver=MSVCRT__winver @538 DATA + _wmakepath=MSVCRT__wmakepath @539 + _wmkdir=MSVCRT__wmkdir @540 + _wmktemp=MSVCRT__wmktemp @541 + _wopen=MSVCRT__wopen @542 + _wperror=MSVCRT__wperror @543 + _wpgmptr=MSVCRT__wpgmptr @544 DATA + _wpopen=MSVCRT__wpopen @545 + _wputenv @546 + _wremove=MSVCRT__wremove @547 + _wrename=MSVCRT__wrename @548 + _write=MSVCRT__write @549 + _wrmdir=MSVCRT__wrmdir @550 + _wsearchenv=MSVCRT__wsearchenv @551 + _wsetlocale=MSVCRT__wsetlocale @552 + _wsopen=MSVCRT__wsopen @553 + _wspawnl=MSVCRT__wspawnl @554 + _wspawnle=MSVCRT__wspawnle @555 + _wspawnlp=MSVCRT__wspawnlp @556 + _wspawnlpe=MSVCRT__wspawnlpe @557 + _wspawnv=MSVCRT__wspawnv @558 + _wspawnve=MSVCRT__wspawnve @559 + _wspawnvp=MSVCRT__wspawnvp @560 + _wspawnvpe=MSVCRT__wspawnvpe @561 + _wsplitpath=MSVCRT__wsplitpath @562 + _wstat=MSVCRT__wstat @563 + _wstat64=MSVCRT__wstat64 @564 + _wstati64=MSVCRT__wstati64 @565 + _wstrdate=MSVCRT__wstrdate @566 + _wstrtime=MSVCRT__wstrtime @567 + _wsystem @568 + _wtempnam=MSVCRT__wtempnam @569 + _wtmpnam=MSVCRT__wtmpnam @570 + _wtof=MSVCRT__wtof @571 + _wtoi=MSVCRT__wtoi @572 + _wtoi64=MSVCRT__wtoi64 @573 + _wtol=MSVCRT__wtol @574 + _wunlink=MSVCRT__wunlink @575 + _wutime @576 + _wutime64 @577 + _y0=MSVCRT__y0 @578 + _y1=MSVCRT__y1 @579 + _yn=MSVCRT__yn @580 + abort=MSVCRT_abort @581 + abs=MSVCRT_abs @582 + acos=MSVCRT_acos @583 + asctime=MSVCRT_asctime @584 + asin=MSVCRT_asin @585 + atan=MSVCRT_atan @586 + atan2=MSVCRT_atan2 @587 + atexit=MSVCRT_atexit @588 PRIVATE + atof=MSVCRT_atof @589 + atoi=MSVCRT_atoi @590 + atol=MSVCRT_atol @591 + bsearch=MSVCRT_bsearch @592 + calloc=MSVCRT_calloc @593 + ceil=MSVCRT_ceil @594 + clearerr=MSVCRT_clearerr @595 + clock=MSVCRT_clock @596 + cos=MSVCRT_cos @597 + cosh=MSVCRT_cosh @598 + ctime=MSVCRT_ctime @599 + difftime=MSVCRT_difftime @600 + div=MSVCRT_div @601 + exit=MSVCRT_exit @602 + exp=MSVCRT_exp @603 + fabs=MSVCRT_fabs @604 + fclose=MSVCRT_fclose @605 + feof=MSVCRT_feof @606 + ferror=MSVCRT_ferror @607 + fflush=MSVCRT_fflush @608 + fgetc=MSVCRT_fgetc @609 + fgetpos=MSVCRT_fgetpos @610 + fgets=MSVCRT_fgets @611 + fgetwc=MSVCRT_fgetwc @612 + fgetws=MSVCRT_fgetws @613 + floor=MSVCRT_floor @614 + fmod=MSVCRT_fmod @615 + fopen=MSVCRT_fopen @616 + fprintf=MSVCRT_fprintf @617 + fputc=MSVCRT_fputc @618 + fputs=MSVCRT_fputs @619 + fputwc=MSVCRT_fputwc @620 + fputws=MSVCRT_fputws @621 + fread=MSVCRT_fread @622 + free=MSVCRT_free @623 + freopen=MSVCRT_freopen @624 + frexp=MSVCRT_frexp @625 + fscanf=MSVCRT_fscanf @626 + fseek=MSVCRT_fseek @627 + fsetpos=MSVCRT_fsetpos @628 + ftell=MSVCRT_ftell @629 + fwprintf=MSVCRT_fwprintf @630 + fwrite=MSVCRT_fwrite @631 + fwscanf=MSVCRT_fwscanf @632 + getc=MSVCRT_getc @633 + getchar=MSVCRT_getchar @634 + getenv=MSVCRT_getenv @635 + gets=MSVCRT_gets @636 + getwc=MSVCRT_getwc @637 + getwchar=MSVCRT_getwchar @638 + gmtime=MSVCRT_gmtime @639 + is_wctype=ntdll.iswctype @640 + isalnum=MSVCRT_isalnum @641 + isalpha=MSVCRT_isalpha @642 + iscntrl=MSVCRT_iscntrl @643 + isdigit=MSVCRT_isdigit @644 + isgraph=MSVCRT_isgraph @645 + isleadbyte=MSVCRT_isleadbyte @646 + islower=MSVCRT_islower @647 + isprint=MSVCRT_isprint @648 + ispunct=MSVCRT_ispunct @649 + isspace=MSVCRT_isspace @650 + isupper=MSVCRT_isupper @651 + iswalnum=MSVCRT_iswalnum @652 + iswalpha=ntdll.iswalpha @653 + iswascii=MSVCRT_iswascii @654 + iswcntrl=MSVCRT_iswcntrl @655 + iswctype=ntdll.iswctype @656 + iswdigit=MSVCRT_iswdigit @657 + iswgraph=MSVCRT_iswgraph @658 + iswlower=MSVCRT_iswlower @659 + iswprint=MSVCRT_iswprint @660 + iswpunct=MSVCRT_iswpunct @661 + iswspace=MSVCRT_iswspace @662 + iswupper=MSVCRT_iswupper @663 + iswxdigit=MSVCRT_iswxdigit @664 + isxdigit=MSVCRT_isxdigit @665 + labs=MSVCRT_labs @666 + ldexp=MSVCRT_ldexp @667 + ldiv=MSVCRT_ldiv @668 + localeconv=MSVCRT_localeconv @669 + localtime=MSVCRT_localtime @670 + log=MSVCRT_log @671 + log10=MSVCRT_log10 @672 + longjmp=MSVCRT_longjmp @673 + malloc=MSVCRT_malloc @674 + mblen=MSVCRT_mblen @675 + mbstowcs=MSVCRT_mbstowcs @676 + mbtowc=MSVCRT_mbtowc @677 + memchr=MSVCRT_memchr @678 + memcmp=MSVCRT_memcmp @679 + memcpy=MSVCRT_memcpy @680 + memmove=MSVCRT_memmove @681 + memset=MSVCRT_memset @682 + mktime=MSVCRT_mktime @683 + modf=MSVCRT_modf @684 + perror=MSVCRT_perror @685 + pow=MSVCRT_pow @686 + printf=MSVCRT_printf @687 + putc=MSVCRT_putc @688 + putchar=MSVCRT_putchar @689 + puts=MSVCRT_puts @690 + putwc=MSVCRT_fputwc @691 + putwchar=MSVCRT__fputwchar @692 + qsort=MSVCRT_qsort @693 + raise=MSVCRT_raise @694 + rand=MSVCRT_rand @695 + realloc=MSVCRT_realloc @696 + remove=MSVCRT_remove @697 + rename=MSVCRT_rename @698 + rewind=MSVCRT_rewind @699 + scanf=MSVCRT_scanf @700 + setbuf=MSVCRT_setbuf @701 + setlocale=MSVCRT_setlocale @702 + setvbuf=MSVCRT_setvbuf @703 + signal=MSVCRT_signal @704 + sin=MSVCRT_sin @705 + sinh=MSVCRT_sinh @706 + sprintf=MSVCRT_sprintf @707 + sqrt=MSVCRT_sqrt @708 + srand=MSVCRT_srand @709 + sscanf=MSVCRT_sscanf @710 + strcat=ntdll.strcat @711 + strchr=MSVCRT_strchr @712 + strcmp=MSVCRT_strcmp @713 + strcoll=MSVCRT_strcoll @714 + strcpy=MSVCRT_strcpy @715 + strcspn=MSVCRT_strcspn @716 + strerror=MSVCRT_strerror @717 + strftime=MSVCRT_strftime @718 + strlen=MSVCRT_strlen @719 + strncat=MSVCRT_strncat @720 + strncmp=MSVCRT_strncmp @721 + strncpy=MSVCRT_strncpy @722 + strpbrk=MSVCRT_strpbrk @723 + strrchr=MSVCRT_strrchr @724 + strspn=ntdll.strspn @725 + strstr=MSVCRT_strstr @726 + strtod=MSVCRT_strtod @727 + strtok=MSVCRT_strtok @728 + strtol=MSVCRT_strtol @729 + strtoul=MSVCRT_strtoul @730 + strxfrm=MSVCRT_strxfrm @731 + swprintf=MSVCRT_swprintf @732 + swscanf=MSVCRT_swscanf @733 + system=MSVCRT_system @734 + tan=MSVCRT_tan @735 + tanh=MSVCRT_tanh @736 + time=MSVCRT_time @737 + tmpfile=MSVCRT_tmpfile @738 + tmpnam=MSVCRT_tmpnam @739 + tolower=MSVCRT_tolower @740 + toupper=MSVCRT_toupper @741 + towlower=MSVCRT_towlower @742 + towupper=MSVCRT_towupper @743 + ungetc=MSVCRT_ungetc @744 + ungetwc=MSVCRT_ungetwc @745 + vfprintf=MSVCRT_vfprintf @746 + vfwprintf=MSVCRT_vfwprintf @747 + vprintf=MSVCRT_vprintf @748 + vsprintf=MSVCRT_vsprintf @749 + vswprintf=MSVCRT_vswprintf @750 + vwprintf=MSVCRT_vwprintf @751 + wcscat=ntdll.wcscat @752 + wcschr=MSVCRT_wcschr @753 + wcscmp=MSVCRT_wcscmp @754 + wcscoll=MSVCRT_wcscoll @755 + wcscpy=ntdll.wcscpy @756 + wcscspn=ntdll.wcscspn @757 + wcsftime=MSVCRT_wcsftime @758 + wcslen=MSVCRT_wcslen @759 + wcsncat=ntdll.wcsncat @760 + wcsncmp=MSVCRT_wcsncmp @761 + wcsncpy=MSVCRT_wcsncpy @762 + wcspbrk=MSVCRT_wcspbrk @763 + wcsrchr=MSVCRT_wcsrchr @764 + wcsspn=ntdll.wcsspn @765 + wcsstr=MSVCRT_wcsstr @766 + wcstod=MSVCRT_wcstod @767 + wcstok=MSVCRT_wcstok @768 + wcstol=MSVCRT_wcstol @769 + wcstombs=MSVCRT_wcstombs @770 + wcstoul=MSVCRT_wcstoul @771 + wcsxfrm=MSVCRT_wcsxfrm @772 + wctomb=MSVCRT_wctomb @773 + wprintf=MSVCRT_wprintf @774 + wscanf=MSVCRT_wscanf @775 diff --git a/lib64/wine/libmsvcr71.def b/lib64/wine/libmsvcr71.def new file mode 100644 index 0000000..d6ae2bc --- /dev/null +++ b/lib64/wine/libmsvcr71.def @@ -0,0 +1,786 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/msvcr71/msvcr71.spec; do not edit! + +LIBRARY msvcr71.dll + +EXPORTS + ??0__non_rtti_object@@QEAA@AEBV0@@Z=MSVCRT___non_rtti_object_copy_ctor @1 + ??0__non_rtti_object@@QEAA@PEBD@Z=MSVCRT___non_rtti_object_ctor @2 + ??0bad_cast@@AEAA@PEBQEBD@Z=MSVCRT_bad_cast_ctor @3 + ??0bad_cast@@QEAA@AEBQEBD@Z=MSVCRT_bad_cast_ctor @4 + ??0bad_cast@@QEAA@AEBV0@@Z=MSVCRT_bad_cast_copy_ctor @5 + ??0bad_cast@@QEAA@PEBD@Z=MSVCRT_bad_cast_ctor_charptr @6 + ??0bad_typeid@@QEAA@AEBV0@@Z=MSVCRT_bad_typeid_copy_ctor @7 + ??0bad_typeid@@QEAA@PEBD@Z=MSVCRT_bad_typeid_ctor @8 + ??0exception@@QEAA@AEBQEBD@Z=MSVCRT_exception_ctor @9 + ??0exception@@QEAA@AEBV0@@Z=MSVCRT_exception_copy_ctor @10 + ??0exception@@QEAA@XZ=MSVCRT_exception_default_ctor @11 + ??1__non_rtti_object@@UEAA@XZ=MSVCRT___non_rtti_object_dtor @12 + ??1bad_cast@@UEAA@XZ=MSVCRT_bad_cast_dtor @13 + ??1bad_typeid@@UEAA@XZ=MSVCRT_bad_typeid_dtor @14 + ??1exception@@UEAA@XZ=MSVCRT_exception_dtor @15 + ??1type_info@@UEAA@XZ=MSVCRT_type_info_dtor @16 + ??2@YAPEAX_K@Z=MSVCRT_operator_new @17 + ??3@YAXPEAX@Z=MSVCRT_operator_delete @18 + ??4__non_rtti_object@@QEAAAEAV0@AEBV0@@Z=MSVCRT___non_rtti_object_opequals @19 + ??4bad_cast@@QEAAAEAV0@AEBV0@@Z=MSVCRT_bad_cast_opequals @20 + ??4bad_typeid@@QEAAAEAV0@AEBV0@@Z=MSVCRT_bad_typeid_opequals @21 + ??4exception@@QEAAAEAV0@AEBV0@@Z=MSVCRT_exception_opequals @22 + ??8type_info@@QEBAHAEBV0@@Z=MSVCRT_type_info_opequals_equals @23 + ??9type_info@@QEBAHAEBV0@@Z=MSVCRT_type_info_opnot_equals @24 + ??_7__non_rtti_object@@6B@=MSVCRT___non_rtti_object_vtable @25 DATA + ??_7bad_cast@@6B@=MSVCRT_bad_cast_vtable @26 DATA + ??_7bad_typeid@@6B@=MSVCRT_bad_typeid_vtable @27 DATA + ??_7exception@@6B@=MSVCRT_exception_vtable @28 DATA + ??_Fbad_cast@@QEAAXXZ=MSVCRT_bad_cast_default_ctor @29 + ??_Fbad_typeid@@QEAAXXZ=MSVCRT_bad_typeid_default_ctor @30 + ??_U@YAPEAX_K@Z=MSVCRT_operator_new @31 + ??_V@YAXPEAX@Z=MSVCRT_operator_delete @32 + __uncaught_exception=MSVCRT___uncaught_exception @33 + ?_query_new_handler@@YAP6AH_K@ZXZ=MSVCRT__query_new_handler @34 + ?_query_new_mode@@YAHXZ=MSVCRT__query_new_mode @35 + ?_set_new_handler@@YAP6AH_K@ZP6AH0@Z@Z=MSVCRT__set_new_handler @36 + ?_set_new_mode@@YAHH@Z=MSVCRT__set_new_mode @37 + ?_set_se_translator@@YAP6AXIPEAU_EXCEPTION_POINTERS@@@ZP6AXI0@Z@Z=MSVCRT__set_se_translator @38 + ?before@type_info@@QEBAHAEBV1@@Z=MSVCRT_type_info_before @39 + ?name@type_info@@QEBAPEBDXZ=MSVCRT_type_info_name @40 + ?raw_name@type_info@@QEBAPEBDXZ=MSVCRT_type_info_raw_name @41 + ?set_new_handler@@YAP6AXXZP6AXXZ@Z=MSVCRT_set_new_handler @42 + ?set_terminate@@YAP6AXXZP6AXXZ@Z=MSVCRT_set_terminate @43 + ?set_unexpected@@YAP6AXXZP6AXXZ@Z=MSVCRT_set_unexpected @44 + ?swprintf@@YAHPAGIPBGZZ=MSVCRT__snwprintf @45 + ?swprintf@@YAHPA_WIPB_WZZ=MSVCRT__snwprintf @46 + ?terminate@@YAXXZ=MSVCRT_terminate @47 + ?unexpected@@YAXXZ=MSVCRT_unexpected @48 + ?vswprintf@@YAHPAGIPBGPAD@Z=MSVCRT_vsnwprintf @49 + ?vswprintf@@YAHPA_WIPB_WPAD@Z=MSVCRT_vsnwprintf @50 + ?what@exception@@UEBAPEBDXZ=MSVCRT_what_exception @51 + $I10_OUTPUT=MSVCRT_I10_OUTPUT @52 + _CRT_RTC_INIT @53 + _CxxThrowException @54 + _Getdays @55 + _Getmonths @56 + _Gettnames @57 + _HUGE=MSVCRT__HUGE @58 DATA + _Strftime @59 + _XcptFilter @60 + __CppXcptFilter @61 + __CxxCallUnwindDtor @62 PRIVATE + __CxxCallUnwindVecDtor @63 PRIVATE + __CxxDetectRethrow @64 + __CxxExceptionFilter @65 + __CxxFrameHandler @66 + __CxxQueryExceptionSize @67 + __CxxRegisterExceptionObject @68 + __CxxUnregisterExceptionObject @69 + __DestructExceptionObject @70 + __RTCastToVoid=MSVCRT___RTCastToVoid @71 + __RTDynamicCast=MSVCRT___RTDynamicCast @72 + __RTtypeid=MSVCRT___RTtypeid @73 + __STRINGTOLD @74 + ___lc_codepage_func @75 + ___lc_collate_cp_func @76 + ___lc_handle_func @77 + ___mb_cur_max_func=MSVCRT____mb_cur_max_func @78 + ___setlc_active_func=MSVCRT____setlc_active_func @79 + ___unguarded_readlc_active_add_func=MSVCRT____unguarded_readlc_active_add_func @80 + __argc=MSVCRT___argc @81 DATA + __argv=MSVCRT___argv @82 DATA + __badioinfo=MSVCRT___badioinfo @83 DATA + __buffer_overrun @84 PRIVATE + __crtCompareStringA @85 + __crtCompareStringW @86 + __crtGetLocaleInfoW @87 + __crtGetStringTypeW @88 + __crtLCMapStringA @89 + __crtLCMapStringW @90 + __dllonexit @91 + __doserrno=MSVCRT___doserrno @92 + __fpecode @93 + __getmainargs @94 + __initenv=MSVCRT___initenv @95 DATA + __iob_func=__p__iob @96 + __isascii=MSVCRT___isascii @97 + __iscsym=MSVCRT___iscsym @98 + __iscsymf=MSVCRT___iscsymf @99 + __lc_codepage=MSVCRT___lc_codepage @100 DATA + __lc_collate_cp=MSVCRT___lc_collate_cp @101 DATA + __lc_handle=MSVCRT___lc_handle @102 DATA + __lconv_init @103 + __mb_cur_max=MSVCRT___mb_cur_max @104 DATA + __p___argc=MSVCRT___p___argc @105 + __p___argv=MSVCRT___p___argv @106 + __p___initenv @107 + __p___mb_cur_max @108 + __p___wargv=MSVCRT___p___wargv @109 + __p___winitenv @110 + __p__acmdln=MSVCRT___p__acmdln @111 + __p__amblksiz @112 + __p__commode @113 + __p__daylight=MSVCRT___p__daylight @114 + __p__dstbias=MSVCRT___p__dstbias @115 + __p__environ=MSVCRT___p__environ @116 + __p__fileinfo @117 PRIVATE + __p__fmode=MSVCRT___p__fmode @118 + __p__iob @119 + __p__mbcasemap @120 PRIVATE + __p__mbctype @121 + __p__osver @122 + __p__pctype=MSVCRT___p__pctype @123 + __p__pgmptr=MSVCRT___p__pgmptr @124 + __p__pwctype @125 PRIVATE + __p__timezone=MSVCRT___p__timezone @126 + __p__tzname @127 + __p__wcmdln=MSVCRT___p__wcmdln @128 + __p__wenviron=MSVCRT___p__wenviron @129 + __p__winmajor @130 + __p__winminor @131 + __p__winver @132 + __p__wpgmptr=MSVCRT___p__wpgmptr @133 + __pctype_func=MSVCRT___pctype_func @134 + __pioinfo=MSVCRT___pioinfo @135 DATA + __pwctype_func @136 PRIVATE + __pxcptinfoptrs=MSVCRT___pxcptinfoptrs @137 + __security_error_handler @138 + __set_app_type=MSVCRT___set_app_type @139 + __set_buffer_overrun_handler @140 PRIVATE + __setlc_active=MSVCRT___setlc_active @141 DATA + __setusermatherr=MSVCRT___setusermatherr @142 + __threadhandle=kernel32.GetCurrentThread @143 + __threadid=kernel32.GetCurrentThreadId @144 + __toascii=MSVCRT___toascii @145 + __unDName @146 + __unDNameEx @147 + __unguarded_readlc_active=MSVCRT___unguarded_readlc_active @148 DATA + __wargv=MSVCRT___wargv @149 DATA + __wcserror=MSVCRT___wcserror @150 + __wgetmainargs @151 + __winitenv=MSVCRT___winitenv @152 DATA + _abnormal_termination @153 + _access=MSVCRT__access @154 + _acmdln=MSVCRT__acmdln @155 DATA + _aexit_rtn @156 DATA + _aligned_free @157 + _aligned_malloc @158 + _aligned_offset_malloc @159 + _aligned_offset_realloc @160 + _aligned_realloc @161 + _amsg_exit @162 + _assert=MSVCRT__assert @163 + _atodbl=MSVCRT__atodbl @164 + _atoi64=ntdll._atoi64 @165 + _atoldbl=MSVCRT__atoldbl @166 + _beep=MSVCRT__beep @167 + _beginthread @168 + _beginthreadex @169 + _c_exit=MSVCRT__c_exit @170 + _cabs=MSVCRT__cabs @171 + _callnewh @172 + _cexit=MSVCRT__cexit @173 + _cgets @174 + _cgetws @175 PRIVATE + _chdir=MSVCRT__chdir @176 + _chdrive=MSVCRT__chdrive @177 + _chgsign=MSVCRT__chgsign @178 + _chmod=MSVCRT__chmod @179 + _chsize=MSVCRT__chsize @180 + _clearfp @181 + _close=MSVCRT__close @182 + _commit=MSVCRT__commit @183 + _commode=MSVCRT__commode @184 DATA + _control87 @185 + _controlfp @186 + _copysign=MSVCRT__copysign @187 + _cprintf @188 + _cputs @189 + _cputws @190 + _creat=MSVCRT__creat @191 + _cscanf @192 + _ctime64=MSVCRT__ctime64 @193 + _cwait @194 + _cwprintf @195 + _cwscanf @196 + _daylight=MSVCRT___daylight @197 DATA + _dstbias=MSVCRT__dstbias @198 DATA + _dup=MSVCRT__dup @199 + _dup2=MSVCRT__dup2 @200 + _ecvt=MSVCRT__ecvt @201 + _endthread @202 + _endthreadex @203 + _environ=MSVCRT__environ @204 DATA + _eof=MSVCRT__eof @205 + _errno=MSVCRT__errno @206 + _execl @207 + _execle @208 + _execlp @209 + _execlpe @210 + _execv @211 + _execve=MSVCRT__execve @212 + _execvp @213 + _execvpe @214 + _exit=MSVCRT__exit @215 + _expand @216 + _fcloseall=MSVCRT__fcloseall @217 + _fcvt=MSVCRT__fcvt @218 + _fdopen=MSVCRT__fdopen @219 + _fgetchar=MSVCRT__fgetchar @220 + _fgetwchar=MSVCRT__fgetwchar @221 + _filbuf=MSVCRT__filbuf @222 + _filelength=MSVCRT__filelength @223 + _filelengthi64=MSVCRT__filelengthi64 @224 + _fileno=MSVCRT__fileno @225 + _findclose=MSVCRT__findclose @226 + _findfirst=MSVCRT__findfirst @227 + _findfirst64=MSVCRT__findfirst64 @228 + _findfirsti64=MSVCRT__findfirsti64 @229 + _findnext=MSVCRT__findnext @230 + _findnext64=MSVCRT__findnext64 @231 + _findnexti64=MSVCRT__findnexti64 @232 + _finite=MSVCRT__finite @233 + _flsbuf=MSVCRT__flsbuf @234 + _flushall=MSVCRT__flushall @235 + _fmode=MSVCRT__fmode @236 DATA + _fpclass=MSVCRT__fpclass @237 + _fpieee_flt @238 + _fpreset @239 + _fputchar=MSVCRT__fputchar @240 + _fputwchar=MSVCRT__fputwchar @241 + _fsopen=MSVCRT__fsopen @242 + _fstat=MSVCRT__fstat @243 + _fstat64=MSVCRT__fstat64 @244 + _fstati64=MSVCRT__fstati64 @245 + _ftime=MSVCRT__ftime @246 + _ftime64=MSVCRT__ftime64 @247 + _fullpath=MSVCRT__fullpath @248 + _futime @249 + _futime64 @250 + _gcvt=MSVCRT__gcvt @251 + _get_heap_handle @252 + _get_osfhandle=MSVCRT__get_osfhandle @253 + _get_sbh_threshold @254 + _getch @255 + _getche @256 + _getcwd=MSVCRT__getcwd @257 + _getdcwd=MSVCRT__getdcwd @258 + _getdiskfree=MSVCRT__getdiskfree @259 + _getdllprocaddr @260 + _getdrive=MSVCRT__getdrive @261 + _getdrives=kernel32.GetLogicalDrives @262 + _getmaxstdio=MSVCRT__getmaxstdio @263 + _getmbcp @264 + _getpid @265 + _getsystime @266 PRIVATE + _getw=MSVCRT__getw @267 + _getwch @268 + _getwche @269 + _getws=MSVCRT__getws @270 + _gmtime64=MSVCRT__gmtime64 @271 + _heapadd @272 + _heapchk @273 + _heapmin @274 + _heapset @275 + _heapused @276 PRIVATE + _heapwalk @277 + _hypot @278 + _i64toa=ntdll._i64toa @279 + _i64tow=ntdll._i64tow @280 + _initterm @281 + _iob=MSVCRT__iob @282 DATA + _isatty=MSVCRT__isatty @283 + _isctype=MSVCRT__isctype @284 + _ismbbalnum @285 PRIVATE + _ismbbalpha @286 PRIVATE + _ismbbgraph @287 PRIVATE + _ismbbkalnum @288 PRIVATE + _ismbbkana @289 + _ismbbkprint @290 PRIVATE + _ismbbkpunct @291 PRIVATE + _ismbblead @292 + _ismbbprint @293 PRIVATE + _ismbbpunct @294 PRIVATE + _ismbbtrail @295 + _ismbcalnum @296 + _ismbcalpha @297 + _ismbcdigit @298 + _ismbcgraph @299 + _ismbchira @300 + _ismbckata @301 + _ismbcl0 @302 + _ismbcl1 @303 + _ismbcl2 @304 + _ismbclegal @305 + _ismbclower @306 + _ismbcprint @307 + _ismbcpunct @308 + _ismbcspace @309 + _ismbcsymbol @310 + _ismbcupper @311 + _ismbslead @312 + _ismbstrail @313 + _isnan=MSVCRT__isnan @314 + _itoa=MSVCRT__itoa @315 + _itow=ntdll._itow @316 + _j0=MSVCRT__j0 @317 + _j1=MSVCRT__j1 @318 + _jn=MSVCRT__jn @319 + _kbhit @320 + _lfind @321 + _loaddll @322 + _localtime64=MSVCRT__localtime64 @323 + _lock @324 + _locking=MSVCRT__locking @325 + _logb=MSVCRT__logb @326 + _lrotl=MSVCRT__lrotl @327 + _lrotr=MSVCRT__lrotr @328 + _lsearch @329 + _lseek=MSVCRT__lseek @330 + _lseeki64=MSVCRT__lseeki64 @331 + _ltoa=ntdll._ltoa @332 + _ltow=ntdll._ltow @333 + _makepath=MSVCRT__makepath @334 + _mbbtombc @335 + _mbbtype @336 + _mbccpy @337 + _mbcjistojms @338 + _mbcjmstojis @339 + _mbclen @340 + _mbctohira @341 + _mbctokata @342 + _mbctolower @343 + _mbctombb @344 + _mbctoupper @345 + _mbctype=MSVCRT_mbctype @346 DATA + _mbsbtype @347 + _mbscat @348 + _mbschr @349 + _mbscmp @350 + _mbscoll @351 + _mbscpy @352 + _mbscspn @353 + _mbsdec @354 + _mbsdup=MSVCRT__strdup @355 + _mbsicmp @356 + _mbsicoll @357 + _mbsinc @358 + _mbslen @359 + _mbslwr @360 + _mbsnbcat @361 + _mbsnbcmp @362 + _mbsnbcnt @363 + _mbsnbcoll @364 + _mbsnbcpy @365 + _mbsnbicmp @366 + _mbsnbicoll @367 + _mbsnbset @368 + _mbsncat @369 + _mbsnccnt @370 + _mbsncmp @371 + _mbsncoll @372 PRIVATE + _mbsncpy @373 + _mbsnextc @374 + _mbsnicmp @375 + _mbsnicoll @376 PRIVATE + _mbsninc @377 + _mbsnset @378 + _mbspbrk @379 + _mbsrchr @380 + _mbsrev @381 + _mbsset @382 + _mbsspn @383 + _mbsspnp @384 + _mbsstr @385 + _mbstok @386 + _mbstrlen @387 + _mbsupr @388 + _memccpy=ntdll._memccpy @389 + _memicmp=MSVCRT__memicmp @390 + _mkdir=MSVCRT__mkdir @391 + _mktemp=MSVCRT__mktemp @392 + _mktime64=MSVCRT__mktime64 @393 + _msize @394 + _nextafter=MSVCRT__nextafter @395 + _onexit=MSVCRT__onexit @396 + _open=MSVCRT__open @397 + _open_osfhandle=MSVCRT__open_osfhandle @398 + _osplatform=MSVCRT__osplatform @399 DATA + _osver=MSVCRT__osver @400 DATA + _pclose=MSVCRT__pclose @401 + _pctype=MSVCRT__pctype @402 DATA + _pgmptr=MSVCRT__pgmptr @403 DATA + _pipe=MSVCRT__pipe @404 + _popen=MSVCRT__popen @405 + _purecall @406 + _putch @407 + _putenv @408 + _putw=MSVCRT__putw @409 + _putwch @410 + _putws=MSVCRT__putws @411 + _read=MSVCRT__read @412 + _resetstkoflw=MSVCRT__resetstkoflw @413 + _rmdir=MSVCRT__rmdir @414 + _rmtmp=MSVCRT__rmtmp @415 + _rotl @416 + _rotr @417 + _scalb=MSVCRT__scalb @418 + _scprintf=MSVCRT__scprintf @419 + _scwprintf=MSVCRT__scwprintf @420 + _searchenv=MSVCRT__searchenv @421 + _set_SSE2_enable=MSVCRT__set_SSE2_enable @422 + _set_error_mode @423 + _set_purecall_handler @424 + _set_sbh_threshold @425 + _set_security_error_handler @426 + _seterrormode @427 + _setjmp=MSVCRT__setjmp @428 + _setmaxstdio=MSVCRT__setmaxstdio @429 + _setmbcp @430 + _setmode=MSVCRT__setmode @431 + _setsystime @432 PRIVATE + _sleep=MSVCRT__sleep @433 + _snprintf=MSVCRT__snprintf @434 + _snscanf=MSVCRT__snscanf @435 + _snwprintf=MSVCRT__snwprintf @436 + _snwscanf=MSVCRT__snwscanf @437 + _sopen=MSVCRT__sopen @438 + _spawnl=MSVCRT__spawnl @439 + _spawnle=MSVCRT__spawnle @440 + _spawnlp=MSVCRT__spawnlp @441 + _spawnlpe=MSVCRT__spawnlpe @442 + _spawnv=MSVCRT__spawnv @443 + _spawnve=MSVCRT__spawnve @444 + _spawnvp=MSVCRT__spawnvp @445 + _spawnvpe=MSVCRT__spawnvpe @446 + _splitpath=MSVCRT__splitpath @447 + _stat=MSVCRT_stat @448 + _stat64=MSVCRT_stat64 @449 + _stati64=MSVCRT_stati64 @450 + _statusfp @451 + _strcmpi=MSVCRT__stricmp @452 + _strdate=MSVCRT__strdate @453 + _strdup=MSVCRT__strdup @454 + _strerror=MSVCRT__strerror @455 + _stricmp=MSVCRT__stricmp @456 + _stricoll=MSVCRT__stricoll @457 + _strlwr=MSVCRT__strlwr @458 + _strncoll=MSVCRT__strncoll @459 + _strnicmp=MSVCRT__strnicmp @460 + _strnicoll=MSVCRT__strnicoll @461 + _strnset=MSVCRT__strnset @462 + _strrev=MSVCRT__strrev @463 + _strset @464 + _strtime=MSVCRT__strtime @465 + _strtoi64=MSVCRT_strtoi64 @466 + _strtoui64=MSVCRT_strtoui64 @467 + _strupr=MSVCRT__strupr @468 + _swab=MSVCRT__swab @469 + _sys_errlist=MSVCRT__sys_errlist @470 DATA + _sys_nerr=MSVCRT__sys_nerr @471 DATA + _tell=MSVCRT__tell @472 + _telli64 @473 + _tempnam=MSVCRT__tempnam @474 + _time64=MSVCRT__time64 @475 + _timezone=MSVCRT___timezone @476 DATA + _tolower=MSVCRT__tolower @477 + _toupper=MSVCRT__toupper @478 + _tzname=MSVCRT__tzname @479 DATA + _tzset=MSVCRT__tzset @480 + _ui64toa=ntdll._ui64toa @481 + _ui64tow=ntdll._ui64tow @482 + _ultoa=ntdll._ultoa @483 + _ultow=ntdll._ultow @484 + _umask=MSVCRT__umask @485 + _ungetch @486 + _ungetwch @487 + _unlink=MSVCRT__unlink @488 + _unloaddll @489 + _unlock @490 + _utime @491 + _utime64 @492 + _vscprintf=MSVCRT__vscprintf @493 + _vscwprintf=MSVCRT__vscwprintf @494 + _vsnprintf=MSVCRT_vsnprintf @495 + _vsnwprintf=MSVCRT_vsnwprintf @496 + _waccess=MSVCRT__waccess @497 + _wasctime=MSVCRT__wasctime @498 + _wchdir=MSVCRT__wchdir @499 + _wchmod=MSVCRT__wchmod @500 + _wcmdln=MSVCRT__wcmdln @501 DATA + _wcreat=MSVCRT__wcreat @502 + _wcsdup=MSVCRT__wcsdup @503 + _wcserror=MSVCRT__wcserror @504 + _wcsicmp=MSVCRT__wcsicmp @505 + _wcsicoll=MSVCRT__wcsicoll @506 + _wcslwr=MSVCRT__wcslwr @507 + _wcsncoll=MSVCRT__wcsncoll @508 + _wcsnicmp=MSVCRT__wcsnicmp @509 + _wcsnicoll=MSVCRT__wcsnicoll @510 + _wcsnset=MSVCRT__wcsnset @511 + _wcsrev=MSVCRT__wcsrev @512 + _wcsset=MSVCRT__wcsset @513 + _wcstoi64=MSVCRT__wcstoi64 @514 + _wcstoui64=MSVCRT__wcstoui64 @515 + _wcsupr=MSVCRT__wcsupr @516 + _wctime=MSVCRT__wctime @517 + _wctime64=MSVCRT__wctime64 @518 + _wenviron=MSVCRT__wenviron @519 DATA + _wexecl @520 + _wexecle @521 + _wexeclp @522 + _wexeclpe @523 + _wexecv @524 + _wexecve @525 + _wexecvp @526 + _wexecvpe @527 + _wfdopen=MSVCRT__wfdopen @528 + _wfindfirst=MSVCRT__wfindfirst @529 + _wfindfirst64=MSVCRT__wfindfirst64 @530 + _wfindfirsti64=MSVCRT__wfindfirsti64 @531 + _wfindnext=MSVCRT__wfindnext @532 + _wfindnext64=MSVCRT__wfindnext64 @533 + _wfindnexti64=MSVCRT__wfindnexti64 @534 + _wfopen=MSVCRT__wfopen @535 + _wfreopen=MSVCRT__wfreopen @536 + _wfsopen=MSVCRT__wfsopen @537 + _wfullpath=MSVCRT__wfullpath @538 + _wgetcwd=MSVCRT__wgetcwd @539 + _wgetdcwd=MSVCRT__wgetdcwd @540 + _wgetenv=MSVCRT__wgetenv @541 + _winmajor=MSVCRT__winmajor @542 DATA + _winminor=MSVCRT__winminor @543 DATA + _winver=MSVCRT__winver @544 DATA + _wmakepath=MSVCRT__wmakepath @545 + _wmkdir=MSVCRT__wmkdir @546 + _wmktemp=MSVCRT__wmktemp @547 + _wopen=MSVCRT__wopen @548 + _wperror=MSVCRT__wperror @549 + _wpgmptr=MSVCRT__wpgmptr @550 DATA + _wpopen=MSVCRT__wpopen @551 + _wputenv @552 + _wremove=MSVCRT__wremove @553 + _wrename=MSVCRT__wrename @554 + _write=MSVCRT__write @555 + _wrmdir=MSVCRT__wrmdir @556 + _wsearchenv=MSVCRT__wsearchenv @557 + _wsetlocale=MSVCRT__wsetlocale @558 + _wsopen=MSVCRT__wsopen @559 + _wspawnl=MSVCRT__wspawnl @560 + _wspawnle=MSVCRT__wspawnle @561 + _wspawnlp=MSVCRT__wspawnlp @562 + _wspawnlpe=MSVCRT__wspawnlpe @563 + _wspawnv=MSVCRT__wspawnv @564 + _wspawnve=MSVCRT__wspawnve @565 + _wspawnvp=MSVCRT__wspawnvp @566 + _wspawnvpe=MSVCRT__wspawnvpe @567 + _wsplitpath=MSVCRT__wsplitpath @568 + _wstat=MSVCRT__wstat @569 + _wstat64=MSVCRT__wstat64 @570 + _wstati64=MSVCRT__wstati64 @571 + _wstrdate=MSVCRT__wstrdate @572 + _wstrtime=MSVCRT__wstrtime @573 + _wsystem @574 + _wtempnam=MSVCRT__wtempnam @575 + _wtmpnam=MSVCRT__wtmpnam @576 + _wtof=MSVCRT__wtof @577 + _wtoi=MSVCRT__wtoi @578 + _wtoi64=MSVCRT__wtoi64 @579 + _wtol=MSVCRT__wtol @580 + _wunlink=MSVCRT__wunlink @581 + _wutime @582 + _wutime64 @583 + _y0=MSVCRT__y0 @584 + _y1=MSVCRT__y1 @585 + _yn=MSVCRT__yn @586 + abort=MSVCRT_abort @587 + abs=MSVCRT_abs @588 + acos=MSVCRT_acos @589 + asctime=MSVCRT_asctime @590 + asin=MSVCRT_asin @591 + atan=MSVCRT_atan @592 + atan2=MSVCRT_atan2 @593 + atexit=MSVCRT_atexit @594 PRIVATE + atof=MSVCRT_atof @595 + atoi=MSVCRT_atoi @596 + atol=MSVCRT_atol @597 + bsearch=MSVCRT_bsearch @598 + calloc=MSVCRT_calloc @599 + ceil=MSVCRT_ceil @600 + clearerr=MSVCRT_clearerr @601 + clock=MSVCRT_clock @602 + cos=MSVCRT_cos @603 + cosh=MSVCRT_cosh @604 + ctime=MSVCRT_ctime @605 + difftime=MSVCRT_difftime @606 + div=MSVCRT_div @607 + exit=MSVCRT_exit @608 + exp=MSVCRT_exp @609 + fabs=MSVCRT_fabs @610 + fclose=MSVCRT_fclose @611 + feof=MSVCRT_feof @612 + ferror=MSVCRT_ferror @613 + fflush=MSVCRT_fflush @614 + fgetc=MSVCRT_fgetc @615 + fgetpos=MSVCRT_fgetpos @616 + fgets=MSVCRT_fgets @617 + fgetwc=MSVCRT_fgetwc @618 + fgetws=MSVCRT_fgetws @619 + floor=MSVCRT_floor @620 + fmod=MSVCRT_fmod @621 + fopen=MSVCRT_fopen @622 + fprintf=MSVCRT_fprintf @623 + fputc=MSVCRT_fputc @624 + fputs=MSVCRT_fputs @625 + fputwc=MSVCRT_fputwc @626 + fputws=MSVCRT_fputws @627 + fread=MSVCRT_fread @628 + free=MSVCRT_free @629 + freopen=MSVCRT_freopen @630 + frexp=MSVCRT_frexp @631 + fscanf=MSVCRT_fscanf @632 + fseek=MSVCRT_fseek @633 + fsetpos=MSVCRT_fsetpos @634 + ftell=MSVCRT_ftell @635 + fwprintf=MSVCRT_fwprintf @636 + fwrite=MSVCRT_fwrite @637 + fwscanf=MSVCRT_fwscanf @638 + getc=MSVCRT_getc @639 + getchar=MSVCRT_getchar @640 + getenv=MSVCRT_getenv @641 + gets=MSVCRT_gets @642 + getwc=MSVCRT_getwc @643 + getwchar=MSVCRT_getwchar @644 + gmtime=MSVCRT_gmtime @645 + is_wctype=ntdll.iswctype @646 + isalnum=MSVCRT_isalnum @647 + isalpha=MSVCRT_isalpha @648 + iscntrl=MSVCRT_iscntrl @649 + isdigit=MSVCRT_isdigit @650 + isgraph=MSVCRT_isgraph @651 + isleadbyte=MSVCRT_isleadbyte @652 + islower=MSVCRT_islower @653 + isprint=MSVCRT_isprint @654 + ispunct=MSVCRT_ispunct @655 + isspace=MSVCRT_isspace @656 + isupper=MSVCRT_isupper @657 + iswalnum=MSVCRT_iswalnum @658 + iswalpha=ntdll.iswalpha @659 + iswascii=MSVCRT_iswascii @660 + iswcntrl=MSVCRT_iswcntrl @661 + iswctype=ntdll.iswctype @662 + iswdigit=MSVCRT_iswdigit @663 + iswgraph=MSVCRT_iswgraph @664 + iswlower=MSVCRT_iswlower @665 + iswprint=MSVCRT_iswprint @666 + iswpunct=MSVCRT_iswpunct @667 + iswspace=MSVCRT_iswspace @668 + iswupper=MSVCRT_iswupper @669 + iswxdigit=MSVCRT_iswxdigit @670 + isxdigit=MSVCRT_isxdigit @671 + labs=MSVCRT_labs @672 + ldexp=MSVCRT_ldexp @673 + ldiv=MSVCRT_ldiv @674 + localeconv=MSVCRT_localeconv @675 + localtime=MSVCRT_localtime @676 + log=MSVCRT_log @677 + log10=MSVCRT_log10 @678 + longjmp=MSVCRT_longjmp @679 + malloc=MSVCRT_malloc @680 + mblen=MSVCRT_mblen @681 + mbstowcs=MSVCRT_mbstowcs @682 + mbtowc=MSVCRT_mbtowc @683 + memchr=MSVCRT_memchr @684 + memcmp=MSVCRT_memcmp @685 + memcpy=MSVCRT_memcpy @686 + memmove=MSVCRT_memmove @687 + memset=MSVCRT_memset @688 + mktime=MSVCRT_mktime @689 + modf=MSVCRT_modf @690 + perror=MSVCRT_perror @691 + pow=MSVCRT_pow @692 + printf=MSVCRT_printf @693 + putc=MSVCRT_putc @694 + putchar=MSVCRT_putchar @695 + puts=MSVCRT_puts @696 + putwc=MSVCRT_fputwc @697 + putwchar=MSVCRT__fputwchar @698 + qsort=MSVCRT_qsort @699 + raise=MSVCRT_raise @700 + rand=MSVCRT_rand @701 + realloc=MSVCRT_realloc @702 + remove=MSVCRT_remove @703 + rename=MSVCRT_rename @704 + rewind=MSVCRT_rewind @705 + scanf=MSVCRT_scanf @706 + setbuf=MSVCRT_setbuf @707 + setlocale=MSVCRT_setlocale @708 + setvbuf=MSVCRT_setvbuf @709 + signal=MSVCRT_signal @710 + sin=MSVCRT_sin @711 + sinh=MSVCRT_sinh @712 + sprintf=MSVCRT_sprintf @713 + sqrt=MSVCRT_sqrt @714 + srand=MSVCRT_srand @715 + sscanf=MSVCRT_sscanf @716 + strcat=ntdll.strcat @717 + strchr=MSVCRT_strchr @718 + strcmp=MSVCRT_strcmp @719 + strcoll=MSVCRT_strcoll @720 + strcpy=MSVCRT_strcpy @721 + strcspn=MSVCRT_strcspn @722 + strerror=MSVCRT_strerror @723 + strftime=MSVCRT_strftime @724 + strlen=MSVCRT_strlen @725 + strncat=MSVCRT_strncat @726 + strncmp=MSVCRT_strncmp @727 + strncpy=MSVCRT_strncpy @728 + strpbrk=MSVCRT_strpbrk @729 + strrchr=MSVCRT_strrchr @730 + strspn=ntdll.strspn @731 + strstr=MSVCRT_strstr @732 + strtod=MSVCRT_strtod @733 + strtok=MSVCRT_strtok @734 + strtol=MSVCRT_strtol @735 + strtoul=MSVCRT_strtoul @736 + strxfrm=MSVCRT_strxfrm @737 + swprintf=MSVCRT_swprintf @738 + swscanf=MSVCRT_swscanf @739 + system=MSVCRT_system @740 + tan=MSVCRT_tan @741 + tanh=MSVCRT_tanh @742 + time=MSVCRT_time @743 + tmpfile=MSVCRT_tmpfile @744 + tmpnam=MSVCRT_tmpnam @745 + tolower=MSVCRT_tolower @746 + toupper=MSVCRT_toupper @747 + towlower=MSVCRT_towlower @748 + towupper=MSVCRT_towupper @749 + ungetc=MSVCRT_ungetc @750 + ungetwc=MSVCRT_ungetwc @751 + vfprintf=MSVCRT_vfprintf @752 + vfwprintf=MSVCRT_vfwprintf @753 + vprintf=MSVCRT_vprintf @754 + vsprintf=MSVCRT_vsprintf @755 + vswprintf=MSVCRT_vswprintf @756 + vwprintf=MSVCRT_vwprintf @757 + wcscat=ntdll.wcscat @758 + wcschr=MSVCRT_wcschr @759 + wcscmp=MSVCRT_wcscmp @760 + wcscoll=MSVCRT_wcscoll @761 + wcscpy=ntdll.wcscpy @762 + wcscspn=ntdll.wcscspn @763 + wcsftime=MSVCRT_wcsftime @764 + wcslen=MSVCRT_wcslen @765 + wcsncat=ntdll.wcsncat @766 + wcsncmp=MSVCRT_wcsncmp @767 + wcsncpy=MSVCRT_wcsncpy @768 + wcspbrk=MSVCRT_wcspbrk @769 + wcsrchr=MSVCRT_wcsrchr @770 + wcsspn=ntdll.wcsspn @771 + wcsstr=MSVCRT_wcsstr @772 + wcstod=MSVCRT_wcstod @773 + wcstok=MSVCRT_wcstok @774 + wcstol=MSVCRT_wcstol @775 + wcstombs=MSVCRT_wcstombs @776 + wcstoul=MSVCRT_wcstoul @777 + wcsxfrm=MSVCRT_wcsxfrm @778 + wctomb=MSVCRT_wctomb @779 + wprintf=MSVCRT_wprintf @780 + wscanf=MSVCRT_wscanf @781 diff --git a/lib64/wine/libmsvcr80.def b/lib64/wine/libmsvcr80.def new file mode 100644 index 0000000..cf1c5ea --- /dev/null +++ b/lib64/wine/libmsvcr80.def @@ -0,0 +1,1430 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/msvcr80/msvcr80.spec; do not edit! + +LIBRARY msvcr80.dll + +EXPORTS + ??0__non_rtti_object@std@@QEAA@AEBV01@@Z=MSVCRT___non_rtti_object_copy_ctor @1 + ??0__non_rtti_object@std@@QEAA@PEBD@Z=MSVCRT___non_rtti_object_ctor @2 + ??0bad_cast@std@@AEAA@PEBQEBD@Z=MSVCRT_bad_cast_ctor @3 + ??0bad_cast@std@@QEAA@AEBV01@@Z=MSVCRT_bad_cast_copy_ctor @4 + ??0bad_cast@std@@QEAA@PEBD@Z=MSVCRT_bad_cast_ctor_charptr @5 + ??0bad_typeid@std@@QEAA@AEBV01@@Z=MSVCRT_bad_typeid_copy_ctor @6 + ??0bad_typeid@std@@QEAA@PEBD@Z=MSVCRT_bad_typeid_ctor @7 + ??0exception@std@@QEAA@AEBQEBD@Z=MSVCRT_exception_ctor @8 + ??0exception@std@@QEAA@AEBQEBDH@Z=MSVCRT_exception_ctor_noalloc @9 + ??0exception@std@@QEAA@AEBV01@@Z=MSVCRT_exception_copy_ctor @10 + ??0exception@std@@QEAA@XZ=MSVCRT_exception_default_ctor @11 + ??1__non_rtti_object@std@@UEAA@XZ=MSVCRT___non_rtti_object_dtor @12 + ??1bad_cast@std@@UEAA@XZ=MSVCRT_bad_cast_dtor @13 + ??1bad_typeid@std@@UEAA@XZ=MSVCRT_bad_typeid_dtor @14 + ??1exception@std@@UEAA@XZ=MSVCRT_exception_dtor @15 + ??1type_info@@UEAA@XZ=MSVCRT_type_info_dtor @16 + ??2@YAPEAX_K@Z=MSVCRT_operator_new @17 + ??2@YAPEAX_KHPEBDH@Z=MSVCRT_operator_new_dbg @18 + ??3@YAXPEAX@Z=MSVCRT_operator_delete @19 + ??4__non_rtti_object@std@@QEAAAEAV01@AEBV01@@Z=MSVCRT___non_rtti_object_opequals @20 + ??4bad_cast@std@@QEAAAEAV01@AEBV01@@Z=MSVCRT_bad_cast_opequals @21 + ??4bad_typeid@std@@QEAAAEAV01@AEBV01@@Z=MSVCRT_bad_typeid_opequals @22 + ??4exception@std@@QEAAAEAV01@AEBV01@@Z=MSVCRT_exception_opequals @23 + ??8type_info@@QEBA_NAEBV0@@Z=MSVCRT_type_info_opequals_equals @24 + ??9type_info@@QEBA_NAEBV0@@Z=MSVCRT_type_info_opnot_equals @25 + ??_7__non_rtti_object@std@@6B@=MSVCRT___non_rtti_object_vtable @26 DATA + ??_7bad_cast@std@@6B@=MSVCRT_bad_cast_vtable @27 DATA + ??_7bad_typeid@std@@6B@=MSVCRT_bad_typeid_vtable @28 DATA + ??_7exception@@6B@=MSVCRT_exception_old_vtable @29 DATA + ??_7exception@std@@6B@=MSVCRT_exception_vtable @30 DATA + ??_Fbad_cast@std@@QEAAXXZ=MSVCRT_bad_cast_default_ctor @31 + ??_Fbad_typeid@std@@QEAAXXZ=MSVCRT_bad_typeid_default_ctor @32 + ??_U@YAPEAX_K@Z=MSVCRT_operator_new @33 + ??_U@YAPEAX_KHPEBDH@Z=MSVCRT_operator_new_dbg @34 + ??_V@YAXPEAX@Z=MSVCRT_operator_delete @35 + ?_Name_base@type_info@@CAPEBDPEBV1@PEAU__type_info_node@@@Z @36 PRIVATE + ?_Name_base_internal@type_info@@CAPEBDPEBV1@PEAU__type_info_node@@@Z @37 PRIVATE + ?_Type_info_dtor@type_info@@CAXPEAV1@@Z @38 PRIVATE + ?_Type_info_dtor_internal@type_info@@CAXPEAV1@@Z @39 PRIVATE + ?_ValidateExecute@@YAHP6A_JXZ@Z @40 PRIVATE + ?_ValidateRead@@YAHPEBXI@Z @41 PRIVATE + ?_ValidateWrite@@YAHPEAXI@Z @42 PRIVATE + __uncaught_exception=MSVCRT___uncaught_exception @43 + ?_inconsistency@@YAXXZ @44 PRIVATE + ?_invalid_parameter@@YAXPEBG00I_K@Z=MSVCRT__invalid_parameter @45 + ?_is_exception_typeof@@YAHAEBVtype_info@@PEAU_EXCEPTION_POINTERS@@@Z=_is_exception_typeof @46 + ?_name_internal_method@type_info@@QEBAPEBDPEAU__type_info_node@@@Z=type_info_name_internal_method @47 + ?_open@@YAHPEBDHH@Z=MSVCRT__open @48 + ?_query_new_handler@@YAP6AH_K@ZXZ=MSVCRT__query_new_handler @49 + ?_query_new_mode@@YAHXZ=MSVCRT__query_new_mode @50 + ?_set_new_handler@@YAP6AH_K@ZH@Z @51 PRIVATE + ?_set_new_handler@@YAP6AH_K@ZP6AH0@Z@Z=MSVCRT__set_new_handler @52 + ?_set_new_mode@@YAHH@Z=MSVCRT__set_new_mode @53 + ?_set_se_translator@@YAP6AXIPEAU_EXCEPTION_POINTERS@@@ZH@Z @54 PRIVATE + ?_set_se_translator@@YAP6AXIPEAU_EXCEPTION_POINTERS@@@ZP6AXI0@Z@Z=MSVCRT__set_se_translator @55 + ?_sopen@@YAHPEBDHHH@Z=MSVCRT__sopen @56 + ?_type_info_dtor_internal_method@type_info@@QEAAXXZ @57 PRIVATE + ?_wopen@@YAHPEB_WHH@Z=MSVCRT__wopen @58 + ?_wsopen@@YAHPEB_WHHH@Z=MSVCRT__wsopen @59 + ?before@type_info@@QEBAHAEBV1@@Z=MSVCRT_type_info_before @60 + ?name@type_info@@QEBAPEBDPEAU__type_info_node@@@Z=type_info_name_internal_method @61 + ?raw_name@type_info@@QEBAPEBDXZ=MSVCRT_type_info_raw_name @62 + ?set_new_handler@@YAP6AXXZP6AXXZ@Z=MSVCRT_set_new_handler @63 + ?set_terminate@@YAP6AXXZH@Z @64 PRIVATE + ?set_terminate@@YAP6AXXZP6AXXZ@Z=MSVCRT_set_terminate @65 + ?set_unexpected@@YAP6AXXZH@Z @66 PRIVATE + ?set_unexpected@@YAP6AXXZP6AXXZ@Z=MSVCRT_set_unexpected @67 + ?swprintf@@YAHPAGIPBGZZ=MSVCRT__snwprintf @68 + ?swprintf@@YAHPA_WIPB_WZZ=MSVCRT__snwprintf @69 + ?terminate@@YAXXZ=MSVCRT_terminate @70 + ?unexpected@@YAXXZ=MSVCRT_unexpected @71 + ?vswprintf@@YAHPA_WIPB_WPAD@Z=MSVCRT_vsnwprintf @72 + ?what@exception@std@@UEBAPEBDXZ=MSVCRT_what_exception @73 + @_calloc_crt@8 @74 PRIVATE + @_malloc_crt@4=MSVCRT_malloc @75 + @_realloc_crt@8 @76 PRIVATE + $I10_OUTPUT=MSVCRT_I10_OUTPUT @77 + _CRT_RTC_INIT @78 + _CRT_RTC_INITW @79 + _CreateFrameInfo @80 + _CxxThrowException @81 + _FindAndUnlinkFrame @82 + _GetImageBase @83 PRIVATE + _GetThrowImageBase @84 PRIVATE + _Getdays @85 + _Getmonths @86 + _Gettnames @87 + _HUGE=MSVCRT__HUGE @88 DATA + _IsExceptionObjectToBeDestroyed @89 + __NLG_Dispatch2 @90 PRIVATE + __NLG_Return2 @91 PRIVATE + _SetImageBase @92 PRIVATE + _SetThrowImageBase @93 PRIVATE + _Strftime @94 + _XcptFilter @95 + __AdjustPointer @96 + __BuildCatchObject @97 PRIVATE + __BuildCatchObjectHelper @98 PRIVATE + __C_specific_handler=ntdll.__C_specific_handler @99 + __CppXcptFilter @100 + __CxxCallUnwindDelDtor @101 PRIVATE + __CxxCallUnwindDtor @102 PRIVATE + __CxxCallUnwindStdDelDtor @103 PRIVATE + __CxxCallUnwindVecDtor @104 PRIVATE + __CxxDetectRethrow @105 + __CxxExceptionFilter @106 + __CxxFrameHandler @107 + __CxxFrameHandler2=__CxxFrameHandler @108 + __CxxFrameHandler3=__CxxFrameHandler @109 + __CxxQueryExceptionSize @110 + __CxxRegisterExceptionObject @111 + __CxxUnregisterExceptionObject @112 + __DestructExceptionObject @113 + __FrameUnwindFilter @114 PRIVATE + __RTCastToVoid=MSVCRT___RTCastToVoid @115 + __RTDynamicCast=MSVCRT___RTDynamicCast @116 + __RTtypeid=MSVCRT___RTtypeid @117 + __STRINGTOLD @118 + __STRINGTOLD_L @119 PRIVATE + __TypeMatch @120 PRIVATE + ___lc_codepage_func @121 + ___lc_collate_cp_func @122 + ___lc_handle_func @123 + ___mb_cur_max_func=MSVCRT____mb_cur_max_func @124 + ___mb_cur_max_l_func @125 + ___setlc_active_func=MSVCRT____setlc_active_func @126 + ___unguarded_readlc_active_add_func=MSVCRT____unguarded_readlc_active_add_func @127 + __argc=MSVCRT___argc @128 DATA + __argv=MSVCRT___argv @129 DATA + __badioinfo=MSVCRT___badioinfo @130 DATA + __clean_type_info_names_internal @131 + __create_locale=MSVCRT__create_locale @132 + __crtCompareStringA @133 + __crtCompareStringW @134 + __crtGetLocaleInfoW @135 + __crtGetStringTypeW @136 + __crtLCMapStringA @137 + __crtLCMapStringW @138 + __daylight=MSVCRT___p__daylight @139 + __dllonexit @140 + __doserrno=MSVCRT___doserrno @141 + __dstbias=MSVCRT___p__dstbias @142 + __fls_getvalue @143 PRIVATE + __fls_setvalue @144 PRIVATE + __fpecode @145 + __free_locale=MSVCRT__free_locale @146 + __get_app_type @147 PRIVATE + __get_current_locale=MSVCRT__get_current_locale @148 + __get_flsindex @149 PRIVATE + __get_tlsindex @150 PRIVATE + __getmainargs @151 + __initenv=MSVCRT___initenv @152 DATA + __iob_func=__p__iob @153 + __isascii=MSVCRT___isascii @154 + __iscsym=MSVCRT___iscsym @155 + __iscsymf=MSVCRT___iscsymf @156 + __iswcsym @157 PRIVATE + __iswcsymf @158 PRIVATE + __lc_codepage=MSVCRT___lc_codepage @159 DATA + __lc_collate_cp=MSVCRT___lc_collate_cp @160 DATA + __lc_handle=MSVCRT___lc_handle @161 DATA + __lconv_init @162 + __mb_cur_max=MSVCRT___mb_cur_max @163 DATA + __p___argc=MSVCRT___p___argc @164 + __p___argv=MSVCRT___p___argv @165 + __p___initenv @166 + __p___mb_cur_max @167 + __p___wargv=MSVCRT___p___wargv @168 + __p___winitenv @169 + __p__acmdln=MSVCRT___p__acmdln @170 + __p__amblksiz @171 + __p__commode @172 + __p__daylight=MSVCRT___p__daylight @173 + __p__dstbias=MSVCRT___p__dstbias @174 + __p__environ=MSVCRT___p__environ @175 + __p__fmode=MSVCRT___p__fmode @176 + __p__iob @177 + __p__mbcasemap @178 PRIVATE + __p__mbctype @179 + __p__osplatform @180 PRIVATE + __p__osver @181 + __p__pctype=MSVCRT___p__pctype @182 + __p__pgmptr=MSVCRT___p__pgmptr @183 + __p__pwctype @184 PRIVATE + __p__timezone=MSVCRT___p__timezone @185 + __p__tzname @186 + __p__wcmdln=MSVCRT___p__wcmdln @187 + __p__wenviron=MSVCRT___p__wenviron @188 + __p__winmajor @189 + __p__winminor @190 + __p__winver @191 + __p__wpgmptr=MSVCRT___p__wpgmptr @192 + __pctype_func=MSVCRT___pctype_func @193 + __pioinfo=MSVCRT___pioinfo @194 DATA + __pwctype_func @195 PRIVATE + __pxcptinfoptrs=MSVCRT___pxcptinfoptrs @196 + __report_gsfailure @197 PRIVATE + __set_app_type=MSVCRT___set_app_type @198 + __set_flsgetvalue @199 PRIVATE + __setlc_active=MSVCRT___setlc_active @200 DATA + __setusermatherr=MSVCRT___setusermatherr @201 + __strncnt=MSVCRT___strncnt @202 + __swprintf_l=MSVCRT___swprintf_l @203 + __sys_errlist @204 + __sys_nerr @205 + __threadhandle=kernel32.GetCurrentThread @206 + __threadid=kernel32.GetCurrentThreadId @207 + __timezone=MSVCRT___p__timezone @208 + __toascii=MSVCRT___toascii @209 + __tzname=__p__tzname @210 + __unDName @211 + __unDNameEx @212 + __unDNameHelper @213 PRIVATE + __unguarded_readlc_active=MSVCRT___unguarded_readlc_active @214 DATA + __vswprintf_l=MSVCRT_vswprintf_l @215 + __wargv=MSVCRT___wargv @216 DATA + __wcserror=MSVCRT___wcserror @217 + __wcserror_s=MSVCRT___wcserror_s @218 + __wcsncnt @219 PRIVATE + __wgetmainargs @220 + __winitenv=MSVCRT___winitenv @221 DATA + _abnormal_termination @222 + _abs64 @223 + _access=MSVCRT__access @224 + _access_s=MSVCRT__access_s @225 + _acmdln=MSVCRT__acmdln @226 DATA + _aexit_rtn @227 DATA + _aligned_free @228 + _aligned_malloc @229 + _aligned_msize @230 + _aligned_offset_malloc @231 + _aligned_offset_realloc @232 + _aligned_offset_recalloc @233 PRIVATE + _aligned_realloc @234 + _aligned_recalloc @235 PRIVATE + _amsg_exit @236 + _assert=MSVCRT__assert @237 + _atodbl=MSVCRT__atodbl @238 + _atodbl_l=MSVCRT__atodbl_l @239 + _atof_l=MSVCRT__atof_l @240 + _atoflt=MSVCRT__atoflt @241 + _atoflt_l=MSVCRT__atoflt_l @242 + _atoi64=MSVCRT__atoi64 @243 + _atoi64_l=MSVCRT__atoi64_l @244 + _atoi_l=MSVCRT__atoi_l @245 + _atol_l=MSVCRT__atol_l @246 + _atoldbl=MSVCRT__atoldbl @247 + _atoldbl_l @248 PRIVATE + _beep=MSVCRT__beep @249 + _beginthread @250 + _beginthreadex @251 + _byteswap_uint64 @252 + _byteswap_ulong=MSVCRT__byteswap_ulong @253 + _byteswap_ushort @254 + _c_exit=MSVCRT__c_exit @255 + _cabs=MSVCRT__cabs @256 + _callnewh @257 + _calloc_crt=MSVCRT_calloc @258 + _cexit=MSVCRT__cexit @259 + _cgets @260 + _cgets_s @261 PRIVATE + _cgetws @262 PRIVATE + _cgetws_s @263 PRIVATE + _chdir=MSVCRT__chdir @264 + _chdrive=MSVCRT__chdrive @265 + _chgsign=MSVCRT__chgsign @266 + _chgsignf=MSVCRT__chgsignf @267 + _chmod=MSVCRT__chmod @268 + _chsize=MSVCRT__chsize @269 + _chsize_s=MSVCRT__chsize_s @270 + _clearfp @271 + _close=MSVCRT__close @272 + _commit=MSVCRT__commit @273 + _commode=MSVCRT__commode @274 DATA + _configthreadlocale @275 + _control87 @276 + _controlfp @277 + _controlfp_s @278 + _copysign=MSVCRT__copysign @279 + _copysignf=MSVCRT__copysignf @280 + _cprintf @281 + _cprintf_l @282 PRIVATE + _cprintf_p @283 PRIVATE + _cprintf_p_l @284 PRIVATE + _cprintf_s @285 PRIVATE + _cprintf_s_l @286 PRIVATE + _cputs @287 + _cputws @288 + _creat=MSVCRT__creat @289 + _create_locale=MSVCRT__create_locale @290 + __crt_debugger_hook=MSVCRT__crt_debugger_hook @291 + _cscanf @292 + _cscanf_l @293 + _cscanf_s @294 + _cscanf_s_l @295 + _ctime32=MSVCRT__ctime32 @296 + _ctime32_s=MSVCRT__ctime32_s @297 + _ctime64=MSVCRT__ctime64 @298 + _ctime64_s=MSVCRT__ctime64_s @299 + _cwait @300 + _cwprintf @301 + _cwprintf_l @302 PRIVATE + _cwprintf_p @303 PRIVATE + _cwprintf_p_l @304 PRIVATE + _cwprintf_s @305 PRIVATE + _cwprintf_s_l @306 PRIVATE + _cwscanf @307 + _cwscanf_l @308 + _cwscanf_s @309 + _cwscanf_s_l @310 + _daylight=MSVCRT___daylight @311 DATA + _decode_pointer=MSVCRT_decode_pointer @312 + _difftime32=MSVCRT__difftime32 @313 + _difftime64=MSVCRT__difftime64 @314 + _dosmaperr @315 PRIVATE + _dstbias=MSVCRT__dstbias @316 DATA + _dup=MSVCRT__dup @317 + _dup2=MSVCRT__dup2 @318 + _dupenv_s @319 + _ecvt=MSVCRT__ecvt @320 + _ecvt_s=MSVCRT__ecvt_s @321 + _encode_pointer=MSVCRT_encode_pointer @322 + _encoded_null @323 + _endthread @324 + _endthreadex @325 + _environ=MSVCRT__environ @326 DATA + _eof=MSVCRT__eof @327 + _errno=MSVCRT__errno @328 + _execl @329 + _execle @330 + _execlp @331 + _execlpe @332 + _execv @333 + _execve=MSVCRT__execve @334 + _execvp @335 + _execvpe @336 + _exit=MSVCRT__exit @337 + _expand @338 + _fclose_nolock=MSVCRT__fclose_nolock @339 + _fcloseall=MSVCRT__fcloseall @340 + _fcvt=MSVCRT__fcvt @341 + _fcvt_s=MSVCRT__fcvt_s @342 + _fdopen=MSVCRT__fdopen @343 + _fflush_nolock=MSVCRT__fflush_nolock @344 + _fgetc_nolock=MSVCRT__fgetc_nolock @345 + _fgetchar=MSVCRT__fgetchar @346 + _fgetwc_nolock=MSVCRT__fgetwc_nolock @347 + _fgetwchar=MSVCRT__fgetwchar @348 + _filbuf=MSVCRT__filbuf @349 + _filelength=MSVCRT__filelength @350 + _filelengthi64=MSVCRT__filelengthi64 @351 + _fileno=MSVCRT__fileno @352 + _findclose=MSVCRT__findclose @353 + _findfirst32=MSVCRT__findfirst32 @354 + _findfirst32i64 @355 PRIVATE + _findfirst64=MSVCRT__findfirst64 @356 + _findfirst64i32=MSVCRT__findfirst64i32 @357 + _findnext32=MSVCRT__findnext32 @358 + _findnext32i64 @359 PRIVATE + _findnext64=MSVCRT__findnext64 @360 + _findnext64i32=MSVCRT__findnext64i32 @361 + _finite=MSVCRT__finite @362 + _finitef=MSVCRT__finitef @363 + _flsbuf=MSVCRT__flsbuf @364 + _flushall=MSVCRT__flushall @365 + _fmode=MSVCRT__fmode @366 DATA + _fpclass=MSVCRT__fpclass @367 + _fpieee_flt @368 + _fpreset @369 + _fprintf_l @370 PRIVATE + _fprintf_p @371 PRIVATE + _fprintf_p_l @372 PRIVATE + _fprintf_s_l @373 PRIVATE + _fputc_nolock=MSVCRT__fputc_nolock @374 + _fputchar=MSVCRT__fputchar @375 + _fputwc_nolock=MSVCRT__fputwc_nolock @376 + _fputwchar=MSVCRT__fputwchar @377 + _fread_nolock=MSVCRT__fread_nolock @378 + _fread_nolock_s=MSVCRT__fread_nolock_s @379 + _free_locale=MSVCRT__free_locale @380 + _freea @381 PRIVATE + _freea_s @382 PRIVATE + _freefls @383 PRIVATE + _fscanf_l=MSVCRT__fscanf_l @384 + _fscanf_s_l=MSVCRT__fscanf_s_l @385 + _fseek_nolock=MSVCRT__fseek_nolock @386 + _fseeki64=MSVCRT__fseeki64 @387 + _fseeki64_nolock=MSVCRT__fseeki64_nolock @388 + _fsopen=MSVCRT__fsopen @389 + _fstat32=MSVCRT__fstat32 @390 + _fstat32i64=MSVCRT__fstat32i64 @391 + _fstat64=MSVCRT__fstat64 @392 + _fstat64i32=MSVCRT__fstat64i32 @393 + _ftell_nolock=MSVCRT__ftell_nolock @394 + _ftelli64=MSVCRT__ftelli64 @395 + _ftelli64_nolock=MSVCRT__ftelli64_nolock @396 + _ftime32=MSVCRT__ftime32 @397 + _ftime32_s=MSVCRT__ftime32_s @398 + _ftime64=MSVCRT__ftime64 @399 + _ftime64_s=MSVCRT__ftime64_s @400 + _fullpath=MSVCRT__fullpath @401 + _futime32 @402 + _futime64 @403 + _fwprintf_l=MSVCRT__fwprintf_l @404 + _fwprintf_p @405 PRIVATE + _fwprintf_p_l @406 PRIVATE + _fwprintf_s_l @407 PRIVATE + _fwrite_nolock=MSVCRT__fwrite_nolock @408 + _fwscanf_l=MSVCRT__fwscanf_l @409 + _fwscanf_s_l=MSVCRT__fwscanf_s_l @410 + _gcvt=MSVCRT__gcvt @411 + _gcvt_s=MSVCRT__gcvt_s @412 + _get_amblksiz @413 PRIVATE + _get_current_locale=MSVCRT__get_current_locale @414 + _get_daylight @415 + _get_doserrno @416 + _get_dstbias=MSVCRT__get_dstbias @417 + _get_errno @418 + _get_fmode=MSVCRT__get_fmode @419 + _get_heap_handle @420 + _get_invalid_parameter_handler @421 + _get_osfhandle=MSVCRT__get_osfhandle @422 + _get_osplatform=MSVCRT__get_osplatform @423 + _get_osver=MSVCRT__get_osver @424 + _get_output_format=MSVCRT__get_output_format @425 + _get_pgmptr @426 + _get_printf_count_output=MSVCRT__get_printf_count_output @427 + _get_purecall_handler @428 + _get_sbh_threshold @429 + _get_terminate=MSVCRT__get_terminate @430 + _get_timezone @431 + _get_tzname=MSVCRT__get_tzname @432 + _get_unexpected=MSVCRT__get_unexpected @433 + _get_winmajor=MSVCRT__get_winmajor @434 + _get_winminor=MSVCRT__get_winminor @435 + _get_winver @436 PRIVATE + _get_wpgmptr @437 + _getc_nolock=MSVCRT__fgetc_nolock @438 + _getch @439 + _getch_nolock @440 + _getche @441 + _getche_nolock @442 + _getcwd=MSVCRT__getcwd @443 + _getdcwd=MSVCRT__getdcwd @444 + _getdcwd_nolock @445 PRIVATE + _getdiskfree=MSVCRT__getdiskfree @446 + _getdllprocaddr @447 + _getdrive=MSVCRT__getdrive @448 + _getdrives=kernel32.GetLogicalDrives @449 + _getmaxstdio=MSVCRT__getmaxstdio @450 + _getmbcp @451 + _getpid @452 + _getptd @453 + _getsystime @454 PRIVATE + _getw=MSVCRT__getw @455 + _getwc_nolock=MSVCRT__fgetwc_nolock @456 + _getwch @457 + _getwch_nolock @458 + _getwche @459 + _getwche_nolock @460 + _getws=MSVCRT__getws @461 + _getws_s @462 PRIVATE + _gmtime32=MSVCRT__gmtime32 @463 + _gmtime32_s=MSVCRT__gmtime32_s @464 + _gmtime64=MSVCRT__gmtime64 @465 + _gmtime64_s=MSVCRT__gmtime64_s @466 + _heapadd @467 + _heapchk @468 + _heapmin @469 + _heapset @470 + _heapused @471 PRIVATE + _heapwalk @472 + _hypot @473 + _hypotf=MSVCRT__hypotf @474 + _i64toa=ntdll._i64toa @475 + _i64toa_s=MSVCRT__i64toa_s @476 + _i64tow=ntdll._i64tow @477 + _i64tow_s=MSVCRT__i64tow_s @478 + _initptd @479 PRIVATE + _initterm @480 + _initterm_e @481 + _invalid_parameter=MSVCRT__invalid_parameter @482 + _invalid_parameter_noinfo @483 + _invoke_watson @484 PRIVATE + _iob=MSVCRT__iob @485 DATA + _isalnum_l=MSVCRT__isalnum_l @486 + _isalpha_l=MSVCRT__isalpha_l @487 + _isatty=MSVCRT__isatty @488 + _iscntrl_l=MSVCRT__iscntrl_l @489 + _isctype=MSVCRT__isctype @490 + _isctype_l=MSVCRT__isctype_l @491 + _isdigit_l=MSVCRT__isdigit_l @492 + _isgraph_l=MSVCRT__isgraph_l @493 + _isleadbyte_l=MSVCRT__isleadbyte_l @494 + _islower_l=MSVCRT__islower_l @495 + _ismbbalnum @496 PRIVATE + _ismbbalnum_l @497 PRIVATE + _ismbbalpha @498 PRIVATE + _ismbbalpha_l @499 PRIVATE + _ismbbgraph @500 PRIVATE + _ismbbgraph_l @501 PRIVATE + _ismbbkalnum @502 PRIVATE + _ismbbkalnum_l @503 PRIVATE + _ismbbkana @504 + _ismbbkana_l @505 PRIVATE + _ismbbkprint @506 PRIVATE + _ismbbkprint_l @507 PRIVATE + _ismbbkpunct @508 PRIVATE + _ismbbkpunct_l @509 PRIVATE + _ismbblead @510 + _ismbblead_l @511 + _ismbbprint @512 PRIVATE + _ismbbprint_l @513 PRIVATE + _ismbbpunct @514 PRIVATE + _ismbbpunct_l @515 PRIVATE + _ismbbtrail @516 + _ismbbtrail_l @517 + _ismbcalnum @518 + _ismbcalnum_l @519 PRIVATE + _ismbcalpha @520 + _ismbcalpha_l @521 PRIVATE + _ismbcdigit @522 + _ismbcdigit_l @523 PRIVATE + _ismbcgraph @524 + _ismbcgraph_l @525 PRIVATE + _ismbchira @526 + _ismbchira_l @527 PRIVATE + _ismbckata @528 + _ismbckata_l @529 PRIVATE + _ismbcl0 @530 + _ismbcl0_l @531 + _ismbcl1 @532 + _ismbcl1_l @533 + _ismbcl2 @534 + _ismbcl2_l @535 + _ismbclegal @536 + _ismbclegal_l @537 + _ismbclower @538 + _ismbclower_l @539 PRIVATE + _ismbcprint @540 + _ismbcprint_l @541 PRIVATE + _ismbcpunct @542 + _ismbcpunct_l @543 PRIVATE + _ismbcspace @544 + _ismbcspace_l @545 PRIVATE + _ismbcsymbol @546 + _ismbcsymbol_l @547 PRIVATE + _ismbcupper @548 + _ismbcupper_l @549 PRIVATE + _ismbslead @550 + _ismbslead_l @551 PRIVATE + _ismbstrail @552 + _ismbstrail_l @553 PRIVATE + _isnan=MSVCRT__isnan @554 + _isnanf=MSVCRT__isnanf @555 + _isprint_l=MSVCRT__isprint_l @556 + _ispunct_l @557 PRIVATE + _isspace_l=MSVCRT__isspace_l @558 + _isupper_l=MSVCRT__isupper_l @559 + _iswalnum_l=MSVCRT__iswalnum_l @560 + _iswalpha_l=MSVCRT__iswalpha_l @561 + _iswcntrl_l=MSVCRT__iswcntrl_l @562 + _iswcsym_l @563 PRIVATE + _iswcsymf_l @564 PRIVATE + _iswctype_l=MSVCRT__iswctype_l @565 + _iswdigit_l=MSVCRT__iswdigit_l @566 + _iswgraph_l=MSVCRT__iswgraph_l @567 + _iswlower_l=MSVCRT__iswlower_l @568 + _iswprint_l=MSVCRT__iswprint_l @569 + _iswpunct_l=MSVCRT__iswpunct_l @570 + _iswspace_l=MSVCRT__iswspace_l @571 + _iswupper_l=MSVCRT__iswupper_l @572 + _iswxdigit_l=MSVCRT__iswxdigit_l @573 + _isxdigit_l=MSVCRT__isxdigit_l @574 + _itoa=MSVCRT__itoa @575 + _itoa_s=MSVCRT__itoa_s @576 + _itow=ntdll._itow @577 + _itow_s=MSVCRT__itow_s @578 + _j0=MSVCRT__j0 @579 + _j1=MSVCRT__j1 @580 + _jn=MSVCRT__jn @581 + _kbhit @582 + _lfind @583 + _lfind_s @584 + _loaddll @585 + _local_unwind @586 + _localtime32=MSVCRT__localtime32 @587 + _localtime32_s @588 + _localtime64=MSVCRT__localtime64 @589 + _localtime64_s @590 + _lock @591 + _lock_file=MSVCRT__lock_file @592 + _locking=MSVCRT__locking @593 + _logb=MSVCRT__logb @594 + _logbf=MSVCRT__logbf @595 + _lrotl=MSVCRT__lrotl @596 + _lrotr=MSVCRT__lrotr @597 + _lsearch @598 + _lsearch_s @599 PRIVATE + _lseek=MSVCRT__lseek @600 + _lseeki64=MSVCRT__lseeki64 @601 + _ltoa=ntdll._ltoa @602 + _ltoa_s=MSVCRT__ltoa_s @603 + _ltow=ntdll._ltow @604 + _ltow_s=MSVCRT__ltow_s @605 + _makepath=MSVCRT__makepath @606 + _makepath_s=MSVCRT__makepath_s @607 + _malloc_crt=MSVCRT_malloc @608 + _mbbtombc @609 + _mbbtombc_l @610 PRIVATE + _mbbtype @611 + _mbbtype_l @612 PRIVATE + _mbccpy @613 + _mbccpy_l @614 + _mbccpy_s @615 + _mbccpy_s_l @616 + _mbcjistojms @617 + _mbcjistojms_l @618 PRIVATE + _mbcjmstojis @619 + _mbcjmstojis_l @620 PRIVATE + _mbclen @621 + _mbclen_l @622 PRIVATE + _mbctohira @623 + _mbctohira_l @624 PRIVATE + _mbctokata @625 + _mbctokata_l @626 PRIVATE + _mbctolower @627 + _mbctolower_l @628 PRIVATE + _mbctombb @629 + _mbctombb_l @630 PRIVATE + _mbctoupper @631 + _mbctoupper_l @632 PRIVATE + _mbctype=MSVCRT_mbctype @633 DATA + _mblen_l @634 PRIVATE + _mbsbtype @635 + _mbsbtype_l @636 PRIVATE + _mbscat_s @637 + _mbscat_s_l @638 + _mbschr @639 + _mbschr_l @640 PRIVATE + _mbscmp @641 + _mbscmp_l @642 PRIVATE + _mbscoll @643 + _mbscoll_l @644 + _mbscpy_s @645 + _mbscpy_s_l @646 + _mbscspn @647 + _mbscspn_l @648 PRIVATE + _mbsdec @649 + _mbsdec_l @650 PRIVATE + _mbsicmp @651 + _mbsicmp_l @652 PRIVATE + _mbsicoll @653 + _mbsicoll_l @654 + _mbsinc @655 + _mbsinc_l @656 PRIVATE + _mbslen @657 + _mbslen_l @658 + _mbslwr @659 + _mbslwr_l @660 PRIVATE + _mbslwr_s @661 + _mbslwr_s_l @662 PRIVATE + _mbsnbcat @663 + _mbsnbcat_l @664 PRIVATE + _mbsnbcat_s @665 + _mbsnbcat_s_l @666 PRIVATE + _mbsnbcmp @667 + _mbsnbcmp_l @668 PRIVATE + _mbsnbcnt @669 + _mbsnbcnt_l @670 PRIVATE + _mbsnbcoll @671 + _mbsnbcoll_l @672 + _mbsnbcpy @673 + _mbsnbcpy_l @674 PRIVATE + _mbsnbcpy_s @675 + _mbsnbcpy_s_l @676 + _mbsnbicmp @677 + _mbsnbicmp_l @678 PRIVATE + _mbsnbicoll @679 + _mbsnbicoll_l @680 + _mbsnbset @681 + _mbsnbset_l @682 PRIVATE + _mbsnbset_s @683 PRIVATE + _mbsnbset_s_l @684 PRIVATE + _mbsncat @685 + _mbsncat_l @686 PRIVATE + _mbsncat_s @687 PRIVATE + _mbsncat_s_l @688 PRIVATE + _mbsnccnt @689 + _mbsnccnt_l @690 PRIVATE + _mbsncmp @691 + _mbsncmp_l @692 PRIVATE + _mbsncoll @693 PRIVATE + _mbsncoll_l @694 PRIVATE + _mbsncpy @695 + _mbsncpy_l @696 PRIVATE + _mbsncpy_s @697 PRIVATE + _mbsncpy_s_l @698 PRIVATE + _mbsnextc @699 + _mbsnextc_l @700 PRIVATE + _mbsnicmp @701 + _mbsnicmp_l @702 PRIVATE + _mbsnicoll @703 PRIVATE + _mbsnicoll_l @704 PRIVATE + _mbsninc @705 + _mbsninc_l @706 PRIVATE + _mbsnlen @707 + _mbsnlen_l @708 + _mbsnset @709 + _mbsnset_l @710 PRIVATE + _mbsnset_s @711 PRIVATE + _mbsnset_s_l @712 PRIVATE + _mbspbrk @713 + _mbspbrk_l @714 PRIVATE + _mbsrchr @715 + _mbsrchr_l @716 PRIVATE + _mbsrev @717 + _mbsrev_l @718 PRIVATE + _mbsset @719 + _mbsset_l @720 PRIVATE + _mbsset_s @721 PRIVATE + _mbsset_s_l @722 PRIVATE + _mbsspn @723 + _mbsspn_l @724 PRIVATE + _mbsspnp @725 + _mbsspnp_l @726 PRIVATE + _mbsstr @727 + _mbsstr_l @728 PRIVATE + _mbstok @729 + _mbstok_l @730 + _mbstok_s @731 + _mbstok_s_l @732 + _mbstowcs_l=MSVCRT__mbstowcs_l @733 + _mbstowcs_s_l=MSVCRT__mbstowcs_s_l @734 + _mbstrlen @735 + _mbstrlen_l @736 + _mbstrnlen @737 PRIVATE + _mbstrnlen_l @738 PRIVATE + _mbsupr @739 + _mbsupr_l @740 PRIVATE + _mbsupr_s @741 + _mbsupr_s_l @742 PRIVATE + _mbtowc_l=MSVCRT_mbtowc_l @743 + _memccpy=ntdll._memccpy @744 + _memicmp=MSVCRT__memicmp @745 + _memicmp_l=MSVCRT__memicmp_l @746 + _mkdir=MSVCRT__mkdir @747 + _mkgmtime32=MSVCRT__mkgmtime32 @748 + _mkgmtime64=MSVCRT__mkgmtime64 @749 + _mktemp=MSVCRT__mktemp @750 + _mktemp_s=MSVCRT__mktemp_s @751 + _mktime32=MSVCRT__mktime32 @752 + _mktime64=MSVCRT__mktime64 @753 + _msize @754 + _nextafter=MSVCRT__nextafter @755 + _nextafterf=MSVCRT__nextafterf @756 + _onexit=MSVCRT__onexit @757 + _open=MSVCRT__open @758 + _open_osfhandle=MSVCRT__open_osfhandle @759 + _osplatform=MSVCRT__osplatform @760 DATA + _osver=MSVCRT__osver @761 DATA + _pclose=MSVCRT__pclose @762 + _pctype=MSVCRT__pctype @763 DATA + _pgmptr=MSVCRT__pgmptr @764 DATA + _pipe=MSVCRT__pipe @765 + _popen=MSVCRT__popen @766 + _printf_l @767 PRIVATE + _printf_p @768 PRIVATE + _printf_p_l @769 PRIVATE + _printf_s_l @770 PRIVATE + _purecall @771 + _putc_nolock=MSVCRT__fputc_nolock @772 + _putch @773 + _putch_nolock @774 + _putenv @775 + _putenv_s @776 + _putw=MSVCRT__putw @777 + _putwc_nolock=MSVCRT__fputwc_nolock @778 + _putwch @779 + _putwch_nolock @780 + _putws=MSVCRT__putws @781 + _read=MSVCRT__read @782 + _realloc_crt=MSVCRT_realloc @783 + _recalloc @784 + _recalloc_crt @785 PRIVATE + _resetstkoflw=MSVCRT__resetstkoflw @786 + _rmdir=MSVCRT__rmdir @787 + _rmtmp=MSVCRT__rmtmp @788 + _rotl @789 + _rotl64 @790 + _rotr @791 + _rotr64 @792 + _scalb=MSVCRT__scalb @793 + _scalbf=MSVCRT__scalbf @794 + _scanf_l=MSVCRT__scanf_l @795 + _scanf_s_l=MSVCRT__scanf_s_l @796 + _scprintf=MSVCRT__scprintf @797 + _scprintf_l @798 PRIVATE + _scprintf_p @799 PRIVATE + _scprintf_p_l @800 PRIVATE + _scwprintf=MSVCRT__scwprintf @801 + _scwprintf_l @802 PRIVATE + _scwprintf_p @803 PRIVATE + _scwprintf_p_l @804 PRIVATE + _searchenv=MSVCRT__searchenv @805 + _searchenv_s=MSVCRT__searchenv_s @806 + _set_SSE2_enable=MSVCRT__set_SSE2_enable @807 + _set_abort_behavior=MSVCRT__set_abort_behavior @808 + _set_amblksiz @809 PRIVATE + _set_controlfp @810 + _set_doserrno @811 + _set_errno @812 + _set_error_mode @813 + _set_fmode=MSVCRT__set_fmode @814 + _set_invalid_parameter_handler @815 + _set_malloc_crt_max_wait @816 PRIVATE + _set_output_format=MSVCRT__set_output_format @817 + _set_printf_count_output=MSVCRT__set_printf_count_output @818 + _set_purecall_handler @819 + _set_sbh_threshold @820 + _seterrormode @821 + _setjmp=MSVCRT__setjmp @822 + _setjmpex=MSVCRT__setjmpex @823 + _setmaxstdio=MSVCRT__setmaxstdio @824 + _setmbcp @825 + _setmode=MSVCRT__setmode @826 + _setsystime @827 PRIVATE + _sleep=MSVCRT__sleep @828 + _snprintf=MSVCRT__snprintf @829 + _snprintf_c @830 PRIVATE + _snprintf_c_l @831 PRIVATE + _snprintf_l=MSVCRT__snprintf_l @832 + _snprintf_s=MSVCRT__snprintf_s @833 + _snprintf_s_l @834 PRIVATE + _snscanf=MSVCRT__snscanf @835 + _snscanf_l=MSVCRT__snscanf_l @836 + _snscanf_s=MSVCRT__snscanf_s @837 + _snscanf_s_l=MSVCRT__snscanf_s_l @838 + _snwprintf=MSVCRT__snwprintf @839 + _snwprintf_l=MSVCRT__snwprintf_l @840 + _snwprintf_s=MSVCRT__snwprintf_s @841 + _snwprintf_s_l=MSVCRT__snwprintf_s_l @842 + _snwscanf=MSVCRT__snwscanf @843 + _snwscanf_l=MSVCRT__snwscanf_l @844 + _snwscanf_s=MSVCRT__snwscanf_s @845 + _snwscanf_s_l=MSVCRT__snwscanf_s_l @846 + _sopen=MSVCRT__sopen @847 + _sopen_s=MSVCRT__sopen_s @848 + _spawnl=MSVCRT__spawnl @849 + _spawnle=MSVCRT__spawnle @850 + _spawnlp=MSVCRT__spawnlp @851 + _spawnlpe=MSVCRT__spawnlpe @852 + _spawnv=MSVCRT__spawnv @853 + _spawnve=MSVCRT__spawnve @854 + _spawnvp=MSVCRT__spawnvp @855 + _spawnvpe=MSVCRT__spawnvpe @856 + _splitpath=MSVCRT__splitpath @857 + _splitpath_s=MSVCRT__splitpath_s @858 + _sprintf_l=MSVCRT_sprintf_l @859 + _sprintf_p=MSVCRT__sprintf_p @860 + _sprintf_p_l=MSVCRT_sprintf_p_l @861 + _sprintf_s_l=MSVCRT_sprintf_s_l @862 + _sscanf_l=MSVCRT__sscanf_l @863 + _sscanf_s_l=MSVCRT__sscanf_s_l @864 + _stat32=MSVCRT__stat32 @865 + _stat32i64=MSVCRT__stat32i64 @866 + _stat64=MSVCRT_stat64 @867 + _stat64i32=MSVCRT__stat64i32 @868 + _statusfp @869 + _strcoll_l=MSVCRT_strcoll_l @870 + _strdate=MSVCRT__strdate @871 + _strdate_s @872 + _strdup=MSVCRT__strdup @873 + _strerror=MSVCRT__strerror @874 + _strerror_s @875 PRIVATE + _strftime_l=MSVCRT__strftime_l @876 + _stricmp=MSVCRT__stricmp @877 + _stricmp_l=MSVCRT__stricmp_l @878 + _stricoll=MSVCRT__stricoll @879 + _stricoll_l=MSVCRT__stricoll_l @880 + _strlwr=MSVCRT__strlwr @881 + _strlwr_l @882 + _strlwr_s=MSVCRT__strlwr_s @883 + _strlwr_s_l=MSVCRT__strlwr_s_l @884 + _strncoll=MSVCRT__strncoll @885 + _strncoll_l=MSVCRT__strncoll_l @886 + _strnicmp=MSVCRT__strnicmp @887 + _strnicmp_l=MSVCRT__strnicmp_l @888 + _strnicoll=MSVCRT__strnicoll @889 + _strnicoll_l=MSVCRT__strnicoll_l @890 + _strnset=MSVCRT__strnset @891 + _strnset_s=MSVCRT__strnset_s @892 + _strrev=MSVCRT__strrev @893 + _strset @894 + _strset_s @895 PRIVATE + _strtime=MSVCRT__strtime @896 + _strtime_s @897 + _strtod_l=MSVCRT_strtod_l @898 + _strtoi64=MSVCRT_strtoi64 @899 + _strtoi64_l=MSVCRT_strtoi64_l @900 + _strtol_l=MSVCRT__strtol_l @901 + _strtoui64=MSVCRT_strtoui64 @902 + _strtoui64_l=MSVCRT_strtoui64_l @903 + _strtoul_l=MSVCRT_strtoul_l @904 + _strupr=MSVCRT__strupr @905 + _strupr_l=MSVCRT__strupr_l @906 + _strupr_s=MSVCRT__strupr_s @907 + _strupr_s_l=MSVCRT__strupr_s_l @908 + _strxfrm_l=MSVCRT__strxfrm_l @909 + _swab=MSVCRT__swab @910 + _swprintf=MSVCRT_swprintf @911 + _swprintf_c @912 PRIVATE + _swprintf_p @913 PRIVATE + _swprintf_p_l=MSVCRT_swprintf_p_l @914 + _swprintf_s_l=MSVCRT__swprintf_s_l @915 + _swscanf_l=MSVCRT__swscanf_l @916 + _swscanf_s_l=MSVCRT__swscanf_s_l @917 + _sys_errlist=MSVCRT__sys_errlist @918 DATA + _sys_nerr=MSVCRT__sys_nerr @919 DATA + _tell=MSVCRT__tell @920 + _telli64 @921 + _tempnam=MSVCRT__tempnam @922 + _time32=MSVCRT__time32 @923 + _time64=MSVCRT__time64 @924 + _timezone=MSVCRT___timezone @925 DATA + _tolower=MSVCRT__tolower @926 + _tolower_l=MSVCRT__tolower_l @927 + _toupper=MSVCRT__toupper @928 + _toupper_l=MSVCRT__toupper_l @929 + _towlower_l=MSVCRT__towlower_l @930 + _towupper_l=MSVCRT__towupper_l @931 + _tzname=MSVCRT__tzname @932 DATA + _tzset=MSVCRT__tzset @933 + _ui64toa=ntdll._ui64toa @934 + _ui64toa_s=MSVCRT__ui64toa_s @935 + _ui64tow=ntdll._ui64tow @936 + _ui64tow_s=MSVCRT__ui64tow_s @937 + _ultoa=ntdll._ultoa @938 + _ultoa_s=MSVCRT__ultoa_s @939 + _ultow=ntdll._ultow @940 + _ultow_s=MSVCRT__ultow_s @941 + _umask=MSVCRT__umask @942 + _umask_s @943 PRIVATE + _ungetc_nolock=MSVCRT__ungetc_nolock @944 + _ungetch @945 + _ungetch_nolock @946 + _ungetwc_nolock=MSVCRT__ungetwc_nolock @947 + _ungetwch @948 + _ungetwch_nolock @949 + _unlink=MSVCRT__unlink @950 + _unloaddll @951 + _unlock @952 + _unlock_file=MSVCRT__unlock_file @953 + _utime32 @954 + _utime64 @955 + _vcprintf @956 + _vcprintf_l @957 PRIVATE + _vcprintf_p @958 PRIVATE + _vcprintf_p_l @959 PRIVATE + _vcprintf_s @960 PRIVATE + _vcprintf_s_l @961 PRIVATE + _vcwprintf @962 + _vcwprintf_l @963 PRIVATE + _vcwprintf_p @964 PRIVATE + _vcwprintf_p_l @965 PRIVATE + _vcwprintf_s @966 PRIVATE + _vcwprintf_s_l @967 PRIVATE + _vfprintf_l=MSVCRT__vfprintf_l @968 + _vfprintf_p=MSVCRT__vfprintf_p @969 + _vfprintf_p_l=MSVCRT__vfprintf_p_l @970 + _vfprintf_s_l=MSVCRT__vfprintf_s_l @971 + _vfwprintf_l=MSVCRT__vfwprintf_l @972 + _vfwprintf_p=MSVCRT__vfwprintf_p @973 + _vfwprintf_p_l=MSVCRT__vfwprintf_p_l @974 + _vfwprintf_s_l=MSVCRT__vfwprintf_s_l @975 + _vprintf_l @976 PRIVATE + _vprintf_p @977 PRIVATE + _vprintf_p_l @978 PRIVATE + _vprintf_s_l @979 PRIVATE + _vscprintf=MSVCRT__vscprintf @980 + _vscprintf_l=MSVCRT__vscprintf_l @981 + _vscprintf_p=MSVCRT__vscprintf_p @982 + _vscprintf_p_l=MSVCRT__vscprintf_p_l @983 + _vscwprintf=MSVCRT__vscwprintf @984 + _vscwprintf_l=MSVCRT__vscwprintf_l @985 + _vscwprintf_p=MSVCRT__vscwprintf_p @986 + _vscwprintf_p_l=MSVCRT__vscwprintf_p_l @987 + _vsnprintf=MSVCRT_vsnprintf @988 + _vsnprintf_c=MSVCRT_vsnprintf @989 + _vsnprintf_c_l=MSVCRT_vsnprintf_l @990 + _vsnprintf_l=MSVCRT_vsnprintf_l @991 + _vsnprintf_s=MSVCRT_vsnprintf_s @992 + _vsnprintf_s_l=MSVCRT_vsnprintf_s_l @993 + _vsnwprintf=MSVCRT_vsnwprintf @994 + _vsnwprintf_l=MSVCRT_vsnwprintf_l @995 + _vsnwprintf_s=MSVCRT_vsnwprintf_s @996 + _vsnwprintf_s_l=MSVCRT_vsnwprintf_s_l @997 + _vsprintf_l=MSVCRT_vsprintf_l @998 + _vsprintf_p=MSVCRT_vsprintf_p @999 + _vsprintf_p_l=MSVCRT_vsprintf_p_l @1000 + _vsprintf_s_l=MSVCRT_vsprintf_s_l @1001 + _vswprintf=MSVCRT_vswprintf @1002 + _vswprintf_c=MSVCRT_vsnwprintf @1003 + _vswprintf_c_l=MSVCRT_vsnwprintf_l @1004 + _vswprintf_l=MSVCRT_vswprintf_l @1005 + _vswprintf_p=MSVCRT__vswprintf_p @1006 + _vswprintf_p_l=MSVCRT_vswprintf_p_l @1007 + _vswprintf_s_l=MSVCRT_vswprintf_s_l @1008 + _vwprintf_l @1009 PRIVATE + _vwprintf_p @1010 PRIVATE + _vwprintf_p_l @1011 PRIVATE + _vwprintf_s_l @1012 PRIVATE + _waccess=MSVCRT__waccess @1013 + _waccess_s=MSVCRT__waccess_s @1014 + _wasctime=MSVCRT__wasctime @1015 + _wasctime_s=MSVCRT__wasctime_s @1016 + _wassert=MSVCRT__wassert @1017 + _wchdir=MSVCRT__wchdir @1018 + _wchmod=MSVCRT__wchmod @1019 + _wcmdln=MSVCRT__wcmdln @1020 DATA + _wcreat=MSVCRT__wcreat @1021 + _wcscoll_l=MSVCRT__wcscoll_l @1022 + _wcsdup=MSVCRT__wcsdup @1023 + _wcserror=MSVCRT__wcserror @1024 + _wcserror_s=MSVCRT__wcserror_s @1025 + _wcsftime_l=MSVCRT__wcsftime_l @1026 + _wcsicmp=MSVCRT__wcsicmp @1027 + _wcsicmp_l=MSVCRT__wcsicmp_l @1028 + _wcsicoll=MSVCRT__wcsicoll @1029 + _wcsicoll_l=MSVCRT__wcsicoll_l @1030 + _wcslwr=MSVCRT__wcslwr @1031 + _wcslwr_l=MSVCRT__wcslwr_l @1032 + _wcslwr_s=MSVCRT__wcslwr_s @1033 + _wcslwr_s_l=MSVCRT__wcslwr_s_l @1034 + _wcsncoll=MSVCRT__wcsncoll @1035 + _wcsncoll_l=MSVCRT__wcsncoll_l @1036 + _wcsnicmp=MSVCRT__wcsnicmp @1037 + _wcsnicmp_l=MSVCRT__wcsnicmp_l @1038 + _wcsnicoll=MSVCRT__wcsnicoll @1039 + _wcsnicoll_l=MSVCRT__wcsnicoll_l @1040 + _wcsnset=MSVCRT__wcsnset @1041 + _wcsnset_s=MSVCRT__wcsnset_s @1042 + _wcsrev=MSVCRT__wcsrev @1043 + _wcsset=MSVCRT__wcsset @1044 + _wcsset_s=MSVCRT__wcsset_s @1045 + _wcstod_l=MSVCRT__wcstod_l @1046 + _wcstoi64=MSVCRT__wcstoi64 @1047 + _wcstoi64_l=MSVCRT__wcstoi64_l @1048 + _wcstol_l=MSVCRT__wcstol_l @1049 + _wcstombs_l=MSVCRT__wcstombs_l @1050 + _wcstombs_s_l=MSVCRT__wcstombs_s_l @1051 + _wcstoui64=MSVCRT__wcstoui64 @1052 + _wcstoui64_l=MSVCRT__wcstoui64_l @1053 + _wcstoul_l=MSVCRT__wcstoul_l @1054 + _wcsupr=MSVCRT__wcsupr @1055 + _wcsupr_l=MSVCRT__wcsupr_l @1056 + _wcsupr_s=MSVCRT__wcsupr_s @1057 + _wcsupr_s_l=MSVCRT__wcsupr_s_l @1058 + _wcsxfrm_l=MSVCRT__wcsxfrm_l @1059 + _wctime32=MSVCRT__wctime32 @1060 + _wctime32_s=MSVCRT__wctime32_s @1061 + _wctime64=MSVCRT__wctime64 @1062 + _wctime64_s=MSVCRT__wctime64_s @1063 + _wctomb_l=MSVCRT__wctomb_l @1064 + _wctomb_s_l=MSVCRT__wctomb_s_l @1065 + _wdupenv_s @1066 + _wenviron=MSVCRT__wenviron @1067 DATA + _wexecl @1068 + _wexecle @1069 + _wexeclp @1070 + _wexeclpe @1071 + _wexecv @1072 + _wexecve @1073 + _wexecvp @1074 + _wexecvpe @1075 + _wfdopen=MSVCRT__wfdopen @1076 + _wfindfirst32=MSVCRT__wfindfirst32 @1077 + _wfindfirst32i64 @1078 PRIVATE + _wfindfirst64=MSVCRT__wfindfirst64 @1079 + _wfindfirst64i32=MSVCRT__wfindfirst64i32 @1080 + _wfindnext32=MSVCRT__wfindnext32 @1081 + _wfindnext32i64 @1082 PRIVATE + _wfindnext64=MSVCRT__wfindnext64 @1083 + _wfindnext64i32=MSVCRT__wfindnext64i32 @1084 + _wfopen=MSVCRT__wfopen @1085 + _wfopen_s=MSVCRT__wfopen_s @1086 + _wfreopen=MSVCRT__wfreopen @1087 + _wfreopen_s=MSVCRT__wfreopen_s @1088 + _wfsopen=MSVCRT__wfsopen @1089 + _wfullpath=MSVCRT__wfullpath @1090 + _wgetcwd=MSVCRT__wgetcwd @1091 + _wgetdcwd=MSVCRT__wgetdcwd @1092 + _wgetdcwd_nolock @1093 PRIVATE + _wgetenv=MSVCRT__wgetenv @1094 + _wgetenv_s @1095 + _winmajor=MSVCRT__winmajor @1096 DATA + _winminor=MSVCRT__winminor @1097 DATA + _winver=MSVCRT__winver @1098 DATA + _wmakepath=MSVCRT__wmakepath @1099 + _wmakepath_s=MSVCRT__wmakepath_s @1100 + _wmkdir=MSVCRT__wmkdir @1101 + _wmktemp=MSVCRT__wmktemp @1102 + _wmktemp_s=MSVCRT__wmktemp_s @1103 + _wopen=MSVCRT__wopen @1104 + _wperror=MSVCRT__wperror @1105 + _wpgmptr=MSVCRT__wpgmptr @1106 DATA + _wpopen=MSVCRT__wpopen @1107 + _wprintf_l @1108 PRIVATE + _wprintf_p @1109 PRIVATE + _wprintf_p_l @1110 PRIVATE + _wprintf_s_l @1111 PRIVATE + _wputenv @1112 + _wputenv_s @1113 + _wremove=MSVCRT__wremove @1114 + _wrename=MSVCRT__wrename @1115 + _write=MSVCRT__write @1116 + _wrmdir=MSVCRT__wrmdir @1117 + _wscanf_l=MSVCRT__wscanf_l @1118 + _wscanf_s_l=MSVCRT__wscanf_s_l @1119 + _wsearchenv=MSVCRT__wsearchenv @1120 + _wsearchenv_s=MSVCRT__wsearchenv_s @1121 + _wsetlocale=MSVCRT__wsetlocale @1122 + _wsopen=MSVCRT__wsopen @1123 + _wsopen_s=MSVCRT__wsopen_s @1124 + _wspawnl=MSVCRT__wspawnl @1125 + _wspawnle=MSVCRT__wspawnle @1126 + _wspawnlp=MSVCRT__wspawnlp @1127 + _wspawnlpe=MSVCRT__wspawnlpe @1128 + _wspawnv=MSVCRT__wspawnv @1129 + _wspawnve=MSVCRT__wspawnve @1130 + _wspawnvp=MSVCRT__wspawnvp @1131 + _wspawnvpe=MSVCRT__wspawnvpe @1132 + _wsplitpath=MSVCRT__wsplitpath @1133 + _wsplitpath_s=MSVCRT__wsplitpath_s @1134 + _wstat32=MSVCRT__wstat32 @1135 + _wstat32i64=MSVCRT__wstat32i64 @1136 + _wstat64=MSVCRT__wstat64 @1137 + _wstat64i32=MSVCRT__wstat64i32 @1138 + _wstrdate=MSVCRT__wstrdate @1139 + _wstrdate_s @1140 + _wstrtime=MSVCRT__wstrtime @1141 + _wstrtime_s @1142 + _wsystem @1143 + _wtempnam=MSVCRT__wtempnam @1144 + _wtmpnam=MSVCRT__wtmpnam @1145 + _wtmpnam_s=MSVCRT__wtmpnam_s @1146 + _wtof=MSVCRT__wtof @1147 + _wtof_l=MSVCRT__wtof_l @1148 + _wtoi=MSVCRT__wtoi @1149 + _wtoi64=MSVCRT__wtoi64 @1150 + _wtoi64_l=MSVCRT__wtoi64_l @1151 + _wtoi_l=MSVCRT__wtoi_l @1152 + _wtol=MSVCRT__wtol @1153 + _wtol_l=MSVCRT__wtol_l @1154 + _wunlink=MSVCRT__wunlink @1155 + _wutime32 @1156 + _wutime64 @1157 + _y0=MSVCRT__y0 @1158 + _y1=MSVCRT__y1 @1159 + _yn=MSVCRT__yn @1160 + abort=MSVCRT_abort @1161 + abs=MSVCRT_abs @1162 + acos=MSVCRT_acos @1163 + acosf=MSVCRT_acosf @1164 + asctime=MSVCRT_asctime @1165 + asctime_s=MSVCRT_asctime_s @1166 + asin=MSVCRT_asin @1167 + asinf=MSVCRT_asinf @1168 + atan=MSVCRT_atan @1169 + atanf=MSVCRT_atanf @1170 + atan2=MSVCRT_atan2 @1171 + atan2f=MSVCRT_atan2f @1172 + atexit=MSVCRT_atexit @1173 PRIVATE + atof=MSVCRT_atof @1174 + atoi=MSVCRT_atoi @1175 + atol=MSVCRT_atol @1176 + bsearch=MSVCRT_bsearch @1177 + bsearch_s=MSVCRT_bsearch_s @1178 + btowc=MSVCRT_btowc @1179 + calloc=MSVCRT_calloc @1180 + ceil=MSVCRT_ceil @1181 + ceilf=MSVCRT_ceilf @1182 + clearerr=MSVCRT_clearerr @1183 + clearerr_s=MSVCRT_clearerr_s @1184 + clock=MSVCRT_clock @1185 + cos=MSVCRT_cos @1186 + cosf=MSVCRT_cosf @1187 + cosh=MSVCRT_cosh @1188 + coshf=MSVCRT_coshf @1189 + div=MSVCRT_div @1190 + exit=MSVCRT_exit @1191 + exp=MSVCRT_exp @1192 + expf=MSVCRT_expf @1193 + fabs=MSVCRT_fabs @1194 + fclose=MSVCRT_fclose @1195 + feof=MSVCRT_feof @1196 + ferror=MSVCRT_ferror @1197 + fflush=MSVCRT_fflush @1198 + fgetc=MSVCRT_fgetc @1199 + fgetpos=MSVCRT_fgetpos @1200 + fgets=MSVCRT_fgets @1201 + fgetwc=MSVCRT_fgetwc @1202 + fgetws=MSVCRT_fgetws @1203 + floor=MSVCRT_floor @1204 + floorf=MSVCRT_floorf @1205 + fmod=MSVCRT_fmod @1206 + fmodf=MSVCRT_fmodf @1207 + fopen=MSVCRT_fopen @1208 + fopen_s=MSVCRT_fopen_s @1209 + fprintf=MSVCRT_fprintf @1210 + fprintf_s=MSVCRT_fprintf_s @1211 + fputc=MSVCRT_fputc @1212 + fputs=MSVCRT_fputs @1213 + fputwc=MSVCRT_fputwc @1214 + fputws=MSVCRT_fputws @1215 + fread=MSVCRT_fread @1216 + fread_s=MSVCRT_fread_s @1217 + free=MSVCRT_free @1218 + freopen=MSVCRT_freopen @1219 + freopen_s=MSVCRT_freopen_s @1220 + frexp=MSVCRT_frexp @1221 + fscanf=MSVCRT_fscanf @1222 + fscanf_s=MSVCRT_fscanf_s @1223 + fseek=MSVCRT_fseek @1224 + fsetpos=MSVCRT_fsetpos @1225 + ftell=MSVCRT_ftell @1226 + fwprintf=MSVCRT_fwprintf @1227 + fwprintf_s=MSVCRT_fwprintf_s @1228 + fwrite=MSVCRT_fwrite @1229 + fwscanf=MSVCRT_fwscanf @1230 + fwscanf_s=MSVCRT_fwscanf_s @1231 + getc=MSVCRT_getc @1232 + getchar=MSVCRT_getchar @1233 + getenv=MSVCRT_getenv @1234 + getenv_s @1235 + gets=MSVCRT_gets @1236 + gets_s=MSVCRT_gets_s @1237 + getwc=MSVCRT_getwc @1238 + getwchar=MSVCRT_getwchar @1239 + is_wctype=ntdll.iswctype @1240 + isalnum=MSVCRT_isalnum @1241 + isalpha=MSVCRT_isalpha @1242 + iscntrl=MSVCRT_iscntrl @1243 + isdigit=MSVCRT_isdigit @1244 + isgraph=MSVCRT_isgraph @1245 + isleadbyte=MSVCRT_isleadbyte @1246 + islower=MSVCRT_islower @1247 + isprint=MSVCRT_isprint @1248 + ispunct=MSVCRT_ispunct @1249 + isspace=MSVCRT_isspace @1250 + isupper=MSVCRT_isupper @1251 + iswalnum=MSVCRT_iswalnum @1252 + iswalpha=ntdll.iswalpha @1253 + iswascii=MSVCRT_iswascii @1254 + iswcntrl=MSVCRT_iswcntrl @1255 + iswctype=ntdll.iswctype @1256 + iswdigit=MSVCRT_iswdigit @1257 + iswgraph=MSVCRT_iswgraph @1258 + iswlower=MSVCRT_iswlower @1259 + iswprint=MSVCRT_iswprint @1260 + iswpunct=MSVCRT_iswpunct @1261 + iswspace=MSVCRT_iswspace @1262 + iswupper=MSVCRT_iswupper @1263 + iswxdigit=MSVCRT_iswxdigit @1264 + isxdigit=MSVCRT_isxdigit @1265 + labs=MSVCRT_labs @1266 + ldexp=MSVCRT_ldexp @1267 + ldiv=MSVCRT_ldiv @1268 + localeconv=MSVCRT_localeconv @1269 + log=MSVCRT_log @1270 + logf=MSVCRT_logf @1271 + log10=MSVCRT_log10 @1272 + log10f=MSVCRT_log10f @1273 + longjmp=MSVCRT_longjmp @1274 + malloc=MSVCRT_malloc @1275 + mblen=MSVCRT_mblen @1276 + mbrlen=MSVCRT_mbrlen @1277 + mbrtowc=MSVCRT_mbrtowc @1278 + mbsrtowcs=MSVCRT_mbsrtowcs @1279 + mbsrtowcs_s=MSVCRT_mbsrtowcs_s @1280 + mbstowcs=MSVCRT_mbstowcs @1281 + mbstowcs_s=MSVCRT__mbstowcs_s @1282 + mbtowc=MSVCRT_mbtowc @1283 + memchr=MSVCRT_memchr @1284 + memcmp=MSVCRT_memcmp @1285 + memcpy=MSVCRT_memcpy @1286 + memcpy_s=MSVCRT_memcpy_s @1287 + memmove=MSVCRT_memmove @1288 + memmove_s=MSVCRT_memmove_s @1289 + memset=MSVCRT_memset @1290 + modf=MSVCRT_modf @1291 + modff=MSVCRT_modff @1292 + perror=MSVCRT_perror @1293 + pow=MSVCRT_pow @1294 + powf=MSVCRT_powf @1295 + printf=MSVCRT_printf @1296 + printf_s=MSVCRT_printf_s @1297 + putc=MSVCRT_putc @1298 + putchar=MSVCRT_putchar @1299 + puts=MSVCRT_puts @1300 + putwc=MSVCRT_fputwc @1301 + putwchar=MSVCRT__fputwchar @1302 + qsort=MSVCRT_qsort @1303 + qsort_s=MSVCRT_qsort_s @1304 + raise=MSVCRT_raise @1305 + rand=MSVCRT_rand @1306 + rand_s=MSVCRT_rand_s @1307 + realloc=MSVCRT_realloc @1308 + remove=MSVCRT_remove @1309 + rename=MSVCRT_rename @1310 + rewind=MSVCRT_rewind @1311 + scanf=MSVCRT_scanf @1312 + scanf_s=MSVCRT_scanf_s @1313 + setbuf=MSVCRT_setbuf @1314 + setjmp=MSVCRT__setjmp @1315 PRIVATE + setlocale=MSVCRT_setlocale @1316 + setvbuf=MSVCRT_setvbuf @1317 + signal=MSVCRT_signal @1318 + sin=MSVCRT_sin @1319 + sinf=MSVCRT_sinf @1320 + sinh=MSVCRT_sinh @1321 + sinhf=MSVCRT_sinhf @1322 + sprintf=MSVCRT_sprintf @1323 + sprintf_s=MSVCRT_sprintf_s @1324 + sqrt=MSVCRT_sqrt @1325 + sqrtf=MSVCRT_sqrtf @1326 + srand=MSVCRT_srand @1327 + sscanf=MSVCRT_sscanf @1328 + sscanf_s=MSVCRT_sscanf_s @1329 + strcat=ntdll.strcat @1330 + strcat_s=MSVCRT_strcat_s @1331 + strchr=MSVCRT_strchr @1332 + strcmp=MSVCRT_strcmp @1333 + strcoll=MSVCRT_strcoll @1334 + strcpy=MSVCRT_strcpy @1335 + strcpy_s=MSVCRT_strcpy_s @1336 + strcspn=MSVCRT_strcspn @1337 + strerror=MSVCRT_strerror @1338 + strerror_s=MSVCRT_strerror_s @1339 + strftime=MSVCRT_strftime @1340 + strlen=MSVCRT_strlen @1341 + strncat=MSVCRT_strncat @1342 + strncat_s=MSVCRT_strncat_s @1343 + strncmp=MSVCRT_strncmp @1344 + strncpy=MSVCRT_strncpy @1345 + strncpy_s=MSVCRT_strncpy_s @1346 + strnlen=MSVCRT_strnlen @1347 + strpbrk=MSVCRT_strpbrk @1348 + strrchr=MSVCRT_strrchr @1349 + strspn=ntdll.strspn @1350 + strstr=MSVCRT_strstr @1351 + strtod=MSVCRT_strtod @1352 + strtok=MSVCRT_strtok @1353 + strtok_s=MSVCRT_strtok_s @1354 + strtol=MSVCRT_strtol @1355 + strtoul=MSVCRT_strtoul @1356 + strxfrm=MSVCRT_strxfrm @1357 + swprintf_s=MSVCRT_swprintf_s @1358 + swscanf=MSVCRT_swscanf @1359 + swscanf_s=MSVCRT_swscanf_s @1360 + system=MSVCRT_system @1361 + tan=MSVCRT_tan @1362 + tanf=MSVCRT_tanf @1363 + tanh=MSVCRT_tanh @1364 + tanhf=MSVCRT_tanhf @1365 + tmpfile=MSVCRT_tmpfile @1366 + tmpfile_s=MSVCRT_tmpfile_s @1367 + tmpnam=MSVCRT_tmpnam @1368 + tmpnam_s=MSVCRT_tmpnam_s @1369 + tolower=MSVCRT_tolower @1370 + toupper=MSVCRT_toupper @1371 + towlower=MSVCRT_towlower @1372 + towupper=MSVCRT_towupper @1373 + ungetc=MSVCRT_ungetc @1374 + ungetwc=MSVCRT_ungetwc @1375 + vfprintf=MSVCRT_vfprintf @1376 + vfprintf_s=MSVCRT_vfprintf_s @1377 + vfwprintf=MSVCRT_vfwprintf @1378 + vfwprintf_s=MSVCRT_vfwprintf_s @1379 + vprintf=MSVCRT_vprintf @1380 + vprintf_s=MSVCRT_vprintf_s @1381 + vsprintf=MSVCRT_vsprintf @1382 + vsprintf_s=MSVCRT_vsprintf_s @1383 + vswprintf_s=MSVCRT_vswprintf_s @1384 + vwprintf=MSVCRT_vwprintf @1385 + vwprintf_s=MSVCRT_vwprintf_s @1386 + wcrtomb=MSVCRT_wcrtomb @1387 + wcrtomb_s @1388 PRIVATE + wcscat=ntdll.wcscat @1389 + wcscat_s=MSVCRT_wcscat_s @1390 + wcschr=MSVCRT_wcschr @1391 + wcscmp=MSVCRT_wcscmp @1392 + wcscoll=MSVCRT_wcscoll @1393 + wcscpy=ntdll.wcscpy @1394 + wcscpy_s=MSVCRT_wcscpy_s @1395 + wcscspn=ntdll.wcscspn @1396 + wcsftime=MSVCRT_wcsftime @1397 + wcslen=MSVCRT_wcslen @1398 + wcsncat=ntdll.wcsncat @1399 + wcsncat_s=MSVCRT_wcsncat_s @1400 + wcsncmp=MSVCRT_wcsncmp @1401 + wcsncpy=MSVCRT_wcsncpy @1402 + wcsncpy_s=MSVCRT_wcsncpy_s @1403 + wcsnlen=MSVCRT_wcsnlen @1404 + wcspbrk=MSVCRT_wcspbrk @1405 + wcsrchr=MSVCRT_wcsrchr @1406 + wcsrtombs=MSVCRT_wcsrtombs @1407 + wcsrtombs_s=MSVCRT_wcsrtombs_s @1408 + wcsspn=ntdll.wcsspn @1409 + wcsstr=MSVCRT_wcsstr @1410 + wcstod=MSVCRT_wcstod @1411 + wcstok=MSVCRT_wcstok @1412 + wcstok_s=MSVCRT_wcstok_s @1413 + wcstol=MSVCRT_wcstol @1414 + wcstombs=MSVCRT_wcstombs @1415 + wcstombs_s=MSVCRT_wcstombs_s @1416 + wcstoul=MSVCRT_wcstoul @1417 + wcsxfrm=MSVCRT_wcsxfrm @1418 + wctob=MSVCRT_wctob @1419 + wctomb=MSVCRT_wctomb @1420 + wctomb_s=MSVCRT_wctomb_s @1421 + wprintf=MSVCRT_wprintf @1422 + wprintf_s=MSVCRT_wprintf_s @1423 + wscanf=MSVCRT_wscanf @1424 + wscanf_s=MSVCRT_wscanf_s @1425 diff --git a/lib64/wine/libmsvcr90.def b/lib64/wine/libmsvcr90.def new file mode 100644 index 0000000..46b5c1d --- /dev/null +++ b/lib64/wine/libmsvcr90.def @@ -0,0 +1,1408 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/msvcr90/msvcr90.spec; do not edit! + +LIBRARY msvcr90.dll + +EXPORTS + ??0__non_rtti_object@std@@QEAA@AEBV01@@Z=MSVCRT___non_rtti_object_copy_ctor @1 + ??0__non_rtti_object@std@@QEAA@PEBD@Z=MSVCRT___non_rtti_object_ctor @2 + ??0bad_cast@std@@AEAA@PEBQEBD@Z=MSVCRT_bad_cast_ctor @3 + ??0bad_cast@std@@QEAA@AEBV01@@Z=MSVCRT_bad_cast_copy_ctor @4 + ??0bad_cast@std@@QEAA@PEBD@Z=MSVCRT_bad_cast_ctor_charptr @5 + ??0bad_typeid@std@@QEAA@AEBV01@@Z=MSVCRT_bad_typeid_copy_ctor @6 + ??0bad_typeid@std@@QEAA@PEBD@Z=MSVCRT_bad_typeid_ctor @7 + ??0exception@std@@QEAA@AEBQEBD@Z=MSVCRT_exception_ctor @8 + ??0exception@std@@QEAA@AEBQEBDH@Z=MSVCRT_exception_ctor_noalloc @9 + ??0exception@std@@QEAA@AEBV01@@Z=MSVCRT_exception_copy_ctor @10 + ??0exception@std@@QEAA@XZ=MSVCRT_exception_default_ctor @11 + ??1__non_rtti_object@std@@UEAA@XZ=MSVCRT___non_rtti_object_dtor @12 + ??1bad_cast@std@@UEAA@XZ=MSVCRT_bad_cast_dtor @13 + ??1bad_typeid@std@@UEAA@XZ=MSVCRT_bad_typeid_dtor @14 + ??1exception@std@@UEAA@XZ=MSVCRT_exception_dtor @15 + ??1type_info@@UEAA@XZ=MSVCRT_type_info_dtor @16 + ??2@YAPEAX_K@Z=MSVCRT_operator_new @17 + ??2@YAPEAX_KHPEBDH@Z=MSVCRT_operator_new_dbg @18 + ??3@YAXPEAX@Z=MSVCRT_operator_delete @19 + ??4__non_rtti_object@std@@QEAAAEAV01@AEBV01@@Z=MSVCRT___non_rtti_object_opequals @20 + ??4bad_cast@std@@QEAAAEAV01@AEBV01@@Z=MSVCRT_bad_cast_opequals @21 + ??4bad_typeid@std@@QEAAAEAV01@AEBV01@@Z=MSVCRT_bad_typeid_opequals @22 + ??4exception@std@@QEAAAEAV01@AEBV01@@Z=MSVCRT_exception_opequals @23 + ??8type_info@@QEBA_NAEBV0@@Z=MSVCRT_type_info_opequals_equals @24 + ??9type_info@@QEBA_NAEBV0@@Z=MSVCRT_type_info_opnot_equals @25 + ??_7__non_rtti_object@std@@6B@=MSVCRT___non_rtti_object_vtable @26 DATA + ??_7bad_cast@std@@6B@=MSVCRT_bad_cast_vtable @27 DATA + ??_7bad_typeid@std@@6B@=MSVCRT_bad_typeid_vtable @28 DATA + ??_7exception@@6B@=MSVCRT_exception_old_vtable @29 DATA + ??_7exception@std@@6B@=MSVCRT_exception_vtable @30 DATA + ??_Fbad_cast@std@@QEAAXXZ=MSVCRT_bad_cast_default_ctor @31 + ??_Fbad_typeid@std@@QEAAXXZ=MSVCRT_bad_typeid_default_ctor @32 + ??_U@YAPEAX_K@Z=MSVCRT_operator_new @33 + ??_U@YAPEAX_KHPEBDH@Z=MSVCRT_operator_new_dbg @34 + ??_V@YAXPEAX@Z=MSVCRT_operator_delete @35 + ?_Name_base@type_info@@CAPEBDPEBV1@PEAU__type_info_node@@@Z @36 PRIVATE + ?_Name_base_internal@type_info@@CAPEBDPEBV1@PEAU__type_info_node@@@Z @37 PRIVATE + ?_Type_info_dtor@type_info@@CAXPEAV1@@Z @38 PRIVATE + ?_Type_info_dtor_internal@type_info@@CAXPEAV1@@Z @39 PRIVATE + ?_ValidateExecute@@YAHP6A_JXZ@Z @40 PRIVATE + ?_ValidateRead@@YAHPEBXI@Z @41 PRIVATE + ?_ValidateWrite@@YAHPEAXI@Z @42 PRIVATE + __uncaught_exception=MSVCRT___uncaught_exception @43 + ?_inconsistency@@YAXXZ @44 PRIVATE + ?_invalid_parameter@@YAXPEBG00I_K@Z=MSVCRT__invalid_parameter @45 + ?_is_exception_typeof@@YAHAEBVtype_info@@PEAU_EXCEPTION_POINTERS@@@Z=_is_exception_typeof @46 + ?_name_internal_method@type_info@@QEBAPEBDPEAU__type_info_node@@@Z=type_info_name_internal_method @47 + ?_open@@YAHPEBDHH@Z=MSVCRT__open @48 + ?_query_new_handler@@YAP6AH_K@ZXZ=MSVCRT__query_new_handler @49 + ?_query_new_mode@@YAHXZ=MSVCRT__query_new_mode @50 + ?_set_new_handler@@YAP6AH_K@ZH@Z @51 PRIVATE + ?_set_new_handler@@YAP6AH_K@ZP6AH0@Z@Z=MSVCRT__set_new_handler @52 + ?_set_new_mode@@YAHH@Z=MSVCRT__set_new_mode @53 + ?_set_se_translator@@YAP6AXIPEAU_EXCEPTION_POINTERS@@@ZH@Z @54 PRIVATE + ?_set_se_translator@@YAP6AXIPEAU_EXCEPTION_POINTERS@@@ZP6AXI0@Z@Z=MSVCRT__set_se_translator @55 + ?_sopen@@YAHPEBDHHH@Z=MSVCRT__sopen @56 + ?_type_info_dtor_internal_method@type_info@@QEAAXXZ @57 PRIVATE + ?_wopen@@YAHPEB_WHH@Z=MSVCRT__wopen @58 + ?_wsopen@@YAHPEB_WHHH@Z=MSVCRT__wsopen @59 + ?before@type_info@@QEBAHAEBV1@@Z=MSVCRT_type_info_before @60 + ?name@type_info@@QEBAPEBDPEAU__type_info_node@@@Z=type_info_name_internal_method @61 + ?raw_name@type_info@@QEBAPEBDXZ=MSVCRT_type_info_raw_name @62 + ?set_new_handler@@YAP6AXXZP6AXXZ@Z=MSVCRT_set_new_handler @63 + ?set_terminate@@YAP6AXXZH@Z @64 PRIVATE + ?set_terminate@@YAP6AXXZP6AXXZ@Z=MSVCRT_set_terminate @65 + ?set_unexpected@@YAP6AXXZH@Z @66 PRIVATE + ?set_unexpected@@YAP6AXXZP6AXXZ@Z=MSVCRT_set_unexpected @67 + ?swprintf@@YAHPAGIPBGZZ=MSVCRT__snwprintf @68 + ?swprintf@@YAHPA_WIPB_WZZ=MSVCRT__snwprintf @69 + ?terminate@@YAXXZ=MSVCRT_terminate @70 + ?unexpected@@YAXXZ=MSVCRT_unexpected @71 + ?vswprintf@@YAHPA_WIPB_WPAD@Z=MSVCRT_vsnwprintf @72 + ?what@exception@std@@UEBAPEBDXZ=MSVCRT_what_exception @73 + $I10_OUTPUT=MSVCRT_I10_OUTPUT @74 + _CRT_RTC_INIT @75 + _CRT_RTC_INITW @76 + _CreateFrameInfo @77 + _CxxThrowException @78 + _FindAndUnlinkFrame @79 + _Getdays @80 + _Getmonths @81 + _Gettnames @82 + _HUGE=MSVCRT__HUGE @83 DATA + _IsExceptionObjectToBeDestroyed @84 + _NLG_Dispatch2 @85 PRIVATE + _NLG_Return @86 PRIVATE + _NLG_Return2 @87 PRIVATE + _Strftime @88 + _XcptFilter @89 + __AdjustPointer @90 + __BuildCatchObject @91 PRIVATE + __BuildCatchObjectHelper @92 PRIVATE + __C_specific_handler=ntdll.__C_specific_handler @93 + __CppXcptFilter @94 + __CxxCallUnwindDelDtor @95 PRIVATE + __CxxCallUnwindDtor @96 PRIVATE + __CxxCallUnwindStdDelDtor @97 PRIVATE + __CxxCallUnwindVecDtor @98 PRIVATE + __CxxDetectRethrow @99 + __CxxExceptionFilter @100 + __CxxFrameHandler @101 + __CxxFrameHandler2=__CxxFrameHandler @102 + __CxxFrameHandler3=__CxxFrameHandler @103 + __CxxQueryExceptionSize @104 + __CxxRegisterExceptionObject @105 + __CxxUnregisterExceptionObject @106 + __DestructExceptionObject @107 + __FrameUnwindFilter @108 PRIVATE + __RTCastToVoid=MSVCRT___RTCastToVoid @109 + __RTDynamicCast=MSVCRT___RTDynamicCast @110 + __RTtypeid=MSVCRT___RTtypeid @111 + __STRINGTOLD @112 + __STRINGTOLD_L @113 PRIVATE + __TypeMatch @114 PRIVATE + ___lc_codepage_func @115 + ___lc_collate_cp_func @116 + ___lc_handle_func @117 + ___mb_cur_max_func=MSVCRT____mb_cur_max_func @118 + ___mb_cur_max_l_func @119 + ___setlc_active_func=MSVCRT____setlc_active_func @120 + ___unguarded_readlc_active_add_func=MSVCRT____unguarded_readlc_active_add_func @121 + __argc=MSVCRT___argc @122 DATA + __argv=MSVCRT___argv @123 DATA + __badioinfo=MSVCRT___badioinfo @124 DATA + __clean_type_info_names_internal @125 + __create_locale=MSVCRT__create_locale @126 + __crtCompareStringA @127 + __crtCompareStringW @128 + __crtGetLocaleInfoW @129 + __crtGetStringTypeW @130 + __crtLCMapStringA @131 + __crtLCMapStringW @132 + __daylight=MSVCRT___p__daylight @133 + __dllonexit @134 + __doserrno=MSVCRT___doserrno @135 + __dstbias=MSVCRT___p__dstbias @136 + ___fls_getvalue@4 @137 PRIVATE + ___fls_setvalue@8 @138 PRIVATE + __fpecode @139 + __free_locale=MSVCRT__free_locale @140 + __get_app_type @141 PRIVATE + __get_current_locale=MSVCRT__get_current_locale @142 + __get_flsindex @143 PRIVATE + __get_tlsindex @144 PRIVATE + __getmainargs @145 + __initenv=MSVCRT___initenv @146 DATA + __iob_func=__p__iob @147 + __isascii=MSVCRT___isascii @148 + __iscsym=MSVCRT___iscsym @149 + __iscsymf=MSVCRT___iscsymf @150 + __iswcsym @151 PRIVATE + __iswcsymf @152 PRIVATE + __lc_codepage=MSVCRT___lc_codepage @153 DATA + __lc_collate_cp=MSVCRT___lc_collate_cp @154 DATA + __lc_handle=MSVCRT___lc_handle @155 DATA + __lconv_init @156 + __mb_cur_max=MSVCRT___mb_cur_max @157 DATA + __p___argc=MSVCRT___p___argc @158 + __p___argv=MSVCRT___p___argv @159 + __p___initenv @160 + __p___mb_cur_max @161 + __p___wargv=MSVCRT___p___wargv @162 + __p___winitenv @163 + __p__acmdln=MSVCRT___p__acmdln @164 + __p__amblksiz @165 + __p__commode @166 + __p__daylight=MSVCRT___p__daylight @167 + __p__dstbias=MSVCRT___p__dstbias @168 + __p__environ=MSVCRT___p__environ @169 + __p__fmode=MSVCRT___p__fmode @170 + __p__iob @171 + __p__mbcasemap @172 PRIVATE + __p__mbctype @173 + __p__pctype=MSVCRT___p__pctype @174 + __p__pgmptr=MSVCRT___p__pgmptr @175 + __p__pwctype @176 PRIVATE + __p__timezone=MSVCRT___p__timezone @177 + __p__tzname @178 + __p__wcmdln=MSVCRT___p__wcmdln @179 + __p__wenviron=MSVCRT___p__wenviron @180 + __p__wpgmptr=MSVCRT___p__wpgmptr @181 + __pctype_func=MSVCRT___pctype_func @182 + __pioinfo=MSVCRT___pioinfo @183 DATA + __pwctype_func @184 PRIVATE + __pxcptinfoptrs=MSVCRT___pxcptinfoptrs @185 + __report_gsfailure @186 PRIVATE + __set_app_type=MSVCRT___set_app_type @187 + __set_flsgetvalue @188 PRIVATE + __setlc_active=MSVCRT___setlc_active @189 DATA + __setusermatherr=MSVCRT___setusermatherr @190 + __strncnt=MSVCRT___strncnt @191 + __swprintf_l=MSVCRT___swprintf_l @192 + __sys_errlist @193 + __sys_nerr @194 + __threadhandle=kernel32.GetCurrentThread @195 + __threadid=kernel32.GetCurrentThreadId @196 + __timezone=MSVCRT___p__timezone @197 + __toascii=MSVCRT___toascii @198 + __tzname=__p__tzname @199 + __unDName @200 + __unDNameEx @201 + __unDNameHelper @202 PRIVATE + __unguarded_readlc_active=MSVCRT___unguarded_readlc_active @203 DATA + __vswprintf_l=MSVCRT_vswprintf_l @204 + __wargv=MSVCRT___wargv @205 DATA + __wcserror=MSVCRT___wcserror @206 + __wcserror_s=MSVCRT___wcserror_s @207 + __wcsncnt @208 PRIVATE + __wgetmainargs @209 + __winitenv=MSVCRT___winitenv @210 DATA + _abnormal_termination @211 + _abs64 @212 + _access=MSVCRT__access @213 + _access_s=MSVCRT__access_s @214 + _acmdln=MSVCRT__acmdln @215 DATA + _aexit_rtn @216 DATA + _aligned_free @217 + _aligned_malloc @218 + _aligned_msize @219 + _aligned_offset_malloc @220 + _aligned_offset_realloc @221 + _aligned_offset_recalloc @222 PRIVATE + _aligned_realloc @223 + _aligned_recalloc @224 PRIVATE + _amsg_exit @225 + _assert=MSVCRT__assert @226 + _atodbl=MSVCRT__atodbl @227 + _atodbl_l=MSVCRT__atodbl_l @228 + _atof_l=MSVCRT__atof_l @229 + _atoflt=MSVCRT__atoflt @230 + _atoflt_l=MSVCRT__atoflt_l @231 + _atoi64=MSVCRT__atoi64 @232 + _atoi64_l=MSVCRT__atoi64_l @233 + _atoi_l=MSVCRT__atoi_l @234 + _atol_l=MSVCRT__atol_l @235 + _atoldbl=MSVCRT__atoldbl @236 + _atoldbl_l @237 PRIVATE + _beep=MSVCRT__beep @238 + _beginthread @239 + _beginthreadex @240 + _byteswap_uint64 @241 + _byteswap_ulong=MSVCRT__byteswap_ulong @242 + _byteswap_ushort @243 + _c_exit=MSVCRT__c_exit @244 + _cabs=MSVCRT__cabs @245 + _callnewh @246 + _calloc_crt=MSVCRT_calloc @247 + _cexit=MSVCRT__cexit @248 + _cgets @249 + _cgets_s @250 PRIVATE + _cgetws @251 PRIVATE + _cgetws_s @252 PRIVATE + _chdir=MSVCRT__chdir @253 + _chdrive=MSVCRT__chdrive @254 + _chgsign=MSVCRT__chgsign @255 + _chmod=MSVCRT__chmod @256 + _chsize=MSVCRT__chsize @257 + _chsize_s=MSVCRT__chsize_s @258 + _clearfp @259 + _close=MSVCRT__close @260 + _commit=MSVCRT__commit @261 + _commode=MSVCRT__commode @262 DATA + _configthreadlocale @263 + _control87 @264 + _controlfp @265 + _controlfp_s @266 + _copysign=MSVCRT__copysign @267 + _copysignf=MSVCRT__copysignf @268 + _cprintf @269 + _cprintf_l @270 PRIVATE + _cprintf_p @271 PRIVATE + _cprintf_p_l @272 PRIVATE + _cprintf_s @273 PRIVATE + _cprintf_s_l @274 PRIVATE + _cputs @275 + _cputws @276 + _creat=MSVCRT__creat @277 + _create_locale=MSVCRT__create_locale @278 + __crt_debugger_hook=MSVCRT__crt_debugger_hook @279 + _cscanf @280 + _cscanf_l @281 + _cscanf_s @282 + _cscanf_s_l @283 + _ctime32=MSVCRT__ctime32 @284 + _ctime32_s=MSVCRT__ctime32_s @285 + _ctime64=MSVCRT__ctime64 @286 + _ctime64_s=MSVCRT__ctime64_s @287 + _cwait @288 + _cwprintf @289 + _cwprintf_l @290 PRIVATE + _cwprintf_p @291 PRIVATE + _cwprintf_p_l @292 PRIVATE + _cwprintf_s @293 PRIVATE + _cwprintf_s_l @294 PRIVATE + _cwscanf @295 + _cwscanf_l @296 + _cwscanf_s @297 + _cwscanf_s_l @298 + _daylight=MSVCRT___daylight @299 DATA + _decode_pointer=MSVCRT_decode_pointer @300 + _difftime32=MSVCRT__difftime32 @301 + _difftime64=MSVCRT__difftime64 @302 + _dosmaperr @303 PRIVATE + _dstbias=MSVCRT__dstbias @304 DATA + _dup=MSVCRT__dup @305 + _dup2=MSVCRT__dup2 @306 + _dupenv_s @307 + _ecvt=MSVCRT__ecvt @308 + _ecvt_s=MSVCRT__ecvt_s @309 + _encode_pointer=MSVCRT_encode_pointer @310 + _encoded_null @311 + _endthread @312 + _endthreadex @313 + _environ=MSVCRT__environ @314 DATA + _eof=MSVCRT__eof @315 + _errno=MSVCRT__errno @316 + _execl @317 + _execle @318 + _execlp @319 + _execlpe @320 + _execv @321 + _execve=MSVCRT__execve @322 + _execvp @323 + _execvpe @324 + _exit=MSVCRT__exit @325 + _expand @326 + _fclose_nolock=MSVCRT__fclose_nolock @327 + _fcloseall=MSVCRT__fcloseall @328 + _fcvt=MSVCRT__fcvt @329 + _fcvt_s=MSVCRT__fcvt_s @330 + _fdopen=MSVCRT__fdopen @331 + _fflush_nolock=MSVCRT__fflush_nolock @332 + _fgetc_nolock=MSVCRT__fgetc_nolock @333 + _fgetchar=MSVCRT__fgetchar @334 + _fgetwc_nolock=MSVCRT__fgetwc_nolock @335 + _fgetwchar=MSVCRT__fgetwchar @336 + _filbuf=MSVCRT__filbuf @337 + _filelength=MSVCRT__filelength @338 + _filelengthi64=MSVCRT__filelengthi64 @339 + _fileno=MSVCRT__fileno @340 + _findclose=MSVCRT__findclose @341 + _findfirst32=MSVCRT__findfirst32 @342 + _findfirst32i64 @343 PRIVATE + _findfirst64=MSVCRT__findfirst64 @344 + _findfirst64i32=MSVCRT__findfirst64i32 @345 + _findnext32=MSVCRT__findnext32 @346 + _findnext32i64 @347 PRIVATE + _findnext64=MSVCRT__findnext64 @348 + _findnext64i32=MSVCRT__findnext64i32 @349 + _finite=MSVCRT__finite @350 + _finitef=MSVCRT__finitef @351 + _flsbuf=MSVCRT__flsbuf @352 + _flushall=MSVCRT__flushall @353 + _fmode=MSVCRT__fmode @354 DATA + _fpclass=MSVCRT__fpclass @355 + _fpieee_flt @356 + _fpreset @357 + _fprintf_l @358 PRIVATE + _fprintf_p @359 PRIVATE + _fprintf_p_l @360 PRIVATE + _fprintf_s_l @361 PRIVATE + _fputc_nolock=MSVCRT__fputc_nolock @362 + _fputchar=MSVCRT__fputchar @363 + _fputwc_nolock=MSVCRT__fputwc_nolock @364 + _fputwchar=MSVCRT__fputwchar @365 + _fread_nolock=MSVCRT__fread_nolock @366 + _fread_nolock_s=MSVCRT__fread_nolock_s @367 + _free_locale=MSVCRT__free_locale @368 + _freea @369 PRIVATE + _freea_s @370 PRIVATE + _freefls @371 PRIVATE + _fscanf_l=MSVCRT__fscanf_l @372 + _fscanf_s_l=MSVCRT__fscanf_s_l @373 + _fseek_nolock=MSVCRT__fseek_nolock @374 + _fseeki64=MSVCRT__fseeki64 @375 + _fseeki64_nolock=MSVCRT__fseeki64_nolock @376 + _fsopen=MSVCRT__fsopen @377 + _fstat32=MSVCRT__fstat32 @378 + _fstat32i64=MSVCRT__fstat32i64 @379 + _fstat64=MSVCRT__fstat64 @380 + _fstat64i32=MSVCRT__fstat64i32 @381 + _ftell_nolock=MSVCRT__ftell_nolock @382 + _ftelli64=MSVCRT__ftelli64 @383 + _ftelli64_nolock=MSVCRT__ftelli64_nolock @384 + _ftime32=MSVCRT__ftime32 @385 + _ftime32_s=MSVCRT__ftime32_s @386 + _ftime64=MSVCRT__ftime64 @387 + _ftime64_s=MSVCRT__ftime64_s @388 + _fullpath=MSVCRT__fullpath @389 + _futime32 @390 + _futime64 @391 + _fwprintf_l=MSVCRT__fwprintf_l @392 + _fwprintf_p @393 PRIVATE + _fwprintf_p_l @394 PRIVATE + _fwprintf_s_l @395 PRIVATE + _fwrite_nolock=MSVCRT__fwrite_nolock @396 + _fwscanf_l=MSVCRT__fwscanf_l @397 + _fwscanf_s_l=MSVCRT__fwscanf_s_l @398 + _gcvt=MSVCRT__gcvt @399 + _gcvt_s=MSVCRT__gcvt_s @400 + _get_amblksiz @401 PRIVATE + _get_current_locale=MSVCRT__get_current_locale @402 + _get_daylight @403 + _get_doserrno @404 + _get_dstbias=MSVCRT__get_dstbias @405 + _get_errno @406 + _get_fmode=MSVCRT__get_fmode @407 + _get_heap_handle @408 + _get_invalid_parameter_handler @409 + _get_osfhandle=MSVCRT__get_osfhandle @410 + _get_output_format=MSVCRT__get_output_format @411 + _get_pgmptr @412 + _get_printf_count_output=MSVCRT__get_printf_count_output @413 + _get_purecall_handler @414 + _get_sbh_threshold @415 + _get_terminate=MSVCRT__get_terminate @416 + _get_timezone @417 + _get_tzname=MSVCRT__get_tzname @418 + _get_unexpected=MSVCRT__get_unexpected @419 + _get_wpgmptr @420 + _getc_nolock=MSVCRT__fgetc_nolock @421 + _getch @422 + _getch_nolock @423 + _getche @424 + _getche_nolock @425 + _getcwd=MSVCRT__getcwd @426 + _getdcwd=MSVCRT__getdcwd @427 + _getdcwd_nolock @428 PRIVATE + _getdiskfree=MSVCRT__getdiskfree @429 + _getdllprocaddr @430 + _getdrive=MSVCRT__getdrive @431 + _getdrives=kernel32.GetLogicalDrives @432 + _getmaxstdio=MSVCRT__getmaxstdio @433 + _getmbcp @434 + _getpid @435 + _getptd @436 + _getsystime @437 PRIVATE + _getw=MSVCRT__getw @438 + _getwc_nolock=MSVCRT__fgetwc_nolock @439 + _getwch @440 + _getwch_nolock @441 + _getwche @442 + _getwche_nolock @443 + _getws=MSVCRT__getws @444 + _getws_s @445 PRIVATE + _gmtime32=MSVCRT__gmtime32 @446 + _gmtime32_s=MSVCRT__gmtime32_s @447 + _gmtime64=MSVCRT__gmtime64 @448 + _gmtime64_s=MSVCRT__gmtime64_s @449 + _heapadd @450 + _heapchk @451 + _heapmin @452 + _heapset @453 + _heapused @454 PRIVATE + _heapwalk @455 + _hypot @456 + _hypotf=MSVCRT__hypotf @457 + _i64toa=ntdll._i64toa @458 + _i64toa_s=MSVCRT__i64toa_s @459 + _i64tow=ntdll._i64tow @460 + _i64tow_s=MSVCRT__i64tow_s @461 + _initptd @462 PRIVATE + _initterm @463 + _initterm_e @464 + _invalid_parameter=MSVCRT__invalid_parameter @465 + _invalid_parameter_noinfo @466 + _invoke_watson @467 PRIVATE + _iob=MSVCRT__iob @468 DATA + _isalnum_l=MSVCRT__isalnum_l @469 + _isalpha_l=MSVCRT__isalpha_l @470 + _isatty=MSVCRT__isatty @471 + _iscntrl_l=MSVCRT__iscntrl_l @472 + _isctype=MSVCRT__isctype @473 + _isctype_l=MSVCRT__isctype_l @474 + _isdigit_l=MSVCRT__isdigit_l @475 + _isgraph_l=MSVCRT__isgraph_l @476 + _isleadbyte_l=MSVCRT__isleadbyte_l @477 + _islower_l=MSVCRT__islower_l @478 + _ismbbalnum @479 PRIVATE + _ismbbalnum_l @480 PRIVATE + _ismbbalpha @481 PRIVATE + _ismbbalpha_l @482 PRIVATE + _ismbbgraph @483 PRIVATE + _ismbbgraph_l @484 PRIVATE + _ismbbkalnum @485 PRIVATE + _ismbbkalnum_l @486 PRIVATE + _ismbbkana @487 + _ismbbkana_l @488 PRIVATE + _ismbbkprint @489 PRIVATE + _ismbbkprint_l @490 PRIVATE + _ismbbkpunct @491 PRIVATE + _ismbbkpunct_l @492 PRIVATE + _ismbblead @493 + _ismbblead_l @494 + _ismbbprint @495 PRIVATE + _ismbbprint_l @496 PRIVATE + _ismbbpunct @497 PRIVATE + _ismbbpunct_l @498 PRIVATE + _ismbbtrail @499 + _ismbbtrail_l @500 + _ismbcalnum @501 + _ismbcalnum_l @502 PRIVATE + _ismbcalpha @503 + _ismbcalpha_l @504 PRIVATE + _ismbcdigit @505 + _ismbcdigit_l @506 PRIVATE + _ismbcgraph @507 + _ismbcgraph_l @508 PRIVATE + _ismbchira @509 + _ismbchira_l @510 PRIVATE + _ismbckata @511 + _ismbckata_l @512 PRIVATE + _ismbcl0 @513 + _ismbcl0_l @514 + _ismbcl1 @515 + _ismbcl1_l @516 + _ismbcl2 @517 + _ismbcl2_l @518 + _ismbclegal @519 + _ismbclegal_l @520 + _ismbclower @521 + _ismbclower_l @522 PRIVATE + _ismbcprint @523 + _ismbcprint_l @524 PRIVATE + _ismbcpunct @525 + _ismbcpunct_l @526 PRIVATE + _ismbcspace @527 + _ismbcspace_l @528 PRIVATE + _ismbcsymbol @529 + _ismbcsymbol_l @530 PRIVATE + _ismbcupper @531 + _ismbcupper_l @532 PRIVATE + _ismbslead @533 + _ismbslead_l @534 PRIVATE + _ismbstrail @535 + _ismbstrail_l @536 PRIVATE + _isnan=MSVCRT__isnan @537 + _isnanf=MSVCRT__isnanf @538 + _isprint_l=MSVCRT__isprint_l @539 + _ispunct_l @540 PRIVATE + _isspace_l=MSVCRT__isspace_l @541 + _isupper_l=MSVCRT__isupper_l @542 + _iswalnum_l=MSVCRT__iswalnum_l @543 + _iswalpha_l=MSVCRT__iswalpha_l @544 + _iswcntrl_l=MSVCRT__iswcntrl_l @545 + _iswcsym_l @546 PRIVATE + _iswcsymf_l @547 PRIVATE + _iswctype_l=MSVCRT__iswctype_l @548 + _iswdigit_l=MSVCRT__iswdigit_l @549 + _iswgraph_l=MSVCRT__iswgraph_l @550 + _iswlower_l=MSVCRT__iswlower_l @551 + _iswprint_l=MSVCRT__iswprint_l @552 + _iswpunct_l=MSVCRT__iswpunct_l @553 + _iswspace_l=MSVCRT__iswspace_l @554 + _iswupper_l=MSVCRT__iswupper_l @555 + _iswxdigit_l=MSVCRT__iswxdigit_l @556 + _isxdigit_l=MSVCRT__isxdigit_l @557 + _itoa=MSVCRT__itoa @558 + _itoa_s=MSVCRT__itoa_s @559 + _itow=ntdll._itow @560 + _itow_s=MSVCRT__itow_s @561 + _j0=MSVCRT__j0 @562 + _j1=MSVCRT__j1 @563 + _jn=MSVCRT__jn @564 + _kbhit @565 + _lfind @566 + _lfind_s @567 + _loaddll @568 + _local_unwind @569 + _localtime32=MSVCRT__localtime32 @570 + _localtime32_s @571 + _localtime64=MSVCRT__localtime64 @572 + _localtime64_s @573 + _lock @574 + _lock_file=MSVCRT__lock_file @575 + _locking=MSVCRT__locking @576 + _logb=MSVCRT__logb @577 + _logbf=MSVCRT__logbf @578 + _lrotl=MSVCRT__lrotl @579 + _lrotr=MSVCRT__lrotr @580 + _lsearch @581 + _lsearch_s @582 PRIVATE + _lseek=MSVCRT__lseek @583 + _lseeki64=MSVCRT__lseeki64 @584 + _ltoa=ntdll._ltoa @585 + _ltoa_s=MSVCRT__ltoa_s @586 + _ltow=ntdll._ltow @587 + _ltow_s=MSVCRT__ltow_s @588 + _makepath=MSVCRT__makepath @589 + _makepath_s=MSVCRT__makepath_s @590 + _malloc_crt=MSVCRT_malloc @591 + _mbbtombc @592 + _mbbtombc_l @593 PRIVATE + _mbbtype @594 + _mbbtype_l @595 PRIVATE + _mbccpy @596 + _mbccpy_l @597 + _mbccpy_s @598 + _mbccpy_s_l @599 + _mbcjistojms @600 + _mbcjistojms_l @601 PRIVATE + _mbcjmstojis @602 + _mbcjmstojis_l @603 PRIVATE + _mbclen @604 + _mbclen_l @605 PRIVATE + _mbctohira @606 + _mbctohira_l @607 PRIVATE + _mbctokata @608 + _mbctokata_l @609 PRIVATE + _mbctolower @610 + _mbctolower_l @611 PRIVATE + _mbctombb @612 + _mbctombb_l @613 PRIVATE + _mbctoupper @614 + _mbctoupper_l @615 PRIVATE + _mbctype=MSVCRT_mbctype @616 DATA + _mblen_l @617 PRIVATE + _mbsbtype @618 + _mbsbtype_l @619 PRIVATE + _mbscat_s @620 + _mbscat_s_l @621 + _mbschr @622 + _mbschr_l @623 PRIVATE + _mbscmp @624 + _mbscmp_l @625 PRIVATE + _mbscoll @626 + _mbscoll_l @627 + _mbscpy_s @628 + _mbscpy_s_l @629 + _mbscspn @630 + _mbscspn_l @631 PRIVATE + _mbsdec @632 + _mbsdec_l @633 PRIVATE + _mbsicmp @634 + _mbsicmp_l @635 PRIVATE + _mbsicoll @636 + _mbsicoll_l @637 + _mbsinc @638 + _mbsinc_l @639 PRIVATE + _mbslen @640 + _mbslen_l @641 + _mbslwr @642 + _mbslwr_l @643 PRIVATE + _mbslwr_s @644 + _mbslwr_s_l @645 PRIVATE + _mbsnbcat @646 + _mbsnbcat_l @647 PRIVATE + _mbsnbcat_s @648 + _mbsnbcat_s_l @649 PRIVATE + _mbsnbcmp @650 + _mbsnbcmp_l @651 PRIVATE + _mbsnbcnt @652 + _mbsnbcnt_l @653 PRIVATE + _mbsnbcoll @654 + _mbsnbcoll_l @655 + _mbsnbcpy @656 + _mbsnbcpy_l @657 PRIVATE + _mbsnbcpy_s @658 + _mbsnbcpy_s_l @659 + _mbsnbicmp @660 + _mbsnbicmp_l @661 PRIVATE + _mbsnbicoll @662 + _mbsnbicoll_l @663 + _mbsnbset @664 + _mbsnbset_l @665 PRIVATE + _mbsnbset_s @666 PRIVATE + _mbsnbset_s_l @667 PRIVATE + _mbsncat @668 + _mbsncat_l @669 PRIVATE + _mbsncat_s @670 PRIVATE + _mbsncat_s_l @671 PRIVATE + _mbsnccnt @672 + _mbsnccnt_l @673 PRIVATE + _mbsncmp @674 + _mbsncmp_l @675 PRIVATE + _mbsncoll @676 PRIVATE + _mbsncoll_l @677 PRIVATE + _mbsncpy @678 + _mbsncpy_l @679 PRIVATE + _mbsncpy_s @680 PRIVATE + _mbsncpy_s_l @681 PRIVATE + _mbsnextc @682 + _mbsnextc_l @683 PRIVATE + _mbsnicmp @684 + _mbsnicmp_l @685 PRIVATE + _mbsnicoll @686 PRIVATE + _mbsnicoll_l @687 PRIVATE + _mbsninc @688 + _mbsninc_l @689 PRIVATE + _mbsnlen @690 + _mbsnlen_l @691 + _mbsnset @692 + _mbsnset_l @693 PRIVATE + _mbsnset_s @694 PRIVATE + _mbsnset_s_l @695 PRIVATE + _mbspbrk @696 + _mbspbrk_l @697 PRIVATE + _mbsrchr @698 + _mbsrchr_l @699 PRIVATE + _mbsrev @700 + _mbsrev_l @701 PRIVATE + _mbsset @702 + _mbsset_l @703 PRIVATE + _mbsset_s @704 PRIVATE + _mbsset_s_l @705 PRIVATE + _mbsspn @706 + _mbsspn_l @707 PRIVATE + _mbsspnp @708 + _mbsspnp_l @709 PRIVATE + _mbsstr @710 + _mbsstr_l @711 PRIVATE + _mbstok @712 + _mbstok_l @713 + _mbstok_s @714 + _mbstok_s_l @715 + _mbstowcs_l=MSVCRT__mbstowcs_l @716 + _mbstowcs_s_l=MSVCRT__mbstowcs_s_l @717 + _mbstrlen @718 + _mbstrlen_l @719 + _mbstrnlen @720 PRIVATE + _mbstrnlen_l @721 PRIVATE + _mbsupr @722 + _mbsupr_l @723 PRIVATE + _mbsupr_s @724 + _mbsupr_s_l @725 PRIVATE + _mbtowc_l=MSVCRT_mbtowc_l @726 + _memccpy=ntdll._memccpy @727 + _memicmp=MSVCRT__memicmp @728 + _memicmp_l=MSVCRT__memicmp_l @729 + _mkdir=MSVCRT__mkdir @730 + _mkgmtime32=MSVCRT__mkgmtime32 @731 + _mkgmtime64=MSVCRT__mkgmtime64 @732 + _mktemp=MSVCRT__mktemp @733 + _mktemp_s=MSVCRT__mktemp_s @734 + _mktime32=MSVCRT__mktime32 @735 + _mktime64=MSVCRT__mktime64 @736 + _msize @737 + _nextafter=MSVCRT__nextafter @738 + _nextafterf=MSVCRT__nextafterf @739 + _onexit=MSVCRT__onexit @740 + _open=MSVCRT__open @741 + _open_osfhandle=MSVCRT__open_osfhandle @742 + _pclose=MSVCRT__pclose @743 + _pctype=MSVCRT__pctype @744 DATA + _pgmptr=MSVCRT__pgmptr @745 DATA + _pipe=MSVCRT__pipe @746 + _popen=MSVCRT__popen @747 + _printf_l @748 PRIVATE + _printf_p @749 PRIVATE + _printf_p_l @750 PRIVATE + _printf_s_l @751 PRIVATE + _purecall @752 + _putc_nolock=MSVCRT__fputc_nolock @753 + _putch @754 + _putch_nolock @755 + _putenv @756 + _putenv_s @757 + _putw=MSVCRT__putw @758 + _putwc_nolock=MSVCRT__fputwc_nolock @759 + _putwch @760 + _putwch_nolock @761 + _putws=MSVCRT__putws @762 + _read=MSVCRT__read @763 + _realloc_crt=MSVCRT_realloc @764 + _recalloc @765 + _recalloc_crt @766 PRIVATE + _resetstkoflw=MSVCRT__resetstkoflw @767 + _rmdir=MSVCRT__rmdir @768 + _rmtmp=MSVCRT__rmtmp @769 + _rotl @770 + _rotl64 @771 + _rotr @772 + _rotr64 @773 + _scalb=MSVCRT__scalb @774 + _scalbf=MSVCRT__scalbf @775 + _scanf_l=MSVCRT__scanf_l @776 + _scanf_s_l=MSVCRT__scanf_s_l @777 + _scprintf=MSVCRT__scprintf @778 + _scprintf_l @779 PRIVATE + _scprintf_p @780 PRIVATE + _scprintf_p_l @781 PRIVATE + _scwprintf=MSVCRT__scwprintf @782 + _scwprintf_l @783 PRIVATE + _scwprintf_p @784 PRIVATE + _scwprintf_p_l @785 PRIVATE + _searchenv=MSVCRT__searchenv @786 + _searchenv_s=MSVCRT__searchenv_s @787 + _set_SSE2_enable=MSVCRT__set_SSE2_enable @788 + _set_abort_behavior=MSVCRT__set_abort_behavior @789 + _set_amblksiz @790 PRIVATE + _set_controlfp @791 + _set_doserrno @792 + _set_errno @793 + _set_error_mode @794 + _set_fmode=MSVCRT__set_fmode @795 + _set_invalid_parameter_handler @796 + _set_malloc_crt_max_wait @797 PRIVATE + _set_output_format=MSVCRT__set_output_format @798 + _set_printf_count_output=MSVCRT__set_printf_count_output @799 + _set_purecall_handler @800 + _set_sbh_threshold @801 + _seterrormode @802 + _setjmp=MSVCRT__setjmp @803 + _setmaxstdio=MSVCRT__setmaxstdio @804 + _setmbcp @805 + _setmode=MSVCRT__setmode @806 + _setsystime @807 PRIVATE + _sleep=MSVCRT__sleep @808 + _snprintf=MSVCRT__snprintf @809 + _snprintf_c @810 PRIVATE + _snprintf_c_l @811 PRIVATE + _snprintf_l=MSVCRT__snprintf_l @812 + _snprintf_s=MSVCRT__snprintf_s @813 + _snprintf_s_l @814 PRIVATE + _snscanf=MSVCRT__snscanf @815 + _snscanf_l=MSVCRT__snscanf_l @816 + _snscanf_s=MSVCRT__snscanf_s @817 + _snscanf_s_l=MSVCRT__snscanf_s_l @818 + _snwprintf=MSVCRT__snwprintf @819 + _snwprintf_l=MSVCRT__snwprintf_l @820 + _snwprintf_s=MSVCRT__snwprintf_s @821 + _snwprintf_s_l=MSVCRT__snwprintf_s_l @822 + _snwscanf=MSVCRT__snwscanf @823 + _snwscanf_l=MSVCRT__snwscanf_l @824 + _snwscanf_s=MSVCRT__snwscanf_s @825 + _snwscanf_s_l=MSVCRT__snwscanf_s_l @826 + _sopen=MSVCRT__sopen @827 + _sopen_s=MSVCRT__sopen_s @828 + _spawnl=MSVCRT__spawnl @829 + _spawnle=MSVCRT__spawnle @830 + _spawnlp=MSVCRT__spawnlp @831 + _spawnlpe=MSVCRT__spawnlpe @832 + _spawnv=MSVCRT__spawnv @833 + _spawnve=MSVCRT__spawnve @834 + _spawnvp=MSVCRT__spawnvp @835 + _spawnvpe=MSVCRT__spawnvpe @836 + _splitpath=MSVCRT__splitpath @837 + _splitpath_s=MSVCRT__splitpath_s @838 + _sprintf_l=MSVCRT_sprintf_l @839 + _sprintf_p=MSVCRT__sprintf_p @840 + _sprintf_p_l=MSVCRT_sprintf_p_l @841 + _sprintf_s_l=MSVCRT_sprintf_s_l @842 + _sscanf_l=MSVCRT__sscanf_l @843 + _sscanf_s_l=MSVCRT__sscanf_s_l @844 + _stat32=MSVCRT__stat32 @845 + _stat32i64=MSVCRT__stat32i64 @846 + _stat64=MSVCRT_stat64 @847 + _stat64i32=MSVCRT__stat64i32 @848 + _statusfp @849 + _strcoll_l=MSVCRT_strcoll_l @850 + _strdate=MSVCRT__strdate @851 + _strdate_s @852 + _strdup=MSVCRT__strdup @853 + _strerror=MSVCRT__strerror @854 + _strerror_s @855 PRIVATE + _strftime_l=MSVCRT__strftime_l @856 + _stricmp=MSVCRT__stricmp @857 + _stricmp_l=MSVCRT__stricmp_l @858 + _stricoll=MSVCRT__stricoll @859 + _stricoll_l=MSVCRT__stricoll_l @860 + _strlwr=MSVCRT__strlwr @861 + _strlwr_l @862 + _strlwr_s=MSVCRT__strlwr_s @863 + _strlwr_s_l=MSVCRT__strlwr_s_l @864 + _strncoll=MSVCRT__strncoll @865 + _strncoll_l=MSVCRT__strncoll_l @866 + _strnicmp=MSVCRT__strnicmp @867 + _strnicmp_l=MSVCRT__strnicmp_l @868 + _strnicoll=MSVCRT__strnicoll @869 + _strnicoll_l=MSVCRT__strnicoll_l @870 + _strnset=MSVCRT__strnset @871 + _strnset_s=MSVCRT__strnset_s @872 + _strrev=MSVCRT__strrev @873 + _strset @874 + _strset_s @875 PRIVATE + _strtime=MSVCRT__strtime @876 + _strtime_s @877 + _strtod_l=MSVCRT_strtod_l @878 + _strtoi64=MSVCRT_strtoi64 @879 + _strtoi64_l=MSVCRT_strtoi64_l @880 + _strtol_l=MSVCRT__strtol_l @881 + _strtoui64=MSVCRT_strtoui64 @882 + _strtoui64_l=MSVCRT_strtoui64_l @883 + _strtoul_l=MSVCRT_strtoul_l @884 + _strupr=MSVCRT__strupr @885 + _strupr_l=MSVCRT__strupr_l @886 + _strupr_s=MSVCRT__strupr_s @887 + _strupr_s_l=MSVCRT__strupr_s_l @888 + _strxfrm_l=MSVCRT__strxfrm_l @889 + _swab=MSVCRT__swab @890 + _swprintf=MSVCRT_swprintf @891 + _swprintf_c @892 PRIVATE + _swprintf_c_l @893 PRIVATE + _swprintf_p @894 PRIVATE + _swprintf_p_l=MSVCRT_swprintf_p_l @895 + _swprintf_s_l=MSVCRT__swprintf_s_l @896 + _swscanf_l=MSVCRT__swscanf_l @897 + _swscanf_s_l=MSVCRT__swscanf_s_l @898 + _sys_errlist=MSVCRT__sys_errlist @899 DATA + _sys_nerr=MSVCRT__sys_nerr @900 DATA + _tell=MSVCRT__tell @901 + _telli64 @902 + _tempnam=MSVCRT__tempnam @903 + _time32=MSVCRT__time32 @904 + _time64=MSVCRT__time64 @905 + _timezone=MSVCRT___timezone @906 DATA + _tolower=MSVCRT__tolower @907 + _tolower_l=MSVCRT__tolower_l @908 + _toupper=MSVCRT__toupper @909 + _toupper_l=MSVCRT__toupper_l @910 + _towlower_l=MSVCRT__towlower_l @911 + _towupper_l=MSVCRT__towupper_l @912 + _tzname=MSVCRT__tzname @913 DATA + _tzset=MSVCRT__tzset @914 + _ui64toa=ntdll._ui64toa @915 + _ui64toa_s=MSVCRT__ui64toa_s @916 + _ui64tow=ntdll._ui64tow @917 + _ui64tow_s=MSVCRT__ui64tow_s @918 + _ultoa=ntdll._ultoa @919 + _ultoa_s=MSVCRT__ultoa_s @920 + _ultow=ntdll._ultow @921 + _ultow_s=MSVCRT__ultow_s @922 + _umask=MSVCRT__umask @923 + _umask_s @924 PRIVATE + _ungetc_nolock=MSVCRT__ungetc_nolock @925 + _ungetch @926 + _ungetch_nolock @927 + _ungetwc_nolock=MSVCRT__ungetwc_nolock @928 + _ungetwch @929 + _ungetwch_nolock @930 + _unlink=MSVCRT__unlink @931 + _unloaddll @932 + _unlock @933 + _unlock_file=MSVCRT__unlock_file @934 + _utime32 @935 + _utime64 @936 + _vcprintf @937 + _vcprintf_l @938 PRIVATE + _vcprintf_p @939 PRIVATE + _vcprintf_p_l @940 PRIVATE + _vcprintf_s @941 PRIVATE + _vcprintf_s_l @942 PRIVATE + _vcwprintf @943 + _vcwprintf_l @944 PRIVATE + _vcwprintf_p @945 PRIVATE + _vcwprintf_p_l @946 PRIVATE + _vcwprintf_s @947 PRIVATE + _vcwprintf_s_l @948 PRIVATE + _vfprintf_l=MSVCRT__vfprintf_l @949 + _vfprintf_p=MSVCRT__vfprintf_p @950 + _vfprintf_p_l=MSVCRT__vfprintf_p_l @951 + _vfprintf_s_l=MSVCRT__vfprintf_s_l @952 + _vfwprintf_l=MSVCRT__vfwprintf_l @953 + _vfwprintf_p=MSVCRT__vfwprintf_p @954 + _vfwprintf_p_l=MSVCRT__vfwprintf_p_l @955 + _vfwprintf_s_l=MSVCRT__vfwprintf_s_l @956 + _vprintf_l @957 PRIVATE + _vprintf_p @958 PRIVATE + _vprintf_p_l @959 PRIVATE + _vprintf_s_l @960 PRIVATE + _vscprintf=MSVCRT__vscprintf @961 + _vscprintf_l=MSVCRT__vscprintf_l @962 + _vscprintf_p=MSVCRT__vscprintf_p @963 + _vscprintf_p_l=MSVCRT__vscprintf_p_l @964 + _vscwprintf=MSVCRT__vscwprintf @965 + _vscwprintf_l=MSVCRT__vscwprintf_l @966 + _vscwprintf_p=MSVCRT__vscwprintf_p @967 + _vscwprintf_p_l=MSVCRT__vscwprintf_p_l @968 + _vsnprintf=MSVCRT_vsnprintf @969 + _vsnprintf_c=MSVCRT_vsnprintf @970 + _vsnprintf_c_l=MSVCRT_vsnprintf_l @971 + _vsnprintf_l=MSVCRT_vsnprintf_l @972 + _vsnprintf_s=MSVCRT_vsnprintf_s @973 + _vsnprintf_s_l=MSVCRT_vsnprintf_s_l @974 + _vsnwprintf=MSVCRT_vsnwprintf @975 + _vsnwprintf_l=MSVCRT_vsnwprintf_l @976 + _vsnwprintf_s=MSVCRT_vsnwprintf_s @977 + _vsnwprintf_s_l=MSVCRT_vsnwprintf_s_l @978 + _vsprintf_l=MSVCRT_vsprintf_l @979 + _vsprintf_p=MSVCRT_vsprintf_p @980 + _vsprintf_p_l=MSVCRT_vsprintf_p_l @981 + _vsprintf_s_l=MSVCRT_vsprintf_s_l @982 + _vswprintf=MSVCRT_vswprintf @983 + _vswprintf_c=MSVCRT_vsnwprintf @984 + _vswprintf_c_l=MSVCRT_vsnwprintf_l @985 + _vswprintf_l=MSVCRT_vswprintf_l @986 + _vswprintf_p=MSVCRT__vswprintf_p @987 + _vswprintf_p_l=MSVCRT_vswprintf_p_l @988 + _vswprintf_s_l=MSVCRT_vswprintf_s_l @989 + _vwprintf_l @990 PRIVATE + _vwprintf_p @991 PRIVATE + _vwprintf_p_l @992 PRIVATE + _vwprintf_s_l @993 PRIVATE + _waccess=MSVCRT__waccess @994 + _waccess_s=MSVCRT__waccess_s @995 + _wasctime=MSVCRT__wasctime @996 + _wasctime_s=MSVCRT__wasctime_s @997 + _wassert=MSVCRT__wassert @998 + _wchdir=MSVCRT__wchdir @999 + _wchmod=MSVCRT__wchmod @1000 + _wcmdln=MSVCRT__wcmdln @1001 DATA + _wcreat=MSVCRT__wcreat @1002 + _wcscoll_l=MSVCRT__wcscoll_l @1003 + _wcsdup=MSVCRT__wcsdup @1004 + _wcserror=MSVCRT__wcserror @1005 + _wcserror_s=MSVCRT__wcserror_s @1006 + _wcsftime_l=MSVCRT__wcsftime_l @1007 + _wcsicmp=MSVCRT__wcsicmp @1008 + _wcsicmp_l=MSVCRT__wcsicmp_l @1009 + _wcsicoll=MSVCRT__wcsicoll @1010 + _wcsicoll_l=MSVCRT__wcsicoll_l @1011 + _wcslwr=MSVCRT__wcslwr @1012 + _wcslwr_l=MSVCRT__wcslwr_l @1013 + _wcslwr_s=MSVCRT__wcslwr_s @1014 + _wcslwr_s_l=MSVCRT__wcslwr_s_l @1015 + _wcsncoll=MSVCRT__wcsncoll @1016 + _wcsncoll_l=MSVCRT__wcsncoll_l @1017 + _wcsnicmp=MSVCRT__wcsnicmp @1018 + _wcsnicmp_l=MSVCRT__wcsnicmp_l @1019 + _wcsnicoll=MSVCRT__wcsnicoll @1020 + _wcsnicoll_l=MSVCRT__wcsnicoll_l @1021 + _wcsnset=MSVCRT__wcsnset @1022 + _wcsnset_s=MSVCRT__wcsnset_s @1023 + _wcsrev=MSVCRT__wcsrev @1024 + _wcsset=MSVCRT__wcsset @1025 + _wcsset_s=MSVCRT__wcsset_s @1026 + _wcstod_l=MSVCRT__wcstod_l @1027 + _wcstoi64=MSVCRT__wcstoi64 @1028 + _wcstoi64_l=MSVCRT__wcstoi64_l @1029 + _wcstol_l=MSVCRT__wcstol_l @1030 + _wcstombs_l=MSVCRT__wcstombs_l @1031 + _wcstombs_s_l=MSVCRT__wcstombs_s_l @1032 + _wcstoui64=MSVCRT__wcstoui64 @1033 + _wcstoui64_l=MSVCRT__wcstoui64_l @1034 + _wcstoul_l=MSVCRT__wcstoul_l @1035 + _wcsupr=MSVCRT__wcsupr @1036 + _wcsupr_l=MSVCRT__wcsupr_l @1037 + _wcsupr_s=MSVCRT__wcsupr_s @1038 + _wcsupr_s_l=MSVCRT__wcsupr_s_l @1039 + _wcsxfrm_l=MSVCRT__wcsxfrm_l @1040 + _wctime32=MSVCRT__wctime32 @1041 + _wctime32_s=MSVCRT__wctime32_s @1042 + _wctime64=MSVCRT__wctime64 @1043 + _wctime64_s=MSVCRT__wctime64_s @1044 + _wctomb_l=MSVCRT__wctomb_l @1045 + _wctomb_s_l=MSVCRT__wctomb_s_l @1046 + _wdupenv_s @1047 + _wenviron=MSVCRT__wenviron @1048 DATA + _wexecl @1049 + _wexecle @1050 + _wexeclp @1051 + _wexeclpe @1052 + _wexecv @1053 + _wexecve @1054 + _wexecvp @1055 + _wexecvpe @1056 + _wfdopen=MSVCRT__wfdopen @1057 + _wfindfirst32=MSVCRT__wfindfirst32 @1058 + _wfindfirst32i64 @1059 PRIVATE + _wfindfirst64=MSVCRT__wfindfirst64 @1060 + _wfindfirst64i32=MSVCRT__wfindfirst64i32 @1061 + _wfindnext32=MSVCRT__wfindnext32 @1062 + _wfindnext32i64 @1063 PRIVATE + _wfindnext64=MSVCRT__wfindnext64 @1064 + _wfindnext64i32=MSVCRT__wfindnext64i32 @1065 + _wfopen=MSVCRT__wfopen @1066 + _wfopen_s=MSVCRT__wfopen_s @1067 + _wfreopen=MSVCRT__wfreopen @1068 + _wfreopen_s=MSVCRT__wfreopen_s @1069 + _wfsopen=MSVCRT__wfsopen @1070 + _wfullpath=MSVCRT__wfullpath @1071 + _wgetcwd=MSVCRT__wgetcwd @1072 + _wgetdcwd=MSVCRT__wgetdcwd @1073 + _wgetdcwd_nolock @1074 PRIVATE + _wgetenv=MSVCRT__wgetenv @1075 + _wgetenv_s @1076 + _wmakepath=MSVCRT__wmakepath @1077 + _wmakepath_s=MSVCRT__wmakepath_s @1078 + _wmkdir=MSVCRT__wmkdir @1079 + _wmktemp=MSVCRT__wmktemp @1080 + _wmktemp_s=MSVCRT__wmktemp_s @1081 + _wopen=MSVCRT__wopen @1082 + _wperror=MSVCRT__wperror @1083 + _wpgmptr=MSVCRT__wpgmptr @1084 DATA + _wpopen=MSVCRT__wpopen @1085 + _wprintf_l @1086 PRIVATE + _wprintf_p @1087 PRIVATE + _wprintf_p_l @1088 PRIVATE + _wprintf_s_l @1089 PRIVATE + _wputenv @1090 + _wputenv_s @1091 + _wremove=MSVCRT__wremove @1092 + _wrename=MSVCRT__wrename @1093 + _write=MSVCRT__write @1094 + _wrmdir=MSVCRT__wrmdir @1095 + _wscanf_l=MSVCRT__wscanf_l @1096 + _wscanf_s_l=MSVCRT__wscanf_s_l @1097 + _wsearchenv=MSVCRT__wsearchenv @1098 + _wsearchenv_s=MSVCRT__wsearchenv_s @1099 + _wsetlocale=MSVCRT__wsetlocale @1100 + _wsopen=MSVCRT__wsopen @1101 + _wsopen_s=MSVCRT__wsopen_s @1102 + _wspawnl=MSVCRT__wspawnl @1103 + _wspawnle=MSVCRT__wspawnle @1104 + _wspawnlp=MSVCRT__wspawnlp @1105 + _wspawnlpe=MSVCRT__wspawnlpe @1106 + _wspawnv=MSVCRT__wspawnv @1107 + _wspawnve=MSVCRT__wspawnve @1108 + _wspawnvp=MSVCRT__wspawnvp @1109 + _wspawnvpe=MSVCRT__wspawnvpe @1110 + _wsplitpath=MSVCRT__wsplitpath @1111 + _wsplitpath_s=MSVCRT__wsplitpath_s @1112 + _wstat32=MSVCRT__wstat32 @1113 + _wstat32i64=MSVCRT__wstat32i64 @1114 + _wstat64=MSVCRT__wstat64 @1115 + _wstat64i32=MSVCRT__wstat64i32 @1116 + _wstrdate=MSVCRT__wstrdate @1117 + _wstrdate_s @1118 + _wstrtime=MSVCRT__wstrtime @1119 + _wstrtime_s @1120 + _wsystem @1121 + _wtempnam=MSVCRT__wtempnam @1122 + _wtmpnam=MSVCRT__wtmpnam @1123 + _wtmpnam_s=MSVCRT__wtmpnam_s @1124 + _wtof=MSVCRT__wtof @1125 + _wtof_l=MSVCRT__wtof_l @1126 + _wtoi=MSVCRT__wtoi @1127 + _wtoi64=MSVCRT__wtoi64 @1128 + _wtoi64_l=MSVCRT__wtoi64_l @1129 + _wtoi_l=MSVCRT__wtoi_l @1130 + _wtol=MSVCRT__wtol @1131 + _wtol_l=MSVCRT__wtol_l @1132 + _wunlink=MSVCRT__wunlink @1133 + _wutime32 @1134 + _wutime64 @1135 + _y0=MSVCRT__y0 @1136 + _y1=MSVCRT__y1 @1137 + _yn=MSVCRT__yn @1138 + abort=MSVCRT_abort @1139 + abs=MSVCRT_abs @1140 + acos=MSVCRT_acos @1141 + acosf=MSVCRT_acosf @1142 + asctime=MSVCRT_asctime @1143 + asctime_s=MSVCRT_asctime_s @1144 + asin=MSVCRT_asin @1145 + atan=MSVCRT_atan @1146 + atan2=MSVCRT_atan2 @1147 + asinf=MSVCRT_asinf @1148 + atan2f=MSVCRT_atan2f @1149 + atanf=MSVCRT_atanf @1150 + atexit=MSVCRT_atexit @1151 PRIVATE + atof=MSVCRT_atof @1152 + atoi=MSVCRT_atoi @1153 + atol=MSVCRT_atol @1154 + bsearch=MSVCRT_bsearch @1155 + bsearch_s=MSVCRT_bsearch_s @1156 + btowc=MSVCRT_btowc @1157 + calloc=MSVCRT_calloc @1158 + ceil=MSVCRT_ceil @1159 + ceilf=MSVCRT_ceilf @1160 + clearerr=MSVCRT_clearerr @1161 + clearerr_s=MSVCRT_clearerr_s @1162 + clock=MSVCRT_clock @1163 + cos=MSVCRT_cos @1164 + cosh=MSVCRT_cosh @1165 + cosf=MSVCRT_cosf @1166 + coshf=MSVCRT_coshf @1167 + div=MSVCRT_div @1168 + exit=MSVCRT_exit @1169 + exp=MSVCRT_exp @1170 + expf=MSVCRT_expf @1171 + fabs=MSVCRT_fabs @1172 + fclose=MSVCRT_fclose @1173 + feof=MSVCRT_feof @1174 + ferror=MSVCRT_ferror @1175 + fflush=MSVCRT_fflush @1176 + fgetc=MSVCRT_fgetc @1177 + fgetpos=MSVCRT_fgetpos @1178 + fgets=MSVCRT_fgets @1179 + fgetwc=MSVCRT_fgetwc @1180 + fgetws=MSVCRT_fgetws @1181 + floor=MSVCRT_floor @1182 + floorf=MSVCRT_floorf @1183 + fmod=MSVCRT_fmod @1184 + fmodf=MSVCRT_fmodf @1185 + fopen=MSVCRT_fopen @1186 + fopen_s=MSVCRT_fopen_s @1187 + fprintf=MSVCRT_fprintf @1188 + fprintf_s=MSVCRT_fprintf_s @1189 + fputc=MSVCRT_fputc @1190 + fputs=MSVCRT_fputs @1191 + fputwc=MSVCRT_fputwc @1192 + fputws=MSVCRT_fputws @1193 + fread=MSVCRT_fread @1194 + fread_s=MSVCRT_fread_s @1195 + free=MSVCRT_free @1196 + freopen=MSVCRT_freopen @1197 + freopen_s=MSVCRT_freopen_s @1198 + frexp=MSVCRT_frexp @1199 + fscanf=MSVCRT_fscanf @1200 + fscanf_s=MSVCRT_fscanf_s @1201 + fseek=MSVCRT_fseek @1202 + fsetpos=MSVCRT_fsetpos @1203 + ftell=MSVCRT_ftell @1204 + fwprintf=MSVCRT_fwprintf @1205 + fwprintf_s=MSVCRT_fwprintf_s @1206 + fwrite=MSVCRT_fwrite @1207 + fwscanf=MSVCRT_fwscanf @1208 + fwscanf_s=MSVCRT_fwscanf_s @1209 + getc=MSVCRT_getc @1210 + getchar=MSVCRT_getchar @1211 + getenv=MSVCRT_getenv @1212 + getenv_s @1213 + gets=MSVCRT_gets @1214 + gets_s=MSVCRT_gets_s @1215 + getwc=MSVCRT_getwc @1216 + getwchar=MSVCRT_getwchar @1217 + is_wctype=ntdll.iswctype @1218 + isalnum=MSVCRT_isalnum @1219 + isalpha=MSVCRT_isalpha @1220 + iscntrl=MSVCRT_iscntrl @1221 + isdigit=MSVCRT_isdigit @1222 + isgraph=MSVCRT_isgraph @1223 + isleadbyte=MSVCRT_isleadbyte @1224 + islower=MSVCRT_islower @1225 + isprint=MSVCRT_isprint @1226 + ispunct=MSVCRT_ispunct @1227 + isspace=MSVCRT_isspace @1228 + isupper=MSVCRT_isupper @1229 + iswalnum=MSVCRT_iswalnum @1230 + iswalpha=ntdll.iswalpha @1231 + iswascii=MSVCRT_iswascii @1232 + iswcntrl=MSVCRT_iswcntrl @1233 + iswctype=ntdll.iswctype @1234 + iswdigit=MSVCRT_iswdigit @1235 + iswgraph=MSVCRT_iswgraph @1236 + iswlower=MSVCRT_iswlower @1237 + iswprint=MSVCRT_iswprint @1238 + iswpunct=MSVCRT_iswpunct @1239 + iswspace=MSVCRT_iswspace @1240 + iswupper=MSVCRT_iswupper @1241 + iswxdigit=MSVCRT_iswxdigit @1242 + isxdigit=MSVCRT_isxdigit @1243 + labs=MSVCRT_labs @1244 + ldexp=MSVCRT_ldexp @1245 + ldiv=MSVCRT_ldiv @1246 + localeconv=MSVCRT_localeconv @1247 + log=MSVCRT_log @1248 + log10=MSVCRT_log10 @1249 + log10f=MSVCRT_log10f @1250 + logf=MSVCRT_logf @1251 + longjmp=MSVCRT_longjmp @1252 + malloc=MSVCRT_malloc @1253 + mblen=MSVCRT_mblen @1254 + mbrlen=MSVCRT_mbrlen @1255 + mbrtowc=MSVCRT_mbrtowc @1256 + mbsrtowcs=MSVCRT_mbsrtowcs @1257 + mbsrtowcs_s=MSVCRT_mbsrtowcs_s @1258 + mbstowcs=MSVCRT_mbstowcs @1259 + mbstowcs_s=MSVCRT__mbstowcs_s @1260 + mbtowc=MSVCRT_mbtowc @1261 + memchr=MSVCRT_memchr @1262 + memcmp=MSVCRT_memcmp @1263 + memcpy=MSVCRT_memcpy @1264 + memcpy_s=MSVCRT_memcpy_s @1265 + memmove=MSVCRT_memmove @1266 + memmove_s=MSVCRT_memmove_s @1267 + memset=MSVCRT_memset @1268 + modf=MSVCRT_modf @1269 + modff=MSVCRT_modff @1270 + perror=MSVCRT_perror @1271 + pow=MSVCRT_pow @1272 + powf=MSVCRT_powf @1273 + printf=MSVCRT_printf @1274 + printf_s=MSVCRT_printf_s @1275 + putc=MSVCRT_putc @1276 + putchar=MSVCRT_putchar @1277 + puts=MSVCRT_puts @1278 + putwc=MSVCRT_fputwc @1279 + putwchar=MSVCRT__fputwchar @1280 + qsort=MSVCRT_qsort @1281 + qsort_s=MSVCRT_qsort_s @1282 + raise=MSVCRT_raise @1283 + rand=MSVCRT_rand @1284 + rand_s=MSVCRT_rand_s @1285 + realloc=MSVCRT_realloc @1286 + remove=MSVCRT_remove @1287 + rename=MSVCRT_rename @1288 + rewind=MSVCRT_rewind @1289 + scanf=MSVCRT_scanf @1290 + scanf_s=MSVCRT_scanf_s @1291 + setbuf=MSVCRT_setbuf @1292 + setjmp=MSVCRT__setjmp @1293 PRIVATE + setlocale=MSVCRT_setlocale @1294 + setvbuf=MSVCRT_setvbuf @1295 + signal=MSVCRT_signal @1296 + sin=MSVCRT_sin @1297 + sinh=MSVCRT_sinh @1298 + sinf=MSVCRT_sinf @1299 + sinhf=MSVCRT_sinhf @1300 + sprintf=MSVCRT_sprintf @1301 + sprintf_s=MSVCRT_sprintf_s @1302 + sqrt=MSVCRT_sqrt @1303 + sqrtf=MSVCRT_sqrtf @1304 + srand=MSVCRT_srand @1305 + sscanf=MSVCRT_sscanf @1306 + sscanf_s=MSVCRT_sscanf_s @1307 + strcat=ntdll.strcat @1308 + strcat_s=MSVCRT_strcat_s @1309 + strchr=MSVCRT_strchr @1310 + strcmp=MSVCRT_strcmp @1311 + strcoll=MSVCRT_strcoll @1312 + strcpy=MSVCRT_strcpy @1313 + strcpy_s=MSVCRT_strcpy_s @1314 + strcspn=MSVCRT_strcspn @1315 + strerror=MSVCRT_strerror @1316 + strerror_s=MSVCRT_strerror_s @1317 + strftime=MSVCRT_strftime @1318 + strlen=MSVCRT_strlen @1319 + strncat=MSVCRT_strncat @1320 + strncat_s=MSVCRT_strncat_s @1321 + strncmp=MSVCRT_strncmp @1322 + strncpy=MSVCRT_strncpy @1323 + strncpy_s=MSVCRT_strncpy_s @1324 + strnlen=MSVCRT_strnlen @1325 + strpbrk=MSVCRT_strpbrk @1326 + strrchr=MSVCRT_strrchr @1327 + strspn=ntdll.strspn @1328 + strstr=MSVCRT_strstr @1329 + strtod=MSVCRT_strtod @1330 + strtok=MSVCRT_strtok @1331 + strtok_s=MSVCRT_strtok_s @1332 + strtol=MSVCRT_strtol @1333 + strtoul=MSVCRT_strtoul @1334 + strxfrm=MSVCRT_strxfrm @1335 + swprintf_s=MSVCRT_swprintf_s @1336 + swscanf=MSVCRT_swscanf @1337 + swscanf_s=MSVCRT_swscanf_s @1338 + system=MSVCRT_system @1339 + tan=MSVCRT_tan @1340 + tanf=MSVCRT_tanf @1341 + tanh=MSVCRT_tanh @1342 + tanhf=MSVCRT_tanhf @1343 + tmpfile=MSVCRT_tmpfile @1344 + tmpfile_s=MSVCRT_tmpfile_s @1345 + tmpnam=MSVCRT_tmpnam @1346 + tmpnam_s=MSVCRT_tmpnam_s @1347 + tolower=MSVCRT_tolower @1348 + toupper=MSVCRT_toupper @1349 + towlower=MSVCRT_towlower @1350 + towupper=MSVCRT_towupper @1351 + ungetc=MSVCRT_ungetc @1352 + ungetwc=MSVCRT_ungetwc @1353 + vfprintf=MSVCRT_vfprintf @1354 + vfprintf_s=MSVCRT_vfprintf_s @1355 + vfwprintf=MSVCRT_vfwprintf @1356 + vfwprintf_s=MSVCRT_vfwprintf_s @1357 + vprintf=MSVCRT_vprintf @1358 + vprintf_s=MSVCRT_vprintf_s @1359 + vsprintf=MSVCRT_vsprintf @1360 + vsprintf_s=MSVCRT_vsprintf_s @1361 + vswprintf_s=MSVCRT_vswprintf_s @1362 + vwprintf=MSVCRT_vwprintf @1363 + vwprintf_s=MSVCRT_vwprintf_s @1364 + wcrtomb=MSVCRT_wcrtomb @1365 + wcrtomb_s @1366 PRIVATE + wcscat=ntdll.wcscat @1367 + wcscat_s=MSVCRT_wcscat_s @1368 + wcschr=MSVCRT_wcschr @1369 + wcscmp=MSVCRT_wcscmp @1370 + wcscoll=MSVCRT_wcscoll @1371 + wcscpy=ntdll.wcscpy @1372 + wcscpy_s=MSVCRT_wcscpy_s @1373 + wcscspn=ntdll.wcscspn @1374 + wcsftime=MSVCRT_wcsftime @1375 + wcslen=MSVCRT_wcslen @1376 + wcsncat=ntdll.wcsncat @1377 + wcsncat_s=MSVCRT_wcsncat_s @1378 + wcsncmp=MSVCRT_wcsncmp @1379 + wcsncpy=MSVCRT_wcsncpy @1380 + wcsncpy_s=MSVCRT_wcsncpy_s @1381 + wcsnlen=MSVCRT_wcsnlen @1382 + wcspbrk=MSVCRT_wcspbrk @1383 + wcsrchr=MSVCRT_wcsrchr @1384 + wcsrtombs=MSVCRT_wcsrtombs @1385 + wcsrtombs_s=MSVCRT_wcsrtombs_s @1386 + wcsspn=ntdll.wcsspn @1387 + wcsstr=MSVCRT_wcsstr @1388 + wcstod=MSVCRT_wcstod @1389 + wcstok=MSVCRT_wcstok @1390 + wcstok_s=MSVCRT_wcstok_s @1391 + wcstol=MSVCRT_wcstol @1392 + wcstombs=MSVCRT_wcstombs @1393 + wcstombs_s=MSVCRT_wcstombs_s @1394 + wcstoul=MSVCRT_wcstoul @1395 + wcsxfrm=MSVCRT_wcsxfrm @1396 + wctob=MSVCRT_wctob @1397 + wctomb=MSVCRT_wctomb @1398 + wctomb_s=MSVCRT_wctomb_s @1399 + wprintf=MSVCRT_wprintf @1400 + wprintf_s=MSVCRT_wprintf_s @1401 + wscanf=MSVCRT_wscanf @1402 + wscanf_s=MSVCRT_wscanf_s @1403 diff --git a/lib64/wine/libmsvcrt.a b/lib64/wine/libmsvcrt.a new file mode 100644 index 0000000..0f42c92 Binary files /dev/null and b/lib64/wine/libmsvcrt.a differ diff --git a/lib64/wine/libmsvcrtd.def b/lib64/wine/libmsvcrtd.def new file mode 100644 index 0000000..4edf2ca --- /dev/null +++ b/lib64/wine/libmsvcrtd.def @@ -0,0 +1,738 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/msvcrtd/msvcrtd.spec; do not edit! + +LIBRARY msvcrtd.dll + +EXPORTS + $I10_OUTPUT=MSVCRT_I10_OUTPUT @1 + ??0__non_rtti_object@@QEAA@AEBV0@@Z=MSVCRT___non_rtti_object_copy_ctor @2 + ??0__non_rtti_object@@QEAA@PEBD@Z=MSVCRT___non_rtti_object_ctor @3 + ??0bad_cast@@AEAA@PEBQEBD@Z=MSVCRT_bad_cast_ctor @4 + ??0bad_cast@@QEAA@AEBQEBD@Z=MSVCRT_bad_cast_ctor @5 + ??0bad_typeid@@QEAA@AEBV0@@Z=MSVCRT_bad_typeid_copy_ctor @6 + ??0bad_typeid@@QEAA@PEBD@Z=MSVCRT_bad_typeid_ctor @7 + ??0exception@@QEAA@AEBQEBD@Z=MSVCRT_exception_ctor @8 + ??0exception@@QEAA@AEBV0@@Z=MSVCRT_exception_copy_ctor @9 + ??0exception@@QEAA@XZ=MSVCRT_exception_default_ctor @10 + ??1__non_rtti_object@@UEAA@XZ=MSVCRT___non_rtti_object_dtor @11 + ??1bad_cast@@UEAA@XZ=MSVCRT_bad_cast_dtor @12 + ??1bad_typeid@@UEAA@XZ=MSVCRT_bad_typeid_dtor @13 + ??1exception@@UEAA@XZ=MSVCRT_exception_dtor @14 + ??1type_info@@UEAA@XZ=MSVCRT_type_info_dtor @15 + ??2@YAPEAX_K@Z=MSVCRT_operator_new @16 + ??2@YAPEAX_KHPEBDH@Z=MSVCRT_operator_new_dbg @17 + ??3@YAXPEAX@Z=MSVCRT_operator_delete @18 + ??4__non_rtti_object@@QEAAAEAV0@AEBV0@@Z=MSVCRT___non_rtti_object_opequals @19 + ??4bad_cast@@QEAAAEAV0@AEBV0@@Z=MSVCRT_bad_cast_opequals @20 + ??4bad_typeid@@QEAAAEAV0@AEBV0@@Z=MSVCRT_bad_typeid_opequals @21 + ??4exception@@QEAAAEAV0@AEBV0@@Z=MSVCRT_exception_opequals @22 + ??8type_info@@QEBAHAEBV0@@Z=MSVCRT_type_info_opequals_equals @23 + ??9type_info@@QEBAHAEBV0@@Z=MSVCRT_type_info_opnot_equals @24 + ??_7__non_rtti_object@@6B@=MSVCRT___non_rtti_object_vtable @25 DATA + ??_7bad_cast@@6B@=MSVCRT_bad_cast_vtable @26 DATA + ??_7bad_typeid@@6B@=MSVCRT_bad_typeid_vtable @27 DATA + ??_7exception@@6B@=MSVCRT_exception_vtable @28 DATA + ?_query_new_handler@@YAP6AH_K@ZXZ=MSVCRT__query_new_handler @29 + ?_query_new_mode@@YAHXZ=MSVCRT__query_new_mode @30 + ?_set_new_handler@@YAP6AH_K@ZP6AH0@Z@Z=MSVCRT__set_new_handler @31 + ?_set_new_mode@@YAHH@Z=MSVCRT__set_new_mode @32 + ?_set_se_translator@@YAP6AXIPEAU_EXCEPTION_POINTERS@@@ZP6AXI0@Z@Z=MSVCRT__set_se_translator @33 + ?before@type_info@@QEBAHAEBV1@@Z=MSVCRT_type_info_before @34 + ?name@type_info@@QEBAPEBDXZ=MSVCRT_type_info_name @35 + ?raw_name@type_info@@QEBAPEBDXZ=MSVCRT_type_info_raw_name @36 + ?set_new_handler@@YAP6AXXZP6AXXZ@Z=MSVCRT_set_new_handler @37 + ?set_terminate@@YAP6AXXZP6AXXZ@Z=MSVCRT_set_terminate @38 + ?set_unexpected@@YAP6AXXZP6AXXZ@Z=MSVCRT_set_unexpected @39 + ?terminate@@YAXXZ=MSVCRT_terminate @40 + ?unexpected@@YAXXZ=MSVCRT_unexpected @41 + ?what@exception@@UEBAPEBDXZ=MSVCRT_what_exception @42 + _CrtCheckMemory @43 + _CrtDbgBreak @44 PRIVATE + _CrtDbgReport @45 + _CrtDoForAllClientObjects @46 PRIVATE + _CrtDumpMemoryLeaks @47 + _CrtIsMemoryBlock @48 PRIVATE + _CrtIsValidHeapPointer @49 PRIVATE + _CrtIsValidPointer @50 PRIVATE + _CrtMemCheckpoint @51 PRIVATE + _CrtMemDifference @52 PRIVATE + _CrtMemDumpAllObjectsSince @53 PRIVATE + _CrtMemDumpStatistics @54 PRIVATE + _CrtSetAllocHook @55 PRIVATE + _CrtSetBreakAlloc @56 + _CrtSetDbgBlockType @57 PRIVATE + _CrtSetDbgFlag @58 + _CrtSetDumpClient @59 + _CrtSetReportFile @60 PRIVATE + _CrtSetReportHook @61 + _CrtSetReportMode @62 + _CxxThrowException @63 + _Getdays @64 + _Getmonths @65 + _Gettnames @66 + _HUGE=MSVCRT__HUGE @67 DATA + _Strftime @68 + _XcptFilter @69 + __CxxFrameHandler @70 + __RTCastToVoid=MSVCRT___RTCastToVoid @71 + __RTDynamicCast=MSVCRT___RTDynamicCast @72 + __RTtypeid=MSVCRT___RTtypeid @73 + __STRINGTOLD @74 + ___mb_cur_max_func=MSVCRT____mb_cur_max_func @75 + __argc=MSVCRT___argc @76 DATA + __argv=MSVCRT___argv @77 DATA + __badioinfo=MSVCRT___badioinfo @78 DATA + __crtCompareStringA @79 + __crtGetLocaleInfoW @80 + __crtLCMapStringA @81 + __dllonexit @82 + __doserrno=MSVCRT___doserrno @83 + __fpecode @84 + __getmainargs @85 + __initenv=MSVCRT___initenv @86 DATA + __isascii=MSVCRT___isascii @87 + __iscsym=MSVCRT___iscsym @88 + __iscsymf=MSVCRT___iscsymf @89 + __lc_codepage=MSVCRT___lc_codepage @90 DATA + __lc_collate_cp=MSVCRT___lc_collate_cp @91 DATA + __lc_handle=MSVCRT___lc_handle @92 DATA + __lconv_init @93 + __mb_cur_max=MSVCRT___mb_cur_max @94 DATA + __p___argc=MSVCRT___p___argc @95 + __p___argv=MSVCRT___p___argv @96 + __p___initenv @97 + __p___mb_cur_max @98 + __p___wargv=MSVCRT___p___wargv @99 + __p___winitenv @100 + __p__acmdln=MSVCRT___p__acmdln @101 + __p__amblksiz @102 + __p__commode @103 + __p__crtAssertBusy @104 + __p__crtBreakAlloc @105 + __p__crtDbgFlag @106 + __p__daylight=MSVCRT___p__daylight @107 + __p__dstbias=MSVCRT___p__dstbias @108 + __p__environ=MSVCRT___p__environ @109 + __p__fileinfo @110 PRIVATE + __p__fmode=MSVCRT___p__fmode @111 + __p__iob @112 + __p__mbcasemap @113 PRIVATE + __p__mbctype @114 + __p__osver @115 + __p__pctype=MSVCRT___p__pctype @116 + __p__pgmptr=MSVCRT___p__pgmptr @117 + __p__pwctype @118 PRIVATE + __p__timezone=MSVCRT___p__timezone @119 + __p__tzname @120 + __p__wcmdln=MSVCRT___p__wcmdln @121 + __p__wenviron=MSVCRT___p__wenviron @122 + __p__winmajor @123 + __p__winminor @124 + __p__winver @125 + __p__wpgmptr=MSVCRT___p__wpgmptr @126 + __pctype_func=MSVCRT___pctype_func @127 + __pioinfo=MSVCRT___pioinfo @128 DATA + __pxcptinfoptrs=MSVCRT___pxcptinfoptrs @129 + __set_app_type=MSVCRT___set_app_type @130 + __setlc_active=MSVCRT___setlc_active @131 DATA + __setusermatherr=MSVCRT___setusermatherr @132 + __threadhandle=kernel32.GetCurrentThread @133 + __threadid=kernel32.GetCurrentThreadId @134 + __toascii=MSVCRT___toascii @135 + __unDName @136 + __unDNameEx @137 + __unguarded_readlc_active=MSVCRT___unguarded_readlc_active @138 DATA + __wargv=MSVCRT___wargv @139 DATA + __wgetmainargs @140 + __winitenv=MSVCRT___winitenv @141 DATA + _abnormal_termination @142 + _access=MSVCRT__access @143 + _acmdln=MSVCRT__acmdln @144 DATA + _aexit_rtn @145 DATA + _amsg_exit @146 + _assert=MSVCRT__assert @147 + _atodbl=MSVCRT__atodbl @148 + _atoi64=MSVCRT__atoi64 @149 + _atoldbl=MSVCRT__atoldbl @150 + _beep=MSVCRT__beep @151 + _beginthread @152 + _beginthreadex @153 + _c_exit=MSVCRT__c_exit @154 + _cabs=MSVCRT__cabs @155 + _callnewh @156 + _calloc_dbg=MSVCRT_calloc @157 + _cexit=MSVCRT__cexit @158 + _cgets @159 + _chdir=MSVCRT__chdir @160 + _chdrive=MSVCRT__chdrive @161 + _chgsign=MSVCRT__chgsign @162 + _chmod=MSVCRT__chmod @163 + _chsize=MSVCRT__chsize @164 + _clearfp @165 + _close=MSVCRT__close @166 + _commit=MSVCRT__commit @167 + _commode=MSVCRT__commode @168 DATA + _control87 @169 + _controlfp @170 + _copysign=MSVCRT__copysign @171 + _cprintf @172 + _cputs @173 + _creat=MSVCRT__creat @174 + _crtAssertBusy @175 DATA + _crtBreakAlloc @176 DATA + _crtDbgFlag @177 DATA + _cscanf @178 + _ctype=MSVCRT__ctype @179 DATA + _cwait @180 + _daylight=MSVCRT___daylight @181 DATA + _dstbias=MSVCRT__dstbias @182 DATA + _dup=MSVCRT__dup @183 + _dup2=MSVCRT__dup2 @184 + _ecvt=MSVCRT__ecvt @185 + _endthread @186 + _endthreadex @187 + _environ=MSVCRT__environ @188 DATA + _eof=MSVCRT__eof @189 + _errno=MSVCRT__errno @190 + _execl @191 + _execle @192 + _execlp @193 + _execlpe @194 + _execv @195 + _execve=MSVCRT__execve @196 + _execvp @197 + _execvpe @198 + _exit=MSVCRT__exit @199 + _expand @200 + _expand_dbg=_expand @201 + _fcloseall=MSVCRT__fcloseall @202 + _fcvt=MSVCRT__fcvt @203 + _fdopen=MSVCRT__fdopen @204 + _fgetchar=MSVCRT__fgetchar @205 + _fgetwchar=MSVCRT__fgetwchar @206 + _filbuf=MSVCRT__filbuf @207 + _filelength=MSVCRT__filelength @208 + _filelengthi64=MSVCRT__filelengthi64 @209 + _fileno=MSVCRT__fileno @210 + _findclose=MSVCRT__findclose @211 + _findfirst=MSVCRT__findfirst @212 + _findfirsti64=MSVCRT__findfirsti64 @213 + _findnext=MSVCRT__findnext @214 + _findnexti64=MSVCRT__findnexti64 @215 + _finite=MSVCRT__finite @216 + _flsbuf=MSVCRT__flsbuf @217 + _flushall=MSVCRT__flushall @218 + _fmode=MSVCRT__fmode @219 DATA + _fpclass=MSVCRT__fpclass @220 + _fpieee_flt @221 + _fpreset @222 + _fputchar=MSVCRT__fputchar @223 + _fputwchar=MSVCRT__fputwchar @224 + _free_dbg=MSVCRT_free @225 + _fsopen=MSVCRT__fsopen @226 + _fstat=MSVCRT__fstat @227 + _fstati64=MSVCRT__fstati64 @228 + _ftime=MSVCRT__ftime @229 + _fullpath=MSVCRT__fullpath @230 + _futime @231 + _gcvt=MSVCRT__gcvt @232 + _get_osfhandle=MSVCRT__get_osfhandle @233 + _get_sbh_threshold @234 + _getch @235 + _getche @236 + _getcwd=MSVCRT__getcwd @237 + _getdcwd=MSVCRT__getdcwd @238 + _getdiskfree=MSVCRT__getdiskfree @239 + _getdllprocaddr @240 + _getdrive=MSVCRT__getdrive @241 + _getdrives=kernel32.GetLogicalDrives @242 + _getmaxstdio=MSVCRT__getmaxstdio @243 + _getmbcp @244 + _getpid @245 + _getsystime @246 PRIVATE + _getw=MSVCRT__getw @247 + _getws=MSVCRT__getws @248 + _heapadd @249 + _heapchk @250 + _heapmin @251 + _heapset @252 + _heapused @253 PRIVATE + _heapwalk @254 + _hypot @255 + _i64toa=ntdll._i64toa @256 + _i64tow=ntdll._i64tow @257 + _initterm @258 + _iob=MSVCRT__iob @259 DATA + _isatty=MSVCRT__isatty @260 + _isctype=MSVCRT__isctype @261 + _ismbbalnum @262 PRIVATE + _ismbbalpha @263 PRIVATE + _ismbbgraph @264 PRIVATE + _ismbbkalnum @265 PRIVATE + _ismbbkana @266 + _ismbbkprint @267 PRIVATE + _ismbbkpunct @268 PRIVATE + _ismbblead @269 + _ismbbprint @270 PRIVATE + _ismbbpunct @271 PRIVATE + _ismbbtrail @272 + _ismbcalnum @273 + _ismbcalpha @274 + _ismbcdigit @275 + _ismbcgraph @276 + _ismbchira @277 + _ismbckata @278 + _ismbcl0 @279 + _ismbcl1 @280 + _ismbcl2 @281 + _ismbclegal @282 + _ismbclower @283 + _ismbcprint @284 + _ismbcpunct @285 + _ismbcspace @286 + _ismbcsymbol @287 + _ismbcupper @288 + _ismbslead @289 + _ismbstrail @290 + _isnan=MSVCRT__isnan @291 + _itoa=MSVCRT__itoa @292 + _itow=ntdll._itow @293 + _j0=MSVCRT__j0 @294 + _j1=MSVCRT__j1 @295 + _jn=MSVCRT__jn @296 + _kbhit @297 + _lfind @298 + _loaddll @299 + _local_unwind @300 + _lock @301 + _locking=MSVCRT__locking @302 + _logb=MSVCRT__logb @303 + _lrotl=MSVCRT__lrotl @304 + _lrotr=MSVCRT__lrotr @305 + _lsearch @306 + _lseek=MSVCRT__lseek @307 + _lseeki64=MSVCRT__lseeki64 @308 + _ltoa=ntdll._ltoa @309 + _ltow=ntdll._ltow @310 + _makepath=MSVCRT__makepath @311 + _malloc_dbg=MSVCRT_malloc @312 + _mbbtombc @313 + _mbbtype @314 + _mbccpy @315 + _mbcjistojms @316 + _mbcjmstojis @317 + _mbclen @318 + _mbctohira @319 + _mbctokata @320 + _mbctolower @321 + _mbctombb @322 + _mbctoupper @323 + _mbctype=MSVCRT_mbctype @324 DATA + _mbsbtype @325 + _mbscat @326 + _mbschr @327 + _mbscmp @328 + _mbscoll @329 + _mbscpy @330 + _mbscspn @331 + _mbsdec @332 + _mbsdup=MSVCRT__strdup @333 + _mbsicmp @334 + _mbsicoll @335 + _mbsinc @336 + _mbslen @337 + _mbslwr @338 + _mbsnbcat @339 + _mbsnbcmp @340 + _mbsnbcnt @341 + _mbsnbcoll @342 + _mbsnbcpy @343 + _mbsnbicmp @344 + _mbsnbicoll @345 + _mbsnbset @346 + _mbsncat @347 + _mbsnccnt @348 + _mbsncmp @349 + _mbsncoll @350 PRIVATE + _mbsncpy @351 + _mbsnextc @352 + _mbsnicmp @353 + _mbsnicoll @354 PRIVATE + _mbsninc @355 + _mbsnset @356 + _mbspbrk @357 + _mbsrchr @358 + _mbsrev @359 + _mbsset @360 + _mbsspn @361 + _mbsspnp @362 + _mbsstr @363 + _mbstok @364 + _mbstrlen @365 + _mbsupr @366 + _memccpy=ntdll._memccpy @367 + _memicmp=MSVCRT__memicmp @368 + _mkdir=MSVCRT__mkdir @369 + _mktemp=MSVCRT__mktemp @370 + _msize @371 + _msize_dbg=_msize @372 + _nextafter=MSVCRT__nextafter @373 + _onexit=MSVCRT__onexit @374 + _open=MSVCRT__open @375 + _open_osfhandle=MSVCRT__open_osfhandle @376 + _osver=MSVCRT__osver @377 DATA + _pclose=MSVCRT__pclose @378 + _pctype=MSVCRT__pctype @379 DATA + _pgmptr=MSVCRT__pgmptr @380 DATA + _pipe=MSVCRT__pipe @381 + _popen=MSVCRT__popen @382 + _purecall @383 + _putch @384 + _putenv @385 + _putw=MSVCRT__putw @386 + _putws=MSVCRT__putws @387 + _read=MSVCRT__read @388 + _realloc_dbg=MSVCRT_realloc @389 + _rmdir=MSVCRT__rmdir @390 + _rmtmp=MSVCRT__rmtmp @391 + _rotl @392 + _rotr @393 + _scalb=MSVCRT__scalb @394 + _searchenv=MSVCRT__searchenv @395 + _set_error_mode @396 + _set_sbh_threshold @397 + _seterrormode @398 + _setjmp=MSVCRT__setjmp @399 + _setmaxstdio=MSVCRT__setmaxstdio @400 + _setmbcp @401 + _setmode=MSVCRT__setmode @402 + _setsystime @403 PRIVATE + _sleep=MSVCRT__sleep @404 + _snprintf=MSVCRT__snprintf @405 + _snwprintf=MSVCRT__snwprintf @406 + _sopen=MSVCRT__sopen @407 + _spawnl=MSVCRT__spawnl @408 + _spawnle=MSVCRT__spawnle @409 + _spawnlp=MSVCRT__spawnlp @410 + _spawnlpe=MSVCRT__spawnlpe @411 + _spawnv=MSVCRT__spawnv @412 + _spawnve=MSVCRT__spawnve @413 + _spawnvp=MSVCRT__spawnvp @414 + _spawnvpe=MSVCRT__spawnvpe @415 + _splitpath=MSVCRT__splitpath @416 + _stat=MSVCRT_stat @417 + _stati64=MSVCRT_stati64 @418 + _statusfp @419 + _strcmpi=MSVCRT__stricmp @420 + _strdate=MSVCRT__strdate @421 + _strdup=MSVCRT__strdup @422 + _strerror=MSVCRT__strerror @423 + _stricmp=MSVCRT__stricmp @424 + _stricoll=MSVCRT__stricoll @425 + _strlwr=MSVCRT__strlwr @426 + _strncoll=MSVCRT__strncoll @427 + _strnicmp=MSVCRT__strnicmp @428 + _strnicoll=MSVCRT__strnicoll @429 + _strnset=MSVCRT__strnset @430 + _strrev=MSVCRT__strrev @431 + _strset @432 + _strtime=MSVCRT__strtime @433 + _strupr=MSVCRT__strupr @434 + _swab=MSVCRT__swab @435 + _sys_errlist=MSVCRT__sys_errlist @436 DATA + _sys_nerr=MSVCRT__sys_nerr @437 DATA + _tell=MSVCRT__tell @438 + _telli64 @439 + _tempnam=MSVCRT__tempnam @440 + _timezone=MSVCRT___timezone @441 DATA + _tolower=MSVCRT__tolower @442 + _toupper=MSVCRT__toupper @443 + _tzname=MSVCRT__tzname @444 DATA + _tzset=MSVCRT__tzset @445 + _ui64toa=ntdll._ui64toa @446 + _ui64tow=ntdll._ui64tow @447 + _ultoa=ntdll._ultoa @448 + _ultow=ntdll._ultow @449 + _umask=MSVCRT__umask @450 + _ungetch @451 + _unlink=MSVCRT__unlink @452 + _unloaddll @453 + _unlock @454 + _utime @455 + _vsnprintf=MSVCRT_vsnprintf @456 + _vsnwprintf=MSVCRT_vsnwprintf @457 + _waccess=MSVCRT__waccess @458 + _wasctime=MSVCRT__wasctime @459 + _wchdir=MSVCRT__wchdir @460 + _wchmod=MSVCRT__wchmod @461 + _wcmdln=MSVCRT__wcmdln @462 DATA + _wcreat=MSVCRT__wcreat @463 + _wcsdup=MSVCRT__wcsdup @464 + _wcsicmp=MSVCRT__wcsicmp @465 + _wcsicoll=MSVCRT__wcsicoll @466 + _wcslwr=MSVCRT__wcslwr @467 + _wcsncoll=MSVCRT__wcsncoll @468 + _wcsnicmp=MSVCRT__wcsnicmp @469 + _wcsnicoll=MSVCRT__wcsnicoll @470 + _wcsnset=MSVCRT__wcsnset @471 + _wcsrev=MSVCRT__wcsrev @472 + _wcsset=MSVCRT__wcsset @473 + _wcsupr=MSVCRT__wcsupr @474 + _wctime=MSVCRT__wctime @475 + _wenviron=MSVCRT__wenviron @476 DATA + _wexecl @477 + _wexecle @478 + _wexeclp @479 + _wexeclpe @480 + _wexecv @481 + _wexecve @482 + _wexecvp @483 + _wexecvpe @484 + _wfdopen=MSVCRT__wfdopen @485 + _wfindfirst=MSVCRT__wfindfirst @486 + _wfindfirsti64=MSVCRT__wfindfirsti64 @487 + _wfindnext=MSVCRT__wfindnext @488 + _wfindnexti64=MSVCRT__wfindnexti64 @489 + _wfopen=MSVCRT__wfopen @490 + _wfreopen=MSVCRT__wfreopen @491 + _wfsopen=MSVCRT__wfsopen @492 + _wfullpath=MSVCRT__wfullpath @493 + _wgetcwd=MSVCRT__wgetcwd @494 + _wgetdcwd=MSVCRT__wgetdcwd @495 + _wgetenv=MSVCRT__wgetenv @496 + _winmajor=MSVCRT__winmajor @497 DATA + _winminor=MSVCRT__winminor @498 DATA + _winver=MSVCRT__winver @499 DATA + _wmakepath=MSVCRT__wmakepath @500 + _wmkdir=MSVCRT__wmkdir @501 + _wmktemp=MSVCRT__wmktemp @502 + _wopen=MSVCRT__wopen @503 + _wperror=MSVCRT__wperror @504 + _wpgmptr=MSVCRT__wpgmptr @505 DATA + _wpopen=MSVCRT__wpopen @506 + _wputenv @507 + _wremove=MSVCRT__wremove @508 + _wrename=MSVCRT__wrename @509 + _write=MSVCRT__write @510 + _wrmdir=MSVCRT__wrmdir @511 + _wsearchenv=MSVCRT__wsearchenv @512 + _wsetlocale=MSVCRT__wsetlocale @513 + _wsopen=MSVCRT__wsopen @514 + _wspawnl=MSVCRT__wspawnl @515 + _wspawnle=MSVCRT__wspawnle @516 + _wspawnlp=MSVCRT__wspawnlp @517 + _wspawnlpe=MSVCRT__wspawnlpe @518 + _wspawnv=MSVCRT__wspawnv @519 + _wspawnve=MSVCRT__wspawnve @520 + _wspawnvp=MSVCRT__wspawnvp @521 + _wspawnvpe=MSVCRT__wspawnvpe @522 + _wsplitpath=MSVCRT__wsplitpath @523 + _wstat=MSVCRT__wstat @524 + _wstati64=MSVCRT__wstati64 @525 + _wstrdate=MSVCRT__wstrdate @526 + _wstrtime=MSVCRT__wstrtime @527 + _wsystem @528 + _wtempnam=MSVCRT__wtempnam @529 + _wtmpnam=MSVCRT__wtmpnam @530 + _wtoi=MSVCRT__wtoi @531 + _wtoi64=MSVCRT__wtoi64 @532 + _wtol=MSVCRT__wtol @533 + _wunlink=MSVCRT__wunlink @534 + _wutime @535 + _y0=MSVCRT__y0 @536 + _y1=MSVCRT__y1 @537 + _yn=MSVCRT__yn @538 + abort=MSVCRT_abort @539 + abs=MSVCRT_abs @540 + acos=MSVCRT_acos @541 + asctime=MSVCRT_asctime @542 + asin=MSVCRT_asin @543 + atan=MSVCRT_atan @544 + atan2=MSVCRT_atan2 @545 + atexit=MSVCRT_atexit @546 PRIVATE + atof=MSVCRT_atof @547 + atoi=MSVCRT_atoi @548 + atol=MSVCRT_atol @549 + bsearch=MSVCRT_bsearch @550 + calloc=MSVCRT_calloc @551 + ceil=MSVCRT_ceil @552 + clearerr=MSVCRT_clearerr @553 + clock=MSVCRT_clock @554 + cos=MSVCRT_cos @555 + cosh=MSVCRT_cosh @556 + ctime=MSVCRT_ctime @557 + difftime=MSVCRT_difftime @558 + div=MSVCRT_div @559 + exit=MSVCRT_exit @560 + exp=MSVCRT_exp @561 + fabs=MSVCRT_fabs @562 + fclose=MSVCRT_fclose @563 + feof=MSVCRT_feof @564 + ferror=MSVCRT_ferror @565 + fflush=MSVCRT_fflush @566 + fgetc=MSVCRT_fgetc @567 + fgetpos=MSVCRT_fgetpos @568 + fgets=MSVCRT_fgets @569 + fgetwc=MSVCRT_fgetwc @570 + fgetws=MSVCRT_fgetws @571 + floor=MSVCRT_floor @572 + fmod=MSVCRT_fmod @573 + fopen=MSVCRT_fopen @574 + fprintf=MSVCRT_fprintf @575 + fputc=MSVCRT_fputc @576 + fputs=MSVCRT_fputs @577 + fputwc=MSVCRT_fputwc @578 + fputws=MSVCRT_fputws @579 + fread=MSVCRT_fread @580 + free=MSVCRT_free @581 + freopen=MSVCRT_freopen @582 + frexp=MSVCRT_frexp @583 + fscanf=MSVCRT_fscanf @584 + fseek=MSVCRT_fseek @585 + fsetpos=MSVCRT_fsetpos @586 + ftell=MSVCRT_ftell @587 + fwprintf=MSVCRT_fwprintf @588 + fwrite=MSVCRT_fwrite @589 + fwscanf=MSVCRT_fwscanf @590 + getc=MSVCRT_getc @591 + getchar=MSVCRT_getchar @592 + getenv=MSVCRT_getenv @593 + gets=MSVCRT_gets @594 + getwc=MSVCRT_getwc @595 + getwchar=MSVCRT_getwchar @596 + gmtime=MSVCRT_gmtime @597 + is_wctype=ntdll.iswctype @598 + isalnum=MSVCRT_isalnum @599 + isalpha=MSVCRT_isalpha @600 + iscntrl=MSVCRT_iscntrl @601 + isdigit=MSVCRT_isdigit @602 + isgraph=MSVCRT_isgraph @603 + isleadbyte=MSVCRT_isleadbyte @604 + islower=MSVCRT_islower @605 + isprint=MSVCRT_isprint @606 + ispunct=MSVCRT_ispunct @607 + isspace=MSVCRT_isspace @608 + isupper=MSVCRT_isupper @609 + iswalnum=MSVCRT_iswalnum @610 + iswalpha=ntdll.iswalpha @611 + iswascii=MSVCRT_iswascii @612 + iswcntrl=MSVCRT_iswcntrl @613 + iswctype=ntdll.iswctype @614 + iswdigit=MSVCRT_iswdigit @615 + iswgraph=MSVCRT_iswgraph @616 + iswlower=MSVCRT_iswlower @617 + iswprint=MSVCRT_iswprint @618 + iswpunct=MSVCRT_iswpunct @619 + iswspace=MSVCRT_iswspace @620 + iswupper=MSVCRT_iswupper @621 + iswxdigit=MSVCRT_iswxdigit @622 + isxdigit=MSVCRT_isxdigit @623 + labs=MSVCRT_labs @624 + ldexp=MSVCRT_ldexp @625 + ldiv=MSVCRT_ldiv @626 + localeconv=MSVCRT_localeconv @627 + localtime=MSVCRT_localtime @628 + log=MSVCRT_log @629 + log10=MSVCRT_log10 @630 + longjmp=MSVCRT_longjmp @631 + malloc=MSVCRT_malloc @632 + mblen=MSVCRT_mblen @633 + mbstowcs=MSVCRT_mbstowcs @634 + mbtowc=MSVCRT_mbtowc @635 + memchr=MSVCRT_memchr @636 + memcmp=MSVCRT_memcmp @637 + memcpy=MSVCRT_memcpy @638 + memmove=MSVCRT_memmove @639 + memset=MSVCRT_memset @640 + mktime=MSVCRT_mktime @641 + modf=MSVCRT_modf @642 + perror=MSVCRT_perror @643 + pow=MSVCRT_pow @644 + printf=MSVCRT_printf @645 + putc=MSVCRT_putc @646 + putchar=MSVCRT_putchar @647 + puts=MSVCRT_puts @648 + putwc=MSVCRT_fputwc @649 + putwchar=MSVCRT__fputwchar @650 + qsort=MSVCRT_qsort @651 + raise=MSVCRT_raise @652 + rand=MSVCRT_rand @653 + realloc=MSVCRT_realloc @654 + remove=MSVCRT_remove @655 + rename=MSVCRT_rename @656 + rewind=MSVCRT_rewind @657 + scanf=MSVCRT_scanf @658 + setbuf=MSVCRT_setbuf @659 + setlocale=MSVCRT_setlocale @660 + setvbuf=MSVCRT_setvbuf @661 + signal=MSVCRT_signal @662 + sin=MSVCRT_sin @663 + sinh=MSVCRT_sinh @664 + sprintf=MSVCRT_sprintf @665 + sqrt=MSVCRT_sqrt @666 + srand=MSVCRT_srand @667 + sscanf=MSVCRT_sscanf @668 + strcat=ntdll.strcat @669 + strchr=MSVCRT_strchr @670 + strcmp=MSVCRT_strcmp @671 + strcoll=MSVCRT_strcoll @672 + strcpy=MSVCRT_strcpy @673 + strcspn=MSVCRT_strcspn @674 + strerror=MSVCRT_strerror @675 + strftime=MSVCRT_strftime @676 + strlen=MSVCRT_strlen @677 + strncat=MSVCRT_strncat @678 + strncmp=MSVCRT_strncmp @679 + strncpy=MSVCRT_strncpy @680 + strpbrk=MSVCRT_strpbrk @681 + strrchr=MSVCRT_strrchr @682 + strspn=ntdll.strspn @683 + strstr=MSVCRT_strstr @684 + strtod=MSVCRT_strtod @685 + strtok=MSVCRT_strtok @686 + strtol=MSVCRT_strtol @687 + strtoul=MSVCRT_strtoul @688 + strxfrm=MSVCRT_strxfrm @689 + swprintf=MSVCRT_swprintf @690 + swscanf=MSVCRT_swscanf @691 + system=MSVCRT_system @692 + tan=MSVCRT_tan @693 + tanh=MSVCRT_tanh @694 + time=MSVCRT_time @695 + tmpfile=MSVCRT_tmpfile @696 + tmpnam=MSVCRT_tmpnam @697 + tolower=MSVCRT_tolower @698 + toupper=MSVCRT_toupper @699 + towlower=MSVCRT_towlower @700 + towupper=MSVCRT_towupper @701 + ungetc=MSVCRT_ungetc @702 + ungetwc=MSVCRT_ungetwc @703 + vfprintf=MSVCRT_vfprintf @704 + vfwprintf=MSVCRT_vfwprintf @705 + vprintf=MSVCRT_vprintf @706 + vsprintf=MSVCRT_vsprintf @707 + vswprintf=MSVCRT_vswprintf @708 + vwprintf=MSVCRT_vwprintf @709 + wcscat=ntdll.wcscat @710 + wcschr=MSVCRT_wcschr @711 + wcscmp=MSVCRT_wcscmp @712 + wcscoll=MSVCRT_wcscoll @713 + wcscpy=ntdll.wcscpy @714 + wcscspn=ntdll.wcscspn @715 + wcsftime=MSVCRT_wcsftime @716 + wcslen=MSVCRT_wcslen @717 + wcsncat=ntdll.wcsncat @718 + wcsncmp=MSVCRT_wcsncmp @719 + wcsncpy=MSVCRT_wcsncpy @720 + wcspbrk=MSVCRT_wcspbrk @721 + wcsrchr=MSVCRT_wcsrchr @722 + wcsspn=ntdll.wcsspn @723 + wcsstr=MSVCRT_wcsstr @724 + wcstod=MSVCRT_wcstod @725 + wcstok=MSVCRT_wcstok @726 + wcstol=MSVCRT_wcstol @727 + wcstombs=MSVCRT_wcstombs @728 + wcstoul=MSVCRT_wcstoul @729 + wcsxfrm=MSVCRT_wcsxfrm @730 + wctomb=MSVCRT_wctomb @731 + wprintf=MSVCRT_wprintf @732 + wscanf=MSVCRT_wscanf @733 diff --git a/lib64/wine/libmsvfw32.def b/lib64/wine/libmsvfw32.def new file mode 100644 index 0000000..99c56c2 --- /dev/null +++ b/lib64/wine/libmsvfw32.def @@ -0,0 +1,52 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/msvfw32/msvfw32.spec; do not edit! + +LIBRARY msvfw32.dll + +EXPORTS + VideoForWindowsVersion @2 + DrawDibBegin @3 + DrawDibChangePalette @4 + DrawDibClose @5 + DrawDibDraw @6 + DrawDibEnd @7 + DrawDibGetBuffer @8 + DrawDibGetPalette @9 + DrawDibOpen @10 + DrawDibProfileDisplay @11 + DrawDibRealize @12 + DrawDibSetPalette @13 + DrawDibStart @14 + DrawDibStop @15 + DrawDibTime @16 + GetOpenFileNamePreview=GetOpenFileNamePreviewA @17 + GetOpenFileNamePreviewA @18 + GetOpenFileNamePreviewW @19 + GetSaveFileNamePreviewA @20 + GetSaveFileNamePreviewW @21 + ICClose @22 + ICCompress @23 + ICCompressorChoose @24 + ICCompressorFree @25 + ICDecompress @26 + ICDraw @27 + ICDrawBegin @28 + ICGetDisplayFormat @29 + ICGetInfo @30 + ICImageCompress @31 + ICImageDecompress @32 + ICInfo @33 + ICInstall @34 + ICLocate @35 + ICMThunk @36 PRIVATE + ICOpen @37 + ICOpenFunction @38 + ICRemove @39 + ICSendMessage @40 + ICSeqCompressFrame @41 + ICSeqCompressFrameEnd @42 + ICSeqCompressFrameStart @43 + MCIWndCreate=MCIWndCreateA @44 + MCIWndCreateA @45 + MCIWndCreateW @46 + MCIWndRegisterClass @47 + StretchDIB @48 PRIVATE diff --git a/lib64/wine/libmswsock.def b/lib64/wine/libmswsock.def new file mode 100644 index 0000000..020a9f4 --- /dev/null +++ b/lib64/wine/libmswsock.def @@ -0,0 +1,37 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/mswsock/mswsock.spec; do not edit! + +LIBRARY mswsock.dll + +EXPORTS + AcceptEx @1 + EnumProtocolsA=ws2_32.WSAEnumProtocolsA @2 + EnumProtocolsW=ws2_32.WSAEnumProtocolsW @3 + GetAcceptExSockaddrs @4 + GetAddressByNameA @5 PRIVATE + GetAddressByNameW @6 PRIVATE + GetNameByTypeA @7 PRIVATE + GetNameByTypeW @8 PRIVATE + GetServiceA @9 PRIVATE + GetServiceW @10 PRIVATE + GetTypeByNameA @11 PRIVATE + GetTypeByNameW @12 PRIVATE + MigrateWinsockConfiguration @13 PRIVATE + NPLoadNameSpaces @14 PRIVATE + NSPStartup @15 PRIVATE + ServiceMain @16 PRIVATE + SetServiceA @17 PRIVATE + SetServiceW @18 PRIVATE + StartWsdpService @19 PRIVATE + StopWsdpService @20 PRIVATE + SvchostPushServiceGlobals @21 PRIVATE + TransmitFile @22 + WSARecvEx @23 + WSPStartup @24 PRIVATE + dn_expand @25 PRIVATE + getnetbyname @26 PRIVATE + inet_network @27 PRIVATE + rcmd @28 PRIVATE + rexec @29 PRIVATE + rresvport @30 PRIVATE + s_perror @31 PRIVATE + sethostname @32 PRIVATE diff --git a/lib64/wine/libnddeapi.def b/lib64/wine/libnddeapi.def new file mode 100644 index 0000000..010aed9 --- /dev/null +++ b/lib64/wine/libnddeapi.def @@ -0,0 +1,33 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/nddeapi/nddeapi.spec; do not edit! + +LIBRARY nddeapi.dll + +EXPORTS + NDdeShareAddA @500 + NDdeShareDelA @501 + NDdeShareEnumA @502 + NDdeShareGetInfoA @503 + NDdeShareSetInfoA @504 + NDdeGetErrorStringA @505 + NDdeIsValidShareNameA @506 + NDdeIsValidAppTopicListA @507 + NDdeGetShareSecurityA @509 + NDdeSetShareSecurityA @510 + NDdeGetTrustedShareA @511 + NDdeSetTrustedShareA @512 + NDdeTrustedShareEnumA @513 + NDdeShareAddW @600 + NDdeShareDelW @601 + NDdeShareEnumW @602 + NDdeShareGetInfoW @603 + NDdeShareSetInfoW @604 + NDdeGetErrorStringW @605 + NDdeIsValidShareNameW @606 + NDdeIsValidAppTopicListW @607 + NDdeGetShareSecurityW @609 + NDdeSetShareSecurityW @610 + NDdeGetTrustedShareW @611 + NDdeSetTrustedShareW @612 + NDdeTrustedShareEnumW @613 + NDdeSpecialCommandA @508 PRIVATE + NDdeSpecialCommandW @514 PRIVATE diff --git a/lib64/wine/libnetapi32.def b/lib64/wine/libnetapi32.def new file mode 100644 index 0000000..ae9b97d --- /dev/null +++ b/lib64/wine/libnetapi32.def @@ -0,0 +1,300 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/netapi32/netapi32.spec; do not edit! + +LIBRARY netapi32.dll + +EXPORTS + DavGetHTTPFromUNCPath @1 + DavGetUNCFromHTTPPath @2 + DsAddressToSiteNames @3 PRIVATE + DsAddressToSiteNamesEx @4 PRIVATE + DsDeregisterDnsHostRecords @5 PRIVATE + DsEnumerateDomainTrustsA @6 + DsEnumerateDomainTrustsW @7 + DsGetDcClose @8 PRIVATE + DsGetDcNameA @9 + DsGetDcNameW @10 + DsGetDcNext @11 PRIVATE + DsGetDcOpen @12 PRIVATE + DsGetDcSiteCoverage @13 PRIVATE + DsGetForestTrustInformationW @14 PRIVATE + DsGetSiteNameA @15 + DsGetSiteNameW @16 + DsMergeForestTrustInformationW @17 PRIVATE + DsRoleFreeMemory @18 + DsRoleGetPrimaryDomainInformation @19 + DsValidateSubnetName @20 PRIVATE + I_BrowserDebugCall @21 PRIVATE + I_BrowserDebugTrace @22 PRIVATE + I_BrowserQueryEmulatedDomains @23 + I_BrowserQueryOtherDomains @24 PRIVATE + I_BrowserQueryStatistics @25 PRIVATE + I_BrowserResetNetlogonState @26 PRIVATE + I_BrowserResetStatistics @27 PRIVATE + I_BrowserServerEnum @28 PRIVATE + I_BrowserSetNetlogonState @29 + I_NetAccountDeltas @30 PRIVATE + I_NetAccountSync @31 PRIVATE + I_NetDatabaseDeltas @32 PRIVATE + I_NetDatabaseRedo @33 PRIVATE + I_NetDatabaseSync2 @34 PRIVATE + I_NetDatabaseSync @35 PRIVATE + I_NetDfsCreateExitPoint @36 PRIVATE + I_NetDfsCreateLocalPartition @37 PRIVATE + I_NetDfsDeleteExitPoint @38 PRIVATE + I_NetDfsDeleteLocalPartition @39 PRIVATE + I_NetDfsFixLocalVolume @40 PRIVATE + I_NetDfsGetVersion @41 PRIVATE + I_NetDfsIsThisADomainName @42 PRIVATE + I_NetDfsModifyPrefix @43 PRIVATE + I_NetDfsSetLocalVolumeState @44 PRIVATE + I_NetDfsSetServerInfo @45 PRIVATE + I_NetGetDCList @46 PRIVATE + I_NetListCanonicalize @47 PRIVATE + I_NetListTraverse @48 PRIVATE + I_NetLogonControl2 @49 PRIVATE + I_NetLogonControl @50 PRIVATE + I_NetLogonSamLogoff @51 PRIVATE + I_NetLogonSamLogon @52 PRIVATE + I_NetLogonUasLogoff @53 PRIVATE + I_NetLogonUasLogon @54 PRIVATE + I_NetNameCanonicalize @55 PRIVATE + I_NetNameCompare @56 + I_NetNameValidate @57 + I_NetPathCanonicalize @58 PRIVATE + I_NetPathCompare @59 PRIVATE + I_NetPathType @60 PRIVATE + I_NetServerAuthenticate2 @61 PRIVATE + I_NetServerAuthenticate @62 PRIVATE + I_NetServerPasswordSet @63 PRIVATE + I_NetServerReqChallenge @64 PRIVATE + I_NetServerSetServiceBits @65 PRIVATE + I_NetServerSetServiceBitsEx @66 PRIVATE + NetAlertRaise @67 PRIVATE + NetAlertRaiseEx @68 PRIVATE + NetApiBufferAllocate @69 + NetApiBufferFree @70 + NetApiBufferReallocate @71 + NetApiBufferSize @72 + NetAuditClear @73 PRIVATE + NetAuditRead @74 PRIVATE + NetAuditWrite @75 PRIVATE + NetBrowserStatisticsGet @76 PRIVATE + NetConfigGet @77 PRIVATE + NetConfigGetAll @78 PRIVATE + NetConfigSet @79 PRIVATE + NetConnectionEnum @80 PRIVATE + NetDfsAdd @81 PRIVATE + NetDfsEnum @82 PRIVATE + NetDfsGetInfo @83 PRIVATE + NetDfsManagerGetConfigInfo @84 PRIVATE + NetDfsMove @85 PRIVATE + NetDfsRemove @86 PRIVATE + NetDfsRename @87 PRIVATE + NetDfsSetInfo @88 PRIVATE + NetEnumerateTrustedDomains @89 PRIVATE + NetErrorLogClear @90 PRIVATE + NetErrorLogRead @91 PRIVATE + NetErrorLogWrite @92 PRIVATE + NetFileClose @93 PRIVATE + NetFileEnum @94 + NetFileGetInfo @95 PRIVATE + NetGetAnyDCName @96 + NetGetDCName @97 + NetGetDisplayInformationIndex @98 PRIVATE + NetGetJoinInformation @99 + NetGroupAdd @100 PRIVATE + NetGroupAddUser @101 + NetGroupDel @102 PRIVATE + NetGroupDelUser @103 PRIVATE + NetGroupEnum @104 + NetGroupGetInfo @105 + NetGroupGetUsers @106 PRIVATE + NetGroupSetInfo @107 PRIVATE + NetGroupSetUsers @108 PRIVATE + NetLocalGroupAdd @109 + NetLocalGroupAddMember @110 + NetLocalGroupAddMembers @111 + NetLocalGroupDel @112 + NetLocalGroupDelMember @113 + NetLocalGroupDelMembers @114 + NetLocalGroupEnum @115 + NetLocalGroupGetInfo @116 + NetLocalGroupGetMembers @117 + NetLocalGroupSetInfo @118 + NetLocalGroupSetMembers @119 + NetMessageBufferSend @120 PRIVATE + NetMessageNameAdd @121 PRIVATE + NetMessageNameDel @122 PRIVATE + NetMessageNameEnum @123 PRIVATE + NetMessageNameGetInfo @124 PRIVATE + NetQueryDisplayInformation @125 + NetRemoteComputerSupports @126 PRIVATE + NetRemoteTOD @127 PRIVATE + NetReplExportDirAdd @128 PRIVATE + NetReplExportDirDel @129 PRIVATE + NetReplExportDirEnum @130 PRIVATE + NetReplExportDirGetInfo @131 PRIVATE + NetReplExportDirLock @132 PRIVATE + NetReplExportDirSetInfo @133 PRIVATE + NetReplExportDirUnlock @134 PRIVATE + NetReplGetInfo @135 PRIVATE + NetReplImportDirAdd @136 PRIVATE + NetReplImportDirDel @137 PRIVATE + NetReplImportDirEnum @138 PRIVATE + NetReplImportDirGetInfo @139 PRIVATE + NetReplImportDirLock @140 PRIVATE + NetReplImportDirUnlock @141 PRIVATE + NetReplSetInfo @142 PRIVATE + NetRplAdapterAdd @143 PRIVATE + NetRplAdapterDel @144 PRIVATE + NetRplAdapterEnum @145 PRIVATE + NetRplBootAdd @146 PRIVATE + NetRplBootDel @147 PRIVATE + NetRplBootEnum @148 PRIVATE + NetRplClose @149 PRIVATE + NetRplConfigAdd @150 PRIVATE + NetRplConfigDel @151 PRIVATE + NetRplConfigEnum @152 PRIVATE + NetRplGetInfo @153 PRIVATE + NetRplOpen @154 PRIVATE + NetRplProfileAdd @155 PRIVATE + NetRplProfileClone @156 PRIVATE + NetRplProfileDel @157 PRIVATE + NetRplProfileEnum @158 PRIVATE + NetRplProfileGetInfo @159 PRIVATE + NetRplProfileSetInfo @160 PRIVATE + NetRplSetInfo @161 PRIVATE + NetRplSetSecurity @162 PRIVATE + NetRplVendorAdd @163 PRIVATE + NetRplVendorDel @164 PRIVATE + NetRplVendorEnum @165 PRIVATE + NetRplWkstaAdd @166 PRIVATE + NetRplWkstaClone @167 PRIVATE + NetRplWkstaDel @168 PRIVATE + NetRplWkstaEnum @169 PRIVATE + NetRplWkstaGetInfo @170 PRIVATE + NetRplWkstaSetInfo @171 PRIVATE + NetScheduleJobAdd @172 + NetScheduleJobDel @173 + NetScheduleJobEnum @174 + NetScheduleJobGetInfo @175 + NetServerComputerNameAdd @176 PRIVATE + NetServerComputerNameDel @177 PRIVATE + NetServerDiskEnum @178 + NetServerEnum @179 + NetServerEnumEx @180 + NetServerGetInfo @181 + NetServerSetInfo @182 PRIVATE + NetServerTransportAdd @183 PRIVATE + NetServerTransportAddEx @184 PRIVATE + NetServerTransportDel @185 PRIVATE + NetServerTransportEnum @186 PRIVATE + NetServiceControl @187 PRIVATE + NetServiceEnum @188 PRIVATE + NetServiceGetInfo @189 PRIVATE + NetServiceInstall @190 PRIVATE + NetSessionDel @191 PRIVATE + NetSessionEnum @192 + NetSessionGetInfo @193 PRIVATE + NetShareAdd @194 + NetShareCheck @195 PRIVATE + NetShareDel @196 + NetShareDelSticky @197 PRIVATE + NetShareEnum @198 + NetShareEnumSticky @199 PRIVATE + NetShareGetInfo @200 + NetShareSetInfo @201 PRIVATE + NetStatisticsGet @202 + NetUseAdd @203 + NetUseDel @204 + NetUseEnum @205 + NetUseGetInfo @206 + NetUserAdd @207 + NetUserChangePassword @208 + NetUserDel @209 + NetUserEnum @210 + NetUserGetGroups @211 + NetUserGetInfo @212 + NetUserGetLocalGroups @213 + NetUserModalsGet @214 + NetUserModalsSet @215 PRIVATE + NetUserSetGroups @216 PRIVATE + NetUserSetInfo @217 PRIVATE + NetWkstaGetInfo @218 + NetWkstaSetInfo @219 PRIVATE + NetWkstaTransportAdd @220 PRIVATE + NetWkstaTransportDel @221 PRIVATE + NetWkstaTransportEnum @222 + NetWkstaUserEnum @223 + NetWkstaUserGetInfo @224 + NetWkstaUserSetInfo @225 PRIVATE + NetapipBufferAllocate=NetApiBufferAllocate @226 + Netbios @227 + NetpAccessCheck @228 PRIVATE + NetpAccessCheckAndAudit @229 PRIVATE + NetpAllocConfigName @230 PRIVATE + NetpAllocStrFromStr @231 PRIVATE + NetpAllocStrFromWStr @232 PRIVATE + NetpAllocTStrFromString @233 PRIVATE + NetpAllocWStrFromStr @234 PRIVATE + NetpAllocWStrFromWStr @235 PRIVATE + NetpApiStatusToNtStatus @236 PRIVATE + NetpAssertFailed @237 PRIVATE + NetpCloseConfigData @238 PRIVATE + NetpCopyStringToBuffer @239 PRIVATE + NetpCreateSecurityObject @240 PRIVATE + NetpDbgDisplayServerInfo @241 PRIVATE + NetpDbgPrint @242 PRIVATE + NetpDeleteSecurityObject=ntdll.RtlDeleteSecurityObject @243 + NetpGetComputerName @244 + NetpGetConfigBool @245 PRIVATE + NetpGetConfigDword @246 PRIVATE + NetpGetConfigTStrArray @247 PRIVATE + NetpGetConfigValue @248 PRIVATE + NetpGetDomainName @249 PRIVATE + NetpGetFileSecurity @250 PRIVATE + NetpGetPrivilege @251 PRIVATE + NetpHexDump @252 PRIVATE + NetpInitOemString=ntdll.RtlInitAnsiString @253 + NetpIsRemote @254 PRIVATE + NetpIsUncComputerNameValid @255 PRIVATE + NetpLocalTimeZoneOffset @256 PRIVATE + NetpLogonPutUnicodeString @257 PRIVATE + NetpNetBiosAddName @258 PRIVATE + NetpNetBiosCall @259 PRIVATE + NetpNetBiosDelName @260 PRIVATE + NetpNetBiosGetAdapterNumbers @261 PRIVATE + NetpNetBiosHangup @262 PRIVATE + NetpNetBiosReceive @263 PRIVATE + NetpNetBiosReset @264 PRIVATE + NetpNetBiosSend @265 PRIVATE + NetpNetBiosStatusToApiStatus @266 + NetpNtStatusToApiStatus @267 PRIVATE + NetpOpenConfigData @268 PRIVATE + NetpPackString @269 PRIVATE + NetpReleasePrivilege @270 PRIVATE + NetpSetConfigBool @271 PRIVATE + NetpSetConfigDword @272 PRIVATE + NetpSetConfigTStrArray @273 PRIVATE + NetpSetFileSecurity @274 PRIVATE + NetpSmbCheck @275 PRIVATE + NetpStringToNetBiosName @276 PRIVATE + NetpTStrArrayEntryCount @277 PRIVATE + NetpwNameCanonicalize @278 PRIVATE + NetpwNameCompare @279 PRIVATE + NetpwNameValidate @280 PRIVATE + NetpwPathCanonicalize @281 PRIVATE + NetpwPathCompare @282 PRIVATE + NetpwPathType @283 PRIVATE + NlBindingAddServerToCache @284 PRIVATE + NlBindingRemoveServerFromCache @285 PRIVATE + NlBindingSetAuthInfo @286 PRIVATE + RxNetAccessAdd @287 PRIVATE + RxNetAccessDel @288 PRIVATE + RxNetAccessEnum @289 PRIVATE + RxNetAccessGetInfo @290 PRIVATE + RxNetAccessGetUserPerms @291 PRIVATE + RxNetAccessSetInfo @292 PRIVATE + RxNetServerEnum @293 PRIVATE + RxNetUserPasswordSet @294 PRIVATE + RxRemoteApi @295 PRIVATE diff --git a/lib64/wine/libnewdev.def b/lib64/wine/libnewdev.def new file mode 100644 index 0000000..09b0cfd --- /dev/null +++ b/lib64/wine/libnewdev.def @@ -0,0 +1,23 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/newdev/newdev.spec; do not edit! + +LIBRARY newdev.dll + +EXPORTS + DeviceInternetSettingUiW @1 PRIVATE + DiInstallDevice @2 PRIVATE + DiInstallDriverA @3 + DiInstallDriverW @4 + DiRollbackDriver @5 PRIVATE + DiShowUpdateDevice @6 PRIVATE + DiUninstallDevice @7 PRIVATE + InstallNewDevice @8 + InstallSelectedDriver @9 + InstallWindowsUpdateDriver @10 PRIVATE + SetInternetPolicies @11 PRIVATE + UpdateDriverForPlugAndPlayDevicesA @12 + UpdateDriverForPlugAndPlayDevicesW @13 + pDiDeviceInstallActionW @14 PRIVATE + pDiDeviceInstallNotificationW @15 PRIVATE + pDiDoDeviceInstallAsAdmin @16 PRIVATE + pDiDoFinishInstallAsAdmin @17 PRIVATE + pDiDoNullDriverInstall @18 PRIVATE diff --git a/lib64/wine/libninput.def b/lib64/wine/libninput.def new file mode 100644 index 0000000..1bd676d --- /dev/null +++ b/lib64/wine/libninput.def @@ -0,0 +1,29 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/ninput/ninput.spec; do not edit! + +LIBRARY ninput.dll + +EXPORTS + DefaultInputHandler @1 PRIVATE + AddPointerInteractionContext @2 PRIVATE + BufferPointerPacketsInteractionContext @3 PRIVATE + CreateInteractionContext @4 + DestroyInteractionContext @5 + GetCrossSlideParameterInteractionContext @6 PRIVATE + GetInertiaParameterInteractionContext @7 PRIVATE + GetInteractionConfigurationInteractionContext @8 PRIVATE + GetMouseWheelParameterInteractionContext @9 PRIVATE + GetPropertyInteractionContext @10 + GetStateInteractionContext @11 PRIVATE + ProcessBufferedPacketsInteractionContext @12 PRIVATE + ProcessInertiaInteractionContext @13 + ProcessPointerFramesInteractionContext @14 PRIVATE + RegisterOutputCallbackInteractionContext @15 + RemovePointerInteractionContext @16 PRIVATE + ResetInteractionContext @17 PRIVATE + SetCrossSlideParametersInteractionContext @18 PRIVATE + SetInertiaParameterInteractionContext @19 PRIVATE + SetInteractionConfigurationInteractionContext @20 + SetMouseWheelParameterInteractionContext @21 PRIVATE + SetPivotInteractionContext @22 PRIVATE + SetPropertyInteractionContext @23 + StopInteractionContext @24 PRIVATE diff --git a/lib64/wine/libnormaliz.def b/lib64/wine/libnormaliz.def new file mode 100644 index 0000000..75bf447 --- /dev/null +++ b/lib64/wine/libnormaliz.def @@ -0,0 +1,10 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/normaliz/normaliz.spec; do not edit! + +LIBRARY normaliz.dll + +EXPORTS + IdnToAscii=kernel32.IdnToAscii @1 + IdnToNameprepUnicode=kernel32.IdnToNameprepUnicode @2 + IdnToUnicode=kernel32.IdnToUnicode @3 + IsNormalizedString=kernel32.IsNormalizedString @4 + NormalizeString=kernel32.NormalizeString @5 diff --git a/lib64/wine/libntdll.def b/lib64/wine/libntdll.def new file mode 100644 index 0000000..84593e9 --- /dev/null +++ b/lib64/wine/libntdll.def @@ -0,0 +1,1258 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/ntdll/ntdll.spec; do not edit! + +LIBRARY ntdll.dll + +EXPORTS + ApiSetQueryApiSetPresence @1 + CsrAllocateCaptureBuffer @2 PRIVATE + CsrAllocateCapturePointer @3 PRIVATE + CsrAllocateMessagePointer @4 PRIVATE + CsrCaptureMessageBuffer @5 PRIVATE + CsrCaptureMessageString @6 PRIVATE + CsrCaptureTimeout @7 PRIVATE + CsrClientCallServer @8 PRIVATE + CsrClientConnectToServer @9 PRIVATE + CsrClientMaxMessage @10 PRIVATE + CsrClientSendMessage @11 PRIVATE + CsrClientThreadConnect @12 PRIVATE + CsrFreeCaptureBuffer @13 PRIVATE + CsrIdentifyAlertableThread @14 PRIVATE + CsrNewThread @15 PRIVATE + CsrProbeForRead @16 PRIVATE + CsrProbeForWrite @17 PRIVATE + CsrSetPriorityClass @18 PRIVATE + CsrpProcessCallbackRequest @19 PRIVATE + DbgBreakPoint @20 + DbgPrint @21 + DbgPrintEx @22 + DbgPrompt @23 PRIVATE + DbgUiConnectToDbg @24 PRIVATE + DbgUiContinue @25 PRIVATE + DbgUiConvertStateChangeStructure @26 PRIVATE + DbgUiRemoteBreakin @27 + DbgUiWaitStateChange @28 PRIVATE + DbgUserBreakPoint @29 + EtwEventEnabled @30 + EtwEventRegister @31 + EtwEventSetInformation @32 + EtwEventUnregister @33 + EtwEventWrite @34 + EtwRegisterTraceGuidsA @35 + EtwRegisterTraceGuidsW @36 + EtwUnregisterTraceGuids @37 + KiRaiseUserExceptionDispatcher @38 PRIVATE + KiUserApcDispatcher @39 PRIVATE + KiUserCallbackDispatcher @40 PRIVATE + KiUserExceptionDispatcher @41 PRIVATE + LdrAccessResource @42 + LdrAddRefDll @43 + LdrDisableThreadCalloutsForDll @44 + LdrEnumResources @45 PRIVATE + LdrEnumerateLoadedModules @46 + LdrFindEntryForAddress @47 + LdrFindResourceDirectory_U @48 + LdrFindResource_U @49 + LdrFlushAlternateResourceModules @50 PRIVATE + LdrGetDllHandle @51 + LdrGetProcedureAddress @52 + LdrInitShimEngineDynamic @53 PRIVATE + LdrInitializeThunk @54 + LdrLoadAlternateResourceModule @55 PRIVATE + LdrLoadDll @56 + LdrLockLoaderLock @57 + LdrProcessRelocationBlock @58 + LdrQueryImageFileExecutionOptions @59 + LdrQueryProcessModuleInformation @60 + LdrRegisterDllNotification @61 + LdrResolveDelayLoadedAPI @62 + LdrSetAppCompatDllRedirectionCallback @63 PRIVATE + LdrSetDllManifestProber @64 PRIVATE + LdrShutdownProcess @65 + LdrShutdownThread @66 + LdrUnloadAlternateResourceModule @67 PRIVATE + LdrUnloadDll @68 + LdrUnlockLoaderLock @69 + LdrUnregisterDllNotification @70 + LdrVerifyImageMatchesChecksum @71 PRIVATE + NlsAnsiCodePage @72 DATA + NlsMbCodePageTag @73 DATA + NlsMbOemCodePageTag @74 DATA + NtAcceptConnectPort=__syscall_NtAcceptConnectPort @75 + NtAccessCheck=__syscall_NtAccessCheck @76 + NtAccessCheckAndAuditAlarm=__syscall_NtAccessCheckAndAuditAlarm @77 + NtAddAtom=__syscall_NtAddAtom @78 + NtAdjustGroupsToken=__syscall_NtAdjustGroupsToken @79 + NtAdjustPrivilegesToken=__syscall_NtAdjustPrivilegesToken @80 + NtAlertResumeThread=__syscall_NtAlertResumeThread @81 + NtAlertThread=__syscall_NtAlertThread @82 + NtAllocateLocallyUniqueId=__syscall_NtAllocateLocallyUniqueId @83 + NtAllocateUuids=__syscall_NtAllocateUuids @84 + NtAllocateVirtualMemory=__syscall_NtAllocateVirtualMemory @85 + NtAreMappedFilesTheSame=__syscall_NtAreMappedFilesTheSame @86 + NtAssignProcessToJobObject=__syscall_NtAssignProcessToJobObject @87 + NtCallbackReturn @88 PRIVATE + NtCancelIoFile=__syscall_NtCancelIoFile @89 + NtCancelIoFileEx=__syscall_NtCancelIoFileEx @90 + NtCancelTimer=__syscall_NtCancelTimer @91 + NtClearEvent=__syscall_NtClearEvent @92 + NtClose=__syscall_NtClose @93 + NtCloseObjectAuditAlarm @94 PRIVATE + NtCompleteConnectPort=__syscall_NtCompleteConnectPort @95 + NtConnectPort=__syscall_NtConnectPort @96 + NtContinue=__syscall_NtContinue @97 + NtCreateDirectoryObject=__syscall_NtCreateDirectoryObject @98 + NtCreateEvent=__syscall_NtCreateEvent @99 + NtCreateEventPair @100 PRIVATE + NtCreateFile=__syscall_NtCreateFile @101 + NtCreateIoCompletion=__syscall_NtCreateIoCompletion @102 + NtCreateJobObject=__syscall_NtCreateJobObject @103 + NtCreateKey=__syscall_NtCreateKey @104 + NtCreateKeyTransacted=__syscall_NtCreateKeyTransacted @105 + NtCreateKeyedEvent=__syscall_NtCreateKeyedEvent @106 + NtCreateLowBoxToken=__syscall_NtCreateLowBoxToken @107 + NtCreateMailslotFile=__syscall_NtCreateMailslotFile @108 + NtCreateMutant=__syscall_NtCreateMutant @109 + NtCreateNamedPipeFile=__syscall_NtCreateNamedPipeFile @110 + NtCreatePagingFile=__syscall_NtCreatePagingFile @111 + NtCreatePort=__syscall_NtCreatePort @112 + NtCreateProcess @113 PRIVATE + NtCreateProfile @114 PRIVATE + NtCreateSection=__syscall_NtCreateSection @115 + NtCreateSemaphore=__syscall_NtCreateSemaphore @116 + NtCreateSymbolicLinkObject=__syscall_NtCreateSymbolicLinkObject @117 + NtCreateThread=__syscall_NtCreateThread @118 + NtCreateThreadEx=__syscall_NtCreateThreadEx @119 + NtCreateTimer=__syscall_NtCreateTimer @120 + NtCreateToken @121 PRIVATE + NtDelayExecution=__syscall_NtDelayExecution @122 + NtDeleteAtom=__syscall_NtDeleteAtom @123 + NtDeleteFile=__syscall_NtDeleteFile @124 + NtDeleteKey=__syscall_NtDeleteKey @125 + NtDeleteValueKey=__syscall_NtDeleteValueKey @126 + NtDeviceIoControlFile=__syscall_NtDeviceIoControlFile @127 + NtDisplayString=__syscall_NtDisplayString @128 + NtDuplicateObject=__syscall_NtDuplicateObject @129 + NtDuplicateToken=__syscall_NtDuplicateToken @130 + NtEnumerateBus @131 PRIVATE + NtEnumerateKey=__syscall_NtEnumerateKey @132 + NtEnumerateValueKey=__syscall_NtEnumerateValueKey @133 + NtExtendSection @134 PRIVATE + NtFilterToken=__syscall_NtFilterToken @135 + NtFindAtom=__syscall_NtFindAtom @136 + NtFlushBuffersFile=__syscall_NtFlushBuffersFile @137 + NtFlushInstructionCache=__syscall_NtFlushInstructionCache @138 + NtFlushKey=__syscall_NtFlushKey @139 + NtFlushVirtualMemory=__syscall_NtFlushVirtualMemory @140 + NtFlushWriteBuffer @141 PRIVATE + NtFreeVirtualMemory=__syscall_NtFreeVirtualMemory @142 + NtFsControlFile=__syscall_NtFsControlFile @143 + NtGetContextThread=__syscall_NtGetContextThread @144 + NtGetCurrentProcessorNumber=__syscall_NtGetCurrentProcessorNumber @145 + NtGetPlugPlayEvent @146 PRIVATE + NtGetTickCount=__syscall_NtGetTickCount @147 + NtGetWriteWatch=__syscall_NtGetWriteWatch @148 + NtImpersonateAnonymousToken=__syscall_NtImpersonateAnonymousToken @149 + NtImpersonateClientOfPort @150 PRIVATE + NtImpersonateThread @151 PRIVATE + NtInitializeRegistry @152 PRIVATE + NtInitiatePowerAction=__syscall_NtInitiatePowerAction @153 + NtIsProcessInJob=__syscall_NtIsProcessInJob @154 + NtListenPort=__syscall_NtListenPort @155 + NtLoadDriver=__syscall_NtLoadDriver @156 + NtLoadKey2=__syscall_NtLoadKey2 @157 + NtLoadKey=__syscall_NtLoadKey @158 + NtLockFile=__syscall_NtLockFile @159 + NtLockVirtualMemory=__syscall_NtLockVirtualMemory @160 + NtMakeTemporaryObject=__syscall_NtMakeTemporaryObject @161 + NtMapViewOfSection=__syscall_NtMapViewOfSection @162 + NtNotifyChangeDirectoryFile=__syscall_NtNotifyChangeDirectoryFile @163 + NtNotifyChangeKey=__syscall_NtNotifyChangeKey @164 + NtNotifyChangeMultipleKeys=__syscall_NtNotifyChangeMultipleKeys @165 + NtOpenDirectoryObject=__syscall_NtOpenDirectoryObject @166 + NtOpenEvent=__syscall_NtOpenEvent @167 + NtOpenEventPair @168 PRIVATE + NtOpenFile=__syscall_NtOpenFile @169 + NtOpenIoCompletion=__syscall_NtOpenIoCompletion @170 + NtOpenJobObject=__syscall_NtOpenJobObject @171 + NtOpenKey=__syscall_NtOpenKey @172 + NtOpenKeyEx=__syscall_NtOpenKeyEx @173 + NtOpenKeyTransacted=__syscall_NtOpenKeyTransacted @174 + NtOpenKeyTransactedEx=__syscall_NtOpenKeyTransactedEx @175 + NtOpenKeyedEvent=__syscall_NtOpenKeyedEvent @176 + NtOpenMutant=__syscall_NtOpenMutant @177 + NtOpenObjectAuditAlarm @178 PRIVATE + NtOpenProcess=__syscall_NtOpenProcess @179 + NtOpenProcessToken=__syscall_NtOpenProcessToken @180 + NtOpenProcessTokenEx=__syscall_NtOpenProcessTokenEx @181 + NtOpenSection=__syscall_NtOpenSection @182 + NtOpenSemaphore=__syscall_NtOpenSemaphore @183 + NtOpenSymbolicLinkObject=__syscall_NtOpenSymbolicLinkObject @184 + NtOpenThread=__syscall_NtOpenThread @185 + NtOpenThreadToken=__syscall_NtOpenThreadToken @186 + NtOpenThreadTokenEx=__syscall_NtOpenThreadTokenEx @187 + NtOpenTimer=__syscall_NtOpenTimer @188 + NtPlugPlayControl @189 PRIVATE + NtPowerInformation=__syscall_NtPowerInformation @190 + NtPrivilegeCheck=__syscall_NtPrivilegeCheck @191 + NtPrivilegeObjectAuditAlarm @192 PRIVATE + NtPrivilegedServiceAuditAlarm @193 PRIVATE + NtProtectVirtualMemory=__syscall_NtProtectVirtualMemory @194 + NtPulseEvent=__syscall_NtPulseEvent @195 + NtQueryAttributesFile=__syscall_NtQueryAttributesFile @196 + NtQueryDefaultLocale=__syscall_NtQueryDefaultLocale @197 + NtQueryDefaultUILanguage=__syscall_NtQueryDefaultUILanguage @198 + NtQueryDirectoryFile=__syscall_NtQueryDirectoryFile @199 + NtQueryDirectoryObject=__syscall_NtQueryDirectoryObject @200 + NtQueryEaFile=__syscall_NtQueryEaFile @201 + NtQueryEvent=__syscall_NtQueryEvent @202 + NtQueryFullAttributesFile=__syscall_NtQueryFullAttributesFile @203 + NtQueryInformationAtom=__syscall_NtQueryInformationAtom @204 + NtQueryInformationFile=__syscall_NtQueryInformationFile @205 + NtQueryInformationJobObject=__syscall_NtQueryInformationJobObject @206 + NtQueryInformationPort @207 PRIVATE + NtQueryInformationProcess=__syscall_NtQueryInformationProcess @208 + NtQueryInformationThread=__syscall_NtQueryInformationThread @209 + NtQueryInformationToken=__syscall_NtQueryInformationToken @210 + NtQueryInstallUILanguage=__syscall_NtQueryInstallUILanguage @211 + NtQueryIntervalProfile @212 PRIVATE + NtQueryIoCompletion=__syscall_NtQueryIoCompletion @213 + NtQueryKey=__syscall_NtQueryKey @214 + NtQueryLicenseValue=__syscall_NtQueryLicenseValue @215 + NtQueryMultipleValueKey=__syscall_NtQueryMultipleValueKey @216 + NtQueryMutant=__syscall_NtQueryMutant @217 + NtQueryObject=__syscall_NtQueryObject @218 + NtQueryOpenSubKeys @219 PRIVATE + NtQueryPerformanceCounter=__syscall_NtQueryPerformanceCounter @220 + NtQuerySection=__syscall_NtQuerySection @221 + NtQuerySecurityObject=__syscall_NtQuerySecurityObject @222 + NtQuerySemaphore=__syscall_NtQuerySemaphore @223 + NtQuerySymbolicLinkObject=__syscall_NtQuerySymbolicLinkObject @224 + NtQuerySystemEnvironmentValue=__syscall_NtQuerySystemEnvironmentValue @225 + NtQuerySystemEnvironmentValueEx=__syscall_NtQuerySystemEnvironmentValueEx @226 + NtQuerySystemInformation=__syscall_NtQuerySystemInformation @227 + NtQuerySystemInformationEx=__syscall_NtQuerySystemInformationEx @228 + NtQuerySystemTime=__syscall_NtQuerySystemTime @229 + NtQueryTimer=__syscall_NtQueryTimer @230 + NtQueryTimerResolution=__syscall_NtQueryTimerResolution @231 + NtQueryValueKey=__syscall_NtQueryValueKey @232 + NtQueryVirtualMemory=__syscall_NtQueryVirtualMemory @233 + NtQueryVolumeInformationFile=__syscall_NtQueryVolumeInformationFile @234 + NtQueueApcThread=__syscall_NtQueueApcThread @235 + NtRaiseException=__syscall_NtRaiseException @236 + NtRaiseHardError=__syscall_NtRaiseHardError @237 + NtReadFile=__syscall_NtReadFile @238 + NtReadFileScatter=__syscall_NtReadFileScatter @239 + NtReadRequestData @240 PRIVATE + NtReadVirtualMemory=__syscall_NtReadVirtualMemory @241 + NtRegisterNewDevice @242 PRIVATE + NtRegisterThreadTerminatePort=__syscall_NtRegisterThreadTerminatePort @243 + NtReleaseKeyedEvent=__syscall_NtReleaseKeyedEvent @244 + NtReleaseMutant=__syscall_NtReleaseMutant @245 + NtReleaseProcessMutant @246 PRIVATE + NtReleaseSemaphore=__syscall_NtReleaseSemaphore @247 + NtRemoveIoCompletion=__syscall_NtRemoveIoCompletion @248 + NtRemoveIoCompletionEx=__syscall_NtRemoveIoCompletionEx @249 + NtRenameKey=__syscall_NtRenameKey @250 + NtReplaceKey=__syscall_NtReplaceKey @251 + NtReplyPort @252 PRIVATE + NtReplyWaitReceivePort=__syscall_NtReplyWaitReceivePort @253 + NtReplyWaitReceivePortEx @254 PRIVATE + NtReplyWaitReplyPort @255 PRIVATE + NtRequestPort @256 PRIVATE + NtRequestWaitReplyPort=__syscall_NtRequestWaitReplyPort @257 + NtResetEvent=__syscall_NtResetEvent @258 + NtResetWriteWatch=__syscall_NtResetWriteWatch @259 + NtRestoreKey=__syscall_NtRestoreKey @260 + NtResumeProcess=__syscall_NtResumeProcess @261 + NtResumeThread=__syscall_NtResumeThread @262 + NtSaveKey=__syscall_NtSaveKey @263 + NtSecureConnectPort=__syscall_NtSecureConnectPort @264 + NtSetContextThread=__syscall_NtSetContextThread @265 + NtSetDebugFilterState @266 PRIVATE + NtSetDefaultHardErrorPort @267 PRIVATE + NtSetDefaultLocale=__syscall_NtSetDefaultLocale @268 + NtSetDefaultUILanguage=__syscall_NtSetDefaultUILanguage @269 + NtSetEaFile=__syscall_NtSetEaFile @270 + NtSetEvent=__syscall_NtSetEvent @271 + NtSetHighEventPair @272 PRIVATE + NtSetHighWaitLowEventPair @273 PRIVATE + NtSetHighWaitLowThread @274 PRIVATE + NtSetInformationFile=__syscall_NtSetInformationFile @275 + NtSetInformationJobObject=__syscall_NtSetInformationJobObject @276 + NtSetInformationKey=__syscall_NtSetInformationKey @277 + NtSetInformationObject=__syscall_NtSetInformationObject @278 + NtSetInformationProcess=__syscall_NtSetInformationProcess @279 + NtSetInformationThread=__syscall_NtSetInformationThread @280 + NtSetInformationToken=__syscall_NtSetInformationToken @281 + NtSetIntervalProfile=__syscall_NtSetIntervalProfile @282 + NtSetIoCompletion=__syscall_NtSetIoCompletion @283 + NtSetLdtEntries=__syscall_NtSetLdtEntries @284 + NtSetLowEventPair @285 PRIVATE + NtSetLowWaitHighEventPair @286 PRIVATE + NtSetLowWaitHighThread @287 PRIVATE + NtSetSecurityObject=__syscall_NtSetSecurityObject @288 + NtSetSystemEnvironmentValue @289 PRIVATE + NtSetSystemInformation=__syscall_NtSetSystemInformation @290 + NtSetSystemPowerState @291 PRIVATE + NtSetSystemTime=__syscall_NtSetSystemTime @292 + NtSetTimer=__syscall_NtSetTimer @293 + NtSetTimerResolution=__syscall_NtSetTimerResolution @294 + NtSetValueKey=__syscall_NtSetValueKey @295 + NtSetVolumeInformationFile=__syscall_NtSetVolumeInformationFile @296 + NtShutdownSystem=__syscall_NtShutdownSystem @297 + NtSignalAndWaitForSingleObject=__syscall_NtSignalAndWaitForSingleObject @298 + NtStartProfile @299 PRIVATE + NtStopProfile @300 PRIVATE + NtSuspendProcess=__syscall_NtSuspendProcess @301 + NtSuspendThread=__syscall_NtSuspendThread @302 + NtSystemDebugControl=__syscall_NtSystemDebugControl @303 + NtTerminateJobObject=__syscall_NtTerminateJobObject @304 + NtTerminateProcess=__syscall_NtTerminateProcess @305 + NtTerminateThread=__syscall_NtTerminateThread @306 + NtTestAlert @307 PRIVATE + NtUnloadDriver=__syscall_NtUnloadDriver @308 + NtUnloadKey=__syscall_NtUnloadKey @309 + NtUnloadKeyEx @310 PRIVATE + NtUnlockFile=__syscall_NtUnlockFile @311 + NtUnlockVirtualMemory=__syscall_NtUnlockVirtualMemory @312 + NtUnmapViewOfSection=__syscall_NtUnmapViewOfSection @313 + NtVdmControl @314 PRIVATE + NtW32Call @315 PRIVATE + NtWaitForKeyedEvent=__syscall_NtWaitForKeyedEvent @316 + NtWaitForMultipleObjects=__syscall_NtWaitForMultipleObjects @317 + NtWaitForProcessMutant @318 PRIVATE + NtWaitForSingleObject=__syscall_NtWaitForSingleObject @319 + NtWaitHighEventPair @320 PRIVATE + NtWaitLowEventPair @321 PRIVATE + NtWriteFile=__syscall_NtWriteFile @322 + NtWriteFileGather=__syscall_NtWriteFileGather @323 + NtWriteRequestData @324 PRIVATE + NtWriteVirtualMemory=__syscall_NtWriteVirtualMemory @325 + NtYieldExecution=__syscall_NtYieldExecution @326 + PfxFindPrefix @327 PRIVATE + PfxInitialize @328 PRIVATE + PfxInsertPrefix @329 PRIVATE + PfxRemovePrefix @330 PRIVATE + RtlAbortRXact @331 PRIVATE + RtlAbsoluteToSelfRelativeSD @332 + RtlAcquirePebLock @333 + RtlAcquireResourceExclusive @334 + RtlAcquireResourceShared @335 + RtlAcquireSRWLockExclusive @336 + RtlAcquireSRWLockShared @337 + RtlActivateActivationContext @338 + RtlActivateActivationContextEx @339 PRIVATE + RtlActivateActivationContextUnsafeFast @340 PRIVATE + RtlAddAccessAllowedAce @341 + RtlAddAccessAllowedAceEx @342 + RtlAddAccessAllowedObjectAce @343 + RtlAddAccessDeniedAce @344 + RtlAddAccessDeniedAceEx @345 + RtlAddAccessDeniedObjectAce @346 + RtlAddAce @347 + RtlAddActionToRXact @348 PRIVATE + RtlAddAtomToAtomTable @349 + RtlAddAttributeActionToRXact @350 PRIVATE + RtlAddAuditAccessAce @351 + RtlAddAuditAccessAceEx @352 + RtlAddAuditAccessObjectAce @353 + RtlAddMandatoryAce @354 + RtlAddFunctionTable @355 + RtlAddGrowableFunctionTable @356 + RtlAddRefActivationContext @357 + RtlAddVectoredContinueHandler @358 + RtlAddVectoredExceptionHandler @359 + RtlAdjustPrivilege @360 + RtlAllocateAndInitializeSid @361 + RtlAllocateHandle @362 + RtlAllocateHeap @363 + RtlAnsiCharToUnicodeChar @364 + RtlAnsiStringToUnicodeSize @365 + RtlAnsiStringToUnicodeString @366 + RtlAppendAsciizToString @367 + RtlAppendStringToString @368 + RtlAppendUnicodeStringToString @369 + RtlAppendUnicodeToString @370 + RtlApplyRXact @371 PRIVATE + RtlApplyRXactNoFlush @372 PRIVATE + RtlAreAllAccessesGranted @373 + RtlAreAnyAccessesGranted @374 + RtlAreBitsClear @375 + RtlAreBitsSet @376 + RtlAssert @377 + RtlCaptureContext @378 + RtlCaptureStackBackTrace @379 + RtlCharToInteger @380 + RtlCheckRegistryKey @381 + RtlClearAllBits @382 + RtlClearBits @383 + RtlClosePropertySet @384 PRIVATE + RtlCompactHeap @385 + RtlCompareMemory @386 + RtlCompareMemoryUlong @387 + RtlCompareString @388 + RtlCompareUnicodeString @389 + RtlCompareUnicodeStrings @390 + RtlCompressBuffer @391 + RtlComputeCrc32 @392 + RtlConsoleMultiByteToUnicodeN @393 PRIVATE + RtlConvertExclusiveToShared @394 PRIVATE + RtlConvertSharedToExclusive @395 PRIVATE + RtlConvertSidToUnicodeString @396 + RtlConvertToAutoInheritSecurityObject @397 + RtlConvertUiListToApiList @398 PRIVATE + RtlCopyLuid @399 + RtlCopyLuidAndAttributesArray @400 + RtlCopyMemory @401 + RtlCopySecurityDescriptor @402 + RtlCopySid @403 + RtlCopySidAndAttributesArray @404 PRIVATE + RtlCopyString @405 + RtlCopyUnicodeString @406 + RtlCreateAcl @407 + RtlCreateActivationContext @408 + RtlCreateAndSetSD @409 PRIVATE + RtlCreateAtomTable @410 + RtlCreateEnvironment @411 + RtlCreateHeap @412 + RtlCreateProcessParameters @413 + RtlCreateProcessParametersEx @414 + RtlCreatePropertySet @415 PRIVATE + RtlCreateQueryDebugBuffer @416 + RtlCreateRegistryKey @417 + RtlCreateSecurityDescriptor @418 + RtlCreateTagHeap @419 PRIVATE + RtlCreateTimer @420 + RtlCreateTimerQueue @421 + RtlCreateUnicodeString @422 + RtlCreateUnicodeStringFromAsciiz @423 + RtlCreateUserProcess @424 + RtlCreateUserSecurityObject @425 PRIVATE + RtlCreateUserThread @426 + RtlCustomCPToUnicodeN @427 PRIVATE + RtlCutoverTimeToSystemTime @428 PRIVATE + RtlDeNormalizeProcessParams @429 + RtlDeactivateActivationContext @430 + RtlDeactivateActivationContextUnsafeFast @431 PRIVATE + RtlDebugPrintTimes @432 PRIVATE + RtlDecodePointer @433 + RtlDecodeSystemPointer=RtlDecodePointer @434 + RtlDecompressBuffer @435 + RtlDecompressFragment @436 + RtlDefaultNpAcl @437 PRIVATE + RtlDelete @438 PRIVATE + RtlDeleteAce @439 + RtlDeleteAtomFromAtomTable @440 + RtlDeleteCriticalSection @441 + RtlDeleteGrowableFunctionTable @442 + RtlDeleteElementGenericTable @443 PRIVATE + RtlDeleteElementGenericTableAvl @444 PRIVATE + RtlDeleteFunctionTable @445 + RtlDeleteNoSplay @446 PRIVATE + RtlDeleteOwnersRanges @447 PRIVATE + RtlDeleteRange @448 PRIVATE + RtlDeleteRegistryValue @449 + RtlDeleteResource @450 + RtlDeleteSecurityObject @451 + RtlDeleteTimer @452 + RtlDeleteTimerQueueEx @453 + RtlDeregisterWait @454 + RtlDeregisterWaitEx @455 + RtlDestroyAtomTable @456 + RtlDestroyEnvironment @457 + RtlDestroyHandleTable @458 + RtlDestroyHeap @459 + RtlDestroyProcessParameters @460 + RtlDestroyQueryDebugBuffer @461 + RtlDetermineDosPathNameType_U @462 + RtlDllShutdownInProgress @463 + RtlDoesFileExists_U @464 + RtlDosPathNameToNtPathName_U @465 + RtlDosPathNameToNtPathName_U_WithStatus @466 + RtlDosPathNameToRelativeNtPathName_U_WithStatus @467 + RtlDosSearchPath_U @468 + RtlDowncaseUnicodeChar @469 + RtlDowncaseUnicodeString @470 + RtlDumpResource @471 + RtlDuplicateUnicodeString @472 + RtlEmptyAtomTable @473 + RtlEncodePointer @474 + RtlEncodeSystemPointer=RtlEncodePointer @475 + RtlEnterCriticalSection @476 + RtlEnumProcessHeaps @477 PRIVATE + RtlEnumerateGenericTable @478 PRIVATE + RtlEnumerateGenericTableWithoutSplaying @479 + RtlEnumerateProperties @480 PRIVATE + RtlEqualComputerName @481 + RtlEqualDomainName @482 + RtlEqualLuid @483 + RtlEqualPrefixSid @484 + RtlEqualSid @485 + RtlEqualString @486 + RtlEqualUnicodeString @487 + RtlEraseUnicodeString @488 + RtlExitUserProcess @489 + RtlExitUserThread @490 + RtlExpandEnvironmentStrings @491 + RtlExpandEnvironmentStrings_U @492 + RtlExtendHeap @493 PRIVATE + RtlFillMemory @494 + RtlFillMemoryUlong @495 + RtlFinalReleaseOutOfProcessMemoryStream @496 PRIVATE + RtlFindActivationContextSectionGuid @497 + RtlFindActivationContextSectionString @498 + RtlFindCharInUnicodeString @499 + RtlFindClearBits @500 + RtlFindClearBitsAndSet @501 + RtlFindClearRuns @502 + RtlFindLastBackwardRunClear @503 + RtlFindLastBackwardRunSet @504 + RtlFindLeastSignificantBit @505 + RtlFindLongestRunClear @506 + RtlFindLongestRunSet @507 + RtlFindMessage @508 + RtlFindMostSignificantBit @509 + RtlFindNextForwardRunClear @510 + RtlFindNextForwardRunSet @511 + RtlFindRange @512 PRIVATE + RtlFindSetBits @513 + RtlFindSetBitsAndClear @514 + RtlFindSetRuns @515 + RtlFirstEntrySList @516 + RtlFirstFreeAce @517 + RtlFlushPropertySet @518 PRIVATE + RtlFormatCurrentUserKeyPath @519 + RtlFormatMessage @520 + RtlFreeAnsiString @521 + RtlFreeHandle @522 + RtlFreeHeap @523 + RtlFreeOemString @524 + RtlFreeSid @525 + RtlFreeThreadActivationContextStack @526 + RtlFreeUnicodeString @527 + RtlFreeUserThreadStack @528 PRIVATE + RtlGUIDFromString @529 + RtlGenerate8dot3Name @530 PRIVATE + RtlGetAce @531 + RtlGetActiveActivationContext @532 + RtlGetCallersAddress @533 PRIVATE + RtlGetCompressionWorkSpaceSize @534 + RtlGetControlSecurityDescriptor @535 + RtlGetCurrentDirectory_U @536 + RtlGetCurrentPeb @537 + RtlGetCurrentProcessorNumberEx @538 + RtlGetCurrentTransaction @539 + RtlGetDaclSecurityDescriptor @540 + RtlGetElementGenericTable @541 PRIVATE + RtlGetFrame @542 + RtlGetFullPathName_U @543 + RtlGetGroupSecurityDescriptor @544 + RtlGetLastNtStatus @545 + RtlGetLastWin32Error @546 + RtlGetLongestNtPathLength @547 + RtlGetNtGlobalFlags @548 + RtlGetNtProductType @549 + RtlGetNtVersionNumbers @550 + RtlGetOwnerSecurityDescriptor @551 + RtlGetProductInfo @552 + RtlGetProcessHeaps @553 + RtlGetSaclSecurityDescriptor @554 + RtlGetThreadErrorMode @555 + RtlGetUnloadEventTrace @556 + RtlGetUnloadEventTraceEx @557 + RtlGetUserInfoHeap @558 PRIVATE + RtlGetVersion @559 + RtlGrowFunctionTable @560 + RtlGuidToPropertySetName @561 PRIVATE + RtlHashUnicodeString @562 + RtlIdentifierAuthoritySid @563 + RtlImageDirectoryEntryToData @564 + RtlImageNtHeader @565 + RtlImageRvaToSection @566 + RtlImageRvaToVa @567 + RtlImpersonateSelf @568 + RtlInitAnsiString @569 + RtlInitAnsiStringEx @570 + RtlInitCodePageTable @571 PRIVATE + RtlInitNlsTables @572 PRIVATE + RtlInitString @573 + RtlInitUnicodeString @574 + RtlInitUnicodeStringEx @575 + RtlInitializeBitMap @576 + RtlInitializeConditionVariable @577 + RtlInitializeContext @578 PRIVATE + RtlInitializeCriticalSection @579 + RtlInitializeCriticalSectionAndSpinCount @580 + RtlInitializeCriticalSectionEx @581 + RtlInitializeGenericTable @582 + RtlInitializeGenericTableAvl @583 + RtlInitializeHandleTable @584 + RtlInitializeRXact @585 PRIVATE + RtlInitializeResource @586 + RtlInitializeSListHead @587 + RtlInitializeSRWLock @588 + RtlInitializeSid @589 + RtlInsertElementGenericTable @590 PRIVATE + RtlInsertElementGenericTableAvl @591 + RtlInstallFunctionTableCallback @592 + RtlInt64ToUnicodeString @593 + RtlIntegerToChar @594 + RtlIntegerToUnicodeString @595 + RtlInterlockedFlushSList @596 + RtlInterlockedPopEntrySList @597 + RtlInterlockedPushEntrySList @598 + RtlInterlockedPushListSList @599 + RtlInterlockedPushListSListEx @600 + RtlIpv4AddressToStringA @601 + RtlIpv4AddressToStringExA @602 + RtlIpv4AddressToStringExW @603 + RtlIpv4AddressToStringW @604 + RtlIpv4StringToAddressExW @605 + RtlIpv4StringToAddressW @606 + RtlIpv6StringToAddressExW @607 + RtlIsActivationContextActive @608 + RtlIsCriticalSectionLocked @609 + RtlIsCriticalSectionLockedByThread @610 + RtlIsDosDeviceName_U @611 + RtlIsGenericTableEmpty @612 PRIVATE + RtlIsNameLegalDOS8Dot3 @613 + RtlIsProcessorFeaturePresent @614 + RtlIsTextUnicode @615 + RtlIsValidHandle @616 + RtlIsValidIndexHandle @617 + RtlLargeIntegerToChar @618 + RtlLeaveCriticalSection @619 + RtlLengthRequiredSid @620 + RtlLengthSecurityDescriptor @621 + RtlLengthSid @622 + RtlLocalTimeToSystemTime @623 + RtlLockHeap @624 + RtlLookupAtomInAtomTable @625 + RtlLookupElementGenericTable @626 PRIVATE + RtlLookupFunctionEntry @627 + RtlMakeSelfRelativeSD @628 + RtlMapGenericMask @629 + RtlMoveMemory @630 + RtlMultiByteToUnicodeN @631 + RtlMultiByteToUnicodeSize @632 + RtlNewInstanceSecurityObject @633 PRIVATE + RtlNewSecurityGrantedAccess @634 PRIVATE + RtlNewSecurityObject @635 + RtlNormalizeProcessParams @636 + RtlNtStatusToDosError @637 + RtlNtStatusToDosErrorNoTeb @638 + RtlNumberGenericTableElements @639 + RtlNumberOfClearBits @640 + RtlNumberOfSetBits @641 + RtlOemStringToUnicodeSize @642 + RtlOemStringToUnicodeString @643 + RtlOemToUnicodeN @644 + RtlOpenCurrentUser @645 + RtlPcToFileHeader @646 + RtlPinAtomInAtomTable @647 + RtlPopFrame @648 + RtlPrefixString @649 + RtlPrefixUnicodeString @650 + RtlPropertySetNameToGuid @651 PRIVATE + RtlProtectHeap @652 PRIVATE + RtlPushFrame @653 + RtlQueryActivationContextApplicationSettings @654 + RtlQueryAtomInAtomTable @655 + RtlQueryDepthSList @656 + RtlQueryDynamicTimeZoneInformation @657 + RtlQueryEnvironmentVariable_U @658 + RtlQueryHeapInformation @659 + RtlQueryInformationAcl @660 + RtlQueryInformationActivationContext @661 + RtlQueryInformationActiveActivationContext @662 PRIVATE + RtlQueryInterfaceMemoryStream @663 PRIVATE + RtlQueryPackageIdentity @664 + RtlQueryProcessBackTraceInformation @665 PRIVATE + RtlQueryProcessDebugInformation @666 + RtlQueryProcessHeapInformation @667 PRIVATE + RtlQueryProcessLockInformation @668 PRIVATE + RtlQueryProperties @669 PRIVATE + RtlQueryPropertyNames @670 PRIVATE + RtlQueryPropertySet @671 PRIVATE + RtlQueryRegistryValues @672 + RtlQuerySecurityObject @673 PRIVATE + RtlQueryTagHeap @674 PRIVATE + RtlQueryTimeZoneInformation @675 + RtlQueryUnbiasedInterruptTime @676 + RtlQueueApcWow64Thread @677 PRIVATE + RtlQueueWorkItem @678 + RtlRaiseException @679 + RtlRaiseStatus @680 + RtlRandom @681 + RtlRandomEx @682 + RtlReAllocateHeap @683 + RtlReadMemoryStream @684 PRIVATE + RtlReadOutOfProcessMemoryStream @685 PRIVATE + RtlRealPredecessor @686 PRIVATE + RtlRealSuccessor @687 PRIVATE + RtlRegisterSecureMemoryCacheCallback @688 PRIVATE + RtlRegisterWait @689 + RtlReleaseActivationContext @690 + RtlReleaseMemoryStream @691 PRIVATE + RtlReleasePebLock @692 + RtlReleaseRelativeName @693 + RtlReleaseResource @694 + RtlReleaseSRWLockExclusive @695 + RtlReleaseSRWLockShared @696 + RtlRemoteCall @697 PRIVATE + RtlRemoveVectoredContinueHandler @698 + RtlRemoveVectoredExceptionHandler @699 + RtlResetRtlTranslations @700 PRIVATE + RtlRestoreContext @701 + RtlRestoreLastWin32Error=RtlSetLastWin32Error @702 + RtlRevertMemoryStream @703 PRIVATE + RtlRunDecodeUnicodeString @704 PRIVATE + RtlRunEncodeUnicodeString @705 PRIVATE + RtlRunOnceBeginInitialize @706 + RtlRunOnceComplete @707 + RtlRunOnceExecuteOnce @708 + RtlRunOnceInitialize @709 + RtlSecondsSince1970ToTime @710 + RtlSecondsSince1980ToTime @711 + RtlSelfRelativeToAbsoluteSD @712 + RtlSetAllBits @713 + RtlSetBits @714 + RtlSetControlSecurityDescriptor @715 + RtlSetCriticalSectionSpinCount @716 + RtlSetCurrentDirectory_U @717 + RtlSetCurrentEnvironment @718 + RtlSetCurrentTransaction @719 + RtlSetDaclSecurityDescriptor @720 + RtlSetEnvironmentVariable @721 + RtlSetGroupSecurityDescriptor @722 + RtlSetHeapInformation @723 + RtlSetInformationAcl @724 PRIVATE + RtlSetIoCompletionCallback @725 + RtlSetLastWin32Error @726 + RtlSetLastWin32ErrorAndNtStatusFromNtStatus @727 + RtlSetOwnerSecurityDescriptor @728 + RtlSetProperties @729 PRIVATE + RtlSetPropertyClassId @730 PRIVATE + RtlSetPropertyNames @731 PRIVATE + RtlSetPropertySetClassId @732 PRIVATE + RtlSetSaclSecurityDescriptor @733 + RtlSetSecurityObject @734 PRIVATE + RtlSetThreadErrorMode @735 + RtlSetTimeZoneInformation @736 + RtlSetUnhandledExceptionFilter @737 + RtlSetUnicodeCallouts @738 PRIVATE + RtlSetUserFlagsHeap @739 PRIVATE + RtlSetUserValueHeap @740 PRIVATE + RtlSizeHeap @741 + RtlSleepConditionVariableCS @742 + RtlSleepConditionVariableSRW @743 + RtlSplay @744 PRIVATE + RtlStartRXact @745 PRIVATE + RtlStringFromGUID @746 + RtlSubAuthorityCountSid @747 + RtlSubAuthoritySid @748 + RtlSubtreePredecessor @749 PRIVATE + RtlSubtreeSuccessor @750 PRIVATE + RtlSystemTimeToLocalTime @751 + RtlTimeFieldsToTime @752 + RtlTimeToElapsedTimeFields @753 + RtlTimeToSecondsSince1970 @754 + RtlTimeToSecondsSince1980 @755 + RtlTimeToTimeFields @756 + RtlTryAcquireSRWLockExclusive @757 + RtlTryAcquireSRWLockShared @758 + RtlTryEnterCriticalSection @759 + RtlUlonglongByteSwap @760 + RtlUnicodeStringToAnsiSize @761 + RtlUnicodeStringToAnsiString @762 + RtlUnicodeStringToCountedOemString @763 PRIVATE + RtlUnicodeStringToInteger @764 + RtlUnicodeStringToOemSize @765 + RtlUnicodeStringToOemString @766 + RtlUnicodeToCustomCPN @767 PRIVATE + RtlUnicodeToMultiByteN @768 + RtlUnicodeToMultiByteSize @769 + RtlUnicodeToOemN @770 + RtlUniform @771 + RtlUnlockHeap @772 + RtlUnwind @773 + RtlUnwindEx @774 + RtlUpcaseUnicodeChar @775 + RtlUpcaseUnicodeString @776 + RtlUpcaseUnicodeStringToAnsiString @777 + RtlUpcaseUnicodeStringToCountedOemString @778 + RtlUpcaseUnicodeStringToOemString @779 + RtlUpcaseUnicodeToCustomCPN @780 PRIVATE + RtlUpcaseUnicodeToMultiByteN @781 + RtlUpcaseUnicodeToOemN @782 + RtlUpdateTimer @783 + RtlUpperChar @784 + RtlUpperString @785 + RtlUsageHeap @786 PRIVATE + RtlValidAcl @787 + RtlValidRelativeSecurityDescriptor @788 + RtlValidSecurityDescriptor @789 + RtlValidSid @790 + RtlValidateHeap @791 + RtlValidateProcessHeaps @792 PRIVATE + RtlVerifyVersionInfo @793 + RtlVirtualUnwind @794 + RtlWaitOnAddress @795 + RtlWakeAddressAll @796 + RtlWakeAddressSingle @797 + RtlWakeAllConditionVariable @798 + RtlWakeConditionVariable @799 + RtlWalkFrameChain @800 PRIVATE + RtlWalkHeap @801 + RtlWow64EnableFsRedirection @802 + RtlWow64EnableFsRedirectionEx @803 + RtlWow64GetThreadContext @804 + RtlWow64SetThreadContext @805 + RtlWriteMemoryStream @806 PRIVATE + RtlWriteRegistryValue @807 + RtlZeroHeap @808 PRIVATE + RtlZeroMemory @809 + RtlZombifyActivationContext @810 + RtlpNtCreateKey @811 + RtlpNtEnumerateSubKey @812 + RtlpNtMakeTemporaryKey @813 + RtlpNtOpenKey @814 + RtlpNtQueryValueKey @815 + RtlpNtSetValueKey @816 + RtlpUnWaitCriticalSection @817 + RtlpWaitForCriticalSection @818 + RtlxAnsiStringToUnicodeSize=RtlAnsiStringToUnicodeSize @819 + RtlxOemStringToUnicodeSize=RtlOemStringToUnicodeSize @820 + RtlxUnicodeStringToAnsiSize=RtlUnicodeStringToAnsiSize @821 + RtlxUnicodeStringToOemSize=RtlUnicodeStringToOemSize @822 + TpAllocCleanupGroup @823 + TpAllocPool @824 + TpAllocTimer @825 + TpAllocWait @826 + TpAllocWork @827 + TpCallbackLeaveCriticalSectionOnCompletion @828 + TpCallbackMayRunLong @829 + TpCallbackReleaseMutexOnCompletion @830 + TpCallbackReleaseSemaphoreOnCompletion @831 + TpCallbackSetEventOnCompletion @832 + TpCallbackUnloadDllOnCompletion @833 + TpDisassociateCallback @834 + TpIsTimerSet @835 + TpPostWork @836 + TpReleaseCleanupGroup @837 + TpReleaseCleanupGroupMembers @838 + TpReleasePool @839 + TpReleaseTimer @840 + TpReleaseWait @841 + TpReleaseWork @842 + TpSetPoolMaxThreads @843 + TpSetPoolMinThreads @844 + TpSetTimer @845 + TpSetWait @846 + TpSimpleTryPost @847 + TpWaitForTimer @848 + TpWaitForWait @849 + TpWaitForWork @850 + VerSetConditionMask @851 + WinSqmEndSession @852 + WinSqmIncrementDWORD @853 + WinSqmIsOptedIn @854 + WinSqmSetDWORD @855 + WinSqmStartSession @856 + Wow64Transition @857 DATA + ZwAcceptConnectPort=__syscall_NtAcceptConnectPort @858 PRIVATE + ZwAccessCheck=__syscall_NtAccessCheck @859 PRIVATE + ZwAccessCheckAndAuditAlarm=__syscall_NtAccessCheckAndAuditAlarm @860 PRIVATE + ZwAddAtom=__syscall_NtAddAtom @861 PRIVATE + ZwAdjustGroupsToken=__syscall_NtAdjustGroupsToken @862 PRIVATE + ZwAdjustPrivilegesToken=__syscall_NtAdjustPrivilegesToken @863 PRIVATE + ZwAlertResumeThread=__syscall_NtAlertResumeThread @864 PRIVATE + ZwAlertThread=__syscall_NtAlertThread @865 PRIVATE + ZwAllocateLocallyUniqueId=__syscall_NtAllocateLocallyUniqueId @866 PRIVATE + ZwAllocateUuids=__syscall_NtAllocateUuids @867 PRIVATE + ZwAllocateVirtualMemory=__syscall_NtAllocateVirtualMemory @868 PRIVATE + ZwAreMappedFilesTheSame=__syscall_NtAreMappedFilesTheSame @869 PRIVATE + ZwAssignProcessToJobObject=__syscall_NtAssignProcessToJobObject @870 PRIVATE + ZwCallbackReturn @871 PRIVATE + ZwCancelIoFile=__syscall_NtCancelIoFile @872 PRIVATE + ZwCancelIoFileEx=__syscall_NtCancelIoFileEx @873 PRIVATE + ZwCancelTimer=__syscall_NtCancelTimer @874 PRIVATE + ZwClearEvent=__syscall_NtClearEvent @875 PRIVATE + ZwClose=__syscall_NtClose @876 PRIVATE + ZwCloseObjectAuditAlarm @877 PRIVATE + ZwCompleteConnectPort=__syscall_NtCompleteConnectPort @878 PRIVATE + ZwConnectPort=__syscall_NtConnectPort @879 PRIVATE + ZwContinue=__syscall_NtContinue @880 PRIVATE + ZwCreateDirectoryObject=__syscall_NtCreateDirectoryObject @881 PRIVATE + ZwCreateEvent=__syscall_NtCreateEvent @882 PRIVATE + ZwCreateEventPair @883 PRIVATE + ZwCreateFile=__syscall_NtCreateFile @884 PRIVATE + ZwCreateIoCompletion=__syscall_NtCreateIoCompletion @885 PRIVATE + ZwCreateJobObject=__syscall_NtCreateJobObject @886 PRIVATE + ZwCreateKey=__syscall_NtCreateKey @887 PRIVATE + ZwCreateKeyTransacted=__syscall_NtCreateKeyTransacted @888 PRIVATE + ZwCreateKeyedEvent=__syscall_NtCreateKeyedEvent @889 PRIVATE + ZwCreateMailslotFile=__syscall_NtCreateMailslotFile @890 PRIVATE + ZwCreateMutant=__syscall_NtCreateMutant @891 PRIVATE + ZwCreateNamedPipeFile=__syscall_NtCreateNamedPipeFile @892 PRIVATE + ZwCreatePagingFile=__syscall_NtCreatePagingFile @893 PRIVATE + ZwCreatePort=__syscall_NtCreatePort @894 PRIVATE + ZwCreateProcess @895 PRIVATE + ZwCreateProfile @896 PRIVATE + ZwCreateSection=__syscall_NtCreateSection @897 PRIVATE + ZwCreateSemaphore=__syscall_NtCreateSemaphore @898 PRIVATE + ZwCreateSymbolicLinkObject=__syscall_NtCreateSymbolicLinkObject @899 PRIVATE + ZwCreateThread @900 PRIVATE + ZwCreateTimer=__syscall_NtCreateTimer @901 PRIVATE + ZwCreateToken @902 PRIVATE + ZwDelayExecution=__syscall_NtDelayExecution @903 PRIVATE + ZwDeleteAtom=__syscall_NtDeleteAtom @904 PRIVATE + ZwDeleteFile=__syscall_NtDeleteFile @905 PRIVATE + ZwDeleteKey=__syscall_NtDeleteKey @906 PRIVATE + ZwDeleteValueKey=__syscall_NtDeleteValueKey @907 PRIVATE + ZwDeviceIoControlFile=__syscall_NtDeviceIoControlFile @908 PRIVATE + ZwDisplayString=__syscall_NtDisplayString @909 PRIVATE + ZwDuplicateObject=__syscall_NtDuplicateObject @910 PRIVATE + ZwDuplicateToken=__syscall_NtDuplicateToken @911 PRIVATE + ZwEnumerateBus @912 PRIVATE + ZwEnumerateKey=__syscall_NtEnumerateKey @913 PRIVATE + ZwEnumerateValueKey=__syscall_NtEnumerateValueKey @914 PRIVATE + ZwExtendSection @915 PRIVATE + ZwFindAtom=__syscall_NtFindAtom @916 PRIVATE + ZwFlushBuffersFile=__syscall_NtFlushBuffersFile @917 PRIVATE + ZwFlushInstructionCache=__syscall_NtFlushInstructionCache @918 PRIVATE + ZwFlushKey=__syscall_NtFlushKey @919 PRIVATE + ZwFlushVirtualMemory=__syscall_NtFlushVirtualMemory @920 PRIVATE + ZwFlushWriteBuffer @921 PRIVATE + ZwFreeVirtualMemory=__syscall_NtFreeVirtualMemory @922 PRIVATE + ZwFsControlFile=__syscall_NtFsControlFile @923 PRIVATE + ZwGetContextThread=__syscall_NtGetContextThread @924 PRIVATE + ZwGetCurrentProcessorNumber=__syscall_NtGetCurrentProcessorNumber @925 PRIVATE + ZwGetPlugPlayEvent @926 PRIVATE + ZwGetTickCount=__syscall_NtGetTickCount @927 PRIVATE + ZwGetWriteWatch=__syscall_NtGetWriteWatch @928 PRIVATE + ZwImpersonateAnonymousToken=__syscall_NtImpersonateAnonymousToken @929 PRIVATE + ZwImpersonateClientOfPort @930 PRIVATE + ZwImpersonateThread @931 PRIVATE + ZwInitializeRegistry @932 PRIVATE + ZwInitiatePowerAction=__syscall_NtInitiatePowerAction @933 PRIVATE + ZwIsProcessInJob=__syscall_NtIsProcessInJob @934 PRIVATE + ZwListenPort=__syscall_NtListenPort @935 PRIVATE + ZwLoadDriver=__syscall_NtLoadDriver @936 PRIVATE + ZwLoadKey2=__syscall_NtLoadKey2 @937 PRIVATE + ZwLoadKey=__syscall_NtLoadKey @938 PRIVATE + ZwLockFile=__syscall_NtLockFile @939 PRIVATE + ZwLockVirtualMemory=__syscall_NtLockVirtualMemory @940 PRIVATE + ZwMakeTemporaryObject=__syscall_NtMakeTemporaryObject @941 PRIVATE + ZwMapViewOfSection=__syscall_NtMapViewOfSection @942 PRIVATE + ZwNotifyChangeDirectoryFile=__syscall_NtNotifyChangeDirectoryFile @943 PRIVATE + ZwNotifyChangeKey=__syscall_NtNotifyChangeKey @944 PRIVATE + ZwNotifyChangeMultipleKeys=__syscall_NtNotifyChangeMultipleKeys @945 PRIVATE + ZwOpenDirectoryObject=__syscall_NtOpenDirectoryObject @946 PRIVATE + ZwOpenEvent=__syscall_NtOpenEvent @947 PRIVATE + ZwOpenEventPair @948 PRIVATE + ZwOpenFile=__syscall_NtOpenFile @949 PRIVATE + ZwOpenIoCompletion=__syscall_NtOpenIoCompletion @950 PRIVATE + ZwOpenJobObject=__syscall_NtOpenJobObject @951 PRIVATE + ZwOpenKey=__syscall_NtOpenKey @952 PRIVATE + ZwOpenKeyEx=__syscall_NtOpenKeyEx @953 PRIVATE + ZwOpenKeyTransacted=__syscall_NtOpenKeyTransacted @954 PRIVATE + ZwOpenKeyTransactedEx=__syscall_NtOpenKeyTransactedEx @955 PRIVATE + ZwOpenKeyedEvent=__syscall_NtOpenKeyedEvent @956 PRIVATE + ZwOpenMutant=__syscall_NtOpenMutant @957 PRIVATE + ZwOpenObjectAuditAlarm @958 PRIVATE + ZwOpenProcess=__syscall_NtOpenProcess @959 PRIVATE + ZwOpenProcessToken=__syscall_NtOpenProcessToken @960 PRIVATE + ZwOpenProcessTokenEx=__syscall_NtOpenProcessTokenEx @961 PRIVATE + ZwOpenSection=__syscall_NtOpenSection @962 PRIVATE + ZwOpenSemaphore=__syscall_NtOpenSemaphore @963 PRIVATE + ZwOpenSymbolicLinkObject=__syscall_NtOpenSymbolicLinkObject @964 PRIVATE + ZwOpenThread=__syscall_NtOpenThread @965 PRIVATE + ZwOpenThreadToken=__syscall_NtOpenThreadToken @966 PRIVATE + ZwOpenThreadTokenEx=__syscall_NtOpenThreadTokenEx @967 PRIVATE + ZwOpenTimer=__syscall_NtOpenTimer @968 PRIVATE + ZwPlugPlayControl @969 PRIVATE + ZwPowerInformation=__syscall_NtPowerInformation @970 PRIVATE + ZwPrivilegeCheck=__syscall_NtPrivilegeCheck @971 PRIVATE + ZwPrivilegeObjectAuditAlarm @972 PRIVATE + ZwPrivilegedServiceAuditAlarm @973 PRIVATE + ZwProtectVirtualMemory=__syscall_NtProtectVirtualMemory @974 PRIVATE + ZwPulseEvent=__syscall_NtPulseEvent @975 PRIVATE + ZwQueryAttributesFile=__syscall_NtQueryAttributesFile @976 PRIVATE + ZwQueryDefaultLocale=__syscall_NtQueryDefaultLocale @977 PRIVATE + ZwQueryDefaultUILanguage=__syscall_NtQueryDefaultUILanguage @978 PRIVATE + ZwQueryDirectoryFile=__syscall_NtQueryDirectoryFile @979 PRIVATE + ZwQueryDirectoryObject=__syscall_NtQueryDirectoryObject @980 PRIVATE + ZwQueryEaFile=__syscall_NtQueryEaFile @981 PRIVATE + ZwQueryEvent=__syscall_NtQueryEvent @982 PRIVATE + ZwQueryFullAttributesFile=__syscall_NtQueryFullAttributesFile @983 PRIVATE + ZwQueryInformationAtom=__syscall_NtQueryInformationAtom @984 PRIVATE + ZwQueryInformationFile=__syscall_NtQueryInformationFile @985 PRIVATE + ZwQueryInformationJobObject=__syscall_NtQueryInformationJobObject @986 PRIVATE + ZwQueryInformationPort @987 PRIVATE + ZwQueryInformationProcess=__syscall_NtQueryInformationProcess @988 PRIVATE + ZwQueryInformationThread=__syscall_NtQueryInformationThread @989 PRIVATE + ZwQueryInformationToken=__syscall_NtQueryInformationToken @990 PRIVATE + ZwQueryInstallUILanguage=__syscall_NtQueryInstallUILanguage @991 PRIVATE + ZwQueryIntervalProfile @992 PRIVATE + ZwQueryIoCompletion=__syscall_NtQueryIoCompletion @993 PRIVATE + ZwQueryKey=__syscall_NtQueryKey @994 PRIVATE + ZwQueryLicenseValue=__syscall_NtQueryLicenseValue @995 PRIVATE + ZwQueryMultipleValueKey=__syscall_NtQueryMultipleValueKey @996 PRIVATE + ZwQueryMutant=__syscall_NtQueryMutant @997 PRIVATE + ZwQueryObject=__syscall_NtQueryObject @998 PRIVATE + ZwQueryOpenSubKeys @999 PRIVATE + ZwQueryPerformanceCounter=__syscall_NtQueryPerformanceCounter @1000 PRIVATE + ZwQuerySection=__syscall_NtQuerySection @1001 PRIVATE + ZwQuerySecurityObject=__syscall_NtQuerySecurityObject @1002 PRIVATE + ZwQuerySemaphore=__syscall_NtQuerySemaphore @1003 PRIVATE + ZwQuerySymbolicLinkObject=__syscall_NtQuerySymbolicLinkObject @1004 PRIVATE + ZwQuerySystemEnvironmentValue=__syscall_NtQuerySystemEnvironmentValue @1005 PRIVATE + ZwQuerySystemEnvironmentValueEx=__syscall_NtQuerySystemEnvironmentValueEx @1006 PRIVATE + ZwQuerySystemInformation=__syscall_NtQuerySystemInformation @1007 PRIVATE + ZwQuerySystemInformationEx=__syscall_NtQuerySystemInformationEx @1008 PRIVATE + ZwQuerySystemTime=__syscall_NtQuerySystemTime @1009 PRIVATE + ZwQueryTimer=__syscall_NtQueryTimer @1010 PRIVATE + ZwQueryTimerResolution=__syscall_NtQueryTimerResolution @1011 PRIVATE + ZwQueryValueKey=__syscall_NtQueryValueKey @1012 PRIVATE + ZwQueryVirtualMemory=__syscall_NtQueryVirtualMemory @1013 PRIVATE + ZwQueryVolumeInformationFile=__syscall_NtQueryVolumeInformationFile @1014 PRIVATE + ZwQueueApcThread=__syscall_NtQueueApcThread @1015 PRIVATE + ZwRaiseException=__syscall_NtRaiseException @1016 PRIVATE + ZwRaiseHardError=__syscall_NtRaiseHardError @1017 PRIVATE + ZwReadFile=__syscall_NtReadFile @1018 PRIVATE + ZwReadFileScatter=__syscall_NtReadFileScatter @1019 PRIVATE + ZwReadRequestData @1020 PRIVATE + ZwReadVirtualMemory=__syscall_NtReadVirtualMemory @1021 PRIVATE + ZwRegisterNewDevice @1022 PRIVATE + ZwRegisterThreadTerminatePort=__syscall_NtRegisterThreadTerminatePort @1023 PRIVATE + ZwReleaseKeyedEvent=__syscall_NtReleaseKeyedEvent @1024 PRIVATE + ZwReleaseMutant=__syscall_NtReleaseMutant @1025 PRIVATE + ZwReleaseProcessMutant @1026 PRIVATE + ZwReleaseSemaphore=__syscall_NtReleaseSemaphore @1027 PRIVATE + ZwRemoveIoCompletion=__syscall_NtRemoveIoCompletion @1028 PRIVATE + ZwRemoveIoCompletionEx=__syscall_NtRemoveIoCompletionEx @1029 PRIVATE + ZwRenameKey=__syscall_NtRenameKey @1030 PRIVATE + ZwReplaceKey=__syscall_NtReplaceKey @1031 PRIVATE + ZwReplyPort @1032 PRIVATE + ZwReplyWaitReceivePort=__syscall_NtReplyWaitReceivePort @1033 PRIVATE + ZwReplyWaitReceivePortEx @1034 PRIVATE + ZwReplyWaitReplyPort @1035 PRIVATE + ZwRequestPort @1036 PRIVATE + ZwRequestWaitReplyPort=__syscall_NtRequestWaitReplyPort @1037 PRIVATE + ZwResetEvent=__syscall_NtResetEvent @1038 PRIVATE + ZwResetWriteWatch=__syscall_NtResetWriteWatch @1039 PRIVATE + ZwRestoreKey=__syscall_NtRestoreKey @1040 PRIVATE + ZwResumeProcess=__syscall_NtResumeProcess @1041 PRIVATE + ZwResumeThread=__syscall_NtResumeThread @1042 PRIVATE + ZwSaveKey=__syscall_NtSaveKey @1043 PRIVATE + ZwSecureConnectPort=__syscall_NtSecureConnectPort @1044 PRIVATE + ZwSetContextThread=__syscall_NtSetContextThread @1045 PRIVATE + ZwSetDebugFilterState @1046 PRIVATE + ZwSetDefaultHardErrorPort @1047 PRIVATE + ZwSetDefaultLocale=__syscall_NtSetDefaultLocale @1048 PRIVATE + ZwSetDefaultUILanguage=__syscall_NtSetDefaultUILanguage @1049 PRIVATE + ZwSetEaFile=__syscall_NtSetEaFile @1050 PRIVATE + ZwSetEvent=__syscall_NtSetEvent @1051 PRIVATE + ZwSetHighEventPair @1052 PRIVATE + ZwSetHighWaitLowEventPair @1053 PRIVATE + ZwSetHighWaitLowThread @1054 PRIVATE + ZwSetInformationFile=__syscall_NtSetInformationFile @1055 PRIVATE + ZwSetInformationJobObject=__syscall_NtSetInformationJobObject @1056 PRIVATE + ZwSetInformationKey=__syscall_NtSetInformationKey @1057 PRIVATE + ZwSetInformationObject=__syscall_NtSetInformationObject @1058 PRIVATE + ZwSetInformationProcess=__syscall_NtSetInformationProcess @1059 PRIVATE + ZwSetInformationThread=__syscall_NtSetInformationThread @1060 PRIVATE + ZwSetInformationToken=__syscall_NtSetInformationToken @1061 PRIVATE + ZwSetIntervalProfile=__syscall_NtSetIntervalProfile @1062 PRIVATE + ZwSetIoCompletion=__syscall_NtSetIoCompletion @1063 PRIVATE + ZwSetLdtEntries=__syscall_NtSetLdtEntries @1064 PRIVATE + ZwSetLowEventPair @1065 PRIVATE + ZwSetLowWaitHighEventPair @1066 PRIVATE + ZwSetLowWaitHighThread @1067 PRIVATE + ZwSetSecurityObject=__syscall_NtSetSecurityObject @1068 PRIVATE + ZwSetSystemEnvironmentValue @1069 PRIVATE + ZwSetSystemInformation=__syscall_NtSetSystemInformation @1070 PRIVATE + ZwSetSystemPowerState @1071 PRIVATE + ZwSetSystemTime=__syscall_NtSetSystemTime @1072 PRIVATE + ZwSetTimer=__syscall_NtSetTimer @1073 PRIVATE + ZwSetTimerResolution=__syscall_NtSetTimerResolution @1074 PRIVATE + ZwSetValueKey=__syscall_NtSetValueKey @1075 PRIVATE + ZwSetVolumeInformationFile=__syscall_NtSetVolumeInformationFile @1076 PRIVATE + ZwShutdownSystem=__syscall_NtShutdownSystem @1077 PRIVATE + ZwSignalAndWaitForSingleObject=__syscall_NtSignalAndWaitForSingleObject @1078 PRIVATE + ZwStartProfile @1079 PRIVATE + ZwStopProfile @1080 PRIVATE + ZwSuspendProcess=__syscall_NtSuspendProcess @1081 PRIVATE + ZwSuspendThread=__syscall_NtSuspendThread @1082 PRIVATE + ZwSystemDebugControl=__syscall_NtSystemDebugControl @1083 PRIVATE + ZwTerminateJobObject=__syscall_NtTerminateJobObject @1084 PRIVATE + ZwTerminateProcess=__syscall_NtTerminateProcess @1085 PRIVATE + ZwTerminateThread=__syscall_NtTerminateThread @1086 PRIVATE + ZwTestAlert @1087 PRIVATE + ZwUnloadDriver=__syscall_NtUnloadDriver @1088 PRIVATE + ZwUnloadKey=__syscall_NtUnloadKey @1089 PRIVATE + ZwUnloadKeyEx @1090 PRIVATE + ZwUnlockFile=__syscall_NtUnlockFile @1091 PRIVATE + ZwUnlockVirtualMemory=__syscall_NtUnlockVirtualMemory @1092 PRIVATE + ZwUnmapViewOfSection=__syscall_NtUnmapViewOfSection @1093 PRIVATE + ZwVdmControl @1094 PRIVATE + ZwW32Call @1095 PRIVATE + ZwWaitForKeyedEvent=__syscall_NtWaitForKeyedEvent @1096 PRIVATE + ZwWaitForMultipleObjects=__syscall_NtWaitForMultipleObjects @1097 PRIVATE + ZwWaitForProcessMutant @1098 PRIVATE + ZwWaitForSingleObject=__syscall_NtWaitForSingleObject @1099 PRIVATE + ZwWaitHighEventPair @1100 PRIVATE + ZwWaitLowEventPair @1101 PRIVATE + ZwWriteFile=__syscall_NtWriteFile @1102 PRIVATE + ZwWriteFileGather=__syscall_NtWriteFileGather @1103 PRIVATE + ZwWriteRequestData @1104 PRIVATE + ZwWriteVirtualMemory=__syscall_NtWriteVirtualMemory @1105 PRIVATE + ZwYieldExecution=__syscall_NtYieldExecution @1106 PRIVATE + __C_specific_handler @1107 + __chkstk @1108 PRIVATE + __isascii=NTDLL___isascii @1109 PRIVATE + __iscsym=NTDLL___iscsym @1110 PRIVATE + __iscsymf=NTDLL___iscsymf @1111 PRIVATE + __toascii=NTDLL___toascii @1112 PRIVATE + _atoi64 @1113 PRIVATE + _fltused @1114 PRIVATE + _i64toa @1115 PRIVATE + _i64tow @1116 PRIVATE + _itoa @1117 PRIVATE + _itow @1118 PRIVATE + _lfind @1119 PRIVATE + _local_unwind @1120 + _ltoa @1121 PRIVATE + _ltow @1122 PRIVATE + _memccpy @1123 PRIVATE + _memicmp @1124 PRIVATE + _snprintf=NTDLL__snprintf @1125 PRIVATE + _snwprintf=NTDLL__snwprintf @1126 PRIVATE + _splitpath @1127 PRIVATE + _strcmpi=_stricmp @1128 PRIVATE + _stricmp @1129 PRIVATE + _strlwr @1130 PRIVATE + _strnicmp @1131 + _strupr @1132 PRIVATE + _tolower=NTDLL__tolower @1133 PRIVATE + _toupper=NTDLL__toupper @1134 PRIVATE + _ui64toa @1135 PRIVATE + _ui64tow @1136 PRIVATE + _ultoa @1137 PRIVATE + _ultow @1138 PRIVATE + _vsnprintf=NTDLL__vsnprintf @1139 PRIVATE + _vsnwprintf=NTDLL__vsnwprintf @1140 PRIVATE + _wcsicmp=NTDLL__wcsicmp @1141 PRIVATE + _wcslwr=NTDLL__wcslwr @1142 PRIVATE + _wcsnicmp=NTDLL__wcsnicmp @1143 PRIVATE + _wcsupr=NTDLL__wcsupr @1144 PRIVATE + _wtoi @1145 PRIVATE + _wtoi64 @1146 PRIVATE + _wtol @1147 PRIVATE + abs=NTDLL_abs @1148 PRIVATE + atan=NTDLL_atan @1149 PRIVATE + atoi=NTDLL_atoi @1150 PRIVATE + atol=NTDLL_atol @1151 PRIVATE + bsearch=NTDLL_bsearch @1152 PRIVATE + ceil=NTDLL_ceil @1153 PRIVATE + cos=NTDLL_cos @1154 PRIVATE + fabs=NTDLL_fabs @1155 PRIVATE + floor=NTDLL_floor @1156 PRIVATE + isalnum=NTDLL_isalnum @1157 PRIVATE + isalpha=NTDLL_isalpha @1158 PRIVATE + iscntrl=NTDLL_iscntrl @1159 PRIVATE + isdigit=NTDLL_isdigit @1160 PRIVATE + isgraph=NTDLL_isgraph @1161 PRIVATE + islower=NTDLL_islower @1162 PRIVATE + isprint=NTDLL_isprint @1163 PRIVATE + ispunct=NTDLL_ispunct @1164 PRIVATE + isspace=NTDLL_isspace @1165 PRIVATE + isupper=NTDLL_isupper @1166 PRIVATE + iswalpha=NTDLL_iswalpha @1167 PRIVATE + iswctype=NTDLL_iswctype @1168 PRIVATE + iswdigit=NTDLL_iswdigit @1169 PRIVATE + iswlower=NTDLL_iswlower @1170 PRIVATE + iswspace=NTDLL_iswspace @1171 PRIVATE + iswxdigit=NTDLL_iswxdigit @1172 PRIVATE + isxdigit=NTDLL_isxdigit @1173 PRIVATE + labs=NTDLL_labs @1174 PRIVATE + log=NTDLL_log @1175 PRIVATE + mbstowcs=NTDLL_mbstowcs @1176 PRIVATE + memchr=NTDLL_memchr @1177 PRIVATE + memcmp=NTDLL_memcmp @1178 PRIVATE + memcpy=NTDLL_memcpy @1179 PRIVATE + memmove=NTDLL_memmove @1180 PRIVATE + memset=NTDLL_memset @1181 PRIVATE + pow=NTDLL_pow @1182 PRIVATE + qsort=NTDLL_qsort @1183 PRIVATE + sin=NTDLL_sin @1184 PRIVATE + sprintf=NTDLL_sprintf @1185 PRIVATE + sqrt=NTDLL_sqrt @1186 PRIVATE + sscanf=NTDLL_sscanf @1187 PRIVATE + strcat=NTDLL_strcat @1188 PRIVATE + strchr=NTDLL_strchr @1189 PRIVATE + strcmp=NTDLL_strcmp @1190 PRIVATE + strcpy=NTDLL_strcpy @1191 PRIVATE + strcspn=NTDLL_strcspn @1192 PRIVATE + strlen=NTDLL_strlen @1193 PRIVATE + strncat=NTDLL_strncat @1194 PRIVATE + strncmp=NTDLL_strncmp @1195 PRIVATE + strncpy=NTDLL_strncpy @1196 PRIVATE + strnlen=NTDLL_strnlen @1197 PRIVATE + strpbrk=NTDLL_strpbrk @1198 PRIVATE + strrchr=NTDLL_strrchr @1199 PRIVATE + strspn=NTDLL_strspn @1200 PRIVATE + strstr=NTDLL_strstr @1201 PRIVATE + strtol=NTDLL_strtol @1202 PRIVATE + strtoul=NTDLL_strtoul @1203 PRIVATE + swprintf=NTDLL_swprintf @1204 PRIVATE + tan=NTDLL_tan @1205 PRIVATE + tolower=NTDLL_tolower @1206 PRIVATE + toupper=NTDLL_toupper @1207 PRIVATE + towlower=NTDLL_towlower @1208 PRIVATE + towupper=NTDLL_towupper @1209 PRIVATE + vDbgPrintEx @1210 + vDbgPrintExWithPrefix @1211 + vsprintf=NTDLL_vsprintf @1212 PRIVATE + wcscat=NTDLL_wcscat @1213 PRIVATE + wcschr=NTDLL_wcschr @1214 PRIVATE + wcscmp=NTDLL_wcscmp @1215 PRIVATE + wcscpy=NTDLL_wcscpy @1216 PRIVATE + wcscspn=NTDLL_wcscspn @1217 PRIVATE + wcslen=NTDLL_wcslen @1218 PRIVATE + wcsncat=NTDLL_wcsncat @1219 PRIVATE + wcsncmp=NTDLL_wcsncmp @1220 PRIVATE + wcsncpy=NTDLL_wcsncpy @1221 PRIVATE + wcspbrk=NTDLL_wcspbrk @1222 PRIVATE + wcsrchr=NTDLL_wcsrchr @1223 PRIVATE + wcsspn=NTDLL_wcsspn @1224 PRIVATE + wcsstr=NTDLL_wcsstr @1225 PRIVATE + wcstok=NTDLL_wcstok @1226 PRIVATE + wcstol=NTDLL_wcstol @1227 PRIVATE + wcstombs=NTDLL_wcstombs @1228 PRIVATE + wcstoul=NTDLL_wcstoul @1229 PRIVATE + __wine_esync_set_queue_fd @1230 + wine_server_call @1231 + wine_server_close_fds_by_type @1232 + wine_server_fd_to_handle @1233 + wine_server_handle_to_fd @1234 + wine_server_release_fd @1235 + wine_server_send_fd @1236 + __wine_make_process_system @1237 + __wine_dbg_get_channel_flags @1238 + __wine_dbg_header @1239 + __wine_dbg_output @1240 + __wine_dbg_strdup @1241 + __wine_locked_recvmsg @1242 + __wine_needs_override_large_address_aware @1243 + __wine_create_default_token @1244 + wine_get_version=NTDLL_wine_get_version @1245 + wine_get_patches=NTDLL_wine_get_patches @1246 + wine_get_build_id=NTDLL_wine_get_build_id @1247 + wine_get_host_version=NTDLL_wine_get_host_version @1248 + __wine_init_codepages @1249 + __wine_set_signal_handler @1250 + wine_nt_to_unix_file_name @1251 + wine_unix_to_nt_file_name @1252 + __wine_user_shared_data @1253 diff --git a/lib64/wine/libntdsapi.def b/lib64/wine/libntdsapi.def new file mode 100644 index 0000000..181a960 --- /dev/null +++ b/lib64/wine/libntdsapi.def @@ -0,0 +1,101 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/ntdsapi/ntdsapi.spec; do not edit! + +LIBRARY ntdsapi.dll + +EXPORTS + DsAddSidHistoryA @1 PRIVATE + DsAddSidHistoryW @2 PRIVATE + DsBindA @3 + DsBindW @4 + DsBindWithCredA @5 PRIVATE + DsBindWithCredW @6 PRIVATE + DsBindWithSpnA @7 PRIVATE + DsBindWithSpnW @8 PRIVATE + DsClientMakeSpnForTargetServerA @9 PRIVATE + DsClientMakeSpnForTargetServerW @10 + DsCrackNamesA @11 + DsCrackNamesW @12 + DsCrackSpn2A @13 PRIVATE + DsCrackSpn2W @14 PRIVATE + DsCrackSpn3W @15 PRIVATE + DsCrackSpnA @16 PRIVATE + DsCrackSpnW @17 PRIVATE + DsCrackUnquotedMangledRdnA @18 PRIVATE + DsCrackUnquotedMangledRdnW @19 PRIVATE + DsFreeDomainControllerInfoA @20 PRIVATE + DsFreeDomainControllerInfoW @21 PRIVATE + DsFreeNameResultA @22 PRIVATE + DsFreeNameResultW @23 PRIVATE + DsFreePasswordCredentials @24 PRIVATE + DsFreeSchemaGuidMapA @25 PRIVATE + DsFreeSchemaGuidMapW @26 PRIVATE + DsFreeSpnArrayA @27 PRIVATE + DsFreeSpnArrayW @28 PRIVATE + DsGetDomainControllerInfoA @29 PRIVATE + DsGetDomainControllerInfoW @30 PRIVATE + DsGetRdnW @31 PRIVATE + DsGetSpnA @32 + DsGetSpnW @33 PRIVATE + DsInheritSecurityIdentityA @34 PRIVATE + DsInheritSecurityIdentityW @35 PRIVATE + DsIsMangledDnA @36 PRIVATE + DsIsMangledDnW @37 PRIVATE + DsIsMangledRdnValueA @38 PRIVATE + DsIsMangledRdnValueW @39 PRIVATE + DsListDomainsInSiteA @40 PRIVATE + DsListDomainsInSiteW @41 PRIVATE + DsListInfoForServerA @42 PRIVATE + DsListInfoForServerW @43 PRIVATE + DsListRolesA @44 PRIVATE + DsListRolesW @45 PRIVATE + DsListServersForDomainInSiteA @46 PRIVATE + DsListServersForDomainInSiteW @47 PRIVATE + DsListServersInSiteA @48 PRIVATE + DsListServersInSiteW @49 PRIVATE + DsListSitesA @50 PRIVATE + DsListSitesW @51 PRIVATE + DsLogEntry @52 PRIVATE + DsMakePasswordCredentialsA @53 PRIVATE + DsMakePasswordCredentialsW @54 PRIVATE + DsMakeSpnA @55 + DsMakeSpnW @56 + DsMapSchemaGuidsA @57 PRIVATE + DsMapSchemaGuidsW @58 PRIVATE + DsQuoteRdnValueA @59 PRIVATE + DsQuoteRdnValueW @60 PRIVATE + DsRemoveDsDomainA @61 PRIVATE + DsRemoveDsDomainW @62 PRIVATE + DsRemoveDsServerA @63 PRIVATE + DsRemoveDsServerW @64 PRIVATE + DsReplicaAddA @65 PRIVATE + DsReplicaAddW @66 PRIVATE + DsReplicaConsistencyCheck @67 PRIVATE + DsReplicaDelA @68 PRIVATE + DsReplicaDelW @69 PRIVATE + DsReplicaFreeInfo @70 PRIVATE + DsReplicaGetInfo2W @71 PRIVATE + DsReplicaGetInfoW @72 PRIVATE + DsReplicaModifyA @73 PRIVATE + DsReplicaModifyW @74 PRIVATE + DsReplicaSyncA @75 PRIVATE + DsReplicaSyncAllA @76 PRIVATE + DsReplicaSyncAllW @77 PRIVATE + DsReplicaSyncW @78 PRIVATE + DsReplicaUpdateRefsA @79 PRIVATE + DsReplicaUpdateRefsW @80 PRIVATE + DsReplicaVerifyObjectsA @81 PRIVATE + DsReplicaVerifyObjectsW @82 PRIVATE + DsServerRegisterSpnA @83 + DsServerRegisterSpnW @84 + DsUnBindA @85 PRIVATE + DsUnBindW @86 PRIVATE + DsUnquoteRdnValueA @87 PRIVATE + DsUnquoteRdnValueW @88 PRIVATE + DsWriteAccountSpnA @89 PRIVATE + DsWriteAccountSpnW @90 PRIVATE + DsaopBind @91 PRIVATE + DsaopBindWithCred @92 PRIVATE + DsaopBindWithSpn @93 PRIVATE + DsaopExecuteScript @94 PRIVATE + DsaopPrepareScript @95 PRIVATE + DsaopUnBind @96 PRIVATE diff --git a/lib64/wine/libntoskrnl.def b/lib64/wine/libntoskrnl.def new file mode 100644 index 0000000..7cc49b0 --- /dev/null +++ b/lib64/wine/libntoskrnl.def @@ -0,0 +1,1478 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/ntoskrnl.exe/ntoskrnl.exe.spec; do not edit! + +LIBRARY ntoskrnl.exe + +EXPORTS + ExAcquireFastMutexUnsafe @1 + ExAcquireRundownProtection @2 PRIVATE + ExAcquireRundownProtectionEx @3 PRIVATE + ExInitializeRundownProtection @4 PRIVATE + ExInterlockedAddLargeStatistic @5 PRIVATE + ExInterlockedCompareExchange64 @6 PRIVATE + ExInterlockedFlushSList @7 PRIVATE + ExReInitializeRundownProtection @8 PRIVATE + ExReleaseFastMutexUnsafe @9 + ExReleaseResourceLite @10 + ExReleaseRundownProtection @11 PRIVATE + ExReleaseRundownProtectionEx @12 PRIVATE + ExRundownCompleted @13 PRIVATE + ExWaitForRundownProtectionRelease @14 PRIVATE + ExfAcquirePushLockExclusive @15 PRIVATE + ExfAcquirePushLockShared @16 PRIVATE + ExfInterlockedAddUlong @17 PRIVATE + ExfInterlockedCompareExchange64 @18 PRIVATE + ExfInterlockedInsertHeadList @19 PRIVATE + ExfInterlockedInsertTailList @20 PRIVATE + ExfInterlockedPopEntryList @21 PRIVATE + ExfInterlockedPushEntryList @22 PRIVATE + ExfReleasePushLock @23 PRIVATE + Exfi386InterlockedDecrementLong @24 PRIVATE + Exfi386InterlockedExchangeUlong @25 PRIVATE + Exfi386InterlockedIncrementLong @26 PRIVATE + ExpInterlockedPopEntrySList=RtlInterlockedPopEntrySList @27 + ExpInterlockedPushEntrySList=RtlInterlockedPushEntrySList @28 + HalExamineMBR @29 PRIVATE + InterlockedCompareExchange=NTOSKRNL_InterlockedCompareExchange @30 + InterlockedDecrement=NTOSKRNL_InterlockedDecrement @31 + InterlockedExchange=NTOSKRNL_InterlockedExchange @32 + InterlockedExchangeAdd=NTOSKRNL_InterlockedExchangeAdd @33 + InterlockedIncrement=NTOSKRNL_InterlockedIncrement @34 + ExQueryDepthSList=RtlQueryDepthSList @35 + IoAssignDriveLetters @36 PRIVATE + IoReadPartitionTable @37 PRIVATE + IoSetPartitionInformation @38 PRIVATE + IoWritePartitionTable @39 PRIVATE + IofCallDriver @40 + IofCompleteRequest @41 + KeAcquireInStackQueuedSpinLock @42 + KeAcquireInStackQueuedSpinLockAtDpcLevel @43 + KeEnterGuardedRegion @44 + KeExpandKernelStackAndCallout @45 + KeExpandKernelStackAndCalloutEx @46 + KeLeaveGuardedRegion @47 + KeReleaseInStackQueuedSpinLock @48 + KeReleaseInStackQueuedSpinLockFromDpcLevel @49 + KeSetTimeUpdateNotifyRoutine @50 PRIVATE + KefAcquireSpinLockAtDpcLevel @51 PRIVATE + KefReleaseSpinLockFromDpcLevel @52 PRIVATE + KiAcquireSpinLock @53 PRIVATE + KiReleaseSpinLock @54 PRIVATE + ObfDereferenceObject @55 + ObfReferenceObject @56 + RtlPrefetchMemoryNonTemporal @57 PRIVATE + RtlUlonglongByteSwap @58 + WmiGetClock @59 PRIVATE + Kei386EoiHelper @60 PRIVATE + Kii386SpinOnSpinLock @61 PRIVATE + CcCanIWrite @62 PRIVATE + CcCopyRead @63 PRIVATE + CcCopyWrite @64 PRIVATE + CcDeferWrite @65 PRIVATE + CcFastCopyRead @66 PRIVATE + CcFastCopyWrite @67 PRIVATE + CcFastMdlReadWait @68 PRIVATE + CcFastReadNotPossible @69 PRIVATE + CcFastReadWait @70 PRIVATE + CcFlushCache @71 PRIVATE + CcGetDirtyPages @72 PRIVATE + CcGetFileObjectFromBcb @73 PRIVATE + CcGetFileObjectFromSectionPtrs @74 PRIVATE + CcGetFlushedValidData @75 PRIVATE + CcGetLsnForFileObject @76 PRIVATE + CcInitializeCacheMap @77 PRIVATE + CcIsThereDirtyData @78 PRIVATE + CcMapData @79 PRIVATE + CcMdlRead @80 PRIVATE + CcMdlReadComplete @81 PRIVATE + CcMdlWriteAbort @82 PRIVATE + CcMdlWriteComplete @83 PRIVATE + CcPinMappedData @84 PRIVATE + CcPinRead @85 PRIVATE + CcPrepareMdlWrite @86 PRIVATE + CcPreparePinWrite @87 PRIVATE + CcPurgeCacheSection @88 PRIVATE + CcRemapBcb @89 PRIVATE + CcRepinBcb @90 PRIVATE + CcScheduleReadAhead @91 PRIVATE + CcSetAdditionalCacheAttributes @92 PRIVATE + CcSetBcbOwnerPointer @93 PRIVATE + CcSetDirtyPageThreshold @94 PRIVATE + CcSetDirtyPinnedData @95 PRIVATE + CcSetFileSizes @96 PRIVATE + CcSetLogHandleForFile @97 PRIVATE + CcSetReadAheadGranularity @98 PRIVATE + CcUninitializeCacheMap @99 PRIVATE + CcUnpinData @100 PRIVATE + CcUnpinDataForThread @101 PRIVATE + CcUnpinRepinnedBcb @102 PRIVATE + CcWaitForCurrentLazyWriterActivity @103 PRIVATE + CcZeroData @104 PRIVATE + CmRegisterCallback @105 + CmUnRegisterCallback @106 + DbgBreakPoint @107 + DbgBreakPointWithStatus @108 PRIVATE + DbgLoadImageSymbols @109 PRIVATE + DbgPrint @110 + DbgPrintEx @111 + DbgPrintReturnControlC @112 PRIVATE + DbgPrompt @113 PRIVATE + DbgQueryDebugFilterState @114 + DbgSetDebugFilterState @115 PRIVATE + ExAcquireResourceExclusiveLite @116 + ExAcquireResourceSharedLite @117 + ExAcquireSharedStarveExclusive @118 + ExAcquireSharedWaitForExclusive @119 + ExAllocateFromPagedLookasideList @120 PRIVATE + ExAllocatePool @121 + ExAllocatePoolWithQuota @122 + ExAllocatePoolWithQuotaTag @123 + ExAllocatePoolWithTag @124 + ExAllocatePoolWithTagPriority @125 PRIVATE + ExConvertExclusiveToSharedLite @126 PRIVATE + ExCreateCallback @127 + ExDeleteNPagedLookasideList @128 + ExDeletePagedLookasideList @129 + ExDeleteResourceLite @130 + ExDesktopObjectType @131 PRIVATE + ExDisableResourceBoostLite @132 PRIVATE + ExEnumHandleTable @133 PRIVATE + ExEventObjectType @134 DATA + ExExtendZone @135 PRIVATE + ExfUnblockPushLock @136 + ExFreePool @137 + ExFreePoolWithTag @138 + ExFreeToPagedLookasideList @139 PRIVATE + ExGetCurrentProcessorCounts @140 PRIVATE + ExGetCurrentProcessorCpuUsage @141 PRIVATE + ExGetExclusiveWaiterCount @142 + ExGetPreviousMode @143 PRIVATE + ExGetSharedWaiterCount @144 + ExInitializeNPagedLookasideList @145 + ExInitializePagedLookasideList @146 + ExInitializeResourceLite @147 + ExInitializeZone @148 + ExInterlockedAddLargeInteger @149 PRIVATE + ExInterlockedAddUlong @150 PRIVATE + ExInterlockedDecrementLong @151 PRIVATE + ExInterlockedExchangeUlong @152 PRIVATE + ExInterlockedExtendZone @153 PRIVATE + ExInterlockedIncrementLong @154 PRIVATE + ExInterlockedInsertHeadList @155 PRIVATE + ExInterlockedInsertTailList @156 PRIVATE + ExInterlockedPopEntryList @157 PRIVATE + ExInterlockedPushEntryList @158 PRIVATE + ExInterlockedRemoveHeadList @159 + ExIsProcessorFeaturePresent @160 PRIVATE + ExIsResourceAcquiredExclusiveLite @161 + ExIsResourceAcquiredSharedLite @162 + ExLocalTimeToSystemTime=RtlLocalTimeToSystemTime @163 + ExNotifyCallback @164 PRIVATE + ExQueryPoolBlockSize @165 PRIVATE + ExQueueWorkItem @166 PRIVATE + ExRaiseAccessViolation @167 PRIVATE + ExRaiseDatatypeMisalignment @168 PRIVATE + ExRaiseException @169 PRIVATE + ExRaiseHardError @170 PRIVATE + ExRaiseStatus @171 PRIVATE + ExRegisterCallback @172 PRIVATE + ExReinitializeResourceLite @173 PRIVATE + ExReleaseResourceForThreadLite @174 + ExSemaphoreObjectType @175 DATA + ExSetResourceOwnerPointer @176 PRIVATE + ExSetTimerResolution @177 + ExSystemExceptionFilter @178 PRIVATE + ExSystemTimeToLocalTime=RtlSystemTimeToLocalTime @179 + ExUnregisterCallback @180 PRIVATE + ExUuidCreate @181 + ExVerifySuite @182 PRIVATE + ExWindowStationObjectType @183 PRIVATE + Exi386InterlockedDecrementLong @184 PRIVATE + Exi386InterlockedExchangeUlong @185 PRIVATE + Exi386InterlockedIncrementLong @186 PRIVATE + FsRtlAcquireFileExclusive @187 PRIVATE + FsRtlAddLargeMcbEntry @188 PRIVATE + FsRtlAddMcbEntry @189 PRIVATE + FsRtlAddToTunnelCache @190 PRIVATE + FsRtlAllocateFileLock @191 PRIVATE + FsRtlAllocatePool @192 PRIVATE + FsRtlAllocatePoolWithQuota @193 PRIVATE + FsRtlAllocatePoolWithQuotaTag @194 PRIVATE + FsRtlAllocatePoolWithTag @195 PRIVATE + FsRtlAllocateResource @196 PRIVATE + FsRtlAreNamesEqual @197 PRIVATE + FsRtlBalanceReads @198 PRIVATE + FsRtlCheckLockForReadAccess @199 PRIVATE + FsRtlCheckLockForWriteAccess @200 PRIVATE + FsRtlCheckOplock @201 PRIVATE + FsRtlCopyRead @202 PRIVATE + FsRtlCopyWrite @203 PRIVATE + FsRtlCurrentBatchOplock @204 PRIVATE + FsRtlDeleteKeyFromTunnelCache @205 PRIVATE + FsRtlDeleteTunnelCache @206 PRIVATE + FsRtlDeregisterUncProvider @207 PRIVATE + FsRtlDissectDbcs @208 PRIVATE + FsRtlDissectName @209 PRIVATE + FsRtlDoesDbcsContainWildCards @210 PRIVATE + FsRtlDoesNameContainWildCards @211 PRIVATE + FsRtlFastCheckLockForRead @212 PRIVATE + FsRtlFastCheckLockForWrite @213 PRIVATE + FsRtlFastUnlockAll @214 PRIVATE + FsRtlFastUnlockAllByKey @215 PRIVATE + FsRtlFastUnlockSingle @216 PRIVATE + FsRtlFindInTunnelCache @217 PRIVATE + FsRtlFreeFileLock @218 PRIVATE + FsRtlGetFileSize @219 PRIVATE + FsRtlGetNextFileLock @220 PRIVATE + FsRtlGetNextLargeMcbEntry @221 PRIVATE + FsRtlGetNextMcbEntry @222 PRIVATE + FsRtlIncrementCcFastReadNoWait @223 PRIVATE + FsRtlIncrementCcFastReadNotPossible @224 PRIVATE + FsRtlIncrementCcFastReadResourceMiss @225 PRIVATE + FsRtlIncrementCcFastReadWait @226 PRIVATE + FsRtlInitializeFileLock @227 PRIVATE + FsRtlInitializeLargeMcb @228 PRIVATE + FsRtlInitializeMcb @229 PRIVATE + FsRtlInitializeOplock @230 PRIVATE + FsRtlInitializeTunnelCache @231 PRIVATE + FsRtlInsertPerFileObjectContext @232 PRIVATE + FsRtlInsertPerStreamContext @233 PRIVATE + FsRtlIsDbcsInExpression @234 PRIVATE + FsRtlIsFatDbcsLegal @235 PRIVATE + FsRtlIsHpfsDbcsLegal @236 PRIVATE + FsRtlIsNameInExpression @237 + FsRtlIsNtstatusExpected @238 PRIVATE + FsRtlIsPagingFile @239 PRIVATE + FsRtlIsTotalDeviceFailure @240 PRIVATE + FsRtlLegalAnsiCharacterArray @241 PRIVATE + FsRtlLookupLargeMcbEntry @242 PRIVATE + FsRtlLookupLastLargeMcbEntry @243 PRIVATE + FsRtlLookupLastLargeMcbEntryAndIndex @244 PRIVATE + FsRtlLookupLastMcbEntry @245 PRIVATE + FsRtlLookupMcbEntry @246 PRIVATE + FsRtlLookupPerFileObjectContext @247 PRIVATE + FsRtlLookupPerStreamContextInternal @248 PRIVATE + FsRtlMdlRead @249 PRIVATE + FsRtlMdlReadComplete @250 PRIVATE + FsRtlMdlReadCompleteDev @251 PRIVATE + FsRtlMdlReadDev @252 PRIVATE + FsRtlMdlWriteComplete @253 PRIVATE + FsRtlMdlWriteCompleteDev @254 PRIVATE + FsRtlNormalizeNtstatus @255 PRIVATE + FsRtlNotifyChangeDirectory @256 PRIVATE + FsRtlNotifyCleanup @257 PRIVATE + FsRtlNotifyFilterChangeDirectory @258 PRIVATE + FsRtlNotifyFilterReportChange @259 PRIVATE + FsRtlNotifyFullChangeDirectory @260 PRIVATE + FsRtlNotifyFullReportChange @261 PRIVATE + FsRtlNotifyInitializeSync @262 PRIVATE + FsRtlNotifyReportChange @263 PRIVATE + FsRtlNotifyUninitializeSync @264 PRIVATE + FsRtlNotifyVolumeEvent @265 PRIVATE + FsRtlNumberOfRunsInLargeMcb @266 PRIVATE + FsRtlNumberOfRunsInMcb @267 PRIVATE + FsRtlOplockFsctrl @268 PRIVATE + FsRtlOplockIsFastIoPossible @269 PRIVATE + FsRtlPostPagingFileStackOverflow @270 PRIVATE + FsRtlPostStackOverflow @271 PRIVATE + FsRtlPrepareMdlWrite @272 PRIVATE + FsRtlPrepareMdlWriteDev @273 PRIVATE + FsRtlPrivateLock @274 PRIVATE + FsRtlProcessFileLock @275 PRIVATE + FsRtlRegisterFileSystemFilterCallbacks @276 + FsRtlRegisterUncProvider @277 + FsRtlReleaseFile @278 PRIVATE + FsRtlRemoveLargeMcbEntry @279 PRIVATE + FsRtlRemoveMcbEntry @280 PRIVATE + FsRtlRemovePerFileObjectContext @281 PRIVATE + FsRtlRemovePerStreamContext @282 PRIVATE + FsRtlResetLargeMcb @283 PRIVATE + FsRtlSplitLargeMcb @284 PRIVATE + FsRtlSyncVolumes @285 PRIVATE + FsRtlTeardownPerStreamContexts @286 PRIVATE + FsRtlTruncateLargeMcb @287 PRIVATE + FsRtlTruncateMcb @288 PRIVATE + FsRtlUninitializeFileLock @289 PRIVATE + FsRtlUninitializeLargeMcb @290 PRIVATE + FsRtlUninitializeMcb @291 PRIVATE + FsRtlUninitializeOplock @292 PRIVATE + HalDispatchTable @293 PRIVATE + HalPrivateDispatchTable @294 PRIVATE + HeadlessDispatch @295 PRIVATE + InbvAcquireDisplayOwnership @296 PRIVATE + InbvCheckDisplayOwnership @297 PRIVATE + InbvDisplayString @298 PRIVATE + InbvEnableBootDriver @299 PRIVATE + InbvEnableDisplayString @300 PRIVATE + InbvInstallDisplayStringFilter @301 PRIVATE + InbvIsBootDriverInstalled @302 PRIVATE + InbvNotifyDisplayOwnershipLost @303 PRIVATE + InbvResetDisplay @304 PRIVATE + InbvSetScrollRegion @305 PRIVATE + InbvSetTextColor @306 PRIVATE + InbvSolidColorFill @307 PRIVATE + InitSafeBootMode @308 DATA + IoAcquireCancelSpinLock @309 + IoAcquireRemoveLockEx @310 + IoAcquireVpbSpinLock @311 PRIVATE + IoAdapterObjectType @312 PRIVATE + IoAllocateAdapterChannel @313 PRIVATE + IoAllocateController @314 PRIVATE + IoAllocateDriverObjectExtension @315 + IoAllocateErrorLogEntry @316 + IoAllocateIrp @317 + IoAllocateMdl @318 + IoAllocateWorkItem @319 + IoAssignResources @320 PRIVATE + IoAttachDevice @321 + IoAttachDeviceByPointer @322 PRIVATE + IoAttachDeviceToDeviceStack @323 + IoAttachDeviceToDeviceStackSafe @324 PRIVATE + IoBuildAsynchronousFsdRequest @325 PRIVATE + IoBuildDeviceIoControlRequest @326 + IoBuildPartialMdl @327 PRIVATE + IoBuildSynchronousFsdRequest @328 + IoCallDriver @329 + IoCancelFileOpen @330 PRIVATE + IoCancelIrp @331 PRIVATE + IoCheckDesiredAccess @332 PRIVATE + IoCheckEaBufferValidity @333 PRIVATE + IoCheckFunctionAccess @334 PRIVATE + IoCheckQuerySetFileInformation @335 PRIVATE + IoCheckQuerySetVolumeInformation @336 PRIVATE + IoCheckQuotaBufferValidity @337 PRIVATE + IoCheckShareAccess @338 PRIVATE + IoCompleteRequest @339 + IoConnectInterrupt @340 PRIVATE + IoCreateController @341 PRIVATE + IoCreateDevice @342 + IoCreateDisk @343 PRIVATE + IoCreateDriver @344 + IoCreateFile @345 + IoCreateFileSpecifyDeviceObjectHint @346 PRIVATE + IoCreateNotificationEvent @347 + IoCreateStreamFileObject @348 PRIVATE + IoCreateStreamFileObjectEx @349 PRIVATE + IoCreateStreamFileObjectLite @350 PRIVATE + IoCreateSymbolicLink @351 + IoCreateSynchronizationEvent @352 + IoCreateUnprotectedSymbolicLink @353 PRIVATE + IoCsqInitialize @354 + IoCsqInsertIrp @355 PRIVATE + IoCsqRemoveIrp @356 PRIVATE + IoCsqRemoveNextIrp @357 PRIVATE + IoDeleteController @358 PRIVATE + IoDeleteDevice @359 + IoDeleteDriver @360 + IoDeleteSymbolicLink @361 + IoDetachDevice @362 PRIVATE + IoDeviceHandlerObjectSize @363 PRIVATE + IoDeviceHandlerObjectType @364 PRIVATE + IoDeviceObjectType @365 DATA + IoDisconnectInterrupt @366 PRIVATE + IoDriverObjectType @367 DATA + IoEnqueueIrp @368 PRIVATE + IoEnumerateDeviceObjectList @369 PRIVATE + IoFastQueryNetworkAttributes @370 PRIVATE + IoFileObjectType @371 DATA + IoForwardAndCatchIrp @372 PRIVATE + IoForwardIrpSynchronously @373 PRIVATE + IoFreeController @374 PRIVATE + IoFreeErrorLogEntry @375 PRIVATE + IoFreeIrp @376 + IoFreeMdl @377 + IoFreeWorkItem @378 PRIVATE + IoGetAttachedDevice @379 + IoGetAttachedDeviceReference @380 + IoGetBaseFileSystemDeviceObject @381 PRIVATE + IoGetBootDiskInformation @382 PRIVATE + IoGetConfigurationInformation @383 + IoGetCurrentProcess @384 + IoGetDeviceAttachmentBaseRef @385 + IoGetDeviceInterfaceAlias @386 PRIVATE + IoGetDeviceInterfaces @387 + IoGetDeviceObjectPointer @388 + IoGetDeviceProperty @389 + IoGetDeviceToVerify @390 PRIVATE + IoGetDiskDeviceObject @391 PRIVATE + IoGetDmaAdapter @392 PRIVATE + IoGetDriverObjectExtension @393 + IoGetFileObjectGenericMapping @394 PRIVATE + IoGetInitialStack @395 PRIVATE + IoGetLowerDeviceObject @396 PRIVATE + IoGetRelatedDeviceObject @397 + IoGetRequestorProcess @398 PRIVATE + IoGetRequestorProcessId @399 PRIVATE + IoGetRequestorSessionId @400 PRIVATE + IoGetStackLimits @401 PRIVATE + IoGetTopLevelIrp @402 PRIVATE + IoInitializeIrp @403 + IoInitializeRemoveLockEx @404 + IoInitializeTimer @405 + IoInvalidateDeviceRelations @406 + IoInvalidateDeviceState @407 PRIVATE + IoIsFileOriginRemote @408 PRIVATE + IoIsOperationSynchronous @409 PRIVATE + IoIsSystemThread @410 PRIVATE + IoIsValidNameGraftingBuffer @411 PRIVATE + IoIsWdmVersionAvailable @412 + IoMakeAssociatedIrp @413 PRIVATE + IoOpenDeviceInterfaceRegistryKey @414 PRIVATE + IoOpenDeviceRegistryKey @415 PRIVATE + IoPageRead @416 PRIVATE + IoPnPDeliverServicePowerNotification @417 PRIVATE + IoQueryDeviceDescription @418 + IoQueryFileDosDeviceName @419 PRIVATE + IoQueryFileInformation @420 PRIVATE + IoQueryVolumeInformation @421 PRIVATE + IoQueueThreadIrp @422 PRIVATE + IoQueueWorkItem @423 PRIVATE + IoRaiseHardError @424 PRIVATE + IoRaiseInformationalHardError @425 PRIVATE + IoReadDiskSignature @426 PRIVATE + IoReadOperationCount @427 PRIVATE + IoReadPartitionTableEx @428 PRIVATE + IoReadTransferCount @429 PRIVATE + IoRegisterBootDriverReinitialization @430 PRIVATE + IoRegisterDeviceInterface @431 + IoRegisterDriverReinitialization @432 + IoRegisterFileSystem @433 + IoRegisterFsRegistrationChange @434 PRIVATE + IoRegisterLastChanceShutdownNotification @435 PRIVATE + IoRegisterPlugPlayNotification @436 + IoRegisterShutdownNotification @437 + IoReleaseCancelSpinLock @438 + IoReleaseRemoveLockAndWaitEx @439 + IoReleaseRemoveLockEx @440 PRIVATE + IoReleaseVpbSpinLock @441 PRIVATE + IoRemoveShareAccess @442 PRIVATE + IoReportDetectedDevice @443 PRIVATE + IoReportHalResourceUsage @444 PRIVATE + IoReportResourceForDetection @445 + IoReportResourceUsage @446 + IoReportTargetDeviceChange @447 PRIVATE + IoReportTargetDeviceChangeAsynchronous @448 PRIVATE + IoRequestDeviceEject @449 PRIVATE + IoReuseIrp @450 PRIVATE + IoSetCompletionRoutineEx @451 PRIVATE + IoSetDeviceInterfaceState @452 + IoSetDeviceToVerify @453 PRIVATE + IoSetFileOrigin @454 PRIVATE + IoSetHardErrorOrVerifyDevice @455 PRIVATE + IoSetInformation @456 PRIVATE + IoSetIoCompletion @457 PRIVATE + IoSetPartitionInformationEx @458 PRIVATE + IoSetShareAccess @459 PRIVATE + IoSetStartIoAttributes @460 PRIVATE + IoSetSystemPartition @461 PRIVATE + IoSetThreadHardErrorMode @462 + IoSetTopLevelIrp @463 PRIVATE + IoStartNextPacket @464 + IoStartNextPacketByKey @465 PRIVATE + IoStartPacket @466 PRIVATE + IoStartTimer @467 + IoStatisticsLock @468 PRIVATE + IoStopTimer @469 + IoSynchronousInvalidateDeviceRelations @470 PRIVATE + IoSynchronousPageWrite @471 PRIVATE + IoThreadToProcess @472 PRIVATE + IoUnregisterFileSystem @473 + IoUnregisterFsRegistrationChange @474 PRIVATE + IoUnregisterPlugPlayNotification @475 + IoUnregisterShutdownNotification @476 + IoUpdateShareAccess @477 PRIVATE + IoValidateDeviceIoControlAccess @478 PRIVATE + IoVerifyPartitionTable @479 PRIVATE + IoVerifyVolume @480 PRIVATE + IoVolumeDeviceToDosName @481 PRIVATE + IoWMIAllocateInstanceIds @482 PRIVATE + IoWMIDeviceObjectToInstanceName @483 PRIVATE + IoWMIExecuteMethod @484 PRIVATE + IoWMIHandleToInstanceName @485 PRIVATE + IoWMIOpenBlock @486 + IoWMIQueryAllData @487 PRIVATE + IoWMIQueryAllDataMultiple @488 PRIVATE + IoWMIQuerySingleInstance @489 PRIVATE + IoWMIQuerySingleInstanceMultiple @490 PRIVATE + IoWMIRegistrationControl @491 + IoWMISetNotificationCallback @492 PRIVATE + IoWMISetSingleInstance @493 PRIVATE + IoWMISetSingleItem @494 PRIVATE + IoWMISuggestInstanceName @495 PRIVATE + IoWMIWriteEvent @496 PRIVATE + IoWriteErrorLogEntry @497 PRIVATE + IoWriteOperationCount @498 PRIVATE + IoWritePartitionTableEx @499 PRIVATE + IoWriteTransferCount @500 PRIVATE + KdDebuggerEnabled @501 DATA + KdDebuggerNotPresent @502 PRIVATE + KdDisableDebugger @503 PRIVATE + KdEnableDebugger @504 PRIVATE + KdEnteredDebugger @505 PRIVATE + KdPollBreakIn @506 PRIVATE + KdPowerTransition @507 PRIVATE + Ke386CallBios @508 PRIVATE + Ke386IoSetAccessProcess @509 + Ke386QueryIoAccessMap @510 PRIVATE + Ke386SetIoAccessMap @511 + KeAcquireInterruptSpinLock @512 PRIVATE + KeAcquireSpinLockAtDpcLevel @513 + KeAcquireSpinLockRaiseToDpc @514 + KeAddSystemServiceTable @515 PRIVATE + KeAreApcsDisabled @516 PRIVATE + KeAttachProcess @517 PRIVATE + KeBugCheck @518 PRIVATE + KeBugCheckEx @519 PRIVATE + KeCancelTimer @520 + KeCapturePersistentThreadState @521 PRIVATE + KeClearEvent @522 + KeConnectInterrupt @523 PRIVATE + KeDcacheFlushCount @524 PRIVATE + KeDelayExecutionThread @525 + KeDeregisterBugCheckCallback @526 PRIVATE + KeDeregisterBugCheckReasonCallback @527 PRIVATE + KeDetachProcess @528 PRIVATE + KeDisconnectInterrupt @529 PRIVATE + KeEnterCriticalRegion @530 + KeEnterKernelDebugger @531 PRIVATE + KeFindConfigurationEntry @532 PRIVATE + KeFindConfigurationNextEntry @533 PRIVATE + KeFlushEntireTb @534 PRIVATE + KeFlushQueuedDpcs @535 + KeGetCurrentThread @536 + KeGetPreviousMode @537 PRIVATE + KeGetRecommendedSharedDataAlignment @538 PRIVATE + KeI386AbiosCall @539 PRIVATE + KeI386AllocateGdtSelectors @540 PRIVATE + KeI386Call16BitCStyleFunction @541 PRIVATE + KeI386Call16BitFunction @542 PRIVATE + KeI386FlatToGdtSelector @543 PRIVATE + KeI386GetLid @544 PRIVATE + KeI386MachineType @545 PRIVATE + KeI386ReleaseGdtSelectors @546 PRIVATE + KeI386ReleaseLid @547 PRIVATE + KeI386SetGdtSelector @548 PRIVATE + KeIcacheFlushCount @549 PRIVATE + KeInitializeApc @550 PRIVATE + KeInitializeDeviceQueue @551 PRIVATE + KeInitializeDpc @552 + KeInitializeEvent @553 + KeInitializeInterrupt @554 PRIVATE + KeInitializeMutant @555 PRIVATE + KeInitializeMutex @556 + KeInitializeQueue @557 PRIVATE + KeInitializeSemaphore @558 + KeInitializeSpinLock @559 + KeInitializeTimer @560 + KeInitializeTimerEx @561 + KeInsertByKeyDeviceQueue @562 PRIVATE + KeInsertDeviceQueue @563 PRIVATE + KeInsertHeadQueue @564 PRIVATE + KeInsertQueue @565 + KeInsertQueueApc @566 PRIVATE + KeInsertQueueDpc @567 PRIVATE + KeIsAttachedProcess @568 PRIVATE + KeIsExecutingDpc @569 PRIVATE + KeLeaveCriticalRegion @570 + KeLoaderBlock @571 PRIVATE + KeNumberProcessors @572 PRIVATE + KeProfileInterrupt @573 PRIVATE + KeProfileInterruptWithSource @574 PRIVATE + KePulseEvent @575 PRIVATE + KeQueryActiveProcessors @576 + KeQueryInterruptTime @577 + KeQueryPriorityThread @578 PRIVATE + KeQueryRuntimeThread @579 PRIVATE + KeQuerySystemTime @580 + KeQueryTickCount @581 + KeQueryTimeIncrement @582 + KeRaiseUserException @583 PRIVATE + KeReadStateEvent @584 PRIVATE + KeReadStateMutant @585 PRIVATE + KeReadStateMutex @586 PRIVATE + KeReadStateQueue @587 PRIVATE + KeReadStateSemaphore @588 PRIVATE + KeReadStateTimer @589 PRIVATE + KeRegisterBugCheckCallback @590 PRIVATE + KeRegisterBugCheckReasonCallback @591 PRIVATE + KeReleaseInterruptSpinLock @592 PRIVATE + KeReleaseMutant @593 PRIVATE + KeReleaseMutex @594 + KeReleaseSemaphore @595 + KeReleaseSpinLock @596 + KeReleaseSpinLockFromDpcLevel @597 + KeRemoveByKeyDeviceQueue @598 PRIVATE + KeRemoveByKeyDeviceQueueIfBusy @599 PRIVATE + KeRemoveDeviceQueue @600 PRIVATE + KeRemoveEntryDeviceQueue @601 PRIVATE + KeRemoveQueue @602 PRIVATE + KeRemoveQueueDpc @603 PRIVATE + KeRemoveSystemServiceTable @604 PRIVATE + KeResetEvent @605 + KeRestoreFloatingPointState @606 PRIVATE + KeRevertToUserAffinityThread @607 + KeRundownQueue @608 PRIVATE + KeSaveFloatingPointState @609 PRIVATE + KeSaveStateForHibernate @610 PRIVATE + KeServiceDescriptorTable @611 DATA + KeSetAffinityThread @612 PRIVATE + KeSetBasePriorityThread @613 PRIVATE + KeSetDmaIoCoherency @614 PRIVATE + KeSetEvent @615 + KeSetEventBoostPriority @616 PRIVATE + KeSetIdealProcessorThread @617 PRIVATE + KeSetImportanceDpc @618 PRIVATE + KeSetKernelStackSwapEnable @619 PRIVATE + KeSetPriorityThread @620 + KeSetProfileIrql @621 PRIVATE + KeSetSystemAffinityThread @622 + KeSetTargetProcessorDpc @623 + KeSetTimeIncrement @624 PRIVATE + KeSetTimer @625 PRIVATE + KeSetTimerEx @626 + KeStackAttachProcess @627 PRIVATE + KeSynchronizeExecution @628 PRIVATE + KeTerminateThread @629 PRIVATE + KeTickCount @630 DATA + KeUnstackDetachProcess @631 PRIVATE + KeUpdateRunTime @632 PRIVATE + KeUpdateSystemTime @633 PRIVATE + KeUserModeCallback @634 PRIVATE + KeWaitForMultipleObjects @635 + KeWaitForMutexObject @636 + KeWaitForSingleObject @637 + KiBugCheckData @638 PRIVATE + KiCoprocessorError @639 PRIVATE + KiDeliverApc @640 PRIVATE + KiDispatchInterrupt @641 PRIVATE + KiEnableTimerWatchdog @642 PRIVATE + KiIpiServiceRoutine @643 PRIVATE + KiUnexpectedInterrupt @644 PRIVATE + LdrAccessResource @645 + LdrEnumResources @646 PRIVATE + LdrFindResourceDirectory_U @647 + LdrFindResource_U @648 + LpcPortObjectType @649 PRIVATE + LpcRequestPort @650 PRIVATE + LpcRequestWaitReplyPort @651 PRIVATE + LsaCallAuthenticationPackage @652 PRIVATE + LsaDeregisterLogonProcess @653 PRIVATE + LsaFreeReturnBuffer @654 PRIVATE + LsaLogonUser @655 PRIVATE + LsaLookupAuthenticationPackage @656 PRIVATE + LsaRegisterLogonProcess @657 PRIVATE + Mm64BitPhysicalAddress @658 PRIVATE + MmAddPhysicalMemory @659 PRIVATE + MmAddVerifierThunks @660 PRIVATE + MmAdjustWorkingSetSize @661 PRIVATE + MmAdvanceMdl @662 PRIVATE + MmAllocateContiguousMemory @663 + MmAllocateContiguousMemorySpecifyCache @664 + MmAllocateMappingAddress @665 PRIVATE + MmAllocateNonCachedMemory @666 + MmAllocatePagesForMdl @667 + MmBuildMdlForNonPagedPool @668 + MmCanFileBeTruncated @669 PRIVATE + MmCommitSessionMappedView @670 PRIVATE + MmCopyVirtualMemory @671 + MmCreateMdl @672 PRIVATE + MmCreateSection @673 + MmDisableModifiedWriteOfSection @674 PRIVATE + MmFlushImageSection @675 PRIVATE + MmForceSectionClosed @676 PRIVATE + MmFreeContiguousMemory @677 PRIVATE + MmFreeContiguousMemorySpecifyCache @678 PRIVATE + MmFreeMappingAddress @679 PRIVATE + MmFreeNonCachedMemory @680 + MmFreePagesFromMdl @681 PRIVATE + MmGetPhysicalAddress @682 PRIVATE + MmGetPhysicalMemoryRanges @683 PRIVATE + MmGetSystemRoutineAddress @684 + MmGetVirtualForPhysical @685 PRIVATE + MmGrowKernelStack @686 PRIVATE + MmHighestUserAddress @687 PRIVATE + MmIsAddressValid @688 + MmIsDriverVerifying @689 PRIVATE + MmIsNonPagedSystemAddressValid @690 PRIVATE + MmIsRecursiveIoFault @691 PRIVATE + MmIsThisAnNtAsSystem @692 PRIVATE + MmIsVerifierEnabled @693 PRIVATE + MmLockPagableDataSection @694 PRIVATE + MmLockPagableImageSection @695 PRIVATE + MmLockPagableSectionByHandle @696 + MmMapIoSpace @697 + MmMapLockedPages @698 + MmMapLockedPagesSpecifyCache @699 + MmMapLockedPagesWithReservedMapping @700 PRIVATE + MmMapMemoryDumpMdl @701 PRIVATE + MmMapUserAddressesToPage @702 PRIVATE + MmMapVideoDisplay @703 PRIVATE + MmMapViewInSessionSpace @704 PRIVATE + MmMapViewInSystemSpace @705 PRIVATE + MmMapViewOfSection @706 PRIVATE + MmMarkPhysicalMemoryAsBad @707 PRIVATE + MmMarkPhysicalMemoryAsGood @708 PRIVATE + MmPageEntireDriver @709 + MmPrefetchPages @710 PRIVATE + MmProbeAndLockPages @711 + MmProbeAndLockProcessPages @712 PRIVATE + MmProbeAndLockSelectedPages @713 PRIVATE + MmProtectMdlSystemAddress @714 PRIVATE + MmQuerySystemSize @715 + MmRemovePhysicalMemory @716 PRIVATE + MmResetDriverPaging @717 + MmSectionObjectType @718 PRIVATE + MmSecureVirtualMemory @719 PRIVATE + MmSetAddressRangeModified @720 PRIVATE + MmSetBankedSection @721 PRIVATE + MmSizeOfMdl @722 PRIVATE + MmSystemRangeStart @723 PRIVATE + MmTrimAllSystemPagableMemory @724 PRIVATE + MmUnlockPagableImageSection @725 + MmUnlockPages @726 + MmUnmapIoSpace @727 + MmUnmapLockedPages @728 + MmUnmapReservedMapping @729 PRIVATE + MmUnmapVideoDisplay @730 PRIVATE + MmUnmapViewInSessionSpace @731 PRIVATE + MmUnmapViewInSystemSpace @732 PRIVATE + MmUnmapViewOfSection @733 PRIVATE + MmUnsecureVirtualMemory @734 PRIVATE + MmUserProbeAddress @735 PRIVATE + NlsAnsiCodePage=ntdll.NlsAnsiCodePage @736 DATA + NlsLeadByteInfo @737 PRIVATE + NlsMbCodePageTag=ntdll.NlsMbCodePageTag @738 DATA + NlsMbOemCodePageTag=ntdll.NlsMbOemCodePageTag @739 DATA + NlsOemCodePage @740 PRIVATE + NlsOemLeadByteInfo @741 PRIVATE + NtAddAtom @742 + NtAdjustPrivilegesToken @743 + NtAllocateLocallyUniqueId @744 + NtAllocateUuids @745 + NtAllocateVirtualMemory @746 + NtBuildNumber @747 DATA + NtClose @748 + NtConnectPort @749 + NtCreateEvent @750 + NtCreateFile @751 + NtCreateSection @752 + NtDeleteAtom @753 + NtDeleteFile @754 + NtDeviceIoControlFile @755 + NtDuplicateObject @756 + NtDuplicateToken @757 + NtFindAtom @758 + NtFreeVirtualMemory @759 + NtFsControlFile @760 + NtGlobalFlag @761 PRIVATE + NtLockFile @762 + NtMakePermanentObject @763 PRIVATE + NtMapViewOfSection @764 + NtNotifyChangeDirectoryFile @765 + NtOpenFile @766 + NtOpenProcess @767 + NtOpenProcessToken @768 + NtOpenProcessTokenEx @769 + NtOpenThread @770 + NtOpenThreadToken @771 + NtOpenThreadTokenEx @772 + NtQueryDirectoryFile @773 + NtQueryEaFile @774 + NtQueryInformationAtom @775 + NtQueryInformationFile @776 + NtQueryInformationProcess @777 + NtQueryInformationThread @778 + NtQueryInformationToken @779 + NtQueryQuotaInformationFile @780 PRIVATE + NtQuerySecurityObject @781 + NtQuerySystemInformation @782 + NtQueryVolumeInformationFile @783 + NtReadFile @784 + NtRequestPort @785 PRIVATE + NtRequestWaitReplyPort @786 + NtSetEaFile @787 + NtSetEvent @788 + NtSetInformationFile @789 + NtSetInformationProcess @790 + NtSetInformationThread @791 + NtSetQuotaInformationFile @792 PRIVATE + NtSetSecurityObject @793 + NtSetVolumeInformationFile @794 + NtShutdownSystem @795 + NtTraceEvent @796 PRIVATE + NtUnlockFile @797 + NtVdmControl @798 PRIVATE + NtWaitForSingleObject @799 + NtWriteFile @800 + ObAssignSecurity @801 PRIVATE + ObCheckCreateObjectAccess @802 PRIVATE + ObCheckObjectAccess @803 PRIVATE + ObCloseHandle @804 PRIVATE + ObCreateObject @805 PRIVATE + ObCreateObjectType @806 PRIVATE + ObDereferenceObject @807 + ObDereferenceSecurityDescriptor @808 PRIVATE + ObFindHandleForObject @809 PRIVATE + ObGetFilterVersion @810 + ObGetObjectSecurity @811 PRIVATE + ObGetObjectType @812 + ObInsertObject @813 PRIVATE + ObLogSecurityDescriptor @814 PRIVATE + ObMakeTemporaryObject @815 PRIVATE + ObOpenObjectByName @816 PRIVATE + ObOpenObjectByPointer @817 PRIVATE + ObQueryNameString @818 + ObQueryObjectAuditingByHandle @819 PRIVATE + ObReferenceObjectByHandle @820 + ObReferenceObjectByName @821 + ObReferenceObjectByPointer @822 + ObReferenceSecurityDescriptor @823 PRIVATE + ObRegisterCallbacks @824 + ObReleaseObjectSecurity @825 PRIVATE + ObSetHandleAttributes @826 PRIVATE + ObSetSecurityDescriptorInfo @827 PRIVATE + ObSetSecurityObjectByPointer @828 PRIVATE + ObUnRegisterCallbacks @829 + PfxFindPrefix @830 PRIVATE + PfxInitialize @831 PRIVATE + PfxInsertPrefix @832 PRIVATE + PfxRemovePrefix @833 PRIVATE + PoCallDriver @834 PRIVATE + PoCancelDeviceNotify @835 PRIVATE + PoQueueShutdownWorkItem @836 PRIVATE + PoRegisterDeviceForIdleDetection @837 PRIVATE + PoRegisterDeviceNotify @838 PRIVATE + PoRegisterSystemState @839 PRIVATE + PoRequestPowerIrp @840 PRIVATE + PoRequestShutdownEvent @841 PRIVATE + PoSetHiberRange @842 PRIVATE + PoSetPowerState @843 + PoSetSystemState @844 PRIVATE + PoShutdownBugCheck @845 PRIVATE + PoStartNextPowerIrp @846 PRIVATE + PoUnregisterSystemState @847 PRIVATE + ProbeForRead @848 + ProbeForWrite @849 + PsAcquireProcessExitSynchronization @850 + PsAssignImpersonationToken @851 PRIVATE + PsChargePoolQuota @852 PRIVATE + PsChargeProcessNonPagedPoolQuota @853 PRIVATE + PsChargeProcessPagedPoolQuota @854 PRIVATE + PsChargeProcessPoolQuota @855 PRIVATE + PsCreateSystemProcess @856 PRIVATE + PsCreateSystemThread @857 + PsDereferenceImpersonationToken @858 PRIVATE + PsDereferencePrimaryToken @859 PRIVATE + PsDisableImpersonation @860 PRIVATE + PsEstablishWin32Callouts @861 PRIVATE + PsGetContextThread @862 PRIVATE + PsGetCurrentProcess=IoGetCurrentProcess @863 + PsGetCurrentProcessId @864 + PsGetCurrentProcessSessionId @865 PRIVATE + PsGetCurrentThread=KeGetCurrentThread @866 + PsGetCurrentThreadId @867 + PsGetCurrentThreadPreviousMode @868 PRIVATE + PsGetCurrentThreadStackBase @869 PRIVATE + PsGetCurrentThreadStackLimit @870 PRIVATE + PsGetJobLock @871 PRIVATE + PsGetJobSessionId @872 PRIVATE + PsGetJobUIRestrictionsClass @873 PRIVATE + PsGetProcessCreateTimeQuadPart @874 PRIVATE + PsGetProcessDebugPort @875 PRIVATE + PsGetProcessExitProcessCalled @876 PRIVATE + PsGetProcessExitStatus @877 PRIVATE + PsGetProcessExitTime @878 PRIVATE + PsGetProcessId @879 + PsGetProcessImageFileName @880 PRIVATE + PsGetProcessInheritedFromUniqueProcessId @881 PRIVATE + PsGetProcessJob @882 PRIVATE + PsGetProcessPeb @883 PRIVATE + PsGetProcessPriorityClass @884 PRIVATE + PsGetProcessSectionBaseAddress @885 PRIVATE + PsGetProcessSecurityPort @886 PRIVATE + PsGetProcessSessionId @887 PRIVATE + PsGetProcessWin32Process @888 PRIVATE + PsGetProcessWin32WindowStation @889 PRIVATE + PsGetProcessWow64Process @890 + PsGetThreadFreezeCount @891 PRIVATE + PsGetThreadHardErrorsAreDisabled @892 PRIVATE + PsGetThreadId @893 PRIVATE + PsGetThreadProcess @894 PRIVATE + PsGetThreadProcessId @895 PRIVATE + PsGetThreadSessionId @896 PRIVATE + PsGetThreadTeb @897 PRIVATE + PsGetThreadWin32Thread @898 PRIVATE + PsGetVersion @899 + PsImpersonateClient @900 + PsInitialSystemProcess @901 PRIVATE + PsIsProcessBeingDebugged @902 PRIVATE + PsIsSystemThread @903 PRIVATE + PsIsThreadImpersonating @904 PRIVATE + PsIsThreadTerminating @905 PRIVATE + PsJobType @906 PRIVATE + PsLookupProcessByProcessId @907 + PsLookupProcessThreadByCid @908 PRIVATE + PsLookupThreadByThreadId @909 PRIVATE + PsProcessType @910 DATA + PsReferenceImpersonationToken @911 PRIVATE + PsReferencePrimaryToken @912 PRIVATE + PsReferenceProcessFilePointer @913 + PsReleaseProcessExitSynchronization @914 + PsRemoveCreateThreadNotifyRoutine @915 + PsRemoveLoadImageNotifyRoutine @916 + PsRestoreImpersonation @917 PRIVATE + PsResumeProcess @918 + PsReturnPoolQuota @919 PRIVATE + PsReturnProcessNonPagedPoolQuota @920 PRIVATE + PsReturnProcessPagedPoolQuota @921 PRIVATE + PsRevertThreadToSelf @922 PRIVATE + PsRevertToSelf @923 + PsSetContextThread @924 PRIVATE + PsSetCreateProcessNotifyRoutine @925 + PsSetCreateProcessNotifyRoutineEx @926 + PsSetCreateThreadNotifyRoutine @927 + PsSetJobUIRestrictionsClass @928 PRIVATE + PsSetLegoNotifyRoutine @929 PRIVATE + PsSetLoadImageNotifyRoutine @930 + PsSetProcessPriorityByClass @931 PRIVATE + PsSetProcessPriorityClass @932 PRIVATE + PsSetProcessSecurityPort @933 PRIVATE + PsSetProcessWin32Process @934 PRIVATE + PsSetProcessWindowStation @935 PRIVATE + PsSetThreadHardErrorsAreDisabled @936 PRIVATE + PsSetThreadWin32Thread @937 PRIVATE + PsSuspendProcess @938 + PsTerminateSystemThread @939 + PsThreadType @940 DATA + READ_REGISTER_BUFFER_UCHAR @941 + READ_REGISTER_BUFFER_ULONG @942 PRIVATE + READ_REGISTER_BUFFER_USHORT @943 PRIVATE + READ_REGISTER_UCHAR @944 PRIVATE + READ_REGISTER_ULONG @945 PRIVATE + READ_REGISTER_USHORT @946 PRIVATE + RtlAbsoluteToSelfRelativeSD @947 + RtlAddAccessAllowedAce @948 + RtlAddAccessAllowedAceEx @949 + RtlAddAce @950 + RtlAddAtomToAtomTable @951 + RtlAddRange @952 PRIVATE + RtlAllocateHeap @953 + RtlAnsiCharToUnicodeChar @954 + RtlAnsiStringToUnicodeSize @955 + RtlAnsiStringToUnicodeString @956 + RtlAppendAsciizToString @957 + RtlAppendStringToString @958 + RtlAppendUnicodeStringToString @959 + RtlAppendUnicodeToString @960 + RtlAreAllAccessesGranted @961 + RtlAreAnyAccessesGranted @962 + RtlAreBitsClear @963 + RtlAreBitsSet @964 + RtlAssert @965 + RtlCaptureContext @966 + RtlCaptureStackBackTrace @967 + RtlCharToInteger @968 + RtlCheckRegistryKey @969 + RtlClearAllBits @970 + RtlClearBit @971 PRIVATE + RtlClearBits @972 + RtlCompareMemory @973 + RtlCompareMemoryUlong @974 + RtlCompareString @975 + RtlCompareUnicodeString @976 + RtlCompressBuffer @977 + RtlCompressChunks @978 PRIVATE + RtlConvertSidToUnicodeString @979 + RtlCopyLuid @980 + RtlCopyMemory @981 + RtlCopyRangeList @982 PRIVATE + RtlCopySid @983 + RtlCopyString @984 + RtlCopyUnicodeString @985 + RtlCreateAcl @986 + RtlCreateAtomTable @987 + RtlCreateHeap @988 + RtlCreateRegistryKey @989 + RtlCreateSecurityDescriptor @990 + RtlCreateSystemVolumeInformationFolder @991 PRIVATE + RtlCreateUnicodeString @992 + RtlCustomCPToUnicodeN @993 PRIVATE + RtlDecompressBuffer @994 + RtlDecompressChunks @995 PRIVATE + RtlDecompressFragment @996 + RtlDelete @997 PRIVATE + RtlDeleteAce @998 + RtlDeleteAtomFromAtomTable @999 + RtlDeleteElementGenericTable @1000 PRIVATE + RtlDeleteElementGenericTableAvl @1001 PRIVATE + RtlDeleteNoSplay @1002 PRIVATE + RtlDeleteOwnersRanges @1003 PRIVATE + RtlDeleteRange @1004 PRIVATE + RtlDeleteRegistryValue @1005 + RtlDescribeChunk @1006 PRIVATE + RtlDestroyAtomTable @1007 + RtlDestroyHeap @1008 + RtlDowncaseUnicodeString @1009 + RtlEmptyAtomTable @1010 + RtlEnumerateGenericTable @1011 PRIVATE + RtlEnumerateGenericTableAvl @1012 PRIVATE + RtlEnumerateGenericTableLikeADirectory @1013 PRIVATE + RtlEnumerateGenericTableWithoutSplaying @1014 + RtlEnumerateGenericTableWithoutSplayingAvl @1015 PRIVATE + RtlEqualLuid @1016 + RtlEqualSid @1017 + RtlEqualString @1018 + RtlEqualUnicodeString @1019 + RtlFillMemory @1020 + RtlFillMemoryUlong @1021 + RtlFindClearBits @1022 + RtlFindClearBitsAndSet @1023 + RtlFindClearRuns @1024 + RtlFindFirstRunClear @1025 PRIVATE + RtlFindLastBackwardRunClear @1026 + RtlFindLeastSignificantBit @1027 + RtlFindLongestRunClear @1028 + RtlFindMessage @1029 + RtlFindMostSignificantBit @1030 + RtlFindNextForwardRunClear @1031 + RtlFindRange @1032 PRIVATE + RtlFindSetBits @1033 + RtlFindSetBitsAndClear @1034 + RtlFindUnicodePrefix @1035 PRIVATE + RtlFormatCurrentUserKeyPath @1036 + RtlFreeAnsiString @1037 + RtlFreeHeap @1038 + RtlFreeOemString @1039 + RtlFreeRangeList @1040 PRIVATE + RtlFreeUnicodeString @1041 + RtlGUIDFromString @1042 + RtlGenerate8dot3Name @1043 PRIVATE + RtlGetAce @1044 + RtlGetCallersAddress @1045 PRIVATE + RtlGetCompressionWorkSpaceSize @1046 + RtlGetDaclSecurityDescriptor @1047 + RtlGetDefaultCodePage @1048 PRIVATE + RtlGetElementGenericTable @1049 PRIVATE + RtlGetElementGenericTableAvl @1050 PRIVATE + RtlGetFirstRange @1051 PRIVATE + RtlGetGroupSecurityDescriptor @1052 + RtlGetNextRange @1053 PRIVATE + RtlGetNtGlobalFlags @1054 + RtlGetOwnerSecurityDescriptor @1055 + RtlGetSaclSecurityDescriptor @1056 + RtlGetSetBootStatusData @1057 PRIVATE + RtlGetVersion @1058 + RtlHashUnicodeString @1059 + RtlImageDirectoryEntryToData @1060 + RtlImageNtHeader @1061 + RtlInitAnsiString @1062 + RtlInitCodePageTable @1063 PRIVATE + RtlInitString @1064 + RtlInitUnicodeString @1065 + RtlInitializeBitMap @1066 + RtlInitializeGenericTable @1067 + RtlInitializeGenericTableAvl @1068 + RtlInitializeRangeList @1069 PRIVATE + RtlInitializeSid @1070 + RtlInitializeUnicodePrefix @1071 PRIVATE + RtlInsertElementGenericTable @1072 PRIVATE + RtlInsertElementGenericTableAvl @1073 + RtlInsertElementGenericTableFull @1074 PRIVATE + RtlInsertElementGenericTableFullAvl @1075 PRIVATE + RtlInsertUnicodePrefix @1076 PRIVATE + RtlInt64ToUnicodeString @1077 + RtlIntegerToChar @1078 + RtlIntegerToUnicode @1079 PRIVATE + RtlIntegerToUnicodeString @1080 + RtlInvertRangeList @1081 PRIVATE + RtlIpv4AddressToStringA @1082 + RtlIpv4AddressToStringExA @1083 + RtlIpv4AddressToStringExW @1084 + RtlIpv4AddressToStringW @1085 + RtlIpv4StringToAddressA @1086 PRIVATE + RtlIpv4StringToAddressExA @1087 PRIVATE + RtlIpv4StringToAddressExW @1088 + RtlIpv4StringToAddressW @1089 + RtlIpv6AddressToStringA @1090 PRIVATE + RtlIpv6AddressToStringExA @1091 PRIVATE + RtlIpv6AddressToStringExW @1092 PRIVATE + RtlIpv6AddressToStringW @1093 PRIVATE + RtlIpv6StringToAddressA @1094 PRIVATE + RtlIpv6StringToAddressExA @1095 PRIVATE + RtlIpv6StringToAddressExW @1096 + RtlIpv6StringToAddressW @1097 PRIVATE + RtlIsGenericTableEmpty @1098 PRIVATE + RtlIsGenericTableEmptyAvl @1099 PRIVATE + RtlIsNameLegalDOS8Dot3 @1100 + RtlIsRangeAvailable @1101 PRIVATE + RtlIsValidOemCharacter @1102 PRIVATE + RtlLengthRequiredSid @1103 + RtlLengthSecurityDescriptor @1104 + RtlLengthSid @1105 + RtlLockBootStatusData @1106 PRIVATE + RtlLookupAtomInAtomTable @1107 + RtlLookupElementGenericTable @1108 PRIVATE + RtlLookupElementGenericTableAvl @1109 PRIVATE + RtlLookupElementGenericTableFull @1110 PRIVATE + RtlLookupElementGenericTableFullAvl @1111 PRIVATE + RtlMapGenericMask @1112 + RtlMapSecurityErrorToNtStatus @1113 PRIVATE + RtlMergeRangeLists @1114 PRIVATE + RtlMoveMemory @1115 + RtlMultiByteToUnicodeN @1116 + RtlMultiByteToUnicodeSize @1117 + RtlNextUnicodePrefix @1118 PRIVATE + RtlNtStatusToDosError @1119 + RtlNtStatusToDosErrorNoTeb @1120 + RtlNumberGenericTableElements @1121 + RtlNumberGenericTableElementsAvl @1122 PRIVATE + RtlNumberOfClearBits @1123 + RtlNumberOfSetBits @1124 + RtlOemStringToCountedUnicodeString @1125 PRIVATE + RtlOemStringToUnicodeSize @1126 + RtlOemStringToUnicodeString @1127 + RtlOemToUnicodeN @1128 + RtlPinAtomInAtomTable @1129 + RtlPrefixString @1130 + RtlPrefixUnicodeString @1131 + RtlQueryAtomInAtomTable @1132 + RtlQueryRegistryValues @1133 + RtlQueryTimeZoneInformation @1134 + RtlRaiseException @1135 + RtlRandom @1136 + RtlRandomEx @1137 + RtlRealPredecessor @1138 PRIVATE + RtlRealSuccessor @1139 PRIVATE + RtlRemoveUnicodePrefix @1140 PRIVATE + RtlReserveChunk @1141 PRIVATE + RtlSecondsSince1970ToTime @1142 + RtlSecondsSince1980ToTime @1143 + RtlSelfRelativeToAbsoluteSD2 @1144 PRIVATE + RtlSelfRelativeToAbsoluteSD @1145 + RtlSetAllBits @1146 + RtlSetBit @1147 PRIVATE + RtlSetBits @1148 + RtlSetDaclSecurityDescriptor @1149 + RtlSetGroupSecurityDescriptor @1150 + RtlSetOwnerSecurityDescriptor @1151 + RtlSetSaclSecurityDescriptor @1152 + RtlSetTimeZoneInformation @1153 + RtlSizeHeap @1154 + RtlSplay @1155 PRIVATE + RtlStringFromGUID @1156 + RtlSubAuthorityCountSid @1157 + RtlSubAuthoritySid @1158 + RtlSubtreePredecessor @1159 PRIVATE + RtlSubtreeSuccessor @1160 PRIVATE + RtlTestBit @1161 PRIVATE + RtlTimeFieldsToTime @1162 + RtlTimeToElapsedTimeFields @1163 + RtlTimeToSecondsSince1970 @1164 + RtlTimeToSecondsSince1980 @1165 + RtlTimeToTimeFields @1166 + RtlTraceDatabaseAdd @1167 PRIVATE + RtlTraceDatabaseCreate @1168 PRIVATE + RtlTraceDatabaseDestroy @1169 PRIVATE + RtlTraceDatabaseEnumerate @1170 PRIVATE + RtlTraceDatabaseFind @1171 PRIVATE + RtlTraceDatabaseLock @1172 PRIVATE + RtlTraceDatabaseUnlock @1173 PRIVATE + RtlTraceDatabaseValidate @1174 PRIVATE + RtlUnicodeStringToAnsiSize @1175 + RtlUnicodeStringToAnsiString @1176 + RtlUnicodeStringToCountedOemString @1177 PRIVATE + RtlUnicodeStringToInteger @1178 + RtlUnicodeStringToOemSize @1179 + RtlUnicodeStringToOemString @1180 + RtlUnicodeToCustomCPN @1181 PRIVATE + RtlUnicodeToMultiByteN @1182 + RtlUnicodeToMultiByteSize @1183 + RtlUnicodeToOemN @1184 + RtlUnlockBootStatusData @1185 PRIVATE + RtlUnwind @1186 + RtlUnwindEx @1187 + RtlUpcaseUnicodeChar @1188 + RtlUpcaseUnicodeString @1189 + RtlUpcaseUnicodeStringToAnsiString @1190 + RtlUpcaseUnicodeStringToCountedOemString @1191 + RtlUpcaseUnicodeStringToOemString @1192 + RtlUpcaseUnicodeToCustomCPN @1193 PRIVATE + RtlUpcaseUnicodeToMultiByteN @1194 + RtlUpcaseUnicodeToOemN @1195 + RtlUpperChar @1196 + RtlUpperString @1197 + RtlValidRelativeSecurityDescriptor @1198 + RtlValidSecurityDescriptor @1199 + RtlValidSid @1200 + RtlVerifyVersionInfo @1201 + RtlVolumeDeviceToDosName @1202 PRIVATE + RtlWalkFrameChain @1203 PRIVATE + RtlWriteRegistryValue @1204 + RtlZeroHeap @1205 PRIVATE + RtlZeroMemory @1206 + RtlxAnsiStringToUnicodeSize @1207 + RtlxOemStringToUnicodeSize @1208 + RtlxUnicodeStringToAnsiSize @1209 + RtlxUnicodeStringToOemSize @1210 + SeAccessCheck @1211 PRIVATE + SeAppendPrivileges @1212 PRIVATE + SeAssignSecurity @1213 PRIVATE + SeAssignSecurityEx @1214 PRIVATE + SeAuditHardLinkCreation @1215 PRIVATE + SeAuditingFileEvents @1216 PRIVATE + SeAuditingFileEventsWithContext @1217 PRIVATE + SeAuditingFileOrGlobalEvents @1218 PRIVATE + SeAuditingHardLinkEvents @1219 PRIVATE + SeAuditingHardLinkEventsWithContext @1220 PRIVATE + SeCaptureSecurityDescriptor @1221 PRIVATE + SeCaptureSubjectContext @1222 PRIVATE + SeCloseObjectAuditAlarm @1223 PRIVATE + SeCreateAccessState @1224 PRIVATE + SeCreateClientSecurity @1225 PRIVATE + SeCreateClientSecurityFromSubjectContext @1226 PRIVATE + SeDeassignSecurity @1227 PRIVATE + SeDeleteAccessState @1228 PRIVATE + SeDeleteObjectAuditAlarm @1229 PRIVATE + SeExports @1230 PRIVATE + SeFilterToken @1231 PRIVATE + SeFreePrivileges @1232 PRIVATE + SeImpersonateClient @1233 PRIVATE + SeImpersonateClientEx @1234 PRIVATE + SeLockSubjectContext @1235 PRIVATE + SeMarkLogonSessionForTerminationNotification @1236 PRIVATE + SeOpenObjectAuditAlarm @1237 PRIVATE + SeOpenObjectForDeleteAuditAlarm @1238 PRIVATE + SePrivilegeCheck @1239 PRIVATE + SePrivilegeObjectAuditAlarm @1240 PRIVATE + SePublicDefaultDacl @1241 PRIVATE + SeQueryAuthenticationIdToken @1242 PRIVATE + SeQueryInformationToken @1243 PRIVATE + SeQuerySecurityDescriptorInfo @1244 PRIVATE + SeQuerySessionIdToken @1245 PRIVATE + SeRegisterLogonSessionTerminatedRoutine @1246 PRIVATE + SeReleaseSecurityDescriptor @1247 PRIVATE + SeReleaseSubjectContext @1248 PRIVATE + SeSetAccessStateGenericMapping @1249 PRIVATE + SeSetSecurityDescriptorInfo @1250 PRIVATE + SeSetSecurityDescriptorInfoEx @1251 PRIVATE + SeSinglePrivilegeCheck @1252 + SeSystemDefaultDacl @1253 PRIVATE + SeTokenImpersonationLevel @1254 PRIVATE + SeTokenIsAdmin @1255 PRIVATE + SeTokenIsRestricted @1256 PRIVATE + SeTokenIsWriteRestricted @1257 PRIVATE + SeTokenObjectType @1258 DATA + SeTokenType @1259 PRIVATE + SeUnlockSubjectContext @1260 PRIVATE + SeUnregisterLogonSessionTerminatedRoutine @1261 PRIVATE + SeValidSecurityDescriptor @1262 PRIVATE + VerSetConditionMask @1263 + VfFailDeviceNode @1264 PRIVATE + VfFailDriver @1265 PRIVATE + VfFailSystemBIOS @1266 PRIVATE + VfIsVerificationEnabled @1267 PRIVATE + WRITE_REGISTER_BUFFER_UCHAR @1268 PRIVATE + WRITE_REGISTER_BUFFER_ULONG @1269 PRIVATE + WRITE_REGISTER_BUFFER_USHORT @1270 PRIVATE + WRITE_REGISTER_UCHAR @1271 PRIVATE + WRITE_REGISTER_ULONG @1272 PRIVATE + WRITE_REGISTER_USHORT @1273 PRIVATE + WmiFlushTrace @1274 PRIVATE + WmiQueryTrace @1275 PRIVATE + WmiQueryTraceInformation @1276 PRIVATE + WmiStartTrace @1277 PRIVATE + WmiStopTrace @1278 PRIVATE + WmiTraceMessage @1279 PRIVATE + WmiTraceMessageVa @1280 PRIVATE + WmiUpdateTrace @1281 PRIVATE + XIPDispatch @1282 PRIVATE + ZwAccessCheckAndAuditAlarm=NtAccessCheckAndAuditAlarm @1283 PRIVATE + ZwAddBootEntry @1284 PRIVATE + ZwAdjustPrivilegesToken=NtAdjustPrivilegesToken @1285 PRIVATE + ZwAlertThread=NtAlertThread @1286 PRIVATE + ZwAllocateVirtualMemory=NtAllocateVirtualMemory @1287 PRIVATE + ZwAssignProcessToJobObject=NtAssignProcessToJobObject @1288 PRIVATE + ZwCancelIoFile=NtCancelIoFile @1289 PRIVATE + ZwCancelTimer=NtCancelTimer @1290 PRIVATE + ZwClearEvent=NtClearEvent @1291 PRIVATE + ZwClose=NtClose @1292 + ZwCloseObjectAuditAlarm @1293 PRIVATE + ZwConnectPort=NtConnectPort @1294 PRIVATE + ZwCreateDirectoryObject=NtCreateDirectoryObject @1295 PRIVATE + ZwCreateEvent=NtCreateEvent @1296 + ZwCreateFile=NtCreateFile @1297 + ZwCreateJobObject=NtCreateJobObject @1298 PRIVATE + ZwCreateKey=NtCreateKey @1299 PRIVATE + ZwCreateSection=NtCreateSection @1300 PRIVATE + ZwCreateSymbolicLinkObject=NtCreateSymbolicLinkObject @1301 PRIVATE + ZwCreateTimer=NtCreateTimer @1302 PRIVATE + ZwDeleteBootEntry @1303 PRIVATE + ZwDeleteFile=NtDeleteFile @1304 PRIVATE + ZwDeleteKey=NtDeleteKey @1305 PRIVATE + ZwDeleteValueKey=NtDeleteValueKey @1306 PRIVATE + ZwDeviceIoControlFile=NtDeviceIoControlFile @1307 PRIVATE + ZwDisplayString=NtDisplayString @1308 PRIVATE + ZwDuplicateObject=NtDuplicateObject @1309 + ZwDuplicateToken=NtDuplicateToken @1310 PRIVATE + ZwEnumerateBootEntries @1311 PRIVATE + ZwEnumerateKey=NtEnumerateKey @1312 PRIVATE + ZwEnumerateValueKey=NtEnumerateValueKey @1313 PRIVATE + ZwFlushInstructionCache=NtFlushInstructionCache @1314 PRIVATE + ZwFlushKey=NtFlushKey @1315 PRIVATE + ZwFlushVirtualMemory=NtFlushVirtualMemory @1316 PRIVATE + ZwFreeVirtualMemory=NtFreeVirtualMemory @1317 PRIVATE + ZwFsControlFile=NtFsControlFile @1318 PRIVATE + ZwInitiatePowerAction=NtInitiatePowerAction @1319 PRIVATE + ZwIsProcessInJob=NtIsProcessInJob @1320 PRIVATE + ZwLoadDriver @1321 + ZwLoadKey=NtLoadKey @1322 PRIVATE + ZwMakeTemporaryObject=NtMakeTemporaryObject @1323 PRIVATE + ZwMapViewOfSection=NtMapViewOfSection @1324 PRIVATE + ZwNotifyChangeKey=NtNotifyChangeKey @1325 PRIVATE + ZwOpenDirectoryObject=NtOpenDirectoryObject @1326 PRIVATE + ZwOpenEvent=NtOpenEvent @1327 PRIVATE + ZwOpenFile=NtOpenFile @1328 + ZwOpenJobObject=NtOpenJobObject @1329 PRIVATE + ZwOpenKey=NtOpenKey @1330 PRIVATE + ZwOpenProcess=NtOpenProcess @1331 PRIVATE + ZwOpenProcessToken=NtOpenProcessToken @1332 PRIVATE + ZwOpenProcessTokenEx=NtOpenProcessTokenEx @1333 PRIVATE + ZwOpenSection=NtOpenSection @1334 PRIVATE + ZwOpenSymbolicLinkObject=NtOpenSymbolicLinkObject @1335 PRIVATE + ZwOpenThread=NtOpenThread @1336 PRIVATE + ZwOpenThreadToken=NtOpenThreadToken @1337 PRIVATE + ZwOpenThreadTokenEx=NtOpenThreadTokenEx @1338 PRIVATE + ZwOpenTimer=NtOpenTimer @1339 PRIVATE + ZwPowerInformation=NtPowerInformation @1340 PRIVATE + ZwPulseEvent=NtPulseEvent @1341 PRIVATE + ZwQueryBootEntryOrder @1342 PRIVATE + ZwQueryBootOptions @1343 PRIVATE + ZwQueryDefaultLocale=NtQueryDefaultLocale @1344 PRIVATE + ZwQueryDefaultUILanguage=NtQueryDefaultUILanguage @1345 PRIVATE + ZwQueryDirectoryFile=NtQueryDirectoryFile @1346 PRIVATE + ZwQueryDirectoryObject=NtQueryDirectoryObject @1347 PRIVATE + ZwQueryEaFile=NtQueryEaFile @1348 PRIVATE + ZwQueryFullAttributesFile=NtQueryFullAttributesFile @1349 PRIVATE + ZwQueryInformationFile=NtQueryInformationFile @1350 PRIVATE + ZwQueryInformationJobObject=NtQueryInformationJobObject @1351 PRIVATE + ZwQueryInformationProcess=NtQueryInformationProcess @1352 PRIVATE + ZwQueryInformationThread=NtQueryInformationThread @1353 PRIVATE + ZwQueryInformationToken=NtQueryInformationToken @1354 PRIVATE + ZwQueryInstallUILanguage=NtQueryInstallUILanguage @1355 PRIVATE + ZwQueryKey=NtQueryKey @1356 PRIVATE + ZwQueryObject=NtQueryObject @1357 PRIVATE + ZwQuerySection=NtQuerySection @1358 PRIVATE + ZwQuerySecurityObject=NtQuerySecurityObject @1359 PRIVATE + ZwQuerySymbolicLinkObject=NtQuerySymbolicLinkObject @1360 PRIVATE + ZwQuerySystemInformation=NtQuerySystemInformation @1361 PRIVATE + ZwQueryValueKey=NtQueryValueKey @1362 PRIVATE + ZwQueryVolumeInformationFile=NtQueryVolumeInformationFile @1363 PRIVATE + ZwReadFile=NtReadFile @1364 PRIVATE + ZwReplaceKey=NtReplaceKey @1365 PRIVATE + ZwRequestWaitReplyPort=NtRequestWaitReplyPort @1366 PRIVATE + ZwResetEvent=NtResetEvent @1367 PRIVATE + ZwRestoreKey=NtRestoreKey @1368 PRIVATE + ZwSaveKey=NtSaveKey @1369 PRIVATE + ZwSaveKeyEx @1370 PRIVATE + ZwSetBootEntryOrder @1371 PRIVATE + ZwSetBootOptions @1372 PRIVATE + ZwSetDefaultLocale=NtSetDefaultLocale @1373 PRIVATE + ZwSetDefaultUILanguage=NtSetDefaultUILanguage @1374 PRIVATE + ZwSetEaFile=NtSetEaFile @1375 PRIVATE + ZwSetEvent=NtSetEvent @1376 + ZwSetInformationFile=NtSetInformationFile @1377 PRIVATE + ZwSetInformationJobObject=NtSetInformationJobObject @1378 PRIVATE + ZwSetInformationObject=NtSetInformationObject @1379 PRIVATE + ZwSetInformationProcess=NtSetInformationProcess @1380 PRIVATE + ZwSetInformationThread=NtSetInformationThread @1381 PRIVATE + ZwSetSecurityObject=NtSetSecurityObject @1382 PRIVATE + ZwSetSystemInformation=NtSetSystemInformation @1383 PRIVATE + ZwSetSystemTime=NtSetSystemTime @1384 PRIVATE + ZwSetTimer=NtSetTimer @1385 PRIVATE + ZwSetValueKey=NtSetValueKey @1386 PRIVATE + ZwSetVolumeInformationFile=NtSetVolumeInformationFile @1387 PRIVATE + ZwTerminateJobObject=NtTerminateJobObject @1388 PRIVATE + ZwTerminateProcess=NtTerminateProcess @1389 PRIVATE + ZwTranslateFilePath @1390 PRIVATE + ZwUnloadDriver @1391 + ZwUnloadKey=NtUnloadKey @1392 PRIVATE + ZwUnmapViewOfSection=NtUnmapViewOfSection @1393 PRIVATE + ZwWaitForMultipleObjects=NtWaitForMultipleObjects @1394 PRIVATE + ZwWaitForSingleObject=NtWaitForSingleObject @1395 + ZwWriteFile=NtWriteFile @1396 + ZwYieldExecution=NtYieldExecution @1397 PRIVATE + __C_specific_handler @1398 + __chkstk @1399 PRIVATE + _abnormal_termination=msvcrt._abnormal_termination @1400 PRIVATE + _itoa=msvcrt._itoa @1401 PRIVATE + _itow=msvcrt._itow @1402 PRIVATE + _local_unwind=msvcrt._local_unwind @1403 PRIVATE + _purecall=msvcrt._purecall @1404 PRIVATE + _snprintf=msvcrt._snprintf @1405 PRIVATE + _snwprintf=msvcrt._snwprintf @1406 PRIVATE + _stricmp=NTOSKRNL__stricmp @1407 PRIVATE + _strlwr=msvcrt._strlwr @1408 PRIVATE + _strnicmp=NTOSKRNL__strnicmp @1409 PRIVATE + _strnset=msvcrt._strnset @1410 PRIVATE + _strrev=msvcrt._strrev @1411 PRIVATE + _strset=msvcrt._strset @1412 PRIVATE + _strupr=msvcrt._strupr @1413 PRIVATE + _vsnprintf=msvcrt._vsnprintf @1414 + _vsnwprintf=msvcrt._vsnwprintf @1415 PRIVATE + _wcsicmp=msvcrt._wcsicmp @1416 PRIVATE + _wcslwr=msvcrt._wcslwr @1417 PRIVATE + _wcsnicmp=NTOSKRNL__wcsnicmp @1418 PRIVATE + _wcsnset=msvcrt._wcsnset @1419 PRIVATE + _wcsrev=msvcrt._wcsrev @1420 PRIVATE + _wcsupr=msvcrt._wcsupr @1421 PRIVATE + atoi=msvcrt.atoi @1422 PRIVATE + atol=msvcrt.atol @1423 PRIVATE + isdigit=msvcrt.isdigit @1424 PRIVATE + islower=msvcrt.islower @1425 PRIVATE + isprint=msvcrt.isprint @1426 PRIVATE + isspace=msvcrt.isspace @1427 PRIVATE + isupper=msvcrt.isupper @1428 PRIVATE + isxdigit=msvcrt.isxdigit @1429 PRIVATE + mbstowcs=msvcrt.mbstowcs @1430 PRIVATE + mbtowc=msvcrt.mbtowc @1431 PRIVATE + memchr=msvcrt.memchr @1432 PRIVATE + memcpy=NTOSKRNL_memcpy @1433 PRIVATE + memmove=msvcrt.memmove @1434 PRIVATE + memset=NTOSKRNL_memset @1435 PRIVATE + qsort=msvcrt.qsort @1436 PRIVATE + rand=msvcrt.rand @1437 PRIVATE + sprintf=msvcrt.sprintf @1438 PRIVATE + srand=msvcrt.srand @1439 PRIVATE + strcat=msvcrt.strcat @1440 PRIVATE + strchr=msvcrt.strchr @1441 PRIVATE + strcmp=msvcrt.strcmp @1442 PRIVATE + strcpy=msvcrt.strcpy @1443 PRIVATE + strlen=msvcrt.strlen @1444 PRIVATE + strncat=msvcrt.strncat @1445 PRIVATE + strncmp=msvcrt.strncmp @1446 PRIVATE + strncpy=msvcrt.strncpy @1447 PRIVATE + strrchr=msvcrt.strrchr @1448 PRIVATE + strspn=msvcrt.strspn @1449 PRIVATE + strstr=msvcrt.strstr @1450 PRIVATE + swprintf=msvcrt.swprintf @1451 PRIVATE + tolower=msvcrt.tolower @1452 PRIVATE + toupper=msvcrt.toupper @1453 PRIVATE + towlower=msvcrt.towlower @1454 PRIVATE + towupper=msvcrt.towupper @1455 PRIVATE + vDbgPrintEx @1456 + vDbgPrintExWithPrefix @1457 + vsprintf=msvcrt.vsprintf @1458 PRIVATE + wcscat=msvcrt.wcscat @1459 PRIVATE + wcschr=msvcrt.wcschr @1460 PRIVATE + wcscmp=msvcrt.wcscmp @1461 PRIVATE + wcscpy=msvcrt.wcscpy @1462 PRIVATE + wcscspn=msvcrt.wcscspn @1463 PRIVATE + wcslen=msvcrt.wcslen @1464 PRIVATE + wcsncat=msvcrt.wcsncat @1465 PRIVATE + wcsncmp=NTOSKRNL_wcsncmp @1466 PRIVATE + wcsncpy=msvcrt.wcsncpy @1467 PRIVATE + wcsrchr=msvcrt.wcsrchr @1468 PRIVATE + wcsspn=msvcrt.wcsspn @1469 PRIVATE + wcsstr=msvcrt.wcsstr @1470 PRIVATE + wcstombs=msvcrt.wcstombs @1471 PRIVATE + wctomb=msvcrt.wctomb @1472 PRIVATE + wine_ntoskrnl_main_loop @1473 diff --git a/lib64/wine/libodbc32.def b/lib64/wine/libodbc32.def new file mode 100644 index 0000000..e9a9ebd --- /dev/null +++ b/lib64/wine/libodbc32.def @@ -0,0 +1,179 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/odbc32/odbc32.spec; do not edit! + +LIBRARY odbc32.dll + +EXPORTS + SQLAllocConnect=ODBC32_SQLAllocConnect @1 + SQLAllocEnv=ODBC32_SQLAllocEnv @2 + SQLAllocStmt=ODBC32_SQLAllocStmt @3 + SQLBindCol=ODBC32_SQLBindCol @4 + SQLCancel=ODBC32_SQLCancel @5 + SQLColAttributes=ODBC32_SQLColAttributes @6 + SQLConnect=ODBC32_SQLConnect @7 + SQLDescribeCol=ODBC32_SQLDescribeCol @8 + SQLDisconnect=ODBC32_SQLDisconnect @9 + SQLError=ODBC32_SQLError @10 + SQLExecDirect=ODBC32_SQLExecDirect @11 + SQLExecute=ODBC32_SQLExecute @12 + SQLFetch=ODBC32_SQLFetch @13 + SQLFreeConnect=ODBC32_SQLFreeConnect @14 + SQLFreeEnv=ODBC32_SQLFreeEnv @15 + SQLFreeStmt=ODBC32_SQLFreeStmt @16 + SQLGetCursorName=ODBC32_SQLGetCursorName @17 + SQLNumResultCols=ODBC32_SQLNumResultCols @18 + SQLPrepare=ODBC32_SQLPrepare @19 + SQLRowCount=ODBC32_SQLRowCount @20 + SQLSetCursorName=ODBC32_SQLSetCursorName @21 + SQLSetParam=ODBC32_SQLSetParam @22 + SQLTransact=ODBC32_SQLTransact @23 + SQLAllocHandle=ODBC32_SQLAllocHandle @24 + SQLBindParam=ODBC32_SQLBindParam @25 + SQLCloseCursor=ODBC32_SQLCloseCursor @26 + SQLColAttribute=ODBC32_SQLColAttribute @27 + SQLCopyDesc=ODBC32_SQLCopyDesc @28 + SQLEndTran=ODBC32_SQLEndTran @29 + SQLFetchScroll=ODBC32_SQLFetchScroll @30 + SQLFreeHandle=ODBC32_SQLFreeHandle @31 + SQLGetConnectAttr=ODBC32_SQLGetConnectAttr @32 + SQLGetDescField=ODBC32_SQLGetDescField @33 + SQLGetDescRec=ODBC32_SQLGetDescRec @34 + SQLGetDiagField=ODBC32_SQLGetDiagField @35 + SQLGetDiagRec=ODBC32_SQLGetDiagRec @36 + SQLGetEnvAttr=ODBC32_SQLGetEnvAttr @37 + SQLGetStmtAttr=ODBC32_SQLGetStmtAttr @38 + SQLSetConnectAttr=ODBC32_SQLSetConnectAttr @39 + SQLColumns=ODBC32_SQLColumns @40 + SQLDriverConnect=ODBC32_SQLDriverConnect @41 + SQLGetConnectOption=ODBC32_SQLGetConnectOption @42 + SQLGetData=ODBC32_SQLGetData @43 + SQLGetFunctions=ODBC32_SQLGetFunctions @44 + SQLGetInfo=ODBC32_SQLGetInfo @45 + SQLGetStmtOption=ODBC32_SQLGetStmtOption @46 + SQLGetTypeInfo=ODBC32_SQLGetTypeInfo @47 + SQLParamData=ODBC32_SQLParamData @48 + SQLPutData=ODBC32_SQLPutData @49 + SQLSetConnectOption=ODBC32_SQLSetConnectOption @50 + SQLSetStmtOption=ODBC32_SQLSetStmtOption @51 + SQLSpecialColumns=ODBC32_SQLSpecialColumns @52 + SQLStatistics=ODBC32_SQLStatistics @53 + SQLTables=ODBC32_SQLTables @54 + SQLBrowseConnect=ODBC32_SQLBrowseConnect @55 + SQLColumnPrivileges=ODBC32_SQLColumnPrivileges @56 + SQLDataSources=ODBC32_SQLDataSources @57 + SQLDescribeParam=ODBC32_SQLDescribeParam @58 + SQLExtendedFetch=ODBC32_SQLExtendedFetch @59 + SQLForeignKeys=ODBC32_SQLForeignKeys @60 + SQLMoreResults=ODBC32_SQLMoreResults @61 + SQLNativeSql=ODBC32_SQLNativeSql @62 + SQLNumParams=ODBC32_SQLNumParams @63 + SQLParamOptions=ODBC32_SQLParamOptions @64 + SQLPrimaryKeys=ODBC32_SQLPrimaryKeys @65 + SQLProcedureColumns=ODBC32_SQLProcedureColumns @66 + SQLProcedures=ODBC32_SQLProcedures @67 + SQLSetPos=ODBC32_SQLSetPos @68 + SQLSetScrollOptions=ODBC32_SQLSetScrollOptions @69 + SQLTablePrivileges=ODBC32_SQLTablePrivileges @70 + SQLDrivers=ODBC32_SQLDrivers @71 + SQLBindParameter=ODBC32_SQLBindParameter @72 + SQLSetDescField=ODBC32_SQLSetDescField @73 + SQLSetDescRec=ODBC32_SQLSetDescRec @74 + SQLSetEnvAttr=ODBC32_SQLSetEnvAttr @75 + SQLSetStmtAttr=ODBC32_SQLSetStmtAttr @76 + SQLAllocHandleStd=ODBC32_SQLAllocHandleStd @77 + SQLBulkOperations=ODBC32_SQLBulkOperations @78 + CloseODBCPerfData @79 PRIVATE + CollectODBCPerfData @80 PRIVATE + CursorLibLockDbc @81 PRIVATE + CursorLibLockDesc @82 PRIVATE + CursorLibLockStmt @83 PRIVATE + ODBCGetTryWaitValue @84 PRIVATE + CursorLibTransact @85 PRIVATE + ODBSetTryWaitValue @86 PRIVATE + ODBCSharedPerfMon @89 PRIVATE + ODBCSharedVSFlag @90 PRIVATE + SQLColAttributesW=ODBC32_SQLColAttributesW @106 + SQLConnectW=ODBC32_SQLConnectW @107 + SQLDescribeColW=ODBC32_SQLDescribeColW @108 + SQLErrorW=ODBC32_SQLErrorW @110 + SQLExecDirectW=ODBC32_SQLExecDirectW @111 + SQLGetCursorNameW=ODBC32_SQLGetCursorNameW @117 + SQLPrepareW=ODBC32_SQLPrepareW @119 + SQLSetCursorNameW=ODBC32_SQLSetCursorNameW @121 + SQLColAttributeW=ODBC32_SQLColAttributeW @127 + SQLGetConnectAttrW=ODBC32_SQLGetConnectAttrW @132 + SQLGetDescFieldW=ODBC32_SQLGetDescFieldW @133 + SQLGetDescRecW=ODBC32_SQLGetDescRecW @134 + SQLGetDiagFieldW=ODBC32_SQLGetDiagFieldW @135 + SQLGetDiagRecW=ODBC32_SQLGetDiagRecW @136 + SQLGetStmtAttrW=ODBC32_SQLGetStmtAttrW @138 + SQLSetConnectAttrW=ODBC32_SQLSetConnectAttrW @139 + SQLColumnsW=ODBC32_SQLColumnsW @140 + SQLDriverConnectW=ODBC32_SQLDriverConnectW @141 + SQLGetConnectOptionW=ODBC32_SQLGetConnectOptionW @142 + SQLGetInfoW=ODBC32_SQLGetInfoW @145 + SQLGetTypeInfoW=ODBC32_SQLGetTypeInfoW @147 + SQLSetConnectOptionW=ODBC32_SQLSetConnectOptionW @150 + SQLSpecialColumnsW=ODBC32_SQLSpecialColumnsW @152 + SQLStatisticsW=ODBC32_SQLStatisticsW @153 + SQLTablesW=ODBC32_SQLTablesW @154 + SQLBrowseConnectW=ODBC32_SQLBrowseConnectW @155 + SQLColumnPrivilegesW=ODBC32_SQLColumnPrivilegesW @156 + SQLDataSourcesW=ODBC32_SQLDataSourcesW @157 + SQLForeignKeysW=ODBC32_SQLForeignKeysW @160 + SQLNativeSqlW=ODBC32_SQLNativeSqlW @162 + SQLPrimaryKeysW=ODBC32_SQLPrimaryKeysW @165 + SQLProcedureColumnsW=ODBC32_SQLProcedureColumnsW @166 + SQLProceduresW=ODBC32_SQLProceduresW @167 + SQLTablePrivilegesW=ODBC32_SQLTablePrivilegesW @170 + SQLDriversW=ODBC32_SQLDriversW @171 + SQLSetDescFieldW=ODBC32_SQLSetDescFieldW @173 + SQLSetStmtAttrW=ODBC32_SQLSetStmtAttrW @176 + SQLColAttributesA @206 PRIVATE + SQLConnectA @207 PRIVATE + SQLDescribeColA @208 PRIVATE + SQLErrorA @210 PRIVATE + SQLExecDirectA @211 PRIVATE + SQLGetCursorNameA @217 PRIVATE + SQLPrepareA @219 PRIVATE + SQLSetCursorNameA @221 PRIVATE + SQLColAttributeA @227 PRIVATE + SQLGetConnectAttrA @232 PRIVATE + SQLGetDescFieldA @233 PRIVATE + SQLGetDescRecA @234 PRIVATE + SQLGetDiagFieldA @235 PRIVATE + SQLGetDiagRecA=ODBC32_SQLGetDiagRecA @236 + SQLGetStmtAttrA @238 PRIVATE + SQLSetConnectAttrA @239 PRIVATE + SQLColumnsA @240 PRIVATE + SQLDriverConnectA @241 PRIVATE + SQLGetConnectOptionA @242 PRIVATE + SQLGetInfoA @245 PRIVATE + SQLGetTypeInfoA @247 PRIVATE + SQLSetConnectOptionA @250 PRIVATE + SQLSpecialColumnsA @252 PRIVATE + SQLStatisticsA @253 PRIVATE + SQLTablesA @254 PRIVATE + SQLBrowseConnectA @255 PRIVATE + SQLColumnPrivilegesA @256 PRIVATE + SQLDataSourcesA=ODBC32_SQLDataSourcesA @257 + SQLForeignKeysA @260 PRIVATE + SQLNativeSqlA @262 PRIVATE + SQLPrimaryKeysA @265 PRIVATE + SQLProcedureColumnsA @266 PRIVATE + SQLProceduresA @267 PRIVATE + SQLTablePrivilegesA @270 PRIVATE + SQLDriversA @271 PRIVATE + SQLSetDescFieldA @273 PRIVATE + SQLSetStmtAttrA @276 PRIVATE + ODBCSharedTraceFlag @300 PRIVATE + ODBCQualifyFileDSNW @301 PRIVATE + LockHandle @87 PRIVATE + ODBCInternalConnectW @88 PRIVATE + OpenODBCPerfData @91 PRIVATE + PostComponentError @92 PRIVATE + PostODBCComponentError @93 PRIVATE + PostODBCError @94 PRIVATE + SearchStatusCode @95 PRIVATE + VFreeErrors @96 PRIVATE + VRetrieveDriverErrorsRowCol @97 PRIVATE + ValidateErrorQueue @98 PRIVATE diff --git a/lib64/wine/libodbccp32.def b/lib64/wine/libodbccp32.def new file mode 100644 index 0000000..41e36c0 --- /dev/null +++ b/lib64/wine/libodbccp32.def @@ -0,0 +1,62 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/odbccp32/odbccp32.spec; do not edit! + +LIBRARY odbccp32.dll + +EXPORTS + SQLInstallDriver @2 + SQLInstallDriverManager @3 + SQLGetInstalledDrivers @4 + SQLGetAvailableDrivers @5 + SQLConfigDataSource @6 + SQLRemoveDefaultDataSource @7 + SQLWriteDSNToIni @8 + SQLRemoveDSNFromIni @9 + SQLInstallODBC @10 + SQLManageDataSources @11 + SQLCreateDataSource @12 + SQLGetTranslator @13 + SQLWritePrivateProfileString @14 + SQLGetPrivateProfileString @15 + SQLValidDSN @16 + SQLRemoveDriverManager @17 + SQLInstallTranslator @18 + SQLRemoveTranslator @19 + SQLRemoveDriver @20 + SQLConfigDriver @21 + SQLInstallerError @22 + SQLPostInstallerError @23 + SQLReadFileDSN @24 + SQLWriteFileDSN @25 + SQLInstallDriverEx @26 + SQLGetConfigMode @27 + SQLSetConfigMode @28 + SQLInstallTranslatorEx @29 + SQLCreateDataSourceEx @30 PRIVATE + ODBCCPlApplet @101 + SelectTransDlg @112 PRIVATE + SQLInstallDriverW @202 + SQLInstallDriverManagerW @203 + SQLGetInstalledDriversW @204 + SQLGetAvailableDriversW @205 + SQLConfigDataSourceW @206 + SQLWriteDSNToIniW @208 + SQLRemoveDSNFromIniW @209 + SQLInstallODBCW @210 + SQLCreateDataSourceW @212 + SQLGetTranslatorW @213 + SQLWritePrivateProfileStringW @214 + SQLGetPrivateProfileStringW @215 + SQLValidDSNW @216 + SQLInstallTranslatorW @218 + SQLRemoveTranslatorW @219 + SQLRemoveDriverW @220 + SQLConfigDriverW @221 + SQLInstallerErrorW @222 + SQLPostInstallerErrorW @223 + SQLReadFileDSNW @224 + SQLWriteFileDSNW @225 + SQLInstallDriverExW @226 + SQLInstallTranslatorExW @229 + SQLCreateDataSourceExW @230 PRIVATE + SQLLoadDriverListBox @231 PRIVATE + SQLLoadDataSourcesListBox @232 PRIVATE diff --git a/lib64/wine/libole32.def b/lib64/wine/libole32.def new file mode 100644 index 0000000..a951b13 --- /dev/null +++ b/lib64/wine/libole32.def @@ -0,0 +1,301 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/ole32/ole32.spec; do not edit! + +LIBRARY ole32.dll + +EXPORTS + BindMoniker @1 + CLIPFORMAT_UserFree @2 + CLIPFORMAT_UserMarshal @3 + CLIPFORMAT_UserSize @4 + CLIPFORMAT_UserUnmarshal @5 + CLSIDFromProgID @6 + CLSIDFromProgIDEx @7 + CLSIDFromString @8 + CoAddRefServerProcess @9 + CoAllowSetForegroundWindow @10 + CoBuildVersion @11 + CoCopyProxy @12 + CoCreateFreeThreadedMarshaler @13 + CoCreateGuid @14 + CoCreateInstance @15 + CoCreateInstanceEx @16 + CoDisableCallCancellation @17 + CoDisconnectObject @18 + CoDosDateTimeToFileTime=kernel32.DosDateTimeToFileTime @19 + CoEnableCallCancellation @20 + CoFileTimeNow @21 + CoFileTimeToDosDateTime=kernel32.FileTimeToDosDateTime @22 + CoFreeAllLibraries @23 + CoFreeLibrary @24 + CoFreeUnusedLibraries @25 + CoFreeUnusedLibrariesEx @26 + CoGetActivationState @27 + CoGetApartmentType @28 + CoGetCallContext @29 + CoGetCallState @30 + CoGetCallerTID @31 + CoGetClassObject @32 + CoGetContextToken @33 + CoGetCurrentLogicalThreadId @34 + CoGetCurrentProcess @35 + CoGetDefaultContext @36 + CoGetInstanceFromFile @37 + CoGetInstanceFromIStorage @38 + CoGetInterfaceAndReleaseStream @39 + CoGetMalloc @40 + CoGetMarshalSizeMax @41 + CoGetObject @42 + CoGetObjectContext @43 + CoGetPSClsid @44 + CoGetStandardMarshal @45 + CoGetState @46 + CoGetTIDFromIPID @47 PRIVATE + CoGetTreatAsClass @48 + CoImpersonateClient @49 + CoInitialize @50 + CoInitializeEx @51 + CoInitializeSecurity @52 + CoInitializeWOW @53 + CoIsHandlerConnected @54 + CoIsOle1Class @55 + CoLoadLibrary @56 + CoLockObjectExternal @57 + CoMarshalHresult @58 + CoMarshalInterThreadInterfaceInStream @59 + CoMarshalInterface @60 + CoQueryAuthenticationServices @61 PRIVATE + CoQueryClientBlanket @62 + CoQueryProxyBlanket @63 + CoQueryReleaseObject @64 PRIVATE + CoRegisterChannelHook @65 + CoRegisterClassObject @66 + CoRegisterInitializeSpy @67 + CoRegisterMallocSpy @68 + CoRegisterMessageFilter @69 + CoRegisterPSClsid @70 + CoRegisterSurrogate @71 + CoRegisterSurrogateEx @72 + CoReleaseMarshalData @73 + CoReleaseServerProcess @74 + CoResumeClassObjects @75 + CoRevertToSelf @76 + CoRevokeClassObject @77 + CoRevokeInitializeSpy @78 + CoRevokeMallocSpy @79 + CoSetProxyBlanket @80 + CoSetState @81 + CoSuspendClassObjects @82 + CoSwitchCallContext @83 + CoTaskMemAlloc @84 + CoTaskMemFree @85 + CoTaskMemRealloc @86 + CoTreatAsClass @87 + CoUninitialize @88 + CoUnloadingWOW @89 PRIVATE + CoUnmarshalHresult @90 + CoUnmarshalInterface @91 + CoWaitForMultipleHandles @92 + CreateAntiMoniker @93 + CreateBindCtx @94 + CreateClassMoniker @95 + CreateDataAdviseHolder @96 + CreateDataCache @97 + CreateErrorInfo @98 + CreateFileMoniker @99 + CreateGenericComposite @100 + CreateILockBytesOnHGlobal @101 + CreateItemMoniker @102 + CreateObjrefMoniker @103 PRIVATE + CreateOleAdviseHolder @104 + CreatePointerMoniker @105 + CreateStreamOnHGlobal @106 + DllDebugObjectRPCHook @107 + DllGetClassObject @108 PRIVATE + DllGetClassObjectWOW @109 PRIVATE + DllRegisterServer @110 PRIVATE + DllUnregisterServer @111 PRIVATE + DoDragDrop @112 + EnableHookObject @113 PRIVATE + FmtIdToPropStgName @114 + FreePropVariantArray @115 + GetClassFile @116 + GetConvertStg @117 + GetDocumentBitStg @118 PRIVATE + GetErrorInfo @119 + GetHGlobalFromILockBytes @120 + GetHGlobalFromStream @121 + GetHookInterface @122 PRIVATE + GetRunningObjectTable @123 + HACCEL_UserFree @124 + HACCEL_UserMarshal @125 + HACCEL_UserSize @126 + HACCEL_UserUnmarshal @127 + HBITMAP_UserFree @128 + HBITMAP_UserMarshal @129 + HBITMAP_UserSize @130 + HBITMAP_UserUnmarshal @131 + HBRUSH_UserFree @132 + HBRUSH_UserMarshal @133 + HBRUSH_UserSize @134 + HBRUSH_UserUnmarshal @135 + HDC_UserFree @136 + HDC_UserMarshal @137 + HDC_UserSize @138 + HDC_UserUnmarshal @139 + HENHMETAFILE_UserFree @140 + HENHMETAFILE_UserMarshal @141 + HENHMETAFILE_UserSize @142 + HENHMETAFILE_UserUnmarshal @143 + HGLOBAL_UserFree @144 + HGLOBAL_UserMarshal @145 + HGLOBAL_UserSize @146 + HGLOBAL_UserUnmarshal @147 + HICON_UserFree @148 + HICON_UserMarshal @149 + HICON_UserSize @150 + HICON_UserUnmarshal @151 + HMENU_UserFree @152 + HMENU_UserMarshal @153 + HMENU_UserSize @154 + HMENU_UserUnmarshal @155 + HMETAFILEPICT_UserFree @156 + HMETAFILEPICT_UserMarshal @157 + HMETAFILEPICT_UserSize @158 + HMETAFILEPICT_UserUnmarshal @159 + HMETAFILE_UserFree @160 + HMETAFILE_UserMarshal @161 + HMETAFILE_UserSize @162 + HMETAFILE_UserUnmarshal @163 + HPALETTE_UserFree @164 + HPALETTE_UserMarshal @165 + HPALETTE_UserSize @166 + HPALETTE_UserUnmarshal @167 + HWND_UserFree @168 + HWND_UserMarshal @169 + HWND_UserSize @170 + HWND_UserUnmarshal @171 + IIDFromString @172 + I_RemoteMain @173 PRIVATE + IsAccelerator @174 + IsEqualGUID @175 + IsValidIid @176 PRIVATE + IsValidInterface @177 + IsValidPtrIn @178 PRIVATE + IsValidPtrOut @179 PRIVATE + MkParseDisplayName @180 + MonikerCommonPrefixWith @181 + MonikerRelativePathTo @182 PRIVATE + OleBuildVersion @183 + OleConvertIStorageToOLESTREAM @184 + OleConvertIStorageToOLESTREAMEx @185 PRIVATE + OleConvertOLESTREAMToIStorage @186 + OleConvertOLESTREAMToIStorageEx @187 PRIVATE + OleCreate @188 + OleCreateDefaultHandler @189 + OleCreateEmbeddingHelper @190 + OleCreateEx @191 PRIVATE + OleCreateFromData @192 + OleCreateFromDataEx @193 + OleCreateFromFile @194 + OleCreateFromFileEx @195 + OleCreateLink @196 + OleCreateLinkEx @197 PRIVATE + OleCreateLinkFromData @198 + OleCreateLinkFromDataEx @199 PRIVATE + OleCreateLinkToFile @200 + OleCreateLinkToFileEx @201 PRIVATE + OleCreateMenuDescriptor @202 + OleCreateStaticFromData @203 + OleDestroyMenuDescriptor @204 + OleDoAutoConvert @205 + OleDraw @206 + OleDuplicateData @207 + OleFlushClipboard @208 + OleGetAutoConvert @209 + OleGetClipboard @210 + OleGetIconOfClass @211 + OleGetIconOfFile @212 + OleInitialize @213 + OleInitializeWOW @214 + OleIsCurrentClipboard @215 + OleIsRunning @216 + OleLoad @217 + OleLoadFromStream @218 + OleLockRunning @219 + OleMetafilePictFromIconAndLabel @220 + OleNoteObjectVisible @221 + OleQueryCreateFromData @222 + OleQueryLinkFromData @223 + OleRegEnumFormatEtc @224 + OleRegEnumVerbs @225 + OleRegGetMiscStatus @226 + OleRegGetUserType @227 + OleRun @228 + OleSave @229 + OleSaveToStream @230 + OleSetAutoConvert @231 + OleSetClipboard @232 + OleSetContainedObject @233 + OleSetMenuDescriptor @234 + OleTranslateAccelerator @235 + OleUninitialize @236 + OpenOrCreateStream @237 PRIVATE + ProgIDFromCLSID @238 + PropStgNameToFmtId @239 + PropSysAllocString @240 + PropSysFreeString @241 + PropVariantClear @242 + PropVariantCopy @243 + ReadClassStg @244 + ReadClassStm @245 + ReadFmtUserTypeStg @246 + ReadOleStg @247 PRIVATE + ReadStringStream @248 PRIVATE + RegisterDragDrop @249 + ReleaseStgMedium @250 + RevokeDragDrop @251 + SNB_UserFree @252 + SNB_UserMarshal @253 + SNB_UserSize @254 + SNB_UserUnmarshal @255 + STGMEDIUM_UserFree @256 + STGMEDIUM_UserMarshal @257 + STGMEDIUM_UserSize @258 + STGMEDIUM_UserUnmarshal @259 + SetConvertStg @260 + SetDocumentBitStg @261 PRIVATE + SetErrorInfo @262 + StgConvertPropertyToVariant @263 + StgConvertVariantToProperty @264 + StgCreateDocfile @265 + StgCreateDocfileOnILockBytes @266 + StgCreatePropSetStg @267 + StgCreatePropStg @268 + StgCreateStorageEx @269 + StgGetIFillLockBytesOnFile @270 PRIVATE + StgGetIFillLockBytesOnILockBytes @271 PRIVATE + StgIsStorageFile @272 + StgIsStorageILockBytes @273 + StgOpenAsyncDocfileOnIFillLockBytes @274 PRIVATE + StgOpenPropStg @275 + StgOpenStorage @276 + StgOpenStorageEx @277 + StgOpenStorageOnILockBytes @278 + StgSetTimes @279 + StringFromCLSID @280 + StringFromGUID2 @281 + StringFromIID=StringFromCLSID @282 + UpdateDCOMSettings @283 PRIVATE + UtConvertDvtd16toDvtd32 @284 PRIVATE + UtConvertDvtd32toDvtd16 @285 PRIVATE + UtGetDvtd16Info @286 PRIVATE + UtGetDvtd32Info @287 PRIVATE + WdtpInterfacePointer_UserFree @288 + WdtpInterfacePointer_UserMarshal @289 + WdtpInterfacePointer_UserSize @290 + WdtpInterfacePointer_UserUnmarshal @291 + WriteClassStg @292 + WriteClassStm @293 + WriteFmtUserTypeStg @294 + WriteOleStg @295 PRIVATE + WriteStringStream @296 PRIVATE diff --git a/lib64/wine/liboleacc.def b/lib64/wine/liboleacc.def new file mode 100644 index 0000000..7f2d7b8 --- /dev/null +++ b/lib64/wine/liboleacc.def @@ -0,0 +1,27 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/oleacc/oleacc.spec; do not edit! + +LIBRARY oleacc.dll + +EXPORTS + AccessibleChildren @1 + AccessibleObjectFromEvent @2 PRIVATE + AccessibleObjectFromPoint @3 + AccessibleObjectFromWindow @4 + CreateStdAccessibleObject @5 + CreateStdAccessibleProxyA @6 PRIVATE + CreateStdAccessibleProxyW @7 PRIVATE + DllGetClassObject @8 PRIVATE + DllRegisterServer @9 PRIVATE + DllUnregisterServer @10 PRIVATE + GetOleaccVersionInfo @11 + GetProcessHandleFromHwnd @12 + GetRoleTextA @13 + GetRoleTextW @14 + GetStateTextA @15 + GetStateTextW @16 + IID_IAccessible @17 DATA + IID_IAccessibleHandler @18 DATA + LIBID_Accessibility @19 DATA + LresultFromObject @20 + ObjectFromLresult @21 + WindowFromAccessibleObject @22 diff --git a/lib64/wine/liboleaut32.def b/lib64/wine/liboleaut32.def new file mode 100644 index 0000000..46ca71c --- /dev/null +++ b/lib64/wine/liboleaut32.def @@ -0,0 +1,423 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/oleaut32/oleaut32.spec; do not edit! + +LIBRARY oleaut32.dll + +EXPORTS + SysAllocString @2 + SysReAllocString @3 + SysAllocStringLen @4 + SysReAllocStringLen @5 + SysFreeString @6 + SysStringLen @7 + VariantInit @8 + VariantClear @9 + VariantCopy @10 + VariantCopyInd @11 + VariantChangeType @12 + VariantTimeToDosDateTime @13 + DosDateTimeToVariantTime @14 + SafeArrayCreate @15 + SafeArrayDestroy @16 + SafeArrayGetDim @17 + SafeArrayGetElemsize @18 + SafeArrayGetUBound @19 + SafeArrayGetLBound @20 + SafeArrayLock @21 + SafeArrayUnlock @22 + SafeArrayAccessData @23 + SafeArrayUnaccessData @24 + SafeArrayGetElement @25 + SafeArrayPutElement @26 + SafeArrayCopy @27 + DispGetParam @28 + DispGetIDsOfNames @29 + DispInvoke @30 + CreateDispTypeInfo @31 + CreateStdDispatch @32 + RegisterActiveObject @33 + RevokeActiveObject @34 + GetActiveObject @35 + SafeArrayAllocDescriptor @36 + SafeArrayAllocData @37 + SafeArrayDestroyDescriptor @38 + SafeArrayDestroyData @39 + SafeArrayRedim @40 + SafeArrayAllocDescriptorEx @41 + SafeArrayCreateEx @42 + SafeArrayCreateVectorEx @43 + SafeArraySetRecordInfo @44 + SafeArrayGetRecordInfo @45 + VarParseNumFromStr @46 + VarNumFromParseNum @47 + VarI2FromUI1 @48 + VarI2FromI4 @49 + VarI2FromR4 @50 + VarI2FromR8 @51 + VarI2FromCy @52 + VarI2FromDate @53 + VarI2FromStr @54 + VarI2FromDisp @55 + VarI2FromBool @56 + SafeArraySetIID @57 + VarI4FromUI1 @58 + VarI4FromI2 @59 + VarI4FromR4 @60 + VarI4FromR8 @61 + VarI4FromCy @62 + VarI4FromDate @63 + VarI4FromStr @64 + VarI4FromDisp @65 + VarI4FromBool @66 + SafeArrayGetIID @67 + VarR4FromUI1 @68 + VarR4FromI2 @69 + VarR4FromI4 @70 + VarR4FromR8 @71 + VarR4FromCy @72 + VarR4FromDate @73 + VarR4FromStr @74 + VarR4FromDisp @75 + VarR4FromBool @76 + SafeArrayGetVartype @77 + VarR8FromUI1 @78 + VarR8FromI2 @79 + VarR8FromI4 @80 + VarR8FromR4 @81 + VarR8FromCy @82 + VarR8FromDate @83 + VarR8FromStr @84 + VarR8FromDisp @85 + VarR8FromBool @86 + VarFormat @87 + VarDateFromUI1 @88 + VarDateFromI2 @89 + VarDateFromI4 @90 + VarDateFromR4 @91 + VarDateFromR8 @92 + VarDateFromCy @93 + VarDateFromStr @94 + VarDateFromDisp @95 + VarDateFromBool @96 + VarFormatDateTime @97 + VarCyFromUI1 @98 + VarCyFromI2 @99 + VarCyFromI4 @100 + VarCyFromR4 @101 + VarCyFromR8 @102 + VarCyFromDate @103 + VarCyFromStr @104 + VarCyFromDisp @105 + VarCyFromBool @106 + VarFormatNumber @107 + VarBstrFromUI1 @108 + VarBstrFromI2 @109 + VarBstrFromI4 @110 + VarBstrFromR4 @111 + VarBstrFromR8 @112 + VarBstrFromCy @113 + VarBstrFromDate @114 + VarBstrFromDisp @115 + VarBstrFromBool @116 + VarFormatPercent @117 + VarBoolFromUI1 @118 + VarBoolFromI2 @119 + VarBoolFromI4 @120 + VarBoolFromR4 @121 + VarBoolFromR8 @122 + VarBoolFromDate @123 + VarBoolFromCy @124 + VarBoolFromStr @125 + VarBoolFromDisp @126 + VarFormatCurrency @127 + VarWeekdayName @128 + VarMonthName @129 + VarUI1FromI2 @130 + VarUI1FromI4 @131 + VarUI1FromR4 @132 + VarUI1FromR8 @133 + VarUI1FromCy @134 + VarUI1FromDate @135 + VarUI1FromStr @136 + VarUI1FromDisp @137 + VarUI1FromBool @138 + VarFormatFromTokens @139 + VarTokenizeFormatString @140 + VarAdd @141 + VarAnd @142 + VarDiv @143 + OACreateTypeLib2 @144 PRIVATE + DispCallFunc @146 + VariantChangeTypeEx @147 + SafeArrayPtrOfIndex @148 + SysStringByteLen @149 + SysAllocStringByteLen @150 + VarEqv @152 + VarIdiv @153 + VarImp @154 + VarMod @155 + VarMul @156 + VarOr @157 + VarPow @158 + VarSub @159 + CreateTypeLib @160 + LoadTypeLib @161 + LoadRegTypeLib @162 + RegisterTypeLib @163 + QueryPathOfRegTypeLib @164 + LHashValOfNameSys @165 + LHashValOfNameSysA @166 + VarXor @167 + VarAbs @168 + VarFix @169 + OaBuildVersion @170 + ClearCustData @171 + VarInt @172 + VarNeg @173 + VarNot @174 + VarRound @175 + VarCmp @176 + VarDecAdd @177 + VarDecDiv @178 + VarDecMul @179 + CreateTypeLib2 @180 + VarDecSub @181 + VarDecAbs @182 + LoadTypeLibEx @183 + SystemTimeToVariantTime @184 + VariantTimeToSystemTime @185 + UnRegisterTypeLib @186 + VarDecFix @187 + VarDecInt @188 + VarDecNeg @189 + VarDecFromUI1 @190 + VarDecFromI2 @191 + VarDecFromI4 @192 + VarDecFromR4 @193 + VarDecFromR8 @194 + VarDecFromDate @195 + VarDecFromCy @196 + VarDecFromStr @197 + VarDecFromDisp @198 + VarDecFromBool @199 + GetErrorInfo=ole32.GetErrorInfo @200 + SetErrorInfo=ole32.SetErrorInfo @201 + CreateErrorInfo=ole32.CreateErrorInfo @202 + VarDecRound @203 + VarDecCmp @204 + VarI2FromI1 @205 + VarI2FromUI2 @206 + VarI2FromUI4 @207 + VarI2FromDec @208 + VarI4FromI1 @209 + VarI4FromUI2 @210 + VarI4FromUI4 @211 + VarI4FromDec @212 + VarR4FromI1 @213 + VarR4FromUI2 @214 + VarR4FromUI4 @215 + VarR4FromDec @216 + VarR8FromI1 @217 + VarR8FromUI2 @218 + VarR8FromUI4 @219 + VarR8FromDec @220 + VarDateFromI1 @221 + VarDateFromUI2 @222 + VarDateFromUI4 @223 + VarDateFromDec @224 + VarCyFromI1 @225 + VarCyFromUI2 @226 + VarCyFromUI4 @227 + VarCyFromDec @228 + VarBstrFromI1 @229 + VarBstrFromUI2 @230 + VarBstrFromUI4 @231 + VarBstrFromDec @232 + VarBoolFromI1 @233 + VarBoolFromUI2 @234 + VarBoolFromUI4 @235 + VarBoolFromDec @236 + VarUI1FromI1 @237 + VarUI1FromUI2 @238 + VarUI1FromUI4 @239 + VarUI1FromDec @240 + VarDecFromI1 @241 + VarDecFromUI2 @242 + VarDecFromUI4 @243 + VarI1FromUI1 @244 + VarI1FromI2 @245 + VarI1FromI4 @246 + VarI1FromR4 @247 + VarI1FromR8 @248 + VarI1FromDate @249 + VarI1FromCy @250 + VarI1FromStr @251 + VarI1FromDisp @252 + VarI1FromBool @253 + VarI1FromUI2 @254 + VarI1FromUI4 @255 + VarI1FromDec @256 + VarUI2FromUI1 @257 + VarUI2FromI2 @258 + VarUI2FromI4 @259 + VarUI2FromR4 @260 + VarUI2FromR8 @261 + VarUI2FromDate @262 + VarUI2FromCy @263 + VarUI2FromStr @264 + VarUI2FromDisp @265 + VarUI2FromBool @266 + VarUI2FromI1 @267 + VarUI2FromUI4 @268 + VarUI2FromDec @269 + VarUI4FromUI1 @270 + VarUI4FromI2 @271 + VarUI4FromI4 @272 + VarUI4FromR4 @273 + VarUI4FromR8 @274 + VarUI4FromDate @275 + VarUI4FromCy @276 + VarUI4FromStr @277 + VarUI4FromDisp @278 + VarUI4FromBool @279 + VarUI4FromI1 @280 + VarUI4FromUI2 @281 + VarUI4FromDec @282 + BSTR_UserSize @283 + BSTR_UserMarshal @284 + BSTR_UserUnmarshal @285 + BSTR_UserFree @286 + VARIANT_UserSize @287 + VARIANT_UserMarshal @288 + VARIANT_UserUnmarshal @289 + VARIANT_UserFree @290 + LPSAFEARRAY_UserSize @291 + LPSAFEARRAY_UserMarshal @292 + LPSAFEARRAY_UserUnmarshal @293 + LPSAFEARRAY_UserFree @294 + LPSAFEARRAY_Size @295 PRIVATE + LPSAFEARRAY_Marshal @296 PRIVATE + LPSAFEARRAY_Unmarshal @297 PRIVATE + VarDecCmpR8 @298 + VarCyAdd @299 + VarCyMul @303 + VarCyMulI4 @304 + VarCySub @305 + VarCyAbs @306 + VarCyFix @307 + VarCyInt @308 + VarCyNeg @309 + VarCyRound @310 + VarCyCmp @311 + VarCyCmpR8 @312 + VarBstrCat @313 + VarBstrCmp @314 + VarR8Pow @315 + VarR4CmpR8 @316 + VarR8Round @317 + VarCat @318 + VarDateFromUdateEx @319 + GetRecordInfoFromGuids @322 + GetRecordInfoFromTypeInfo @323 + SetVarConversionLocaleSetting @325 PRIVATE + GetVarConversionLocaleSetting @326 PRIVATE + SetOaNoCache @327 + VarCyMulI8 @329 + VarDateFromUdate @330 + VarUdateFromDate @331 + GetAltMonthNames @332 + VarI8FromUI1 @333 + VarI8FromI2 @334 + VarI8FromR4 @335 + VarI8FromR8 @336 + VarI8FromCy @337 + VarI8FromDate @338 + VarI8FromStr @339 + VarI8FromDisp @340 + VarI8FromBool @341 + VarI8FromI1 @342 + VarI8FromUI2 @343 + VarI8FromUI4 @344 + VarI8FromDec @345 + VarI2FromI8 @346 + VarI2FromUI8 @347 + VarI4FromI8 @348 + VarI4FromUI8 @349 + VarR4FromI8 @360 + VarR4FromUI8 @361 + VarR8FromI8 @362 + VarR8FromUI8 @363 + VarDateFromI8 @364 + VarDateFromUI8 @365 + VarCyFromI8 @366 + VarCyFromUI8 @367 + VarBstrFromI8 @368 + VarBstrFromUI8 @369 + VarBoolFromI8 @370 + VarBoolFromUI8 @371 + VarUI1FromI8 @372 + VarUI1FromUI8 @373 + VarDecFromI8 @374 + VarDecFromUI8 @375 + VarI1FromI8 @376 + VarI1FromUI8 @377 + VarUI2FromI8 @378 + VarUI2FromUI8 @379 + UserHWND_from_local @380 PRIVATE + UserHWND_to_local @381 PRIVATE + UserHWND_free_inst @382 PRIVATE + UserHWND_free_local @383 PRIVATE + UserBSTR_from_local @384 PRIVATE + UserBSTR_to_local @385 PRIVATE + UserBSTR_free_inst @386 PRIVATE + UserBSTR_free_local @387 PRIVATE + UserVARIANT_from_local @388 PRIVATE + UserVARIANT_to_local @389 PRIVATE + UserVARIANT_free_inst @390 PRIVATE + UserVARIANT_free_local @391 PRIVATE + UserEXCEPINFO_from_local @392 PRIVATE + UserEXCEPINFO_to_local @393 PRIVATE + UserEXCEPINFO_free_inst @394 PRIVATE + UserEXCEPINFO_free_local @395 PRIVATE + UserMSG_from_local @396 PRIVATE + UserMSG_to_local @397 PRIVATE + UserMSG_free_inst @398 PRIVATE + UserMSG_free_local @399 PRIVATE + OleLoadPictureEx @401 + OleLoadPictureFileEx @402 PRIVATE + SafeArrayCreateVector @411 + SafeArrayCopyData @412 + VectorFromBstr @413 + BstrFromVector @414 + OleIconToCursor @415 + OleCreatePropertyFrameIndirect @416 + OleCreatePropertyFrame @417 + OleLoadPicture @418 + OleCreatePictureIndirect @419 + OleCreateFontIndirect @420 + OleTranslateColor @421 + OleLoadPictureFile @422 + OleSavePictureFile @423 + OleLoadPicturePath @424 + VarUI4FromI8 @425 + VarUI4FromUI8 @426 + VarI8FromUI8 @427 + VarUI8FromI8 @428 + VarUI8FromUI1 @429 + VarUI8FromI2 @430 + VarUI8FromR4 @431 + VarUI8FromR8 @432 + VarUI8FromCy @433 + VarUI8FromDate @434 + VarUI8FromStr @435 + VarUI8FromDisp @436 + VarUI8FromBool @437 + VarUI8FromI1 @438 + VarUI8FromUI2 @439 + VarUI8FromUI4 @440 + VarUI8FromDec @441 + RegisterTypeLibForUser @442 + UnRegisterTypeLibForUser @443 + DllCanUnloadNow @145 PRIVATE + DllGetClassObject @151 PRIVATE + DllRegisterServer @300 PRIVATE + DllUnregisterServer @301 PRIVATE diff --git a/lib64/wine/libolecli32.def b/lib64/wine/libolecli32.def new file mode 100644 index 0000000..9f5e98d --- /dev/null +++ b/lib64/wine/libolecli32.def @@ -0,0 +1,61 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/olecli32/olecli32.spec; do not edit! + +LIBRARY olecli32.dll + +EXPORTS + WEP @1 PRIVATE + OleDelete @2 PRIVATE + OleSaveToStream=ole32.OleSaveToStream @3 + OleLoadFromStream=ole32.OleLoadFromStream @4 + OleClone @6 PRIVATE + OleCopyFromLink @7 PRIVATE + OleEqual @8 PRIVATE + OleQueryLinkFromClip @9 + OleQueryCreateFromClip @10 + OleCreateLinkFromClip @11 + OleCreateFromClip @12 + OleCopyToClipboard @13 PRIVATE + OleQueryType @14 + OleSetHostNames @15 + OleSetTargetDevice @16 PRIVATE + OleSetBounds @17 PRIVATE + OleQueryBounds @18 PRIVATE + OleDraw @19 PRIVATE + OleQueryOpen @20 PRIVATE + OleActivate @21 PRIVATE + OleUpdate @22 PRIVATE + OleReconnect @23 PRIVATE + OleGetLinkUpdateOptions @24 PRIVATE + OleSetLinkUpdateOptions @25 PRIVATE + OleEnumFormats @26 PRIVATE + OleClose @27 PRIVATE + OleGetData @28 PRIVATE + OleSetData @29 PRIVATE + OleQueryProtocol @30 PRIVATE + OleQueryOutOfDate @31 PRIVATE + OleObjectConvert @32 PRIVATE + OleCreateFromTemplate @33 PRIVATE + OleCreate=ole32.OleCreate @34 + OleQueryReleaseStatus @35 PRIVATE + OleQueryReleaseError @36 PRIVATE + OleQueryReleaseMethod @37 PRIVATE + OleCreateFromFile=ole32.OleCreateFromFile @38 + OleCreateLinkFromFile @39 PRIVATE + OleRelease @40 PRIVATE + OleRegisterClientDoc @41 + OleRevokeClientDoc @42 + OleRenameClientDoc @43 + OleRevertClientDoc @44 PRIVATE + OleSavedClientDoc @45 + OleRename @46 PRIVATE + OleEnumObjects @47 PRIVATE + OleQueryName @48 PRIVATE + OleSetColorScheme @49 PRIVATE + OleRequestData @50 PRIVATE + OleLockServer @54 PRIVATE + OleUnlockServer @55 PRIVATE + OleQuerySize @56 PRIVATE + OleExecute @57 PRIVATE + OleCreateInvisible @58 PRIVATE + OleQueryClientVersion @59 PRIVATE + OleIsDcMeta @60 diff --git a/lib64/wine/liboledlg.def b/lib64/wine/liboledlg.def new file mode 100644 index 0000000..aea76ef --- /dev/null +++ b/lib64/wine/liboledlg.def @@ -0,0 +1,28 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/oledlg/oledlg.spec; do not edit! + +LIBRARY oledlg.dll + +EXPORTS + OleUIAddVerbMenuA @1 + OleUICanConvertOrActivateAs @2 + OleUIInsertObjectA @3 + OleUIPasteSpecialA @4 + OleUIEditLinksA @5 + OleUIChangeIconA @6 + OleUIConvertA @7 + OleUIBusyA @8 + OleUIUpdateLinksA @9 + OleUIPromptUserA @10 + OleUIObjectPropertiesA @11 + OleUIChangeSourceA @12 + OleUIPromptUserW @13 + OleUIAddVerbMenuW @14 + OleUIBusyW @15 + OleUIChangeIconW @16 + OleUIChangeSourceW @17 + OleUIConvertW @18 + OleUIEditLinksW @19 + OleUIInsertObjectW @20 + OleUIObjectPropertiesW @21 + OleUIPasteSpecialW @22 + OleUIUpdateLinksW @23 diff --git a/lib64/wine/libolepro32.def b/lib64/wine/libolepro32.def new file mode 100644 index 0000000..aa5f84a --- /dev/null +++ b/lib64/wine/libolepro32.def @@ -0,0 +1,16 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/olepro32/olepro32.spec; do not edit! + +LIBRARY olepro32.dll + +EXPORTS + OleIconToCursor=oleaut32.OleIconToCursor @248 + OleCreatePropertyFrameIndirect=oleaut32.OleCreatePropertyFrameIndirect @249 + OleCreatePropertyFrame=oleaut32.OleCreatePropertyFrame @250 + OleLoadPicture=oleaut32.OleLoadPicture @251 + OleCreatePictureIndirect=oleaut32.OleCreatePictureIndirect @252 + OleCreateFontIndirect=oleaut32.OleCreateFontIndirect @253 + OleTranslateColor=oleaut32.OleTranslateColor @254 + DllCanUnloadNow @255 PRIVATE + DllGetClassObject @256 PRIVATE + DllRegisterServer @257 PRIVATE + DllUnregisterServer @258 PRIVATE diff --git a/lib64/wine/libolesvr32.def b/lib64/wine/libolesvr32.def new file mode 100644 index 0000000..2019b6a --- /dev/null +++ b/lib64/wine/libolesvr32.def @@ -0,0 +1,17 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/olesvr32/olesvr32.spec; do not edit! + +LIBRARY olesvr32.dll + +EXPORTS + WEP @1 PRIVATE + OleRegisterServer @2 + OleRevokeServer @3 + OleBlockServer @4 + OleUnblockServer @5 + OleRegisterServerDoc @6 + OleRevokeServerDoc @7 + OleRenameServerDoc @8 + OleRevertServerDoc @9 + OleSavedServerDoc @10 + OleRevokeObject @11 PRIVATE + OleQueryServerVersion @12 PRIVATE diff --git a/lib64/wine/libopengl32.def b/lib64/wine/libopengl32.def new file mode 100644 index 0000000..20dc889 --- /dev/null +++ b/lib64/wine/libopengl32.def @@ -0,0 +1,365 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/opengl32/opengl32.spec; do not edit! + +LIBRARY opengl32.dll + +EXPORTS + glAccum @1 + glAlphaFunc @2 + glAreTexturesResident @3 + glArrayElement @4 + glBegin @5 + glBindTexture @6 + glBitmap @7 + glBlendFunc @8 + glCallList @9 + glCallLists @10 + glClear @11 + glClearAccum @12 + glClearColor @13 + glClearDepth @14 + glClearIndex @15 + glClearStencil @16 + glClipPlane @17 + glColor3b @18 + glColor3bv @19 + glColor3d @20 + glColor3dv @21 + glColor3f @22 + glColor3fv @23 + glColor3i @24 + glColor3iv @25 + glColor3s @26 + glColor3sv @27 + glColor3ub @28 + glColor3ubv @29 + glColor3ui @30 + glColor3uiv @31 + glColor3us @32 + glColor3usv @33 + glColor4b @34 + glColor4bv @35 + glColor4d @36 + glColor4dv @37 + glColor4f @38 + glColor4fv @39 + glColor4i @40 + glColor4iv @41 + glColor4s @42 + glColor4sv @43 + glColor4ub @44 + glColor4ubv @45 + glColor4ui @46 + glColor4uiv @47 + glColor4us @48 + glColor4usv @49 + glColorMask @50 + glColorMaterial @51 + glColorPointer @52 + glCopyPixels @53 + glCopyTexImage1D @54 + glCopyTexImage2D @55 + glCopyTexSubImage1D @56 + glCopyTexSubImage2D @57 + glCullFace @58 + glDebugEntry @59 + glDeleteLists @60 + glDeleteTextures @61 + glDepthFunc @62 + glDepthMask @63 + glDepthRange @64 + glDisable @65 + glDisableClientState @66 + glDrawArrays @67 + glDrawBuffer @68 + glDrawElements @69 + glDrawPixels @70 + glEdgeFlag @71 + glEdgeFlagPointer @72 + glEdgeFlagv @73 + glEnable @74 + glEnableClientState @75 + glEnd @76 + glEndList @77 + glEvalCoord1d @78 + glEvalCoord1dv @79 + glEvalCoord1f @80 + glEvalCoord1fv @81 + glEvalCoord2d @82 + glEvalCoord2dv @83 + glEvalCoord2f @84 + glEvalCoord2fv @85 + glEvalMesh1 @86 + glEvalMesh2 @87 + glEvalPoint1 @88 + glEvalPoint2 @89 + glFeedbackBuffer @90 + glFinish @91 + glFlush @92 + glFogf @93 + glFogfv @94 + glFogi @95 + glFogiv @96 + glFrontFace @97 + glFrustum @98 + glGenLists @99 + glGenTextures @100 + glGetBooleanv @101 + glGetClipPlane @102 + glGetDoublev @103 + glGetError @104 + glGetFloatv @105 + glGetIntegerv @106 + glGetLightfv @107 + glGetLightiv @108 + glGetMapdv @109 + glGetMapfv @110 + glGetMapiv @111 + glGetMaterialfv @112 + glGetMaterialiv @113 + glGetPixelMapfv @114 + glGetPixelMapuiv @115 + glGetPixelMapusv @116 + glGetPointerv @117 + glGetPolygonStipple @118 + glGetString @119 + glGetTexEnvfv @120 + glGetTexEnviv @121 + glGetTexGendv @122 + glGetTexGenfv @123 + glGetTexGeniv @124 + glGetTexImage @125 + glGetTexLevelParameterfv @126 + glGetTexLevelParameteriv @127 + glGetTexParameterfv @128 + glGetTexParameteriv @129 + glHint @130 + glIndexMask @131 + glIndexPointer @132 + glIndexd @133 + glIndexdv @134 + glIndexf @135 + glIndexfv @136 + glIndexi @137 + glIndexiv @138 + glIndexs @139 + glIndexsv @140 + glIndexub @141 + glIndexubv @142 + glInitNames @143 + glInterleavedArrays @144 + glIsEnabled @145 + glIsList @146 + glIsTexture @147 + glLightModelf @148 + glLightModelfv @149 + glLightModeli @150 + glLightModeliv @151 + glLightf @152 + glLightfv @153 + glLighti @154 + glLightiv @155 + glLineStipple @156 + glLineWidth @157 + glListBase @158 + glLoadIdentity @159 + glLoadMatrixd @160 + glLoadMatrixf @161 + glLoadName @162 + glLogicOp @163 + glMap1d @164 + glMap1f @165 + glMap2d @166 + glMap2f @167 + glMapGrid1d @168 + glMapGrid1f @169 + glMapGrid2d @170 + glMapGrid2f @171 + glMaterialf @172 + glMaterialfv @173 + glMateriali @174 + glMaterialiv @175 + glMatrixMode @176 + glMultMatrixd @177 + glMultMatrixf @178 + glNewList @179 + glNormal3b @180 + glNormal3bv @181 + glNormal3d @182 + glNormal3dv @183 + glNormal3f @184 + glNormal3fv @185 + glNormal3i @186 + glNormal3iv @187 + glNormal3s @188 + glNormal3sv @189 + glNormalPointer @190 + glOrtho @191 + glPassThrough @192 + glPixelMapfv @193 + glPixelMapuiv @194 + glPixelMapusv @195 + glPixelStoref @196 + glPixelStorei @197 + glPixelTransferf @198 + glPixelTransferi @199 + glPixelZoom @200 + glPointSize @201 + glPolygonMode @202 + glPolygonOffset @203 + glPolygonStipple @204 + glPopAttrib @205 + glPopClientAttrib @206 + glPopMatrix @207 + glPopName @208 + glPrioritizeTextures @209 + glPushAttrib @210 + glPushClientAttrib @211 + glPushMatrix @212 + glPushName @213 + glRasterPos2d @214 + glRasterPos2dv @215 + glRasterPos2f @216 + glRasterPos2fv @217 + glRasterPos2i @218 + glRasterPos2iv @219 + glRasterPos2s @220 + glRasterPos2sv @221 + glRasterPos3d @222 + glRasterPos3dv @223 + glRasterPos3f @224 + glRasterPos3fv @225 + glRasterPos3i @226 + glRasterPos3iv @227 + glRasterPos3s @228 + glRasterPos3sv @229 + glRasterPos4d @230 + glRasterPos4dv @231 + glRasterPos4f @232 + glRasterPos4fv @233 + glRasterPos4i @234 + glRasterPos4iv @235 + glRasterPos4s @236 + glRasterPos4sv @237 + glReadBuffer @238 + glReadPixels @239 + glRectd @240 + glRectdv @241 + glRectf @242 + glRectfv @243 + glRecti @244 + glRectiv @245 + glRects @246 + glRectsv @247 + glRenderMode @248 + glRotated @249 + glRotatef @250 + glScaled @251 + glScalef @252 + glScissor @253 + glSelectBuffer @254 + glShadeModel @255 + glStencilFunc @256 + glStencilMask @257 + glStencilOp @258 + glTexCoord1d @259 + glTexCoord1dv @260 + glTexCoord1f @261 + glTexCoord1fv @262 + glTexCoord1i @263 + glTexCoord1iv @264 + glTexCoord1s @265 + glTexCoord1sv @266 + glTexCoord2d @267 + glTexCoord2dv @268 + glTexCoord2f @269 + glTexCoord2fv @270 + glTexCoord2i @271 + glTexCoord2iv @272 + glTexCoord2s @273 + glTexCoord2sv @274 + glTexCoord3d @275 + glTexCoord3dv @276 + glTexCoord3f @277 + glTexCoord3fv @278 + glTexCoord3i @279 + glTexCoord3iv @280 + glTexCoord3s @281 + glTexCoord3sv @282 + glTexCoord4d @283 + glTexCoord4dv @284 + glTexCoord4f @285 + glTexCoord4fv @286 + glTexCoord4i @287 + glTexCoord4iv @288 + glTexCoord4s @289 + glTexCoord4sv @290 + glTexCoordPointer @291 + glTexEnvf @292 + glTexEnvfv @293 + glTexEnvi @294 + glTexEnviv @295 + glTexGend @296 + glTexGendv @297 + glTexGenf @298 + glTexGenfv @299 + glTexGeni @300 + glTexGeniv @301 + glTexImage1D @302 + glTexImage2D @303 + glTexParameterf @304 + glTexParameterfv @305 + glTexParameteri @306 + glTexParameteriv @307 + glTexSubImage1D @308 + glTexSubImage2D @309 + glTranslated @310 + glTranslatef @311 + glVertex2d @312 + glVertex2dv @313 + glVertex2f @314 + glVertex2fv @315 + glVertex2i @316 + glVertex2iv @317 + glVertex2s @318 + glVertex2sv @319 + glVertex3d @320 + glVertex3dv @321 + glVertex3f @322 + glVertex3fv @323 + glVertex3i @324 + glVertex3iv @325 + glVertex3s @326 + glVertex3sv @327 + glVertex4d @328 + glVertex4dv @329 + glVertex4f @330 + glVertex4fv @331 + glVertex4i @332 + glVertex4iv @333 + glVertex4s @334 + glVertex4sv @335 + glVertexPointer @336 + glViewport @337 + wglChoosePixelFormat @338 + wglCopyContext @339 + wglCreateContext @340 + wglCreateLayerContext @341 + wglDeleteContext @342 + wglDescribeLayerPlane @343 + wglDescribePixelFormat @344 + wglGetCurrentContext @345 + wglGetCurrentDC @346 + wglGetLayerPaletteEntries @347 + wglGetPixelFormat @348 + wglGetProcAddress @349 + wglMakeCurrent @350 + wglRealizeLayerPalette @351 + wglSetLayerPaletteEntries @352 + wglSetPixelFormat @353 + wglShareLists @354 + wglSwapBuffers @355 + wglSwapLayerBuffers @356 + wglUseFontBitmapsA @357 + wglUseFontBitmapsW @358 + wglUseFontOutlinesA @359 + wglUseFontOutlinesW @360 diff --git a/lib64/wine/libpdh.def b/lib64/wine/libpdh.def new file mode 100644 index 0000000..0a4ca8e --- /dev/null +++ b/lib64/wine/libpdh.def @@ -0,0 +1,168 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/pdh/pdh.spec; do not edit! + +LIBRARY pdh.dll + +EXPORTS + PdhPlaGetLogFileNameA @1 PRIVATE + PdhAdd009CounterA @2 PRIVATE + PdhAdd009CounterW @3 PRIVATE + PdhAddCounterA @4 + PdhAddCounterW @5 + PdhAddEnglishCounterA @6 + PdhAddEnglishCounterW @7 + PdhBindInputDataSourceA @8 + PdhBindInputDataSourceW @9 + PdhBrowseCountersA @10 PRIVATE + PdhBrowseCountersHA @11 PRIVATE + PdhBrowseCountersHW @12 PRIVATE + PdhBrowseCountersW @13 PRIVATE + PdhCalculateCounterFromRawValue @14 + PdhCloseLog @15 PRIVATE + PdhCloseQuery @16 + PdhCollectQueryData @17 + PdhCollectQueryDataWithTime @18 + PdhCollectQueryDataEx @19 + PdhComputeCounterStatistics @20 PRIVATE + PdhConnectMachineA @21 PRIVATE + PdhConnectMachineW @22 PRIVATE + PdhCreateSQLTablesA @23 PRIVATE + PdhCreateSQLTablesW @24 PRIVATE + PdhEnumLogSetNamesA @25 PRIVATE + PdhEnumLogSetNamesW @26 PRIVATE + PdhEnumMachinesA @27 PRIVATE + PdhEnumMachinesHA @28 PRIVATE + PdhEnumMachinesHW @29 PRIVATE + PdhEnumMachinesW @30 PRIVATE + PdhEnumObjectItemsA @31 + PdhEnumObjectItemsHA @32 PRIVATE + PdhEnumObjectItemsHW @33 PRIVATE + PdhEnumObjectItemsW @34 + PdhEnumObjectsA @35 PRIVATE + PdhEnumObjectsHA @36 PRIVATE + PdhEnumObjectsHW @37 PRIVATE + PdhEnumObjectsW @38 PRIVATE + PdhExpandCounterPathA @39 + PdhExpandCounterPathW @40 + PdhExpandWildCardPathA @41 + PdhExpandWildCardPathHA @42 PRIVATE + PdhExpandWildCardPathHW @43 PRIVATE + PdhExpandWildCardPathW @44 + PdhFormatFromRawValue @45 PRIVATE + PdhGetCounterInfoA @46 + PdhGetCounterInfoW @47 + PdhGetCounterTimeBase @48 + PdhGetDataSourceTimeRangeA @49 PRIVATE + PdhGetDataSourceTimeRangeH @50 PRIVATE + PdhGetDataSourceTimeRangeW @51 PRIVATE + PdhGetDefaultPerfCounterA @52 PRIVATE + PdhGetDefaultPerfCounterHA @53 PRIVATE + PdhGetDefaultPerfCounterHW @54 PRIVATE + PdhGetDefaultPerfCounterW @55 PRIVATE + PdhGetDefaultPerfObjectA @56 PRIVATE + PdhGetDefaultPerfObjectHA @57 PRIVATE + PdhGetDefaultPerfObjectHW @58 PRIVATE + PdhGetDefaultPerfObjectW @59 PRIVATE + PdhGetDllVersion @60 + PdhGetFormattedCounterArrayA @61 PRIVATE + PdhGetFormattedCounterArrayW @62 PRIVATE + PdhGetFormattedCounterValue @63 + PdhGetLogFileSize @64 PRIVATE + PdhGetLogFileTypeA @65 + PdhGetLogFileTypeW @66 + PdhGetLogSetGUID @67 PRIVATE + PdhGetRawCounterArrayA @68 PRIVATE + PdhGetRawCounterArrayW @69 PRIVATE + PdhGetRawCounterValue @70 + PdhIsRealTimeQuery @71 PRIVATE + PdhListLogFileHeaderA @72 PRIVATE + PdhListLogFileHeaderW @73 PRIVATE + PdhLogServiceCommandA @74 PRIVATE + PdhLogServiceCommandW @75 PRIVATE + PdhLogServiceControlA @76 PRIVATE + PdhLogServiceControlW @77 PRIVATE + PdhLookupPerfIndexByNameA @78 + PdhLookupPerfIndexByNameW @79 + PdhLookupPerfNameByIndexA @80 + PdhLookupPerfNameByIndexW @81 + PdhMakeCounterPathA @82 + PdhMakeCounterPathW @83 + PdhOpenLogA @84 PRIVATE + PdhOpenLogW @85 PRIVATE + PdhOpenQuery=PdhOpenQueryW @86 + PdhOpenQueryA @87 + PdhOpenQueryH @88 PRIVATE + PdhOpenQueryW @89 + PdhParseCounterPathA @90 PRIVATE + PdhParseCounterPathW @91 PRIVATE + PdhParseInstanceNameA @92 PRIVATE + PdhParseInstanceNameW @93 PRIVATE + PdhPlaAddItemA @94 PRIVATE + PdhPlaAddItemW @95 PRIVATE + PdhPlaCreateA @96 PRIVATE + PdhPlaCreateW @97 PRIVATE + PdhPlaDeleteA @98 PRIVATE + PdhPlaDeleteW @99 PRIVATE + PdhPlaEnumCollectionsA @100 PRIVATE + PdhPlaEnumCollectionsW @101 PRIVATE + PdhPlaGetInfoA @102 PRIVATE + PdhPlaGetInfoW @103 PRIVATE + PdhPlaGetLogFileNameW @104 PRIVATE + PdhPlaGetScheduleA @105 PRIVATE + PdhPlaGetScheduleW @106 PRIVATE + PdhPlaRemoveAllItemsA @107 PRIVATE + PdhPlaRemoveAllItemsW @108 PRIVATE + PdhPlaScheduleA @109 PRIVATE + PdhPlaScheduleW @110 PRIVATE + PdhPlaSetInfoA @111 PRIVATE + PdhPlaSetInfoW @112 PRIVATE + PdhPlaSetItemListA @113 PRIVATE + PdhPlaSetItemListW @114 PRIVATE + PdhPlaSetRunAsA @115 PRIVATE + PdhPlaSetRunAsW @116 PRIVATE + PdhPlaStartA @117 PRIVATE + PdhPlaStartW @118 PRIVATE + PdhPlaStopA @119 PRIVATE + PdhPlaStopW @120 PRIVATE + PdhPlaValidateInfoA @121 PRIVATE + PdhPlaValidateInfoW @122 PRIVATE + PdhReadRawLogRecord @123 PRIVATE + PdhRelogA @124 PRIVATE + PdhRelogW @125 PRIVATE + PdhRemoveCounter @126 + PdhSelectDataSourceA @127 PRIVATE + PdhSelectDataSourceW @128 PRIVATE + PdhSetCounterScaleFactor @129 + PdhSetDefaultRealTimeDataSource @130 + PdhSetLogSetRunID @131 PRIVATE + PdhSetQueryTimeRange @132 PRIVATE + PdhTranslate009CounterA @133 PRIVATE + PdhTranslate009CounterW @134 PRIVATE + PdhTranslateLocaleCounterA @135 PRIVATE + PdhTranslateLocaleCounterW @136 PRIVATE + PdhUpdateLogA @137 PRIVATE + PdhUpdateLogFileCatalog @138 PRIVATE + PdhUpdateLogW @139 PRIVATE + PdhValidatePathA @140 + PdhValidatePathExA @141 + PdhValidatePathExW @142 + PdhValidatePathW @143 + PdhVbAddCounter @144 + PdhVbCreateCounterPathList @145 PRIVATE + PdhVbGetCounterPathElements @146 PRIVATE + PdhVbGetCounterPathFromList @147 PRIVATE + PdhVbGetDoubleCounterValue @148 PRIVATE + PdhVbGetLogFileSize @149 PRIVATE + PdhVbGetOneCounterPath @150 PRIVATE + PdhVbIsGoodStatus @151 PRIVATE + PdhVbOpenLog @152 PRIVATE + PdhVbOpenQuery @153 PRIVATE + PdhVbUpdateLog @154 PRIVATE + PdhVerifySQLDBA @155 PRIVATE + PdhVerifySQLDBW @156 PRIVATE + PdhiPla2003SP1Installed @157 PRIVATE + PdhiPlaFormatBlanksA @158 PRIVATE + PdhiPlaFormatBlanksW @159 PRIVATE + PdhiPlaGetVersion @160 PRIVATE + PdhiPlaRunAs @161 PRIVATE + PdhiPlaSetRunAs @162 PRIVATE + PlaTimeInfoToMilliSeconds @163 PRIVATE diff --git a/lib64/wine/libpowrprof.def b/lib64/wine/libpowrprof.def new file mode 100644 index 0000000..657b381 --- /dev/null +++ b/lib64/wine/libpowrprof.def @@ -0,0 +1,31 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/powrprof/powrprof.spec; do not edit! + +LIBRARY powrprof.dll + +EXPORTS + CallNtPowerInformation @1 + CanUserWritePwrScheme @2 + DeletePwrScheme @3 + EnumPwrSchemes @4 + GetActivePwrScheme @5 + GetCurrentPowerPolicies @6 + GetPwrCapabilities @7 + GetPwrDiskSpindownRange @8 + IsAdminOverrideActive @9 + IsPwrHibernateAllowed @10 + IsPwrShutdownAllowed @11 + IsPwrSuspendAllowed @12 + PowerDeterminePlatformRole @13 + PowerDeterminePlatformRoleEx @14 + PowerEnumerate @15 + PowerGetActiveScheme @16 + PowerSetActiveScheme @17 + PowerReadDCValue @18 + ReadGlobalPwrPolicy @19 + ReadProcessorPwrScheme @20 + ReadPwrScheme @21 + SetActivePwrScheme @22 + SetSuspendState @23 + WriteGlobalPwrPolicy @24 + WriteProcessorPwrScheme @25 + WritePwrScheme @26 diff --git a/lib64/wine/libpropsys.def b/lib64/wine/libpropsys.def new file mode 100644 index 0000000..8552364 --- /dev/null +++ b/lib64/wine/libpropsys.def @@ -0,0 +1,192 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/propsys/propsys.spec; do not edit! + +LIBRARY propsys.dll + +EXPORTS + GetProxyDllInfo @3 PRIVATE + ClearPropVariantArray @4 PRIVATE + ClearVariantArray @5 PRIVATE + DllCanUnloadNow @6 PRIVATE + DllGetClassObject @7 PRIVATE + DllRegisterServer @8 PRIVATE + DllUnregisterServer @9 PRIVATE + InitPropVariantFromBooleanVector @10 PRIVATE + InitPropVariantFromBuffer @11 + InitPropVariantFromCLSID @12 + InitPropVariantFromDoubleVector @13 PRIVATE + InitPropVariantFromFileTime @14 PRIVATE + InitPropVariantFromFileTimeVector @15 PRIVATE + InitPropVariantFromGUIDAsString @16 + InitPropVariantFromInt16Vector @17 PRIVATE + InitPropVariantFromInt32Vector @18 PRIVATE + InitPropVariantFromInt64Vector @19 PRIVATE + InitPropVariantFromPropVariantVectorElem @20 PRIVATE + InitPropVariantFromResource @21 PRIVATE + InitPropVariantFromStrRet @22 PRIVATE + InitPropVariantFromStringAsVector @23 PRIVATE + InitPropVariantFromStringVector @24 PRIVATE + InitPropVariantFromUInt16Vector @25 PRIVATE + InitPropVariantFromUInt32Vector @26 PRIVATE + InitPropVariantFromUInt64Vector @27 PRIVATE + InitPropVariantVectorFromPropVariant @28 PRIVATE + InitVariantFromBooleanArray @29 PRIVATE + InitVariantFromBuffer @30 + InitVariantFromDoubleArray @31 PRIVATE + InitVariantFromFileTime @32 PRIVATE + InitVariantFromFileTimeArray @33 PRIVATE + InitVariantFromGUIDAsString @34 + InitVariantFromInt16Array @35 PRIVATE + InitVariantFromInt32Array @36 PRIVATE + InitVariantFromInt64Array @37 PRIVATE + InitVariantFromResource @38 PRIVATE + InitVariantFromStrRet @39 PRIVATE + InitVariantFromStringArray @40 PRIVATE + InitVariantFromUInt16Array @41 PRIVATE + InitVariantFromUInt32Array @42 PRIVATE + InitVariantFromUInt64Array @43 PRIVATE + InitVariantFromVariantArrayElem @44 PRIVATE + PSCoerceToCanonicalValue @45 PRIVATE + PSCreateAdapterFromPropertyStore @46 PRIVATE + PSCreateDelayedMultiplexPropertyStore @47 PRIVATE + PSCreateMemoryPropertyStore @48 + PSCreateMultiplexPropertyStore @49 PRIVATE + PSCreatePropertyChangeArray @50 PRIVATE + PSCreatePropertyStoreFromObject @51 PRIVATE + PSCreatePropertyStoreFromPropertySetStorage @52 PRIVATE + PSCreateSimplePropertyChange @53 PRIVATE + PSEnumeratePropertyDescriptions @54 PRIVATE + PSFormatForDisplay @55 PRIVATE + PSFormatForDisplayAlloc @56 PRIVATE + PSFormatPropertyValue @57 PRIVATE + PSGetItemPropertyHandler @58 PRIVATE + PSGetItemPropertyHandlerWithCreateObject @59 PRIVATE + PSGetNameFromPropertyKey @60 PRIVATE + PSGetNamedPropertyFromPropertyStorage @61 PRIVATE + PSGetPropertyDescription @62 + PSGetPropertyDescriptionByName @63 PRIVATE + PSGetPropertyDescriptionListFromString @64 + PSGetPropertyFromPropertyStorage @65 PRIVATE + PSGetPropertyKeyFromName @66 + PSGetPropertySystem @67 + PSGetPropertyValue @68 PRIVATE + PSLookupPropertyHandlerCLSID @69 PRIVATE + PSPropertyKeyFromString @70 + PSRefreshPropertySchema @71 + PSRegisterPropertySchema @72 + PSSetPropertyValue @73 PRIVATE + PSStringFromPropertyKey @74 + PSUnregisterPropertySchema @75 + PropVariantChangeType @76 + PropVariantCompareEx @77 + PropVariantGetBooleanElem @78 PRIVATE + PropVariantGetDoubleElem @79 PRIVATE + PropVariantGetElementCount @80 PRIVATE + PropVariantGetFileTimeElem @81 PRIVATE + PropVariantGetInt16Elem @82 PRIVATE + PropVariantGetInt32Elem @83 PRIVATE + PropVariantGetInt64Elem @84 PRIVATE + PropVariantGetStringElem @85 PRIVATE + PropVariantGetUInt16Elem @86 PRIVATE + PropVariantGetUInt32Elem @87 PRIVATE + PropVariantGetUInt64Elem @88 PRIVATE + PropVariantToBSTR @89 PRIVATE + PropVariantToBoolean @90 + PropVariantToBooleanVector @91 PRIVATE + PropVariantToBooleanVectorAlloc @92 PRIVATE + PropVariantToBooleanWithDefault @93 PRIVATE + PropVariantToBuffer @94 + PropVariantToDouble @95 + PropVariantToDoubleVector @96 PRIVATE + PropVariantToDoubleVectorAlloc @97 PRIVATE + PropVariantToDoubleWithDefault @98 PRIVATE + PropVariantToFileTime @99 PRIVATE + PropVariantToFileTimeVector @100 PRIVATE + PropVariantToFileTimeVectorAlloc @101 PRIVATE + PropVariantToGUID @102 + PropVariantToInt16 @103 + PropVariantToInt16Vector @104 PRIVATE + PropVariantToInt16VectorAlloc @105 PRIVATE + PropVariantToInt16WithDefault @106 PRIVATE + PropVariantToInt32 @107 + PropVariantToInt32Vector @108 PRIVATE + PropVariantToInt32VectorAlloc @109 PRIVATE + PropVariantToInt32WithDefault @110 PRIVATE + PropVariantToInt64 @111 + PropVariantToInt64Vector @112 PRIVATE + PropVariantToInt64VectorAlloc @113 PRIVATE + PropVariantToInt64WithDefault @114 PRIVATE + PropVariantToStrRet @115 PRIVATE + PropVariantToString @116 + PropVariantToStringAlloc @117 + PropVariantToStringVector @118 PRIVATE + PropVariantToStringVectorAlloc @119 PRIVATE + PropVariantToStringWithDefault @120 + PropVariantToUInt16 @121 + PropVariantToUInt16Vector @122 PRIVATE + PropVariantToUInt16VectorAlloc @123 PRIVATE + PropVariantToUInt16WithDefault @124 PRIVATE + PropVariantToUInt32 @125 + PropVariantToUInt32Vector @126 PRIVATE + PropVariantToUInt32VectorAlloc @127 PRIVATE + PropVariantToUInt32WithDefault @128 PRIVATE + PropVariantToUInt64 @129 + PropVariantToUInt64Vector @130 PRIVATE + PropVariantToUInt64VectorAlloc @131 PRIVATE + PropVariantToUInt64WithDefault @132 PRIVATE + PropVariantToVariant @133 PRIVATE + StgDeserializePropVariant @134 PRIVATE + StgSerializePropVariant @135 PRIVATE + VariantCompare @136 PRIVATE + VariantGetBooleanElem @137 PRIVATE + VariantGetDoubleElem @138 PRIVATE + VariantGetElementCount @139 PRIVATE + VariantGetInt16Elem @140 PRIVATE + VariantGetInt32Elem @141 PRIVATE + VariantGetInt64Elem @142 PRIVATE + VariantGetStringElem @143 PRIVATE + VariantGetUInt16Elem @144 PRIVATE + VariantGetUInt32Elem @145 PRIVATE + VariantGetUInt64Elem @146 PRIVATE + VariantToBoolean @147 PRIVATE + VariantToBooleanArray @148 PRIVATE + VariantToBooleanArrayAlloc @149 PRIVATE + VariantToBooleanWithDefault @150 PRIVATE + VariantToBuffer @151 PRIVATE + VariantToDosDateTime @152 PRIVATE + VariantToDouble @153 PRIVATE + VariantToDoubleArray @154 PRIVATE + VariantToDoubleArrayAlloc @155 PRIVATE + VariantToDoubleWithDefault @156 PRIVATE + VariantToFileTime @157 PRIVATE + VariantToGUID @158 + VariantToInt16 @159 PRIVATE + VariantToInt16Array @160 PRIVATE + VariantToInt16ArrayAlloc @161 PRIVATE + VariantToInt16WithDefault @162 PRIVATE + VariantToInt32 @163 PRIVATE + VariantToInt32Array @164 PRIVATE + VariantToInt32ArrayAlloc @165 PRIVATE + VariantToInt32WithDefault @166 PRIVATE + VariantToInt64 @167 PRIVATE + VariantToInt64Array @168 PRIVATE + VariantToInt64ArrayAlloc @169 PRIVATE + VariantToInt64WithDefault @170 PRIVATE + VariantToPropVariant @171 PRIVATE + VariantToStrRet @172 PRIVATE + VariantToString @173 PRIVATE + VariantToStringAlloc @174 PRIVATE + VariantToStringArray @175 PRIVATE + VariantToStringArrayAlloc @176 PRIVATE + VariantToStringWithDefault @177 PRIVATE + VariantToUInt16 @178 PRIVATE + VariantToUInt16Array @179 PRIVATE + VariantToUInt16ArrayAlloc @180 PRIVATE + VariantToUInt16WithDefault @181 PRIVATE + VariantToUInt32 @182 PRIVATE + VariantToUInt32Array @183 PRIVATE + VariantToUInt32ArrayAlloc @184 PRIVATE + VariantToUInt32WithDefault @185 PRIVATE + VariantToUInt64 @186 PRIVATE + VariantToUInt64Array @187 PRIVATE + VariantToUInt64ArrayAlloc @188 PRIVATE + VariantToUInt64WithDefault @189 PRIVATE diff --git a/lib64/wine/libpsapi.def b/lib64/wine/libpsapi.def new file mode 100644 index 0000000..2771b45 --- /dev/null +++ b/lib64/wine/libpsapi.def @@ -0,0 +1,31 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/psapi/psapi.spec; do not edit! + +LIBRARY psapi.dll + +EXPORTS + EmptyWorkingSet=kernel32.K32EmptyWorkingSet @1 + EnumDeviceDrivers=kernel32.K32EnumDeviceDrivers @2 + EnumPageFilesA=kernel32.K32EnumPageFilesA @3 + EnumPageFilesW=kernel32.K32EnumPageFilesW @4 + EnumProcessModules=kernel32.K32EnumProcessModules @5 + EnumProcessModulesEx=kernel32.K32EnumProcessModulesEx @6 + EnumProcesses=kernel32.K32EnumProcesses @7 + GetDeviceDriverBaseNameA=kernel32.K32GetDeviceDriverBaseNameA @8 + GetDeviceDriverBaseNameW=kernel32.K32GetDeviceDriverBaseNameW @9 + GetDeviceDriverFileNameA=kernel32.K32GetDeviceDriverFileNameA @10 + GetDeviceDriverFileNameW=kernel32.K32GetDeviceDriverFileNameW @11 + GetMappedFileNameA=kernel32.K32GetMappedFileNameA @12 + GetMappedFileNameW=kernel32.K32GetMappedFileNameW @13 + GetModuleBaseNameA=kernel32.K32GetModuleBaseNameA @14 + GetModuleBaseNameW=kernel32.K32GetModuleBaseNameW @15 + GetModuleFileNameExA=kernel32.K32GetModuleFileNameExA @16 + GetModuleFileNameExW=kernel32.K32GetModuleFileNameExW @17 + GetModuleInformation=kernel32.K32GetModuleInformation @18 + GetPerformanceInfo=kernel32.K32GetPerformanceInfo @19 + GetProcessImageFileNameA=kernel32.K32GetProcessImageFileNameA @20 + GetProcessImageFileNameW=kernel32.K32GetProcessImageFileNameW @21 + GetProcessMemoryInfo=kernel32.K32GetProcessMemoryInfo @22 + GetWsChanges=kernel32.K32GetWsChanges @23 + InitializeProcessForWsWatch=kernel32.K32InitializeProcessForWsWatch @24 + QueryWorkingSet=kernel32.K32QueryWorkingSet @25 + QueryWorkingSetEx=kernel32.K32QueryWorkingSetEx @26 diff --git a/lib64/wine/libquartz.def b/lib64/wine/libquartz.def new file mode 100644 index 0000000..728b151 --- /dev/null +++ b/lib64/wine/libquartz.def @@ -0,0 +1,14 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/quartz/quartz.spec; do not edit! + +LIBRARY quartz.dll + +EXPORTS + AMGetErrorTextA @1 + AMGetErrorTextW @2 + AmpFactorToDB @3 + DBToAmpFactor @4 + DllCanUnloadNow @5 PRIVATE + DllGetClassObject @6 PRIVATE + DllRegisterServer @7 PRIVATE + DllUnregisterServer @8 PRIVATE + GetProxyDllInfo @9 PRIVATE diff --git a/lib64/wine/librasapi32.def b/lib64/wine/librasapi32.def new file mode 100644 index 0000000..73ac288 --- /dev/null +++ b/lib64/wine/librasapi32.def @@ -0,0 +1,132 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/rasapi32/rasapi32.spec; do not edit! + +LIBRARY rasapi32.dll + +EXPORTS + RasAutodialAddressToNetwork @538 PRIVATE + RasAutodialEntryToNetwork @539 PRIVATE + RasConnectionNotificationA @540 + RasConnectionNotificationW @541 + RasCreatePhonebookEntryA @542 + RasCreatePhonebookEntryW @543 + RasDeleteEntryA @544 + RasDeleteEntryW @545 + RasDeleteSubEntryA @546 + RasDeleteSubEntryW @547 + RasDialA @548 + RasDialW @549 + RasDialWow @550 PRIVATE + RasEditPhonebookEntryA @551 + RasEditPhonebookEntryW @552 + RasEnumAutodialAddressesA @553 + RasEnumAutodialAddressesW @554 + RasEnumConnectionsA @555 + RasEnumConnectionsW @556 + RasEnumConnectionsWow @557 PRIVATE + RasEnumDevicesA @558 + RasEnumDevicesW @559 + RasEnumEntriesA @570 + RasEnumEntriesW @571 + RasEnumEntriesWow @572 PRIVATE + RasGetAutodialAddressA @573 + RasGetAutodialAddressW @574 + RasGetAutodialEnableA @575 + RasGetAutodialEnableW @576 + RasGetAutodialParamA @577 + RasGetAutodialParamW @578 + RasGetConnectResponse @579 PRIVATE + RasGetConnectStatusA @580 + RasGetConnectStatusW @581 + RasGetConnectStatusWow @582 PRIVATE + RasGetConnectionStatistics @583 + RasGetCountryInfoA @584 PRIVATE + RasGetCountryInfoW @585 PRIVATE + RasGetCredentialsA @586 PRIVATE + RasGetCredentialsW @587 PRIVATE + RasGetEntryDialParamsA @588 + RasGetEntryDialParamsW @589 + RasGetEntryPropertiesA @590 + RasGetEntryPropertiesW @591 + RasGetErrorStringA @592 + RasGetErrorStringW @593 + RasGetErrorStringWow @594 PRIVATE + RasGetHport @595 PRIVATE + RasGetLinkStatistics @596 + RasGetProjectionInfoA @597 + RasGetProjectionInfoW @598 + RasGetSubEntryHandleA @599 PRIVATE + RasGetSubEntryHandleW @600 PRIVATE + RasGetSubEntryPropertiesA @601 PRIVATE + RasGetSubEntryPropertiesW @602 PRIVATE + RasHangUpA @603 + RasHangUpW @604 + RasHangUpWow @605 PRIVATE + RasRenameEntryA @606 + RasRenameEntryW @607 + RasSetAutodialAddressA @608 + RasSetAutodialAddressW @609 + RasSetAutodialEnableA @610 + RasSetAutodialEnableW @611 + RasSetAutodialParamA @612 + RasSetAutodialParamW @613 + RasSetCredentialsA @614 PRIVATE + RasSetCredentialsW @615 PRIVATE + RasSetCustomAuthDataA @616 + RasSetCustomAuthDataW @617 + RasSetEntryDialParamsA @618 + RasSetEntryDialParamsW @619 + RasSetEntryPropertiesA @620 + RasSetEntryPropertiesW @621 + RasSetOldPassword @622 PRIVATE + RasSetSubEntryPropertiesA @623 + RasSetSubEntryPropertiesW @624 + RasValidateEntryNameA @625 + RasValidateEntryNameW @626 + RnaEngineRequest @500 PRIVATE + DialEngineRequest @501 PRIVATE + SuprvRequest @502 PRIVATE + DialInMessage @503 PRIVATE + RnaEnumConnEntries @504 PRIVATE + RnaGetConnEntry @505 PRIVATE + RnaFreeConnEntry @506 PRIVATE + RnaSaveConnEntry @507 PRIVATE + RnaDeleteConnEntry @508 PRIVATE + RnaRenameConnEntry @509 PRIVATE + RnaValidateEntryName @510 PRIVATE + RnaEnumDevices @511 PRIVATE + RnaGetDeviceInfo @512 PRIVATE + RnaGetDefaultDevConfig @513 PRIVATE + RnaBuildDevConfig @514 PRIVATE + RnaDevConfigDlg @515 PRIVATE + RnaFreeDevConfig @516 PRIVATE + RnaActivateEngine @517 PRIVATE + RnaDeactivateEngine @518 PRIVATE + SuprvEnumAccessInfo @519 PRIVATE + SuprvGetAccessInfo @520 PRIVATE + SuprvSetAccessInfo @521 PRIVATE + SuprvGetAdminConfig @522 PRIVATE + SuprvInitialize @523 PRIVATE + SuprvDeInitialize @524 PRIVATE + RnaUIDial @525 PRIVATE + RnaImplicitDial @526 PRIVATE + RasDial16 @527 PRIVATE + RnaSMMInfoDialog @528 PRIVATE + RnaEnumerateMacNames @529 PRIVATE + RnaEnumCountryInfo @530 PRIVATE + RnaGetAreaCodeList @531 PRIVATE + RnaFindDriver @532 PRIVATE + RnaInstallDriver @533 PRIVATE + RnaGetDialSettings @534 PRIVATE + RnaSetDialSettings @535 PRIVATE + RnaGetIPInfo @536 PRIVATE + RnaSetIPInfo @537 PRIVATE + RnaCloseMac @560 PRIVATE + RnaComplete @561 PRIVATE + RnaGetDevicePort @562 PRIVATE + RnaGetUserProfile @563 PRIVATE + RnaOpenMac @564 PRIVATE + RnaSessInitialize @565 PRIVATE + RnaStartCallback @566 PRIVATE + RnaTerminate @567 PRIVATE + RnaUICallbackDialog @568 PRIVATE + RnaUIUsernamePassword @569 PRIVATE diff --git a/lib64/wine/librasdlg.def b/lib64/wine/librasdlg.def new file mode 100644 index 0000000..16f49dd --- /dev/null +++ b/lib64/wine/librasdlg.def @@ -0,0 +1,41 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/rasdlg/rasdlg.spec; do not edit! + +LIBRARY rasdlg.dll + +EXPORTS + DwTerminalDlg @1 PRIVATE + GetRasDialOutProtocols @2 PRIVATE + RasAutodialDisableDlgA @3 PRIVATE + RasAutodialDisableDlgW @4 PRIVATE + RasAutodialQueryDlgA @5 PRIVATE + RasAutodialQueryDlgW @6 PRIVATE + RasDialDlgA @7 PRIVATE + RasDialDlgW @8 PRIVATE + RasEntryDlgA @9 PRIVATE + RasEntryDlgW @10 + RasMonitorDlgA @11 PRIVATE + RasMonitorDlgW @12 PRIVATE + RasPhonebookDlgA @13 PRIVATE + RasPhonebookDlgW @14 PRIVATE + RasSrvAddPropPages @15 PRIVATE + RasSrvAddWizPages @16 PRIVATE + RasSrvAllowConnectionsConfig @17 PRIVATE + RasSrvCleanupService @18 PRIVATE + RasSrvEnumConnections @19 PRIVATE + RasSrvHangupConnection @20 PRIVATE + RasSrvInitializeService @21 PRIVATE + RasSrvIsConnectionConnected @22 PRIVATE + RasSrvIsServiceRunning @23 PRIVATE + RasSrvQueryShowIcon @24 PRIVATE + RasUserEnableManualDial @25 PRIVATE + RasUserGetManualDial @26 PRIVATE + RasUserPrefsDlg @27 PRIVATE + RasWizCreateNewEntry @28 PRIVATE + RasWizGetNCCFlags @29 PRIVATE + RasWizGetSuggestedEntryName @30 PRIVATE + RasWizGetUserInputConnectionName @31 PRIVATE + RasWizIsEntryRenamable @32 PRIVATE + RasWizQueryMaxPageCount @33 PRIVATE + RasWizSetEntryName @34 PRIVATE + RouterEntryDlgA @35 PRIVATE + RouterEntryDlgW @36 PRIVATE diff --git a/lib64/wine/libresutils.def b/lib64/wine/libresutils.def new file mode 100644 index 0000000..e63f218 --- /dev/null +++ b/lib64/wine/libresutils.def @@ -0,0 +1,76 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/resutils/resutils.spec; do not edit! + +LIBRARY resutils.dll + +EXPORTS + ClusWorkerCheckTerminate @1 PRIVATE + ClusWorkerCreate @2 PRIVATE + ClusWorkerStart @3 PRIVATE + ClusWorkerTerminate @4 PRIVATE + ResUtilAddUnknownProperties @5 PRIVATE + ResUtilCreateDirectoryTree @6 PRIVATE + ResUtilDupParameterBlock @7 PRIVATE + ResUtilDupString @8 PRIVATE + ResUtilEnumPrivateProperties @9 PRIVATE + ResUtilEnumProperties @10 PRIVATE + ResUtilEnumResources @11 PRIVATE + ResUtilEnumResourcesEx @12 PRIVATE + ResUtilExpandEnvironmentStrings @13 PRIVATE + ResUtilFindBinaryProperty @14 PRIVATE + ResUtilFindDependentDiskResourceDriveLetter @15 PRIVATE + ResUtilFindDwordProperty @16 PRIVATE + ResUtilFindExpandSzProperty @17 PRIVATE + ResUtilFindExpandedSzProperty @18 PRIVATE + ResUtilFindLongProperty @19 PRIVATE + ResUtilFindMultiSzProperty @20 PRIVATE + ResUtilFindSzProperty @21 PRIVATE + ResUtilFreeEnvironment @22 PRIVATE + ResUtilFreeParameterBlock @23 PRIVATE + ResUtilGetAllProperties @24 PRIVATE + ResUtilGetBinaryProperty @25 PRIVATE + ResUtilGetBinaryValue @26 PRIVATE + ResUtilGetCoreClusterResources @27 PRIVATE + ResUtilGetDwordProperty @28 PRIVATE + ResUtilGetDwordValue @29 PRIVATE + ResUtilGetEnvironmentWithNetName @30 PRIVATE + ResUtilGetMultiSzProperty @31 PRIVATE + ResUtilGetPrivateProperties @32 PRIVATE + ResUtilGetProperties @33 PRIVATE + ResUtilGetPropertiesToParameterBlock @34 PRIVATE + ResUtilGetProperty @35 PRIVATE + ResUtilGetPropertyFormats @36 PRIVATE + ResUtilGetPropertySize @37 PRIVATE + ResUtilGetResourceDependency @38 PRIVATE + ResUtilGetResourceDependencyByClass @39 PRIVATE + ResUtilGetResourceDependencyByName @40 PRIVATE + ResUtilGetResourceDependentIPAddressProps @41 PRIVATE + ResUtilGetResourceName @42 PRIVATE + ResUtilGetResourceNameDependency @43 PRIVATE + ResUtilGetSzProperty @44 PRIVATE + ResUtilGetSzValue @45 PRIVATE + ResUtilIsPathValid @46 PRIVATE + ResUtilIsResourceClassEqual @47 PRIVATE + ResUtilPropertyListFromParameterBlock @48 PRIVATE + ResUtilResourceTypesEqual @49 PRIVATE + ResUtilResourcesEqual @50 PRIVATE + ResUtilSetBinaryValue @51 PRIVATE + ResUtilSetDwordValue @52 PRIVATE + ResUtilSetExpandSzValue @53 PRIVATE + ResUtilSetMultiSzValue @54 PRIVATE + ResUtilSetPrivatePropertyList @55 PRIVATE + ResUtilSetPropertyParameterBlock @56 PRIVATE + ResUtilSetPropertyParameterBlockEx @57 PRIVATE + ResUtilSetPropertyTable @58 PRIVATE + ResUtilSetPropertyTableEx @59 PRIVATE + ResUtilSetResourceServiceEnvironment @60 PRIVATE + ResUtilSetResourceServiceStartParameters @61 PRIVATE + ResUtilSetSzValue @62 PRIVATE + ResUtilSetUnknownProperties @63 PRIVATE + ResUtilStartResourceService @64 PRIVATE + ResUtilStopResourceService @65 PRIVATE + ResUtilStopService @66 PRIVATE + ResUtilTerminateServiceProcessFromResDll @67 PRIVATE + ResUtilVerifyPrivatePropertyList @68 PRIVATE + ResUtilVerifyPropertyTable @69 PRIVATE + ResUtilVerifyResourceService @70 PRIVATE + ResUtilVerifyService @71 PRIVATE diff --git a/lib64/wine/libriched20.def b/lib64/wine/libriched20.def new file mode 100644 index 0000000..e142f79 --- /dev/null +++ b/lib64/wine/libriched20.def @@ -0,0 +1,14 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/riched20/riched20.spec; do not edit! + +LIBRARY riched20.dll + +EXPORTS + IID_IRichEditOle @2 DATA + IID_IRichEditOleCallback @3 DATA + CreateTextServices @4 + IID_ITextServices @5 DATA + IID_ITextHost @6 DATA + IID_ITextHost2 @7 DATA + REExtendedRegisterClass @8 + RichEdit10ANSIWndProc @9 + RichEditANSIWndProc @10 diff --git a/lib64/wine/librpcrt4.def b/lib64/wine/librpcrt4.def new file mode 100644 index 0000000..474f015 --- /dev/null +++ b/lib64/wine/librpcrt4.def @@ -0,0 +1,533 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/rpcrt4/rpcrt4.spec; do not edit! + +LIBRARY rpcrt4.dll + +EXPORTS + CreateProxyFromTypeInfo @1 + CreateStubFromTypeInfo @2 + CStdStubBuffer_AddRef @3 + CStdStubBuffer_Connect @4 + CStdStubBuffer_CountRefs @5 + CStdStubBuffer_DebugServerQueryInterface @6 + CStdStubBuffer_DebugServerRelease @7 + CStdStubBuffer_Disconnect @8 + CStdStubBuffer_Invoke @9 + CStdStubBuffer_IsIIDSupported @10 + CStdStubBuffer_QueryInterface @11 + CreateServerInterfaceFromStub @12 PRIVATE + DceErrorInqTextA @13 + DceErrorInqTextW @14 + DllRegisterServer @15 PRIVATE + GlobalMutexClearExternal @16 PRIVATE + GlobalMutexRequestExternal @17 PRIVATE + IUnknown_AddRef_Proxy @18 + IUnknown_QueryInterface_Proxy @19 + IUnknown_Release_Proxy @20 + I_RpcAbortAsyncCall=I_RpcAsyncAbortCall @21 + I_RpcAllocate @22 + I_RpcAsyncAbortCall @23 + I_RpcAsyncSetHandle @24 + I_RpcBCacheAllocate @25 PRIVATE + I_RpcBCacheFree @26 PRIVATE + I_RpcBindingCopy @27 PRIVATE + I_RpcBindingInqConnId @28 PRIVATE + I_RpcBindingInqDynamicEndPoint @29 PRIVATE + I_RpcBindingInqDynamicEndPointA @30 PRIVATE + I_RpcBindingInqDynamicEndPointW @31 PRIVATE + I_RpcBindingInqLocalClientPID @32 + I_RpcBindingInqSecurityContext @33 PRIVATE + I_RpcBindingInqTransportType @34 + I_RpcBindingInqWireIdForSnego @35 PRIVATE + I_RpcBindingIsClientLocal @36 PRIVATE + I_RpcBindingSetAsync @37 + I_RpcBindingToStaticStringBindingW @38 PRIVATE + I_RpcClearMutex @39 PRIVATE + I_RpcConnectionInqSockBuffSize @40 PRIVATE + I_RpcConnectionSetSockBuffSize @41 PRIVATE + I_RpcDeleteMutex @42 PRIVATE + I_RpcEnableWmiTrace @43 PRIVATE + I_RpcExceptionFilter=RpcExceptionFilter @44 + I_RpcFree @45 + I_RpcFreeBuffer @46 + I_RpcFreePipeBuffer @47 PRIVATE + I_RpcGetBuffer @48 + I_RpcGetBufferWithObject @49 PRIVATE + I_RpcGetCurrentCallHandle @50 + I_RpcGetExtendedError @51 PRIVATE + I_RpcIfInqTransferSyntaxes @52 PRIVATE + I_RpcLogEvent @53 PRIVATE + I_RpcMapWin32Status @54 + I_RpcNegotiateTransferSyntax @55 + I_RpcNsBindingSetEntryName @56 PRIVATE + I_RpcNsBindingSetEntryNameA @57 PRIVATE + I_RpcNsBindingSetEntryNameW @58 PRIVATE + I_RpcNsInterfaceExported @59 PRIVATE + I_RpcNsInterfaceUnexported @60 PRIVATE + I_RpcParseSecurity @61 PRIVATE + I_RpcPauseExecution @62 PRIVATE + I_RpcProxyNewConnection @63 PRIVATE + I_RpcReallocPipeBuffer @64 PRIVATE + I_RpcReceive @65 + I_RpcRequestMutex @66 PRIVATE + I_RpcSend @67 + I_RpcSendReceive @68 + I_RpcServerAllocateIpPort @69 PRIVATE + I_RpcServerInqAddressChangeFn @70 PRIVATE + I_RpcServerInqLocalConnAddress @71 PRIVATE + I_RpcServerInqTransportType @72 PRIVATE + I_RpcServerRegisterForwardFunction @73 PRIVATE + I_RpcServerSetAddressChangeFn @74 PRIVATE + I_RpcServerStartListening @75 + I_RpcServerStopListening @76 + I_RpcServerUseProtseq2A @77 PRIVATE + I_RpcServerUseProtseq2W @78 PRIVATE + I_RpcServerUseProtseqEp2A @79 PRIVATE + I_RpcServerUseProtseqEp2W @80 PRIVATE + I_RpcSetAsyncHandle @81 PRIVATE + I_RpcSsDontSerializeContext @82 PRIVATE + I_RpcSystemFunction001 @83 PRIVATE + I_RpcTransConnectionAllocatePacket @84 PRIVATE + I_RpcTransConnectionFreePacket @85 PRIVATE + I_RpcTransConnectionReallocPacket @86 PRIVATE + I_RpcTransDatagramAllocate2 @87 PRIVATE + I_RpcTransDatagramAllocate @88 PRIVATE + I_RpcTransDatagramFree @89 PRIVATE + I_RpcTransGetThreadEvent @90 PRIVATE + I_RpcTransIoCancelled @91 PRIVATE + I_RpcTransServerNewConnection @92 PRIVATE + I_RpcTurnOnEEInfoPropagation @93 PRIVATE + I_RpcWindowProc @94 + I_UuidCreate @95 + MIDL_wchar_strcpy @96 PRIVATE + MIDL_wchar_strlen @97 PRIVATE + MesBufferHandleReset @98 + MesDecodeBufferHandleCreate @99 + MesDecodeIncrementalHandleCreate @100 + MesEncodeDynBufferHandleCreate @101 + MesEncodeFixedBufferHandleCreate @102 + MesEncodeIncrementalHandleCreate @103 + MesHandleFree @104 + MesIncrementalHandleReset @105 + MesInqProcEncodingId @106 PRIVATE + NDRCContextBinding @107 + NDRCContextMarshall @108 + NDRCContextUnmarshall @109 + NDRSContextMarshall2 @110 + NDRSContextMarshall @111 + NDRSContextMarshallEx @112 + NDRSContextUnmarshall2 @113 + NDRSContextUnmarshall @114 + NDRSContextUnmarshallEx @115 + NDRcopy @116 PRIVATE + NdrAllocate @117 + NdrAsyncClientCall @118 + NdrAsyncServerCall @119 + NdrAsyncStubCall @120 + NdrByteCountPointerBufferSize @121 + NdrByteCountPointerFree @122 + NdrByteCountPointerMarshall @123 + NdrByteCountPointerUnmarshall @124 + NdrCStdStubBuffer2_Release @125 + NdrCStdStubBuffer_Release @126 + NdrClearOutParameters @127 + NdrClientCall2 @128 + NdrClientContextMarshall @129 + NdrClientContextUnmarshall @130 + NdrClientInitialize @131 PRIVATE + NdrClientInitializeNew @132 + NdrComplexArrayBufferSize @133 + NdrComplexArrayFree @134 + NdrComplexArrayMarshall @135 + NdrComplexArrayMemorySize @136 + NdrComplexArrayUnmarshall @137 + NdrComplexStructBufferSize @138 + NdrComplexStructFree @139 + NdrComplexStructMarshall @140 + NdrComplexStructMemorySize @141 + NdrComplexStructUnmarshall @142 + NdrConformantArrayBufferSize @143 + NdrConformantArrayFree @144 + NdrConformantArrayMarshall @145 + NdrConformantArrayMemorySize @146 + NdrConformantArrayUnmarshall @147 + NdrConformantStringBufferSize @148 + NdrConformantStringMarshall @149 + NdrConformantStringMemorySize @150 + NdrConformantStringUnmarshall @151 + NdrConformantStructBufferSize @152 + NdrConformantStructFree @153 + NdrConformantStructMarshall @154 + NdrConformantStructMemorySize @155 + NdrConformantStructUnmarshall @156 + NdrConformantVaryingArrayBufferSize @157 + NdrConformantVaryingArrayFree @158 + NdrConformantVaryingArrayMarshall @159 + NdrConformantVaryingArrayMemorySize @160 + NdrConformantVaryingArrayUnmarshall @161 + NdrConformantVaryingStructBufferSize @162 + NdrConformantVaryingStructFree @163 + NdrConformantVaryingStructMarshall @164 + NdrConformantVaryingStructMemorySize @165 + NdrConformantVaryingStructUnmarshall @166 + NdrContextHandleInitialize @167 + NdrContextHandleSize @168 + NdrConvert2 @169 + NdrConvert @170 + NdrCorrelationFree @171 + NdrCorrelationInitialize @172 + NdrCorrelationPass @173 + NdrDcomAsyncClientCall @174 PRIVATE + NdrDcomAsyncStubCall @175 PRIVATE + NdrDllCanUnloadNow @176 + NdrDllGetClassObject @177 + NdrDllRegisterProxy @178 + NdrDllUnregisterProxy @179 + NdrEncapsulatedUnionBufferSize @180 + NdrEncapsulatedUnionFree @181 + NdrEncapsulatedUnionMarshall @182 + NdrEncapsulatedUnionMemorySize @183 + NdrEncapsulatedUnionUnmarshall @184 + NdrFixedArrayBufferSize @185 + NdrFixedArrayFree @186 + NdrFixedArrayMarshall @187 + NdrFixedArrayMemorySize @188 + NdrFixedArrayUnmarshall @189 + NdrFreeBuffer @190 + NdrFullPointerFree @191 + NdrFullPointerInsertRefId @192 + NdrFullPointerQueryPointer @193 + NdrFullPointerQueryRefId @194 + NdrFullPointerXlatFree @195 + NdrFullPointerXlatInit @196 + NdrGetBuffer @197 + NdrGetDcomProtocolVersion @198 PRIVATE + NdrGetPartialBuffer @199 PRIVATE + NdrGetPipeBuffer @200 PRIVATE + NdrGetSimpleTypeBufferAlignment @201 PRIVATE + NdrGetSimpleTypeBufferSize @202 PRIVATE + NdrGetSimpleTypeMemorySize @203 PRIVATE + NdrGetTypeFlags @204 PRIVATE + NdrGetUserMarshalInfo @205 + NdrHardStructBufferSize @206 PRIVATE + NdrHardStructFree @207 PRIVATE + NdrHardStructMarshall @208 PRIVATE + NdrHardStructMemorySize @209 PRIVATE + NdrHardStructUnmarshall @210 PRIVATE + NdrInterfacePointerBufferSize @211 + NdrInterfacePointerFree @212 + NdrInterfacePointerMarshall @213 + NdrInterfacePointerMemorySize @214 + NdrInterfacePointerUnmarshall @215 + NdrIsAppDoneWithPipes @216 PRIVATE + NdrMapCommAndFaultStatus @217 + NdrMarkNextActivePipe @218 PRIVATE + NdrMesProcEncodeDecode2 @219 PRIVATE + NdrMesProcEncodeDecode @220 + NdrMesSimpleTypeAlignSize @221 PRIVATE + NdrMesSimpleTypeDecode @222 PRIVATE + NdrMesSimpleTypeEncode @223 PRIVATE + NdrMesTypeAlignSize2 @224 PRIVATE + NdrMesTypeAlignSize @225 PRIVATE + NdrMesTypeDecode2 @226 + NdrMesTypeDecode @227 PRIVATE + NdrMesTypeEncode2 @228 + NdrMesTypeEncode @229 PRIVATE + NdrMesTypeFree2 @230 + NdrNonConformantStringBufferSize @231 + NdrNonConformantStringMarshall @232 + NdrNonConformantStringMemorySize @233 + NdrNonConformantStringUnmarshall @234 + NdrNonEncapsulatedUnionBufferSize @235 + NdrNonEncapsulatedUnionFree @236 + NdrNonEncapsulatedUnionMarshall @237 + NdrNonEncapsulatedUnionMemorySize @238 + NdrNonEncapsulatedUnionUnmarshall @239 + NdrNsGetBuffer @240 PRIVATE + NdrNsSendReceive @241 PRIVATE + NdrOleAllocate @242 + NdrOleFree @243 + NdrOutInit @244 PRIVATE + NdrPartialIgnoreClientBufferSize @245 PRIVATE + NdrPartialIgnoreClientMarshall @246 PRIVATE + NdrPartialIgnoreServerInitialize @247 PRIVATE + NdrPartialIgnoreServerUnmarshall @248 PRIVATE + NdrPipePull @249 PRIVATE + NdrPipePush @250 PRIVATE + NdrPipeSendReceive @251 PRIVATE + NdrPipesDone @252 PRIVATE + NdrPipesInitialize @253 PRIVATE + NdrPointerBufferSize @254 + NdrPointerFree @255 + NdrPointerMarshall @256 + NdrPointerMemorySize @257 + NdrPointerUnmarshall @258 + NdrProxyErrorHandler @259 + NdrProxyFreeBuffer @260 + NdrProxyGetBuffer @261 + NdrProxyInitialize @262 + NdrProxySendReceive @263 + NdrRangeUnmarshall @264 + NdrRpcSmClientAllocate @265 PRIVATE + NdrRpcSmClientFree @266 PRIVATE + NdrRpcSmSetClientToOsf @267 PRIVATE + NdrRpcSsDefaultAllocate @268 PRIVATE + NdrRpcSsDefaultFree @269 PRIVATE + NdrRpcSsDisableAllocate @270 PRIVATE + NdrRpcSsEnableAllocate @271 PRIVATE + NdrSendReceive @272 + NdrServerCall2 @273 + NdrServerCall @274 + NdrServerContextMarshall @275 + NdrServerContextNewMarshall @276 + NdrServerContextNewUnmarshall @277 + NdrServerContextUnmarshall @278 + NdrServerInitialize @279 PRIVATE + NdrServerInitializeMarshall @280 PRIVATE + NdrServerInitializeNew @281 + NdrServerInitializePartial @282 PRIVATE + NdrServerInitializeUnmarshall @283 PRIVATE + NdrServerMarshall @284 PRIVATE + NdrServerUnmarshall @285 PRIVATE + NdrSimpleStructBufferSize @286 + NdrSimpleStructFree @287 + NdrSimpleStructMarshall @288 + NdrSimpleStructMemorySize @289 + NdrSimpleStructUnmarshall @290 + NdrSimpleTypeMarshall @291 + NdrSimpleTypeUnmarshall @292 + NdrStubCall2 @293 + NdrStubCall @294 + NdrStubForwardingFunction @295 + NdrStubGetBuffer @296 + NdrStubInitialize @297 + NdrStubInitializeMarshall @298 PRIVATE + NdrTypeFlags @299 PRIVATE + NdrTypeFree @300 PRIVATE + NdrTypeMarshall @301 PRIVATE + NdrTypeSize @302 PRIVATE + NdrTypeUnmarshall @303 PRIVATE + NdrUnmarshallBasetypeInline @304 PRIVATE + NdrUserMarshalBufferSize @305 + NdrUserMarshalFree @306 + NdrUserMarshalMarshall @307 + NdrUserMarshalMemorySize @308 + NdrUserMarshalSimpleTypeConvert @309 PRIVATE + NdrUserMarshalUnmarshall @310 + NdrVaryingArrayBufferSize @311 + NdrVaryingArrayFree @312 + NdrVaryingArrayMarshall @313 + NdrVaryingArrayMemorySize @314 + NdrVaryingArrayUnmarshall @315 + NdrXmitOrRepAsBufferSize @316 + NdrXmitOrRepAsFree @317 + NdrXmitOrRepAsMarshall @318 + NdrXmitOrRepAsMemorySize @319 + NdrXmitOrRepAsUnmarshall @320 + NdrpCreateProxy @321 PRIVATE + NdrpCreateStub @322 PRIVATE + NdrpGetProcFormatString @323 PRIVATE + NdrpGetTypeFormatString @324 PRIVATE + NdrpGetTypeGenCookie @325 PRIVATE + NdrpMemoryIncrement @326 PRIVATE + NdrpReleaseTypeFormatString @327 PRIVATE + NdrpReleaseTypeGenCookie @328 PRIVATE + NdrpSetRpcSsDefaults @329 PRIVATE + NdrpVarVtOfTypeDesc @330 PRIVATE + RpcAbortAsyncCall=RpcAsyncAbortCall @331 + RpcAsyncAbortCall @332 + RpcAsyncCancelCall @333 + RpcAsyncCompleteCall @334 + RpcAsyncGetCallStatus @335 + RpcAsyncInitializeHandle @336 + RpcAsyncRegisterInfo @337 PRIVATE + RpcBindingCopy @338 + RpcBindingFree @339 + RpcBindingFromStringBindingA @340 + RpcBindingFromStringBindingW @341 + RpcBindingInqAuthClientA @342 + RpcBindingInqAuthClientExA @343 + RpcBindingInqAuthClientExW @344 + RpcBindingInqAuthClientW @345 + RpcBindingInqAuthInfoA @346 + RpcBindingInqAuthInfoExA @347 + RpcBindingInqAuthInfoExW @348 + RpcBindingInqAuthInfoW @349 + RpcBindingInqObject @350 + RpcBindingInqOption @351 PRIVATE + RpcBindingReset @352 + RpcBindingServerFromClient @353 + RpcBindingSetAuthInfoA @354 + RpcBindingSetAuthInfoExA @355 + RpcBindingSetAuthInfoExW @356 + RpcBindingSetAuthInfoW @357 + RpcBindingSetObject @358 + RpcBindingSetOption @359 + RpcBindingToStringBindingA @360 + RpcBindingToStringBindingW @361 + RpcBindingVectorFree @362 + RpcCancelAsyncCall=RpcAsyncCancelCall @363 + RpcCancelThread @364 + RpcCancelThreadEx @365 + RpcCertGeneratePrincipalNameA @366 PRIVATE + RpcCertGeneratePrincipalNameW @367 PRIVATE + RpcCompleteAsyncCall=RpcAsyncCompleteCall @368 + RpcEpRegisterA @369 + RpcEpRegisterNoReplaceA @370 + RpcEpRegisterNoReplaceW @371 + RpcEpRegisterW @372 + RpcEpResolveBinding @373 + RpcEpUnregister @374 + RpcErrorAddRecord @375 PRIVATE + RpcErrorClearInformation @376 PRIVATE + RpcErrorEndEnumeration @377 + RpcErrorGetNextRecord @378 + RpcErrorLoadErrorInfo @379 + RpcErrorNumberOfRecords @380 PRIVATE + RpcErrorResetEnumeration @381 PRIVATE + RpcErrorSaveErrorInfo @382 + RpcErrorStartEnumeration @383 + RpcExceptionFilter @384 + RpcFreeAuthorizationContext @385 PRIVATE + RpcGetAsyncCallStatus=RpcAsyncGetCallStatus @386 + RpcIfIdVectorFree @387 PRIVATE + RpcIfInqId @388 PRIVATE + RpcImpersonateClient @389 + RpcInitializeAsyncHandle=RpcAsyncInitializeHandle @390 + RpcMgmtEnableIdleCleanup @391 + RpcMgmtEpEltInqBegin @392 + RpcMgmtEpEltInqDone @393 PRIVATE + RpcMgmtEpEltInqNextA @394 PRIVATE + RpcMgmtEpEltInqNextW @395 PRIVATE + RpcMgmtEpUnregister @396 PRIVATE + RpcMgmtInqComTimeout @397 PRIVATE + RpcMgmtInqDefaultProtectLevel @398 PRIVATE + RpcMgmtInqIfIds @399 + RpcMgmtInqServerPrincNameA @400 PRIVATE + RpcMgmtInqServerPrincNameW @401 PRIVATE + RpcMgmtInqStats @402 + RpcMgmtIsServerListening @403 + RpcMgmtSetAuthorizationFn @404 + RpcMgmtSetCancelTimeout @405 + RpcMgmtSetComTimeout @406 + RpcMgmtSetServerStackSize @407 + RpcMgmtStatsVectorFree @408 + RpcMgmtStopServerListening @409 + RpcMgmtWaitServerListen @410 + RpcNetworkInqProtseqsA @411 + RpcNetworkInqProtseqsW @412 + RpcNetworkIsProtseqValidA @413 + RpcNetworkIsProtseqValidW @414 + RpcNsBindingInqEntryNameA @415 PRIVATE + RpcNsBindingInqEntryNameW @416 PRIVATE + RpcObjectInqType @417 PRIVATE + RpcObjectSetInqFn @418 PRIVATE + RpcObjectSetType @419 + RpcProtseqVectorFreeA @420 + RpcProtseqVectorFreeW @421 + RpcRaiseException @422 + RpcRegisterAsyncInfo @423 PRIVATE + RpcRevertToSelf @424 + RpcRevertToSelfEx @425 + RpcServerInqBindings @426 + RpcServerInqCallAttributesA @427 PRIVATE + RpcServerInqCallAttributesW @428 PRIVATE + RpcServerInqDefaultPrincNameA @429 + RpcServerInqDefaultPrincNameW @430 + RpcServerInqIf @431 PRIVATE + RpcServerListen @432 + RpcServerRegisterAuthInfoA @433 + RpcServerRegisterAuthInfoW @434 + RpcServerRegisterIf2 @435 + RpcServerRegisterIf3 @436 + RpcServerRegisterIf @437 + RpcServerRegisterIfEx @438 + RpcServerTestCancel @439 PRIVATE + RpcServerUnregisterIf @440 + RpcServerUnregisterIfEx @441 + RpcServerUseAllProtseqs @442 PRIVATE + RpcServerUseAllProtseqsEx @443 PRIVATE + RpcServerUseAllProtseqsIf @444 PRIVATE + RpcServerUseAllProtseqsIfEx @445 PRIVATE + RpcServerUseProtseqA @446 + RpcServerUseProtseqEpA @447 + RpcServerUseProtseqEpExA @448 + RpcServerUseProtseqEpExW @449 + RpcServerUseProtseqEpW @450 + RpcServerUseProtseqExA @451 PRIVATE + RpcServerUseProtseqExW @452 PRIVATE + RpcServerUseProtseqIfA @453 PRIVATE + RpcServerUseProtseqIfExA @454 PRIVATE + RpcServerUseProtseqIfExW @455 PRIVATE + RpcServerUseProtseqIfW @456 PRIVATE + RpcServerUseProtseqW @457 + RpcServerYield @458 PRIVATE + RpcSmAllocate @459 PRIVATE + RpcSmClientFree @460 PRIVATE + RpcSmDestroyClientContext @461 + RpcSmDisableAllocate @462 PRIVATE + RpcSmEnableAllocate @463 PRIVATE + RpcSmFree @464 PRIVATE + RpcSmGetThreadHandle @465 PRIVATE + RpcSmSetClientAllocFree @466 PRIVATE + RpcSmSetThreadHandle @467 PRIVATE + RpcSmSwapClientAllocFree @468 PRIVATE + RpcSsAllocate @469 PRIVATE + RpcSsContextLockExclusive @470 PRIVATE + RpcSsContextLockShared @471 PRIVATE + RpcSsDestroyClientContext @472 + RpcSsDisableAllocate @473 PRIVATE + RpcSsDontSerializeContext @474 + RpcSsEnableAllocate @475 PRIVATE + RpcSsFree @476 PRIVATE + RpcSsGetContextBinding @477 PRIVATE + RpcSsGetThreadHandle @478 PRIVATE + RpcSsSetClientAllocFree @479 PRIVATE + RpcSsSetThreadHandle @480 PRIVATE + RpcSsSwapClientAllocFree @481 PRIVATE + RpcStringBindingComposeA @482 + RpcStringBindingComposeW @483 + RpcStringBindingParseA @484 + RpcStringBindingParseW @485 + RpcStringFreeA @486 + RpcStringFreeW @487 + RpcTestCancel @488 PRIVATE + RpcUserFree @489 PRIVATE + SimpleTypeAlignment @490 PRIVATE + SimpleTypeBufferSize @491 PRIVATE + SimpleTypeMemorySize @492 PRIVATE + TowerConstruct @493 + TowerExplode @494 + UuidCompare @495 + UuidCreate @496 + UuidCreateNil @497 + UuidCreateSequential @498 + UuidEqual @499 + UuidFromStringA @500 + UuidFromStringW @501 + UuidHash @502 + UuidIsNil @503 + UuidToStringA @504 + UuidToStringW @505 + char_array_from_ndr @506 PRIVATE + char_from_ndr @507 PRIVATE + data_from_ndr @508 PRIVATE + data_into_ndr @509 PRIVATE + data_size_ndr @510 PRIVATE + double_array_from_ndr @511 PRIVATE + double_from_ndr @512 PRIVATE + enum_from_ndr @513 PRIVATE + float_array_from_ndr @514 PRIVATE + float_from_ndr @515 PRIVATE + long_array_from_ndr @516 PRIVATE + long_from_ndr @517 PRIVATE + long_from_ndr_temp @518 PRIVATE + pfnFreeRoutines @519 PRIVATE + pfnMarshallRoutines @520 PRIVATE + pfnSizeRoutines @521 PRIVATE + pfnUnmarshallRoutines @522 PRIVATE + short_array_from_ndr @523 PRIVATE + short_from_ndr @524 PRIVATE + short_from_ndr_temp @525 PRIVATE + tree_into_ndr @526 PRIVATE + tree_peek_ndr @527 PRIVATE + tree_size_ndr @528 PRIVATE diff --git a/lib64/wine/librsaenh.def b/lib64/wine/librsaenh.def new file mode 100644 index 0000000..42004c0 --- /dev/null +++ b/lib64/wine/librsaenh.def @@ -0,0 +1,32 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/rsaenh/rsaenh.spec; do not edit! + +LIBRARY rsaenh.dll + +EXPORTS + CPAcquireContext=RSAENH_CPAcquireContext @1 + CPCreateHash=RSAENH_CPCreateHash @2 + CPDecrypt=RSAENH_CPDecrypt @3 + CPDeriveKey=RSAENH_CPDeriveKey @4 + CPDestroyHash=RSAENH_CPDestroyHash @5 + CPDestroyKey=RSAENH_CPDestroyKey @6 + CPDuplicateHash=RSAENH_CPDuplicateHash @7 + CPDuplicateKey=RSAENH_CPDuplicateKey @8 + CPEncrypt=RSAENH_CPEncrypt @9 + CPExportKey=RSAENH_CPExportKey @10 + CPGenKey=RSAENH_CPGenKey @11 + CPGenRandom=RSAENH_CPGenRandom @12 + CPGetHashParam=RSAENH_CPGetHashParam @13 + CPGetKeyParam=RSAENH_CPGetKeyParam @14 + CPGetProvParam=RSAENH_CPGetProvParam @15 + CPGetUserKey=RSAENH_CPGetUserKey @16 + CPHashData=RSAENH_CPHashData @17 + CPHashSessionKey=RSAENH_CPHashSessionKey @18 + CPImportKey=RSAENH_CPImportKey @19 + CPReleaseContext=RSAENH_CPReleaseContext @20 + CPSetHashParam=RSAENH_CPSetHashParam @21 + CPSetKeyParam=RSAENH_CPSetKeyParam @22 + CPSetProvParam=RSAENH_CPSetProvParam @23 + CPSignHash=RSAENH_CPSignHash @24 + CPVerifySignature=RSAENH_CPVerifySignature @25 + DllRegisterServer @26 PRIVATE + DllUnregisterServer @27 PRIVATE diff --git a/lib64/wine/librtutils.def b/lib64/wine/librtutils.def new file mode 100644 index 0000000..05b544d --- /dev/null +++ b/lib64/wine/librtutils.def @@ -0,0 +1,61 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/rtutils/rtutils.spec; do not edit! + +LIBRARY rtutils.dll + +EXPORTS + CreateWaitEvent @1 PRIVATE + CreateWaitEventBinding @2 PRIVATE + CreateWaitTimer @3 PRIVATE + DeRegisterWaitEventBinding @4 PRIVATE + DeRegisterWaitEventBindingSelf @5 PRIVATE + DeRegisterWaitEventsTimers @6 PRIVATE + DeRegisterWaitEventsTimersSelf @7 PRIVATE + DebugPrintWaitWorkerThreads @8 PRIVATE + LogErrorA @9 PRIVATE + LogErrorW @10 PRIVATE + LogEventA @11 PRIVATE + LogEventW @12 PRIVATE + MprSetupProtocolEnum @13 PRIVATE + MprSetupProtocolFree @14 PRIVATE + QueueWorkItem @15 PRIVATE + RegisterWaitEventBinding @16 PRIVATE + RegisterWaitEventsTimers @17 PRIVATE + RouterAssert @18 PRIVATE + RouterGetErrorStringA @19 PRIVATE + RouterGetErrorStringW @20 PRIVATE + RouterLogDeregisterA @21 PRIVATE + RouterLogDeregisterW @22 PRIVATE + RouterLogEventA @23 PRIVATE + RouterLogEventDataA @24 PRIVATE + RouterLogEventDataW @25 PRIVATE + RouterLogEventExA @26 PRIVATE + RouterLogEventExW @27 PRIVATE + RouterLogEventStringA @28 PRIVATE + RouterLogEventStringW @29 PRIVATE + RouterLogEventValistExA @30 PRIVATE + RouterLogEventValistExW @31 PRIVATE + RouterLogEventW @32 PRIVATE + RouterLogRegisterA @33 PRIVATE + RouterLogRegisterW @34 PRIVATE + SetIoCompletionProc @35 PRIVATE + TraceDeregisterA @36 PRIVATE + TraceDeregisterExA @37 PRIVATE + TraceDeregisterExW @38 PRIVATE + TraceDeregisterW @39 PRIVATE + TraceDumpExA @40 PRIVATE + TraceDumpExW @41 PRIVATE + TraceGetConsoleA @42 PRIVATE + TraceGetConsoleW @43 PRIVATE + TracePrintfA @44 PRIVATE + TracePrintfExA @45 PRIVATE + TracePrintfExW @46 PRIVATE + TracePrintfW @47 PRIVATE + TracePutsExA @48 PRIVATE + TracePutsExW @49 PRIVATE + TraceRegisterExA @50 + TraceRegisterExW @51 + TraceVprintfExA @52 PRIVATE + TraceVprintfExW @53 PRIVATE + UpdateWaitTimer @54 PRIVATE + WTFreeEvent @55 PRIVATE + WTFreeTimer @56 PRIVATE diff --git a/lib64/wine/libsecur32.def b/lib64/wine/libsecur32.def new file mode 100644 index 0000000..c3a19df --- /dev/null +++ b/lib64/wine/libsecur32.def @@ -0,0 +1,85 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/secur32/secur32.spec; do not edit! + +LIBRARY secur32.dll + +EXPORTS + SecDeleteUserModeContext @1 PRIVATE + SecInitUserModeContext @2 PRIVATE + AcceptSecurityContext @3 + AcquireCredentialsHandleA @4 + AcquireCredentialsHandleW @5 + AddCredentialsA @6 + AddCredentialsW @7 + AddSecurityPackageA @8 + AddSecurityPackageW @9 + ApplyControlToken @10 + CompleteAuthToken @11 + DecryptMessage @12 + DeleteSecurityContext @13 + DeleteSecurityPackageA @14 PRIVATE + DeleteSecurityPackageW @15 PRIVATE + EncryptMessage @16 + EnumerateSecurityPackagesA @17 + EnumerateSecurityPackagesW @18 + ExportSecurityContext @19 + FreeContextBuffer @20 + FreeCredentialsHandle @21 + GetComputerObjectNameA @22 + GetComputerObjectNameW @23 + GetSecurityUserInfo @24 PRIVATE + GetUserNameExA @25 + GetUserNameExW @26 + ImpersonateSecurityContext @27 + ImportSecurityContextA @28 + ImportSecurityContextW @29 + InitSecurityInterfaceA @30 + InitSecurityInterfaceW @31 + InitializeSecurityContextA @32 + InitializeSecurityContextW @33 + LsaCallAuthenticationPackage @34 + LsaConnectUntrusted @35 + LsaDeregisterLogonProcess @36 + LsaEnumerateLogonSessions @37 + LsaFreeReturnBuffer @38 + LsaGetLogonSessionData @39 + LsaLogonUser @40 + LsaLookupAuthenticationPackage @41 + LsaRegisterLogonProcess @42 + LsaRegisterPolicyChangeNotification @43 PRIVATE + LsaUnregisterPolicyChangeNotification @44 PRIVATE + MakeSignature @45 + QueryContextAttributesA @46 + QueryContextAttributesW @47 + QueryCredentialsAttributesA @48 + QueryCredentialsAttributesW @49 + QuerySecurityContextToken @50 + QuerySecurityPackageInfoA @51 + QuerySecurityPackageInfoW @52 + RevertSecurityContext @53 + SaslAcceptSecurityContext @54 PRIVATE + SaslEnumerateProfilesA @55 PRIVATE + SaslEnumerateProfilesW @56 PRIVATE + SaslGetProfilePackageA @57 PRIVATE + SaslGetProfilePackageW @58 PRIVATE + SaslIdentifyPackageA @59 PRIVATE + SaslIdentifyPackageW @60 PRIVATE + SaslInitializeSecurityContextA @61 PRIVATE + SaslInitializeSecurityContextW @62 PRIVATE + SealMessage=EncryptMessage @63 + SecCacheSspiPackages @64 PRIVATE + SecGetLocaleSpecificEncryptionRules @65 PRIVATE + SecpFreeMemory @66 PRIVATE + SecpTranslateName @67 PRIVATE + SecpTranslateNameEx @68 PRIVATE + SetContextAttributesA @69 + SetContextAttributesW @70 + SspiEncodeAuthIdentityAsStrings=sspicli.SspiEncodeAuthIdentityAsStrings @71 + SspiEncodeStringsAsAuthIdentity=sspicli.SspiEncodeStringsAsAuthIdentity @72 + SspiFreeAuthIdentity=sspicli.SspiFreeAuthIdentity @73 + SspiLocalFree=sspicli.SspiLocalFree @74 + SspiPrepareForCredWrite=sspicli.SspiPrepareForCredWrite @75 + SspiZeroAuthIdentity=sspicli.SspiZeroAuthIdentity @76 + TranslateNameA @77 + TranslateNameW @78 + UnsealMessage=DecryptMessage @79 + VerifySignature @80 diff --git a/lib64/wine/libsensapi.def b/lib64/wine/libsensapi.def new file mode 100644 index 0000000..a90f770 --- /dev/null +++ b/lib64/wine/libsensapi.def @@ -0,0 +1,8 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/sensapi/sensapi.spec; do not edit! + +LIBRARY sensapi.dll + +EXPORTS + IsDestinationReachableA @1 + IsDestinationReachableW @2 + IsNetworkAlive @3 diff --git a/lib64/wine/libsetupapi.def b/lib64/wine/libsetupapi.def new file mode 100644 index 0000000..ff8946c --- /dev/null +++ b/lib64/wine/libsetupapi.def @@ -0,0 +1,602 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/setupapi/setupapi.spec; do not edit! + +LIBRARY setupapi.dll + +EXPORTS + AcquireSCMLock @1 PRIVATE + AddMiniIconToList @2 PRIVATE + AddTagToGroupOrderListEntry @3 PRIVATE + AppendStringToMultiSz @4 PRIVATE + AssertFail @5 + CMP_Init_Detection @6 PRIVATE + CMP_RegisterNotification @7 PRIVATE + CMP_Report_LogOn @8 PRIVATE + CMP_UnregisterNotification @9 PRIVATE + CMP_WaitNoPendingInstallEvents @10 + CMP_WaitServices @11 PRIVATE + CM_Add_Empty_Log_Conf @12 PRIVATE + CM_Add_Empty_Log_Conf_Ex @13 PRIVATE + CM_Add_IDA @14 PRIVATE + CM_Add_IDW @15 PRIVATE + CM_Add_ID_ExA @16 PRIVATE + CM_Add_ID_ExW @17 PRIVATE + CM_Add_Range @18 PRIVATE + CM_Add_Res_Des @19 PRIVATE + CM_Add_Res_Des_Ex @20 PRIVATE + CM_Connect_MachineA @21 + CM_Connect_MachineW @22 + CM_Create_DevNodeA @23 + CM_Create_DevNodeW @24 + CM_Create_DevNode_ExA @25 PRIVATE + CM_Create_DevNode_ExW @26 PRIVATE + CM_Create_Range_List @27 PRIVATE + CM_Delete_Class_Key @28 PRIVATE + CM_Delete_Class_Key_Ex @29 PRIVATE + CM_Delete_DevNode_Key @30 PRIVATE + CM_Delete_DevNode_Key_Ex @31 PRIVATE + CM_Delete_Range @32 PRIVATE + CM_Detect_Resource_Conflict @33 PRIVATE + CM_Detect_Resource_Conflict_Ex @34 PRIVATE + CM_Disable_DevNode @35 PRIVATE + CM_Disable_DevNode_Ex @36 PRIVATE + CM_Disconnect_Machine @37 + CM_Dup_Range_List @38 PRIVATE + CM_Enable_DevNode @39 PRIVATE + CM_Enable_DevNode_Ex @40 PRIVATE + CM_Enumerate_Classes @41 + CM_Enumerate_Classes_Ex @42 PRIVATE + CM_Enumerate_EnumeratorsA @43 PRIVATE + CM_Enumerate_EnumeratorsW @44 PRIVATE + CM_Enumerate_Enumerators_ExA @45 PRIVATE + CM_Enumerate_Enumerators_ExW @46 PRIVATE + CM_Find_Range @47 PRIVATE + CM_First_Range @48 PRIVATE + CM_Free_Log_Conf @49 PRIVATE + CM_Free_Log_Conf_Ex @50 PRIVATE + CM_Free_Log_Conf_Handle @51 PRIVATE + CM_Free_Range_List @52 PRIVATE + CM_Free_Res_Des @53 PRIVATE + CM_Free_Res_Des_Ex @54 PRIVATE + CM_Free_Res_Des_Handle @55 PRIVATE + CM_Get_Child @56 + CM_Get_Child_Ex @57 + CM_Get_Class_Key_NameA @58 PRIVATE + CM_Get_Class_Key_NameW @59 PRIVATE + CM_Get_Class_Key_Name_ExA @60 PRIVATE + CM_Get_Class_Key_Name_ExW @61 PRIVATE + CM_Get_Class_NameA @62 PRIVATE + CM_Get_Class_NameW @63 PRIVATE + CM_Get_Class_Name_ExA @64 PRIVATE + CM_Get_Class_Name_ExW @65 PRIVATE + CM_Get_Class_Registry_PropertyA @66 + CM_Get_Class_Registry_PropertyW @67 + CM_Get_Depth @68 PRIVATE + CM_Get_Depth_Ex @69 PRIVATE + CM_Get_DevNode_Registry_PropertyA @70 + CM_Get_DevNode_Registry_PropertyW @71 + CM_Get_DevNode_Registry_Property_ExA @72 + CM_Get_DevNode_Registry_Property_ExW @73 + CM_Get_DevNode_Status @74 + CM_Get_DevNode_Status_Ex @75 + CM_Get_Device_IDA @76 + CM_Get_Device_IDW @77 + CM_Get_Device_ID_ExA @78 + CM_Get_Device_ID_ExW @79 + CM_Get_Device_ID_ListA @80 + CM_Get_Device_ID_ListW @81 + CM_Get_Device_ID_List_ExA @82 PRIVATE + CM_Get_Device_ID_List_ExW @83 PRIVATE + CM_Get_Device_ID_List_SizeA @84 + CM_Get_Device_ID_List_SizeW @85 + CM_Get_Device_ID_List_Size_ExA @86 PRIVATE + CM_Get_Device_ID_List_Size_ExW @87 PRIVATE + CM_Get_Device_ID_Size @88 + CM_Get_Device_ID_Size_Ex @89 PRIVATE + CM_Get_Device_Interface_AliasA @90 PRIVATE + CM_Get_Device_Interface_AliasW @91 PRIVATE + CM_Get_Device_Interface_Alias_ExA @92 PRIVATE + CM_Get_Device_Interface_Alias_ExW @93 PRIVATE + CM_Get_Device_Interface_ListA @94 PRIVATE + CM_Get_Device_Interface_ListW @95 PRIVATE + CM_Get_Device_Interface_List_ExA @96 PRIVATE + CM_Get_Device_Interface_List_ExW @97 PRIVATE + CM_Get_Device_Interface_List_SizeA @98 + CM_Get_Device_Interface_List_SizeW @99 + CM_Get_Device_Interface_List_Size_ExA @100 + CM_Get_Device_Interface_List_Size_ExW @101 + CM_Get_First_Log_Conf @102 PRIVATE + CM_Get_First_Log_Conf_Ex @103 PRIVATE + CM_Get_Global_State @104 PRIVATE + CM_Get_Global_State_Ex @105 PRIVATE + CM_Get_HW_Prof_FlagsA @106 PRIVATE + CM_Get_HW_Prof_FlagsW @107 PRIVATE + CM_Get_HW_Prof_Flags_ExA @108 PRIVATE + CM_Get_HW_Prof_Flags_ExW @109 PRIVATE + CM_Get_Hardware_Profile_InfoA @110 PRIVATE + CM_Get_Hardware_Profile_InfoW @111 PRIVATE + CM_Get_Hardware_Profile_Info_ExA @112 PRIVATE + CM_Get_Hardware_Profile_Info_ExW @113 PRIVATE + CM_Get_Log_Conf_Priority @114 PRIVATE + CM_Get_Log_Conf_Priority_Ex @115 PRIVATE + CM_Get_Next_Log_Conf @116 PRIVATE + CM_Get_Next_Log_Conf_Ex @117 PRIVATE + CM_Get_Next_Res_Des @118 PRIVATE + CM_Get_Next_Res_Des_Ex @119 PRIVATE + CM_Get_Parent @120 + CM_Get_Parent_Ex @121 PRIVATE + CM_Get_Res_Des_Data @122 PRIVATE + CM_Get_Res_Des_Data_Ex @123 PRIVATE + CM_Get_Res_Des_Data_Size @124 PRIVATE + CM_Get_Res_Des_Data_Size_Ex @125 PRIVATE + CM_Get_Sibling @126 + CM_Get_Sibling_Ex @127 + CM_Get_Version @128 + CM_Get_Version_Ex @129 PRIVATE + CM_Intersect_Range_List @130 PRIVATE + CM_Invert_Range_List @131 PRIVATE + CM_Is_Dock_Station_Present @132 PRIVATE + CM_Locate_DevNodeA @133 + CM_Locate_DevNodeW @134 + CM_Locate_DevNode_ExA @135 + CM_Locate_DevNode_ExW @136 + CM_Merge_Range_List @137 PRIVATE + CM_Modify_Res_Des @138 PRIVATE + CM_Modify_Res_Des_Ex @139 PRIVATE + CM_Move_DevNode @140 PRIVATE + CM_Move_DevNode_Ex @141 PRIVATE + CM_Next_Range @142 PRIVATE + CM_Open_Class_KeyA @143 PRIVATE + CM_Open_Class_KeyW @144 PRIVATE + CM_Open_Class_Key_ExA @145 PRIVATE + CM_Open_Class_Key_ExW @146 PRIVATE + CM_Open_DevNode_Key @147 + CM_Open_DevNode_Key_Ex @148 PRIVATE + CM_Query_And_Remove_SubTreeA @149 PRIVATE + CM_Query_And_Remove_SubTreeW @150 PRIVATE + CM_Query_And_Remove_SubTree_ExA @151 PRIVATE + CM_Query_And_Remove_SubTree_ExW @152 PRIVATE + CM_Query_Arbitrator_Free_Data @153 PRIVATE + CM_Query_Arbitrator_Free_Data_Ex @154 PRIVATE + CM_Query_Arbitrator_Free_Size @155 PRIVATE + CM_Query_Arbitrator_Free_Size_Ex @156 PRIVATE + CM_Query_Remove_SubTree @157 PRIVATE + CM_Query_Remove_SubTree_Ex @158 PRIVATE + CM_Reenumerate_DevNode @159 + CM_Reenumerate_DevNode_Ex @160 + CM_Register_Device_Driver @161 PRIVATE + CM_Register_Device_Driver_Ex @162 PRIVATE + CM_Register_Device_InterfaceA @163 PRIVATE + CM_Register_Device_InterfaceW @164 PRIVATE + CM_Register_Device_Interface_ExA @165 PRIVATE + CM_Register_Device_Interface_ExW @166 PRIVATE + CM_Remove_SubTree @167 PRIVATE + CM_Remove_SubTree_Ex @168 PRIVATE + CM_Remove_Unmarked_Children @169 PRIVATE + CM_Remove_Unmarked_Children_Ex @170 PRIVATE + CM_Request_Device_EjectA @171 + CM_Request_Device_EjectW @172 + CM_Request_Eject_PC @173 PRIVATE + CM_Reset_Children_Marks @174 PRIVATE + CM_Reset_Children_Marks_Ex @175 PRIVATE + CM_Run_Detection @176 PRIVATE + CM_Run_Detection_Ex @177 PRIVATE + CM_Set_Class_Registry_PropertyA @178 + CM_Set_Class_Registry_PropertyW @179 + CM_Set_DevNode_Problem @180 PRIVATE + CM_Set_DevNode_Problem_Ex @181 PRIVATE + CM_Set_DevNode_Registry_PropertyA @182 PRIVATE + CM_Set_DevNode_Registry_PropertyW @183 PRIVATE + CM_Set_DevNode_Registry_Property_ExA @184 PRIVATE + CM_Set_DevNode_Registry_Property_ExW @185 PRIVATE + CM_Set_HW_Prof @186 PRIVATE + CM_Set_HW_Prof_Ex @187 PRIVATE + CM_Set_HW_Prof_FlagsA @188 PRIVATE + CM_Set_HW_Prof_FlagsW @189 PRIVATE + CM_Set_HW_Prof_Flags_ExA @190 PRIVATE + CM_Set_HW_Prof_Flags_ExW @191 PRIVATE + CM_Setup_DevNode @192 PRIVATE + CM_Setup_DevNode_Ex @193 PRIVATE + CM_Test_Range_Available @194 PRIVATE + CM_Uninstall_DevNode @195 PRIVATE + CM_Uninstall_DevNode_Ex @196 PRIVATE + CM_Unregister_Device_InterfaceA @197 PRIVATE + CM_Unregister_Device_InterfaceW @198 PRIVATE + CM_Unregister_Device_Interface_ExA @199 PRIVATE + CM_Unregister_Device_Interface_ExW @200 PRIVATE + CaptureAndConvertAnsiArg @201 + CaptureStringArg @202 + CenterWindowRelativeToParent @203 PRIVATE + ConcatenatePaths @204 PRIVATE + DelayedMove @205 + DelimStringToMultiSz @206 PRIVATE + DestroyTextFileReadBuffer @207 PRIVATE + DoesUserHavePrivilege @208 + DuplicateString @209 + EnablePrivilege @210 + ExtensionPropSheetPageProc @211 PRIVATE + FileExists @212 + FreeStringArray @213 PRIVATE + GetCurrentDriverSigningPolicy @214 PRIVATE + GetNewInfName @215 PRIVATE + GetSetFileTimestamp @216 PRIVATE + GetVersionInfoFromImage @217 PRIVATE + InfIsFromOemLocation @218 PRIVATE + InstallCatalog @219 + InstallHinfSection=InstallHinfSectionA @220 + InstallHinfSectionA @221 + InstallHinfSectionW @222 + InstallStop @223 PRIVATE + InstallStopEx @224 PRIVATE + IsUserAdmin @225 + LookUpStringInTable @226 PRIVATE + MemoryInitialize @227 PRIVATE + MultiByteToUnicode @228 + MultiSzFromSearchControl @229 PRIVATE + MyFree @230 + MyGetFileTitle @231 PRIVATE + MyMalloc @232 + MyRealloc @233 + OpenAndMapFileForRead @234 + OutOfMemory @235 PRIVATE + QueryMultiSzValueToArray @236 PRIVATE + QueryRegistryValue @237 + ReadAsciiOrUnicodeTextFile @238 PRIVATE + RegistryDelnode @239 + RetreiveFileSecurity @240 + RetrieveServiceConfig @241 PRIVATE + SearchForInfFile @242 PRIVATE + SetArrayToMultiSzValue @243 PRIVATE + SetupAddInstallSectionToDiskSpaceListA @244 + SetupAddInstallSectionToDiskSpaceListW @245 + SetupAddSectionToDiskSpaceListA @246 + SetupAddSectionToDiskSpaceListW @247 + SetupAddToDiskSpaceListA @248 + SetupAddToDiskSpaceListW @249 + SetupAddToSourceListA @250 + SetupAddToSourceListW @251 + SetupAdjustDiskSpaceListA @252 PRIVATE + SetupAdjustDiskSpaceListW @253 PRIVATE + SetupCancelTemporarySourceList @254 PRIVATE + SetupCloseFileQueue @255 + SetupCloseInfFile @256 + SetupCloseLog @257 + SetupCommitFileQueue=SetupCommitFileQueueW @258 + SetupCommitFileQueueA @259 + SetupCommitFileQueueW @260 + SetupCopyErrorA @261 + SetupCopyErrorW @262 + SetupCopyOEMInfA @263 + SetupCopyOEMInfW @264 + SetupCreateDiskSpaceListA @265 + SetupCreateDiskSpaceListW @266 + SetupDecompressOrCopyFileA @267 + SetupDecompressOrCopyFileW @268 + SetupDefaultQueueCallback @269 PRIVATE + SetupDefaultQueueCallbackA @270 + SetupDefaultQueueCallbackW @271 + SetupDeleteErrorA @272 + SetupDeleteErrorW @273 + SetupDestroyDiskSpaceList @274 + SetupDiAskForOEMDisk @275 PRIVATE + SetupDiBuildClassInfoList @276 + SetupDiBuildClassInfoListExA @277 + SetupDiBuildClassInfoListExW @278 + SetupDiBuildDriverInfoList @279 + SetupDiCallClassInstaller @280 + SetupDiCancelDriverInfoSearch @281 PRIVATE + SetupDiChangeState @282 PRIVATE + SetupDiClassGuidsFromNameA @283 + SetupDiClassGuidsFromNameExA @284 + SetupDiClassGuidsFromNameExW @285 + SetupDiClassGuidsFromNameW @286 + SetupDiClassNameFromGuidA @287 + SetupDiClassNameFromGuidExA @288 + SetupDiClassNameFromGuidExW @289 + SetupDiClassNameFromGuidW @290 + SetupDiCreateDevRegKeyA @291 + SetupDiCreateDevRegKeyW @292 + SetupDiCreateDeviceInfoA @293 + SetupDiCreateDeviceInfoList @294 + SetupDiCreateDeviceInfoListExA @295 + SetupDiCreateDeviceInfoListExW @296 + SetupDiCreateDeviceInfoW @297 + SetupDiCreateDeviceInterfaceA @298 + SetupDiCreateDeviceInterfaceW @299 + SetupDiCreateDeviceInterfaceRegKeyA @300 + SetupDiCreateDeviceInterfaceRegKeyW @301 + SetupDiDeleteDevRegKey @302 + SetupDiDeleteDeviceInfo @303 + SetupDiDeleteDeviceInterfaceData @304 + SetupDiDeleteDeviceInterfaceRegKey @305 + SetupDiDeleteDeviceRegKey @306 PRIVATE + SetupDiDestroyClassImageList @307 + SetupDiDestroyDeviceInfoList @308 + SetupDiDestroyDriverInfoList @309 + SetupDiDrawMiniIcon @310 + SetupDiEnumDeviceInfo @311 + SetupDiEnumDeviceInterfaces @312 + SetupDiEnumDriverInfoA @313 + SetupDiEnumDriverInfoW @314 + SetupDiGetActualSectionToInstallA @315 + SetupDiGetActualSectionToInstallW @316 + SetupDiGetClassBitmapIndex @317 + SetupDiGetClassDescriptionA @318 + SetupDiGetClassDescriptionExA @319 + SetupDiGetClassDescriptionExW @320 + SetupDiGetClassDescriptionW @321 + SetupDiGetClassDevPropertySheetsA @322 PRIVATE + SetupDiGetClassDevPropertySheetsW @323 PRIVATE + SetupDiGetClassDevsA @324 + SetupDiGetClassDevsExA @325 + SetupDiGetClassDevsExW @326 + SetupDiGetClassDevsW @327 + SetupDiGetClassImageIndex @328 + SetupDiGetClassImageList @329 + SetupDiGetClassImageListExA @330 PRIVATE + SetupDiGetClassImageListExW @331 PRIVATE + SetupDiGetClassInstallParamsA @332 PRIVATE + SetupDiGetClassInstallParamsW @333 PRIVATE + SetupDiGetDeviceInfoListClass @334 PRIVATE + SetupDiGetDeviceInfoListDetailA @335 + SetupDiGetDeviceInfoListDetailW @336 + SetupDiGetDeviceInstallParamsA @337 + SetupDiGetDeviceInstallParamsW @338 + SetupDiGetDeviceInstanceIdA @339 + SetupDiGetDeviceInstanceIdW @340 + SetupDiGetDeviceInterfaceAlias @341 PRIVATE + SetupDiGetDeviceInterfaceDetailA @342 + SetupDiGetDeviceInterfaceDetailW @343 + SetupDiGetDevicePropertyW @344 + SetupDiGetDeviceRegistryPropertyA @345 + SetupDiGetDeviceRegistryPropertyW @346 + SetupDiGetDriverInfoDetailA @347 PRIVATE + SetupDiGetDriverInfoDetailW @348 PRIVATE + SetupDiGetDriverInstallParamsA @349 PRIVATE + SetupDiGetDriverInstallParamsW @350 PRIVATE + SetupDiGetHwProfileFriendlyNameA @351 PRIVATE + SetupDiGetHwProfileFriendlyNameExA @352 PRIVATE + SetupDiGetHwProfileFriendlyNameExW @353 PRIVATE + SetupDiGetHwProfileFriendlyNameW @354 PRIVATE + SetupDiGetHwProfileList @355 PRIVATE + SetupDiGetHwProfileListExA @356 PRIVATE + SetupDiGetHwProfileListExW @357 PRIVATE + SetupDiGetINFClassA @358 + SetupDiGetINFClassW @359 + SetupDiGetSelectedDevice @360 PRIVATE + SetupDiGetSelectedDriverA @361 PRIVATE + SetupDiGetSelectedDriverW @362 PRIVATE + SetupDiGetWizardPage @363 PRIVATE + SetupDiInstallClassA @364 + SetupDiInstallClassExA @365 PRIVATE + SetupDiInstallClassExW @366 PRIVATE + SetupDiInstallClassW @367 + SetupDiInstallDevice @368 PRIVATE + SetupDiInstallDeviceInterfaces @369 + SetupDiInstallDriverFiles @370 PRIVATE + SetupDiLoadClassIcon @371 + SetupDiMoveDuplicateDevice @372 PRIVATE + SetupDiOpenClassRegKey @373 + SetupDiOpenClassRegKeyExA @374 + SetupDiOpenClassRegKeyExW @375 + SetupDiOpenDevRegKey @376 + SetupDiOpenDeviceInfoA @377 + SetupDiOpenDeviceInfoW @378 + SetupDiOpenDeviceInterfaceA @379 + SetupDiOpenDeviceInterfaceRegKey @380 PRIVATE + SetupDiOpenDeviceInterfaceW @381 + SetupDiRegisterCoDeviceInstallers @382 + SetupDiRegisterDeviceInfo @383 + SetupDiRemoveDevice @384 + SetupDiRemoveDeviceInterface @385 + SetupDiSelectBestCompatDrv @386 + SetupDiSelectDevice @387 PRIVATE + SetupDiSelectOEMDrv @388 PRIVATE + SetupDiSetClassInstallParamsA @389 + SetupDiSetClassInstallParamsW @390 + SetupDiSetDeviceInstallParamsA @391 + SetupDiSetDeviceInstallParamsW @392 + SetupDiSetDevicePropertyW @393 + SetupDiSetDeviceRegistryPropertyA @394 + SetupDiSetDeviceRegistryPropertyW @395 + SetupDiSetDriverInstallParamsA @396 PRIVATE + SetupDiSetDriverInstallParamsW @397 PRIVATE + SetupDiSetSelectedDevice @398 + SetupDiSetSelectedDriverA @399 PRIVATE + SetupDiSetSelectedDriverW @400 PRIVATE + SetupDiUnremoveDevice @401 PRIVATE + SetupDuplicateDiskSpaceListA @402 + SetupDuplicateDiskSpaceListW @403 + SetupEnumInfSectionsA @404 + SetupEnumInfSectionsW @405 + SetupFindFirstLineA @406 + SetupFindFirstLineW @407 + SetupFindNextLine @408 + SetupFindNextMatchLineA @409 + SetupFindNextMatchLineW @410 + SetupFreeSourceListA @411 PRIVATE + SetupFreeSourceListW @412 PRIVATE + SetupGetBackupInformationA @413 PRIVATE + SetupGetBackupInformationW @414 PRIVATE + SetupGetBinaryField @415 + SetupGetFieldCount @416 + SetupGetFileCompressionInfoA @417 + SetupGetFileCompressionInfoExA @418 + SetupGetFileCompressionInfoExW @419 + SetupGetFileCompressionInfoW @420 + SetupGetFileQueueCount @421 + SetupGetFileQueueFlags @422 + SetupGetInfFileListA @423 + SetupGetInfFileListW @424 + SetupGetInfInformationA @425 + SetupGetInfInformationW @426 + SetupGetInfSections @427 PRIVATE + SetupGetIntField @428 + SetupGetLineByIndexA @429 + SetupGetLineByIndexW @430 + SetupGetLineCountA @431 + SetupGetLineCountW @432 + SetupGetLineTextA @433 + SetupGetLineTextW @434 + SetupGetMultiSzFieldA @435 + SetupGetMultiSzFieldW @436 + SetupGetNonInteractiveMode @437 + SetupGetSourceFileLocationA @438 + SetupGetSourceFileLocationW @439 + SetupGetSourceFileSizeA @440 PRIVATE + SetupGetSourceFileSizeW @441 PRIVATE + SetupGetSourceInfoA @442 + SetupGetSourceInfoW @443 + SetupGetStringFieldA @444 + SetupGetStringFieldW @445 + SetupGetTargetPathA @446 + SetupGetTargetPathW @447 + SetupInitDefaultQueueCallback @448 + SetupInitDefaultQueueCallbackEx @449 + SetupInitializeFileLogA @450 + SetupInitializeFileLogW @451 + SetupInstallFileA @452 + SetupInstallFileExA @453 + SetupInstallFileExW @454 + SetupInstallFileW @455 + SetupInstallFilesFromInfSectionA @456 + SetupInstallFilesFromInfSectionW @457 + SetupInstallFromInfSectionA @458 + SetupInstallFromInfSectionW @459 + SetupInstallServicesFromInfSectionA @460 + SetupInstallServicesFromInfSectionExA @461 PRIVATE + SetupInstallServicesFromInfSectionExW @462 PRIVATE + SetupInstallServicesFromInfSectionW @463 + SetupIterateCabinetA @464 + SetupIterateCabinetW @465 + SetupLogErrorA @466 + SetupLogErrorW @467 + SetupLogFileA @468 + SetupLogFileW @469 + SetupOpenAppendInfFileA @470 + SetupOpenAppendInfFileW @471 + SetupOpenFileQueue @472 + SetupOpenInfFileA @473 + SetupOpenInfFileW @474 + SetupOpenLog @475 + SetupOpenMasterInf @476 + SetupPromptForDiskA @477 + SetupPromptForDiskW @478 + SetupPromptReboot @479 + SetupQueryDrivesInDiskSpaceListA @480 + SetupQueryDrivesInDiskSpaceListW @481 + SetupQueryFileLogA @482 PRIVATE + SetupQueryFileLogW @483 PRIVATE + SetupQueryInfFileInformationA @484 + SetupQueryInfFileInformationW @485 + SetupQueryInfOriginalFileInformationA @486 + SetupQueryInfOriginalFileInformationW @487 + SetupQueryInfVersionInformationA @488 PRIVATE + SetupQueryInfVersionInformationW @489 PRIVATE + SetupQuerySourceListA @490 PRIVATE + SetupQuerySourceListW @491 PRIVATE + SetupQuerySpaceRequiredOnDriveA @492 + SetupQuerySpaceRequiredOnDriveW @493 + SetupQueueCopyA @494 + SetupQueueCopyIndirectA @495 + SetupQueueCopyIndirectW @496 + SetupQueueCopySectionA @497 + SetupQueueCopySectionW @498 + SetupQueueCopyW @499 + SetupQueueDefaultCopyA @500 + SetupQueueDefaultCopyW @501 + SetupQueueDeleteA @502 + SetupQueueDeleteSectionA @503 + SetupQueueDeleteSectionW @504 + SetupQueueDeleteW @505 + SetupQueueRenameA @506 + SetupQueueRenameSectionA @507 + SetupQueueRenameSectionW @508 + SetupQueueRenameW @509 + SetupRemoveFileLogEntryA @510 PRIVATE + SetupRemoveFileLogEntryW @511 PRIVATE + SetupRemoveFromDiskSpaceListA @512 PRIVATE + SetupRemoveFromDiskSpaceListW @513 PRIVATE + SetupRemoveFromSourceListA @514 PRIVATE + SetupRemoveFromSourceListW @515 PRIVATE + SetupRemoveInstallSectionFromDiskSpaceListA @516 PRIVATE + SetupRemoveInstallSectionFromDiskSpaceListW @517 PRIVATE + SetupRemoveSectionFromDiskSpaceListA @518 PRIVATE + SetupRemoveSectionFromDiskSpaceListW @519 PRIVATE + SetupRenameErrorA @520 + SetupRenameErrorW @521 + SetupScanFileQueue @522 PRIVATE + SetupScanFileQueueA @523 + SetupScanFileQueueW @524 + SetupSetDirectoryIdA @525 + SetupSetDirectoryIdExA @526 PRIVATE + SetupSetDirectoryIdExW @527 PRIVATE + SetupSetDirectoryIdW @528 + SetupSetFileQueueAlternatePlatformA @529 + SetupSetFileQueueAlternatePlatformW @530 + SetupSetFileQueueFlags @531 + SetupSetNonInteractiveMode @532 + SetupSetPlatformPathOverrideA @533 PRIVATE + SetupSetPlatformPathOverrideW @534 PRIVATE + SetupSetSourceListA @535 + SetupSetSourceListW @536 + SetupTermDefaultQueueCallback @537 + SetupTerminateFileLog @538 + SetupUninstallOEMInfA @539 + SetupUninstallOEMInfW @540 + ShouldDeviceBeExcluded @541 PRIVATE + StampFileSecurity @542 + StringTableAddString @543 + StringTableAddStringEx @544 + StringTableDestroy @545 + StringTableDuplicate @546 + StringTableEnum @547 PRIVATE + StringTableGetExtraData @548 + StringTableInitialize @549 + StringTableInitializeEx @550 + StringTableLookUpString @551 + StringTableLookUpStringEx @552 + StringTableSetExtraData @553 + StringTableStringFromId @554 + StringTableStringFromIdEx @555 + StringTableTrim @556 + TakeOwnershipOfFile @557 + UnicodeToMultiByte @558 + UnmapAndCloseFile @559 + VerifyCatalogFile @560 PRIVATE + VerifyFile @561 PRIVATE + pSetupAccessRunOnceNodeList @562 PRIVATE + pSetupAddMiniIconToList @563 PRIVATE + pSetupAddTagToGroupOrderListEntry @564 PRIVATE + pSetupAppendStringToMultiSz @565 PRIVATE + pSetupDestroyRunOnceNodeList @566 PRIVATE + pSetupDirectoryIdToPath @567 PRIVATE + pSetupFree=MyFree @568 + pSetupGetField @569 + pSetupGetGlobalFlags @570 + pSetupGetOsLoaderDriveAndPath @571 PRIVATE + pSetupGetQueueFlags @572 + pSetupGetVersionDatum @573 PRIVATE + pSetupGuidFromString @574 PRIVATE + pSetupIsGuidNull @575 PRIVATE + pSetupInstallCatalog @576 + pSetupIsUserAdmin=IsUserAdmin @577 + pSetupMakeSurePathExists @578 PRIVATE + pSetupMalloc=MyMalloc @579 + pSetupRealloc=MyRealloc @580 + pSetupSetGlobalFlags @581 + pSetupSetQueueFlags @582 + pSetupSetSystemSourceFlags @583 PRIVATE + pSetupStringFromGuid @584 PRIVATE + pSetupStringTableAddString=StringTableAddString @585 + pSetupStringTableAddStringEx=StringTableAddStringEx @586 + pSetupStringTableDestroy=StringTableDestroy @587 + pSetupStringTableDuplicate=StringTableDuplicate @588 + pSetupStringTableEnum @589 PRIVATE + pSetupStringTableGetExtraData=StringTableGetExtraData @590 + pSetupStringTableInitialize=StringTableInitialize @591 + pSetupStringTableInitializeEx=StringTableInitializeEx @592 + pSetupStringTableLookUpString=StringTableLookUpString @593 + pSetupStringTableLookUpStringEx=StringTableLookUpStringEx @594 + pSetupStringTableSetExtraData=StringTableSetExtraData @595 + pSetupVerifyCatalogFile @596 PRIVATE + pSetupVerifyQueuedCatalogs @597 PRIVATE diff --git a/lib64/wine/libsfc.def b/lib64/wine/libsfc.def new file mode 100644 index 0000000..e9cac66 --- /dev/null +++ b/lib64/wine/libsfc.def @@ -0,0 +1,14 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/sfc/sfc.spec; do not edit! + +LIBRARY sfc.dll + +EXPORTS + SRSetRestorePoint=sfc_os.SRSetRestorePointA @10 + SRSetRestorePointA=sfc_os.SRSetRestorePointA @11 + SRSetRestorePointW=sfc_os.SRSetRestorePointW @12 + SfcGetNextProtectedFile=sfc_os.SfcGetNextProtectedFile @13 + SfcIsFileProtected=sfc_os.SfcIsFileProtected @14 + SfcIsKeyProtected=sfc_os.SfcIsKeyProtected @15 + SfcWLEventLogoff @16 PRIVATE + SfcWLEventLogon @17 PRIVATE + SfpVerifyFile @18 PRIVATE diff --git a/lib64/wine/libsfc_os.def b/lib64/wine/libsfc_os.def new file mode 100644 index 0000000..de808b7 --- /dev/null +++ b/lib64/wine/libsfc_os.def @@ -0,0 +1,23 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/sfc_os/sfc_os.spec; do not edit! + +LIBRARY sfc_os.dll + +EXPORTS + BeginFileMapEnumeration @1 PRIVATE + CloseFileMapEnumeration @2 PRIVATE + GetNextFileMapContent @3 PRIVATE + SRSetRestorePointA @4 + SRSetRestorePointW @5 + SfcClose @6 PRIVATE + SfcConnectToServer @7 + SfcFileException @8 PRIVATE + SfcGetNextProtectedFile @9 + SfcInitProt @10 PRIVATE + SfcInitiateScan @11 PRIVATE + SfcInstallProtectedFiles @12 PRIVATE + SfcIsFileProtected @13 + SfcIsKeyProtected @14 + SfcTerminateWatcherThread @15 PRIVATE + SfpDeleteCatalog @16 PRIVATE + SfpInstallCatalog @17 PRIVATE + SfpVerifyFile @18 PRIVATE diff --git a/lib64/wine/libshdocvw.def b/lib64/wine/libshdocvw.def new file mode 100644 index 0000000..b047cd9 --- /dev/null +++ b/lib64/wine/libshdocvw.def @@ -0,0 +1,129 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/shdocvw/shdocvw.spec; do not edit! + +LIBRARY shdocvw.dll + +EXPORTS + IEWinMain @101 NONAME + CreateShortcutInDirA @102 NONAME PRIVATE + CreateShortcutInDirW @103 NONAME PRIVATE + WhichPlatformFORWARD @104 NONAME + CreateShortcutInDirEx @105 NONAME PRIVATE + HlinkFindFrame @106 PRIVATE + SetShellOfflineState @107 PRIVATE + AddUrlToFavorites @108 PRIVATE + WinList_Init @110 NONAME + WinList_Terminate @111 NONAME PRIVATE + CreateFromDesktop @115 NONAME PRIVATE + DDECreatePostNotify @116 NONAME PRIVATE + DDEHandleViewFolderNotify @117 NONAME PRIVATE + ShellDDEInit @118 NONAME + SHCreateDesktop @119 NONAME PRIVATE + SHDesktopMessageLoop @120 NONAME PRIVATE + StopWatchModeFORWARD @121 NONAME + StopWatchFlushFORWARD @122 NONAME + StopWatchAFORWARD @123 NONAME + StopWatchWFORWARD @124 NONAME + RunInstallUninstallStubs @125 NONAME + RunInstallUninstallStubs2 @130 NONAME + SHCreateSplashScreen @131 NONAME PRIVATE + IsFileUrl @135 NONAME PRIVATE + IsFileUrlW @136 NONAME PRIVATE + PathIsFilePath @137 NONAME PRIVATE + URLSubLoadString @138 NONAME PRIVATE + OpenPidlOrderStream @139 NONAME PRIVATE + DragDrop @140 NONAME PRIVATE + IEInvalidateImageList @141 NONAME PRIVATE + IEMapPIDLToSystemImageListIndex @142 NONAME PRIVATE + ILIsWeb @143 NONAME PRIVATE + IEGetAttributesOf @145 NONAME PRIVATE + IEBindToObject @146 NONAME PRIVATE + IEGetNameAndFlags @147 NONAME PRIVATE + IEGetDisplayName @148 NONAME PRIVATE + IEBindToObjectEx @149 NONAME PRIVATE + _GetStdLocation @150 NONAME PRIVATE + URLSubRegQueryA @151 NONAME + CShellUIHelper_CreateInstance2 @152 NONAME PRIVATE + IsURLChild @153 NONAME PRIVATE + SHRestricted2A @158 NONAME + SHRestricted2W @159 NONAME + SHIsRestricted2W @160 NONAME PRIVATE + CDDEAuto_Navigate @162 NONAME PRIVATE + SHAddSubscribeFavorite @163 PRIVATE + ResetProfileSharing @164 NONAME + URLSubstitution @165 NONAME PRIVATE + IsIEDefaultBrowser @167 NONAME PRIVATE + ParseURLFromOutsideSourceA @169 NONAME + ParseURLFromOutsideSourceW @170 NONAME + _DeletePidlDPA @171 NONAME PRIVATE + IURLQualify @172 NONAME PRIVATE + SHIsRestricted @173 NONAME PRIVATE + SHIsGlobalOffline @174 NONAME PRIVATE + DetectAndFixAssociations @175 NONAME PRIVATE + EnsureWebViewRegSettings @176 NONAME PRIVATE + WinList_NotifyNewLocation @177 NONAME PRIVATE + WinList_FindFolderWindow @178 NONAME PRIVATE + WinList_GetShellWindows @179 NONAME PRIVATE + WinList_RegisterPending @180 NONAME PRIVATE + WinList_Revoke @181 NONAME PRIVATE + SHMapNbspToSp @183 NONAME PRIVATE + FireEvent_Quit @185 NONAME PRIVATE + SHDGetPageLocation @187 NONAME PRIVATE + SHIEErrorMsgBox @188 NONAME PRIVATE + SHRunIndirectRegClientCommandForward @190 NONAME PRIVATE + SHIsRegisteredClient @191 NONAME PRIVATE + SHGetHistoryPIDL @192 NONAME PRIVATE + IECleanUpAutomationObject @194 NONAME PRIVATE + IEOnFirstBrowserCreation @195 NONAME PRIVATE + IEDDE_WindowDestroyed @196 NONAME PRIVATE + IEDDE_NewWindow @197 NONAME PRIVATE + IsErrorUrl @198 NONAME PRIVATE + SHGetViewStream @200 NONAME PRIVATE + NavToUrlUsingIEA @203 NONAME PRIVATE + NavToUrlUsingIEW @204 NONAME PRIVATE + SearchForElementInHead @208 NONAME PRIVATE + JITCoCreateInstance @209 NONAME PRIVATE + UrlHitsNetW @210 NONAME PRIVATE + ClearAutoSuggestForForms @211 NONAME PRIVATE + GetLinkInfo @212 NONAME PRIVATE + UseCustomInternetSearch @213 NONAME PRIVATE + GetSearchAssistantUrlW @214 NONAME PRIVATE + GetSearchAssistantUrlA @215 NONAME PRIVATE + GetDefaultInternetSearchUrlW @216 NONAME PRIVATE + GetDefaultInternetSearchUrlA @217 NONAME PRIVATE + IEParseDisplayNameWithBCW @218 NONAME + IEILIsEqual @219 NONAME PRIVATE + IECreateFromPathCPWithBCA @221 NONAME PRIVATE + IECreateFromPathCPWithBCW @222 NONAME PRIVATE + ResetWebSettings @223 NONAME PRIVATE + IsResetWebSettingsRequired @224 NONAME PRIVATE + PrepareURLForDisplayUTF8W @225 NONAME PRIVATE + IEIsLinkSafe @226 NONAME PRIVATE + SHUseClassicToolbarGlyphs @227 NONAME PRIVATE + SafeOpenPromptForShellExec @228 NONAME PRIVATE + SafeOpenPromptForPackager @229 NONAME PRIVATE + DllCanUnloadNow @109 PRIVATE + DllGetClassObject @112 PRIVATE + DllGetVersion @113 PRIVATE + DllInstall @114 PRIVATE + DllRegisterServer @126 PRIVATE + DllRegisterWindowClasses @127 PRIVATE + DllUnregisterServer @128 PRIVATE + DoAddToFavDlg @129 PRIVATE + DoAddToFavDlgW @132 PRIVATE + DoFileDownload @133 + DoFileDownloadEx @134 PRIVATE + DoOrganizeFavDlg @144 + DoOrganizeFavDlgW @154 + DoPrivacyDlg @155 PRIVATE + HlinkFrameNavigate @156 PRIVATE + HlinkFrameNavigateNHL @157 PRIVATE + IEAboutBox @166 PRIVATE + IEWriteErrorLog @168 PRIVATE + ImportPrivacySettings @182 + InstallReg_RunDLL @184 + OpenURL=ieframe.OpenURL @186 + SHGetIDispatchForFolder @193 PRIVATE + SetQueryNetSessionCount @201 + SoftwareUpdateMessageBox @202 PRIVATE + URLQualifyA @205 PRIVATE + URLQualifyW @206 PRIVATE diff --git a/lib64/wine/libshell32.def b/lib64/wine/libshell32.def new file mode 100644 index 0000000..afb554c --- /dev/null +++ b/lib64/wine/libshell32.def @@ -0,0 +1,467 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/shell32/shell32.spec; do not edit! + +LIBRARY shell32.dll + +EXPORTS + SHChangeNotifyRegister @2 NONAME + SHDefExtractIconA @3 + SHChangeNotifyDeregister @4 NONAME + SHChangeNotifyUpdateEntryList @5 NONAME + SHDefExtractIconW @6 + PifMgr_OpenProperties @9 NONAME PRIVATE + PifMgr_GetProperties @10 NONAME PRIVATE + PifMgr_SetProperties @11 NONAME PRIVATE + PifMgr_CloseProperties @13 NONAME PRIVATE + ILGetDisplayName @15 NONAME + ILFindLastID @16 NONAME + ILRemoveLastID @17 NONAME + ILClone @18 NONAME + ILCloneFirst @19 NONAME + ILGlobalClone @20 NONAME + ILIsEqual @21 NONAME + ILIsParent @23 NONAME + ILFindChild @24 NONAME + ILCombine @25 NONAME + ILLoadFromStream @26 NONAME + ILSaveToStream @27 NONAME + SHILCreateFromPath=SHILCreateFromPathAW @28 + PathIsRoot=PathIsRootAW @29 NONAME + PathBuildRoot=PathBuildRootAW @30 NONAME + PathFindExtension=PathFindExtensionAW @31 NONAME + PathAddBackslash=PathAddBackslashAW @32 NONAME + PathRemoveBlanks=PathRemoveBlanksAW @33 NONAME + PathFindFileName=PathFindFileNameAW @34 NONAME + PathRemoveFileSpec=PathRemoveFileSpecAW @35 NONAME + PathAppend=PathAppendAW @36 NONAME + PathCombine=PathCombineAW @37 NONAME + PathStripPath=PathStripPathAW @38 NONAME + PathIsUNC=PathIsUNCAW @39 NONAME + PathIsRelative=PathIsRelativeAW @40 NONAME + IsLFNDriveA @41 NONAME + IsLFNDriveW @42 NONAME + PathIsExe=PathIsExeAW @43 NONAME + PathFileExists=PathFileExistsAW @45 NONAME + PathMatchSpec=PathMatchSpecAW @46 NONAME + PathMakeUniqueName=PathMakeUniqueNameAW @47 NONAME + PathSetDlgItemPath=PathSetDlgItemPathAW @48 NONAME + PathQualify=PathQualifyAW @49 NONAME + PathStripToRoot=PathStripToRootAW @50 NONAME + PathResolve=PathResolveAW @51 + PathGetArgs=PathGetArgsAW @52 NONAME + DoEnvironmentSubst=DoEnvironmentSubstAW @53 + LogoffWindowsDialog @54 PRIVATE + PathQuoteSpaces=PathQuoteSpacesAW @55 NONAME + PathUnquoteSpaces=PathUnquoteSpacesAW @56 NONAME + PathGetDriveNumber=PathGetDriveNumberAW @57 NONAME + ParseField=ParseFieldAW @58 NONAME + RestartDialog @59 NONAME + ExitWindowsDialog @60 NONAME + RunFileDlg=RunFileDlgAW @61 NONAME + PickIconDlg @62 NONAME + GetFileNameFromBrowse=GetFileNameFromBrowseAW @63 NONAME + DriveType @64 NONAME + InvalidateDriveType @65 NONAME + IsNetDrive @66 NONAME + Shell_MergeMenus @67 NONAME + SHGetSetSettings @68 NONAME + SHGetNetResource @69 NONAME PRIVATE + SHCreateDefClassObject @70 NONAME + Shell_GetImageLists @71 NONAME + Shell_GetCachedImageIndex=Shell_GetCachedImageIndexAW @72 NONAME + SHShellFolderView_Message @73 NONAME + SHCreateStdEnumFmtEtc @74 NONAME + PathYetAnotherMakeUniqueName @75 NONAME + DragQueryInfo @76 PRIVATE + SHMapPIDLToSystemImageListIndex @77 NONAME + OleStrToStrN=OleStrToStrNAW @78 NONAME + StrToOleStrN=StrToOleStrNAW @79 NONAME + CIDLData_CreateFromIDArray @83 NONAME + SHIsBadInterfacePtr @84 PRIVATE + OpenRegStream=shlwapi.SHOpenRegStreamA @85 NONAME + SHRegisterDragDrop @86 NONAME + SHRevokeDragDrop @87 NONAME + SHDoDragDrop @88 NONAME + SHCloneSpecialIDList @89 NONAME + SHFindFiles @90 NONAME + SHFindComputer @91 PRIVATE + PathGetShortPath=PathGetShortPathAW @92 NONAME + Win32CreateDirectory=Win32CreateDirectoryAW @93 NONAME + Win32RemoveDirectory=Win32RemoveDirectoryAW @94 NONAME + SHLogILFromFSIL @95 NONAME + StrRetToStrN=StrRetToStrNAW @96 NONAME + SHWaitForFileToOpen @97 NONAME + SHGetRealIDL @98 NONAME + SetAppStartingCursor @99 NONAME + SHRestricted @100 NONAME + SHCoCreateInstance @102 NONAME + SignalFileOpen @103 NONAME + FileMenu_DeleteAllItems @104 NONAME + FileMenu_DrawItem @105 NONAME + FileMenu_FindSubMenuByPidl @106 NONAME + FileMenu_GetLastSelectedItemPidls @107 NONAME + FileMenu_HandleMenuChar @108 NONAME + FileMenu_InitMenuPopup @109 NONAME + FileMenu_InsertUsingPidl @110 NONAME + FileMenu_Invalidate @111 NONAME + FileMenu_MeasureItem @112 NONAME + FileMenu_ReplaceUsingPidl @113 NONAME + FileMenu_Create @114 NONAME + FileMenu_AppendItem=FileMenu_AppendItemAW @115 NONAME + FileMenu_TrackPopupMenuEx @116 NONAME + FileMenu_DeleteItemByCmd @117 NONAME + FileMenu_Destroy @118 NONAME + IsLFNDrive=IsLFNDriveAW @119 NONAME + FileMenu_AbortInitMenu @120 NONAME + SHFlushClipboard @121 NONAME + RunDLL_CallEntry16 @122 NONAME + SHFreeUnusedLibraries @123 NONAME + FileMenu_AppendFilesForPidl @124 NONAME + FileMenu_AddFilesForPidl @125 NONAME + SHOutOfMemoryMessageBox @126 NONAME + SHWinHelp @127 NONAME + SHDllGetClassObject=DllGetClassObject @128 NONAME + DAD_AutoScroll @129 NONAME + DAD_DragEnter @130 NONAME + DAD_DragEnterEx @131 NONAME + DAD_DragLeave @132 NONAME + DAD_DragMove @134 NONAME + DAD_SetDragImage @136 NONAME + DAD_ShowDragImage @137 NONAME + Desktop_UpdateBriefcaseOnEvent @139 PRIVATE + FileMenu_DeleteItemByIndex @140 NONAME + FileMenu_DeleteItemByFirstID @141 NONAME + FileMenu_DeleteSeparator @142 NONAME + FileMenu_EnableItemByCmd @143 NONAME + FileMenu_GetItemExtent @144 NONAME + PathFindOnPath=PathFindOnPathAW @145 NONAME + RLBuildListOfPaths @146 NONAME + SHCLSIDFromString=SHCLSIDFromStringAW @147 NONAME + SHMapIDListToImageListIndexAsync @148 NONAME + SHFind_InitMenuPopup @149 NONAME + SHLoadOLE @151 NONAME + ILGetSize @152 NONAME + ILGetNext @153 NONAME + ILAppendID @154 NONAME + ILFree @155 NONAME + ILGlobalFree @156 NONAME + ILCreateFromPath=ILCreateFromPathAW @157 NONAME + PathGetExtension=PathGetExtensionAW @158 NONAME + PathIsDirectory=PathIsDirectoryAW @159 NONAME + SHNetConnectionDialog @160 PRIVATE + SHRunControlPanel @161 NONAME + SHSimpleIDListFromPath=SHSimpleIDListFromPathAW @162 NONAME + StrToOleStr=StrToOleStrAW @163 NONAME + Win32DeleteFile=Win32DeleteFileAW @164 NONAME + SHCreateDirectory @165 NONAME + CallCPLEntry16 @166 NONAME + SHAddFromPropSheetExtArray @167 NONAME + SHCreatePropSheetExtArray @168 NONAME + SHDestroyPropSheetExtArray @169 NONAME + SHReplaceFromPropSheetExtArray @170 NONAME + PathCleanupSpec @171 NONAME + SHCreateLinks @172 NONAME + SHValidateUNC @173 NONAME + SHCreateShellFolderViewEx @174 NONAME + SHGetSpecialFolderPath=SHGetSpecialFolderPathAW @175 NONAME + SHSetInstanceExplorer=shcore.SetProcessReference @176 NONAME + DAD_SetDragImageFromListView @177 PRIVATE + SHObjectProperties @178 NONAME + SHGetNewLinkInfoA @179 NONAME + SHGetNewLinkInfoW @180 NONAME + RegisterShellHook @181 NONAME + ShellMessageBoxW @182 NONAME + ShellMessageBoxA @183 NONAME + ArrangeWindows @184 NONAME + SHHandleDiskFull @185 PRIVATE + ILGetDisplayNameEx @186 NONAME + ILGetPseudoNameW @187 PRIVATE + ShellDDEInit @188 NONAME + ILCreateFromPathA @189 NONAME + ILCreateFromPathW @190 NONAME + SHUpdateImageA @191 NONAME + SHUpdateImageW @192 NONAME + SHHandleUpdateImage @193 NONAME + SHCreatePropSheetExtArrayEx @194 NONAME + SHFree @195 NONAME + SHAlloc @196 NONAME + SHGlobalDefect @197 PRIVATE + SHAbortInvokeCommand @198 NONAME + SHGetFileIcon @199 PRIVATE + SHLocalAlloc @200 PRIVATE + SHLocalFree @201 PRIVATE + SHLocalReAlloc @202 PRIVATE + AddCommasW @203 PRIVATE + ShortSizeFormatW @204 PRIVATE + Printer_LoadIconsW @205 + Link_AddExtraDataSection @206 PRIVATE + Link_ReadExtraDataSection @207 PRIVATE + Link_RemoveExtraDataSection @208 PRIVATE + Int64ToString @209 PRIVATE + LargeIntegerToString @210 PRIVATE + Printers_GetPidl @211 PRIVATE + Printers_AddPrinterPropPages @212 PRIVATE + Printers_RegisterWindowW @213 + Printers_UnregisterWindow @214 + SHStartNetConnectionDialog @215 NONAME + SHInitRestricted @244 NONAME + PathParseIconLocation=PathParseIconLocationAW @249 NONAME + PathRemoveExtension=PathRemoveExtensionAW @250 NONAME + PathRemoveArgs=PathRemoveArgsAW @251 NONAME + SHCreateShellFolderView @256 + LinkWindow_RegisterClass @258 NONAME + LinkWindow_UnregisterClass @259 NONAME + SHRegCloseKey @505 + SHRegOpenKeyA @506 + SHRegOpenKeyW @507 + SHRegQueryValueA @508 + SHRegQueryValueExA @509 + SHRegQueryValueW @510 + SHRegQueryValueExW @511 + SHRegDeleteKeyW @512 + SHAllocShared @520 NONAME + SHLockShared @521 NONAME + SHUnlockShared @522 NONAME + SHFreeShared @523 NONAME + RealDriveType @524 NONAME + RealDriveTypeFlags @525 PRIVATE + SHFlushSFCache @526 + NTSHChangeNotifyRegister @640 NONAME + NTSHChangeNotifyDeregister @641 NONAME + SHChangeNotifyReceive @643 PRIVATE + SHChangeNotification_Lock @644 NONAME + SHChangeNotification_Unlock @645 NONAME + SHChangeRegistrationReceive @646 PRIVATE + ReceiveAddToRecentDocs @647 PRIVATE + SHWaitOp_Operate @648 PRIVATE + PathIsSameRoot=PathIsSameRootAW @650 NONAME + WriteCabinetState @652 NONAME + PathProcessCommand=PathProcessCommandAW @653 NONAME + ReadCabinetState @654 + FileIconInit @660 NONAME + IsUserAnAdmin @680 + SHPropStgCreate @685 + SHPropStgReadMultiple @688 + SHPropStgWriteMultiple @689 + CDefFolderMenu_Create2 @701 + GUIDFromStringW @704 NONAME + SHGetSetFolderCustomSettings @709 + PathIsTemporaryW @714 NONAME + SHCreateSessionKey @723 NONAME + SHGetImageList @727 + RestartDialogEx @730 NONAME + SHCreateFileExtractIconW @743 + SHLimitInputEdit @747 + FOOBAR1217 @1217 PRIVATE + CheckEscapesA @7 + CheckEscapesW @8 + CommandLineToArgvW=shcore.CommandLineToArgvW @12 + Control_FillCache_RunDLL=Control_FillCache_RunDLLA @14 + Control_FillCache_RunDLLA @22 + Control_FillCache_RunDLLW @44 + Control_RunDLL=Control_RunDLLA @80 + Control_RunDLLA @81 + Control_RunDLLAsUserW @82 PRIVATE + Control_RunDLLW @101 + DllCanUnloadNow @133 PRIVATE + DllGetClassObject @135 PRIVATE + DllGetVersion @138 PRIVATE + DllInstall @150 PRIVATE + DllRegisterServer @216 PRIVATE + DllUnregisterServer @217 PRIVATE + DoEnvironmentSubstA @218 + DoEnvironmentSubstW @219 + DragAcceptFiles @220 + DragFinish @221 + DragQueryFile=DragQueryFileA @222 + DragQueryFileA @223 + DragQueryFileAorW @224 PRIVATE + DragQueryFileW @225 + DragQueryPoint @226 + DuplicateIcon @227 + ExtractAssociatedIconA @228 + ExtractAssociatedIconExA @229 + ExtractAssociatedIconExW @230 + ExtractAssociatedIconW @231 + ExtractIconA @232 + ExtractIconEx=ExtractIconExA @233 + ExtractIconExA @234 + ExtractIconExW @235 + ExtractIconResInfoA @236 PRIVATE + ExtractIconResInfoW @237 PRIVATE + ExtractIconW @238 + ExtractVersionResource16W @239 + FindExeDlgProc @240 PRIVATE + FindExecutableA @241 + FindExecutableW @242 + FixupOptionalComponents @245 PRIVATE + FreeIconList @246 + GetCurrentProcessExplicitAppUserModelID=shcore.GetCurrentProcessExplicitAppUserModelID @247 + InitNetworkAddressControl @248 + InternalExtractIconListA @252 PRIVATE + InternalExtractIconListW @253 PRIVATE + OCInstall @254 PRIVATE + OpenAs_RunDLL=OpenAs_RunDLLA @255 + OpenAs_RunDLLA @257 + OpenAs_RunDLLW @260 + PrintersGetCommand_RunDLL @261 PRIVATE + PrintersGetCommand_RunDLLA @262 PRIVATE + PrintersGetCommand_RunDLLW @263 PRIVATE + RealShellExecuteA @264 PRIVATE + RealShellExecuteExA @265 PRIVATE + RealShellExecuteExW @266 PRIVATE + RealShellExecuteW @267 PRIVATE + RegenerateUserEnvironment @268 + SetCurrentProcessExplicitAppUserModelID=shcore.SetCurrentProcessExplicitAppUserModelID @269 + SHAddToRecentDocs @270 + SHAppBarMessage @271 + SHAssocEnumHandlers @272 + SHBindToParent @273 + SHBrowseForFolder=SHBrowseForFolderA @274 + SHBrowseForFolderA @275 + SHBrowseForFolderW @276 + SHChangeNotify @277 + SHChangeNotifySuspendResume @278 PRIVATE + SHCreateQueryCancelAutoPlayMoniker @279 + SHCreateDefaultContextMenu @280 + SHCreateDirectoryExA @281 + SHCreateDirectoryExW @282 + SHCreateItemFromIDList @283 + SHCreateItemFromParsingName @284 + SHCreateItemInKnownFolder @285 + SHCreateItemFromRelativeName @286 + SHCreateProcessAsUserW @287 PRIVATE + SHCreateShellItem @288 + SHCreateShellItemArray @289 + SHCreateShellItemArrayFromDataObject @290 + SHCreateShellItemArrayFromShellItem @291 + SHCreateShellItemArrayFromIDLists @292 + SHEmptyRecycleBinA @293 + SHEmptyRecycleBinW @294 + SHEnumerateUnreadMailAccountsW @295 + SHExtractIconsW=user32.PrivateExtractIconsW @296 + SHFileOperation=SHFileOperationA @297 + SHFileOperationA @298 + SHFileOperationW @299 + SHFormatDrive @300 + SHFreeNameMappings @301 + SHGetDataFromIDListA @302 + SHGetDataFromIDListW @303 + SHGetDesktopFolder @304 + SHGetDiskFreeSpaceA=kernel32.GetDiskFreeSpaceExA @305 + SHGetDiskFreeSpaceExA=kernel32.GetDiskFreeSpaceExA @306 + SHGetDiskFreeSpaceExW=kernel32.GetDiskFreeSpaceExW @307 + SHGetFileInfo=SHGetFileInfoA @308 + SHGetFileInfoA @309 + SHGetFileInfoW @310 + SHGetFolderLocation @311 + SHGetFolderPathA @312 + SHGetFolderPathEx @313 + SHGetFolderPathAndSubDirA @314 + SHGetFolderPathAndSubDirW @315 + SHGetFolderPathW @316 + SHGetFreeDiskSpace @317 PRIVATE + SHGetIconOverlayIndexA @318 + SHGetIconOverlayIndexW @319 + SHGetIDListFromObject @320 + SHGetInstanceExplorer=shcore.GetProcessReference @321 + SHGetItemFromDataObject @322 + SHGetItemFromObject @323 + SHGetKnownFolderIDList @324 + SHGetKnownFolderItem @325 + SHGetKnownFolderPath @326 + SHGetLocalizedName @327 + SHGetMalloc @328 + SHGetNameFromIDList @329 + SHGetNewLinkInfo=SHGetNewLinkInfoA @330 + SHGetPathFromIDList=SHGetPathFromIDListA @331 + SHGetPathFromIDListA @332 + SHGetPathFromIDListEx @333 + SHGetPathFromIDListW @334 + SHGetPropertyStoreForWindow @335 + SHGetPropertyStoreFromParsingName @336 + SHGetSettings @337 + SHGetSpecialFolderLocation @338 + SHGetSpecialFolderPathA @339 + SHGetSpecialFolderPathW @340 + SHGetStockIconInfo @341 + SHHelpShortcuts_RunDLL=SHHelpShortcuts_RunDLLA @342 + SHHelpShortcuts_RunDLLA @343 + SHHelpShortcuts_RunDLLW @344 + SHInvokePrinterCommandA @345 PRIVATE + SHInvokePrinterCommandW @346 PRIVATE + SHIsFileAvailableOffline @347 + SHLoadInProc @348 + SHLoadNonloadedIconOverlayIdentifiers @349 + SHOpenFolderAndSelectItems @350 + SHOpenWithDialog @351 + SHParseDisplayName @352 + SHPathPrepareForWriteA @353 + SHPathPrepareForWriteW @354 + SHQueryRecycleBinA @355 + SHQueryRecycleBinW @356 + SHQueryUserNotificationState @357 + SHRemoveLocalizedName @358 + SHSetLocalizedName @359 + SHSetUnreadMailCountW @360 + SHUpdateRecycleBinIcon @361 + SheChangeDirA @362 + SheChangeDirExA @363 PRIVATE + SheChangeDirExW @364 PRIVATE + SheChangeDirW @365 + SheConvertPathW @366 PRIVATE + SheFullPathA @367 PRIVATE + SheFullPathW @368 PRIVATE + SheGetCurDrive @369 PRIVATE + SheGetDirA @370 + SheGetDirExW @371 PRIVATE + SheGetDirW @372 + SheGetPathOffsetW @373 PRIVATE + SheRemoveQuotesA @374 PRIVATE + SheRemoveQuotesW @375 PRIVATE + SheSetCurDrive @376 PRIVATE + SheShortenPathA @377 PRIVATE + SheShortenPathW @378 PRIVATE + ShellAboutA @379 + ShellAboutW @380 + ShellExec_RunDLL=ShellExec_RunDLLA @381 + ShellExec_RunDLLA @382 + ShellExec_RunDLLW @383 + ShellExecuteA @384 + ShellExecuteEx=ShellExecuteExA @385 + ShellExecuteExA @386 + ShellExecuteExW @387 + ShellExecuteW @388 + ShellHookProc @389 + Shell_NotifyIcon=Shell_NotifyIconA @390 + Shell_NotifyIconA @391 + Shell_NotifyIconW @392 + Shell_NotifyIconGetRect @393 + StrChrA=shlwapi.StrChrA @394 + StrChrIA=shlwapi.StrChrIA @395 + StrChrIW=shlwapi.StrChrIW @396 + StrChrW=shlwapi.StrChrW @397 + StrCmpNA=shlwapi.StrCmpNA @398 + StrCmpNIA=shlwapi.StrCmpNIA @399 + StrCmpNIW=shlwapi.StrCmpNIW @400 + StrCmpNW=shlwapi.StrCmpNW @401 + StrCpyNA=kernel32.lstrcpynA @402 + StrCpyNW=shlwapi.StrCpyNW @403 + StrNCmpA=shlwapi.StrCmpNA @404 + StrNCmpIA=shlwapi.StrCmpNIA @405 + StrNCmpIW=shlwapi.StrCmpNIW @406 + StrNCmpW=shlwapi.StrCmpNW @407 + StrNCpyA=kernel32.lstrcpynA @408 + StrNCpyW=shlwapi.StrCpyNW @409 + StrRChrA=shlwapi.StrRChrA @410 + StrRChrIA=shlwapi.StrRChrIA @411 + StrRChrIW=shlwapi.StrRChrIW @412 + StrRChrW=shlwapi.StrRChrW @413 + StrRStrA @414 PRIVATE + StrRStrIA=shlwapi.StrRStrIA @415 + StrRStrIW=shlwapi.StrRStrIW @416 + StrRStrW @417 PRIVATE + StrStrA=shlwapi.StrStrA @418 + StrStrIA=shlwapi.StrStrIA @419 + StrStrIW=shlwapi.StrStrIW @420 + StrStrW=shlwapi.StrStrW @421 + WOWShellExecute @422 diff --git a/lib64/wine/libshfolder.def b/lib64/wine/libshfolder.def new file mode 100644 index 0000000..ebb000d --- /dev/null +++ b/lib64/wine/libshfolder.def @@ -0,0 +1,7 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/shfolder/shfolder.spec; do not edit! + +LIBRARY shfolder.dll + +EXPORTS + SHGetFolderPathA=shell32.SHGetFolderPathA @1 + SHGetFolderPathW=shell32.SHGetFolderPathW @2 diff --git a/lib64/wine/libshlwapi.def b/lib64/wine/libshlwapi.def new file mode 100644 index 0000000..6824f02 --- /dev/null +++ b/lib64/wine/libshlwapi.def @@ -0,0 +1,851 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/shlwapi/shlwapi.spec; do not edit! + +LIBRARY shlwapi.dll + +EXPORTS + ParseURLA @1 NONAME + ParseURLW @2 NONAME + PathFileExistsDefExtA @3 NONAME + PathFileExistsDefExtW @4 NONAME + PathFindOnPathExA @5 NONAME + PathFindOnPathExW @6 NONAME + SHAllocShared @7 NONAME + SHLockShared @8 NONAME + SHUnlockShared @9 NONAME + SHFreeShared @10 NONAME + SHMapHandle @11 NONAME + SHCreateMemStream=shcore.SHCreateMemStream @12 NONAME + RegisterDefaultAcceptHeaders @13 NONAME + GetAcceptLanguagesA @14 NONAME + GetAcceptLanguagesW @15 NONAME + SHCreateThread=shcore.SHCreateThread @16 NONAME + SHWriteDataBlockList @17 NONAME + SHReadDataBlockList @18 NONAME + SHFreeDataBlockList @19 NONAME + SHAddDataBlock @20 NONAME + SHRemoveDataBlock @21 NONAME + SHFindDataBlock @22 NONAME + SHStringFromGUIDA @23 NONAME + SHStringFromGUIDW @24 NONAME + IsCharAlphaWrapW=user32.IsCharAlphaW @25 NONAME + IsCharUpperWrapW=user32.IsCharUpperW @26 NONAME + IsCharLowerWrapW=user32.IsCharLowerW @27 NONAME + IsCharAlphaNumericWrapW=user32.IsCharAlphaNumericW @28 NONAME + IsCharSpaceW @29 NONAME + IsCharBlankW @30 NONAME + IsCharPunctW @31 NONAME + IsCharCntrlW @32 NONAME + IsCharDigitW @33 NONAME + IsCharXDigitW @34 NONAME + GetStringType3ExW @35 NONAME + AppendMenuWrapW=user32.AppendMenuW @36 NONAME + CallWindowProcWrapW=user32.CallWindowProcW @37 NONAME + CharLowerWrapW=user32.CharLowerW @38 NONAME + CharLowerBuffWrapW=user32.CharLowerBuffW @39 NONAME + CharNextWrapW=user32.CharNextW @40 NONAME + CharPrevWrapW=user32.CharPrevW @41 NONAME + CharToOemWrapW=user32.CharToOemW @42 NONAME + CharUpperWrapW=user32.CharUpperW @43 NONAME + CharUpperBuffWrapW=user32.CharUpperBuffW @44 NONAME + CompareStringWrapW=kernel32.CompareStringW @45 NONAME + CopyAcceleratorTableWrapW=user32.CopyAcceleratorTableW @46 NONAME + CreateAcceleratorTableWrapW=user32.CreateAcceleratorTableW @47 NONAME + CreateDCWrapW=gdi32.CreateDCW @48 NONAME + CreateDialogParamWrapW=user32.CreateDialogParamW @49 NONAME + CreateDirectoryWrapW=kernel32.CreateDirectoryW @50 NONAME + CreateEventWrapW=kernel32.CreateEventW @51 NONAME + CreateFileWrapW=kernel32.CreateFileW @52 NONAME + CreateFontIndirectWrapW=gdi32.CreateFontIndirectW @53 NONAME + CreateICWrapW=gdi32.CreateICW @54 NONAME + CreateWindowExWrapW=user32.CreateWindowExW @55 NONAME + DefWindowProcWrapW=user32.DefWindowProcW @56 NONAME + DeleteFileWrapW=kernel32.DeleteFileW @57 NONAME + DialogBoxIndirectParamWrapW=user32.DialogBoxIndirectParamW @58 NONAME + DialogBoxParamWrapW=user32.DialogBoxParamW @59 NONAME + DispatchMessageWrapW=user32.DispatchMessageW @60 NONAME + DrawTextWrapW=user32.DrawTextW @61 NONAME + EnumFontFamiliesWrapW=gdi32.EnumFontFamiliesW @62 NONAME + EnumFontFamiliesExWrapW=gdi32.EnumFontFamiliesExW @63 NONAME + EnumResourceNamesWrapW=kernel32.EnumResourceNamesW @64 NONAME + FindFirstFileWrapW=kernel32.FindFirstFileW @65 NONAME + FindResourceWrapW=kernel32.FindResourceW @66 NONAME + FindWindowWrapW=user32.FindWindowW @67 NONAME + FormatMessageWrapW=kernel32.FormatMessageW @68 NONAME + GetClassInfoWrapW=user32.GetClassInfoW @69 NONAME + GetClassLongWrapW=user32.GetClassLongW @70 NONAME + GetClassNameWrapW=user32.GetClassNameW @71 NONAME + GetClipboardFormatNameWrapW=user32.GetClipboardFormatNameW @72 NONAME + GetCurrentDirectoryWrapW=kernel32.GetCurrentDirectoryW @73 NONAME + GetDlgItemTextWrapW=user32.GetDlgItemTextW @74 NONAME + GetFileAttributesWrapW=kernel32.GetFileAttributesW @75 NONAME + GetFullPathNameWrapW=kernel32.GetFullPathNameW @76 NONAME + GetLocaleInfoWrapW=kernel32.GetLocaleInfoW @77 NONAME + GetMenuStringWrapW=user32.GetMenuStringW @78 NONAME + GetMessageWrapW=user32.GetMessageW @79 NONAME + GetModuleFileNameWrapW=kernel32.GetModuleFileNameW @80 NONAME + GetSystemDirectoryWrapW=kernel32.GetSystemDirectoryW @81 NONAME + SearchPathWrapW=kernel32.SearchPathW @82 NONAME + GetModuleHandleWrapW=kernel32.GetModuleHandleW @83 NONAME + GetObjectWrapW=gdi32.GetObjectW @84 NONAME + GetPrivateProfileIntWrapW=kernel32.GetPrivateProfileIntW @85 NONAME + GetProfileStringWrapW=kernel32.GetProfileStringW @86 NONAME + GetPropWrapW=user32.GetPropW @87 NONAME + GetStringTypeExWrapW=kernel32.GetStringTypeExW @88 NONAME + GetTempFileNameWrapW=kernel32.GetTempFileNameW @89 NONAME + GetTempPathWrapW=kernel32.GetTempPathW @90 NONAME + GetTextExtentPoint32WrapW=gdi32.GetTextExtentPoint32W @91 NONAME + GetTextFaceWrapW=gdi32.GetTextFaceW @92 NONAME + GetTextMetricsWrapW=gdi32.GetTextMetricsW @93 NONAME + GetWindowLongWrapW=user32.GetWindowLongW @94 NONAME + GetWindowTextWrapW=user32.GetWindowTextW @95 NONAME + GetWindowTextLengthWrapW=user32.GetWindowTextLengthW @96 NONAME + GetWindowsDirectoryWrapW=kernel32.GetWindowsDirectoryW @97 NONAME + InsertMenuWrapW=user32.InsertMenuW @98 NONAME + IsDialogMessageWrapW=user32.IsDialogMessageW @99 NONAME + LoadAcceleratorsWrapW=user32.LoadAcceleratorsW @100 NONAME + LoadBitmapWrapW=user32.LoadBitmapW @101 NONAME + LoadCursorWrapW=user32.LoadCursorW @102 NONAME + LoadIconWrapW=user32.LoadIconW @103 NONAME + LoadImageWrapW=user32.LoadImageW @104 NONAME + LoadLibraryExWrapW=kernel32.LoadLibraryExW @105 NONAME + LoadMenuWrapW=user32.LoadMenuW @106 NONAME + LoadStringWrapW=user32.LoadStringW @107 NONAME + MessageBoxIndirectWrapW=user32.MessageBoxIndirectW @108 NONAME + ModifyMenuWrapW=user32.ModifyMenuW @109 NONAME + GetCharWidth32WrapW=gdi32.GetCharWidth32W @110 NONAME + GetCharacterPlacementWrapW=gdi32.GetCharacterPlacementW @111 NONAME + CopyFileWrapW=kernel32.CopyFileW @112 NONAME + MoveFileWrapW=kernel32.MoveFileW @113 NONAME + OemToCharWrapW=user32.OemToCharW @114 NONAME + OutputDebugStringWrapW=kernel32.OutputDebugStringW @115 NONAME + PeekMessageWrapW=user32.PeekMessageW @116 NONAME + PostMessageWrapW=user32.PostMessageW @117 NONAME + PostThreadMessageWrapW=user32.PostThreadMessageW @118 NONAME + RegCreateKeyWrapW=advapi32.RegCreateKeyW @119 NONAME + RegCreateKeyExWrapW=advapi32.RegCreateKeyExW @120 NONAME + RegDeleteKeyWrapW=advapi32.RegDeleteKeyW @121 NONAME + RegEnumKeyWrapW=advapi32.RegEnumKeyW @122 NONAME + RegEnumKeyExWrapW=advapi32.RegEnumKeyExW @123 NONAME + RegOpenKeyWrapW=advapi32.RegOpenKeyW @124 NONAME + RegOpenKeyExWrapW=advapi32.RegOpenKeyExW @125 NONAME + RegQueryInfoKeyWrapW=advapi32.RegQueryInfoKeyW @126 NONAME + RegQueryValueWrapW=advapi32.RegQueryValueW @127 NONAME + RegQueryValueExWrapW=advapi32.RegQueryValueExW @128 NONAME + RegSetValueWrapW=advapi32.RegSetValueW @129 NONAME + RegSetValueExWrapW=advapi32.RegSetValueExW @130 NONAME + RegisterClassWrapW=user32.RegisterClassW @131 NONAME + RegisterClipboardFormatWrapW=user32.RegisterClipboardFormatW @132 NONAME + RegisterWindowMessageWrapW=user32.RegisterWindowMessageW @133 NONAME + RemovePropWrapW=user32.RemovePropW @134 NONAME + SendDlgItemMessageWrapW=user32.SendDlgItemMessageW @135 NONAME + SendMessageWrapW=user32.SendMessageW @136 NONAME + SetCurrentDirectoryWrapW=kernel32.SetCurrentDirectoryW @137 NONAME + SetDlgItemTextWrapW=user32.SetDlgItemTextW @138 NONAME + SetMenuItemInfoWrapW=user32.SetMenuItemInfoW @139 NONAME + SetPropWrapW=user32.SetPropW @140 NONAME + SetWindowLongWrapW=user32.SetWindowLongW @141 NONAME + SetWindowsHookExWrapW=user32.SetWindowsHookExW @142 NONAME + SetWindowTextWrapW=user32.SetWindowTextW @143 NONAME + StartDocWrapW=gdi32.StartDocW @144 NONAME + SystemParametersInfoWrapW=user32.SystemParametersInfoW @145 NONAME + TranslateAcceleratorWrapW=user32.TranslateAcceleratorW @146 NONAME + UnregisterClassWrapW=user32.UnregisterClassW @147 NONAME + VkKeyScanWrapW=user32.VkKeyScanW @148 NONAME + WinHelpWrapW=user32.WinHelpW @149 NONAME + wvsprintfWrapW=user32.wvsprintfW @150 NONAME + StrCmpNCA @151 NONAME + StrCmpNCW @152 NONAME + StrCmpNICA @153 NONAME + StrCmpNICW @154 NONAME + StrCmpCA @155 NONAME + StrCmpCW @156 NONAME + StrCmpICA @157 NONAME + StrCmpICW @158 NONAME + CompareStringAltW=kernel32.CompareStringW @159 NONAME + SHAboutInfoA @160 NONAME + SHAboutInfoW @161 NONAME + SHTruncateString @162 NONAME + IUnknown_QueryStatus @163 NONAME + IUnknown_Exec @164 NONAME + SHSetWindowBits @165 NONAME + SHIsEmptyStream @166 NONAME + SHSetParentHwnd @167 NONAME + ConnectToConnectionPoint @168 NONAME + IUnknown_AtomicRelease=shcore.IUnknown_AtomicRelease @169 NONAME + PathSkipLeadingSlashesA @170 NONAME + SHIsSameObject @171 NONAME + IUnknown_GetWindow @172 NONAME + IUnknown_SetOwner @173 NONAME + IUnknown_SetSite=shcore.IUnknown_SetSite @174 NONAME + IUnknown_GetClassID @175 NONAME + IUnknown_QueryService=shcore.IUnknown_QueryService @176 NONAME + SHLoadMenuPopup @177 NONAME + SHPropagateMessage @178 NONAME + SHMenuIndexFromID @179 NONAME + SHRemoveAllSubMenus @180 NONAME + SHEnableMenuItem @181 NONAME + SHCheckMenuItem @182 NONAME + SHRegisterClassA @183 NONAME + IStream_Read=shcore.IStream_Read @184 NONAME + SHMessageBoxCheckA @185 NONAME + SHSimulateDrop @186 NONAME + SHLoadFromPropertyBag @187 NONAME + IUnknown_TranslateAcceleratorOCS @188 NONAME + IUnknown_OnFocusOCS @189 NONAME + IUnknown_HandleIRestrict @190 NONAME + SHMessageBoxCheckW @191 NONAME + SHGetMenuFromID @192 NONAME + SHGetCurColorRes @193 NONAME + SHWaitForSendMessageThread @194 NONAME + SHIsExpandableFolder @195 NONAME + SHVerbExistsNA @196 NONAME + SHFillRectClr @197 NONAME + SHSearchMapInt @198 NONAME + IUnknown_Set=shcore.IUnknown_Set @199 NONAME + MayQSForward @200 NONAME + MayExecForward @201 NONAME + IsQSForward @202 NONAME + SHStripMneumonicA @203 NONAME + SHIsChildOrSelf @204 NONAME + SHGetValueGoodBootA @205 NONAME + SHGetValueGoodBootW @206 NONAME + IContextMenu_Invoke @207 NONAME PRIVATE + FDSA_Initialize @208 NONAME + FDSA_Destroy @209 NONAME + FDSA_InsertItem @210 NONAME + FDSA_DeleteItem @211 NONAME + IStream_Write=shcore.IStream_Write @212 NONAME + IStream_Reset=shcore.IStream_Reset @213 NONAME + IStream_Size=shcore.IStream_Size @214 NONAME + SHAnsiToUnicode @215 NONAME + SHAnsiToUnicodeCP @216 NONAME + SHUnicodeToAnsi @217 NONAME + SHUnicodeToAnsiCP @218 NONAME + QISearch @219 + SHSetDefaultDialogFont @220 NONAME + SHRemoveDefaultDialogFont @221 NONAME + SHGlobalCounterCreate @222 NONAME + SHGlobalCounterGetValue @223 NONAME + SHGlobalCounterIncrement @224 NONAME + SHStripMneumonicW @225 NONAME + ZoneCheckPathA @226 NONAME PRIVATE + ZoneCheckPathW @227 NONAME PRIVATE + ZoneCheckUrlA @228 NONAME PRIVATE + ZoneCheckUrlW @229 NONAME PRIVATE + ZoneCheckUrlExA @230 NONAME PRIVATE + ZoneCheckUrlExW @231 NONAME + ZoneCheckUrlExCacheA @232 NONAME PRIVATE + ZoneCheckUrlExCacheW @233 NONAME PRIVATE + ZoneCheckHost @234 NONAME PRIVATE + ZoneCheckHostEx @235 NONAME PRIVATE + SHPinDllOfCLSID @236 NONAME + SHRegisterClassW @237 NONAME + SHUnregisterClassesA @238 NONAME + SHUnregisterClassesW @239 NONAME + SHDefWindowProc @240 NONAME + StopWatchMode @241 NONAME + StopWatchFlush @242 NONAME + StopWatchA @243 NONAME + StopWatchW @244 NONAME + StopWatch_TimerHandler @245 NONAME + StopWatch_CheckMsg @246 NONAME PRIVATE + StopWatch_MarkFrameStart @247 NONAME + StopWatch_MarkSameFrameStart @248 NONAME PRIVATE + StopWatch_MarkJavaStop @249 NONAME + GetPerfTime @250 NONAME + StopWatch_DispatchTime @251 NONAME PRIVATE + StopWatch_SetMsgLastLocation @252 NONAME + StopWatchExA @253 NONAME PRIVATE + StopWatchExW @254 NONAME PRIVATE + EventTraceHandler @255 NONAME PRIVATE + IUnknown_GetSite=shcore.IUnknown_GetSite @256 NONAME + SHCreateWorkerWindowA @257 NONAME + SHRegisterWaitForSingleObject @258 NONAME PRIVATE + SHUnregisterWait @259 NONAME PRIVATE + SHQueueUserWorkItem @260 NONAME + SHCreateTimerQueue @261 NONAME PRIVATE + SHDeleteTimerQueue @262 NONAME PRIVATE + SHSetTimerQueueTimer @263 NONAME + SHChangeTimerQueueTimer @264 NONAME PRIVATE + SHCancelTimerQueueTimer @265 NONAME PRIVATE + SHRestrictionLookup @266 NONAME + SHWeakQueryInterface @267 NONAME + SHWeakReleaseInterface @268 NONAME + GUIDFromStringA @269 NONAME + GUIDFromStringW @270 NONAME + SHGetRestriction @271 NONAME + SHSetThreadPoolLimits @272 NONAME PRIVATE + SHTerminateThreadPool @273 NONAME PRIVATE + RegisterGlobalHotkeyW @274 NONAME PRIVATE + RegisterGlobalHotkeyA @275 NONAME PRIVATE + WhichPlatform @276 NONAME + SHDialogBox @277 NONAME PRIVATE + SHCreateWorkerWindowW @278 NONAME + SHInvokeDefaultCommand @279 NONAME + SHRegGetIntW=shcore.SHRegGetIntW @280 NONAME + SHPackDispParamsV @281 NONAME + SHPackDispParams @282 NONAME + IConnectionPoint_InvokeWithCancel @283 NONAME + IConnectionPoint_SimpleInvoke @284 NONAME + IConnectionPoint_OnChanged @285 NONAME + IUnknown_CPContainerInvokeParam @286 NONAME + IUnknown_CPContainerOnChanged @287 NONAME + IUnknown_CPContainerInvokeIndirect @288 NONAME PRIVATE + PlaySoundWrapW @289 NONAME + SHMirrorIcon @290 NONAME PRIVATE + SHMessageBoxCheckExA @291 NONAME + SHMessageBoxCheckExW @292 NONAME + SHCancelUserWorkItems @293 NONAME PRIVATE + SHGetIniStringW @294 NONAME + SHSetIniStringW @295 NONAME + CreateURLFileContentsW @296 NONAME PRIVATE + CreateURLFileContentsA @297 NONAME PRIVATE + WritePrivateProfileStringWrapW=kernel32.WritePrivateProfileStringW @298 NONAME + ExtTextOutWrapW=gdi32.ExtTextOutW @299 NONAME + CreateFontWrapW=gdi32.CreateFontW @300 NONAME + DrawTextExWrapW=user32.DrawTextExW @301 NONAME + GetMenuItemInfoWrapW=user32.GetMenuItemInfoW @302 NONAME + InsertMenuItemWrapW=user32.InsertMenuItemW @303 NONAME + CreateMetaFileWrapW=gdi32.CreateMetaFileW @304 NONAME + CreateMutexWrapW=kernel32.CreateMutexW @305 NONAME + ExpandEnvironmentStringsWrapW=kernel32.ExpandEnvironmentStringsW @306 NONAME + CreateSemaphoreWrapW=kernel32.CreateSemaphoreW @307 NONAME + IsBadStringPtrWrapW=kernel32.IsBadStringPtrW @308 NONAME + LoadLibraryWrapW=kernel32.LoadLibraryW @309 NONAME + GetTimeFormatWrapW=kernel32.GetTimeFormatW @310 NONAME + GetDateFormatWrapW=kernel32.GetDateFormatW @311 NONAME + GetPrivateProfileStringWrapW=kernel32.GetPrivateProfileStringW @312 NONAME + SHGetFileInfoWrapW @313 NONAME + RegisterClassExWrapW=user32.RegisterClassExW @314 NONAME + GetClassInfoExWrapW=user32.GetClassInfoExW @315 NONAME + IShellFolder_GetDisplayNameOf @316 NONAME PRIVATE + IShellFolder_ParseDisplayName @317 NONAME PRIVATE + DragQueryFileWrapW @318 NONAME + FindWindowExWrapW=user32.FindWindowExW @319 NONAME + RegisterMIMETypeForExtensionA @320 NONAME + RegisterMIMETypeForExtensionW @321 NONAME + UnregisterMIMETypeForExtensionA @322 NONAME + UnregisterMIMETypeForExtensionW @323 NONAME + RegisterExtensionForMIMETypeA @324 NONAME + RegisterExtensionForMIMETypeW @325 NONAME + UnregisterExtensionForMIMETypeA @326 NONAME + UnregisterExtensionForMIMETypeW @327 NONAME + GetMIMETypeSubKeyA @328 NONAME + GetMIMETypeSubKeyW @329 NONAME + MIME_GetExtensionA @330 NONAME + MIME_GetExtensionW @331 NONAME + CallMsgFilterWrapW=user32.CallMsgFilterW @332 NONAME + SHBrowseForFolderWrapW @333 NONAME + SHGetPathFromIDListWrapW @334 NONAME + ShellExecuteExWrapW @335 NONAME + SHFileOperationWrapW @336 NONAME + ExtractIconExWrapW=user32.PrivateExtractIconExW @337 NONAME + SetFileAttributesWrapW=kernel32.SetFileAttributesW @338 NONAME + GetNumberFormatWrapW=kernel32.GetNumberFormatW @339 NONAME + MessageBoxWrapW=user32.MessageBoxW @340 NONAME + FindNextFileWrapW=kernel32.FindNextFileW @341 NONAME + SHInterlockedCompareExchange @342 NONAME + SHRegGetCLSIDKeyA @343 NONAME + SHRegGetCLSIDKeyW @344 NONAME + SHAnsiToAnsi=shcore.SHAnsiToAnsi @345 NONAME + SHUnicodeToUnicode=shcore.SHUnicodeToUnicode @346 NONAME + RegDeleteValueWrapW=advapi32.RegDeleteValueW @347 NONAME + SHGetFileDescriptionW @348 NONAME PRIVATE + SHGetFileDescriptionA @349 NONAME PRIVATE + GetFileVersionInfoSizeWrapW @350 NONAME + GetFileVersionInfoWrapW @351 NONAME + VerQueryValueWrapW @352 NONAME + SHFormatDateTimeA @353 NONAME + SHFormatDateTimeW @354 NONAME + IUnknown_EnableModeless @355 NONAME + CreateAllAccessSecurityAttributes @356 NONAME + SHGetNewLinkInfoWrapW @357 NONAME + SHDefExtractIconWrapW @358 NONAME + OpenEventWrapW=kernel32.OpenEventW @359 NONAME + RemoveDirectoryWrapW=kernel32.RemoveDirectoryW @360 NONAME + GetShortPathNameWrapW=kernel32.GetShortPathNameW @361 NONAME + GetUserNameWrapW=advapi32.GetUserNameW @362 NONAME + SHInvokeCommand @363 NONAME + DoesStringRoundTripA @364 NONAME + DoesStringRoundTripW @365 NONAME + RegEnumValueWrapW=advapi32.RegEnumValueW @366 NONAME + WritePrivateProfileStructWrapW=kernel32.WritePrivateProfileStructW @367 NONAME + GetPrivateProfileStructWrapW=kernel32.GetPrivateProfileStructW @368 NONAME + CreateProcessWrapW=kernel32.CreateProcessW @369 NONAME + ExtractIconWrapW @370 NONAME + DdeInitializeWrapW=user32.DdeInitializeW @371 NONAME + DdeCreateStringHandleWrapW=user32.DdeCreateStringHandleW @372 NONAME + DdeQueryStringWrapW=user32.DdeQueryStringW @373 NONAME + SHCheckDiskForMediaA @374 NONAME PRIVATE + SHCheckDiskForMediaW @375 NONAME PRIVATE + MLGetUILanguage=kernel32.GetUserDefaultUILanguage @376 NONAME + MLLoadLibraryA @377 NONAME + MLLoadLibraryW @378 NONAME + Shell_GetCachedImageIndexWrapW @379 NONAME PRIVATE + Shell_GetCachedImageIndexWrapA @380 NONAME PRIVATE + AssocCopyVerbs @381 NONAME PRIVATE + ZoneComputePaneSize @382 NONAME + ZoneConfigureW @383 NONAME PRIVATE + SHRestrictedMessageBox @384 NONAME PRIVATE + SHLoadRawAccelerators @385 NONAME PRIVATE + SHQueryRawAccelerator @386 NONAME PRIVATE + SHQueryRawAcceleratorMsg @387 NONAME PRIVATE + ShellMessageBoxWrapW @388 NONAME + GetSaveFileNameWrapW @389 NONAME + WNetRestoreConnectionWrapW @390 NONAME + WNetGetLastErrorWrapW @391 NONAME + EndDialogWrap=user32.EndDialog @392 NONAME + CreateDialogIndirectParamWrapW=user32.CreateDialogIndirectParamW @393 NONAME + SHChangeNotifyWrap @394 NONAME + MLWinHelpA @395 NONAME PRIVATE + MLHtmlHelpA @396 NONAME PRIVATE + MLWinHelpW @397 NONAME PRIVATE + MLHtmlHelpW @398 NONAME PRIVATE + StrCpyNXA @399 NONAME + StrCpyNXW @400 NONAME + PageSetupDlgWrapW @401 NONAME + PrintDlgWrapW @402 NONAME + GetOpenFileNameWrapW @403 NONAME + IShellFolder_EnumObjects=SHIShellFolder_EnumObjects @404 NONAME + MLBuildResURLA @405 NONAME + MLBuildResURLW @406 NONAME + AssocMakeProgid @407 NONAME PRIVATE + AssocMakeShell @408 NONAME PRIVATE + AssocMakeApplicationByKeyW @409 NONAME PRIVATE + AssocMakeApplicationByKeyA @410 NONAME PRIVATE + AssocMakeFileExtsToApplicationW @411 NONAME PRIVATE + AssocMakeFileExtsToApplicationA @412 NONAME PRIVATE + SHGetMachineInfo @413 NONAME + SHHtmlHelpOnDemandW @414 NONAME PRIVATE + SHHtmlHelpOnDemandA @415 NONAME PRIVATE + SHWinHelpOnDemandW @416 NONAME + SHWinHelpOnDemandA @417 NONAME + MLFreeLibrary @418 NONAME + SHFlushSFCacheWrap @419 NONAME + SHLoadPersistedDataObject @421 NONAME PRIVATE + SHGlobalCounterCreateNamedA @422 NONAME + SHGlobalCounterCreateNamedW @423 NONAME + SHGlobalCounterDecrement @424 NONAME + DeleteMenuWrap=user32.DeleteMenu @425 NONAME + DestroyMenuWrap=user32.DestroyMenu @426 NONAME + TrackPopupMenuWrap=user32.TrackPopupMenu @427 NONAME + TrackPopupMenuExWrap=user32.TrackPopupMenuEx @428 NONAME + MLIsMLHInstance @429 NONAME + MLSetMLHInstance @430 NONAME + MLClearMLHInstance @431 NONAME + SHSendMessageBroadcastA @432 NONAME + SHSendMessageBroadcastW @433 NONAME + SendMessageTimeoutWrapW=user32.SendMessageTimeoutW @434 NONAME + CLSIDFromProgIDWrap=ole32.CLSIDFromProgID @435 NONAME + CLSIDFromStringWrap @436 NONAME + IsOS=shcore.IsOS @437 NONAME + SHLoadRegUIStringA @438 NONAME PRIVATE + SHLoadRegUIStringW @439 NONAME + SHGetWebFolderFilePathA @440 NONAME + SHGetWebFolderFilePathW @441 NONAME + GetEnvironmentVariableWrapW=kernel32.GetEnvironmentVariableW @442 NONAME + SHGetSystemWindowsDirectoryA=kernel32.GetSystemWindowsDirectoryA @443 NONAME + SHGetSystemWindowsDirectoryW=kernel32.GetSystemWindowsDirectoryW @444 NONAME + PathFileExistsAndAttributesA @445 NONAME + PathFileExistsAndAttributesW @446 NONAME + FixSlashesAndColonA @447 NONAME PRIVATE + FixSlashesAndColonW @448 NONAME + NextPathA @449 NONAME PRIVATE + NextPathW @450 NONAME PRIVATE + CharUpperNoDBCSA @451 NONAME PRIVATE + CharUpperNoDBCSW @452 NONAME PRIVATE + CharLowerNoDBCSA @453 NONAME PRIVATE + CharLowerNoDBCSW @454 NONAME PRIVATE + PathIsValidCharA @455 NONAME + PathIsValidCharW @456 NONAME + GetLongPathNameWrapW=kernel32.GetLongPathNameW @457 NONAME + GetLongPathNameWrapA=kernel32.GetLongPathNameA @458 NONAME + SHExpandEnvironmentStringsA=kernel32.ExpandEnvironmentStringsA @459 NONAME + SHExpandEnvironmentStringsW=kernel32.ExpandEnvironmentStringsW @460 NONAME + SHGetAppCompatFlags @461 NONAME + UrlFixupW @462 NONAME + SHExpandEnvironmentStringsForUserA=userenv.ExpandEnvironmentStringsForUserA @463 NONAME + SHExpandEnvironmentStringsForUserW=userenv.ExpandEnvironmentStringsForUserW @464 NONAME + PathUnExpandEnvStringsForUserA @465 NONAME PRIVATE + PathUnExpandEnvStringsForUserW @466 NONAME PRIVATE + SHRunIndirectRegClientCommand @467 NONAME PRIVATE + RunIndirectRegCommand @468 NONAME PRIVATE + RunRegCommand @469 NONAME PRIVATE + IUnknown_ProfferServiceOld @470 NONAME PRIVATE + SHCreatePropertyBagOnRegKey @471 NONAME + SHCreatePropertyBagOnProfileSelection @472 NONAME PRIVATE + SHGetIniStringUTF7W @473 NONAME PRIVATE + SHSetIniStringUTF7W @474 NONAME PRIVATE + GetShellSecurityDescriptor @475 NONAME + SHGetObjectCompatFlags @476 NONAME + SHCreatePropertyBagOnMemory @477 NONAME PRIVATE + IUnknown_TranslateAcceleratorIO @478 NONAME + IUnknown_UIActivateIO @479 NONAME + UrlCrackW=wininet.InternetCrackUrlW @480 NONAME + IUnknown_HasFocusIO @481 NONAME + SHMessageBoxHelpA @482 NONAME PRIVATE + SHMessageBoxHelpW @483 NONAME PRIVATE + IUnknown_QueryServiceExec @484 NONAME + MapWin32ErrorToSTG @485 NONAME PRIVATE + ModeToCreateFileFlags @486 NONAME PRIVATE + SHLoadIndirectString @487 NONAME + SHConvertGraphicsFile @488 NONAME PRIVATE + GlobalAddAtomWrapW=kernel32.GlobalAddAtomW @489 NONAME + GlobalFindAtomWrapW=kernel32.GlobalFindAtomW @490 NONAME + SHGetShellKey @491 NONAME + PrettifyFileDescriptionW @492 NONAME PRIVATE + SHPropertyBag_ReadType @493 NONAME PRIVATE + SHPropertyBag_ReadStr @494 NONAME PRIVATE + SHPropertyBag_WriteStr @495 NONAME PRIVATE + SHPropertyBag_ReadLONG @496 NONAME + SHPropertyBag_WriteLONG @497 NONAME PRIVATE + SHPropertyBag_ReadBOOLOld @498 NONAME PRIVATE + SHPropertyBag_WriteBOOL @499 NONAME PRIVATE + SHPropertyBag_ReadGUID @505 NONAME PRIVATE + SHPropertyBag_WriteGUID @506 NONAME PRIVATE + SHPropertyBag_ReadDWORD @507 NONAME PRIVATE + SHPropertyBag_WriteDWORD @508 NONAME PRIVATE + IUnknown_OnFocusChangeIS @509 NONAME + SHLockSharedEx @510 NONAME PRIVATE + PathFileExistsDefExtAndAttributesW @511 NONAME PRIVATE + IStream_ReadPidl @512 NONAME PRIVATE + IStream_WritePidl @513 NONAME PRIVATE + IUnknown_ProfferService @514 NONAME + SHGetViewStatePropertyBag @515 NONAME + SKGetValueW @516 NONAME + SKSetValueW @517 NONAME + SKDeleteValueW @518 NONAME + SKAllocValueW @519 NONAME + SHPropertyBag_ReadBSTR @520 NONAME PRIVATE + SHPropertyBag_ReadPOINTL @521 NONAME PRIVATE + SHPropertyBag_WritePOINTL @522 NONAME PRIVATE + SHPropertyBag_ReadRECTL @523 NONAME PRIVATE + SHPropertyBag_WriteRECTL @524 NONAME PRIVATE + SHPropertyBag_ReadPOINTS @525 NONAME PRIVATE + SHPropertyBag_WritePOINTS @526 NONAME PRIVATE + SHPropertyBag_ReadSHORT @527 NONAME PRIVATE + SHPropertyBag_WriteSHORT @528 NONAME PRIVATE + SHPropertyBag_ReadInt @529 NONAME PRIVATE + SHPropertyBag_WriteInt @530 NONAME PRIVATE + SHPropertyBag_ReadStream @531 NONAME PRIVATE + SHPropertyBag_WriteStream @532 NONAME PRIVATE + SHGetPerScreenResName @533 NONAME PRIVATE + SHPropertyBag_ReadBOOL @534 NONAME PRIVATE + SHPropertyBag_Delete @535 NONAME PRIVATE + IUnknown_QueryServicePropertyBag @536 NONAME PRIVATE + SHBoolSystemParametersInfo @537 NONAME PRIVATE + IUnknown_QueryServiceForWebBrowserApp @538 NONAME + IUnknown_ShowBrowserBar @539 NONAME PRIVATE + SHInvokeCommandOnContextMenu @540 NONAME PRIVATE + SHInvokeCommandsOnContextMen @541 NONAME PRIVATE + GetUIVersion @542 NONAME + CreateColorSpaceWrapW=gdi32.CreateColorSpaceW @543 NONAME + QuerySourceCreateFromKey @544 NONAME PRIVATE + SHForwardContextMenuMsg @545 NONAME PRIVATE + IUnknown_DoContextMenuPopup @546 NONAME PRIVATE + SHAreIconsEqual @548 NONAME PRIVATE + SHCoCreateInstanceAC @549 NONAME + GetTemplateInfoFromHandle @550 NONAME PRIVATE + IShellFolder_CompareIDs @551 NONAME PRIVATE + AssocCreate @500 + AssocGetPerceivedType @501 + AssocIsDangerous @502 + AssocQueryKeyA @503 + AssocQueryKeyW @504 + AssocQueryStringA @547 + AssocQueryStringByKeyA @552 + AssocQueryStringByKeyW @553 + AssocQueryStringW @554 + ChrCmpIA @555 + ChrCmpIW @556 + ColorAdjustLuma @557 + ColorHLSToRGB @558 + ColorRGBToHLS @559 + DelayLoadFailureHook=kernel32.DelayLoadFailureHook @560 + DllGetVersion @561 PRIVATE + GetMenuPosFromID @562 + HashData @563 + IntlStrEqWorkerA=StrIsIntlEqualA @564 + IntlStrEqWorkerW=StrIsIntlEqualW @565 + IsCharSpaceA @566 + IsInternetESCEnabled @567 + PathAddBackslashA @568 + PathAddBackslashW @569 + PathAddExtensionA @570 + PathAddExtensionW @571 + PathAppendA @572 + PathAppendW @573 + PathBuildRootA @574 + PathBuildRootW @575 + PathCanonicalizeA @576 + PathCanonicalizeW @577 + PathCombineA @578 + PathCombineW @579 + PathCommonPrefixA @580 + PathCommonPrefixW @581 + PathCompactPathA @582 + PathCompactPathExA @583 + PathCompactPathExW @584 + PathCompactPathW @585 + PathCreateFromUrlA @586 + PathCreateFromUrlW @587 + PathCreateFromUrlAlloc @588 + PathFileExistsA @589 + PathFileExistsW @590 + PathFindExtensionA @591 + PathFindExtensionW @592 + PathFindFileNameA @593 + PathFindFileNameW @594 + PathFindNextComponentA @595 + PathFindNextComponentW @596 + PathFindOnPathA @597 + PathFindOnPathW @598 + PathFindSuffixArrayA @599 + PathFindSuffixArrayW @600 + PathGetArgsA @601 + PathGetArgsW @602 + PathGetCharTypeA @603 + PathGetCharTypeW @604 + PathGetDriveNumberA @605 + PathGetDriveNumberW @606 + PathIsContentTypeA @607 + PathIsContentTypeW @608 + PathIsDirectoryA @609 + PathIsDirectoryEmptyA @610 + PathIsDirectoryEmptyW @611 + PathIsDirectoryW @612 + PathIsFileSpecA @613 + PathIsFileSpecW @614 + PathIsLFNFileSpecA @615 + PathIsLFNFileSpecW @616 + PathIsNetworkPathA @617 + PathIsNetworkPathW @618 + PathIsPrefixA @619 + PathIsPrefixW @620 + PathIsRelativeA @621 + PathIsRelativeW @622 + PathIsRootA @623 + PathIsRootW @624 + PathIsSameRootA @625 + PathIsSameRootW @626 + PathIsSystemFolderA @627 + PathIsSystemFolderW @628 + PathIsUNCA @629 + PathIsUNCServerA @630 + PathIsUNCServerShareA @631 + PathIsUNCServerShareW @632 + PathIsUNCServerW @633 + PathIsUNCW @634 + PathIsURLA @635 + PathIsURLW @636 + PathMakePrettyA @637 + PathMakePrettyW @638 + PathMakeSystemFolderA @639 + PathMakeSystemFolderW @640 + PathMatchSpecA @641 + PathMatchSpecW @642 + PathParseIconLocationA @643 + PathParseIconLocationW @644 + PathQuoteSpacesA @645 + PathQuoteSpacesW @646 + PathRelativePathToA @647 + PathRelativePathToW @648 + PathRemoveArgsA @649 + PathRemoveArgsW @650 + PathRemoveBackslashA @651 + PathRemoveBackslashW @652 + PathRemoveBlanksA @653 + PathRemoveBlanksW @654 + PathRemoveExtensionA @655 + PathRemoveExtensionW @656 + PathRemoveFileSpecA @657 + PathRemoveFileSpecW @658 + PathRenameExtensionA @659 + PathRenameExtensionW @660 + PathSearchAndQualifyA @661 + PathSearchAndQualifyW @662 + PathSetDlgItemPathA @663 + PathSetDlgItemPathW @664 + PathSkipRootA @665 + PathSkipRootW @666 + PathStripPathA @667 + PathStripPathW @668 + PathStripToRootA @669 + PathStripToRootW @670 + PathUnExpandEnvStringsA @671 + PathUnExpandEnvStringsW @672 + PathUndecorateA @673 + PathUndecorateW @674 + PathUnmakeSystemFolderA @675 + PathUnmakeSystemFolderW @676 + PathUnquoteSpacesA @677 + PathUnquoteSpacesW @678 + SHAutoComplete @679 + SHCopyKeyA=shcore.SHCopyKeyA @680 + SHCopyKeyW=shcore.SHCopyKeyW @681 + SHCreateShellPalette @682 + SHCreateStreamOnFileA=shcore.SHCreateStreamOnFileA @683 + SHCreateStreamOnFileEx=shcore.SHCreateStreamOnFileEx @684 + SHCreateStreamOnFileW=shcore.SHCreateStreamOnFileW @685 + SHCreateStreamWrapper @686 + SHCreateThreadRef=shcore.SHCreateThreadRef @687 + SHDeleteEmptyKeyA=shcore.SHDeleteEmptyKeyA @688 + SHDeleteEmptyKeyW=shcore.SHDeleteEmptyKeyW @689 + SHDeleteKeyA=shcore.SHDeleteKeyA @690 + SHDeleteKeyW=shcore.SHDeleteKeyW @691 + SHDeleteOrphanKeyA @692 + SHDeleteOrphanKeyW @693 + SHDeleteValueA @694 + SHDeleteValueW @695 + SHEnumKeyExA=shcore.SHEnumKeyExA @696 + SHEnumKeyExW=shcore.SHEnumKeyExW @697 + SHEnumValueA=shcore.SHEnumValueA @698 + SHEnumValueW=shcore.SHEnumValueW @699 + SHGetInverseCMAP @700 + SHGetThreadRef=shcore.SHGetThreadRef @701 + SHGetValueA @702 + SHGetValueW @703 + SHIsLowMemoryMachine @704 + SHOpenRegStream2A=shcore.SHOpenRegStream2A @705 + SHOpenRegStream2W=shcore.SHOpenRegStream2W @706 + SHOpenRegStreamA=shcore.SHOpenRegStreamA @707 + SHOpenRegStreamW=shcore.SHOpenRegStreamW @708 + SHQueryInfoKeyA @709 + SHQueryInfoKeyW @710 + SHQueryValueExA @711 + SHQueryValueExW @712 + SHRegCloseUSKey @713 + SHRegCreateUSKeyA @714 + SHRegCreateUSKeyW @715 + SHRegDeleteEmptyUSKeyA @716 + SHRegDeleteEmptyUSKeyW @717 + SHRegDeleteUSValueA @718 + SHRegDeleteUSValueW @719 + SHRegDuplicateHKey @720 + SHRegEnumUSKeyA @721 + SHRegEnumUSKeyW @722 + SHRegEnumUSValueA @723 + SHRegEnumUSValueW @724 + SHRegGetBoolUSValueA @725 + SHRegGetBoolUSValueW @726 + SHRegGetPathA @727 + SHRegGetPathW @728 + SHRegGetUSValueA @729 + SHRegGetUSValueW @730 + SHRegGetValueA=advapi32.RegGetValueA @731 + SHRegGetValueW=advapi32.RegGetValueW @732 + SHRegOpenUSKeyA @733 + SHRegOpenUSKeyW @734 + SHRegQueryInfoUSKeyA @735 + SHRegQueryInfoUSKeyW @736 + SHRegQueryUSValueA @737 + SHRegQueryUSValueW @738 + SHRegSetPathA @739 + SHRegSetPathW @740 + SHRegSetUSValueA @741 + SHRegSetUSValueW @742 + SHRegWriteUSValueA @743 + SHRegWriteUSValueW @744 + SHRegisterValidateTemplate @745 + SHReleaseThreadRef=shcore.SHReleaseThreadRef @746 + SHSetThreadRef=shcore.SHSetThreadRef @747 + SHSetValueA @748 + SHSetValueW @749 + SHSkipJunction @750 + SHStrDupA @751 + SHStrDupW @752 + StrCSpnA @753 + StrCSpnIA @754 + StrCSpnIW @755 + StrCSpnW @756 + StrCatBuffA @757 + StrCatBuffW @758 + StrCatChainW @759 + StrCatW @760 + StrChrA @761 + StrChrIA @762 + StrChrIW @763 + StrChrNW @764 + StrChrW @765 + StrCmpIW @766 + StrCmpLogicalW @767 + StrCmpNA @768 + StrCmpNIA @769 + StrCmpNIW @770 + StrCmpNW @771 + StrCmpW @772 + StrCpyNW @773 + StrCpyW @774 + StrDupA @775 + StrDupW @776 + StrFormatByteSize64A @777 + StrFormatByteSizeA @778 + StrFormatByteSizeW @779 + StrFormatKBSizeA @780 + StrFormatKBSizeW @781 + StrFromTimeIntervalA @782 + StrFromTimeIntervalW @783 + StrIsIntlEqualA @784 + StrIsIntlEqualW @785 + StrNCatA @786 + StrNCatW @787 + StrPBrkA @788 + StrPBrkW @789 + StrRChrA @790 + StrRChrIA @791 + StrRChrIW @792 + StrRChrW @793 + StrRStrIA @794 + StrRStrIW @795 + StrRetToBSTR @796 + StrRetToBufA @797 + StrRetToBufW @798 + StrRetToStrA @799 + StrRetToStrW @800 + StrSpnA @801 + StrSpnW @802 + StrStrA @803 + StrStrIA @804 + StrStrIW @805 + StrStrNW @806 + StrStrNIW @807 + StrStrW @808 + StrToInt64ExA @809 + StrToInt64ExW @810 + StrToIntA @811 + StrToIntExA @812 + StrToIntExW @813 + StrToIntW @814 + StrTrimA @815 + StrTrimW @816 + UrlApplySchemeA @817 + UrlApplySchemeW @818 + UrlCanonicalizeA @819 + UrlCanonicalizeW @820 + UrlCombineA @821 + UrlCombineW @822 + UrlCompareA @823 + UrlCompareW @824 + UrlCreateFromPathA @825 + UrlCreateFromPathW @826 + UrlEscapeA @827 + UrlEscapeW @828 + UrlGetLocationA @829 + UrlGetLocationW @830 + UrlGetPartA @831 + UrlGetPartW @832 + UrlHashA @833 + UrlHashW @834 + UrlIsA @835 + UrlIsNoHistoryA @836 + UrlIsNoHistoryW @837 + UrlIsOpaqueA @838 + UrlIsOpaqueW @839 + UrlIsW @840 + UrlUnescapeA @841 + UrlUnescapeW @842 + _SHGetInstanceExplorer @843 + wnsprintfA @844 + wnsprintfW @845 + wvnsprintfA @846 + wvnsprintfW @847 diff --git a/lib64/wine/libslc.def b/lib64/wine/libslc.def new file mode 100644 index 0000000..771d61c --- /dev/null +++ b/lib64/wine/libslc.def @@ -0,0 +1,46 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/slc/slc.spec; do not edit! + +LIBRARY slc.dll + +EXPORTS + SLpAuthenticateGenuineTicketResponse @1 PRIVATE + SLpBeginGenuineTicketTransaction @2 PRIVATE + SLpCheckProductKey @3 PRIVATE + SLpGetGenuineBlob @4 PRIVATE + SLpGetGenuineLocal @5 PRIVATE + SLpGetLicenseAcquisitionInfo @6 PRIVATE + SLpGetMachineUGUID @7 PRIVATE + SLpVLActivateProduct @8 PRIVATE + SLClose @9 PRIVATE + SLConsumeRight @10 PRIVATE + SLConsumeWindowsRight @11 PRIVATE + SLDepositOfflineConfirmationId @12 PRIVATE + SLFireEvent @13 PRIVATE + SLGenerateOfflineInstallationId @14 PRIVATE + SLGetInstalledSAMLicenseApplications @15 PRIVATE + SLGetLicense @16 PRIVATE + SLGetLicenseFileId @17 PRIVATE + SLGetLicenseInformation @18 PRIVATE + SLGetLicensingStatusInformation @19 + SLGetPKeyId @20 PRIVATE + SLGetPKeyInformation @21 PRIVATE + SLGetPolicyInformation @22 PRIVATE + SLGetPolicyInformationDWORD @23 PRIVATE + SLGetProductSkuInformation @24 PRIVATE + SLGetSAMLicense @25 PRIVATE + SLGetSLIDList @26 PRIVATE + SLGetServiceInformation @27 PRIVATE + SLGetWindowsInformation @28 + SLGetWindowsInformationDWORD @29 + SLInstallLicense @30 PRIVATE + SLInstallProofOfPurchase @31 PRIVATE + SLInstallSAMLicense @32 PRIVATE + SLOpen @33 + SLReArmWindows @34 PRIVATE + SLRegisterEvent @35 PRIVATE + SLRegisterWindowsEvent @36 PRIVATE + SLUninstallLicense @37 PRIVATE + SLUninstallProofOfPurchase @38 PRIVATE + SLUninstallSAMLicense @39 PRIVATE + SLUnregisterEvent @40 PRIVATE + SLUnregisterWindowsEvent @41 PRIVATE diff --git a/lib64/wine/libsnmpapi.def b/lib64/wine/libsnmpapi.def new file mode 100644 index 0000000..dccec4a --- /dev/null +++ b/lib64/wine/libsnmpapi.def @@ -0,0 +1,50 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/snmpapi/snmpapi.spec; do not edit! + +LIBRARY snmpapi.dll + +EXPORTS + SnmpSvcAddrIsIpx @1 PRIVATE + SnmpSvcAddrToSocket @2 PRIVATE + SnmpSvcBufRevAndCpy @3 PRIVATE + SnmpSvcBufRevInPlace @4 PRIVATE + SnmpSvcDecodeMessage @5 PRIVATE + SnmpSvcEncodeMessage @6 PRIVATE + SnmpSvcGenerateAuthFailTrap @7 PRIVATE + SnmpSvcGenerateColdStartTrap @8 PRIVATE + SnmpSvcGenerateLinkDownTrap @9 PRIVATE + SnmpSvcGenerateLinkUpTrap @10 PRIVATE + SnmpSvcGenerateTrap @11 PRIVATE + SnmpSvcGenerateWarmStartTrap @12 PRIVATE + SnmpSvcGetEnterpriseOID @13 PRIVATE + SnmpSvcGetUptime @14 + SnmpSvcInitUptime @15 PRIVATE + SnmpSvcReleaseMessage @16 PRIVATE + SnmpSvcReportEvent @17 PRIVATE + SnmpSvcSetLogLevel @18 PRIVATE + SnmpSvcSetLogType @19 PRIVATE + SnmpUtilAnsiToUnicode @20 PRIVATE + SnmpUtilAsnAnyCpy @21 + SnmpUtilAsnAnyFree @22 + SnmpUtilDbgPrint @23 + SnmpUtilIdsToA @24 + SnmpUtilMemAlloc @25 + SnmpUtilMemFree @26 + SnmpUtilMemReAlloc @27 + SnmpUtilOctetsCmp @28 + SnmpUtilOctetsCpy @29 + SnmpUtilOctetsFree @30 + SnmpUtilOctetsNCmp @31 + SnmpUtilOidAppend @32 + SnmpUtilOidCmp @33 + SnmpUtilOidCpy @34 + SnmpUtilOidFree @35 + SnmpUtilOidNCmp @36 + SnmpUtilOidToA @37 + SnmpUtilPrintAsnAny @38 + SnmpUtilPrintOid @39 + SnmpUtilStrlenW @40 PRIVATE + SnmpUtilUnicodeToAnsi @41 PRIVATE + SnmpUtilVarBindCpy @42 + SnmpUtilVarBindFree @43 + SnmpUtilVarBindListCpy @44 + SnmpUtilVarBindListFree @45 diff --git a/lib64/wine/libspoolss.def b/lib64/wine/libspoolss.def new file mode 100644 index 0000000..172ce99 --- /dev/null +++ b/lib64/wine/libspoolss.def @@ -0,0 +1,156 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/spoolss/spoolss.spec; do not edit! + +LIBRARY spoolss.dll + +EXPORTS + AbortPrinter @1 PRIVATE + AddFormW @2 PRIVATE + AddJobW @3 PRIVATE + AddMonitorW @4 + AddPerMachineConnectionW @5 PRIVATE + AddPortExW @6 PRIVATE + AddPortW @7 PRIVATE + AddPrintProcessorW @8 PRIVATE + AddPrintProvidorW @9 PRIVATE + AddPrinterConnectionW @10 PRIVATE + AddPrinterDriverExW @11 + AddPrinterDriverW @12 PRIVATE + AddPrinterExW @13 PRIVATE + AddPrinterW @14 PRIVATE + AllocSplStr @15 + AppendPrinterNotifyInfoData @16 PRIVATE + BuildOtherNamesFromMachineName @17 + CallDrvDevModeConversion @18 PRIVATE + CallRouterFindFirstPrinterChangeNotification @19 PRIVATE + ClosePrinter @20 PRIVATE + ClusterSplClose @21 PRIVATE + ClusterSplIsAlive @22 PRIVATE + ClusterSplOpen @23 PRIVATE + ConfigurePortW @24 PRIVATE + CreatePrinterIC @25 PRIVATE + DbgGetPointers @26 PRIVATE + DeleteFormW @27 PRIVATE + DeleteMonitorW @28 + DeletePerMachineConnectionW @29 PRIVATE + DeletePortW @30 PRIVATE + DeletePrintProcessorW @31 PRIVATE + DeletePrintProvidorW @32 PRIVATE + DeletePrinter @33 PRIVATE + DeletePrinterConnectionW @34 PRIVATE + DeletePrinterDataExW @35 PRIVATE + DeletePrinterDataW @36 PRIVATE + DeletePrinterDriverExW @37 PRIVATE + DeletePrinterDriverW @38 PRIVATE + DeletePrinterIC @39 PRIVATE + DeletePrinterKeyW @40 PRIVATE + DllAllocSplMem @41 + DllFreeSplMem @42 + DllFreeSplStr @43 + EndDocPrinter @44 PRIVATE + EndPagePrinter @45 PRIVATE + EnumFormsW @46 PRIVATE + EnumJobsW @47 PRIVATE + EnumMonitorsW @48 + EnumPerMachineConnectionsW @49 PRIVATE + EnumPortsW @50 + EnumPrintProcessorDatatypesW @51 PRIVATE + EnumPrintProcessorsW @52 PRIVATE + EnumPrinterDataExW @53 PRIVATE + EnumPrinterDataW @54 PRIVATE + EnumPrinterDriversW @55 PRIVATE + EnumPrinterKeyW @56 PRIVATE + EnumPrintersW @57 PRIVATE + FindClosePrinterChangeNotification @58 PRIVATE + FlushPrinter @59 PRIVATE + FormatPrinterForRegistryKey @60 PRIVATE + FormatRegistryKeyForPrinter @61 PRIVATE + FreeOtherNames @62 PRIVATE + GetClientUserHandle @63 PRIVATE + GetFormW @64 PRIVATE + GetJobAttributes @65 PRIVATE + GetJobW @66 PRIVATE + GetNetworkId @67 PRIVATE + GetPrintProcessorDirectoryW @68 PRIVATE + GetPrinterDataExW @69 PRIVATE + GetPrinterDataW @70 PRIVATE + GetPrinterDriverDirectoryW @71 + GetPrinterDriverExW @72 PRIVATE + GetPrinterDriverW @73 PRIVATE + GetPrinterW @74 PRIVATE + ImpersonatePrinterClient @75 + InitializeRouter @76 + IsLocalCall @77 + IsNamedPipeRpcCall @78 PRIVATE + LoadDriver @79 PRIVATE + LoadDriverFiletoConvertDevmode @80 PRIVATE + MIDL_user_allocate1 @81 PRIVATE + MIDL_user_free1 @82 PRIVATE + MarshallDownStructure @83 PRIVATE + MarshallUpStructure @84 PRIVATE + OldGetPrinterDriverW @85 PRIVATE + OpenPrinterExW @86 PRIVATE + OpenPrinterPortW @87 PRIVATE + OpenPrinterW @88 PRIVATE + PackStrings @89 PRIVATE + PartialReplyPrinterChangeNotification @90 PRIVATE + PlayGdiScriptOnPrinterIC @91 PRIVATE + PrinterHandleRundown @92 PRIVATE + PrinterMessageBoxW @93 PRIVATE + ProvidorFindClosePrinterChangeNotification @94 PRIVATE + ProvidorFindFirstPrinterChangeNotification @95 PRIVATE + ReadPrinter @96 PRIVATE + ReallocSplMem @97 PRIVATE + ReallocSplStr @98 PRIVATE + RemoteFindFirstPrinterChangeNotification @99 PRIVATE + ReplyClosePrinter @100 PRIVATE + ReplyOpenPrinter @101 PRIVATE + ReplyPrinterChangeNotification @102 PRIVATE + ResetPrinterW @103 PRIVATE + RevertToPrinterSelf @104 + RouterAllocPrinterNotifyInfo @105 PRIVATE + RouterFindFirstPrinterChangeNotification @106 PRIVATE + RouterFindNextPrinterChangeNotification @107 PRIVATE + RouterFreePrinterNotifyInfo @108 PRIVATE + RouterRefreshPrinterChangeNotification @109 PRIVATE + RouterReplyPrinter @110 PRIVATE + ScheduleJob @111 PRIVATE + SeekPrinter @112 PRIVATE + SetAllocFailCount @113 PRIVATE + SetFormW @114 PRIVATE + SetJobW @115 PRIVATE + SetPortW @116 PRIVATE + SetPrinterDataExW @117 PRIVATE + SetPrinterDataW @118 PRIVATE + SetPrinterW @119 PRIVATE + SplCloseSpoolFileHandle @120 PRIVATE + SplCommitSpoolData @121 PRIVATE + SplDriverUnloadComplete @122 PRIVATE + SplGetSpoolFileInfo @123 PRIVATE + SplInitializeWinSpoolDrv @124 + SplIsUpgrade @125 + SplProcessPnPEvent @126 PRIVATE + SplReadPrinter @127 PRIVATE + SplRegisterForDeviceEvents @128 PRIVATE + SplStartPhase2Init @129 PRIVATE + SplUnregisterForDeviceEvents @130 PRIVATE + SpoolerFindClosePrinterChangeNotification @131 PRIVATE + SpoolerFindFirstPrinterChangeNotification @132 PRIVATE + SpoolerFindNextPrinterChangeNotification @133 PRIVATE + SpoolerFreePrinterNotifyInfo @134 PRIVATE + SpoolerHasInitialized @135 + SpoolerInit @136 + StartDocPrinterW @137 PRIVATE + StartPagePrinter @138 PRIVATE + UnloadDriver @139 PRIVATE + UnloadDriverFile @140 PRIVATE + UpdateBufferSize @141 PRIVATE + UpdatePrinterRegAll @142 PRIVATE + UpdatePrinterRegUser @143 PRIVATE + WaitForPrinterChange @144 PRIVATE + WaitForSpoolerInitialization @145 + WritePrinter @146 PRIVATE + XcvDataW @147 PRIVATE + bGetDevModePerUser @148 PRIVATE + bSetDevModePerUser @149 PRIVATE + pszDbgAllocMsgA @150 PRIVATE + vDbgLogError @151 PRIVATE diff --git a/lib64/wine/libsti.def b/lib64/wine/libsti.def new file mode 100644 index 0000000..f3b12f7 --- /dev/null +++ b/lib64/wine/libsti.def @@ -0,0 +1,12 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/sti/sti.spec; do not edit! + +LIBRARY sti.dll + +EXPORTS + DllCanUnloadNow @1 PRIVATE + DllGetClassObject @2 PRIVATE + DllRegisterServer @3 PRIVATE + DllUnregisterServer @4 PRIVATE + StiCreateInstance=StiCreateInstanceW @5 + StiCreateInstanceA @6 + StiCreateInstanceW @7 diff --git a/lib64/wine/libstrmbase.a b/lib64/wine/libstrmbase.a new file mode 100644 index 0000000..dffbcd7 Binary files /dev/null and b/lib64/wine/libstrmbase.a differ diff --git a/lib64/wine/libstrmiids.a b/lib64/wine/libstrmiids.a new file mode 100644 index 0000000..72fbe0b Binary files /dev/null and b/lib64/wine/libstrmiids.a differ diff --git a/lib64/wine/libsxs.def b/lib64/wine/libsxs.def new file mode 100644 index 0000000..4a355de --- /dev/null +++ b/lib64/wine/libsxs.def @@ -0,0 +1,8 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/sxs/sxs.spec; do not edit! + +LIBRARY sxs.dll + +EXPORTS + CreateAssemblyCache @1 + CreateAssemblyNameObject @2 + SxsLookupClrGuid @3 diff --git a/lib64/wine/libt2embed.def b/lib64/wine/libt2embed.def new file mode 100644 index 0000000..de007a0 --- /dev/null +++ b/lib64/wine/libt2embed.def @@ -0,0 +1,30 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/t2embed/t2embed.spec; do not edit! + +LIBRARY t2embed.dll + +EXPORTS + TTCharToUnicode @1 PRIVATE + TTDeleteEmbeddedFont @2 + TTEmbedFont @3 + TTEmbedFontFromFileA @4 PRIVATE + TTEnableEmbeddingForFacename @5 PRIVATE + TTGetEmbeddedFontInfo @6 PRIVATE + TTGetEmbeddingType @7 + TTIsEmbeddingEnabled @8 + TTIsEmbeddingEnabledForFacename @9 + TTLoadEmbeddedFont @10 + TTRunValidationTests @11 PRIVATE + _TTCharToUnicode@24 @12 PRIVATE + _TTDeleteEmbeddedFont@12 @13 PRIVATE + _TTEmbedFont@44=TTEmbedFont @14 + _TTEmbedFontFromFileA@52 @15 PRIVATE + _TTEnableEmbeddingForFacename@8 @16 PRIVATE + _TTGetEmbeddedFontInfo@28 @17 PRIVATE + _TTGetEmbeddingType@8=TTGetEmbeddingType @18 + _TTIsEmbeddingEnabled@8=TTIsEmbeddingEnabled @19 + _TTIsEmbeddingEnabledForFacename@8=TTIsEmbeddingEnabledForFacename @20 + _TTLoadEmbeddedFont@40=TTLoadEmbeddedFont @21 + _TTRunValidationTests@8 @22 PRIVATE + TTEmbedFontEx @23 PRIVATE + TTRunValidationTestsEx @24 PRIVATE + TTGetNewFontName @25 PRIVATE diff --git a/lib64/wine/libtapi32.def b/lib64/wine/libtapi32.def new file mode 100644 index 0000000..e86595b --- /dev/null +++ b/lib64/wine/libtapi32.def @@ -0,0 +1,183 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/tapi32/tapi32.spec; do not edit! + +LIBRARY tapi32.dll + +EXPORTS + lineAccept @1 + lineAddProvider=lineAddProviderA @2 + lineAddProviderA @3 + lineAddProviderW @4 + lineAddToConference @5 + lineAnswer @6 + lineBlindTransfer=lineBlindTransferA @7 + lineBlindTransferA @8 + lineClose @9 + lineCompleteCall @10 + lineCompleteTransfer @11 + lineConfigDialog=lineConfigDialogA @12 + lineConfigDialogA @13 + lineConfigDialogW @14 + lineConfigDialogEdit=lineConfigDialogEditA @15 + lineConfigDialogEditA @16 + lineConfigProvider @17 + lineDeallocateCall @18 + lineDevSpecific @19 + lineDevSpecificFeature @20 + lineDial=lineDialA @21 + lineDialA @22 + lineDialW @23 + lineDrop @24 + lineForward=lineForwardA @25 + lineForwardA @26 + lineGatherDigits=lineGatherDigitsA @27 + lineGatherDigitsA @28 + lineGenerateDigits=lineGenerateDigitsA @29 + lineGenerateDigitsA @30 + lineGenerateTone @31 + lineGetAddressCaps=lineGetAddressCapsA @32 + lineGetAddressCapsA @33 + lineGetAddressID=lineGetAddressIDA @34 + lineGetAddressIDA @35 + lineGetAddressStatus=lineGetAddressStatusA @36 + lineGetAddressStatusA @37 + lineGetAppPriority=lineGetAppPriorityA @38 + lineGetAppPriorityA @39 + lineGetCallInfo=lineGetCallInfoA @40 + lineGetCallInfoA @41 + lineGetCallStatus @42 + lineGetConfRelatedCalls @43 + lineGetCountry=lineGetCountryA @44 + lineGetCountryA @45 + lineGetCountryW @46 + lineGetDevCaps=lineGetDevCapsA @47 + lineGetDevCapsA @48 + lineGetDevCapsW @49 + lineGetDevConfig=lineGetDevConfigA @50 + lineGetDevConfigA @51 + lineGetID=lineGetIDA @52 + lineGetIDA @53 + lineGetIDW @54 + lineGetIcon=lineGetIconA @55 + lineGetIconA @56 + lineGetLineDevStatus=lineGetLineDevStatusA @57 + lineGetLineDevStatusA @58 + lineGetMessage @59 + lineGetNewCalls @60 + lineGetNumRings @61 + lineGetProviderList=lineGetProviderListA @62 + lineGetProviderListA @63 + lineGetProviderListW @64 + lineGetRequest=lineGetRequestA @65 + lineGetRequestA @66 + lineGetStatusMessages @67 + lineGetTranslateCaps=lineGetTranslateCapsA @68 + lineGetTranslateCapsA @69 + lineHandoff=lineHandoffA @70 + lineHandoffA @71 + lineHold @72 + lineInitialize @73 + lineInitializeExA @74 + lineInitializeExW @75 + lineMakeCall=lineMakeCallA @76 + lineMakeCallA @77 + lineMakeCallW @78 + lineMonitorDigits @79 + lineMonitorMedia @80 + lineMonitorTones @81 + lineNegotiateAPIVersion @82 + lineNegotiateExtVersion @83 + lineOpen=lineOpenA @84 + lineOpenA @85 + lineOpenW @86 + linePark=lineParkA @87 + lineParkA @88 + linePickup=linePickupA @89 + linePickupA @90 + linePrepareAddToConference=linePrepareAddToConferenceA @91 + linePrepareAddToConferenceA @92 + lineRedirect=lineRedirectA @93 + lineRedirectA @94 + lineRegisterRequestRecipient @95 + lineReleaseUserUserInfo @96 + lineRemoveFromConference @97 + lineRemoveProvider @98 + lineSecureCall @99 + lineSendUserUserInfo @100 + lineSetAppPriority=lineSetAppPriorityA @101 + lineSetAppPriorityA @102 + lineSetAppSpecific @103 + lineSetCallParams @104 + lineSetCallPrivilege @105 + lineSetCurrentLocation @106 + lineSetDevConfig=lineSetDevConfigA @107 + lineSetDevConfigA @108 + lineSetMediaControl @109 + lineSetMediaMode @110 + lineSetNumRings @111 + lineSetStatusMessages @112 + lineSetTerminal @113 + lineSetTollList=lineSetTollListA @114 + lineSetTollListA @115 + lineSetupConference=lineSetupConferenceA @116 + lineSetupConferenceA @117 + lineSetupTransfer=lineSetupTransferA @118 + lineSetupTransferA @119 + lineShutdown @120 + lineSwapHold @121 + lineTranslateAddress=lineTranslateAddressA @122 + lineTranslateAddressA @123 + lineTranslateAddressW @124 + lineTranslateDialog=lineTranslateDialogA @125 + lineTranslateDialogA @126 + lineTranslateDialogW @127 + lineUncompleteCall @128 + lineUnhold @129 + lineUnpark=lineUnparkA @130 + lineUnparkA @131 + phoneClose @132 + phoneConfigDialog=phoneConfigDialogA @133 + phoneConfigDialogA @134 + phoneDevSpecific @135 + phoneGetButtonInfo=phoneGetButtonInfoA @136 + phoneGetButtonInfoA @137 + phoneGetData @138 + phoneGetDevCaps=phoneGetDevCapsA @139 + phoneGetDevCapsA @140 + phoneGetDisplay @141 + phoneGetGain @142 + phoneGetHookSwitch @143 + phoneGetID=phoneGetIDA @144 + phoneGetIDA @145 + phoneGetIcon=phoneGetIconA @146 + phoneGetIconA @147 + phoneGetLamp @148 + phoneGetMessage @149 + phoneGetRing @150 + phoneGetStatus=phoneGetStatusA @151 + phoneGetStatusA @152 + phoneGetStatusMessages @153 + phoneGetVolume @154 + phoneInitialize @155 + phoneInitializeExA @156 + phoneInitializeExW @157 + phoneNegotiateAPIVersion @158 + phoneNegotiateExtVersion @159 + phoneOpen @160 + phoneSetButtonInfo=phoneSetButtonInfoA @161 + phoneSetButtonInfoA @162 + phoneSetData @163 + phoneSetDisplay @164 + phoneSetGain @165 + phoneSetHookSwitch @166 + phoneSetLamp @167 + phoneSetRing @168 + phoneSetStatusMessages @169 + phoneSetVolume @170 + phoneShutdown @171 + tapiGetLocationInfo=tapiGetLocationInfoA @172 + tapiGetLocationInfoA @173 + tapiGetLocationInfoW @174 + tapiRequestDrop @175 PRIVATE + tapiRequestMakeCall=tapiRequestMakeCallA @176 + tapiRequestMakeCallA @177 + tapiRequestMediaCall @178 PRIVATE diff --git a/lib64/wine/libucrtbase.def b/lib64/wine/libucrtbase.def new file mode 100644 index 0000000..bd0ea35 --- /dev/null +++ b/lib64/wine/libucrtbase.def @@ -0,0 +1,2538 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/ucrtbase/ucrtbase.spec; do not edit! + +LIBRARY ucrtbase.dll + +EXPORTS + _Cbuild=MSVCR120__Cbuild @1 + _Cmulcc @2 PRIVATE + _Cmulcr @3 PRIVATE + _CreateFrameInfo @4 + _CxxThrowException @5 + _Exit=MSVCRT__exit @6 + _FCbuild @7 PRIVATE + _FCmulcc @8 PRIVATE + _FCmulcr @9 PRIVATE + _FindAndUnlinkFrame @10 + _GetImageBase @11 PRIVATE + _GetThrowImageBase @12 PRIVATE + _Getdays @13 + _Getmonths @14 + _Gettnames @15 + _IsExceptionObjectToBeDestroyed @16 + _LCbuild @17 PRIVATE + _LCmulcc @18 PRIVATE + _LCmulcr @19 PRIVATE + _SetImageBase @20 PRIVATE + _SetThrowImageBase @21 PRIVATE + _NLG_Dispatch2 @22 PRIVATE + _NLG_Return @23 PRIVATE + _NLG_Return2 @24 PRIVATE + _SetWinRTOutOfMemoryExceptionCallback=MSVCR120__SetWinRTOutOfMemoryExceptionCallback @25 + _Strftime @26 + _W_Getdays @27 + _W_Getmonths @28 + _W_Gettnames @29 + _Wcsftime @30 + __AdjustPointer @31 + __BuildCatchObject @32 PRIVATE + __BuildCatchObjectHelper @33 PRIVATE + __C_specific_handler=ntdll.__C_specific_handler @34 + __CxxDetectRethrow @35 + __CxxExceptionFilter @36 + __CxxFrameHandler @37 + __CxxFrameHandler2=__CxxFrameHandler @38 + __CxxFrameHandler3=__CxxFrameHandler @39 + __CxxQueryExceptionSize @40 + __CxxRegisterExceptionObject @41 + __CxxUnregisterExceptionObject @42 + __DestructExceptionObject @43 + __FrameUnwindFilter @44 PRIVATE + __GetPlatformExceptionInfo @45 PRIVATE + __NLG_Dispatch2 @46 PRIVATE + __NLG_Return2 @47 PRIVATE + __RTCastToVoid=MSVCRT___RTCastToVoid @48 + __RTDynamicCast=MSVCRT___RTDynamicCast @49 + __RTtypeid=MSVCRT___RTtypeid @50 + __TypeMatch @51 PRIVATE + ___lc_codepage_func @52 + ___lc_collate_cp_func @53 + ___lc_locale_name_func @54 + ___mb_cur_max_func=MSVCRT____mb_cur_max_func @55 + ___mb_cur_max_l_func @56 + __acrt_iob_func=MSVCRT___acrt_iob_func @57 + __conio_common_vcprintf=MSVCRT__conio_common_vcprintf @58 + __conio_common_vcprintf_p @59 PRIVATE + __conio_common_vcprintf_s @60 PRIVATE + __conio_common_vcscanf @61 PRIVATE + __conio_common_vcwprintf=MSVCRT__conio_common_vcwprintf @62 + __conio_common_vcwprintf_p @63 PRIVATE + __conio_common_vcwprintf_s @64 PRIVATE + __conio_common_vcwscanf @65 PRIVATE + __current_exception @66 + __current_exception_context @67 + __daylight=MSVCRT___p__daylight @68 + __dcrt_get_wide_environment_from_os @69 PRIVATE + __dcrt_initial_narrow_environment @70 PRIVATE + __doserrno=MSVCRT___doserrno @71 + __dstbias=MSVCRT___p__dstbias @72 + __fpe_flt_rounds @73 + __fpecode @74 + __initialize_lconv_for_unsigned_char=__lconv_init @75 + __intrinsic_abnormal_termination @76 PRIVATE + __intrinsic_setjmp=MSVCRT__setjmp @77 + __intrinsic_setjmpex=MSVCRT__setjmpex @78 + __isascii=MSVCRT___isascii @79 + __iscsym=MSVCRT___iscsym @80 + __iscsymf=MSVCRT___iscsymf @81 + __iswcsym @82 PRIVATE + __iswcsymf @83 PRIVATE + __p___argc=MSVCRT___p___argc @84 + __p___argv=MSVCRT___p___argv @85 + __p___wargv=MSVCRT___p___wargv @86 + __p__acmdln=MSVCRT___p__acmdln @87 + __p__commode @88 + __p__environ=MSVCRT___p__environ @89 + __p__fmode=MSVCRT___p__fmode @90 + __p__mbcasemap @91 PRIVATE + __p__mbctype @92 + __p__pgmptr=MSVCRT___p__pgmptr @93 + __p__wcmdln=MSVCRT___p__wcmdln @94 + __p__wenviron=MSVCRT___p__wenviron @95 + __p__wpgmptr=MSVCRT___p__wpgmptr @96 + __pctype_func=MSVCRT___pctype_func @97 + __processing_throw @98 + __pwctype_func @99 PRIVATE + __pxcptinfoptrs=MSVCRT___pxcptinfoptrs @100 + __report_gsfailure @101 PRIVATE + __setusermatherr=MSVCRT___setusermatherr @102 + __std_exception_copy=MSVCRT___std_exception_copy @103 + __std_exception_destroy=MSVCRT___std_exception_destroy @104 + __std_type_info_compare=MSVCRT_type_info_compare @105 + __std_type_info_destroy_list=MSVCRT_type_info_destroy_list @106 + __std_type_info_hash=MSVCRT_type_info_hash @107 + __std_type_info_name=MSVCRT_type_info_name_list @108 + __stdio_common_vfprintf=MSVCRT__stdio_common_vfprintf @109 + __stdio_common_vfprintf_p @110 PRIVATE + __stdio_common_vfprintf_s=MSVCRT__stdio_common_vfprintf_s @111 + __stdio_common_vfscanf=MSVCRT__stdio_common_vfscanf @112 + __stdio_common_vfwprintf=MSVCRT__stdio_common_vfwprintf @113 + __stdio_common_vfwprintf_p @114 PRIVATE + __stdio_common_vfwprintf_s=MSVCRT__stdio_common_vfwprintf_s @115 + __stdio_common_vfwscanf=MSVCRT__stdio_common_vfwscanf @116 + __stdio_common_vsnprintf_s=MSVCRT__stdio_common_vsnprintf_s @117 + __stdio_common_vsnwprintf_s=MSVCRT__stdio_common_vsnwprintf_s @118 + __stdio_common_vsprintf=MSVCRT__stdio_common_vsprintf @119 + __stdio_common_vsprintf_p=MSVCRT__stdio_common_vsprintf_p @120 + __stdio_common_vsprintf_s=MSVCRT__stdio_common_vsprintf_s @121 + __stdio_common_vsscanf=MSVCRT__stdio_common_vsscanf @122 + __stdio_common_vswprintf=MSVCRT__stdio_common_vswprintf @123 + __stdio_common_vswprintf_p=MSVCRT__stdio_common_vswprintf_p @124 + __stdio_common_vswprintf_s=MSVCRT__stdio_common_vswprintf_s @125 + __stdio_common_vswscanf=MSVCRT__stdio_common_vswscanf @126 + __strncnt=MSVCRT___strncnt @127 + __sys_errlist @128 + __sys_nerr @129 + __threadhandle=kernel32.GetCurrentThread @130 + __threadid=kernel32.GetCurrentThreadId @131 + __timezone=MSVCRT___p__timezone @132 + __toascii=MSVCRT___toascii @133 + __tzname=__p__tzname @134 + __unDName @135 + __unDNameEx @136 + __uncaught_exception=MSVCRT___uncaught_exception @137 + __wcserror=MSVCRT___wcserror @138 + __wcserror_s=MSVCRT___wcserror_s @139 + __wcsncnt @140 PRIVATE + _abs64 @141 + _access=MSVCRT__access @142 + _access_s=MSVCRT__access_s @143 + _aligned_free @144 + _aligned_malloc @145 + _aligned_msize @146 + _aligned_offset_malloc @147 + _aligned_offset_realloc @148 + _aligned_offset_recalloc @149 PRIVATE + _aligned_realloc @150 + _aligned_recalloc @151 PRIVATE + _assert=MSVCRT__assert @152 + _atodbl=MSVCRT__atodbl @153 + _atodbl_l=MSVCRT__atodbl_l @154 + _atof_l=MSVCRT__atof_l @155 + _atoflt=MSVCRT__atoflt @156 + _atoflt_l=MSVCRT__atoflt_l @157 + _atoi64=MSVCRT__atoi64 @158 + _atoi64_l=MSVCRT__atoi64_l @159 + _atoi_l=MSVCRT__atoi_l @160 + _atol_l=MSVCRT__atol_l @161 + _atoldbl=MSVCRT__atoldbl @162 + _atoldbl_l @163 PRIVATE + _atoll_l=MSVCRT__atoll_l @164 + _beep=MSVCRT__beep @165 + _beginthread @166 + _beginthreadex @167 + _byteswap_uint64 @168 + _byteswap_ulong=MSVCRT__byteswap_ulong @169 + _byteswap_ushort @170 + _c_exit=MSVCRT__c_exit @171 + _cabs=MSVCRT__cabs @172 + _callnewh @173 + _calloc_base @174 + _cexit=MSVCRT__cexit @175 + _cgets @176 + _cgets_s @177 PRIVATE + _cgetws @178 PRIVATE + _cgetws_s @179 PRIVATE + _chdir=MSVCRT__chdir @180 + _chdrive=MSVCRT__chdrive @181 + _chgsign=MSVCRT__chgsign @182 + _chgsignf=MSVCRT__chgsignf @183 + _chmod=MSVCRT__chmod @184 + _chsize=MSVCRT__chsize @185 + _chsize_s=MSVCRT__chsize_s @186 + _clearfp @187 + _close=MSVCRT__close @188 + _commit=MSVCRT__commit @189 + _configthreadlocale @190 + _configure_narrow_argv @191 + _configure_wide_argv @192 + _control87 @193 + _controlfp @194 + _controlfp_s @195 + _copysign=MSVCRT__copysign @196 + _copysignf=MSVCRT__copysignf @197 + _cputs @198 + _cputws @199 + _creat=MSVCRT__creat @200 + _create_locale=MSVCRT__create_locale @201 + _crt_at_quick_exit=MSVCRT__crt_at_quick_exit @202 + _crt_atexit=MSVCRT__crt_atexit @203 + _crt_debugger_hook=MSVCRT__crt_debugger_hook @204 + _ctime32=MSVCRT__ctime32 @205 + _ctime32_s=MSVCRT__ctime32_s @206 + _ctime64=MSVCRT__ctime64 @207 + _ctime64_s=MSVCRT__ctime64_s @208 + _cwait @209 + _d_int @210 PRIVATE + _dclass=MSVCR120__dclass @211 + _dexp @212 PRIVATE + _difftime32=MSVCRT__difftime32 @213 + _difftime64=MSVCRT__difftime64 @214 + _dlog @215 PRIVATE + _dnorm @216 PRIVATE + _dpcomp=MSVCR120__dpcomp @217 + _dpoly @218 PRIVATE + _dscale @219 PRIVATE + _dsign=MSVCR120__dsign @220 + _dsin @221 PRIVATE + _dtest=MSVCR120__dtest @222 + _dunscale @223 PRIVATE + _dup=MSVCRT__dup @224 + _dup2=MSVCRT__dup2 @225 + _dupenv_s @226 + _ecvt=MSVCRT__ecvt @227 + _ecvt_s=MSVCRT__ecvt_s @228 + _endthread @229 + _endthreadex @230 + _eof=MSVCRT__eof @231 + _errno=MSVCRT__errno @232 + _except1 @233 + _execl @234 + _execle @235 + _execlp @236 + _execlpe @237 + _execute_onexit_table=MSVCRT__execute_onexit_table @238 + _execv @239 + _execve=MSVCRT__execve @240 + _execvp @241 + _execvpe @242 + _exit=MSVCRT__exit @243 + _expand @244 + _fclose_nolock=MSVCRT__fclose_nolock @245 + _fcloseall=MSVCRT__fcloseall @246 + _fcvt=MSVCRT__fcvt @247 + _fcvt_s=MSVCRT__fcvt_s @248 + _fd_int @249 PRIVATE + _fdclass=MSVCR120__fdclass @250 + _fdexp @251 PRIVATE + _fdlog @252 PRIVATE + _fdnorm @253 PRIVATE + _fdopen=MSVCRT__fdopen @254 + _fdpcomp=MSVCR120__fdpcomp @255 + _fdpoly @256 PRIVATE + _fdscale @257 PRIVATE + _fdsign=MSVCR120__fdsign @258 + _fdsin @259 PRIVATE + _fdtest=MSVCR120__fdtest @260 + _fdunscale @261 PRIVATE + _fflush_nolock=MSVCRT__fflush_nolock @262 + _fgetc_nolock=MSVCRT__fgetc_nolock @263 + _fgetchar=MSVCRT__fgetchar @264 + _fgetwc_nolock=MSVCRT__fgetwc_nolock @265 + _fgetwchar=MSVCRT__fgetwchar @266 + _filelength=MSVCRT__filelength @267 + _filelengthi64=MSVCRT__filelengthi64 @268 + _fileno=MSVCRT__fileno @269 + _findclose=MSVCRT__findclose @270 + _findfirst32=MSVCRT__findfirst32 @271 + _findfirst32i64 @272 PRIVATE + _findfirst64=MSVCRT__findfirst64 @273 + _findfirst64i32=MSVCRT__findfirst64i32 @274 + _findnext32=MSVCRT__findnext32 @275 + _findnext32i64 @276 PRIVATE + _findnext64=MSVCRT__findnext64 @277 + _findnext64i32=MSVCRT__findnext64i32 @278 + _finite=MSVCRT__finite @279 + _finitef=MSVCRT__finitef @280 + _flushall=MSVCRT__flushall @281 + _fpclass=MSVCRT__fpclass @282 + _fpclassf @283 PRIVATE + _fpieee_flt @284 + _fpreset @285 + _fputc_nolock=MSVCRT__fputc_nolock @286 + _fputchar=MSVCRT__fputchar @287 + _fputwc_nolock=MSVCRT__fputwc_nolock @288 + _fputwchar=MSVCRT__fputwchar @289 + _fread_nolock=MSVCRT__fread_nolock @290 + _fread_nolock_s=MSVCRT__fread_nolock_s @291 + _free_base @292 + _free_locale=MSVCRT__free_locale @293 + _fseek_nolock=MSVCRT__fseek_nolock @294 + _fseeki64=MSVCRT__fseeki64 @295 + _fseeki64_nolock=MSVCRT__fseeki64_nolock @296 + _fsopen=MSVCRT__fsopen @297 + _fstat32=MSVCRT__fstat32 @298 + _fstat32i64=MSVCRT__fstat32i64 @299 + _fstat64=MSVCRT__fstat64 @300 + _fstat64i32=MSVCRT__fstat64i32 @301 + _ftell_nolock=MSVCRT__ftell_nolock @302 + _ftelli64=MSVCRT__ftelli64 @303 + _ftelli64_nolock=MSVCRT__ftelli64_nolock @304 + _ftime32=MSVCRT__ftime32 @305 + _ftime32_s=MSVCRT__ftime32_s @306 + _ftime64=MSVCRT__ftime64 @307 + _ftime64_s=MSVCRT__ftime64_s @308 + _fullpath=MSVCRT__fullpath @309 + _futime32 @310 + _futime64 @311 + _fwrite_nolock=MSVCRT__fwrite_nolock @312 + _gcvt=MSVCRT__gcvt @313 + _gcvt_s=MSVCRT__gcvt_s @314 + _get_FMA3_enable @315 PRIVATE + _get_current_locale=MSVCRT__get_current_locale @316 + _get_daylight @317 + _get_doserrno @318 + _get_dstbias=MSVCRT__get_dstbias @319 + _get_errno @320 + _get_fmode=MSVCRT__get_fmode @321 + _get_heap_handle @322 + _get_initial_narrow_environment @323 + _get_initial_wide_environment @324 + _get_invalid_parameter_handler @325 + _get_narrow_winmain_command_line @326 + _get_osfhandle=MSVCRT__get_osfhandle @327 + _get_pgmptr @328 + _get_printf_count_output=MSVCRT__get_printf_count_output @329 + _get_purecall_handler @330 + _get_stream_buffer_pointers=MSVCRT__get_stream_buffer_pointers @331 + _get_terminate=MSVCRT__get_terminate @332 + _get_thread_local_invalid_parameter_handler @333 + _get_timezone @334 + _get_tzname=MSVCRT__get_tzname @335 + _get_unexpected=MSVCRT__get_unexpected @336 + _get_wide_winmain_command_line @337 + _get_wpgmptr @338 + _getc_nolock=MSVCRT__fgetc_nolock @339 + _getch @340 + _getch_nolock @341 + _getche @342 + _getche_nolock @343 + _getcwd=MSVCRT__getcwd @344 + _getdcwd=MSVCRT__getdcwd @345 + _getdiskfree=MSVCRT__getdiskfree @346 + _getdllprocaddr @347 + _getdrive=MSVCRT__getdrive @348 + _getdrives=kernel32.GetLogicalDrives @349 + _getmaxstdio=MSVCRT__getmaxstdio @350 + _getmbcp @351 + _getpid @352 + _getsystime @353 PRIVATE + _getw=MSVCRT__getw @354 + _getwc_nolock=MSVCRT__fgetwc_nolock @355 + _getwch @356 + _getwch_nolock @357 + _getwche @358 + _getwche_nolock @359 + _getws=MSVCRT__getws @360 + _getws_s @361 PRIVATE + _gmtime32=MSVCRT__gmtime32 @362 + _gmtime32_s=MSVCRT__gmtime32_s @363 + _gmtime64=MSVCRT__gmtime64 @364 + _gmtime64_s=MSVCRT__gmtime64_s @365 + _heapchk @366 + _heapmin @367 + _heapwalk @368 + _hypot @369 + _hypotf=MSVCRT__hypotf @370 + _i64toa=ntdll._i64toa @371 + _i64toa_s=MSVCRT__i64toa_s @372 + _i64tow=ntdll._i64tow @373 + _i64tow_s=MSVCRT__i64tow_s @374 + _initialize_narrow_environment @375 + _initialize_onexit_table=MSVCRT__initialize_onexit_table @376 + _initialize_wide_environment @377 + _initterm @378 + _initterm_e @379 + _invalid_parameter_noinfo @380 + _invalid_parameter_noinfo_noreturn @381 + _invoke_watson @382 PRIVATE + _is_exception_typeof @383 PRIVATE + _isalnum_l=MSVCRT__isalnum_l @384 + _isalpha_l=MSVCRT__isalpha_l @385 + _isatty=MSVCRT__isatty @386 + _isblank_l=MSVCRT__isblank_l @387 + _iscntrl_l=MSVCRT__iscntrl_l @388 + _isctype=MSVCRT__isctype @389 + _isctype_l=MSVCRT__isctype_l @390 + _isdigit_l=MSVCRT__isdigit_l @391 + _isgraph_l=MSVCRT__isgraph_l @392 + _isleadbyte_l=MSVCRT__isleadbyte_l @393 + _islower_l=MSVCRT__islower_l @394 + _ismbbalnum @395 PRIVATE + _ismbbalnum_l @396 PRIVATE + _ismbbalpha @397 PRIVATE + _ismbbalpha_l @398 PRIVATE + _ismbbblank @399 PRIVATE + _ismbbblank_l @400 PRIVATE + _ismbbgraph @401 PRIVATE + _ismbbgraph_l @402 PRIVATE + _ismbbkalnum @403 PRIVATE + _ismbbkalnum_l @404 PRIVATE + _ismbbkana @405 + _ismbbkana_l @406 PRIVATE + _ismbbkprint @407 PRIVATE + _ismbbkprint_l @408 PRIVATE + _ismbbkpunct @409 PRIVATE + _ismbbkpunct_l @410 PRIVATE + _ismbblead @411 + _ismbblead_l @412 + _ismbbprint @413 PRIVATE + _ismbbprint_l @414 PRIVATE + _ismbbpunct @415 PRIVATE + _ismbbpunct_l @416 PRIVATE + _ismbbtrail @417 + _ismbbtrail_l @418 + _ismbcalnum @419 + _ismbcalnum_l @420 PRIVATE + _ismbcalpha @421 + _ismbcalpha_l @422 PRIVATE + _ismbcblank @423 PRIVATE + _ismbcblank_l @424 PRIVATE + _ismbcdigit @425 + _ismbcdigit_l @426 PRIVATE + _ismbcgraph @427 + _ismbcgraph_l @428 PRIVATE + _ismbchira @429 + _ismbchira_l @430 PRIVATE + _ismbckata @431 + _ismbckata_l @432 PRIVATE + _ismbcl0 @433 + _ismbcl0_l @434 + _ismbcl1 @435 + _ismbcl1_l @436 + _ismbcl2 @437 + _ismbcl2_l @438 + _ismbclegal @439 + _ismbclegal_l @440 + _ismbclower @441 PRIVATE + _ismbclower_l @442 PRIVATE + _ismbcprint @443 + _ismbcprint_l @444 PRIVATE + _ismbcpunct @445 + _ismbcpunct_l @446 PRIVATE + _ismbcspace @447 + _ismbcspace_l @448 PRIVATE + _ismbcsymbol @449 + _ismbcsymbol_l @450 PRIVATE + _ismbcupper @451 + _ismbcupper_l @452 PRIVATE + _ismbslead @453 + _ismbslead_l @454 PRIVATE + _ismbstrail @455 + _ismbstrail_l @456 PRIVATE + _isnan=MSVCRT__isnan @457 + _isnanf=MSVCRT__isnanf @458 + _isprint_l=MSVCRT__isprint_l @459 + _ispunct_l @460 PRIVATE + _isspace_l=MSVCRT__isspace_l @461 + _isupper_l=MSVCRT__isupper_l @462 + _iswalnum_l=MSVCRT__iswalnum_l @463 + _iswalpha_l=MSVCRT__iswalpha_l @464 + _iswblank_l=MSVCRT__iswblank_l @465 + _iswcntrl_l=MSVCRT__iswcntrl_l @466 + _iswcsym_l @467 PRIVATE + _iswcsymf_l @468 PRIVATE + _iswctype_l=MSVCRT__iswctype_l @469 + _iswdigit_l=MSVCRT__iswdigit_l @470 + _iswgraph_l=MSVCRT__iswgraph_l @471 + _iswlower_l=MSVCRT__iswlower_l @472 + _iswprint_l=MSVCRT__iswprint_l @473 + _iswpunct_l=MSVCRT__iswpunct_l @474 + _iswspace_l=MSVCRT__iswspace_l @475 + _iswupper_l=MSVCRT__iswupper_l @476 + _iswxdigit_l=MSVCRT__iswxdigit_l @477 + _isxdigit_l=MSVCRT__isxdigit_l @478 + _itoa=MSVCRT__itoa @479 + _itoa_s=MSVCRT__itoa_s @480 + _itow=ntdll._itow @481 + _itow_s=MSVCRT__itow_s @482 + _j0=MSVCRT__j0 @483 + _j1=MSVCRT__j1 @484 + _jn=MSVCRT__jn @485 + _kbhit @486 + _ld_int @487 PRIVATE + _ldclass=MSVCR120__ldclass @488 + _ldexp @489 PRIVATE + _ldlog @490 PRIVATE + _ldpcomp=MSVCR120__dpcomp @491 + _ldpoly @492 PRIVATE + _ldscale @493 PRIVATE + _ldsign=MSVCR120__dsign @494 + _ldsin @495 PRIVATE + _ldtest=MSVCR120__ldtest @496 + _ldunscale @497 PRIVATE + _lfind @498 + _lfind_s @499 + _loaddll @500 + _local_unwind @501 + _localtime32=MSVCRT__localtime32 @502 + _localtime32_s @503 + _localtime64=MSVCRT__localtime64 @504 + _localtime64_s @505 + _lock_file=MSVCRT__lock_file @506 + _lock_locales @507 + _locking=MSVCRT__locking @508 + _logb=MSVCRT__logb @509 + _logbf=MSVCRT__logbf @510 + _lrotl=MSVCRT__lrotl @511 + _lrotr=MSVCRT__lrotr @512 + _lsearch @513 + _lsearch_s @514 PRIVATE + _lseek=MSVCRT__lseek @515 + _lseeki64=MSVCRT__lseeki64 @516 + _ltoa=ntdll._ltoa @517 + _ltoa_s=MSVCRT__ltoa_s @518 + _ltow=ntdll._ltow @519 + _ltow_s=MSVCRT__ltow_s @520 + _makepath=MSVCRT__makepath @521 + _makepath_s=MSVCRT__makepath_s @522 + _malloc_base @523 + _mbbtombc @524 + _mbbtombc_l @525 PRIVATE + _mbbtype @526 + _mbbtype_l @527 PRIVATE + _mbcasemap @528 PRIVATE + _mbccpy @529 + _mbccpy_l @530 + _mbccpy_s @531 + _mbccpy_s_l @532 + _mbcjistojms @533 + _mbcjistojms_l @534 PRIVATE + _mbcjmstojis @535 + _mbcjmstojis_l @536 PRIVATE + _mbclen @537 + _mbclen_l @538 PRIVATE + _mbctohira @539 + _mbctohira_l @540 PRIVATE + _mbctokata @541 + _mbctokata_l @542 PRIVATE + _mbctolower @543 + _mbctolower_l @544 PRIVATE + _mbctombb @545 + _mbctombb_l @546 PRIVATE + _mbctoupper @547 + _mbctoupper_l @548 PRIVATE + _mblen_l @549 PRIVATE + _mbsbtype @550 + _mbsbtype_l @551 PRIVATE + _mbscat_s @552 + _mbscat_s_l @553 + _mbschr @554 + _mbschr_l @555 PRIVATE + _mbscmp @556 + _mbscmp_l @557 PRIVATE + _mbscoll @558 + _mbscoll_l @559 + _mbscpy_s @560 + _mbscpy_s_l @561 + _mbscspn @562 + _mbscspn_l @563 PRIVATE + _mbsdec @564 + _mbsdec_l @565 PRIVATE + _mbsdup @566 PRIVATE + _mbsicmp @567 + _mbsicmp_l @568 PRIVATE + _mbsicoll @569 + _mbsicoll_l @570 + _mbsinc @571 + _mbsinc_l @572 PRIVATE + _mbslen @573 + _mbslen_l @574 + _mbslwr @575 + _mbslwr_l @576 PRIVATE + _mbslwr_s @577 + _mbslwr_s_l @578 PRIVATE + _mbsnbcat @579 + _mbsnbcat_l @580 PRIVATE + _mbsnbcat_s @581 + _mbsnbcat_s_l @582 PRIVATE + _mbsnbcmp @583 + _mbsnbcmp_l @584 PRIVATE + _mbsnbcnt @585 + _mbsnbcnt_l @586 PRIVATE + _mbsnbcoll @587 + _mbsnbcoll_l @588 + _mbsnbcpy @589 + _mbsnbcpy_l @590 PRIVATE + _mbsnbcpy_s @591 + _mbsnbcpy_s_l @592 + _mbsnbicmp @593 + _mbsnbicmp_l @594 PRIVATE + _mbsnbicoll @595 + _mbsnbicoll_l @596 + _mbsnbset @597 + _mbsnbset_l @598 PRIVATE + _mbsnbset_s @599 PRIVATE + _mbsnbset_s_l @600 PRIVATE + _mbsncat @601 + _mbsncat_l @602 PRIVATE + _mbsncat_s @603 PRIVATE + _mbsncat_s_l @604 PRIVATE + _mbsnccnt @605 + _mbsnccnt_l @606 PRIVATE + _mbsncmp @607 + _mbsncmp_l @608 PRIVATE + _mbsncoll @609 PRIVATE + _mbsncoll_l @610 PRIVATE + _mbsncpy @611 + _mbsncpy_l @612 PRIVATE + _mbsncpy_s @613 PRIVATE + _mbsncpy_s_l @614 PRIVATE + _mbsnextc @615 + _mbsnextc_l @616 PRIVATE + _mbsnicmp @617 + _mbsnicmp_l @618 PRIVATE + _mbsnicoll @619 PRIVATE + _mbsnicoll_l @620 PRIVATE + _mbsninc @621 + _mbsninc_l @622 PRIVATE + _mbsnlen @623 + _mbsnlen_l @624 + _mbsnset @625 + _mbsnset_l @626 PRIVATE + _mbsnset_s @627 PRIVATE + _mbsnset_s_l @628 PRIVATE + _mbspbrk @629 + _mbspbrk_l @630 PRIVATE + _mbsrchr @631 + _mbsrchr_l @632 PRIVATE + _mbsrev @633 + _mbsrev_l @634 PRIVATE + _mbsset @635 + _mbsset_l @636 PRIVATE + _mbsset_s @637 PRIVATE + _mbsset_s_l @638 PRIVATE + _mbsspn @639 + _mbsspn_l @640 PRIVATE + _mbsspnp @641 + _mbsspnp_l @642 PRIVATE + _mbsstr @643 + _mbsstr_l @644 PRIVATE + _mbstok @645 + _mbstok_l @646 + _mbstok_s @647 + _mbstok_s_l @648 + _mbstowcs_l=MSVCRT__mbstowcs_l @649 + _mbstowcs_s_l=MSVCRT__mbstowcs_s_l @650 + _mbstrlen @651 + _mbstrlen_l @652 + _mbstrnlen @653 PRIVATE + _mbstrnlen_l @654 PRIVATE + _mbsupr @655 + _mbsupr_l @656 PRIVATE + _mbsupr_s @657 + _mbsupr_s_l @658 PRIVATE + _mbtowc_l=MSVCRT_mbtowc_l @659 + _memccpy=ntdll._memccpy @660 + _memicmp=MSVCRT__memicmp @661 + _memicmp_l=MSVCRT__memicmp_l @662 + _mkdir=MSVCRT__mkdir @663 + _mkgmtime32=MSVCRT__mkgmtime32 @664 + _mkgmtime64=MSVCRT__mkgmtime64 @665 + _mktemp=MSVCRT__mktemp @666 + _mktemp_s=MSVCRT__mktemp_s @667 + _mktime32=MSVCRT__mktime32 @668 + _mktime64=MSVCRT__mktime64 @669 + _msize @670 + _nextafter=MSVCRT__nextafter @671 + _nextafterf=MSVCRT__nextafterf @672 + _o__CIacos @673 PRIVATE + _o__CIasin @674 PRIVATE + _o__CIatan @675 PRIVATE + _o__CIatan2 @676 PRIVATE + _o__CIcos @677 PRIVATE + _o__CIcosh @678 PRIVATE + _o__CIexp @679 PRIVATE + _o__CIfmod @680 PRIVATE + _o__CIlog @681 PRIVATE + _o__CIlog10 @682 PRIVATE + _o__CIpow @683 PRIVATE + _o__CIsin @684 PRIVATE + _o__CIsinh @685 PRIVATE + _o__CIsqrt @686 PRIVATE + _o__CItan @687 PRIVATE + _o__CItanh @688 PRIVATE + _o__Getdays @689 PRIVATE + _o__Getmonths @690 PRIVATE + _o__Gettnames @691 PRIVATE + _o__Strftime @692 PRIVATE + _o__W_Getdays @693 PRIVATE + _o__W_Getmonths @694 PRIVATE + _o__W_Gettnames @695 PRIVATE + _o__Wcsftime @696 PRIVATE + _o____lc_codepage_func @697 PRIVATE + _o____lc_collate_cp_func @698 PRIVATE + _o____lc_locale_name_func @699 PRIVATE + _o____mb_cur_max_func @700 PRIVATE + _o___acrt_iob_func=MSVCRT___acrt_iob_func @701 + _o___conio_common_vcprintf @702 PRIVATE + _o___conio_common_vcprintf_p @703 PRIVATE + _o___conio_common_vcprintf_s @704 PRIVATE + _o___conio_common_vcscanf @705 PRIVATE + _o___conio_common_vcwprintf @706 PRIVATE + _o___conio_common_vcwprintf_p @707 PRIVATE + _o___conio_common_vcwprintf_s @708 PRIVATE + _o___conio_common_vcwscanf @709 PRIVATE + _o___daylight @710 PRIVATE + _o___dstbias @711 PRIVATE + _o___fpe_flt_rounds @712 PRIVATE + _o___libm_sse2_acos @713 PRIVATE + _o___libm_sse2_acosf @714 PRIVATE + _o___libm_sse2_asin @715 PRIVATE + _o___libm_sse2_asinf @716 PRIVATE + _o___libm_sse2_atan @717 PRIVATE + _o___libm_sse2_atan2 @718 PRIVATE + _o___libm_sse2_atanf @719 PRIVATE + _o___libm_sse2_cos @720 PRIVATE + _o___libm_sse2_cosf @721 PRIVATE + _o___libm_sse2_exp @722 PRIVATE + _o___libm_sse2_expf @723 PRIVATE + _o___libm_sse2_log @724 PRIVATE + _o___libm_sse2_log10 @725 PRIVATE + _o___libm_sse2_log10f @726 PRIVATE + _o___libm_sse2_logf @727 PRIVATE + _o___libm_sse2_pow @728 PRIVATE + _o___libm_sse2_powf @729 PRIVATE + _o___libm_sse2_sin @730 PRIVATE + _o___libm_sse2_sinf @731 PRIVATE + _o___libm_sse2_tan @732 PRIVATE + _o___libm_sse2_tanf @733 PRIVATE + _o___p___argc=MSVCRT___p___argc @734 + _o___p___argv @735 PRIVATE + _o___p___wargv=MSVCRT___p___wargv @736 + _o___p__acmdln @737 PRIVATE + _o___p__commode=__p__commode @738 + _o___p__environ @739 PRIVATE + _o___p__fmode @740 PRIVATE + _o___p__mbcasemap @741 PRIVATE + _o___p__mbctype @742 PRIVATE + _o___p__pgmptr @743 PRIVATE + _o___p__wcmdln @744 PRIVATE + _o___p__wenviron @745 PRIVATE + _o___p__wpgmptr @746 PRIVATE + _o___pctype_func @747 PRIVATE + _o___pwctype_func @748 PRIVATE + _o___std_exception_copy @749 PRIVATE + _o___std_exception_destroy=MSVCRT___std_exception_destroy @750 + _o___std_type_info_destroy_list=MSVCRT_type_info_destroy_list @751 + _o___std_type_info_name @752 PRIVATE + _o___stdio_common_vfprintf=MSVCRT__stdio_common_vfprintf @753 + _o___stdio_common_vfprintf_p @754 PRIVATE + _o___stdio_common_vfprintf_s @755 PRIVATE + _o___stdio_common_vfscanf @756 PRIVATE + _o___stdio_common_vfwprintf @757 PRIVATE + _o___stdio_common_vfwprintf_p @758 PRIVATE + _o___stdio_common_vfwprintf_s @759 PRIVATE + _o___stdio_common_vfwscanf @760 PRIVATE + _o___stdio_common_vsnprintf_s=MSVCRT__stdio_common_vsnprintf_s @761 + _o___stdio_common_vsnwprintf_s @762 PRIVATE + _o___stdio_common_vsprintf @763 PRIVATE + _o___stdio_common_vsprintf_p @764 PRIVATE + _o___stdio_common_vsprintf_s=MSVCRT__stdio_common_vsprintf_s @765 + _o___stdio_common_vsscanf @766 PRIVATE + _o___stdio_common_vswprintf @767 PRIVATE + _o___stdio_common_vswprintf_p @768 PRIVATE + _o___stdio_common_vswprintf_s @769 PRIVATE + _o___stdio_common_vswscanf @770 PRIVATE + _o___timezone @771 PRIVATE + _o___tzname @772 PRIVATE + _o___wcserror @773 PRIVATE + _o__access @774 PRIVATE + _o__access_s @775 PRIVATE + _o__aligned_free @776 PRIVATE + _o__aligned_malloc @777 PRIVATE + _o__aligned_msize @778 PRIVATE + _o__aligned_offset_malloc @779 PRIVATE + _o__aligned_offset_realloc @780 PRIVATE + _o__aligned_offset_recalloc @781 PRIVATE + _o__aligned_realloc @782 PRIVATE + _o__aligned_recalloc @783 PRIVATE + _o__atodbl @784 PRIVATE + _o__atodbl_l @785 PRIVATE + _o__atof_l @786 PRIVATE + _o__atoflt @787 PRIVATE + _o__atoflt_l @788 PRIVATE + _o__atoi64 @789 PRIVATE + _o__atoi64_l @790 PRIVATE + _o__atoi_l @791 PRIVATE + _o__atol_l @792 PRIVATE + _o__atoldbl @793 PRIVATE + _o__atoldbl_l @794 PRIVATE + _o__atoll_l @795 PRIVATE + _o__beep @796 PRIVATE + _o__beginthread @797 PRIVATE + _o__beginthreadex @798 PRIVATE + _o__cabs @799 PRIVATE + _o__callnewh @800 PRIVATE + _o__calloc_base @801 PRIVATE + _o__cexit @802 PRIVATE + _o__cgets @803 PRIVATE + _o__cgets_s @804 PRIVATE + _o__cgetws @805 PRIVATE + _o__cgetws_s @806 PRIVATE + _o__chdir @807 PRIVATE + _o__chdrive @808 PRIVATE + _o__chmod @809 PRIVATE + _o__chsize @810 PRIVATE + _o__chsize_s @811 PRIVATE + _o__close @812 PRIVATE + _o__commit @813 PRIVATE + _o__configthreadlocale=_configthreadlocale @814 + _o__configure_narrow_argv @815 PRIVATE + _o__configure_wide_argv=_configure_wide_argv @816 + _o__controlfp_s=_controlfp_s @817 + _o__cputs @818 PRIVATE + _o__cputws @819 PRIVATE + _o__creat @820 PRIVATE + _o__create_locale @821 PRIVATE + _o__crt_atexit=MSVCRT__crt_atexit @822 + _o__ctime32_s @823 PRIVATE + _o__ctime64_s @824 PRIVATE + _o__cwait @825 PRIVATE + _o__d_int @826 PRIVATE + _o__dclass @827 PRIVATE + _o__difftime32 @828 PRIVATE + _o__difftime64 @829 PRIVATE + _o__dlog @830 PRIVATE + _o__dnorm @831 PRIVATE + _o__dpcomp @832 PRIVATE + _o__dpoly @833 PRIVATE + _o__dscale @834 PRIVATE + _o__dsign @835 PRIVATE + _o__dsin @836 PRIVATE + _o__dtest @837 PRIVATE + _o__dunscale @838 PRIVATE + _o__dup @839 PRIVATE + _o__dup2 @840 PRIVATE + _o__dupenv_s @841 PRIVATE + _o__ecvt @842 PRIVATE + _o__ecvt_s @843 PRIVATE + _o__endthread @844 PRIVATE + _o__endthreadex @845 PRIVATE + _o__eof @846 PRIVATE + _o__errno=MSVCRT__errno @847 + _o__except1 @848 PRIVATE + _o__execute_onexit_table=MSVCRT__execute_onexit_table @849 + _o__execv @850 PRIVATE + _o__execve @851 PRIVATE + _o__execvp @852 PRIVATE + _o__execvpe @853 PRIVATE + _o__exit @854 PRIVATE + _o__expand @855 PRIVATE + _o__fclose_nolock @856 PRIVATE + _o__fcloseall @857 PRIVATE + _o__fcvt @858 PRIVATE + _o__fcvt_s @859 PRIVATE + _o__fd_int @860 PRIVATE + _o__fdclass @861 PRIVATE + _o__fdexp @862 PRIVATE + _o__fdlog @863 PRIVATE + _o__fdopen @864 PRIVATE + _o__fdpcomp @865 PRIVATE + _o__fdpoly @866 PRIVATE + _o__fdscale @867 PRIVATE + _o__fdsign @868 PRIVATE + _o__fdsin @869 PRIVATE + _o__fflush_nolock @870 PRIVATE + _o__fgetc_nolock @871 PRIVATE + _o__fgetchar @872 PRIVATE + _o__fgetwc_nolock @873 PRIVATE + _o__fgetwchar @874 PRIVATE + _o__filelength @875 PRIVATE + _o__filelengthi64 @876 PRIVATE + _o__fileno @877 PRIVATE + _o__findclose @878 PRIVATE + _o__findfirst32 @879 PRIVATE + _o__findfirst32i64 @880 PRIVATE + _o__findfirst64 @881 PRIVATE + _o__findfirst64i32 @882 PRIVATE + _o__findnext32 @883 PRIVATE + _o__findnext32i64 @884 PRIVATE + _o__findnext64 @885 PRIVATE + _o__findnext64i32 @886 PRIVATE + _o__flushall @887 PRIVATE + _o__fpclass=MSVCRT__fpclass @888 + _o__fpclassf @889 PRIVATE + _o__fputc_nolock @890 PRIVATE + _o__fputchar @891 PRIVATE + _o__fputwc_nolock @892 PRIVATE + _o__fputwchar @893 PRIVATE + _o__fread_nolock @894 PRIVATE + _o__fread_nolock_s @895 PRIVATE + _o__free_base @896 PRIVATE + _o__free_locale @897 PRIVATE + _o__fseek_nolock @898 PRIVATE + _o__fseeki64 @899 PRIVATE + _o__fseeki64_nolock @900 PRIVATE + _o__fsopen @901 PRIVATE + _o__fstat32 @902 PRIVATE + _o__fstat32i64 @903 PRIVATE + _o__fstat64 @904 PRIVATE + _o__fstat64i32 @905 PRIVATE + _o__ftell_nolock @906 PRIVATE + _o__ftelli64 @907 PRIVATE + _o__ftelli64_nolock @908 PRIVATE + _o__ftime32 @909 PRIVATE + _o__ftime32_s @910 PRIVATE + _o__ftime64 @911 PRIVATE + _o__ftime64_s @912 PRIVATE + _o__fullpath @913 PRIVATE + _o__futime32 @914 PRIVATE + _o__futime64 @915 PRIVATE + _o__fwrite_nolock @916 PRIVATE + _o__gcvt @917 PRIVATE + _o__gcvt_s @918 PRIVATE + _o__get_daylight @919 PRIVATE + _o__get_doserrno @920 PRIVATE + _o__get_dstbias @921 PRIVATE + _o__get_errno @922 PRIVATE + _o__get_fmode @923 PRIVATE + _o__get_heap_handle @924 PRIVATE + _o__get_initial_narrow_environment @925 PRIVATE + _o__get_initial_wide_environment=_get_initial_wide_environment @926 + _o__get_invalid_parameter_handler @927 PRIVATE + _o__get_narrow_winmain_command_line @928 PRIVATE + _o__get_osfhandle @929 PRIVATE + _o__get_pgmptr @930 PRIVATE + _o__get_stream_buffer_pointers @931 PRIVATE + _o__get_terminate @932 PRIVATE + _o__get_thread_local_invalid_parameter_handler @933 PRIVATE + _o__get_timezone @934 PRIVATE + _o__get_tzname @935 PRIVATE + _o__get_wide_winmain_command_line @936 PRIVATE + _o__get_wpgmptr @937 PRIVATE + _o__getc_nolock @938 PRIVATE + _o__getch @939 PRIVATE + _o__getch_nolock @940 PRIVATE + _o__getche @941 PRIVATE + _o__getche_nolock @942 PRIVATE + _o__getcwd @943 PRIVATE + _o__getdcwd @944 PRIVATE + _o__getdiskfree @945 PRIVATE + _o__getdllprocaddr @946 PRIVATE + _o__getdrive @947 PRIVATE + _o__getdrives @948 PRIVATE + _o__getmbcp @949 PRIVATE + _o__getsystime @950 PRIVATE + _o__getw @951 PRIVATE + _o__getwc_nolock @952 PRIVATE + _o__getwch @953 PRIVATE + _o__getwch_nolock @954 PRIVATE + _o__getwche @955 PRIVATE + _o__getwche_nolock @956 PRIVATE + _o__getws @957 PRIVATE + _o__getws_s @958 PRIVATE + _o__gmtime32 @959 PRIVATE + _o__gmtime32_s @960 PRIVATE + _o__gmtime64 @961 PRIVATE + _o__gmtime64_s @962 PRIVATE + _o__heapchk @963 PRIVATE + _o__heapmin @964 PRIVATE + _o__hypot @965 PRIVATE + _o__hypotf @966 PRIVATE + _o__i64toa @967 PRIVATE + _o__i64toa_s @968 PRIVATE + _o__i64tow @969 PRIVATE + _o__i64tow_s @970 PRIVATE + _o__initialize_narrow_environment @971 PRIVATE + _o__initialize_onexit_table=MSVCRT__initialize_onexit_table @972 + _o__initialize_wide_environment=_initialize_wide_environment @973 + _o__invalid_parameter_noinfo @974 PRIVATE + _o__invalid_parameter_noinfo_noreturn @975 PRIVATE + _o__isatty @976 PRIVATE + _o__isctype @977 PRIVATE + _o__isctype_l @978 PRIVATE + _o__isleadbyte_l @979 PRIVATE + _o__ismbbalnum @980 PRIVATE + _o__ismbbalnum_l @981 PRIVATE + _o__ismbbalpha @982 PRIVATE + _o__ismbbalpha_l @983 PRIVATE + _o__ismbbblank @984 PRIVATE + _o__ismbbblank_l @985 PRIVATE + _o__ismbbgraph @986 PRIVATE + _o__ismbbgraph_l @987 PRIVATE + _o__ismbbkalnum @988 PRIVATE + _o__ismbbkalnum_l @989 PRIVATE + _o__ismbbkana @990 PRIVATE + _o__ismbbkana_l @991 PRIVATE + _o__ismbbkprint @992 PRIVATE + _o__ismbbkprint_l @993 PRIVATE + _o__ismbbkpunct @994 PRIVATE + _o__ismbbkpunct_l @995 PRIVATE + _o__ismbblead @996 PRIVATE + _o__ismbblead_l @997 PRIVATE + _o__ismbbprint @998 PRIVATE + _o__ismbbprint_l @999 PRIVATE + _o__ismbbpunct @1000 PRIVATE + _o__ismbbpunct_l @1001 PRIVATE + _o__ismbbtrail @1002 PRIVATE + _o__ismbbtrail_l @1003 PRIVATE + _o__ismbcalnum @1004 PRIVATE + _o__ismbcalnum_l @1005 PRIVATE + _o__ismbcalpha @1006 PRIVATE + _o__ismbcalpha_l @1007 PRIVATE + _o__ismbcblank @1008 PRIVATE + _o__ismbcblank_l @1009 PRIVATE + _o__ismbcdigit @1010 PRIVATE + _o__ismbcdigit_l @1011 PRIVATE + _o__ismbcgraph @1012 PRIVATE + _o__ismbcgraph_l @1013 PRIVATE + _o__ismbchira @1014 PRIVATE + _o__ismbchira_l @1015 PRIVATE + _o__ismbckata @1016 PRIVATE + _o__ismbckata_l @1017 PRIVATE + _o__ismbcl0 @1018 PRIVATE + _o__ismbcl0_l @1019 PRIVATE + _o__ismbcl1 @1020 PRIVATE + _o__ismbcl1_l @1021 PRIVATE + _o__ismbcl2 @1022 PRIVATE + _o__ismbcl2_l @1023 PRIVATE + _o__ismbclegal @1024 PRIVATE + _o__ismbclegal_l @1025 PRIVATE + _o__ismbclower @1026 PRIVATE + _o__ismbclower_l @1027 PRIVATE + _o__ismbcprint @1028 PRIVATE + _o__ismbcprint_l @1029 PRIVATE + _o__ismbcpunct @1030 PRIVATE + _o__ismbcpunct_l @1031 PRIVATE + _o__ismbcspace @1032 PRIVATE + _o__ismbcspace_l @1033 PRIVATE + _o__ismbcsymbol @1034 PRIVATE + _o__ismbcsymbol_l @1035 PRIVATE + _o__ismbcupper @1036 PRIVATE + _o__ismbcupper_l @1037 PRIVATE + _o__ismbslead @1038 PRIVATE + _o__ismbslead_l @1039 PRIVATE + _o__ismbstrail @1040 PRIVATE + _o__ismbstrail_l @1041 PRIVATE + _o__iswctype_l @1042 PRIVATE + _o__itoa @1043 PRIVATE + _o__itoa_s @1044 PRIVATE + _o__itow @1045 PRIVATE + _o__itow_s @1046 PRIVATE + _o__j0 @1047 PRIVATE + _o__j1 @1048 PRIVATE + _o__jn @1049 PRIVATE + _o__kbhit @1050 PRIVATE + _o__ld_int @1051 PRIVATE + _o__ldclass @1052 PRIVATE + _o__ldexp @1053 PRIVATE + _o__ldlog @1054 PRIVATE + _o__ldpcomp @1055 PRIVATE + _o__ldpoly @1056 PRIVATE + _o__ldscale @1057 PRIVATE + _o__ldsign @1058 PRIVATE + _o__ldsin @1059 PRIVATE + _o__ldtest @1060 PRIVATE + _o__ldunscale @1061 PRIVATE + _o__lfind @1062 PRIVATE + _o__lfind_s @1063 PRIVATE + _o__libm_sse2_acos_precise @1064 PRIVATE + _o__libm_sse2_asin_precise @1065 PRIVATE + _o__libm_sse2_atan_precise @1066 PRIVATE + _o__libm_sse2_cos_precise @1067 PRIVATE + _o__libm_sse2_exp_precise @1068 PRIVATE + _o__libm_sse2_log10_precise @1069 PRIVATE + _o__libm_sse2_log_precise @1070 PRIVATE + _o__libm_sse2_pow_precise @1071 PRIVATE + _o__libm_sse2_sin_precise @1072 PRIVATE + _o__libm_sse2_sqrt_precise @1073 PRIVATE + _o__libm_sse2_tan_precise @1074 PRIVATE + _o__loaddll @1075 PRIVATE + _o__localtime32 @1076 PRIVATE + _o__localtime32_s @1077 PRIVATE + _o__localtime64 @1078 PRIVATE + _o__localtime64_s @1079 PRIVATE + _o__lock_file @1080 PRIVATE + _o__locking @1081 PRIVATE + _o__logb @1082 PRIVATE + _o__logbf @1083 PRIVATE + _o__lsearch @1084 PRIVATE + _o__lsearch_s @1085 PRIVATE + _o__lseek @1086 PRIVATE + _o__lseeki64 @1087 PRIVATE + _o__ltoa @1088 PRIVATE + _o__ltoa_s @1089 PRIVATE + _o__ltow @1090 PRIVATE + _o__ltow_s @1091 PRIVATE + _o__makepath @1092 PRIVATE + _o__makepath_s @1093 PRIVATE + _o__malloc_base @1094 PRIVATE + _o__mbbtombc @1095 PRIVATE + _o__mbbtombc_l @1096 PRIVATE + _o__mbbtype @1097 PRIVATE + _o__mbbtype_l @1098 PRIVATE + _o__mbccpy @1099 PRIVATE + _o__mbccpy_l @1100 PRIVATE + _o__mbccpy_s @1101 PRIVATE + _o__mbccpy_s_l @1102 PRIVATE + _o__mbcjistojms @1103 PRIVATE + _o__mbcjistojms_l @1104 PRIVATE + _o__mbcjmstojis @1105 PRIVATE + _o__mbcjmstojis_l @1106 PRIVATE + _o__mbclen @1107 PRIVATE + _o__mbclen_l @1108 PRIVATE + _o__mbctohira @1109 PRIVATE + _o__mbctohira_l @1110 PRIVATE + _o__mbctokata @1111 PRIVATE + _o__mbctokata_l @1112 PRIVATE + _o__mbctolower @1113 PRIVATE + _o__mbctolower_l @1114 PRIVATE + _o__mbctombb @1115 PRIVATE + _o__mbctombb_l @1116 PRIVATE + _o__mbctoupper @1117 PRIVATE + _o__mbctoupper_l @1118 PRIVATE + _o__mblen_l @1119 PRIVATE + _o__mbsbtype @1120 PRIVATE + _o__mbsbtype_l @1121 PRIVATE + _o__mbscat_s @1122 PRIVATE + _o__mbscat_s_l @1123 PRIVATE + _o__mbschr @1124 PRIVATE + _o__mbschr_l @1125 PRIVATE + _o__mbscmp @1126 PRIVATE + _o__mbscmp_l @1127 PRIVATE + _o__mbscoll @1128 PRIVATE + _o__mbscoll_l @1129 PRIVATE + _o__mbscpy_s @1130 PRIVATE + _o__mbscpy_s_l @1131 PRIVATE + _o__mbscspn @1132 PRIVATE + _o__mbscspn_l @1133 PRIVATE + _o__mbsdec @1134 PRIVATE + _o__mbsdec_l @1135 PRIVATE + _o__mbsicmp @1136 PRIVATE + _o__mbsicmp_l @1137 PRIVATE + _o__mbsicoll @1138 PRIVATE + _o__mbsicoll_l @1139 PRIVATE + _o__mbsinc @1140 PRIVATE + _o__mbsinc_l @1141 PRIVATE + _o__mbslen @1142 PRIVATE + _o__mbslen_l @1143 PRIVATE + _o__mbslwr @1144 PRIVATE + _o__mbslwr_l @1145 PRIVATE + _o__mbslwr_s @1146 PRIVATE + _o__mbslwr_s_l @1147 PRIVATE + _o__mbsnbcat @1148 PRIVATE + _o__mbsnbcat_l @1149 PRIVATE + _o__mbsnbcat_s @1150 PRIVATE + _o__mbsnbcat_s_l @1151 PRIVATE + _o__mbsnbcmp @1152 PRIVATE + _o__mbsnbcmp_l @1153 PRIVATE + _o__mbsnbcnt @1154 PRIVATE + _o__mbsnbcnt_l @1155 PRIVATE + _o__mbsnbcoll @1156 PRIVATE + _o__mbsnbcoll_l @1157 PRIVATE + _o__mbsnbcpy @1158 PRIVATE + _o__mbsnbcpy_l @1159 PRIVATE + _o__mbsnbcpy_s @1160 PRIVATE + _o__mbsnbcpy_s_l @1161 PRIVATE + _o__mbsnbicmp @1162 PRIVATE + _o__mbsnbicmp_l @1163 PRIVATE + _o__mbsnbicoll @1164 PRIVATE + _o__mbsnbicoll_l @1165 PRIVATE + _o__mbsnbset @1166 PRIVATE + _o__mbsnbset_l @1167 PRIVATE + _o__mbsnbset_s @1168 PRIVATE + _o__mbsnbset_s_l @1169 PRIVATE + _o__mbsncat @1170 PRIVATE + _o__mbsncat_l @1171 PRIVATE + _o__mbsncat_s @1172 PRIVATE + _o__mbsncat_s_l @1173 PRIVATE + _o__mbsnccnt @1174 PRIVATE + _o__mbsnccnt_l @1175 PRIVATE + _o__mbsncmp @1176 PRIVATE + _o__mbsncmp_l @1177 PRIVATE + _o__mbsncoll @1178 PRIVATE + _o__mbsncoll_l @1179 PRIVATE + _o__mbsncpy @1180 PRIVATE + _o__mbsncpy_l @1181 PRIVATE + _o__mbsncpy_s @1182 PRIVATE + _o__mbsncpy_s_l @1183 PRIVATE + _o__mbsnextc @1184 PRIVATE + _o__mbsnextc_l @1185 PRIVATE + _o__mbsnicmp @1186 PRIVATE + _o__mbsnicmp_l @1187 PRIVATE + _o__mbsnicoll @1188 PRIVATE + _o__mbsnicoll_l @1189 PRIVATE + _o__mbsninc @1190 PRIVATE + _o__mbsninc_l @1191 PRIVATE + _o__mbsnlen @1192 PRIVATE + _o__mbsnlen_l @1193 PRIVATE + _o__mbsnset @1194 PRIVATE + _o__mbsnset_l @1195 PRIVATE + _o__mbsnset_s @1196 PRIVATE + _o__mbsnset_s_l @1197 PRIVATE + _o__mbspbrk @1198 PRIVATE + _o__mbspbrk_l @1199 PRIVATE + _o__mbsrchr @1200 PRIVATE + _o__mbsrchr_l @1201 PRIVATE + _o__mbsrev @1202 PRIVATE + _o__mbsrev_l @1203 PRIVATE + _o__mbsset @1204 PRIVATE + _o__mbsset_l @1205 PRIVATE + _o__mbsset_s @1206 PRIVATE + _o__mbsset_s_l @1207 PRIVATE + _o__mbsspn @1208 PRIVATE + _o__mbsspn_l @1209 PRIVATE + _o__mbsspnp @1210 PRIVATE + _o__mbsspnp_l @1211 PRIVATE + _o__mbsstr @1212 PRIVATE + _o__mbsstr_l @1213 PRIVATE + _o__mbstok @1214 PRIVATE + _o__mbstok_l @1215 PRIVATE + _o__mbstok_s @1216 PRIVATE + _o__mbstok_s_l @1217 PRIVATE + _o__mbstowcs_l @1218 PRIVATE + _o__mbstowcs_s_l @1219 PRIVATE + _o__mbstrlen @1220 PRIVATE + _o__mbstrlen_l @1221 PRIVATE + _o__mbstrnlen @1222 PRIVATE + _o__mbstrnlen_l @1223 PRIVATE + _o__mbsupr @1224 PRIVATE + _o__mbsupr_l @1225 PRIVATE + _o__mbsupr_s @1226 PRIVATE + _o__mbsupr_s_l @1227 PRIVATE + _o__mbtowc_l @1228 PRIVATE + _o__memicmp @1229 PRIVATE + _o__memicmp_l @1230 PRIVATE + _o__mkdir @1231 PRIVATE + _o__mkgmtime32 @1232 PRIVATE + _o__mkgmtime64 @1233 PRIVATE + _o__mktemp @1234 PRIVATE + _o__mktemp_s @1235 PRIVATE + _o__mktime32 @1236 PRIVATE + _o__mktime64 @1237 PRIVATE + _o__msize @1238 PRIVATE + _o__nextafter @1239 PRIVATE + _o__nextafterf @1240 PRIVATE + _o__open_osfhandle @1241 PRIVATE + _o__pclose @1242 PRIVATE + _o__pipe @1243 PRIVATE + _o__popen @1244 PRIVATE + _o__purecall @1245 PRIVATE + _o__putc_nolock @1246 PRIVATE + _o__putch @1247 PRIVATE + _o__putch_nolock @1248 PRIVATE + _o__putenv @1249 PRIVATE + _o__putenv_s @1250 PRIVATE + _o__putw @1251 PRIVATE + _o__putwc_nolock @1252 PRIVATE + _o__putwch @1253 PRIVATE + _o__putwch_nolock @1254 PRIVATE + _o__putws @1255 PRIVATE + _o__read @1256 PRIVATE + _o__realloc_base @1257 PRIVATE + _o__recalloc @1258 PRIVATE + _o__register_onexit_function=MSVCRT__register_onexit_function @1259 + _o__resetstkoflw @1260 PRIVATE + _o__rmdir @1261 PRIVATE + _o__rmtmp @1262 PRIVATE + _o__scalb @1263 PRIVATE + _o__scalbf @1264 PRIVATE + _o__searchenv @1265 PRIVATE + _o__searchenv_s @1266 PRIVATE + _o__seh_filter_dll=__CppXcptFilter @1267 + _o__seh_filter_exe=_XcptFilter @1268 + _o__set_abort_behavior @1269 PRIVATE + _o__set_app_type=MSVCRT___set_app_type @1270 + _o__set_doserrno @1271 PRIVATE + _o__set_errno @1272 PRIVATE + _o__set_fmode=MSVCRT__set_fmode @1273 + _o__set_invalid_parameter_handler @1274 PRIVATE + _o__set_new_handler @1275 PRIVATE + _o__set_new_mode=MSVCRT__set_new_mode @1276 + _o__set_thread_local_invalid_parameter_handler @1277 PRIVATE + _o__seterrormode @1278 PRIVATE + _o__setmbcp @1279 PRIVATE + _o__setmode @1280 PRIVATE + _o__setsystime @1281 PRIVATE + _o__sleep @1282 PRIVATE + _o__sopen @1283 PRIVATE + _o__sopen_dispatch @1284 PRIVATE + _o__sopen_s @1285 PRIVATE + _o__spawnv @1286 PRIVATE + _o__spawnve @1287 PRIVATE + _o__spawnvp @1288 PRIVATE + _o__spawnvpe @1289 PRIVATE + _o__splitpath @1290 PRIVATE + _o__splitpath_s @1291 PRIVATE + _o__stat32 @1292 PRIVATE + _o__stat32i64 @1293 PRIVATE + _o__stat64 @1294 PRIVATE + _o__stat64i32 @1295 PRIVATE + _o__strcoll_l @1296 PRIVATE + _o__strdate @1297 PRIVATE + _o__strdate_s @1298 PRIVATE + _o__strdup @1299 PRIVATE + _o__strerror @1300 PRIVATE + _o__strerror_s @1301 PRIVATE + _o__strftime_l @1302 PRIVATE + _o__stricmp @1303 PRIVATE + _o__stricmp_l @1304 PRIVATE + _o__stricoll @1305 PRIVATE + _o__stricoll_l @1306 PRIVATE + _o__strlwr @1307 PRIVATE + _o__strlwr_l @1308 PRIVATE + _o__strlwr_s @1309 PRIVATE + _o__strlwr_s_l @1310 PRIVATE + _o__strncoll @1311 PRIVATE + _o__strncoll_l @1312 PRIVATE + _o__strnicmp @1313 PRIVATE + _o__strnicmp_l @1314 PRIVATE + _o__strnicoll @1315 PRIVATE + _o__strnicoll_l @1316 PRIVATE + _o__strnset_s @1317 PRIVATE + _o__strset_s @1318 PRIVATE + _o__strtime @1319 PRIVATE + _o__strtime_s @1320 PRIVATE + _o__strtod_l @1321 PRIVATE + _o__strtof_l @1322 PRIVATE + _o__strtoi64 @1323 PRIVATE + _o__strtoi64_l @1324 PRIVATE + _o__strtol_l @1325 PRIVATE + _o__strtold_l @1326 PRIVATE + _o__strtoll_l @1327 PRIVATE + _o__strtoui64 @1328 PRIVATE + _o__strtoui64_l @1329 PRIVATE + _o__strtoul_l @1330 PRIVATE + _o__strtoull_l @1331 PRIVATE + _o__strupr @1332 PRIVATE + _o__strupr_l @1333 PRIVATE + _o__strupr_s @1334 PRIVATE + _o__strupr_s_l @1335 PRIVATE + _o__strxfrm_l @1336 PRIVATE + _o__swab @1337 PRIVATE + _o__tell @1338 PRIVATE + _o__telli64 @1339 PRIVATE + _o__timespec32_get @1340 PRIVATE + _o__timespec64_get @1341 PRIVATE + _o__tolower @1342 PRIVATE + _o__tolower_l @1343 PRIVATE + _o__toupper @1344 PRIVATE + _o__toupper_l @1345 PRIVATE + _o__towlower_l @1346 PRIVATE + _o__towupper_l @1347 PRIVATE + _o__tzset @1348 PRIVATE + _o__ui64toa @1349 PRIVATE + _o__ui64toa_s @1350 PRIVATE + _o__ui64tow @1351 PRIVATE + _o__ui64tow_s @1352 PRIVATE + _o__ultoa @1353 PRIVATE + _o__ultoa_s @1354 PRIVATE + _o__ultow @1355 PRIVATE + _o__ultow_s @1356 PRIVATE + _o__umask @1357 PRIVATE + _o__umask_s @1358 PRIVATE + _o__ungetc_nolock @1359 PRIVATE + _o__ungetch @1360 PRIVATE + _o__ungetch_nolock @1361 PRIVATE + _o__ungetwc_nolock @1362 PRIVATE + _o__ungetwch @1363 PRIVATE + _o__ungetwch_nolock @1364 PRIVATE + _o__unlink @1365 PRIVATE + _o__unloaddll @1366 PRIVATE + _o__unlock_file @1367 PRIVATE + _o__utime32 @1368 PRIVATE + _o__utime64 @1369 PRIVATE + _o__waccess @1370 PRIVATE + _o__waccess_s @1371 PRIVATE + _o__wasctime @1372 PRIVATE + _o__wasctime_s @1373 PRIVATE + _o__wchdir @1374 PRIVATE + _o__wchmod @1375 PRIVATE + _o__wcreat @1376 PRIVATE + _o__wcreate_locale @1377 PRIVATE + _o__wcscoll_l @1378 PRIVATE + _o__wcsdup @1379 PRIVATE + _o__wcserror @1380 PRIVATE + _o__wcserror_s @1381 PRIVATE + _o__wcsftime_l @1382 PRIVATE + _o__wcsicmp @1383 PRIVATE + _o__wcsicmp_l @1384 PRIVATE + _o__wcsicoll @1385 PRIVATE + _o__wcsicoll_l @1386 PRIVATE + _o__wcslwr @1387 PRIVATE + _o__wcslwr_l @1388 PRIVATE + _o__wcslwr_s @1389 PRIVATE + _o__wcslwr_s_l @1390 PRIVATE + _o__wcsncoll @1391 PRIVATE + _o__wcsncoll_l @1392 PRIVATE + _o__wcsnicmp @1393 PRIVATE + _o__wcsnicmp_l @1394 PRIVATE + _o__wcsnicoll @1395 PRIVATE + _o__wcsnicoll_l @1396 PRIVATE + _o__wcsnset @1397 PRIVATE + _o__wcsnset_s @1398 PRIVATE + _o__wcsset @1399 PRIVATE + _o__wcsset_s @1400 PRIVATE + _o__wcstod_l @1401 PRIVATE + _o__wcstof_l @1402 PRIVATE + _o__wcstoi64 @1403 PRIVATE + _o__wcstoi64_l @1404 PRIVATE + _o__wcstol_l @1405 PRIVATE + _o__wcstold_l @1406 PRIVATE + _o__wcstoll_l @1407 PRIVATE + _o__wcstombs_l @1408 PRIVATE + _o__wcstombs_s_l @1409 PRIVATE + _o__wcstoui64 @1410 PRIVATE + _o__wcstoui64_l @1411 PRIVATE + _o__wcstoul_l @1412 PRIVATE + _o__wcstoull_l @1413 PRIVATE + _o__wcsupr @1414 PRIVATE + _o__wcsupr_l @1415 PRIVATE + _o__wcsupr_s @1416 PRIVATE + _o__wcsupr_s_l @1417 PRIVATE + _o__wcsxfrm_l @1418 PRIVATE + _o__wctime32 @1419 PRIVATE + _o__wctime32_s @1420 PRIVATE + _o__wctime64 @1421 PRIVATE + _o__wctime64_s @1422 PRIVATE + _o__wctomb_l @1423 PRIVATE + _o__wctomb_s_l @1424 PRIVATE + _o__wdupenv_s @1425 PRIVATE + _o__wexecv @1426 PRIVATE + _o__wexecve @1427 PRIVATE + _o__wexecvp @1428 PRIVATE + _o__wexecvpe @1429 PRIVATE + _o__wfdopen @1430 PRIVATE + _o__wfindfirst32 @1431 PRIVATE + _o__wfindfirst32i64 @1432 PRIVATE + _o__wfindfirst64 @1433 PRIVATE + _o__wfindfirst64i32 @1434 PRIVATE + _o__wfindnext32 @1435 PRIVATE + _o__wfindnext32i64 @1436 PRIVATE + _o__wfindnext64 @1437 PRIVATE + _o__wfindnext64i32 @1438 PRIVATE + _o__wfopen @1439 PRIVATE + _o__wfopen_s @1440 PRIVATE + _o__wfreopen @1441 PRIVATE + _o__wfreopen_s @1442 PRIVATE + _o__wfsopen @1443 PRIVATE + _o__wfullpath @1444 PRIVATE + _o__wgetcwd @1445 PRIVATE + _o__wgetdcwd @1446 PRIVATE + _o__wgetenv @1447 PRIVATE + _o__wgetenv_s @1448 PRIVATE + _o__wmakepath @1449 PRIVATE + _o__wmakepath_s @1450 PRIVATE + _o__wmkdir @1451 PRIVATE + _o__wmktemp @1452 PRIVATE + _o__wmktemp_s @1453 PRIVATE + _o__wperror @1454 PRIVATE + _o__wpopen @1455 PRIVATE + _o__wputenv @1456 PRIVATE + _o__wputenv_s @1457 PRIVATE + _o__wremove @1458 PRIVATE + _o__wrename @1459 PRIVATE + _o__write @1460 PRIVATE + _o__wrmdir @1461 PRIVATE + _o__wsearchenv @1462 PRIVATE + _o__wsearchenv_s @1463 PRIVATE + _o__wsetlocale @1464 PRIVATE + _o__wsopen_dispatch @1465 PRIVATE + _o__wsopen_s @1466 PRIVATE + _o__wspawnv @1467 PRIVATE + _o__wspawnve @1468 PRIVATE + _o__wspawnvp @1469 PRIVATE + _o__wspawnvpe @1470 PRIVATE + _o__wsplitpath @1471 PRIVATE + _o__wsplitpath_s @1472 PRIVATE + _o__wstat32 @1473 PRIVATE + _o__wstat32i64 @1474 PRIVATE + _o__wstat64 @1475 PRIVATE + _o__wstat64i32 @1476 PRIVATE + _o__wstrdate @1477 PRIVATE + _o__wstrdate_s @1478 PRIVATE + _o__wstrtime @1479 PRIVATE + _o__wstrtime_s @1480 PRIVATE + _o__wsystem @1481 PRIVATE + _o__wtmpnam_s @1482 PRIVATE + _o__wtof @1483 PRIVATE + _o__wtof_l @1484 PRIVATE + _o__wtoi @1485 PRIVATE + _o__wtoi64 @1486 PRIVATE + _o__wtoi64_l @1487 PRIVATE + _o__wtoi_l @1488 PRIVATE + _o__wtol @1489 PRIVATE + _o__wtol_l @1490 PRIVATE + _o__wtoll @1491 PRIVATE + _o__wtoll_l @1492 PRIVATE + _o__wunlink @1493 PRIVATE + _o__wutime32 @1494 PRIVATE + _o__wutime64 @1495 PRIVATE + _o__y0 @1496 PRIVATE + _o__y1 @1497 PRIVATE + _o__yn @1498 PRIVATE + _o_abort @1499 PRIVATE + _o_acos @1500 PRIVATE + _o_acosf @1501 PRIVATE + _o_acosh @1502 PRIVATE + _o_acoshf @1503 PRIVATE + _o_acoshl @1504 PRIVATE + _o_asctime @1505 PRIVATE + _o_asctime_s @1506 PRIVATE + _o_asin @1507 PRIVATE + _o_asinf @1508 PRIVATE + _o_asinh @1509 PRIVATE + _o_asinhf @1510 PRIVATE + _o_asinhl @1511 PRIVATE + _o_atan @1512 PRIVATE + _o_atan2 @1513 PRIVATE + _o_atan2f @1514 PRIVATE + _o_atanf @1515 PRIVATE + _o_atanh @1516 PRIVATE + _o_atanhf @1517 PRIVATE + _o_atanhl @1518 PRIVATE + _o_atof @1519 PRIVATE + _o_atoi @1520 PRIVATE + _o_atol @1521 PRIVATE + _o_atoll @1522 PRIVATE + _o_bsearch @1523 PRIVATE + _o_bsearch_s @1524 PRIVATE + _o_btowc @1525 PRIVATE + _o_calloc=MSVCRT_calloc @1526 + _o_cbrt @1527 PRIVATE + _o_cbrtf @1528 PRIVATE + _o_ceil @1529 PRIVATE + _o_ceilf @1530 PRIVATE + _o_clearerr @1531 PRIVATE + _o_clearerr_s @1532 PRIVATE + _o_cos @1533 PRIVATE + _o_cosf @1534 PRIVATE + _o_cosh @1535 PRIVATE + _o_coshf @1536 PRIVATE + _o_erf @1537 PRIVATE + _o_erfc @1538 PRIVATE + _o_erfcf @1539 PRIVATE + _o_erfcl @1540 PRIVATE + _o_erff @1541 PRIVATE + _o_erfl @1542 PRIVATE + _o_exit=MSVCRT_exit @1543 + _o_exp @1544 PRIVATE + _o_exp2 @1545 PRIVATE + _o_exp2f @1546 PRIVATE + _o_exp2l @1547 PRIVATE + _o_expf @1548 PRIVATE + _o_fabs @1549 PRIVATE + _o_fclose @1550 PRIVATE + _o_feof @1551 PRIVATE + _o_ferror @1552 PRIVATE + _o_fflush @1553 PRIVATE + _o_fgetc @1554 PRIVATE + _o_fgetpos @1555 PRIVATE + _o_fgets @1556 PRIVATE + _o_fgetwc @1557 PRIVATE + _o_fgetws @1558 PRIVATE + _o_floor @1559 PRIVATE + _o_floorf @1560 PRIVATE + _o_fma @1561 PRIVATE + _o_fmaf @1562 PRIVATE + _o_fmal @1563 PRIVATE + _o_fmod @1564 PRIVATE + _o_fmodf @1565 PRIVATE + _o_fopen @1566 PRIVATE + _o_fopen_s @1567 PRIVATE + _o_fputc @1568 PRIVATE + _o_fputs @1569 PRIVATE + _o_fputwc @1570 PRIVATE + _o_fputws @1571 PRIVATE + _o_fread @1572 PRIVATE + _o_fread_s @1573 PRIVATE + _o_free=MSVCRT_free @1574 + _o_freopen @1575 PRIVATE + _o_freopen_s @1576 PRIVATE + _o_frexp @1577 PRIVATE + _o_fseek @1578 PRIVATE + _o_fsetpos @1579 PRIVATE + _o_ftell @1580 PRIVATE + _o_fwrite @1581 PRIVATE + _o_getc @1582 PRIVATE + _o_getchar @1583 PRIVATE + _o_getenv @1584 PRIVATE + _o_getenv_s @1585 PRIVATE + _o_gets @1586 PRIVATE + _o_gets_s @1587 PRIVATE + _o_getwc @1588 PRIVATE + _o_getwchar @1589 PRIVATE + _o_hypot @1590 PRIVATE + _o_is_wctype @1591 PRIVATE + _o_isalnum=MSVCRT_isalnum @1592 + _o_isalpha=MSVCRT_isalpha @1593 + _o_isblank @1594 PRIVATE + _o_iscntrl @1595 PRIVATE + _o_isdigit=MSVCRT_isdigit @1596 + _o_isgraph @1597 PRIVATE + _o_isleadbyte @1598 PRIVATE + _o_islower @1599 PRIVATE + _o_isprint=MSVCRT_isprint @1600 + _o_ispunct @1601 PRIVATE + _o_isspace @1602 PRIVATE + _o_isupper @1603 PRIVATE + _o_iswalnum @1604 PRIVATE + _o_iswalpha @1605 PRIVATE + _o_iswascii @1606 PRIVATE + _o_iswblank @1607 PRIVATE + _o_iswcntrl @1608 PRIVATE + _o_iswctype @1609 PRIVATE + _o_iswdigit @1610 PRIVATE + _o_iswgraph @1611 PRIVATE + _o_iswlower @1612 PRIVATE + _o_iswprint @1613 PRIVATE + _o_iswpunct @1614 PRIVATE + _o_iswspace @1615 PRIVATE + _o_iswupper @1616 PRIVATE + _o_iswxdigit @1617 PRIVATE + _o_isxdigit @1618 PRIVATE + _o_ldexp @1619 PRIVATE + _o_lgamma @1620 PRIVATE + _o_lgammaf @1621 PRIVATE + _o_lgammal @1622 PRIVATE + _o_llrint @1623 PRIVATE + _o_llrintf @1624 PRIVATE + _o_llrintl @1625 PRIVATE + _o_llround @1626 PRIVATE + _o_llroundf @1627 PRIVATE + _o_llroundl @1628 PRIVATE + _o_localeconv @1629 PRIVATE + _o_log @1630 PRIVATE + _o_log10 @1631 PRIVATE + _o_log10f @1632 PRIVATE + _o_log1p @1633 PRIVATE + _o_log1pf @1634 PRIVATE + _o_log1pl @1635 PRIVATE + _o_log2 @1636 PRIVATE + _o_log2f @1637 PRIVATE + _o_log2l @1638 PRIVATE + _o_logb @1639 PRIVATE + _o_logbf @1640 PRIVATE + _o_logbl @1641 PRIVATE + _o_logf @1642 PRIVATE + _o_lrint @1643 PRIVATE + _o_lrintf @1644 PRIVATE + _o_lrintl @1645 PRIVATE + _o_lround @1646 PRIVATE + _o_lroundf @1647 PRIVATE + _o_lroundl @1648 PRIVATE + _o_malloc=MSVCRT_malloc @1649 + _o_mblen @1650 PRIVATE + _o_mbrlen @1651 PRIVATE + _o_mbrtoc16 @1652 PRIVATE + _o_mbrtoc32 @1653 PRIVATE + _o_mbrtowc @1654 PRIVATE + _o_mbsrtowcs @1655 PRIVATE + _o_mbsrtowcs_s @1656 PRIVATE + _o_mbstowcs @1657 PRIVATE + _o_mbstowcs_s @1658 PRIVATE + _o_mbtowc @1659 PRIVATE + _o_memcpy_s @1660 PRIVATE + _o_memset @1661 PRIVATE + _o_modf @1662 PRIVATE + _o_modff @1663 PRIVATE + _o_nan @1664 PRIVATE + _o_nanf @1665 PRIVATE + _o_nanl @1666 PRIVATE + _o_nearbyint @1667 PRIVATE + _o_nearbyintf @1668 PRIVATE + _o_nearbyintl @1669 PRIVATE + _o_nextafter @1670 PRIVATE + _o_nextafterf @1671 PRIVATE + _o_nextafterl @1672 PRIVATE + _o_nexttoward @1673 PRIVATE + _o_nexttowardf @1674 PRIVATE + _o_nexttowardl @1675 PRIVATE + _o_pow @1676 PRIVATE + _o_powf @1677 PRIVATE + _o_putc @1678 PRIVATE + _o_putchar @1679 PRIVATE + _o_puts @1680 PRIVATE + _o_putwc @1681 PRIVATE + _o_putwchar @1682 PRIVATE + _o_qsort=MSVCRT_qsort @1683 + _o_qsort_s @1684 PRIVATE + _o_raise @1685 PRIVATE + _o_rand @1686 PRIVATE + _o_rand_s @1687 PRIVATE + _o_realloc=MSVCRT_realloc @1688 + _o_remainder @1689 PRIVATE + _o_remainderf @1690 PRIVATE + _o_remainderl @1691 PRIVATE + _o_remove @1692 PRIVATE + _o_remquo @1693 PRIVATE + _o_remquof @1694 PRIVATE + _o_remquol @1695 PRIVATE + _o_rename @1696 PRIVATE + _o_rewind @1697 PRIVATE + _o_rint @1698 PRIVATE + _o_rintf @1699 PRIVATE + _o_rintl @1700 PRIVATE + _o_round @1701 PRIVATE + _o_roundf @1702 PRIVATE + _o_roundl @1703 PRIVATE + _o_scalbln @1704 PRIVATE + _o_scalblnf @1705 PRIVATE + _o_scalblnl @1706 PRIVATE + _o_scalbn @1707 PRIVATE + _o_scalbnf @1708 PRIVATE + _o_scalbnl @1709 PRIVATE + _o_set_terminate @1710 PRIVATE + _o_setbuf @1711 PRIVATE + _o_setlocale @1712 PRIVATE + _o_setvbuf @1713 PRIVATE + _o_sin @1714 PRIVATE + _o_sinf @1715 PRIVATE + _o_sinh @1716 PRIVATE + _o_sinhf @1717 PRIVATE + _o_sqrt @1718 PRIVATE + _o_sqrtf @1719 PRIVATE + _o_srand @1720 PRIVATE + _o_strcat_s=MSVCRT_strcat_s @1721 + _o_strcoll @1722 PRIVATE + _o_strcpy_s @1723 PRIVATE + _o_strerror @1724 PRIVATE + _o_strerror_s @1725 PRIVATE + _o_strftime @1726 PRIVATE + _o_strncat_s @1727 PRIVATE + _o_strncpy_s @1728 PRIVATE + _o_strtod @1729 PRIVATE + _o_strtof @1730 PRIVATE + _o_strtok @1731 PRIVATE + _o_strtok_s @1732 PRIVATE + _o_strtol @1733 PRIVATE + _o_strtold @1734 PRIVATE + _o_strtoll @1735 PRIVATE + _o_strtoul=MSVCRT_strtoul @1736 + _o_strtoull @1737 PRIVATE + _o_system @1738 PRIVATE + _o_tan @1739 PRIVATE + _o_tanf @1740 PRIVATE + _o_tanh @1741 PRIVATE + _o_tanhf @1742 PRIVATE + _o_terminate @1743 PRIVATE + _o_tgamma @1744 PRIVATE + _o_tgammaf @1745 PRIVATE + _o_tgammal @1746 PRIVATE + _o_tmpfile_s @1747 PRIVATE + _o_tmpnam_s @1748 PRIVATE + _o_tolower=MSVCRT__tolower @1749 + _o_toupper=MSVCRT__toupper @1750 + _o_towlower @1751 PRIVATE + _o_towupper @1752 PRIVATE + _o_ungetc @1753 PRIVATE + _o_ungetwc @1754 PRIVATE + _o_wcrtomb @1755 PRIVATE + _o_wcrtomb_s @1756 PRIVATE + _o_wcscat_s @1757 PRIVATE + _o_wcscoll @1758 PRIVATE + _o_wcscpy @1759 PRIVATE + _o_wcscpy_s @1760 PRIVATE + _o_wcsftime @1761 PRIVATE + _o_wcsncat_s @1762 PRIVATE + _o_wcsncpy_s @1763 PRIVATE + _o_wcsrtombs @1764 PRIVATE + _o_wcsrtombs_s @1765 PRIVATE + _o_wcstod @1766 PRIVATE + _o_wcstof @1767 PRIVATE + _o_wcstok @1768 PRIVATE + _o_wcstok_s @1769 PRIVATE + _o_wcstol @1770 PRIVATE + _o_wcstold @1771 PRIVATE + _o_wcstoll @1772 PRIVATE + _o_wcstombs @1773 PRIVATE + _o_wcstombs_s @1774 PRIVATE + _o_wcstoul @1775 PRIVATE + _o_wcstoull @1776 PRIVATE + _o_wctob @1777 PRIVATE + _o_wctomb @1778 PRIVATE + _o_wctomb_s @1779 PRIVATE + _o_wmemcpy_s @1780 PRIVATE + _o_wmemmove_s @1781 PRIVATE + _open=MSVCRT__open @1782 + _open_osfhandle=MSVCRT__open_osfhandle @1783 + _pclose=MSVCRT__pclose @1784 + _pipe=MSVCRT__pipe @1785 + _popen=MSVCRT__popen @1786 + _purecall @1787 + _putc_nolock=MSVCRT__fputc_nolock @1788 + _putch @1789 + _putch_nolock @1790 + _putenv @1791 + _putenv_s @1792 + _putw=MSVCRT__putw @1793 + _putwc_nolock=MSVCRT__fputwc_nolock @1794 + _putwch @1795 + _putwch_nolock @1796 + _putws=MSVCRT__putws @1797 + _query_app_type @1798 PRIVATE + _query_new_handler @1799 PRIVATE + _query_new_mode @1800 PRIVATE + _read=MSVCRT__read @1801 + _realloc_base @1802 + _recalloc @1803 + _register_onexit_function=MSVCRT__register_onexit_function @1804 + _register_thread_local_exe_atexit_callback @1805 + _resetstkoflw=MSVCRT__resetstkoflw @1806 + _rmdir=MSVCRT__rmdir @1807 + _rmtmp=MSVCRT__rmtmp @1808 + _rotl @1809 + _rotl64 @1810 + _rotr @1811 + _rotr64 @1812 + _scalb=MSVCRT__scalb @1813 + _scalbf=MSVCRT__scalbf @1814 + _searchenv=MSVCRT__searchenv @1815 + _searchenv_s=MSVCRT__searchenv_s @1816 + _seh_filter_dll=__CppXcptFilter @1817 + _seh_filter_exe=_XcptFilter @1818 + _set_FMA3_enable=MSVCRT__set_FMA3_enable @1819 + _set_abort_behavior=MSVCRT__set_abort_behavior @1820 + _set_app_type=MSVCRT___set_app_type @1821 + _set_controlfp @1822 + _set_doserrno @1823 + _set_errno @1824 + _set_error_mode @1825 + _set_fmode=MSVCRT__set_fmode @1826 + _set_invalid_parameter_handler @1827 + _set_new_handler=MSVCRT_set_new_handler @1828 + _set_new_mode=MSVCRT__set_new_mode @1829 + _set_printf_count_output=MSVCRT__set_printf_count_output @1830 + _set_purecall_handler @1831 + _set_se_translator=MSVCRT__set_se_translator @1832 + _set_thread_local_invalid_parameter_handler @1833 + _seterrormode @1834 + _setmaxstdio=MSVCRT__setmaxstdio @1835 + _setmbcp @1836 + _setmode=MSVCRT__setmode @1837 + _setsystime @1838 PRIVATE + _sleep=MSVCRT__sleep @1839 + _sopen=MSVCRT__sopen @1840 + _sopen_dispatch=MSVCRT__sopen_dispatch @1841 + _sopen_s=MSVCRT__sopen_s @1842 + _spawnl=MSVCRT__spawnl @1843 + _spawnle=MSVCRT__spawnle @1844 + _spawnlp=MSVCRT__spawnlp @1845 + _spawnlpe=MSVCRT__spawnlpe @1846 + _spawnv=MSVCRT__spawnv @1847 + _spawnve=MSVCRT__spawnve @1848 + _spawnvp=MSVCRT__spawnvp @1849 + _spawnvpe=MSVCRT__spawnvpe @1850 + _splitpath=MSVCRT__splitpath @1851 + _splitpath_s=MSVCRT__splitpath_s @1852 + _stat32=MSVCRT__stat32 @1853 + _stat32i64=MSVCRT__stat32i64 @1854 + _stat64=MSVCRT_stat64 @1855 + _stat64i32=MSVCRT__stat64i32 @1856 + _statusfp @1857 + _strcoll_l=MSVCRT_strcoll_l @1858 + _strdate=MSVCRT__strdate @1859 + _strdate_s @1860 + _strdup=MSVCRT__strdup @1861 + _strerror=MSVCRT__strerror @1862 + _strerror_s @1863 PRIVATE + _strftime_l=MSVCRT__strftime_l @1864 + _stricmp=MSVCRT__stricmp @1865 + _stricmp_l=MSVCRT__stricmp_l @1866 + _stricoll=MSVCRT__stricoll @1867 + _stricoll_l=MSVCRT__stricoll_l @1868 + _strlwr=MSVCRT__strlwr @1869 + _strlwr_l @1870 + _strlwr_s=MSVCRT__strlwr_s @1871 + _strlwr_s_l=MSVCRT__strlwr_s_l @1872 + _strncoll=MSVCRT__strncoll @1873 + _strncoll_l=MSVCRT__strncoll_l @1874 + _strnicmp=MSVCRT__strnicmp @1875 + _strnicmp_l=MSVCRT__strnicmp_l @1876 + _strnicoll=MSVCRT__strnicoll @1877 + _strnicoll_l=MSVCRT__strnicoll_l @1878 + _strnset=MSVCRT__strnset @1879 + _strnset_s=MSVCRT__strnset_s @1880 + _strrev=MSVCRT__strrev @1881 + _strset @1882 + _strset_s @1883 PRIVATE + _strtime=MSVCRT__strtime @1884 + _strtime_s @1885 + _strtod_l=MSVCRT_strtod_l @1886 + _strtof_l=MSVCRT__strtof_l @1887 + _strtoi64=MSVCRT_strtoi64 @1888 + _strtoi64_l=MSVCRT_strtoi64_l @1889 + _strtoimax_l @1890 PRIVATE + _strtol_l=MSVCRT__strtol_l @1891 + _strtold_l @1892 PRIVATE + _strtoll_l=MSVCRT_strtoi64_l @1893 + _strtoui64=MSVCRT_strtoui64 @1894 + _strtoui64_l=MSVCRT_strtoui64_l @1895 + _strtoul_l=MSVCRT_strtoul_l @1896 + _strtoull_l=MSVCRT_strtoui64_l @1897 + _strtoumax_l @1898 PRIVATE + _strupr=MSVCRT__strupr @1899 + _strupr_l=MSVCRT__strupr_l @1900 + _strupr_s=MSVCRT__strupr_s @1901 + _strupr_s_l=MSVCRT__strupr_s_l @1902 + _strxfrm_l=MSVCRT__strxfrm_l @1903 + _swab=MSVCRT__swab @1904 + _tell=MSVCRT__tell @1905 + _telli64 @1906 + _tempnam=MSVCRT__tempnam @1907 + _time32=MSVCRT__time32 @1908 + _time64=MSVCRT__time64 @1909 + _timespec32_get @1910 + _timespec64_get @1911 + _tolower=MSVCRT__tolower @1912 + _tolower_l=MSVCRT__tolower_l @1913 + _toupper=MSVCRT__toupper @1914 + _toupper_l=MSVCRT__toupper_l @1915 + _towlower_l=MSVCRT__towlower_l @1916 + _towupper_l=MSVCRT__towupper_l @1917 + _tzset=MSVCRT__tzset @1918 + _ui64toa=ntdll._ui64toa @1919 + _ui64toa_s=MSVCRT__ui64toa_s @1920 + _ui64tow=ntdll._ui64tow @1921 + _ui64tow_s=MSVCRT__ui64tow_s @1922 + _ultoa=ntdll._ultoa @1923 + _ultoa_s=MSVCRT__ultoa_s @1924 + _ultow=ntdll._ultow @1925 + _ultow_s=MSVCRT__ultow_s @1926 + _umask=MSVCRT__umask @1927 + _umask_s @1928 PRIVATE + _ungetc_nolock=MSVCRT__ungetc_nolock @1929 + _ungetch @1930 + _ungetch_nolock @1931 + _ungetwc_nolock=MSVCRT__ungetwc_nolock @1932 + _ungetwch @1933 + _ungetwch_nolock @1934 + _unlink=MSVCRT__unlink @1935 + _unloaddll @1936 + _unlock_file=MSVCRT__unlock_file @1937 + _unlock_locales @1938 + _utime32 @1939 + _utime64 @1940 + _waccess=MSVCRT__waccess @1941 + _waccess_s=MSVCRT__waccess_s @1942 + _wasctime=MSVCRT__wasctime @1943 + _wasctime_s=MSVCRT__wasctime_s @1944 + _wassert=MSVCRT__wassert @1945 + _wchdir=MSVCRT__wchdir @1946 + _wchmod=MSVCRT__wchmod @1947 + _wcreat=MSVCRT__wcreat @1948 + _wcreate_locale=MSVCRT__wcreate_locale @1949 + _wcscoll_l=MSVCRT__wcscoll_l @1950 + _wcsdup=MSVCRT__wcsdup @1951 + _wcserror=MSVCRT__wcserror @1952 + _wcserror_s=MSVCRT__wcserror_s @1953 + _wcsftime_l=MSVCRT__wcsftime_l @1954 + _wcsicmp=MSVCRT__wcsicmp @1955 + _wcsicmp_l=MSVCRT__wcsicmp_l @1956 + _wcsicoll=MSVCRT__wcsicoll @1957 + _wcsicoll_l=MSVCRT__wcsicoll_l @1958 + _wcslwr=MSVCRT__wcslwr @1959 + _wcslwr_l=MSVCRT__wcslwr_l @1960 + _wcslwr_s=MSVCRT__wcslwr_s @1961 + _wcslwr_s_l=MSVCRT__wcslwr_s_l @1962 + _wcsncoll=MSVCRT__wcsncoll @1963 + _wcsncoll_l=MSVCRT__wcsncoll_l @1964 + _wcsnicmp=MSVCRT__wcsnicmp @1965 + _wcsnicmp_l=MSVCRT__wcsnicmp_l @1966 + _wcsnicoll=MSVCRT__wcsnicoll @1967 + _wcsnicoll_l=MSVCRT__wcsnicoll_l @1968 + _wcsnset=MSVCRT__wcsnset @1969 + _wcsnset_s=MSVCRT__wcsnset_s @1970 + _wcsrev=MSVCRT__wcsrev @1971 + _wcsset=MSVCRT__wcsset @1972 + _wcsset_s=MSVCRT__wcsset_s @1973 + _wcstod_l=MSVCRT__wcstod_l @1974 + _wcstof_l=MSVCRT__wcstof_l @1975 + _wcstoi64=MSVCRT__wcstoi64 @1976 + _wcstoi64_l=MSVCRT__wcstoi64_l @1977 + _wcstoimax_l @1978 PRIVATE + _wcstol_l=MSVCRT__wcstol_l @1979 + _wcstold_l @1980 PRIVATE + _wcstoll_l=MSVCRT__wcstoi64_l @1981 + _wcstombs_l=MSVCRT__wcstombs_l @1982 + _wcstombs_s_l=MSVCRT__wcstombs_s_l @1983 + _wcstoui64=MSVCRT__wcstoui64 @1984 + _wcstoui64_l=MSVCRT__wcstoui64_l @1985 + _wcstoul_l=MSVCRT__wcstoul_l @1986 + _wcstoull_l=MSVCRT__wcstoui64_l @1987 + _wcstoumax_l @1988 PRIVATE + _wcsupr=MSVCRT__wcsupr @1989 + _wcsupr_l=MSVCRT__wcsupr_l @1990 + _wcsupr_s=MSVCRT__wcsupr_s @1991 + _wcsupr_s_l=MSVCRT__wcsupr_s_l @1992 + _wcsxfrm_l=MSVCRT__wcsxfrm_l @1993 + _wctime32=MSVCRT__wctime32 @1994 + _wctime32_s=MSVCRT__wctime32_s @1995 + _wctime64=MSVCRT__wctime64 @1996 + _wctime64_s=MSVCRT__wctime64_s @1997 + _wctomb_l=MSVCRT__wctomb_l @1998 + _wctomb_s_l=MSVCRT__wctomb_s_l @1999 + _wctype @2000 PRIVATE + _wdupenv_s @2001 + _wexecl @2002 + _wexecle @2003 + _wexeclp @2004 + _wexeclpe @2005 + _wexecv @2006 + _wexecve @2007 + _wexecvp @2008 + _wexecvpe @2009 + _wfdopen=MSVCRT__wfdopen @2010 + _wfindfirst32=MSVCRT__wfindfirst32 @2011 + _wfindfirst32i64 @2012 PRIVATE + _wfindfirst64=MSVCRT__wfindfirst64 @2013 + _wfindfirst64i32=MSVCRT__wfindfirst64i32 @2014 + _wfindnext32=MSVCRT__wfindnext32 @2015 + _wfindnext32i64 @2016 PRIVATE + _wfindnext64=MSVCRT__wfindnext64 @2017 + _wfindnext64i32=MSVCRT__wfindnext64i32 @2018 + _wfopen=MSVCRT__wfopen @2019 + _wfopen_s=MSVCRT__wfopen_s @2020 + _wfreopen=MSVCRT__wfreopen @2021 + _wfreopen_s=MSVCRT__wfreopen_s @2022 + _wfsopen=MSVCRT__wfsopen @2023 + _wfullpath=MSVCRT__wfullpath @2024 + _wgetcwd=MSVCRT__wgetcwd @2025 + _wgetdcwd=MSVCRT__wgetdcwd @2026 + _wgetenv=MSVCRT__wgetenv @2027 + _wgetenv_s @2028 + _wmakepath=MSVCRT__wmakepath @2029 + _wmakepath_s=MSVCRT__wmakepath_s @2030 + _wmkdir=MSVCRT__wmkdir @2031 + _wmktemp=MSVCRT__wmktemp @2032 + _wmktemp_s=MSVCRT__wmktemp_s @2033 + _wopen=MSVCRT__wopen @2034 + _wperror=MSVCRT__wperror @2035 + _wpopen=MSVCRT__wpopen @2036 + _wputenv @2037 + _wputenv_s @2038 + _wremove=MSVCRT__wremove @2039 + _wrename=MSVCRT__wrename @2040 + _write=MSVCRT__write @2041 + _wrmdir=MSVCRT__wrmdir @2042 + _wsearchenv=MSVCRT__wsearchenv @2043 + _wsearchenv_s=MSVCRT__wsearchenv_s @2044 + _wsetlocale=MSVCRT__wsetlocale @2045 + _wsopen=MSVCRT__wsopen @2046 + _wsopen_dispatch=MSVCRT__wsopen_dispatch @2047 + _wsopen_s=MSVCRT__wsopen_s @2048 + _wspawnl=MSVCRT__wspawnl @2049 + _wspawnle=MSVCRT__wspawnle @2050 + _wspawnlp=MSVCRT__wspawnlp @2051 + _wspawnlpe=MSVCRT__wspawnlpe @2052 + _wspawnv=MSVCRT__wspawnv @2053 + _wspawnve=MSVCRT__wspawnve @2054 + _wspawnvp=MSVCRT__wspawnvp @2055 + _wspawnvpe=MSVCRT__wspawnvpe @2056 + _wsplitpath=MSVCRT__wsplitpath @2057 + _wsplitpath_s=MSVCRT__wsplitpath_s @2058 + _wstat32=MSVCRT__wstat32 @2059 + _wstat32i64=MSVCRT__wstat32i64 @2060 + _wstat64=MSVCRT__wstat64 @2061 + _wstat64i32=MSVCRT__wstat64i32 @2062 + _wstrdate=MSVCRT__wstrdate @2063 + _wstrdate_s @2064 + _wstrtime=MSVCRT__wstrtime @2065 + _wstrtime_s @2066 + _wsystem @2067 + _wtempnam=MSVCRT__wtempnam @2068 + _wtmpnam=MSVCRT__wtmpnam @2069 + _wtmpnam_s=MSVCRT__wtmpnam_s @2070 + _wtof=MSVCRT__wtof @2071 + _wtof_l=MSVCRT__wtof_l @2072 + _wtoi=MSVCRT__wtoi @2073 + _wtoi64=MSVCRT__wtoi64 @2074 + _wtoi64_l=MSVCRT__wtoi64_l @2075 + _wtoi_l=MSVCRT__wtoi_l @2076 + _wtol=MSVCRT__wtol @2077 + _wtol_l=MSVCRT__wtol_l @2078 + _wtoll=MSVCRT__wtoll @2079 + _wtoll_l=MSVCRT__wtoll_l @2080 + _wunlink=MSVCRT__wunlink @2081 + _wutime32 @2082 + _wutime64 @2083 + _y0=MSVCRT__y0 @2084 + _y1=MSVCRT__y1 @2085 + _yn=MSVCRT__yn @2086 + abort=MSVCRT_abort @2087 + abs=MSVCRT_abs @2088 + acos=MSVCRT_acos @2089 + acosf=MSVCRT_acosf @2090 + acosh=MSVCR120_acosh @2091 + acoshf=MSVCR120_acoshf @2092 + acoshl=MSVCR120_acoshl @2093 + asctime=MSVCRT_asctime @2094 + asctime_s=MSVCRT_asctime_s @2095 + asin=MSVCRT_asin @2096 + asinf=MSVCRT_asinf @2097 + asinh=MSVCR120_asinh @2098 + asinhf=MSVCR120_asinhf @2099 + asinhl=MSVCR120_asinhl @2100 + atan=MSVCRT_atan @2101 + atan2=MSVCRT_atan2 @2102 + atan2f=MSVCRT_atan2f @2103 + atanf=MSVCRT_atanf @2104 + atanh=MSVCR120_atanh @2105 + atanhf=MSVCR120_atanhf @2106 + atanhl=MSVCR120_atanhl @2107 + atof=MSVCRT_atof @2108 + atoi=MSVCRT_atoi @2109 + atol=MSVCRT_atol @2110 + atoll=MSVCRT_atoll @2111 + bsearch=MSVCRT_bsearch @2112 + bsearch_s=MSVCRT_bsearch_s @2113 + btowc=MSVCRT_btowc @2114 + c16rtomb @2115 PRIVATE + c32rtomb @2116 PRIVATE + cabs @2117 PRIVATE + cabsf @2118 PRIVATE + cabsl @2119 PRIVATE + cacos @2120 PRIVATE + cacosf @2121 PRIVATE + cacosh @2122 PRIVATE + cacoshf @2123 PRIVATE + cacoshl @2124 PRIVATE + cacosl @2125 PRIVATE + calloc=MSVCRT_calloc @2126 + carg @2127 PRIVATE + cargf @2128 PRIVATE + cargl @2129 PRIVATE + casin @2130 PRIVATE + casinf @2131 PRIVATE + casinh @2132 PRIVATE + casinhf @2133 PRIVATE + casinhl @2134 PRIVATE + casinl @2135 PRIVATE + catan @2136 PRIVATE + catanf @2137 PRIVATE + catanh @2138 PRIVATE + catanhf @2139 PRIVATE + catanhl @2140 PRIVATE + catanl @2141 PRIVATE + cbrt=MSVCR120_cbrt @2142 + cbrtf=MSVCR120_cbrtf @2143 + cbrtl=MSVCR120_cbrtl @2144 + ccos @2145 PRIVATE + ccosf @2146 PRIVATE + ccosh @2147 PRIVATE + ccoshf @2148 PRIVATE + ccoshl @2149 PRIVATE + ccosl @2150 PRIVATE + ceil=MSVCRT_ceil @2151 + ceilf=MSVCRT_ceilf @2152 + cexp @2153 PRIVATE + cexpf @2154 PRIVATE + cexpl @2155 PRIVATE + cimag @2156 PRIVATE + cimagf @2157 PRIVATE + cimagl @2158 PRIVATE + clearerr=MSVCRT_clearerr @2159 + clearerr_s=MSVCRT_clearerr_s @2160 + clock=MSVCRT_clock @2161 + clog @2162 PRIVATE + clog10 @2163 PRIVATE + clog10f @2164 PRIVATE + clog10l @2165 PRIVATE + clogf @2166 PRIVATE + clogl @2167 PRIVATE + conj @2168 PRIVATE + conjf @2169 PRIVATE + conjl @2170 PRIVATE + copysign=MSVCRT__copysign @2171 + copysignf=MSVCRT__copysignf @2172 + copysignl=MSVCRT__copysign @2173 + cos=MSVCRT_cos @2174 + cosf=MSVCRT_cosf @2175 + cosh=MSVCRT_cosh @2176 + coshf=MSVCRT_coshf @2177 + cpow @2178 PRIVATE + cpowf @2179 PRIVATE + cpowl @2180 PRIVATE + cproj @2181 PRIVATE + cprojf @2182 PRIVATE + cprojl @2183 PRIVATE + creal=MSVCR120_creal @2184 + crealf @2185 PRIVATE + creall @2186 PRIVATE + csin @2187 PRIVATE + csinf @2188 PRIVATE + csinh @2189 PRIVATE + csinhf @2190 PRIVATE + csinhl @2191 PRIVATE + csinl @2192 PRIVATE + csqrt @2193 PRIVATE + csqrtf @2194 PRIVATE + csqrtl @2195 PRIVATE + ctan @2196 PRIVATE + ctanf @2197 PRIVATE + ctanh @2198 PRIVATE + ctanhf @2199 PRIVATE + ctanhl @2200 PRIVATE + ctanl @2201 PRIVATE + div=MSVCRT_div @2202 + erf=MSVCR120_erf @2203 + erfc=MSVCR120_erfc @2204 + erfcf=MSVCR120_erfcf @2205 + erfcl=MSVCR120_erfcl @2206 + erff=MSVCR120_erff @2207 + erfl=MSVCR120_erfl @2208 + exit=MSVCRT_exit @2209 + exp=MSVCRT_exp @2210 + exp2=MSVCR120_exp2 @2211 + exp2f=MSVCR120_exp2f @2212 + exp2l=MSVCR120_exp2l @2213 + expf=MSVCRT_expf @2214 + expm1=MSVCR120_expm1 @2215 + expm1f=MSVCR120_expm1f @2216 + expm1l=MSVCR120_expm1l @2217 + fabs=MSVCRT_fabs @2218 + fclose=MSVCRT_fclose @2219 + fdim @2220 PRIVATE + fdimf @2221 PRIVATE + fdiml @2222 PRIVATE + feclearexcept @2223 PRIVATE + fegetenv=MSVCRT_fegetenv @2224 + fegetexceptflag @2225 PRIVATE + fegetround=MSVCRT_fegetround @2226 + feholdexcept @2227 PRIVATE + feof=MSVCRT_feof @2228 + ferror=MSVCRT_ferror @2229 + fesetenv=MSVCRT_fesetenv @2230 + fesetexceptflag @2231 PRIVATE + fesetround=MSVCRT_fesetround @2232 + fetestexcept @2233 PRIVATE + fflush=MSVCRT_fflush @2234 + fgetc=MSVCRT_fgetc @2235 + fgetpos=MSVCRT_fgetpos @2236 + fgets=MSVCRT_fgets @2237 + fgetwc=MSVCRT_fgetwc @2238 + fgetws=MSVCRT_fgetws @2239 + floor=MSVCRT_floor @2240 + floorf=MSVCRT_floorf @2241 + fma @2242 PRIVATE + fmaf @2243 PRIVATE + fmal @2244 PRIVATE + fmax=MSVCR120_fmax @2245 + fmaxf=MSVCR120_fmaxf @2246 + fmaxl=MSVCR120_fmax @2247 + fmin=MSVCR120_fmin @2248 + fminf=MSVCR120_fminf @2249 + fminl=MSVCR120_fmin @2250 + fmod=MSVCRT_fmod @2251 + fmodf=MSVCRT_fmodf @2252 + fopen=MSVCRT_fopen @2253 + fopen_s=MSVCRT_fopen_s @2254 + fputc=MSVCRT_fputc @2255 + fputs=MSVCRT_fputs @2256 + fputwc=MSVCRT_fputwc @2257 + fputws=MSVCRT_fputws @2258 + fread=MSVCRT_fread @2259 + fread_s=MSVCRT_fread_s @2260 + free=MSVCRT_free @2261 + freopen=MSVCRT_freopen @2262 + freopen_s=MSVCRT_freopen_s @2263 + frexp=MSVCRT_frexp @2264 + fseek=MSVCRT_fseek @2265 + fsetpos=MSVCRT_fsetpos @2266 + ftell=MSVCRT_ftell @2267 + fwrite=MSVCRT_fwrite @2268 + getc=MSVCRT_getc @2269 + getchar=MSVCRT_getchar @2270 + getenv=MSVCRT_getenv @2271 + getenv_s @2272 + gets=MSVCRT_gets @2273 + gets_s=MSVCRT_gets_s @2274 + getwc=MSVCRT_getwc @2275 + getwchar=MSVCRT_getwchar @2276 + hypot=_hypot @2277 + ilogb=MSVCR120_ilogb @2278 + ilogbf=MSVCR120_ilogbf @2279 + ilogbl=MSVCR120_ilogbl @2280 + imaxabs @2281 PRIVATE + imaxdiv @2282 PRIVATE + is_wctype=ntdll.iswctype @2283 + isalnum=MSVCRT_isalnum @2284 + isalpha=MSVCRT_isalpha @2285 + isblank=MSVCRT_isblank @2286 + iscntrl=MSVCRT_iscntrl @2287 + isdigit=MSVCRT_isdigit @2288 + isgraph=MSVCRT_isgraph @2289 + isleadbyte=MSVCRT_isleadbyte @2290 + islower=MSVCRT_islower @2291 + isprint=MSVCRT_isprint @2292 + ispunct=MSVCRT_ispunct @2293 + isspace=MSVCRT_isspace @2294 + isupper=MSVCRT_isupper @2295 + iswalnum=MSVCRT_iswalnum @2296 + iswalpha=ntdll.iswalpha @2297 + iswascii=MSVCRT_iswascii @2298 + iswblank=MSVCRT_iswblank @2299 + iswcntrl=MSVCRT_iswcntrl @2300 + iswctype=ntdll.iswctype @2301 + iswdigit=MSVCRT_iswdigit @2302 + iswgraph=MSVCRT_iswgraph @2303 + iswlower=MSVCRT_iswlower @2304 + iswprint=MSVCRT_iswprint @2305 + iswpunct=MSVCRT_iswpunct @2306 + iswspace=MSVCRT_iswspace @2307 + iswupper=MSVCRT_iswupper @2308 + iswxdigit=MSVCRT_iswxdigit @2309 + isxdigit=MSVCRT_isxdigit @2310 + labs=MSVCRT_labs @2311 + ldexp=MSVCRT_ldexp @2312 + ldiv=MSVCRT_ldiv @2313 + lgamma=MSVCR120_lgamma @2314 + lgammaf=MSVCR120_lgammaf @2315 + lgammal=MSVCR120_lgammal @2316 + llabs=MSVCRT_llabs @2317 + lldiv=MSVCRT_lldiv @2318 + llrint=MSVCR120_llrint @2319 + llrintf=MSVCR120_llrintf @2320 + llrintl=MSVCR120_llrintl @2321 + llround=MSVCR120_llround @2322 + llroundf=MSVCR120_llroundf @2323 + llroundl=MSVCR120_llroundl @2324 + localeconv=MSVCRT_localeconv @2325 + log=MSVCRT_log @2326 + log10=MSVCRT_log10 @2327 + log10f=MSVCRT_log10f @2328 + log1p=MSVCR120_log1p @2329 + log1pf=MSVCR120_log1pf @2330 + log1pl=MSVCR120_log1pl @2331 + log2=MSVCR120_log2 @2332 + log2f=MSVCR120_log2f @2333 + log2l=MSVCR120_log2l @2334 + logb @2335 PRIVATE + logbf @2336 PRIVATE + logbl @2337 PRIVATE + logf=MSVCRT_logf @2338 + longjmp=MSVCRT_longjmp @2339 + lrint=MSVCR120_lrint @2340 + lrintf=MSVCR120_lrintf @2341 + lrintl=MSVCR120_lrintl @2342 + lround=MSVCR120_lround @2343 + lroundf=MSVCR120_lroundf @2344 + lroundl=MSVCR120_lroundl @2345 + malloc=MSVCRT_malloc @2346 + mblen=MSVCRT_mblen @2347 + mbrlen=MSVCRT_mbrlen @2348 + mbrtoc16 @2349 PRIVATE + mbrtoc32 @2350 PRIVATE + mbrtowc=MSVCRT_mbrtowc @2351 + mbsrtowcs=MSVCRT_mbsrtowcs @2352 + mbsrtowcs_s=MSVCRT_mbsrtowcs_s @2353 + mbstowcs=MSVCRT_mbstowcs @2354 + mbstowcs_s=MSVCRT__mbstowcs_s @2355 + mbtowc=MSVCRT_mbtowc @2356 + memchr=MSVCRT_memchr @2357 + memcmp=MSVCRT_memcmp @2358 + memcpy=MSVCRT_memcpy @2359 + memcpy_s=MSVCRT_memcpy_s @2360 + memmove=MSVCRT_memmove @2361 + memmove_s=MSVCRT_memmove_s @2362 + memset=MSVCRT_memset @2363 + modf=MSVCRT_modf @2364 + modff=MSVCRT_modff @2365 + nan=MSVCR120_nan @2366 + nanf=MSVCR120_nanf @2367 + nanl=MSVCR120_nan @2368 + nearbyint=MSVCRT_nearbyint @2369 + nearbyintf=MSVCRT_nearbyintf @2370 + nearbyintl=MSVCRT_nearbyint @2371 + nextafter=MSVCRT__nextafter @2372 + nextafterf=MSVCRT__nextafterf @2373 + nextafterl=MSVCRT__nextafter @2374 + nexttoward=MSVCRT_nexttoward @2375 + nexttowardf=MSVCRT_nexttowardf @2376 + nexttowardl=MSVCRT_nexttoward @2377 + norm @2378 PRIVATE + normf @2379 PRIVATE + norml @2380 PRIVATE + perror=MSVCRT_perror @2381 + pow=MSVCRT_pow @2382 + powf=MSVCRT_powf @2383 + putc=MSVCRT_putc @2384 + putchar=MSVCRT_putchar @2385 + puts=MSVCRT_puts @2386 + putwc=MSVCRT_fputwc @2387 + putwchar=MSVCRT__fputwchar @2388 + qsort=MSVCRT_qsort @2389 + qsort_s=MSVCRT_qsort_s @2390 + quick_exit=MSVCRT_quick_exit @2391 + raise=MSVCRT_raise @2392 + rand=MSVCRT_rand @2393 + rand_s=MSVCRT_rand_s @2394 + realloc=MSVCRT_realloc @2395 + remainder=MSVCR120_remainder @2396 + remainderf=MSVCR120_remainderf @2397 + remainderl=MSVCR120_remainderl @2398 + remove=MSVCRT_remove @2399 + remquo=MSVCR120_remquo @2400 + remquof=MSVCR120_remquof @2401 + remquol=MSVCR120_remquol @2402 + rename=MSVCRT_rename @2403 + rewind=MSVCRT_rewind @2404 + rint=MSVCR120_rint @2405 + rintf=MSVCR120_rintf @2406 + rintl=MSVCR120_rintl @2407 + round=MSVCR120_round @2408 + roundf=MSVCR120_roundf @2409 + roundl=MSVCR120_roundl @2410 + scalbln=MSVCRT__scalb @2411 + scalblnf=MSVCRT__scalbf @2412 + scalblnl=MSVCR120_scalbnl @2413 + scalbn=MSVCRT__scalb @2414 + scalbnf=MSVCRT__scalbf @2415 + scalbnl=MSVCR120_scalbnl @2416 + set_terminate=MSVCRT_set_terminate @2417 + set_unexpected=MSVCRT_set_unexpected @2418 + setbuf=MSVCRT_setbuf @2419 + setjmp=MSVCRT__setjmp @2420 PRIVATE + setlocale=MSVCRT_setlocale @2421 + setvbuf=MSVCRT_setvbuf @2422 + signal=MSVCRT_signal @2423 + sin=MSVCRT_sin @2424 + sinf=MSVCRT_sinf @2425 + sinh=MSVCRT_sinh @2426 + sinhf=MSVCRT_sinhf @2427 + sqrt=MSVCRT_sqrt @2428 + sqrtf=MSVCRT_sqrtf @2429 + srand=MSVCRT_srand @2430 + strcat=ntdll.strcat @2431 + strcat_s=MSVCRT_strcat_s @2432 + strchr=MSVCRT_strchr @2433 + strcmp=MSVCRT_strcmp @2434 + strcoll=MSVCRT_strcoll @2435 + strcpy=MSVCRT_strcpy @2436 + strcpy_s=MSVCRT_strcpy_s @2437 + strcspn=MSVCRT_strcspn @2438 + strerror=MSVCRT_strerror @2439 + strerror_s=MSVCRT_strerror_s @2440 + strftime=MSVCRT_strftime @2441 + strlen=MSVCRT_strlen @2442 + strncat=MSVCRT_strncat @2443 + strncat_s=MSVCRT_strncat_s @2444 + strncmp=MSVCRT_strncmp @2445 + strncpy=MSVCRT_strncpy @2446 + strncpy_s=MSVCRT_strncpy_s @2447 + strnlen=MSVCRT_strnlen @2448 + strpbrk=MSVCRT_strpbrk @2449 + strrchr=MSVCRT_strrchr @2450 + strspn=ntdll.strspn @2451 + strstr=MSVCRT_strstr @2452 + strtod=MSVCRT_strtod @2453 + strtof=MSVCRT_strtof @2454 + strtoimax @2455 PRIVATE + strtok=MSVCRT_strtok @2456 + strtok_s=MSVCRT_strtok_s @2457 + strtol=MSVCRT_strtol @2458 + strtold @2459 PRIVATE + strtoll=MSVCRT_strtoi64 @2460 + strtoul=MSVCRT_strtoul @2461 + strtoull=MSVCRT_strtoui64 @2462 + strtoumax @2463 PRIVATE + strxfrm=MSVCRT_strxfrm @2464 + system=MSVCRT_system @2465 + tan=MSVCRT_tan @2466 + tanf=MSVCRT_tanf @2467 + tanh=MSVCRT_tanh @2468 + tanhf=MSVCRT_tanhf @2469 + terminate=MSVCRT_terminate @2470 + tgamma @2471 PRIVATE + tgammaf @2472 PRIVATE + tgammal @2473 PRIVATE + tmpfile=MSVCRT_tmpfile @2474 + tmpfile_s=MSVCRT_tmpfile_s @2475 + tmpnam=MSVCRT_tmpnam @2476 + tmpnam_s=MSVCRT_tmpnam_s @2477 + tolower=MSVCRT_tolower @2478 + toupper=MSVCRT_toupper @2479 + towctrans=MSVCR120_towctrans @2480 + towlower=MSVCRT_towlower @2481 + towupper=MSVCRT_towupper @2482 + trunc=MSVCR120_trunc @2483 + truncf=MSVCR120_truncf @2484 + truncl=MSVCR120_truncl @2485 + unexpected @2486 PRIVATE + ungetc=MSVCRT_ungetc @2487 + ungetwc=MSVCRT_ungetwc @2488 + wcrtomb=MSVCRT_wcrtomb @2489 + wcrtomb_s @2490 PRIVATE + wcscat=ntdll.wcscat @2491 + wcscat_s=MSVCRT_wcscat_s @2492 + wcschr=MSVCRT_wcschr @2493 + wcscmp=MSVCRT_wcscmp @2494 + wcscoll=MSVCRT_wcscoll @2495 + wcscpy=ntdll.wcscpy @2496 + wcscpy_s=MSVCRT_wcscpy_s @2497 + wcscspn=ntdll.wcscspn @2498 + wcsftime=MSVCRT_wcsftime @2499 + wcslen=MSVCRT_wcslen @2500 + wcsncat=ntdll.wcsncat @2501 + wcsncat_s=MSVCRT_wcsncat_s @2502 + wcsncmp=MSVCRT_wcsncmp @2503 + wcsncpy=MSVCRT_wcsncpy @2504 + wcsncpy_s=MSVCRT_wcsncpy_s @2505 + wcsnlen=MSVCRT_wcsnlen @2506 + wcspbrk=MSVCRT_wcspbrk @2507 + wcsrchr=MSVCRT_wcsrchr @2508 + wcsrtombs=MSVCRT_wcsrtombs @2509 + wcsrtombs_s=MSVCRT_wcsrtombs_s @2510 + wcsspn=ntdll.wcsspn @2511 + wcsstr=MSVCRT_wcsstr @2512 + wcstod=MSVCRT_wcstod @2513 + wcstof=MSVCRT_wcstof @2514 + wcstoimax @2515 PRIVATE + wcstok=MSVCRT_wcstok @2516 + wcstok_s=MSVCRT_wcstok_s @2517 + wcstol=MSVCRT_wcstol @2518 + wcstold @2519 PRIVATE + wcstoll=MSVCRT__wcstoi64 @2520 + wcstombs=MSVCRT_wcstombs @2521 + wcstombs_s=MSVCRT_wcstombs_s @2522 + wcstoul=MSVCRT_wcstoul @2523 + wcstoull=MSVCRT__wcstoui64 @2524 + wcstoumax @2525 PRIVATE + wcsxfrm=MSVCRT_wcsxfrm @2526 + wctob=MSVCRT_wctob @2527 + wctomb=MSVCRT_wctomb @2528 + wctomb_s=MSVCRT_wctomb_s @2529 + wctrans=MSVCR120_wctrans @2530 + wctype @2531 + wmemcpy_s @2532 + wmemmove_s @2533 diff --git a/lib64/wine/libuiautomationcore.def b/lib64/wine/libuiautomationcore.def new file mode 100644 index 0000000..749d5c8 --- /dev/null +++ b/lib64/wine/libuiautomationcore.def @@ -0,0 +1,98 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/uiautomationcore/uiautomationcore.spec; do not edit! + +LIBRARY uiautomationcore.dll + +EXPORTS + DllCanUnloadNow @1 PRIVATE + DllGetClassObject @2 PRIVATE + DllRegisterServer @3 PRIVATE + DllUnregisterServer @4 PRIVATE + DockPattern_SetDockPosition @5 PRIVATE + ExpandCollapsePattern_Collapse @6 PRIVATE + ExpandCollapsePattern_Expand @7 PRIVATE + GridPattern_GetItem @8 PRIVATE + InvokePattern_Invoke @9 PRIVATE + ItemContainerPattern_FindItemByProperty @10 PRIVATE + LegacyIAccessiblePattern_DoDefaultAction @11 PRIVATE + LegacyIAccessiblePattern_GetIAccessible @12 PRIVATE + LegacyIAccessiblePattern_Select @13 PRIVATE + LegacyIAccessiblePattern_SetValue @14 PRIVATE + MultipleViewPattern_GetViewName @15 PRIVATE + MultipleViewPattern_SetCurrentView @16 PRIVATE + RangeValuePattern_SetValue @17 PRIVATE + ScrollItemPattern_ScrollIntoView @18 PRIVATE + ScrollPattern_Scroll @19 PRIVATE + ScrollPattern_SetScrollPercent @20 PRIVATE + SelectionItemPattern_AddToSelection @21 PRIVATE + SelectionItemPattern_RemoveFromSelection @22 PRIVATE + SelectionItemPattern_Select @23 PRIVATE + SynchronizedInputPattern_Cancel @24 PRIVATE + SynchronizedInputPattern_StartListening @25 PRIVATE + TextPattern_GetSelection @26 PRIVATE + TextPattern_GetVisibleRanges @27 PRIVATE + TextPattern_RangeFromChild @28 PRIVATE + TextPattern_RangeFromPoint @29 PRIVATE + TextPattern_get_DocumentRange @30 PRIVATE + TextPattern_get_SupportedTextSelection @31 PRIVATE + TextRange_AddToSelection @32 PRIVATE + TextRange_Clone @33 PRIVATE + TextRange_Compare @34 PRIVATE + TextRange_CompareEndpoints @35 PRIVATE + TextRange_ExpandToEnclosingUnit @36 PRIVATE + TextRange_FindAttribute @37 PRIVATE + TextRange_FindText @38 PRIVATE + TextRange_GetAttributeValue @39 PRIVATE + TextRange_GetBoundingRectangles @40 PRIVATE + TextRange_GetChildren @41 PRIVATE + TextRange_GetEnclosingElement @42 PRIVATE + TextRange_GetText @43 PRIVATE + TextRange_Move @44 PRIVATE + TextRange_MoveEndpointByRange @45 PRIVATE + TextRange_MoveEndpointByUnit @46 PRIVATE + TextRange_RemoveFromSelection @47 PRIVATE + TextRange_ScrollIntoView @48 PRIVATE + TextRange_Select @49 PRIVATE + TogglePattern_Toggle @50 PRIVATE + TransformPattern_Move @51 PRIVATE + TransformPattern_Resize @52 PRIVATE + TransformPattern_Rotate @53 PRIVATE + UiaAddEvent @54 PRIVATE + UiaClientsAreListening @55 + UiaEventAddWindow @56 PRIVATE + UiaEventRemoveWindow @57 PRIVATE + UiaFind @58 PRIVATE + UiaGetErrorDescription @59 PRIVATE + UiaGetPatternProvider @60 PRIVATE + UiaGetPropertyValue @61 PRIVATE + UiaGetReservedMixedAttributeValue @62 + UiaGetReservedNotSupportedValue @63 + UiaGetRootNode @64 PRIVATE + UiaGetRuntimeId @65 PRIVATE + UiaGetUpdatedCache @66 PRIVATE + UiaHPatternObjectFromVariant @67 PRIVATE + UiaHTextRangeFromVariant @68 PRIVATE + UiaHUiaNodeFromVariant @69 PRIVATE + UiaHasServerSideProvider @70 PRIVATE + UiaHostProviderFromHwnd @71 + UiaLookupId @72 + UiaNavigate @73 PRIVATE + UiaNodeFromFocus @74 PRIVATE + UiaNodeFromHandle @75 PRIVATE + UiaNodeFromPoint @76 PRIVATE + UiaNodeFromProvider @77 PRIVATE + UiaNodeRelease @78 PRIVATE + UiaPatternRelease @79 PRIVATE + UiaRaiseAsyncContentLoadedEvent @80 PRIVATE + UiaRaiseAutomationEvent @81 + UiaRaiseAutomationPropertyChangedEvent @82 PRIVATE + UiaRaiseStructureChangedEvent @83 PRIVATE + UiaRegisterProviderCallback @84 PRIVATE + UiaRemoveEvent @85 PRIVATE + UiaReturnRawElementProvider @86 + UiaSetFocus @87 PRIVATE + UiaTextRangeRelease @88 PRIVATE + ValuePattern_SetValue @89 PRIVATE + VirtualizedItemPattern_Realize @90 PRIVATE + WindowPattern_Close @91 PRIVATE + WindowPattern_SetWindowVisualState @92 PRIVATE + WindowPattern_WaitForInputIdle @93 PRIVATE diff --git a/lib64/wine/libunicows.def b/lib64/wine/libunicows.def new file mode 100644 index 0000000..b96cf37 --- /dev/null +++ b/lib64/wine/libunicows.def @@ -0,0 +1,512 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/unicows/unicows.spec; do not edit! + +LIBRARY unicows.dll + +EXPORTS + AcquireCredentialsHandleW @1 + AddAtomW @2 + AddFontResourceW @3 + AddJobW @4 + AddMonitorW @5 + AddPortW @6 + AddPrintProcessorW @7 + AddPrintProvidorW @8 + AddPrinterDriverW @9 + AddPrinterW @10 + AdvancedDocumentPropertiesW @11 + AppendMenuW @12 + BeginUpdateResourceA @13 + BeginUpdateResourceW @14 + BroadcastSystemMessageW @15 + BuildCommDCBAndTimeoutsW @16 + BuildCommDCBW @17 + CallMsgFilterW @18 + CallNamedPipeW @19 + CallWindowProcA @20 + CallWindowProcW @21 + ChangeDisplaySettingsExW @22 + ChangeDisplaySettingsW @23 + ChangeMenuW @24 + CharLowerBuffW @25 + CharLowerW @26 + CharNextW @27 + CharPrevW @28 + CharToOemBuffW @29 + CharToOemW @30 + CharUpperBuffW @31 + CharUpperW @32 + ChooseColorW @33 + ChooseFontW @34 + CommConfigDialogW @35 + CompareStringW @36 + ConfigurePortW @37 + CopyAcceleratorTableW @38 + CopyEnhMetaFileW @39 + CopyFileExW @40 + CopyFileW @41 + CopyMetaFileW @42 + CreateAcceleratorTableW @43 + CreateColorSpaceW @44 + CreateDCW @45 + CreateDialogIndirectParamW @46 + CreateDialogParamW @47 + CreateDirectoryExW @48 + CreateDirectoryW @49 + CreateEnhMetaFileW @50 + CreateEventW @51 + CreateFileMappingW @52 + CreateFileW @53 + CreateFontIndirectW @54 + CreateFontW @55 + CreateICW @56 + CreateMDIWindowW @57 + CreateMailslotW @58 + CreateMetaFileW @59 + CreateMutexW @60 + CreateNamedPipeW @61 + CreateProcessW @62 + CreateScalableFontResourceW @63 + CreateSemaphoreW @64 + CreateStdAccessibleProxyW @65 PRIVATE + CreateWaitableTimerW @66 + CreateWindowExW @67 + CryptAcquireContextW @68 + CryptEnumProviderTypesW @69 + CryptEnumProvidersW @70 + CryptGetDefaultProviderW @71 + CryptSetProviderExW @72 + CryptSetProviderW @73 + CryptSignHashW @74 + CryptVerifySignatureW @75 + DdeConnect @76 + DdeConnectList @77 + DdeCreateStringHandleW @78 + DdeInitializeW @79 + DdeQueryConvInfo @80 + DdeQueryStringW @81 + DefDlgProcW @82 + DefFrameProcW @83 + DefMDIChildProcW @84 + DefWindowProcW @85 + DeleteFileW @86 + DeleteMonitorW @87 + DeletePortW @88 + DeletePrintProcessorW @89 + DeletePrintProvidorW @90 + DeletePrinterDriverW @91 + DeviceCapabilitiesW @92 + DialogBoxIndirectParamW @93 + DialogBoxParamW @94 + DispatchMessageW @95 + DlgDirListComboBoxW @96 + DlgDirListW @97 + DlgDirSelectComboBoxExW @98 + DlgDirSelectExW @99 + DocumentPropertiesW @100 + DragQueryFileW @101 + DrawStateW @102 + DrawTextExW @103 + DrawTextW @104 + EnableWindow @105 + EndUpdateResourceA @106 + EndUpdateResourceW @107 + EnumCalendarInfoExW @108 + EnumCalendarInfoW @109 + EnumClipboardFormats @110 + EnumDateFormatsExW @111 + EnumDateFormatsW @112 + EnumDisplayDevicesW @113 + EnumDisplaySettingsExW @114 + EnumDisplaySettingsW @115 + EnumFontFamiliesExW @116 + EnumFontFamiliesW @117 + EnumFontsW @118 + EnumICMProfilesW @119 + EnumMonitorsW @120 + EnumPortsW @121 + EnumPrintProcessorDatatypesW @122 + EnumPrintProcessorsW @123 + EnumPrinterDriversW @124 + EnumPrintersW @125 + EnumPropsA @126 + EnumPropsExA @127 + EnumPropsExW @128 + EnumPropsW @129 + EnumSystemCodePagesW @130 + EnumSystemLocalesW @131 + EnumTimeFormatsW @132 + EnumerateSecurityPackagesW @133 + ExpandEnvironmentStringsW @134 + ExtTextOutW @135 + ExtractIconExW @136 + ExtractIconW @137 + FatalAppExitW @138 + FillConsoleOutputCharacterW @139 + FindAtomW @140 + FindExecutableW @141 + FindFirstChangeNotificationW @142 + FindFirstFileW @143 + FindNextFileW @144 + FindResourceExW @145 + FindResourceW @146 + FindTextW @147 + FindWindowExW @148 + FindWindowW @149 + FormatMessageW @150 + FreeContextBuffer @151 + FreeEnvironmentStringsW @152 + GetAltTabInfoW @153 + GetAtomNameW @154 + GetCPInfo @155 + GetCPInfoExW @156 + GetCalendarInfoW @157 + GetCharABCWidthsFloatW @158 + GetCharABCWidthsW @159 + GetCharWidth32W @160 + GetCharWidthFloatW @161 + GetCharWidthW @162 + GetCharacterPlacementW @163 + GetClassInfoExW @164 + GetClassInfoW @165 + GetClassLongW @166 + GetClassNameW @167 + GetClipboardData @168 + GetClipboardFormatNameW @169 + GetComputerNameW @170 + GetConsoleTitleW @171 + GetCurrencyFormatW @172 + GetCurrentDirectoryW @173 + GetCurrentHwProfileW @174 + GetDateFormatW @175 + GetDefaultCommConfigW @176 + GetDiskFreeSpaceExW @177 + GetDiskFreeSpaceW @178 + GetDlgItemTextW @179 + GetDriveTypeW @180 + GetEnhMetaFileDescriptionW @181 + GetEnhMetaFileW @182 + GetEnvironmentStringsW @183 + GetEnvironmentVariableW @184 + GetFileAttributesExW @185 + GetFileAttributesW @186 + GetFileTitleW @187 + GetFileVersionInfoSizeW @188 + GetFileVersionInfoW @189 + GetFullPathNameW @190 + GetGlyphOutlineW @191 + GetICMProfileW @192 + GetJobW @193 + GetKerningPairsW @194 + GetKeyNameTextW @195 + GetKeyboardLayoutNameW @196 + GetLocaleInfoW @197 + GetLogColorSpaceW @198 + GetLogicalDriveStringsW @199 + GetLongPathNameW @200 + GetMenuItemInfoW @201 + GetMenuStringW @202 + GetMessageW @203 + GetMetaFileW @204 + GetModuleFileNameW @205 + GetModuleHandleW @206 + GetMonitorInfoW @207 + GetNamedPipeHandleStateW @208 + GetNumberFormatW @209 + GetObjectW @210 + GetOpenFileNamePreviewW @211 + GetOpenFileNameW @212 + GetOutlineTextMetricsW @213 + GetPrintProcessorDirectoryW @214 + GetPrinterDataW @215 + GetPrinterDriverDirectoryW @216 + GetPrinterDriverW @217 + GetPrinterW @218 + GetPrivateProfileIntW @219 + GetPrivateProfileSectionNamesW @220 + GetPrivateProfileSectionW @221 + GetPrivateProfileStringW @222 + GetPrivateProfileStructW @223 + GetProcAddress @224 + GetProfileIntW @225 + GetProfileSectionW @226 + GetProfileStringW @227 + GetPropA @228 + GetPropW @229 + GetRoleTextW @230 + GetSaveFileNamePreviewW @231 + GetSaveFileNameW @232 + GetShortPathNameW @233 + GetStartupInfoW @234 + GetStateTextW @235 PRIVATE + GetStringTypeExW @236 + GetStringTypeW @237 + GetSystemDirectoryW @238 + GetSystemWindowsDirectoryW @239 + GetTabbedTextExtentW @240 + GetTempFileNameW @241 + GetTempPathW @242 + GetTextExtentExPointW @243 + GetTextExtentPoint32W @244 + GetTextExtentPointW @245 + GetTextFaceW @246 + GetTextMetricsW @247 + GetTimeFormatW @248 + GetUserNameW @249 + GetVersionExW @250 + GetVolumeInformationW @251 + GetWindowLongA @252 + GetWindowLongW @253 + GetWindowModuleFileNameW @254 + GetWindowTextLengthW @255 + GetWindowTextW @256 + GetWindowsDirectoryW @257 + GlobalAddAtomW @258 + GlobalFindAtomW @259 + GlobalGetAtomNameW @260 + GrayStringW @261 + InitSecurityInterfaceW @262 + InitializeSecurityContextW @263 + InsertMenuItemW @264 + InsertMenuW @265 + IsBadStringPtrW @266 + IsCharAlphaNumericW @267 + IsCharAlphaW @268 + IsCharLowerW @269 + IsCharUpperW @270 + IsClipboardFormatAvailable @271 + IsDestinationReachableW @272 + IsDialogMessageW @273 + IsTextUnicode @274 + IsValidCodePage @275 + IsWindowUnicode @276 + LCMapStringW @277 + LoadAcceleratorsW @278 + LoadBitmapW @279 + LoadCursorFromFileW @280 + LoadCursorW @281 + LoadIconW @282 + LoadImageW @283 + LoadKeyboardLayoutW @284 + LoadLibraryExW @285 + LoadLibraryW @286 + LoadMenuIndirectW @287 + LoadMenuW @288 + LoadStringW @289 + MCIWndCreateW @290 + MapVirtualKeyExW @291 + MapVirtualKeyW @292 + MessageBoxExW @293 + MessageBoxIndirectW @294 + MessageBoxW @295 + ModifyMenuW @296 + MoveFileW @297 + MultiByteToWideChar @298 + MultinetGetConnectionPerformanceW @299 + OemToCharBuffW @300 + OemToCharW @301 + OleUIAddVerbMenuW @302 + OleUIBusyW @303 + OleUIChangeIconW @304 + OleUIChangeSourceW @305 + OleUIConvertW @306 + OleUIEditLinksW @307 + OleUIInsertObjectW @308 + OleUIObjectPropertiesW @309 + OleUIPasteSpecialW @310 + OleUIPromptUserW @311 + OleUIUpdateLinksW @312 + OpenEventW @313 + OpenFileMappingW @314 + OpenMutexW @315 + OpenPrinterW @316 + OpenSemaphoreW @317 + OpenWaitableTimerW @318 + OutputDebugStringW @319 + PageSetupDlgW @320 + PeekConsoleInputW @321 + PeekMessageW @322 + PlaySoundW @323 + PolyTextOutW @324 + PostMessageW @325 + PostThreadMessageW @326 + PrintDlgW @327 + QueryContextAttributesW @328 + QueryCredentialsAttributesW @329 + QueryDosDeviceW @330 + QuerySecurityPackageInfoW @331 + RasConnectionNotificationW @332 + RasCreatePhonebookEntryW @333 + RasDeleteEntryW @334 + RasDeleteSubEntryW @335 + RasDialW @336 + RasEditPhonebookEntryW @337 + RasEnumConnectionsW @338 + RasEnumDevicesW @339 + RasEnumEntriesW @340 + RasGetConnectStatusW @341 + RasGetEntryDialParamsW @342 + RasGetEntryPropertiesW @343 + RasGetErrorStringW @344 + RasGetProjectionInfoW @345 + RasHangUpW @346 + RasRenameEntryW @347 + RasSetEntryDialParamsW @348 + RasSetEntryPropertiesW @349 + RasSetSubEntryPropertiesW @350 + RasValidateEntryNameW @351 + ReadConsoleInputW @352 + ReadConsoleOutputCharacterW @353 + ReadConsoleOutputW @354 + ReadConsoleW @355 + RegConnectRegistryW @356 + RegCreateKeyExW @357 + RegCreateKeyW @358 + RegDeleteKeyW @359 + RegDeleteValueW @360 + RegEnumKeyExW @361 + RegEnumKeyW @362 + RegEnumValueW @363 + RegLoadKeyW @364 + RegOpenKeyExW @365 + RegOpenKeyW @366 + RegQueryInfoKeyW @367 + RegQueryMultipleValuesW @368 + RegQueryValueExW @369 + RegQueryValueW @370 + RegReplaceKeyW @371 + RegSaveKeyW @372 + RegSetValueExW @373 + RegSetValueW @374 + RegUnLoadKeyW @375 + RegisterClassExW @376 + RegisterClassW @377 + RegisterClipboardFormatW @378 + RegisterDeviceNotificationW @379 + RegisterWindowMessageW @380 + RemoveDirectoryW @381 + RemoveFontResourceW @382 + RemovePropA @383 + RemovePropW @384 + ReplaceTextW @385 + ResetDCW @386 + ResetPrinterW @387 + SHBrowseForFolderW @388 + SHChangeNotify @389 + SHFileOperationW @390 + SHGetFileInfoW @391 + SHGetNewLinkInfoW @392 + SHGetPathFromIDListW @393 + ScrollConsoleScreenBufferW @394 + SearchPathW @395 + SendDlgItemMessageW @396 + SendMessageCallbackW @397 + SendMessageTimeoutW @398 + SendMessageW @399 + SendNotifyMessageW @400 + SetCalendarInfoW @401 + SetClassLongW @402 + SetComputerNameW @403 + SetConsoleTitleW @404 + SetCurrentDirectoryW @405 + SetDefaultCommConfigW @406 + SetDlgItemTextW @407 + SetEnvironmentVariableW @408 + SetFileAttributesW @409 + SetICMProfileW @410 + SetJobW @411 + SetLocaleInfoW @412 + SetMenuItemInfoW @413 + SetPrinterDataW @414 + SetPrinterW @415 + SetPropA @416 + SetPropW @417 + SetVolumeLabelW @418 + SetWindowLongA @419 + SetWindowLongW @420 + SetWindowTextW @421 + SetWindowsHookExW @422 + SetWindowsHookW @423 + ShellAboutW @424 + ShellExecuteExW @425 + ShellExecuteW @426 + Shell_NotifyIconW @427 + StartDocPrinterW @428 + StartDocW @429 + SystemParametersInfoW @430 + TabbedTextOutW @431 + TextOutW @432 + TranslateAcceleratorW @433 + UnregisterClassW @434 + UpdateICMRegKeyW @435 + UpdateResourceA @436 + UpdateResourceW @437 + VerFindFileW @438 + VerInstallFileW @439 + VerLanguageNameW @440 + VerQueryValueW @441 + VkKeyScanExW @442 + VkKeyScanW @443 + WNetAddConnection2W @444 + WNetAddConnection3W @445 + WNetAddConnectionW @446 + WNetCancelConnection2W @447 + WNetCancelConnectionW @448 + WNetConnectionDialog1W @449 + WNetDisconnectDialog1W @450 + WNetEnumResourceW @451 + WNetGetConnectionW @452 + WNetGetLastErrorW @453 + WNetGetNetworkInformationW @454 + WNetGetProviderNameW @455 + WNetGetResourceInformationW @456 + WNetGetResourceParentW @457 + WNetGetUniversalNameW @458 + WNetGetUserW @459 + WNetOpenEnumW @460 + WNetUseConnectionW @461 + WaitNamedPipeW @462 + WideCharToMultiByte @463 + WinHelpW @464 + WriteConsoleInputW @465 + WriteConsoleOutputCharacterW @466 + WriteConsoleOutputW @467 + WriteConsoleW @468 + WritePrivateProfileSectionW @469 + WritePrivateProfileStringW @470 + WritePrivateProfileStructW @471 + WriteProfileSectionW @472 + WriteProfileStringW @473 + __FreeAllLibrariesInMsluDll @474 PRIVATE + auxGetDevCapsW @475 + capCreateCaptureWindowW @476 + capGetDriverDescriptionW @477 + joyGetDevCapsW @478 + lstrcatW @479 + lstrcmpW @480 + lstrcmpiW @481 + lstrcpyW @482 + lstrcpynW @483 + lstrlenW @484 + mciGetDeviceIDW @485 + mciGetErrorStringW @486 + mciSendCommandW @487 + mciSendStringW @488 + midiInGetDevCapsW @489 + midiInGetErrorTextW @490 + midiOutGetDevCapsW @491 + midiOutGetErrorTextW @492 + mixerGetControlDetailsW @493 + mixerGetDevCapsW @494 + mixerGetLineControlsW @495 + mixerGetLineInfoW @496 + mmioInstallIOProcW @497 + mmioOpenW @498 + mmioRenameW @499 + mmioStringToFOURCCW @500 + sndPlaySoundW @501 + waveInGetDevCapsW @502 + waveInGetErrorTextW @503 + waveOutGetDevCapsW @504 + waveOutGetErrorTextW @505 + wsprintfW @506 + wvsprintfW @507 diff --git a/lib64/wine/liburl.def b/lib64/wine/liburl.def new file mode 100644 index 0000000..826a129 --- /dev/null +++ b/lib64/wine/liburl.def @@ -0,0 +1,26 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/url/url.spec; do not edit! + +LIBRARY url.dll + +EXPORTS + AddMIMEFileTypesPS @1 + AutodialHookCallback @2 PRIVATE + DummyEntryPoint @3 PRIVATE + DummyEntryPointA @4 PRIVATE + FileProtocolHandler=FileProtocolHandlerA @5 + FileProtocolHandlerA @6 + InetIsOffline @7 + MIMEAssociationDialogA @8 PRIVATE + MIMEAssociationDialogW @9 PRIVATE + MailToProtocolHandler @10 PRIVATE + MailToProtocolHandlerA @11 PRIVATE + NewsProtocolHandler @12 PRIVATE + NewsProtocolHandlerA @13 PRIVATE + OpenURL=OpenURLA @14 + OpenURLA @15 + TelnetProtocolHandler=TelnetProtocolHandlerA @16 + TelnetProtocolHandlerA @17 + TranslateURLA @18 PRIVATE + TranslateURLW @19 PRIVATE + URLAssociationDialogA @20 PRIVATE + URLAssociationDialogW @21 PRIVATE diff --git a/lib64/wine/liburlmon.def b/lib64/wine/liburlmon.def new file mode 100644 index 0000000..05b04df --- /dev/null +++ b/lib64/wine/liburlmon.def @@ -0,0 +1,96 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/urlmon/urlmon.spec; do not edit! + +LIBRARY urlmon.dll + +EXPORTS + CDLGetLongPathNameA @1 PRIVATE + CDLGetLongPathNameW @2 PRIVATE + AsyncGetClassBits @3 PRIVATE + AsyncInstallDistributionUnit @4 + BindAsyncMoniker @5 + CoGetClassObjectFromURL @6 + CoInstall @7 PRIVATE + CoInternetCombineUrl @8 + CoInternetCombineUrlEx @9 + CoInternetCompareUrl @10 + CoInternetCombineIUri @11 + CoInternetCreateSecurityManager @12 + CoInternetCreateZoneManager @13 + CoInternetGetProtocolFlags @14 PRIVATE + CoInternetGetSecurityUrl @15 + CoInternetGetSecurityUrlEx @16 + CoInternetGetSession @17 + CoInternetIsFeatureEnabled @18 + CoInternetIsFeatureEnabledForUrl @19 + CoInternetIsFeatureZoneElevationEnabled @20 + CoInternetParseUrl @21 + CoInternetParseIUri @22 + CoInternetQueryInfo @23 + CoInternetSetFeatureEnabled @24 + CompareSecurityIds @25 + CopyBindInfo @26 + CopyStgMedium @27 + CreateAsyncBindCtx @28 + CreateAsyncBindCtxEx @29 + CreateFormatEnumerator @30 + CreateIUriBuilder @31 + CreateUri @32 + CreateUriWithFragment @33 + CreateURLMoniker @34 + CreateURLMonikerEx @35 + CreateURLMonikerEx2 @36 + DllCanUnloadNow @37 PRIVATE + DllGetClassObject @38 PRIVATE + DllInstall @39 PRIVATE + DllRegisterServer @40 PRIVATE + DllRegisterServerEx @41 PRIVATE + DllUnregisterServer @42 PRIVATE + Extract @43 + FaultInIEFeature @44 + FindMediaType @45 PRIVATE + FindMediaTypeClass @46 PRIVATE + FindMimeFromData @47 + GetClassFileOrMime @48 + GetClassURL @49 PRIVATE + GetComponentIDFromCLSSPEC @50 PRIVATE + GetMarkOfTheWeb @51 PRIVATE + GetSoftwareUpdateInfo @52 + HlinkGoBack @53 PRIVATE + HlinkGoForward @54 PRIVATE + HlinkNavigateMoniker @55 PRIVATE + HlinkNavigateString @56 + HlinkSimpleNavigateToMoniker @57 + HlinkSimpleNavigateToString @58 + IEInstallScope @59 PRIVATE + IsAsyncMoniker @60 + IsLoggingEnabledA @61 + IsLoggingEnabledW @62 + IsValidURL @63 + MkParseDisplayNameEx @64 + ObtainUserAgentString @65 + PrivateCoInstall @66 PRIVATE + RegisterBindStatusCallback @67 + RegisterFormatEnumerator @68 + RegisterMediaTypeClass @69 PRIVATE + RegisterMediaTypes @70 + ReleaseBindInfo @71 + RevokeBindStatusCallback @72 + RevokeFormatEnumerator @73 + SetSoftwareUpdateAdvertisementState @74 PRIVATE + URLDownloadA @75 PRIVATE + URLDownloadToCacheFileA @76 + URLDownloadToCacheFileW @77 + URLDownloadToFileA @78 + URLDownloadToFileW @79 + URLDownloadW @80 PRIVATE + URLOpenBlockingStreamA @81 + URLOpenBlockingStreamW @82 + URLOpenPullStreamA @83 PRIVATE + URLOpenPullStreamW @84 PRIVATE + URLOpenStreamA @85 + URLOpenStreamW @86 + UrlMkBuildVersion @87 PRIVATE + UrlMkGetSessionOption @88 + UrlMkSetSessionOption @89 + WriteHitLogging @90 PRIVATE + ZonesReInit @91 PRIVATE diff --git a/lib64/wine/libusbd.def b/lib64/wine/libusbd.def new file mode 100644 index 0000000..0ecf207 --- /dev/null +++ b/lib64/wine/libusbd.def @@ -0,0 +1,40 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/usbd.sys/usbd.sys.spec; do not edit! + +LIBRARY usbd.sys + +EXPORTS + USBD_CreateConfigurationRequestEx @1 + USBD_ParseConfigurationDescriptorEx @2 + USBD_ParseDescriptors @3 + USBD_AllocateDeviceName @4 PRIVATE + USBD_CalculateUsbBandwidth @5 PRIVATE + USBD_CompleteRequest @6 PRIVATE + USBD_CreateConfigurationRequest @7 + _USBD_CreateConfigurationRequestEx@8=USBD_CreateConfigurationRequestEx @8 + USBD_CreateDevice @9 PRIVATE + USBD_Debug_GetHeap @10 PRIVATE + USBD_Debug_LogEntry @11 PRIVATE + USBD_Debug_RetHeap @12 PRIVATE + USBD_Dispatch @13 PRIVATE + USBD_FreeDeviceMutex @14 PRIVATE + USBD_FreeDeviceName @15 PRIVATE + USBD_GetDeviceInformation @16 PRIVATE + USBD_GetInterfaceLength @17 + USBD_GetPdoRegistryParameter @18 PRIVATE + USBD_GetRegistryKeyValue @19 PRIVATE + USBD_GetSuspendPowerState @20 PRIVATE + USBD_GetUSBDIVersion @21 + USBD_InitializeDevice @22 PRIVATE + USBD_MakePdoName @23 PRIVATE + USBD_ParseConfigurationDescriptor @24 + _USBD_ParseConfigurationDescriptorEx@28=USBD_ParseConfigurationDescriptorEx @25 + _USBD_ParseDescriptors@16=USBD_ParseDescriptors @26 + USBD_QueryBusTime @27 PRIVATE + USBD_RegisterHcDeviceCapabilities @28 PRIVATE + USBD_RegisterHcFilter @29 PRIVATE + USBD_RegisterHostController @30 PRIVATE + USBD_RemoveDevice @31 PRIVATE + USBD_RestoreDevice @32 PRIVATE + USBD_SetSuspendPowerState @33 PRIVATE + USBD_ValidateConfigurationDescriptor @34 + USBD_WaitDeviceMutex @35 PRIVATE diff --git a/lib64/wine/libuser32.def b/lib64/wine/libuser32.def new file mode 100644 index 0000000..0ac2054 --- /dev/null +++ b/lib64/wine/libuser32.def @@ -0,0 +1,777 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/user32/user32.spec; do not edit! + +LIBRARY user32.dll + +EXPORTS + ActivateKeyboardLayout @1 + AddClipboardFormatListener @2 + AdjustWindowRect @3 + AdjustWindowRectEx @4 + AdjustWindowRectExForDpi @5 + AlignRects @6 + AllowSetForegroundWindow @7 + AnimateWindow @8 + AnyPopup @9 + AppendMenuA @10 + AppendMenuW @11 + AreDpiAwarenessContextsEqual @12 + ArrangeIconicWindows @13 + AttachThreadInput @14 + BeginDeferWindowPos @15 + BeginPaint @16 + BlockInput @17 + BringWindowToTop @18 + BroadcastSystemMessage=BroadcastSystemMessageA @19 + BroadcastSystemMessageA @20 + BroadcastSystemMessageExA @21 + BroadcastSystemMessageExW @22 + BroadcastSystemMessageW @23 + CalcChildScroll @24 + CalcMenuBar @25 + CallMsgFilter=CallMsgFilterA @26 + CallMsgFilterA @27 + CallMsgFilterW @28 + CallNextHookEx @29 + CallWindowProcA @30 + CallWindowProcW @31 + CascadeChildWindows @32 + CascadeWindows @33 + ChangeClipboardChain @34 + ChangeDisplaySettingsA @35 + ChangeDisplaySettingsExA @36 + ChangeDisplaySettingsExW @37 + ChangeDisplaySettingsW @38 + ChangeMenuA @39 + ChangeMenuW @40 + ChangeWindowMessageFilter @41 + ChangeWindowMessageFilterEx @42 + CharLowerA @43 + CharLowerBuffA @44 + CharLowerBuffW @45 + CharLowerW @46 + CharNextA @47 + CharNextExA @48 + CharNextExW @49 + CharNextW @50 + CharPrevA @51 + CharPrevExA @52 + CharPrevExW @53 + CharPrevW @54 + CharToOemA @55 + CharToOemBuffA @56 + CharToOemBuffW @57 + CharToOemW @58 + CharUpperA @59 + CharUpperBuffA @60 + CharUpperBuffW @61 + CharUpperW @62 + CheckDlgButton @63 + CheckMenuItem @64 + CheckMenuRadioItem @65 + CheckRadioButton @66 + ChildWindowFromPoint @67 + ChildWindowFromPointEx @68 + CliImmSetHotKey @69 PRIVATE + ClientThreadConnect @70 PRIVATE + ClientThreadSetup @71 PRIVATE + ClientToScreen @72 + ClipCursor @73 + CloseClipboard @74 + CloseDesktop @75 + CloseTouchInputHandle @76 + CloseWindow @77 + CloseWindowStation @78 + CopyAcceleratorTableA @79 + CopyAcceleratorTableW @80 + CopyIcon @81 + CopyImage @82 + CopyRect @83 + CountClipboardFormats @84 + CreateAcceleratorTableA @85 + CreateAcceleratorTableW @86 + CreateCaret @87 + CreateCursor @88 + CreateDesktopA @89 + CreateDesktopW @90 + CreateDialogIndirectParamA @91 + CreateDialogIndirectParamAorW @92 + CreateDialogIndirectParamW @93 + CreateDialogParamA @94 + CreateDialogParamW @95 + CreateIcon @96 + CreateIconFromResource @97 + CreateIconFromResourceEx @98 + CreateIconIndirect @99 + CreateMDIWindowA @100 + CreateMDIWindowW @101 + CreateMenu @102 + CreatePopupMenu @103 + CreateWindowExA @104 + CreateWindowExW @105 + CreateWindowStationA @106 + CreateWindowStationW @107 + DdeAbandonTransaction @108 + DdeAccessData @109 + DdeAddData @110 + DdeClientTransaction @111 + DdeCmpStringHandles @112 + DdeConnect @113 + DdeConnectList @114 + DdeCreateDataHandle @115 + DdeCreateStringHandleA @116 + DdeCreateStringHandleW @117 + DdeDisconnect @118 + DdeDisconnectList @119 + DdeEnableCallback @120 + DdeFreeDataHandle @121 + DdeFreeStringHandle @122 + DdeGetData @123 + DdeGetLastError @124 + DdeGetQualityOfService @125 PRIVATE + DdeImpersonateClient @126 + DdeInitializeA @127 + DdeInitializeW @128 + DdeKeepStringHandle @129 + DdeNameService @130 + DdePostAdvise @131 + DdeQueryConvInfo @132 + DdeQueryNextServer @133 + DdeQueryStringA @134 + DdeQueryStringW @135 + DdeReconnect @136 + DdeSetQualityOfService @137 + DdeSetUserHandle @138 + DdeUnaccessData @139 + DdeUninitialize @140 + DefDlgProcA @141 + DefDlgProcW @142 + DefFrameProcA @143 + DefFrameProcW @144 + DefMDIChildProcA @145 + DefMDIChildProcW @146 + DefRawInputProc @147 + DefWindowProcA @148 + DefWindowProcW @149 + DeferWindowPos @150 + DeleteMenu @151 + DeregisterShellHookWindow @152 + DestroyAcceleratorTable @153 + DestroyCaret @154 + DestroyCursor @155 + DestroyIcon @156 + DestroyMenu @157 + DestroyWindow @158 + DialogBoxIndirectParamA @159 + DialogBoxIndirectParamAorW @160 + DialogBoxIndirectParamW @161 + DialogBoxParamA @162 + DialogBoxParamW @163 + DisableProcessWindowsGhosting @164 + DispatchMessageA @165 + DispatchMessageW @166 + DisplayConfigGetDeviceInfo @167 + DlgDirListA @168 + DlgDirListComboBoxA @169 + DlgDirListComboBoxW @170 + DlgDirListW @171 + DlgDirSelectComboBoxExA @172 + DlgDirSelectComboBoxExW @173 + DlgDirSelectExA @174 + DlgDirSelectExW @175 + DragDetect @176 + DragObject @177 PRIVATE + DrawAnimatedRects @178 + DrawCaption @179 + DrawCaptionTempA @180 + DrawCaptionTempW @181 + DrawEdge @182 + DrawFocusRect @183 + DrawFrame @184 PRIVATE + DrawFrameControl @185 + DrawIcon @186 + DrawIconEx @187 + DrawMenuBar @188 + DrawMenuBarTemp @189 + DrawStateA @190 + DrawStateW @191 + DrawTextA @192 + DrawTextExA @193 + DrawTextExW @194 + DrawTextW @195 + EditWndProc=EditWndProcA @196 + EmptyClipboard @197 + EnableMenuItem @198 + EnableMouseInPointer @199 + EnableScrollBar @200 + EnableWindow @201 + EndDeferWindowPos @202 + EndDialog @203 + EndMenu @204 + EndPaint @205 + EndTask @206 PRIVATE + EnumChildWindows @207 + EnumClipboardFormats @208 + EnumDesktopWindows @209 + EnumDesktopsA @210 + EnumDesktopsW @211 + EnumDisplayDeviceModesA @212 PRIVATE + EnumDisplayDeviceModesW @213 PRIVATE + EnumDisplayDevicesA @214 + EnumDisplayDevicesW @215 + EnumDisplayMonitors @216 + EnumDisplaySettingsA @217 + EnumDisplaySettingsExA @218 + EnumDisplaySettingsExW @219 + EnumDisplaySettingsW @220 + EnumPropsA @221 + EnumPropsExA @222 + EnumPropsExW @223 + EnumPropsW @224 + EnumThreadWindows @225 + EnumWindowStationsA @226 + EnumWindowStationsW @227 + EnumWindows @228 + EqualRect @229 + ExcludeUpdateRgn @230 + ExitWindowsEx @231 + FillRect @232 + FindWindowA @233 + FindWindowExA @234 + FindWindowExW @235 + FindWindowW @236 + FlashWindow @237 + FlashWindowEx @238 + FrameRect @239 + FreeDDElParam @240 + GetActiveWindow @241 + GetAltTabInfo=GetAltTabInfoA @242 + GetAltTabInfoA @243 + GetAltTabInfoW @244 + GetAncestor @245 + GetAppCompatFlags @246 + GetAppCompatFlags2 @247 + GetAsyncKeyState @248 + GetAutoRotationState @249 + GetAwarenessFromDpiAwarenessContext @250 + GetCapture @251 + GetCaretBlinkTime @252 + GetCaretPos @253 + GetClassInfoA @254 + GetClassInfoExA @255 + GetClassInfoExW @256 + GetClassInfoW @257 + GetClassLongA @258 + GetClassLongW @259 + GetClassLongPtrA @260 + GetClassLongPtrW @261 + GetClassNameA @262 + GetClassNameW @263 + GetClassWord @264 + GetClientRect @265 + GetClipCursor @266 + GetClipboardData @267 + GetClipboardFormatNameA @268 + GetClipboardFormatNameW @269 + GetClipboardOwner @270 + GetClipboardSequenceNumber @271 + GetClipboardViewer @272 + GetComboBoxInfo @273 + GetCurrentInputMessageSource @274 + GetCursor @275 + GetCursorFrameInfo @276 + GetCursorInfo @277 + GetCursorPos @278 + GetDC @279 + GetDCEx @280 + GetDesktopWindow @281 + GetDialogBaseUnits @282 + GetDisplayAutoRotationPreferences @283 + GetDisplayConfigBufferSizes @284 + GetDlgCtrlID @285 + GetDlgItem @286 + GetDlgItemInt @287 + GetDlgItemTextA @288 + GetDlgItemTextW @289 + GetDoubleClickTime @290 + GetDpiForMonitorInternal @291 + GetDpiForSystem @292 + GetDpiForWindow @293 + GetFocus @294 + GetForegroundWindow @295 + GetGestureConfig @296 + GetGestureInfo @297 + GetGUIThreadInfo @298 + GetGuiResources @299 + GetIconInfo @300 + GetIconInfoExA @301 + GetIconInfoExW @302 + GetInputDesktop @303 PRIVATE + GetInputState @304 + GetInternalWindowPos @305 + GetKBCodePage @306 + GetKeyNameTextA @307 + GetKeyNameTextW @308 + GetKeyState @309 + GetKeyboardLayout @310 + GetKeyboardLayoutList @311 + GetKeyboardLayoutNameA @312 + GetKeyboardLayoutNameW @313 + GetKeyboardState @314 + GetKeyboardType @315 + GetLastActivePopup @316 + GetLastInputInfo @317 + GetLayeredWindowAttributes @318 + GetListBoxInfo @319 + GetMenu @320 + GetMenuBarInfo @321 + GetMenuCheckMarkDimensions @322 + GetMenuContextHelpId @323 + GetMenuDefaultItem @324 + GetMenuIndex @325 PRIVATE + GetMenuInfo @326 + GetMenuItemCount @327 + GetMenuItemID @328 + GetMenuItemInfoA @329 + GetMenuItemInfoW @330 + GetMenuItemRect @331 + GetMenuState @332 + GetMenuStringA @333 + GetMenuStringW @334 + GetMessageA @335 + GetMessageExtraInfo @336 + GetMessagePos @337 + GetMessageTime @338 + GetMessageW @339 + GetMonitorInfoA @340 + GetMonitorInfoW @341 + GetMouseMovePointsEx @342 + GetNextDlgGroupItem @343 + GetNextDlgTabItem @344 + GetOpenClipboardWindow @345 + GetParent @346 + GetPhysicalCursorPos @347 + GetPointerDevices @348 + GetPointerType @349 + GetPriorityClipboardFormat @350 + GetProcessDefaultLayout @351 + GetProcessDpiAwarenessInternal @352 + GetProcessWindowStation @353 + GetProgmanWindow @354 + GetPropA @355 + GetPropW @356 + GetQueueStatus @357 + GetRawInputBuffer @358 + GetRawInputData @359 + GetRawInputDeviceInfoA @360 + GetRawInputDeviceInfoW @361 + GetRawInputDeviceList @362 + GetRegisteredRawInputDevices @363 + GetScrollBarInfo @364 + GetScrollInfo @365 + GetScrollPos @366 + GetScrollRange @367 + GetShellWindow @368 + GetSubMenu @369 + GetSysColor @370 + GetSysColorBrush @371 + GetSystemMenu @372 + GetSystemMetrics @373 + GetSystemMetricsForDpi @374 + GetTabbedTextExtentA @375 + GetTabbedTextExtentW @376 + GetTaskmanWindow @377 + GetThreadDesktop @378 + GetThreadDpiAwarenessContext @379 + GetTitleBarInfo @380 + GetTopWindow @381 + GetTouchInputInfo @382 + GetUpdateRect @383 + GetUpdateRgn @384 + GetUpdatedClipboardFormats @385 + GetUserObjectInformationA @386 + GetUserObjectInformationW @387 + GetUserObjectSecurity @388 + GetWindow @389 + GetWindowContextHelpId @390 + GetWindowDC @391 + GetWindowDisplayAffinity @392 + GetWindowDpiAwarenessContext @393 + GetWindowInfo @394 + GetWindowLongA @395 + GetWindowLongPtrA @396 + GetWindowLongPtrW @397 + GetWindowLongW @398 + GetWindowModuleFileName=GetWindowModuleFileNameA @399 + GetWindowModuleFileNameA @400 + GetWindowModuleFileNameW @401 + GetWindowPlacement @402 + GetWindowRect @403 + GetWindowRgn @404 + GetWindowRgnBox @405 + GetWindowTextA @406 + GetWindowTextLengthA @407 + GetWindowTextLengthW @408 + GetWindowTextW @409 + GetWindowThreadProcessId @410 + GetWindowWord @411 + GrayStringA @412 + GrayStringW @413 + HideCaret @414 + HiliteMenuItem @415 + ImpersonateDdeClientWindow @416 + InSendMessage @417 + InSendMessageEx @418 + InflateRect @419 + InsertMenuA @420 + InsertMenuItemA @421 + InsertMenuItemW @422 + InsertMenuW @423 + InternalGetWindowText @424 + IntersectRect @425 + InvalidateRect @426 + InvalidateRgn @427 + InvertRect @428 + IsCharAlphaA @429 + IsCharAlphaNumericA @430 + IsCharAlphaNumericW @431 + IsCharAlphaW @432 + IsCharLowerA @433 + IsCharLowerW @434 + IsCharUpperA @435 + IsCharUpperW @436 + IsChild @437 + IsClipboardFormatAvailable @438 + IsDialogMessage=IsDialogMessageA @439 + IsDialogMessageA @440 + IsDialogMessageW @441 + IsDlgButtonChecked @442 + IsGUIThread @443 + IsHungAppWindow @444 + IsIconic @445 + IsMenu @446 + IsProcessDPIAware @447 + IsRectEmpty @448 + IsTouchWindow @449 + IsValidDpiAwarenessContext @450 + IsWinEventHookInstalled @451 + IsWindow @452 + IsWindowEnabled @453 + IsWindowRedirectedForPrint @454 + IsWindowUnicode @455 + IsWindowVisible @456 + IsZoomed @457 + KillSystemTimer @458 + KillTimer @459 + LoadAcceleratorsA @460 + LoadAcceleratorsW @461 + LoadBitmapA @462 + LoadBitmapW @463 + LoadCursorA @464 + LoadCursorFromFileA @465 + LoadCursorFromFileW @466 + LoadCursorW @467 + LoadIconA @468 + LoadIconW @469 + LoadImageA @470 + LoadImageW @471 + LoadKeyboardLayoutA @472 + LoadKeyboardLayoutW @473 + LoadLocalFonts @474 + LoadMenuA @475 + LoadMenuIndirectA @476 + LoadMenuIndirectW @477 + LoadMenuW @478 + LoadRemoteFonts @479 PRIVATE + LoadStringA @480 + LoadStringW @481 + LockSetForegroundWindow @482 + LockWindowStation @483 PRIVATE + LockWindowUpdate @484 + LockWorkStation @485 + LogicalToPhysicalPoint @486 + LogicalToPhysicalPointForPerMonitorDPI @487 + LookupIconIdFromDirectory @488 + LookupIconIdFromDirectoryEx @489 + MBToWCSEx @490 PRIVATE + MapDialogRect @491 + MapVirtualKeyA @492 + MapVirtualKeyExA @493 + MapVirtualKeyExW @494 + MapVirtualKeyW @495 + MapWindowPoints @496 + MenuItemFromPoint @497 + MenuWindowProcA @498 PRIVATE + MenuWindowProcW @499 PRIVATE + MessageBeep @500 + MessageBoxA @501 + MessageBoxExA @502 + MessageBoxExW @503 + MessageBoxIndirectA @504 + MessageBoxIndirectW @505 + MessageBoxTimeoutA @506 + MessageBoxTimeoutW @507 + MessageBoxW @508 + ModifyMenuA @509 + ModifyMenuW @510 + MonitorFromPoint @511 + MonitorFromRect @512 + MonitorFromWindow @513 + MoveWindow @514 + MsgWaitForMultipleObjects @515 + MsgWaitForMultipleObjectsEx @516 + NotifyWinEvent @517 + OemKeyScan @518 + OemToCharA @519 + OemToCharBuffA @520 + OemToCharBuffW @521 + OemToCharW @522 + OffsetRect @523 + OpenClipboard @524 + OpenDesktopA @525 + OpenDesktopW @526 + OpenIcon @527 + OpenInputDesktop @528 + OpenWindowStationA @529 + OpenWindowStationW @530 + PackDDElParam @531 + PaintDesktop @532 + PeekMessageA @533 + PeekMessageW @534 + PhysicalToLogicalPoint @535 + PhysicalToLogicalPointForPerMonitorDPI @536 + PlaySoundEvent @537 PRIVATE + PostMessageA @538 + PostMessageW @539 + PostQuitMessage @540 + PostThreadMessageA @541 + PostThreadMessageW @542 + PrintWindow @543 + PrivateExtractIconExA @544 + PrivateExtractIconExW @545 + PrivateExtractIconsA @546 + PrivateExtractIconsW @547 + PtInRect @548 + QueryDisplayConfig @549 + QuerySendMessage @550 PRIVATE + RealChildWindowFromPoint @551 + RealGetWindowClass=RealGetWindowClassA @552 + RealGetWindowClassA @553 + RealGetWindowClassW @554 + RedrawWindow @555 + RegisterClassA @556 + RegisterClassExA @557 + RegisterClassExW @558 + RegisterClassW @559 + RegisterClipboardFormatA @560 + RegisterClipboardFormatW @561 + RegisterDeviceNotificationA @562 + RegisterDeviceNotificationW @563 + RegisterHotKey @564 + RegisterLogonProcess @565 + RegisterNetworkCapabilities @566 PRIVATE + RegisterPointerDeviceNotifications @567 + RegisterPowerSettingNotification @568 + RegisterRawInputDevices @569 + RegisterServicesProcess @570 + RegisterShellHookWindow @571 + RegisterSystemThread @572 + RegisterTasklist @573 + RegisterTouchHitTestingWindow @574 + RegisterTouchWindow @575 + RegisterWindowMessageA @576 + RegisterWindowMessageW @577 + ReleaseCapture @578 + ReleaseDC @579 + RemoveClipboardFormatListener @580 + RemoveMenu @581 + RemovePropA @582 + RemovePropW @583 + ReplyMessage @584 + ResetDisplay @585 PRIVATE + ReuseDDElParam @586 + ScreenToClient @587 + ScrollChildren @588 + ScrollDC @589 + ScrollWindow @590 + ScrollWindowEx @591 + SendDlgItemMessageA @592 + SendDlgItemMessageW @593 + SendIMEMessageExA @594 + SendIMEMessageExW @595 + SendInput @596 + SendMessageA @597 + SendMessageCallbackA @598 + SendMessageCallbackW @599 + SendMessageTimeoutA @600 + SendMessageTimeoutW @601 + SendMessageW @602 + SendNotifyMessageA @603 + SendNotifyMessageW @604 + ServerSetFunctionPointers @605 PRIVATE + SetActiveWindow @606 + SetCapture @607 + SetCaretBlinkTime @608 + SetCaretPos @609 + SetClassLongA @610 + SetClassLongPtrA @611 + SetClassLongPtrW @612 + SetClassLongW @613 + SetClassWord @614 + SetClipboardData @615 + SetClipboardViewer @616 + SetCoalescableTimer @617 + SetCursor @618 + SetCursorContents @619 PRIVATE + SetCursorPos @620 + SetDebugErrorLevel @621 + SetDeskWallPaper @622 + SetDlgItemInt @623 + SetDlgItemTextA @624 + SetDlgItemTextW @625 + SetDoubleClickTime @626 + SetFocus @627 + SetForegroundWindow @628 + SetGestureConfig @629 + SetInternalWindowPos @630 + SetKeyboardState @631 + SetLastErrorEx @632 + SetLayeredWindowAttributes @633 + SetLogonNotifyWindow @634 + SetMenu @635 + SetMenuContextHelpId @636 + SetMenuDefaultItem @637 + SetMenuInfo @638 + SetMenuItemBitmaps @639 + SetMenuItemInfoA @640 + SetMenuItemInfoW @641 + SetMessageExtraInfo @642 + SetMessageQueue @643 + SetParent @644 + SetPhysicalCursorPos @645 + SetProcessDPIAware @646 + SetProcessDefaultLayout @647 + SetProcessDpiAwarenessContext @648 + SetProcessDpiAwarenessInternal @649 + SetProcessWindowStation @650 + SetProgmanWindow @651 + SetPropA @652 + SetPropW @653 + SetRect @654 + SetRectEmpty @655 + SetScrollInfo @656 + SetScrollPos @657 + SetScrollRange @658 + SetShellWindow @659 + SetShellWindowEx @660 + SetSysColors @661 + SetSysColorsTemp @662 + SetSystemCursor @663 + SetSystemMenu @664 + SetSystemTimer @665 + SetTaskmanWindow @666 + SetThreadDesktop @667 + SetThreadDpiAwarenessContext @668 + SetTimer @669 + SetUserObjectInformationA @670 + SetUserObjectInformationW @671 + SetUserObjectSecurity @672 + SetWinEventHook @673 + SetWindowCompositionAttribute @674 + SetWindowContextHelpId @675 + SetWindowDisplayAffinity @676 + SetWindowFullScreenState @677 PRIVATE + SetWindowLongA @678 + SetWindowLongPtrA @679 + SetWindowLongPtrW @680 + SetWindowLongW @681 + SetWindowPlacement @682 + SetWindowPos @683 + SetWindowRgn @684 + SetWindowStationUser @685 + SetWindowTextA @686 + SetWindowTextW @687 + SetWindowWord @688 + SetWindowsHookA @689 + SetWindowsHookExA @690 + SetWindowsHookExW @691 + SetWindowsHookW @692 + ShowCaret @693 + ShowCursor @694 + ShowOwnedPopups @695 + ShowScrollBar @696 + ShowStartGlass @697 PRIVATE + ShowWindow @698 + ShowWindowAsync @699 + ShutdownBlockReasonCreate @700 + ShutdownBlockReasonDestroy @701 + SubtractRect @702 + SwapMouseButton @703 + SwitchDesktop @704 + SwitchToThisWindow @705 + SystemParametersInfoA @706 + SystemParametersInfoForDpi @707 + SystemParametersInfoW @708 + TabbedTextOutA @709 + TabbedTextOutW @710 + TileChildWindows @711 + TileWindows @712 + ToAscii @713 + ToAsciiEx @714 + ToUnicode @715 + ToUnicodeEx @716 + TrackMouseEvent @717 + TrackPopupMenu @718 + TrackPopupMenuEx @719 + TranslateAccelerator=TranslateAcceleratorA @720 + TranslateAcceleratorA @721 + TranslateAcceleratorW @722 + TranslateMDISysAccel @723 + TranslateMessage @724 + UnhookWinEvent @725 + UnhookWindowsHook @726 + UnhookWindowsHookEx @727 + UnionRect @728 + UnloadKeyboardLayout @729 + UnlockWindowStation @730 PRIVATE + UnpackDDElParam @731 + UnregisterClassA @732 + UnregisterClassW @733 + UnregisterDeviceNotification @734 + UnregisterHotKey @735 + UnregisterPowerSettingNotification @736 + UnregisterTouchWindow @737 + UpdateLayeredWindow @738 + UpdateLayeredWindowIndirect @739 + UpdatePerUserSystemParameters @740 PRIVATE + UpdateWindow @741 + User32InitializeImmEntryTable @742 + UserClientDllInitialize=DllMain @743 + UserHandleGrantAccess @744 + UserRealizePalette @745 + UserRegisterWowHandlers @746 + UserSignalProc @747 + ValidateRect @748 + ValidateRgn @749 + VkKeyScanA @750 + VkKeyScanExA @751 + VkKeyScanExW @752 + VkKeyScanW @753 + WCSToMBEx @754 PRIVATE + WINNLSEnableIME @755 + WINNLSGetEnableStatus @756 + WINNLSGetIMEHotkey @757 + WNDPROC_CALLBACK @758 PRIVATE + WaitForInputIdle @759 + WaitMessage @760 + WinHelpA @761 + WinHelpW @762 + WindowFromDC @763 + WindowFromPoint @764 + keybd_event @765 + mouse_event @766 + wsprintfA @767 + wsprintfW @768 + wvsprintfA @769 + wvsprintfW @770 + __wine_send_input @771 + __wine_set_pixel_format @772 diff --git a/lib64/wine/libuserenv.def b/lib64/wine/libuserenv.def new file mode 100644 index 0000000..40fe224 --- /dev/null +++ b/lib64/wine/libuserenv.def @@ -0,0 +1,26 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/userenv/userenv.spec; do not edit! + +LIBRARY userenv.dll + +EXPORTS + CreateEnvironmentBlock @139 + DestroyEnvironmentBlock @140 + EnterCriticalPolicySection @141 + ExpandEnvironmentStringsForUserA @142 + ExpandEnvironmentStringsForUserW @143 + GetAllUsersProfileDirectoryA @144 + GetAllUsersProfileDirectoryW @145 + GetAppliedGPOListW @146 + GetDefaultUserProfileDirectoryA @147 + GetDefaultUserProfileDirectoryW @148 + GetProfilesDirectoryA @149 + GetProfilesDirectoryW @150 + GetProfileType @151 + GetUserProfileDirectoryA @152 + GetUserProfileDirectoryW @153 + LeaveCriticalPolicySection @154 + LoadUserProfileA @155 + LoadUserProfileW @156 + RegisterGPNotification @157 + UnloadUserProfile @158 + UnregisterGPNotification @159 diff --git a/lib64/wine/libusp10.def b/lib64/wine/libusp10.def new file mode 100644 index 0000000..a60970f --- /dev/null +++ b/lib64/wine/libusp10.def @@ -0,0 +1,49 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/usp10/usp10.spec; do not edit! + +LIBRARY usp10.dll + +EXPORTS + LpkPresent @1 PRIVATE + ScriptApplyDigitSubstitution @2 + ScriptApplyLogicalWidth @3 + ScriptBreak @4 + ScriptCPtoX @5 + ScriptCacheGetHeight @6 + ScriptFreeCache @7 + ScriptGetCMap @8 + ScriptGetFontAlternateGlyphs @9 PRIVATE + ScriptGetFontFeatureTags @10 + ScriptGetFontLanguageTags @11 + ScriptGetFontProperties @12 + ScriptGetFontScriptTags @13 + ScriptGetGlyphABCWidth @14 + ScriptGetLogicalWidths @15 + ScriptGetProperties @16 + ScriptIsComplex @17 + ScriptItemize @18 + ScriptItemizeOpenType @19 + ScriptJustify @20 + ScriptLayout @21 + ScriptPlace @22 + ScriptPlaceOpenType @23 + ScriptPositionSingleGlyph @24 PRIVATE + ScriptRecordDigitSubstitution @25 + ScriptShape @26 + ScriptShapeOpenType @27 + ScriptStringAnalyse @28 + ScriptStringCPtoX @29 + ScriptStringFree @30 + ScriptStringGetLogicalWidths @31 + ScriptStringGetOrder @32 + ScriptStringOut @33 + ScriptStringValidate @34 + ScriptStringXtoCP @35 + ScriptString_pLogAttr @36 + ScriptString_pSize @37 + ScriptString_pcOutChars @38 + ScriptSubstituteSingleGlyph @39 PRIVATE + ScriptTextOut @40 + ScriptXtoCP @41 + UspAllocCache @42 PRIVATE + UspAllocTemp @43 PRIVATE + UspFreeMem @44 PRIVATE diff --git a/lib64/wine/libuuid.a b/lib64/wine/libuuid.a new file mode 100644 index 0000000..ebed948 Binary files /dev/null and b/lib64/wine/libuuid.a differ diff --git a/lib64/wine/libuxtheme.def b/lib64/wine/libuxtheme.def new file mode 100644 index 0000000..6bf4810 --- /dev/null +++ b/lib64/wine/libuxtheme.def @@ -0,0 +1,113 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/uxtheme/uxtheme.spec; do not edit! + +LIBRARY uxtheme.dll + +EXPORTS + QueryThemeServices @1 NONAME + OpenThemeFile @2 NONAME + CloseThemeFile @3 NONAME + ApplyTheme @4 NONAME + GetThemeDefaults @7 NONAME + EnumThemes @8 NONAME + EnumThemeColors @9 NONAME + EnumThemeSizes @10 NONAME + ParseThemeIniFile @11 NONAME + DrawNCPreview @13 NONAME PRIVATE + RegisterDefaultTheme @14 NONAME PRIVATE + DumpLoadedThemeToTextFile @15 NONAME PRIVATE + OpenThemeDataFromFile @16 NONAME PRIVATE + OpenThemeFileFromData @17 NONAME PRIVATE + GetThemeSysSize96 @18 NONAME PRIVATE + GetThemeSysFont96 @19 NONAME PRIVATE + SessionAllocate @20 NONAME PRIVATE + SessionFree @21 NONAME PRIVATE + ThemeHooksOn @22 NONAME PRIVATE + ThemeHooksOff @23 NONAME PRIVATE + AreThemeHooksActive @24 NONAME PRIVATE + GetCurrentChangeNumber @25 NONAME PRIVATE + GetNewChangeNumber @26 NONAME PRIVATE + SetGlobalTheme @27 NONAME PRIVATE + GetGlobalTheme @28 NONAME PRIVATE + CheckThemeSignature @29 NONAME + LoadTheme @30 NONAME PRIVATE + InitUserTheme @31 NONAME PRIVATE + InitUserRegistry @32 NONAME PRIVATE + ReestablishServerConnection @33 NONAME PRIVATE + ThemeHooksInstall @34 NONAME PRIVATE + ThemeHooksRemove @35 NONAME PRIVATE + RefreshThemeForTS @36 NONAME PRIVATE + ClassicGetSystemMetrics @43 NONAME PRIVATE + ClassicSystemParametersInfoA @44 NONAME PRIVATE + ClassicSystemParametersInfoW @45 NONAME PRIVATE + ClassicAdjustWindowRectEx @46 NONAME PRIVATE + GetThemeParseErrorInfo @48 NONAME PRIVATE + CreateThemeDataFromObjects @60 NONAME PRIVATE + OpenThemeDataEx @61 + ServerClearStockObjects @62 NONAME PRIVATE + MarkSelection @63 NONAME PRIVATE + BeginBufferedAnimation @5 + BeginBufferedPaint @6 + BufferedPaintClear @12 + BufferedPaintInit @37 + BufferedPaintRenderAnimation @38 + BufferedPaintSetAlpha @39 + BufferedPaintStopAllAnimations @40 + BufferedPaintUnInit @41 + CloseThemeData @42 + DrawThemeBackground @47 + DrawThemeBackgroundEx @49 + DrawThemeEdge @50 + DrawThemeIcon @51 + DrawThemeParentBackground @52 + DrawThemeText @53 + DrawThemeTextEx @54 + EnableThemeDialogTexture @55 + EnableTheming @56 + EndBufferedAnimation @57 + EndBufferedPaint @58 + GetBufferedPaintBits @59 + GetBufferedPaintDC @64 + GetBufferedPaintTargetDC @65 + GetBufferedPaintTargetRect @66 + GetCurrentThemeName @67 + GetThemeAppProperties @68 + GetThemeBackgroundContentRect @69 + GetThemeBackgroundExtent @70 + GetThemeBackgroundRegion @71 + GetThemeBool @72 + GetThemeColor @73 + GetThemeDocumentationProperty @74 + GetThemeEnumValue @75 + GetThemeFilename @76 + GetThemeFont @77 + GetThemeInt @78 + GetThemeIntList @79 + GetThemeMargins @80 + GetThemeMetric @81 + GetThemePartSize @82 + GetThemePosition @83 + GetThemePropertyOrigin @84 + GetThemeRect @85 + GetThemeString @86 + GetThemeSysBool @87 + GetThemeSysColor @88 + GetThemeSysColorBrush @89 + GetThemeSysFont @90 + GetThemeSysInt @91 + GetThemeSysSize @92 + GetThemeSysString @93 + GetThemeTextExtent @94 + GetThemeTextMetrics @95 + GetThemeTransitionDuration @96 + GetWindowTheme @97 + HitTestThemeBackground @98 + IsAppThemed @99 + IsCompositionActive @100 + IsThemeActive @101 + IsThemeBackgroundPartiallyTransparent @102 + IsThemeDialogTextureEnabled @103 + IsThemePartDefined @104 + OpenThemeData @105 + SetThemeAppProperties @106 + SetWindowTheme @107 + SetWindowThemeAttribute @108 diff --git a/lib64/wine/libvdmdbg.def b/lib64/wine/libvdmdbg.def new file mode 100644 index 0000000..1f5c730 --- /dev/null +++ b/lib64/wine/libvdmdbg.def @@ -0,0 +1,24 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/vdmdbg/vdmdbg.spec; do not edit! + +LIBRARY vdmdbg.dll + +EXPORTS + VDMBreakThread @1 PRIVATE + VDMDetectWOW @2 PRIVATE + VDMEnumProcessWOW @3 + VDMEnumTaskWOW @4 + VDMEnumTaskWOWEx @5 PRIVATE + VDMGetModuleSelector @6 PRIVATE + VDMGetPointer @7 PRIVATE + VDMGetSelectorModule @8 PRIVATE + VDMGetThreadContext @9 PRIVATE + VDMGetThreadSelectorEntry @10 PRIVATE + VDMGlobalFirst @11 PRIVATE + VDMGlobalNext @12 PRIVATE + VDMKillWOW @13 PRIVATE + VDMModuleFirst @14 PRIVATE + VDMModuleNext @15 PRIVATE + VDMProcessException @16 PRIVATE + VDMSetThreadContext @17 PRIVATE + VDMStartTaskInWOW @18 PRIVATE + VDMTerminateTaskWOW @19 PRIVATE diff --git a/lib64/wine/libversion.def b/lib64/wine/libversion.def new file mode 100644 index 0000000..767055b --- /dev/null +++ b/lib64/wine/libversion.def @@ -0,0 +1,21 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/version/version.spec; do not edit! + +LIBRARY version.dll + +EXPORTS + GetFileVersionInfoA @1 + GetFileVersionInfoExA @2 + GetFileVersionInfoExW @3 + GetFileVersionInfoSizeA @4 + GetFileVersionInfoSizeExA @5 + GetFileVersionInfoSizeExW @6 + GetFileVersionInfoSizeW @7 + GetFileVersionInfoW @8 + VerFindFileA @9 + VerFindFileW @10 + VerInstallFileA @11 + VerInstallFileW @12 + VerLanguageNameA=kernel32.VerLanguageNameA @13 + VerLanguageNameW=kernel32.VerLanguageNameW @14 + VerQueryValueA @15 + VerQueryValueW @16 diff --git a/lib64/wine/libvulkan-1.def b/lib64/wine/libvulkan-1.def new file mode 100644 index 0000000..7411d45 --- /dev/null +++ b/lib64/wine/libvulkan-1.def @@ -0,0 +1,194 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/vulkan-1/vulkan-1.spec; do not edit! + +LIBRARY vulkan-1.dll + +EXPORTS + vkAcquireNextImage2KHR=winevulkan.wine_vkAcquireNextImage2KHR @1 + vkAcquireNextImageKHR=winevulkan.wine_vkAcquireNextImageKHR @2 + vkAllocateCommandBuffers=winevulkan.wine_vkAllocateCommandBuffers @3 + vkAllocateDescriptorSets=winevulkan.wine_vkAllocateDescriptorSets @4 + vkAllocateMemory=winevulkan.wine_vkAllocateMemory @5 + vkBeginCommandBuffer=winevulkan.wine_vkBeginCommandBuffer @6 + vkBindBufferMemory=winevulkan.wine_vkBindBufferMemory @7 + vkBindBufferMemory2=winevulkan.wine_vkBindBufferMemory2 @8 + vkBindImageMemory=winevulkan.wine_vkBindImageMemory @9 + vkBindImageMemory2=winevulkan.wine_vkBindImageMemory2 @10 + vkCmdBeginQuery=winevulkan.wine_vkCmdBeginQuery @11 + vkCmdBeginRenderPass=winevulkan.wine_vkCmdBeginRenderPass @12 + vkCmdBindDescriptorSets=winevulkan.wine_vkCmdBindDescriptorSets @13 + vkCmdBindIndexBuffer=winevulkan.wine_vkCmdBindIndexBuffer @14 + vkCmdBindPipeline=winevulkan.wine_vkCmdBindPipeline @15 + vkCmdBindVertexBuffers=winevulkan.wine_vkCmdBindVertexBuffers @16 + vkCmdBlitImage=winevulkan.wine_vkCmdBlitImage @17 + vkCmdClearAttachments=winevulkan.wine_vkCmdClearAttachments @18 + vkCmdClearColorImage=winevulkan.wine_vkCmdClearColorImage @19 + vkCmdClearDepthStencilImage=winevulkan.wine_vkCmdClearDepthStencilImage @20 + vkCmdCopyBuffer=winevulkan.wine_vkCmdCopyBuffer @21 + vkCmdCopyBufferToImage=winevulkan.wine_vkCmdCopyBufferToImage @22 + vkCmdCopyImage=winevulkan.wine_vkCmdCopyImage @23 + vkCmdCopyImageToBuffer=winevulkan.wine_vkCmdCopyImageToBuffer @24 + vkCmdCopyQueryPoolResults=winevulkan.wine_vkCmdCopyQueryPoolResults @25 + vkCmdDispatch=winevulkan.wine_vkCmdDispatch @26 + vkCmdDispatchBase=winevulkan.wine_vkCmdDispatchBase @27 + vkCmdDispatchIndirect=winevulkan.wine_vkCmdDispatchIndirect @28 + vkCmdDraw=winevulkan.wine_vkCmdDraw @29 + vkCmdDrawIndexed=winevulkan.wine_vkCmdDrawIndexed @30 + vkCmdDrawIndexedIndirect=winevulkan.wine_vkCmdDrawIndexedIndirect @31 + vkCmdDrawIndirect=winevulkan.wine_vkCmdDrawIndirect @32 + vkCmdEndQuery=winevulkan.wine_vkCmdEndQuery @33 + vkCmdEndRenderPass=winevulkan.wine_vkCmdEndRenderPass @34 + vkCmdExecuteCommands=winevulkan.wine_vkCmdExecuteCommands @35 + vkCmdFillBuffer=winevulkan.wine_vkCmdFillBuffer @36 + vkCmdNextSubpass=winevulkan.wine_vkCmdNextSubpass @37 + vkCmdPipelineBarrier=winevulkan.wine_vkCmdPipelineBarrier @38 + vkCmdPushConstants=winevulkan.wine_vkCmdPushConstants @39 + vkCmdResetEvent=winevulkan.wine_vkCmdResetEvent @40 + vkCmdResetQueryPool=winevulkan.wine_vkCmdResetQueryPool @41 + vkCmdResolveImage=winevulkan.wine_vkCmdResolveImage @42 + vkCmdSetBlendConstants=winevulkan.wine_vkCmdSetBlendConstants @43 + vkCmdSetDepthBias=winevulkan.wine_vkCmdSetDepthBias @44 + vkCmdSetDepthBounds=winevulkan.wine_vkCmdSetDepthBounds @45 + vkCmdSetDeviceMask=winevulkan.wine_vkCmdSetDeviceMask @46 + vkCmdSetEvent=winevulkan.wine_vkCmdSetEvent @47 + vkCmdSetLineWidth=winevulkan.wine_vkCmdSetLineWidth @48 + vkCmdSetScissor=winevulkan.wine_vkCmdSetScissor @49 + vkCmdSetStencilCompareMask=winevulkan.wine_vkCmdSetStencilCompareMask @50 + vkCmdSetStencilReference=winevulkan.wine_vkCmdSetStencilReference @51 + vkCmdSetStencilWriteMask=winevulkan.wine_vkCmdSetStencilWriteMask @52 + vkCmdSetViewport=winevulkan.wine_vkCmdSetViewport @53 + vkCmdUpdateBuffer=winevulkan.wine_vkCmdUpdateBuffer @54 + vkCmdWaitEvents=winevulkan.wine_vkCmdWaitEvents @55 + vkCmdWriteTimestamp=winevulkan.wine_vkCmdWriteTimestamp @56 + vkCreateBuffer=winevulkan.wine_vkCreateBuffer @57 + vkCreateBufferView=winevulkan.wine_vkCreateBufferView @58 + vkCreateCommandPool=winevulkan.wine_vkCreateCommandPool @59 + vkCreateComputePipelines=winevulkan.wine_vkCreateComputePipelines @60 + vkCreateDescriptorPool=winevulkan.wine_vkCreateDescriptorPool @61 + vkCreateDescriptorSetLayout=winevulkan.wine_vkCreateDescriptorSetLayout @62 + vkCreateDescriptorUpdateTemplate=winevulkan.wine_vkCreateDescriptorUpdateTemplate @63 + vkCreateDevice=winevulkan.wine_vkCreateDevice @64 + vkCreateDisplayModeKHR @65 PRIVATE + vkCreateDisplayPlaneSurfaceKHR @66 PRIVATE + vkCreateEvent=winevulkan.wine_vkCreateEvent @67 + vkCreateFence=winevulkan.wine_vkCreateFence @68 + vkCreateFramebuffer=winevulkan.wine_vkCreateFramebuffer @69 + vkCreateGraphicsPipelines=winevulkan.wine_vkCreateGraphicsPipelines @70 + vkCreateImage=winevulkan.wine_vkCreateImage @71 + vkCreateImageView=winevulkan.wine_vkCreateImageView @72 + vkCreateInstance=winevulkan.wine_vkCreateInstance @73 + vkCreatePipelineCache=winevulkan.wine_vkCreatePipelineCache @74 + vkCreatePipelineLayout=winevulkan.wine_vkCreatePipelineLayout @75 + vkCreateQueryPool=winevulkan.wine_vkCreateQueryPool @76 + vkCreateRenderPass=winevulkan.wine_vkCreateRenderPass @77 + vkCreateSampler=winevulkan.wine_vkCreateSampler @78 + vkCreateSamplerYcbcrConversion=winevulkan.wine_vkCreateSamplerYcbcrConversion @79 + vkCreateSemaphore=winevulkan.wine_vkCreateSemaphore @80 + vkCreateShaderModule=winevulkan.wine_vkCreateShaderModule @81 + vkCreateSharedSwapchainsKHR @82 PRIVATE + vkCreateSwapchainKHR=winevulkan.wine_vkCreateSwapchainKHR @83 + vkCreateWin32SurfaceKHR=winevulkan.wine_vkCreateWin32SurfaceKHR @84 + vkDestroyBuffer=winevulkan.wine_vkDestroyBuffer @85 + vkDestroyBufferView=winevulkan.wine_vkDestroyBufferView @86 + vkDestroyCommandPool=winevulkan.wine_vkDestroyCommandPool @87 + vkDestroyDescriptorPool=winevulkan.wine_vkDestroyDescriptorPool @88 + vkDestroyDescriptorSetLayout=winevulkan.wine_vkDestroyDescriptorSetLayout @89 + vkDestroyDescriptorUpdateTemplate=winevulkan.wine_vkDestroyDescriptorUpdateTemplate @90 + vkDestroyDevice=winevulkan.wine_vkDestroyDevice @91 + vkDestroyEvent=winevulkan.wine_vkDestroyEvent @92 + vkDestroyFence=winevulkan.wine_vkDestroyFence @93 + vkDestroyFramebuffer=winevulkan.wine_vkDestroyFramebuffer @94 + vkDestroyImage=winevulkan.wine_vkDestroyImage @95 + vkDestroyImageView=winevulkan.wine_vkDestroyImageView @96 + vkDestroyInstance=winevulkan.wine_vkDestroyInstance @97 + vkDestroyPipeline=winevulkan.wine_vkDestroyPipeline @98 + vkDestroyPipelineCache=winevulkan.wine_vkDestroyPipelineCache @99 + vkDestroyPipelineLayout=winevulkan.wine_vkDestroyPipelineLayout @100 + vkDestroyQueryPool=winevulkan.wine_vkDestroyQueryPool @101 + vkDestroyRenderPass=winevulkan.wine_vkDestroyRenderPass @102 + vkDestroySampler=winevulkan.wine_vkDestroySampler @103 + vkDestroySamplerYcbcrConversion=winevulkan.wine_vkDestroySamplerYcbcrConversion @104 + vkDestroySemaphore=winevulkan.wine_vkDestroySemaphore @105 + vkDestroyShaderModule=winevulkan.wine_vkDestroyShaderModule @106 + vkDestroySurfaceKHR=winevulkan.wine_vkDestroySurfaceKHR @107 + vkDestroySwapchainKHR=winevulkan.wine_vkDestroySwapchainKHR @108 + vkDeviceWaitIdle=winevulkan.wine_vkDeviceWaitIdle @109 + vkEndCommandBuffer=winevulkan.wine_vkEndCommandBuffer @110 + vkEnumerateDeviceExtensionProperties=winevulkan.wine_vkEnumerateDeviceExtensionProperties @111 + vkEnumerateDeviceLayerProperties=winevulkan.wine_vkEnumerateDeviceLayerProperties @112 + vkEnumerateInstanceExtensionProperties=winevulkan.wine_vkEnumerateInstanceExtensionProperties @113 + vkEnumerateInstanceLayerProperties=winevulkan.wine_vkEnumerateInstanceLayerProperties @114 + vkEnumerateInstanceVersion=winevulkan.wine_vkEnumerateInstanceVersion @115 + vkEnumeratePhysicalDeviceGroups=winevulkan.wine_vkEnumeratePhysicalDeviceGroups @116 + vkEnumeratePhysicalDevices=winevulkan.wine_vkEnumeratePhysicalDevices @117 + vkFlushMappedMemoryRanges=winevulkan.wine_vkFlushMappedMemoryRanges @118 + vkFreeCommandBuffers=winevulkan.wine_vkFreeCommandBuffers @119 + vkFreeDescriptorSets=winevulkan.wine_vkFreeDescriptorSets @120 + vkFreeMemory=winevulkan.wine_vkFreeMemory @121 + vkGetBufferMemoryRequirements=winevulkan.wine_vkGetBufferMemoryRequirements @122 + vkGetBufferMemoryRequirements2=winevulkan.wine_vkGetBufferMemoryRequirements2 @123 + vkGetDescriptorSetLayoutSupport=winevulkan.wine_vkGetDescriptorSetLayoutSupport @124 + vkGetDeviceGroupPeerMemoryFeatures=winevulkan.wine_vkGetDeviceGroupPeerMemoryFeatures @125 + vkGetDeviceGroupPresentCapabilitiesKHR=winevulkan.wine_vkGetDeviceGroupPresentCapabilitiesKHR @126 + vkGetDeviceGroupSurfacePresentModesKHR=winevulkan.wine_vkGetDeviceGroupSurfacePresentModesKHR @127 + vkGetDeviceMemoryCommitment=winevulkan.wine_vkGetDeviceMemoryCommitment @128 + vkGetDeviceProcAddr=winevulkan.wine_vkGetDeviceProcAddr @129 + vkGetDeviceQueue=winevulkan.wine_vkGetDeviceQueue @130 + vkGetDeviceQueue2=winevulkan.wine_vkGetDeviceQueue2 @131 + vkGetDisplayModePropertiesKHR @132 PRIVATE + vkGetDisplayPlaneCapabilitiesKHR @133 PRIVATE + vkGetDisplayPlaneSupportedDisplaysKHR @134 PRIVATE + vkGetEventStatus=winevulkan.wine_vkGetEventStatus @135 + vkGetFenceStatus=winevulkan.wine_vkGetFenceStatus @136 + vkGetImageMemoryRequirements=winevulkan.wine_vkGetImageMemoryRequirements @137 + vkGetImageMemoryRequirements2=winevulkan.wine_vkGetImageMemoryRequirements2 @138 + vkGetImageSparseMemoryRequirements=winevulkan.wine_vkGetImageSparseMemoryRequirements @139 + vkGetImageSparseMemoryRequirements2=winevulkan.wine_vkGetImageSparseMemoryRequirements2 @140 + vkGetImageSubresourceLayout=winevulkan.wine_vkGetImageSubresourceLayout @141 + vkGetInstanceProcAddr=winevulkan.wine_vkGetInstanceProcAddr @142 + vkGetPhysicalDeviceDisplayPlanePropertiesKHR @143 PRIVATE + vkGetPhysicalDeviceDisplayPropertiesKHR @144 PRIVATE + vkGetPhysicalDeviceExternalBufferProperties=winevulkan.wine_vkGetPhysicalDeviceExternalBufferProperties @145 + vkGetPhysicalDeviceExternalFenceProperties=winevulkan.wine_vkGetPhysicalDeviceExternalFenceProperties @146 + vkGetPhysicalDeviceExternalSemaphoreProperties=winevulkan.wine_vkGetPhysicalDeviceExternalSemaphoreProperties @147 + vkGetPhysicalDeviceFeatures=winevulkan.wine_vkGetPhysicalDeviceFeatures @148 + vkGetPhysicalDeviceFeatures2=winevulkan.wine_vkGetPhysicalDeviceFeatures2 @149 + vkGetPhysicalDeviceFormatProperties=winevulkan.wine_vkGetPhysicalDeviceFormatProperties @150 + vkGetPhysicalDeviceFormatProperties2=winevulkan.wine_vkGetPhysicalDeviceFormatProperties2 @151 + vkGetPhysicalDeviceImageFormatProperties=winevulkan.wine_vkGetPhysicalDeviceImageFormatProperties @152 + vkGetPhysicalDeviceImageFormatProperties2=winevulkan.wine_vkGetPhysicalDeviceImageFormatProperties2 @153 + vkGetPhysicalDeviceMemoryProperties=winevulkan.wine_vkGetPhysicalDeviceMemoryProperties @154 + vkGetPhysicalDeviceMemoryProperties2=winevulkan.wine_vkGetPhysicalDeviceMemoryProperties2 @155 + vkGetPhysicalDevicePresentRectanglesKHR=winevulkan.wine_vkGetPhysicalDevicePresentRectanglesKHR @156 + vkGetPhysicalDeviceProperties=winevulkan.wine_vkGetPhysicalDeviceProperties @157 + vkGetPhysicalDeviceProperties2=winevulkan.wine_vkGetPhysicalDeviceProperties2 @158 + vkGetPhysicalDeviceQueueFamilyProperties=winevulkan.wine_vkGetPhysicalDeviceQueueFamilyProperties @159 + vkGetPhysicalDeviceQueueFamilyProperties2=winevulkan.wine_vkGetPhysicalDeviceQueueFamilyProperties2 @160 + vkGetPhysicalDeviceSparseImageFormatProperties=winevulkan.wine_vkGetPhysicalDeviceSparseImageFormatProperties @161 + vkGetPhysicalDeviceSparseImageFormatProperties2=winevulkan.wine_vkGetPhysicalDeviceSparseImageFormatProperties2 @162 + vkGetPhysicalDeviceSurfaceCapabilitiesKHR=winevulkan.wine_vkGetPhysicalDeviceSurfaceCapabilitiesKHR @163 + vkGetPhysicalDeviceSurfaceFormatsKHR=winevulkan.wine_vkGetPhysicalDeviceSurfaceFormatsKHR @164 + vkGetPhysicalDeviceSurfacePresentModesKHR=winevulkan.wine_vkGetPhysicalDeviceSurfacePresentModesKHR @165 + vkGetPhysicalDeviceSurfaceSupportKHR=winevulkan.wine_vkGetPhysicalDeviceSurfaceSupportKHR @166 + vkGetPhysicalDeviceWin32PresentationSupportKHR=winevulkan.wine_vkGetPhysicalDeviceWin32PresentationSupportKHR @167 + vkGetPipelineCacheData=winevulkan.wine_vkGetPipelineCacheData @168 + vkGetQueryPoolResults=winevulkan.wine_vkGetQueryPoolResults @169 + vkGetRenderAreaGranularity=winevulkan.wine_vkGetRenderAreaGranularity @170 + vkGetSwapchainImagesKHR=winevulkan.wine_vkGetSwapchainImagesKHR @171 + vkInvalidateMappedMemoryRanges=winevulkan.wine_vkInvalidateMappedMemoryRanges @172 + vkMapMemory=winevulkan.wine_vkMapMemory @173 + vkMergePipelineCaches=winevulkan.wine_vkMergePipelineCaches @174 + vkQueueBindSparse=winevulkan.wine_vkQueueBindSparse @175 + vkQueuePresentKHR=winevulkan.wine_vkQueuePresentKHR @176 + vkQueueSubmit=winevulkan.wine_vkQueueSubmit @177 + vkQueueWaitIdle=winevulkan.wine_vkQueueWaitIdle @178 + vkResetCommandBuffer=winevulkan.wine_vkResetCommandBuffer @179 + vkResetCommandPool=winevulkan.wine_vkResetCommandPool @180 + vkResetDescriptorPool=winevulkan.wine_vkResetDescriptorPool @181 + vkResetEvent=winevulkan.wine_vkResetEvent @182 + vkResetFences=winevulkan.wine_vkResetFences @183 + vkSetEvent=winevulkan.wine_vkSetEvent @184 + vkTrimCommandPool=winevulkan.wine_vkTrimCommandPool @185 + vkUnmapMemory=winevulkan.wine_vkUnmapMemory @186 + vkUpdateDescriptorSetWithTemplate=winevulkan.wine_vkUpdateDescriptorSetWithTemplate @187 + vkUpdateDescriptorSets=winevulkan.wine_vkUpdateDescriptorSets @188 + vkWaitForFences=winevulkan.wine_vkWaitForFences @189 diff --git a/lib64/wine/libwebservices.def b/lib64/wine/libwebservices.def new file mode 100644 index 0000000..31c5685 --- /dev/null +++ b/lib64/wine/libwebservices.def @@ -0,0 +1,198 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/webservices/webservices.spec; do not edit! + +LIBRARY webservices.dll + +EXPORTS + WsAbandonCall @1 PRIVATE + WsAbandonMessage @2 PRIVATE + WsAbortChannel @3 + WsAbortListener @4 PRIVATE + WsAbortServiceHost @5 PRIVATE + WsAbortServiceProxy @6 + WsAcceptChannel @7 + WsAddCustomHeader @8 + WsAddErrorString @9 PRIVATE + WsAddMappedHeader @10 + WsAddressMessage @11 + WsAlloc @12 + WsAsyncExecute @13 PRIVATE + WsCall @14 + WsCheckMustUnderstandHeaders @15 PRIVATE + WsCloseChannel @16 + WsCloseListener @17 + WsCloseServiceHost @18 PRIVATE + WsCloseServiceProxy @19 + WsCombineUrl @20 PRIVATE + WsCopyError @21 PRIVATE + WsCopyNode @22 + WsCreateChannel @23 + WsCreateChannelForListener @24 + WsCreateError @25 + WsCreateFaultFromError @26 PRIVATE + WsCreateHeap @27 + WsCreateListener @28 + WsCreateMessage @29 + WsCreateMessageForChannel @30 + WsCreateMetadata @31 PRIVATE + WsCreateReader @32 + WsCreateServiceEndpointFromTemplate @33 PRIVATE + WsCreateServiceHost @34 PRIVATE + WsCreateServiceProxy @35 + WsCreateServiceProxyFromTemplate @36 + WsCreateWriter @37 + WsCreateXmlBuffer @38 + WsCreateXmlSecurityToken @39 PRIVATE + WsDateTimeToFileTime @40 + WsDecodeUrl @41 + WsEncodeUrl @42 + WsEndReaderCanonicalization @43 PRIVATE + WsEndWriterCanonicalization @44 PRIVATE + WsFileTimeToDateTime @45 + WsFillBody @46 + WsFillReader @47 + WsFindAttribute @48 + WsFlushBody @49 + WsFlushWriter @50 + WsFreeChannel @51 + WsFreeError @52 + WsFreeHeap @53 + WsFreeListener @54 + WsFreeMessage @55 + WsFreeMetadata @56 PRIVATE + WsFreeReader @57 + WsFreeSecurityToken @58 PRIVATE + WsFreeServiceHost @59 PRIVATE + WsFreeServiceProxy @60 + WsFreeWriter @61 + WsGetChannelProperty @62 + WsGetCustomHeader @63 + WsGetDictionary @64 + WsGetErrorProperty @65 + WsGetErrorString @66 + WsGetFaultErrorDetail @67 PRIVATE + WsGetFaultErrorProperty @68 PRIVATE + WsGetHeader @69 + WsGetHeaderAttributes @70 PRIVATE + WsGetHeapProperty @71 + WsGetListenerProperty @72 + WsGetMappedHeader @73 PRIVATE + WsGetMessageProperty @74 + WsGetMetadataEndpoints @75 PRIVATE + WsGetMetadataProperty @76 PRIVATE + WsGetMissingMetadataDocumentAddress @77 PRIVATE + WsGetNamespaceFromPrefix @78 + WsGetOperationContextProperty @79 PRIVATE + WsGetPolicyAlternativeCount @80 PRIVATE + WsGetPolicyProperty @81 PRIVATE + WsGetPrefixFromNamespace @82 + WsGetReaderNode @83 + WsGetReaderPosition @84 + WsGetReaderProperty @85 + WsGetSecurityContextProperty @86 PRIVATE + WsGetSecurityTokenProperty @87 PRIVATE + WsGetServiceHostProperty @88 PRIVATE + WsGetServiceProxyProperty @89 + WsGetWriterPosition @90 + WsGetWriterProperty @91 + WsGetXmlAttribute @92 + WsInitializeMessage @93 + WsMarkHeaderAsUnderstood @94 PRIVATE + WsMatchPolicyAlternative @95 PRIVATE + WsMoveReader @96 + WsMoveWriter @97 + WsOpenChannel @98 + WsOpenListener @99 + WsOpenServiceHost @100 PRIVATE + WsOpenServiceProxy @101 + WsPullBytes @102 PRIVATE + WsPushBytes @103 PRIVATE + WsReadArray @104 PRIVATE + WsReadAttribute @105 + WsReadBody @106 + WsReadBytes @107 + WsReadChars @108 + WsReadCharsUtf8 @109 + WsReadElement @110 + WsReadEndAttribute @111 + WsReadEndElement @112 + WsReadEndpointAddressExtension @113 PRIVATE + WsReadEnvelopeEnd @114 + WsReadEnvelopeStart @115 + WsReadMessageEnd @116 + WsReadMessageStart @117 + WsReadMetadata @118 PRIVATE + WsReadNode @119 + WsReadQualifiedName @120 + WsReadStartAttribute @121 + WsReadStartElement @122 + WsReadToStartElement @123 + WsReadType @124 + WsReadValue @125 + WsReadXmlBuffer @126 + WsReadXmlBufferFromBytes @127 PRIVATE + WsReceiveMessage @128 + WsRegisterOperationForCancel @129 PRIVATE + WsRemoveCustomHeader @130 + WsRemoveHeader @131 + WsRemoveMappedHeader @132 + WsRemoveNode @133 PRIVATE + WsRequestReply @134 + WsRequestSecurityToken @135 PRIVATE + WsResetChannel @136 + WsResetError @137 + WsResetHeap @138 + WsResetListener @139 + WsResetMessage @140 + WsResetMetadata @141 PRIVATE + WsResetServiceHost @142 PRIVATE + WsResetServiceProxy @143 + WsRevokeSecurityContext @144 PRIVATE + WsSendFaultMessageForError @145 PRIVATE + WsSendMessage @146 + WsSendReplyMessage @147 + WsSetChannelProperty @148 + WsSetErrorProperty @149 + WsSetFaultErrorDetail @150 PRIVATE + WsSetFaultErrorProperty @151 PRIVATE + WsSetHeader @152 + WsSetInput @153 + WsSetInputToBuffer @154 + WsSetListenerProperty @155 + WsSetMessageProperty @156 + WsSetOutput @157 + WsSetOutputToBuffer @158 + WsSetReaderPosition @159 + WsSetWriterPosition @160 + WsShutdownSessionChannel @161 + WsSkipNode @162 + WsStartReaderCanonicalization @163 PRIVATE + WsStartWriterCanonicalization @164 PRIVATE + WsTrimXmlWhitespace @165 PRIVATE + WsVerifyXmlNCName @166 PRIVATE + WsWriteArray @167 + WsWriteAttribute @168 + WsWriteBody @169 + WsWriteBytes @170 + WsWriteChars @171 + WsWriteCharsUtf8 @172 + WsWriteElement @173 + WsWriteEndAttribute @174 + WsWriteEndCData @175 + WsWriteEndElement @176 + WsWriteEndStartElement @177 + WsWriteEnvelopeEnd @178 + WsWriteEnvelopeStart @179 + WsWriteMessageEnd @180 + WsWriteMessageStart @181 + WsWriteNode @182 + WsWriteQualifiedName @183 + WsWriteStartAttribute @184 + WsWriteStartCData @185 + WsWriteStartElement @186 + WsWriteText @187 + WsWriteType @188 + WsWriteValue @189 + WsWriteXmlBuffer @190 + WsWriteXmlBufferToBytes @191 + WsWriteXmlnsAttribute @192 + WsXmlStringEquals @193 diff --git a/lib64/wine/libwer.def b/lib64/wine/libwer.def new file mode 100644 index 0000000..5541239 --- /dev/null +++ b/lib64/wine/libwer.def @@ -0,0 +1,82 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/wer/wer.spec; do not edit! + +LIBRARY wer.dll + +EXPORTS + WerSysprepCleanup @1 PRIVATE + WerSysprepGeneralize @2 PRIVATE + WerSysprepSpecialize @3 PRIVATE + WerUnattendedSetup @4 PRIVATE + WerpAddAppCompatData @5 PRIVATE + WerpAddFile @6 PRIVATE + WerpAddMemoryBlock @7 PRIVATE + WerpAddRegisteredDataToReport @8 PRIVATE + WerpAddSecondaryParameter @9 PRIVATE + WerpAddTextToReport @10 PRIVATE + WerpArchiveReport @11 PRIVATE + WerpCancelResponseDownload @12 PRIVATE + WerpCancelUpload @13 PRIVATE + WerpCloseStore @14 PRIVATE + WerpCreateMachineStore @15 PRIVATE + WerpDeleteReport @16 PRIVATE + WerpDestroyWerString @17 PRIVATE + WerpDownloadResponse @18 PRIVATE + WerpDownloadResponseTemplate @19 PRIVATE + WerpEnumerateStoreNext @20 PRIVATE + WerpEnumerateStoreStart @21 PRIVATE + WerpExtractReportFiles @22 PRIVATE + WerpGetBucketId @23 PRIVATE + WerpGetDynamicParameter @24 PRIVATE + WerpGetEventType @25 PRIVATE + WerpGetFileByIndex @26 PRIVATE + WerpGetFilePathByIndex @27 PRIVATE + WerpGetNumFiles @28 PRIVATE + WerpGetNumSecParams @29 PRIVATE + WerpGetNumSigParams @30 PRIVATE + WerpGetReportFinalConsent @31 PRIVATE + WerpGetReportFlags @32 PRIVATE + WerpGetReportInformation @33 PRIVATE + WerpGetReportTime @34 PRIVATE + WerpGetReportType @35 PRIVATE + WerpGetResponseId @36 PRIVATE + WerpGetResponseUrl @37 PRIVATE + WerpGetSecParamByIndex @38 PRIVATE + WerpGetSigParamByIndex @39 PRIVATE + WerpGetStoreLocation @40 PRIVATE + WerpGetStoreType @41 PRIVATE + WerpGetTextFromReport @42 PRIVATE + WerpGetUIParamByIndex @43 PRIVATE + WerpGetUploadTime @44 PRIVATE + WerpGetWerStringData @45 PRIVATE + WerpIsTransportAvailable @46 PRIVATE + WerpLoadReport @47 PRIVATE + WerpOpenMachineArchive @48 PRIVATE + WerpOpenMachineQueue @49 PRIVATE + WerpOpenUserArchive @50 PRIVATE + WerpReportCancel @51 PRIVATE + WerpRestartApplication @52 PRIVATE + WerpSetDynamicParameter @53 PRIVATE + WerpSetEventName @54 PRIVATE + WerpSetReportFlags @55 PRIVATE + WerpSetReportInformation @56 PRIVATE + WerpSetReportTime @57 PRIVATE + WerpSetReportUploadContextToken @58 PRIVATE + WerpShowNXNotification @59 PRIVATE + WerpShowSecondLevelConsent @60 PRIVATE + WerpShowUpsellUI @61 PRIVATE + WerpSubmitReportFromStore @62 PRIVATE + WerpSvcReportFromMachineQueue @63 PRIVATE + WerAddExcludedApplication @64 + WerRemoveExcludedApplication @65 + WerReportAddDump @66 + WerReportAddFile @67 + WerReportCloseHandle @68 + WerReportCreate @69 + WerReportSetParameter @70 + WerReportSetUIOption @71 + WerReportSubmit @72 + WerpGetReportConsent @73 PRIVATE + WerpIsDisabled @74 PRIVATE + WerpOpenUserQueue @75 PRIVATE + WerpPromtUser @76 PRIVATE + WerpSetCallBack @77 PRIVATE diff --git a/lib64/wine/libwindowscodecs.def b/lib64/wine/libwindowscodecs.def new file mode 100644 index 0000000..aa0eb91 --- /dev/null +++ b/lib64/wine/libwindowscodecs.def @@ -0,0 +1,123 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/windowscodecs/windowscodecs.spec; do not edit! + +LIBRARY windowscodecs.dll + +EXPORTS + DllCanUnloadNow @1 PRIVATE + DllGetClassObject @2 PRIVATE + DllRegisterServer @3 PRIVATE + DllUnregisterServer @4 PRIVATE + IEnumString_Next_WIC_Proxy @5 PRIVATE + IEnumString_Reset_WIC_Proxy @6 PRIVATE + IPropertyBag2_Write_Proxy @7 + IWICBitmapClipper_Initialize_Proxy=IWICBitmapClipper_Initialize_Proxy_W @8 + IWICBitmapCodecInfo_DoesSupportAnimation_Proxy=IWICBitmapCodecInfo_DoesSupportAnimation_Proxy_W @9 + IWICBitmapCodecInfo_DoesSupportLossless_Proxy=IWICBitmapCodecInfo_DoesSupportLossless_Proxy_W @10 + IWICBitmapCodecInfo_DoesSupportMultiframe_Proxy=IWICBitmapCodecInfo_DoesSupportMultiframe_Proxy_W @11 + IWICBitmapCodecInfo_GetContainerFormat_Proxy=IWICBitmapCodecInfo_GetContainerFormat_Proxy_W @12 + IWICBitmapCodecInfo_GetDeviceManufacturer_Proxy=IWICBitmapCodecInfo_GetDeviceManufacturer_Proxy_W @13 + IWICBitmapCodecInfo_GetDeviceModels_Proxy=IWICBitmapCodecInfo_GetDeviceModels_Proxy_W @14 + IWICBitmapCodecInfo_GetFileExtensions_Proxy=IWICBitmapCodecInfo_GetFileExtensions_Proxy_W @15 + IWICBitmapCodecInfo_GetMimeTypes_Proxy=IWICBitmapCodecInfo_GetMimeTypes_Proxy_W @16 + IWICBitmapDecoder_CopyPalette_Proxy=IWICBitmapDecoder_CopyPalette_Proxy_W @17 + IWICBitmapDecoder_GetColorContexts_Proxy=IWICBitmapDecoder_GetColorContexts_Proxy_W @18 + IWICBitmapDecoder_GetDecoderInfo_Proxy=IWICBitmapDecoder_GetDecoderInfo_Proxy_W @19 + IWICBitmapDecoder_GetFrameCount_Proxy=IWICBitmapDecoder_GetFrameCount_Proxy_W @20 + IWICBitmapDecoder_GetFrame_Proxy=IWICBitmapDecoder_GetFrame_Proxy_W @21 + IWICBitmapDecoder_GetMetadataQueryReader_Proxy=IWICBitmapDecoder_GetMetadataQueryReader_Proxy_W @22 + IWICBitmapDecoder_GetPreview_Proxy=IWICBitmapDecoder_GetPreview_Proxy_W @23 + IWICBitmapDecoder_GetThumbnail_Proxy=IWICBitmapDecoder_GetThumbnail_Proxy_W @24 + IWICBitmapEncoder_Commit_Proxy=IWICBitmapEncoder_Commit_Proxy_W @25 + IWICBitmapEncoder_CreateNewFrame_Proxy=IWICBitmapEncoder_CreateNewFrame_Proxy_W @26 + IWICBitmapEncoder_GetEncoderInfo_Proxy=IWICBitmapEncoder_GetEncoderInfo_Proxy_W @27 + IWICBitmapEncoder_GetMetadataQueryWriter_Proxy=IWICBitmapEncoder_GetMetadataQueryWriter_Proxy_W @28 + IWICBitmapEncoder_Initialize_Proxy=IWICBitmapEncoder_Initialize_Proxy_W @29 + IWICBitmapEncoder_SetPalette_Proxy=IWICBitmapEncoder_SetPalette_Proxy_W @30 + IWICBitmapEncoder_SetThumbnail_Proxy=IWICBitmapEncoder_SetThumbnail_Proxy_W @31 + IWICBitmapFlipRotator_Initialize_Proxy=IWICBitmapFlipRotator_Initialize_Proxy_W @32 + IWICBitmapFrameDecode_GetColorContexts_Proxy=IWICBitmapFrameDecode_GetColorContexts_Proxy_W @33 + IWICBitmapFrameDecode_GetMetadataQueryReader_Proxy=IWICBitmapFrameDecode_GetMetadataQueryReader_Proxy_W @34 + IWICBitmapFrameDecode_GetThumbnail_Proxy=IWICBitmapFrameDecode_GetThumbnail_Proxy_W @35 + IWICBitmapFrameEncode_Commit_Proxy=IWICBitmapFrameEncode_Commit_Proxy_W @36 + IWICBitmapFrameEncode_GetMetadataQueryWriter_Proxy=IWICBitmapFrameEncode_GetMetadataQueryWriter_Proxy_W @37 + IWICBitmapFrameEncode_Initialize_Proxy=IWICBitmapFrameEncode_Initialize_Proxy_W @38 + IWICBitmapFrameEncode_SetColorContexts_Proxy=IWICBitmapFrameEncode_SetColorContexts_Proxy_W @39 + IWICBitmapFrameEncode_SetResolution_Proxy=IWICBitmapFrameEncode_SetResolution_Proxy_W @40 + IWICBitmapFrameEncode_SetSize_Proxy=IWICBitmapFrameEncode_SetSize_Proxy_W @41 + IWICBitmapFrameEncode_SetThumbnail_Proxy=IWICBitmapFrameEncode_SetThumbnail_Proxy_W @42 + IWICBitmapFrameEncode_WriteSource_Proxy=IWICBitmapFrameEncode_WriteSource_Proxy_W @43 + IWICBitmapLock_GetDataPointer_STA_Proxy=IWICBitmapLock_GetDataPointer_Proxy_W @44 + IWICBitmapLock_GetStride_Proxy=IWICBitmapLock_GetStride_Proxy_W @45 + IWICBitmapScaler_Initialize_Proxy=IWICBitmapScaler_Initialize_Proxy_W @46 + IWICBitmapSource_CopyPalette_Proxy=IWICBitmapSource_CopyPalette_Proxy_W @47 + IWICBitmapSource_CopyPixels_Proxy=IWICBitmapSource_CopyPixels_Proxy_W @48 + IWICBitmapSource_GetPixelFormat_Proxy=IWICBitmapSource_GetPixelFormat_Proxy_W @49 + IWICBitmapSource_GetResolution_Proxy=IWICBitmapSource_GetResolution_Proxy_W @50 + IWICBitmapSource_GetSize_Proxy=IWICBitmapSource_GetSize_Proxy_W @51 + IWICBitmap_Lock_Proxy=IWICBitmap_Lock_Proxy_W @52 + IWICBitmap_SetPalette_Proxy=IWICBitmap_SetPalette_Proxy_W @53 + IWICBitmap_SetResolution_Proxy=IWICBitmap_SetResolution_Proxy_W @54 + IWICColorContext_InitializeFromMemory_Proxy=IWICColorContext_InitializeFromMemory_Proxy_W @55 + IWICComponentFactory_CreateMetadataWriterFromReader_Proxy=IWICComponentFactory_CreateMetadataWriterFromReader_Proxy_W @56 + IWICComponentFactory_CreateQueryWriterFromBlockWriter_Proxy=IWICComponentFactory_CreateQueryWriterFromBlockWriter_Proxy_W @57 + IWICComponentInfo_GetAuthor_Proxy=IWICComponentInfo_GetAuthor_Proxy_W @58 + IWICComponentInfo_GetCLSID_Proxy=IWICComponentInfo_GetCLSID_Proxy_W @59 + IWICComponentInfo_GetFriendlyName_Proxy=IWICComponentInfo_GetFriendlyName_Proxy_W @60 + IWICComponentInfo_GetSpecVersion_Proxy=IWICComponentInfo_GetSpecVersion_Proxy_W @61 + IWICComponentInfo_GetVersion_Proxy=IWICComponentInfo_GetVersion_Proxy_W @62 + IWICFastMetadataEncoder_Commit_Proxy=IWICFastMetadataEncoder_Commit_Proxy_W @63 + IWICFastMetadataEncoder_GetMetadataQueryWriter_Proxy=IWICFastMetadataEncoder_GetMetadataQueryWriter_Proxy_W @64 + IWICFormatConverter_Initialize_Proxy=IWICFormatConverter_Initialize_Proxy_W @65 + IWICImagingFactory_CreateBitmapClipper_Proxy=IWICImagingFactory_CreateBitmapClipper_Proxy_W @66 + IWICImagingFactory_CreateBitmapFlipRotator_Proxy=IWICImagingFactory_CreateBitmapFlipRotator_Proxy_W @67 + IWICImagingFactory_CreateBitmapFromHBITMAP_Proxy=IWICImagingFactory_CreateBitmapFromHBITMAP_Proxy_W @68 + IWICImagingFactory_CreateBitmapFromHICON_Proxy=IWICImagingFactory_CreateBitmapFromHICON_Proxy_W @69 + IWICImagingFactory_CreateBitmapFromMemory_Proxy=IWICImagingFactory_CreateBitmapFromMemory_Proxy_W @70 + IWICImagingFactory_CreateBitmapFromSource_Proxy=IWICImagingFactory_CreateBitmapFromSource_Proxy_W @71 + IWICImagingFactory_CreateBitmapScaler_Proxy=IWICImagingFactory_CreateBitmapScaler_Proxy_W @72 + IWICImagingFactory_CreateBitmap_Proxy=IWICImagingFactory_CreateBitmap_Proxy_W @73 + IWICImagingFactory_CreateComponentInfo_Proxy=IWICImagingFactory_CreateComponentInfo_Proxy_W @74 + IWICImagingFactory_CreateDecoderFromFileHandle_Proxy=IWICImagingFactory_CreateDecoderFromFileHandle_Proxy_W @75 + IWICImagingFactory_CreateDecoderFromFilename_Proxy=IWICImagingFactory_CreateDecoderFromFilename_Proxy_W @76 + IWICImagingFactory_CreateDecoderFromStream_Proxy=IWICImagingFactory_CreateDecoderFromStream_Proxy_W @77 + IWICImagingFactory_CreateEncoder_Proxy=IWICImagingFactory_CreateEncoder_Proxy_W @78 + IWICImagingFactory_CreateFastMetadataEncoderFromDecoder_Proxy=IWICImagingFactory_CreateFastMetadataEncoderFromDecoder_Proxy_W @79 + IWICImagingFactory_CreateFastMetadataEncoderFromFrameDecode_Proxy=IWICImagingFactory_CreateFastMetadataEncoderFromFrameDecode_Proxy_W @80 + IWICImagingFactory_CreateFormatConverter_Proxy=IWICImagingFactory_CreateFormatConverter_Proxy_W @81 + IWICImagingFactory_CreatePalette_Proxy=IWICImagingFactory_CreatePalette_Proxy_W @82 + IWICImagingFactory_CreateQueryWriterFromReader_Proxy=IWICImagingFactory_CreateQueryWriterFromReader_Proxy_W @83 + IWICImagingFactory_CreateQueryWriter_Proxy=IWICImagingFactory_CreateQueryWriter_Proxy_W @84 + IWICImagingFactory_CreateStream_Proxy=IWICImagingFactory_CreateStream_Proxy_W @85 + IWICMetadataBlockReader_GetCount_Proxy=IWICMetadataBlockReader_GetCount_Proxy_W @86 + IWICMetadataBlockReader_GetReaderByIndex_Proxy=IWICMetadataBlockReader_GetReaderByIndex_Proxy_W @87 + IWICMetadataQueryReader_GetContainerFormat_Proxy=IWICMetadataQueryReader_GetContainerFormat_Proxy_W @88 + IWICMetadataQueryReader_GetEnumerator_Proxy=IWICMetadataQueryReader_GetEnumerator_Proxy_W @89 + IWICMetadataQueryReader_GetLocation_Proxy=IWICMetadataQueryReader_GetLocation_Proxy_W @90 + IWICMetadataQueryReader_GetMetadataByName_Proxy=IWICMetadataQueryReader_GetMetadataByName_Proxy_W @91 + IWICMetadataQueryWriter_RemoveMetadataByName_Proxy=IWICMetadataQueryWriter_RemoveMetadataByName_Proxy_W @92 + IWICMetadataQueryWriter_SetMetadataByName_Proxy=IWICMetadataQueryWriter_SetMetadataByName_Proxy_W @93 + IWICPalette_GetColorCount_Proxy=IWICPalette_GetColorCount_Proxy_W @94 + IWICPalette_GetColors_Proxy=IWICPalette_GetColors_Proxy_W @95 + IWICPalette_GetType_Proxy=IWICPalette_GetType_Proxy_W @96 + IWICPalette_HasAlpha_Proxy=IWICPalette_HasAlpha_Proxy_W @97 + IWICPalette_InitializeCustom_Proxy=IWICPalette_InitializeCustom_Proxy_W @98 + IWICPalette_InitializeFromBitmap_Proxy=IWICPalette_InitializeFromBitmap_Proxy_W @99 + IWICPalette_InitializeFromPalette_Proxy=IWICPalette_InitializeFromPalette_Proxy_W @100 + IWICPalette_InitializePredefined_Proxy=IWICPalette_InitializePredefined_Proxy_W @101 + IWICPixelFormatInfo_GetBitsPerPixel_Proxy=IWICPixelFormatInfo_GetBitsPerPixel_Proxy_W @102 + IWICPixelFormatInfo_GetChannelCount_Proxy=IWICPixelFormatInfo_GetChannelCount_Proxy_W @103 + IWICPixelFormatInfo_GetChannelMask_Proxy=IWICPixelFormatInfo_GetChannelMask_Proxy_W @104 + IWICStream_InitializeFromIStream_Proxy=IWICStream_InitializeFromIStream_Proxy_W @105 + IWICStream_InitializeFromMemory_Proxy=IWICStream_InitializeFromMemory_Proxy_W @106 + WICConvertBitmapSource @107 + WICCreateBitmapFromSection @108 + WICCreateBitmapFromSectionEx @109 + WICCreateColorContext_Proxy @110 + WICCreateImagingFactory_Proxy @111 + WICGetMetadataContentSize @112 PRIVATE + WICMapGuidToShortName @113 + WICMapSchemaToName @114 + WICMapShortNameToGuid @115 + WICMatchMetadataContent @116 PRIVATE + WICSerializeMetadataContent @117 PRIVATE + WICSetEncoderFormat_Proxy @118 diff --git a/lib64/wine/libwindowscodecsext.def b/lib64/wine/libwindowscodecsext.def new file mode 100644 index 0000000..5bc4579 --- /dev/null +++ b/lib64/wine/libwindowscodecsext.def @@ -0,0 +1,8 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/windowscodecsext/windowscodecsext.spec; do not edit! + +LIBRARY windowscodecsext.dll + +EXPORTS + DllGetClassObject @1 PRIVATE + IWICColorTransform_Initialize_Proxy=IWICColorTransform_Initialize_Proxy_W @2 + WICCreateColorTransform_Proxy @3 diff --git a/lib64/wine/libwinecrt0.a b/lib64/wine/libwinecrt0.a new file mode 100644 index 0000000..2ae6d88 Binary files /dev/null and b/lib64/wine/libwinecrt0.a differ diff --git a/lib64/wine/libwined3d.def b/lib64/wine/libwined3d.def new file mode 100644 index 0000000..12c7c98 --- /dev/null +++ b/lib64/wine/libwined3d.def @@ -0,0 +1,310 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/wined3d/wined3d.spec; do not edit! + +LIBRARY wined3d.dll + +EXPORTS + wined3d_mutex_lock @1 + wined3d_mutex_unlock @2 + wined3d_calculate_format_pitch @3 + wined3d_check_depth_stencil_match @4 + wined3d_check_device_format @5 + wined3d_check_device_format_conversion @6 + wined3d_check_device_multisample_type @7 + wined3d_check_device_type @8 + wined3d_create @9 + wined3d_decref @10 + wined3d_enum_adapter_modes @11 + wined3d_find_closest_matching_adapter_mode @12 + wined3d_get_adapter_count @13 + wined3d_get_adapter_display_mode @14 + wined3d_get_adapter_identifier @15 + wined3d_get_adapter_mode_count @16 + wined3d_get_adapter_raster_status @17 + wined3d_get_device_caps @18 + wined3d_get_output_desc @19 + wined3d_incref @20 + wined3d_register_software_device @21 + wined3d_set_adapter_display_mode @22 + wined3d_blend_state_create @23 + wined3d_blend_state_decref @24 + wined3d_blend_state_get_parent @25 + wined3d_blend_state_incref @26 + wined3d_buffer_create @27 + wined3d_buffer_decref @28 + wined3d_buffer_get_parent @29 + wined3d_buffer_get_resource @30 + wined3d_buffer_incref @31 + wined3d_device_acquire_focus_window @32 + wined3d_device_begin_scene @33 + wined3d_device_begin_stateblock @34 + wined3d_device_clear @35 + wined3d_device_clear_rendertarget_view @36 + wined3d_device_clear_unordered_access_view_uint @37 + wined3d_device_copy_resource @38 + wined3d_device_copy_sub_resource_region @39 + wined3d_device_copy_uav_counter @40 + wined3d_device_create @41 + wined3d_device_decref @42 + wined3d_device_dispatch_compute @43 + wined3d_device_dispatch_compute_indirect @44 + wined3d_device_draw_indexed_primitive @45 + wined3d_device_draw_indexed_primitive_instanced @46 + wined3d_device_draw_indexed_primitive_instanced_indirect @47 + wined3d_device_draw_primitive @48 + wined3d_device_draw_primitive_instanced @49 + wined3d_device_draw_primitive_instanced_indirect @50 + wined3d_device_end_scene @51 + wined3d_device_end_stateblock @52 + wined3d_device_evict_managed_resources @53 + wined3d_device_get_available_texture_mem @54 + wined3d_device_get_base_vertex_index @55 + wined3d_device_get_blend_state @56 + wined3d_device_get_clip_plane @57 + wined3d_device_get_clip_status @58 + wined3d_device_get_compute_shader @59 + wined3d_device_get_constant_buffer @60 + wined3d_device_get_creation_parameters @61 + wined3d_device_get_cs_resource_view @62 + wined3d_device_get_cs_sampler @63 + wined3d_device_get_cs_uav @64 + wined3d_device_get_depth_stencil_view @65 + wined3d_device_get_device_caps @66 + wined3d_device_get_display_mode @67 + wined3d_device_get_domain_shader @68 + wined3d_device_get_ds_resource_view @69 + wined3d_device_get_ds_sampler @70 + wined3d_device_get_feature_level @71 + wined3d_device_get_gamma_ramp @72 + wined3d_device_get_geometry_shader @73 + wined3d_device_get_gs_resource_view @74 + wined3d_device_get_gs_sampler @75 + wined3d_device_get_hs_resource_view @76 + wined3d_device_get_hs_sampler @77 + wined3d_device_get_hull_shader @78 + wined3d_device_get_index_buffer @79 + wined3d_device_get_light @80 + wined3d_device_get_light_enable @81 + wined3d_device_get_material @82 + wined3d_device_get_max_frame_latency @83 + wined3d_device_get_npatch_mode @84 + wined3d_device_get_pixel_shader @85 + wined3d_device_get_predication @86 + wined3d_device_get_primitive_type @87 + wined3d_device_get_ps_consts_b @88 + wined3d_device_get_ps_consts_f @89 + wined3d_device_get_ps_consts_i @90 + wined3d_device_get_ps_resource_view @91 + wined3d_device_get_ps_sampler @92 + wined3d_device_get_raster_status @93 + wined3d_device_get_rasterizer_state @94 + wined3d_device_get_render_state @95 + wined3d_device_get_rendertarget_view @96 + wined3d_device_get_sampler_state @97 + wined3d_device_get_scissor_rects @98 + wined3d_device_get_software_vertex_processing @99 + wined3d_device_get_stream_output @100 + wined3d_device_get_stream_source @101 + wined3d_device_get_stream_source_freq @102 + wined3d_device_get_swapchain @103 + wined3d_device_get_swapchain_count @104 + wined3d_device_get_texture @105 + wined3d_device_get_texture_stage_state @106 + wined3d_device_get_transform @107 + wined3d_device_get_unordered_access_view @108 + wined3d_device_get_vertex_declaration @109 + wined3d_device_get_vertex_shader @110 + wined3d_device_get_viewports @111 + wined3d_device_get_vs_consts_b @112 + wined3d_device_get_vs_consts_f @113 + wined3d_device_get_vs_consts_i @114 + wined3d_device_get_vs_resource_view @115 + wined3d_device_get_vs_sampler @116 + wined3d_device_get_wined3d @117 + wined3d_device_incref @118 + wined3d_device_multiply_transform @119 + wined3d_device_process_vertices @120 + wined3d_device_release_focus_window @121 + wined3d_device_reset @122 + wined3d_device_resolve_sub_resource @123 + wined3d_device_restore_fullscreen_window @124 + wined3d_device_set_base_vertex_index @125 + wined3d_device_set_blend_state @126 + wined3d_device_set_clip_plane @127 + wined3d_device_set_clip_status @128 + wined3d_device_set_compute_shader @129 + wined3d_device_set_constant_buffer @130 + wined3d_device_set_cs_resource_view @131 + wined3d_device_set_cs_sampler @132 + wined3d_device_set_cs_uav @133 + wined3d_device_set_cursor_position @134 + wined3d_device_set_cursor_properties @135 + wined3d_device_set_depth_stencil_view @136 + wined3d_device_set_dialog_box_mode @137 + wined3d_device_set_domain_shader @138 + wined3d_device_set_ds_resource_view @139 + wined3d_device_set_ds_sampler @140 + wined3d_device_set_gamma_ramp @141 + wined3d_device_set_geometry_shader @142 + wined3d_device_set_gs_resource_view @143 + wined3d_device_set_gs_sampler @144 + wined3d_device_set_hs_resource_view @145 + wined3d_device_set_hs_sampler @146 + wined3d_device_set_hull_shader @147 + wined3d_device_set_index_buffer @148 + wined3d_device_set_light @149 + wined3d_device_set_light_enable @150 + wined3d_device_set_material @151 + wined3d_device_set_max_frame_latency @152 + wined3d_device_set_multithreaded @153 + wined3d_device_set_npatch_mode @154 + wined3d_device_set_pixel_shader @155 + wined3d_device_set_predication @156 + wined3d_device_set_primitive_type @157 + wined3d_device_set_ps_consts_b @158 + wined3d_device_set_ps_consts_f @159 + wined3d_device_set_ps_consts_i @160 + wined3d_device_set_ps_resource_view @161 + wined3d_device_set_ps_sampler @162 + wined3d_device_set_rasterizer_state @163 + wined3d_device_set_render_state @164 + wined3d_device_set_rendertarget_view @165 + wined3d_device_set_sampler_state @166 + wined3d_device_set_scissor_rects @167 + wined3d_device_set_software_vertex_processing @168 + wined3d_device_set_stream_output @169 + wined3d_device_set_stream_source @170 + wined3d_device_set_stream_source_freq @171 + wined3d_device_set_texture @172 + wined3d_device_set_texture_stage_state @173 + wined3d_device_set_transform @174 + wined3d_device_set_unordered_access_view @175 + wined3d_device_set_vertex_declaration @176 + wined3d_device_set_vertex_shader @177 + wined3d_device_set_viewports @178 + wined3d_device_set_vs_consts_b @179 + wined3d_device_set_vs_consts_f @180 + wined3d_device_set_vs_consts_i @181 + wined3d_device_set_vs_resource_view @182 + wined3d_device_set_vs_sampler @183 + wined3d_device_setup_fullscreen_window @184 + wined3d_device_show_cursor @185 + wined3d_device_update_sub_resource @186 + wined3d_device_update_texture @187 + wined3d_device_validate_device @188 + wined3d_palette_create @189 + wined3d_palette_decref @190 + wined3d_palette_get_entries @191 + wined3d_palette_apply_to_dc @192 + wined3d_palette_incref @193 + wined3d_palette_set_entries @194 + wined3d_query_create @195 + wined3d_query_decref @196 + wined3d_query_get_data @197 + wined3d_query_get_data_size @198 + wined3d_query_get_parent @199 + wined3d_query_get_type @200 + wined3d_query_incref @201 + wined3d_query_issue @202 + wined3d_rasterizer_state_create @203 + wined3d_rasterizer_state_decref @204 + wined3d_rasterizer_state_get_parent @205 + wined3d_rasterizer_state_incref @206 + wined3d_resource_get_desc @207 + wined3d_resource_get_parent @208 + wined3d_resource_get_priority @209 + wined3d_resource_map @210 + wined3d_resource_map_info @211 + wined3d_resource_preload @212 + wined3d_resource_set_parent @213 + wined3d_resource_set_priority @214 + wined3d_resource_unmap @215 + wined3d_resource_update_info @216 + wined3d_rendertarget_view_create @217 + wined3d_rendertarget_view_create_from_sub_resource @218 + wined3d_rendertarget_view_decref @219 + wined3d_rendertarget_view_get_parent @220 + wined3d_rendertarget_view_get_resource @221 + wined3d_rendertarget_view_get_sub_resource_parent @222 + wined3d_rendertarget_view_incref @223 + wined3d_rendertarget_view_set_parent @224 + wined3d_sampler_create @225 + wined3d_sampler_decref @226 + wined3d_sampler_get_parent @227 + wined3d_sampler_incref @228 + wined3d_shader_create_cs @229 + wined3d_shader_create_ds @230 + wined3d_shader_create_gs @231 + wined3d_shader_create_hs @232 + wined3d_shader_create_ps @233 + wined3d_shader_create_vs @234 + wined3d_shader_decref @235 + wined3d_shader_get_byte_code @236 + wined3d_shader_get_parent @237 + wined3d_shader_incref @238 + wined3d_shader_set_local_constants_float @239 + wined3d_shader_resource_view_create @240 + wined3d_shader_resource_view_decref @241 + wined3d_shader_resource_view_generate_mipmaps @242 + wined3d_shader_resource_view_get_parent @243 + wined3d_shader_resource_view_incref @244 + wined3d_stateblock_apply @245 + wined3d_stateblock_capture @246 + wined3d_stateblock_create @247 + wined3d_stateblock_decref @248 + wined3d_stateblock_incref @249 + wined3d_swapchain_create @250 + wined3d_swapchain_decref @251 + wined3d_swapchain_get_back_buffer @252 + wined3d_swapchain_get_device @253 + wined3d_swapchain_get_display_mode @254 + wined3d_swapchain_get_front_buffer_data @255 + wined3d_swapchain_get_gamma_ramp @256 + wined3d_swapchain_get_parent @257 + wined3d_swapchain_get_desc @258 + wined3d_swapchain_get_raster_status @259 + wined3d_swapchain_incref @260 + wined3d_swapchain_present @261 + wined3d_swapchain_resize_buffers @262 + wined3d_swapchain_resize_target @263 + wined3d_swapchain_set_fullscreen @264 + wined3d_swapchain_set_gamma_ramp @265 + wined3d_swapchain_set_palette @266 + wined3d_swapchain_set_window @267 + wined3d_texture_add_dirty_region @268 + wined3d_texture_blt @269 + wined3d_texture_create @270 + wined3d_texture_decref @271 + wined3d_texture_from_resource @272 + wined3d_texture_get_dc @273 + wined3d_texture_get_level_count @274 + wined3d_texture_get_lod @275 + wined3d_texture_get_overlay_position @276 + wined3d_texture_get_parent @277 + wined3d_texture_get_pitch @278 + wined3d_texture_get_resource @279 + wined3d_texture_get_sub_resource_desc @280 + wined3d_texture_get_sub_resource_parent @281 + wined3d_texture_incref @282 + wined3d_texture_release_dc @283 + wined3d_texture_set_color_key @284 + wined3d_texture_set_lod @285 + wined3d_texture_set_overlay_position @286 + wined3d_texture_set_sub_resource_parent @287 + wined3d_texture_update_desc @288 + wined3d_texture_update_overlay @289 + wined3d_unordered_access_view_create @290 + wined3d_unordered_access_view_decref @291 + wined3d_unordered_access_view_get_parent @292 + wined3d_unordered_access_view_incref @293 + wined3d_vertex_declaration_create @294 + wined3d_vertex_declaration_create_from_fvf @295 + wined3d_vertex_declaration_decref @296 + wined3d_vertex_declaration_get_parent @297 + wined3d_vertex_declaration_incref @298 + wined3d_extract_shader_input_signature_from_dxbc @299 + wined3d_dxt1_decode @300 + wined3d_dxt1_encode @301 + wined3d_dxt3_decode @302 + wined3d_dxt3_encode @303 + wined3d_dxt5_decode @304 + wined3d_dxt5_encode @305 diff --git a/lib64/wine/libwinevulkan.def b/lib64/wine/libwinevulkan.def new file mode 100644 index 0000000..e236d33 --- /dev/null +++ b/lib64/wine/libwinevulkan.def @@ -0,0 +1,202 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/winevulkan/winevulkan.spec; do not edit! + +LIBRARY winevulkan.dll + +EXPORTS + vk_icdGetInstanceProcAddr=wine_vk_icdGetInstanceProcAddr @1 PRIVATE + vk_icdNegotiateLoaderICDInterfaceVersion=wine_vk_icdNegotiateLoaderICDInterfaceVersion @2 PRIVATE + native_vkGetInstanceProcAddrWINE @3 + __wine_get_native_VkDevice @4 + __wine_get_native_VkInstance @5 + __wine_get_native_VkPhysicalDevice @6 + __wine_get_wrapped_VkPhysicalDevice @7 + __wine_get_native_VkQueue @8 + wine_vkAcquireNextImage2KHR @9 PRIVATE + wine_vkAcquireNextImageKHR @10 PRIVATE + wine_vkAllocateCommandBuffers @11 PRIVATE + wine_vkAllocateDescriptorSets @12 PRIVATE + wine_vkAllocateMemory @13 PRIVATE + wine_vkBeginCommandBuffer @14 PRIVATE + wine_vkBindBufferMemory @15 PRIVATE + wine_vkBindBufferMemory2 @16 PRIVATE + wine_vkBindImageMemory @17 PRIVATE + wine_vkBindImageMemory2 @18 PRIVATE + wine_vkCmdBeginQuery @19 PRIVATE + wine_vkCmdBeginRenderPass @20 PRIVATE + wine_vkCmdBindDescriptorSets @21 PRIVATE + wine_vkCmdBindIndexBuffer @22 PRIVATE + wine_vkCmdBindPipeline @23 PRIVATE + wine_vkCmdBindVertexBuffers @24 PRIVATE + wine_vkCmdBlitImage @25 PRIVATE + wine_vkCmdClearAttachments @26 PRIVATE + wine_vkCmdClearColorImage @27 PRIVATE + wine_vkCmdClearDepthStencilImage @28 PRIVATE + wine_vkCmdCopyBuffer @29 PRIVATE + wine_vkCmdCopyBufferToImage @30 PRIVATE + wine_vkCmdCopyImage @31 PRIVATE + wine_vkCmdCopyImageToBuffer @32 PRIVATE + wine_vkCmdCopyQueryPoolResults @33 PRIVATE + wine_vkCmdDispatch @34 PRIVATE + wine_vkCmdDispatchBase @35 PRIVATE + wine_vkCmdDispatchIndirect @36 PRIVATE + wine_vkCmdDraw @37 PRIVATE + wine_vkCmdDrawIndexed @38 PRIVATE + wine_vkCmdDrawIndexedIndirect @39 PRIVATE + wine_vkCmdDrawIndirect @40 PRIVATE + wine_vkCmdEndQuery @41 PRIVATE + wine_vkCmdEndRenderPass @42 PRIVATE + wine_vkCmdExecuteCommands @43 PRIVATE + wine_vkCmdFillBuffer @44 PRIVATE + wine_vkCmdNextSubpass @45 PRIVATE + wine_vkCmdPipelineBarrier @46 PRIVATE + wine_vkCmdPushConstants @47 PRIVATE + wine_vkCmdResetEvent @48 PRIVATE + wine_vkCmdResetQueryPool @49 PRIVATE + wine_vkCmdResolveImage @50 PRIVATE + wine_vkCmdSetBlendConstants @51 PRIVATE + wine_vkCmdSetDepthBias @52 PRIVATE + wine_vkCmdSetDepthBounds @53 PRIVATE + wine_vkCmdSetDeviceMask @54 PRIVATE + wine_vkCmdSetEvent @55 PRIVATE + wine_vkCmdSetLineWidth @56 PRIVATE + wine_vkCmdSetScissor @57 PRIVATE + wine_vkCmdSetStencilCompareMask @58 PRIVATE + wine_vkCmdSetStencilReference @59 PRIVATE + wine_vkCmdSetStencilWriteMask @60 PRIVATE + wine_vkCmdSetViewport @61 PRIVATE + wine_vkCmdUpdateBuffer @62 PRIVATE + wine_vkCmdWaitEvents @63 PRIVATE + wine_vkCmdWriteTimestamp @64 PRIVATE + wine_vkCreateBuffer @65 PRIVATE + wine_vkCreateBufferView @66 PRIVATE + wine_vkCreateCommandPool @67 PRIVATE + wine_vkCreateComputePipelines @68 PRIVATE + wine_vkCreateDescriptorPool @69 PRIVATE + wine_vkCreateDescriptorSetLayout @70 PRIVATE + wine_vkCreateDescriptorUpdateTemplate @71 PRIVATE + wine_vkCreateDevice @72 PRIVATE + vkCreateDisplayModeKHR @73 PRIVATE + vkCreateDisplayPlaneSurfaceKHR @74 PRIVATE + wine_vkCreateEvent @75 PRIVATE + wine_vkCreateFence @76 PRIVATE + wine_vkCreateFramebuffer @77 PRIVATE + wine_vkCreateGraphicsPipelines @78 PRIVATE + wine_vkCreateImage @79 PRIVATE + wine_vkCreateImageView @80 PRIVATE + wine_vkCreateInstance @81 PRIVATE + wine_vkCreatePipelineCache @82 PRIVATE + wine_vkCreatePipelineLayout @83 PRIVATE + wine_vkCreateQueryPool @84 PRIVATE + wine_vkCreateRenderPass @85 PRIVATE + wine_vkCreateSampler @86 PRIVATE + wine_vkCreateSamplerYcbcrConversion @87 PRIVATE + wine_vkCreateSemaphore @88 PRIVATE + wine_vkCreateShaderModule @89 PRIVATE + vkCreateSharedSwapchainsKHR @90 PRIVATE + wine_vkCreateSwapchainKHR @91 PRIVATE + wine_vkCreateWin32SurfaceKHR @92 PRIVATE + wine_vkDestroyBuffer @93 PRIVATE + wine_vkDestroyBufferView @94 PRIVATE + wine_vkDestroyCommandPool @95 PRIVATE + wine_vkDestroyDescriptorPool @96 PRIVATE + wine_vkDestroyDescriptorSetLayout @97 PRIVATE + wine_vkDestroyDescriptorUpdateTemplate @98 PRIVATE + wine_vkDestroyDevice @99 PRIVATE + wine_vkDestroyEvent @100 PRIVATE + wine_vkDestroyFence @101 PRIVATE + wine_vkDestroyFramebuffer @102 PRIVATE + wine_vkDestroyImage @103 PRIVATE + wine_vkDestroyImageView @104 PRIVATE + wine_vkDestroyInstance @105 PRIVATE + wine_vkDestroyPipeline @106 PRIVATE + wine_vkDestroyPipelineCache @107 PRIVATE + wine_vkDestroyPipelineLayout @108 PRIVATE + wine_vkDestroyQueryPool @109 PRIVATE + wine_vkDestroyRenderPass @110 PRIVATE + wine_vkDestroySampler @111 PRIVATE + wine_vkDestroySamplerYcbcrConversion @112 PRIVATE + wine_vkDestroySemaphore @113 PRIVATE + wine_vkDestroyShaderModule @114 PRIVATE + wine_vkDestroySurfaceKHR @115 PRIVATE + wine_vkDestroySwapchainKHR @116 PRIVATE + wine_vkDeviceWaitIdle @117 PRIVATE + wine_vkEndCommandBuffer @118 PRIVATE + wine_vkEnumerateDeviceExtensionProperties @119 PRIVATE + wine_vkEnumerateDeviceLayerProperties @120 PRIVATE + wine_vkEnumerateInstanceExtensionProperties @121 PRIVATE + wine_vkEnumerateInstanceLayerProperties @122 PRIVATE + wine_vkEnumerateInstanceVersion @123 PRIVATE + wine_vkEnumeratePhysicalDeviceGroups @124 PRIVATE + wine_vkEnumeratePhysicalDevices @125 PRIVATE + wine_vkFlushMappedMemoryRanges @126 PRIVATE + wine_vkFreeCommandBuffers @127 PRIVATE + wine_vkFreeDescriptorSets @128 PRIVATE + wine_vkFreeMemory @129 PRIVATE + wine_vkGetBufferMemoryRequirements @130 PRIVATE + wine_vkGetBufferMemoryRequirements2 @131 PRIVATE + wine_vkGetDescriptorSetLayoutSupport @132 PRIVATE + wine_vkGetDeviceGroupPeerMemoryFeatures @133 PRIVATE + wine_vkGetDeviceGroupPresentCapabilitiesKHR @134 PRIVATE + wine_vkGetDeviceGroupSurfacePresentModesKHR @135 PRIVATE + wine_vkGetDeviceMemoryCommitment @136 PRIVATE + wine_vkGetDeviceProcAddr @137 PRIVATE + wine_vkGetDeviceQueue @138 PRIVATE + wine_vkGetDeviceQueue2 @139 PRIVATE + vkGetDisplayModePropertiesKHR @140 PRIVATE + vkGetDisplayPlaneCapabilitiesKHR @141 PRIVATE + vkGetDisplayPlaneSupportedDisplaysKHR @142 PRIVATE + wine_vkGetEventStatus @143 PRIVATE + wine_vkGetFenceStatus @144 PRIVATE + wine_vkGetImageMemoryRequirements @145 PRIVATE + wine_vkGetImageMemoryRequirements2 @146 PRIVATE + wine_vkGetImageSparseMemoryRequirements @147 PRIVATE + wine_vkGetImageSparseMemoryRequirements2 @148 PRIVATE + wine_vkGetImageSubresourceLayout @149 PRIVATE + wine_vkGetInstanceProcAddr @150 PRIVATE + vkGetPhysicalDeviceDisplayPlanePropertiesKHR @151 PRIVATE + vkGetPhysicalDeviceDisplayPropertiesKHR @152 PRIVATE + wine_vkGetPhysicalDeviceExternalBufferProperties @153 PRIVATE + wine_vkGetPhysicalDeviceExternalFenceProperties @154 PRIVATE + wine_vkGetPhysicalDeviceExternalSemaphoreProperties @155 PRIVATE + wine_vkGetPhysicalDeviceFeatures @156 PRIVATE + wine_vkGetPhysicalDeviceFeatures2 @157 PRIVATE + wine_vkGetPhysicalDeviceFormatProperties @158 PRIVATE + wine_vkGetPhysicalDeviceFormatProperties2 @159 PRIVATE + wine_vkGetPhysicalDeviceImageFormatProperties @160 PRIVATE + wine_vkGetPhysicalDeviceImageFormatProperties2 @161 PRIVATE + wine_vkGetPhysicalDeviceMemoryProperties @162 PRIVATE + wine_vkGetPhysicalDeviceMemoryProperties2 @163 PRIVATE + wine_vkGetPhysicalDevicePresentRectanglesKHR @164 PRIVATE + wine_vkGetPhysicalDeviceProperties @165 PRIVATE + wine_vkGetPhysicalDeviceProperties2 @166 PRIVATE + wine_vkGetPhysicalDeviceQueueFamilyProperties @167 PRIVATE + wine_vkGetPhysicalDeviceQueueFamilyProperties2 @168 PRIVATE + wine_vkGetPhysicalDeviceSparseImageFormatProperties @169 PRIVATE + wine_vkGetPhysicalDeviceSparseImageFormatProperties2 @170 PRIVATE + wine_vkGetPhysicalDeviceSurfaceCapabilitiesKHR @171 PRIVATE + wine_vkGetPhysicalDeviceSurfaceFormatsKHR @172 PRIVATE + wine_vkGetPhysicalDeviceSurfacePresentModesKHR @173 PRIVATE + wine_vkGetPhysicalDeviceSurfaceSupportKHR @174 PRIVATE + wine_vkGetPhysicalDeviceWin32PresentationSupportKHR @175 PRIVATE + wine_vkGetPipelineCacheData @176 PRIVATE + wine_vkGetQueryPoolResults @177 PRIVATE + wine_vkGetRenderAreaGranularity @178 PRIVATE + wine_vkGetSwapchainImagesKHR @179 PRIVATE + wine_vkInvalidateMappedMemoryRanges @180 PRIVATE + wine_vkMapMemory @181 PRIVATE + wine_vkMergePipelineCaches @182 PRIVATE + wine_vkQueueBindSparse @183 PRIVATE + wine_vkQueuePresentKHR @184 PRIVATE + wine_vkQueueSubmit @185 PRIVATE + wine_vkQueueWaitIdle @186 PRIVATE + wine_vkResetCommandBuffer @187 PRIVATE + wine_vkResetCommandPool @188 PRIVATE + wine_vkResetDescriptorPool @189 PRIVATE + wine_vkResetEvent @190 PRIVATE + wine_vkResetFences @191 PRIVATE + wine_vkSetEvent @192 PRIVATE + wine_vkTrimCommandPool @193 PRIVATE + wine_vkUnmapMemory @194 PRIVATE + wine_vkUpdateDescriptorSetWithTemplate @195 PRIVATE + wine_vkUpdateDescriptorSets @196 PRIVATE + wine_vkWaitForFences @197 PRIVATE diff --git a/lib64/wine/libwinhttp.def b/lib64/wine/libwinhttp.def new file mode 100644 index 0000000..2fedc2b --- /dev/null +++ b/lib64/wine/libwinhttp.def @@ -0,0 +1,36 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/winhttp/winhttp.spec; do not edit! + +LIBRARY winhttp.dll + +EXPORTS + DllCanUnloadNow @1 PRIVATE + DllGetClassObject @2 PRIVATE + DllRegisterServer @3 PRIVATE + DllUnregisterServer @4 PRIVATE + WinHttpAddRequestHeaders @5 + WinHttpCheckPlatform @6 + WinHttpCloseHandle @7 + WinHttpConnect @8 + WinHttpCrackUrl @9 + WinHttpCreateUrl @10 + WinHttpDetectAutoProxyConfigUrl @11 + WinHttpGetDefaultProxyConfiguration @12 + WinHttpGetIEProxyConfigForCurrentUser @13 + WinHttpGetProxyForUrl @14 + WinHttpOpen @15 + WinHttpOpenRequest @16 + WinHttpQueryAuthSchemes @17 + WinHttpQueryDataAvailable @18 + WinHttpQueryHeaders @19 + WinHttpQueryOption @20 + WinHttpReadData @21 + WinHttpReceiveResponse @22 + WinHttpSendRequest @23 + WinHttpSetCredentials @24 + WinHttpSetDefaultProxyConfiguration @25 + WinHttpSetOption @26 + WinHttpSetStatusCallback @27 + WinHttpSetTimeouts @28 + WinHttpTimeFromSystemTime @29 + WinHttpTimeToSystemTime @30 + WinHttpWriteData @31 diff --git a/lib64/wine/libwininet.def b/lib64/wine/libwininet.def new file mode 100644 index 0000000..822abce --- /dev/null +++ b/lib64/wine/libwininet.def @@ -0,0 +1,253 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/wininet/wininet.spec; do not edit! + +LIBRARY wininet.dll + +EXPORTS + DoConnectoidsExist @101 NONAME PRIVATE + GetDiskInfoA @102 NONAME + PerformOperationOverUrlCacheA @103 NONAME PRIVATE + HttpCheckDavComplianceA @104 NONAME PRIVATE + HttpCheckDavComplianceW @105 NONAME PRIVATE + ImportCookieFileA @108 NONAME PRIVATE + ExportCookieFileA @109 NONAME PRIVATE + ImportCookieFileW @110 NONAME PRIVATE + ExportCookieFileW @111 NONAME PRIVATE + IsProfilesEnabled @112 NONAME PRIVATE + IsDomainlegalCookieDomainA @116 NONAME PRIVATE + IsDomainLegalCookieDomainW @117 NONAME + FindP3PPolicySymbol @118 NONAME PRIVATE + MapResourceToPolicy @120 NONAME PRIVATE + GetP3PPolicy @121 NONAME PRIVATE + FreeP3PObject @122 NONAME PRIVATE + GetP3PRequestStatus @123 NONAME PRIVATE + CommitUrlCacheEntryA @106 + CommitUrlCacheEntryW @107 + CreateMD5SSOHash @113 + CreateUrlCacheContainerA @114 + CreateUrlCacheContainerW @115 + CreateUrlCacheEntryA @119 + CreateUrlCacheEntryW @124 + CreateUrlCacheGroup @125 + DeleteIE3Cache @126 + DeleteUrlCacheContainerA @127 + DeleteUrlCacheContainerW @128 + DeleteUrlCacheEntry=DeleteUrlCacheEntryA @129 + DeleteUrlCacheEntryA @130 + DeleteUrlCacheEntryW @131 + DeleteUrlCacheGroup @132 + DeleteWpadCacheForNetworks @133 + DetectAutoProxyUrl @134 + DllInstall @135 PRIVATE + FindCloseUrlCache @136 + FindFirstUrlCacheContainerA @137 + FindFirstUrlCacheContainerW @138 + FindFirstUrlCacheEntryA @139 + FindFirstUrlCacheEntryExA @140 + FindFirstUrlCacheEntryExW @141 + FindFirstUrlCacheEntryW @142 + FindFirstUrlCacheGroup @143 + FindNextUrlCacheContainerA @144 + FindNextUrlCacheContainerW @145 + FindNextUrlCacheEntryA @146 + FindNextUrlCacheEntryExA @147 + FindNextUrlCacheEntryExW @148 + FindNextUrlCacheEntryW @149 + FindNextUrlCacheGroup @150 + ForceNexusLookup @151 PRIVATE + ForceNexusLookupExW @152 PRIVATE + FreeUrlCacheSpaceA @153 + FreeUrlCacheSpaceW @154 + FtpCommandA @155 + FtpCommandW @156 + FtpCreateDirectoryA @157 + FtpCreateDirectoryW @158 + FtpDeleteFileA @159 + FtpDeleteFileW @160 + FtpFindFirstFileA @161 + FtpFindFirstFileW @162 + FtpGetCurrentDirectoryA @163 + FtpGetCurrentDirectoryW @164 + FtpGetFileA @165 + FtpGetFileEx @166 PRIVATE + FtpGetFileSize @167 + FtpGetFileW @168 + FtpOpenFileA @169 + FtpOpenFileW @170 + FtpPutFileA @171 + FtpPutFileEx @172 PRIVATE + FtpPutFileW @173 + FtpRemoveDirectoryA @174 + FtpRemoveDirectoryW @175 + FtpRenameFileA @176 + FtpRenameFileW @177 + FtpSetCurrentDirectoryA @178 + FtpSetCurrentDirectoryW @179 + GetUrlCacheConfigInfoA @180 + GetUrlCacheConfigInfoW @181 + GetUrlCacheEntryInfoA @182 + GetUrlCacheEntryInfoExA @183 + GetUrlCacheEntryInfoExW @184 + GetUrlCacheEntryInfoW @185 + GetUrlCacheGroupAttributeA @186 + GetUrlCacheGroupAttributeW @187 + GetUrlCacheHeaderData @188 PRIVATE + GopherCreateLocatorA @189 + GopherCreateLocatorW @190 + GopherFindFirstFileA @191 + GopherFindFirstFileW @192 + GopherGetAttributeA @193 + GopherGetAttributeW @194 + GopherGetLocatorTypeA @195 + GopherGetLocatorTypeW @196 + GopherOpenFileA @197 + GopherOpenFileW @198 + HttpAddRequestHeadersA @199 + HttpAddRequestHeadersW @200 + HttpCheckDavCompliance @201 PRIVATE + HttpEndRequestA @202 + HttpEndRequestW @203 + HttpOpenRequestA @204 + HttpOpenRequestW @205 + HttpQueryInfoA @206 + HttpQueryInfoW @207 + HttpSendRequestA @208 + HttpSendRequestExA @209 + HttpSendRequestExW @210 + HttpSendRequestW @211 + IncrementUrlCacheHeaderData @212 + InternetAlgIdToStringA @213 PRIVATE + InternetAlgIdToStringW @214 PRIVATE + InternetAttemptConnect @215 + InternetAutodial @216 + InternetAutodialCallback @217 PRIVATE + InternetAutodialHangup @218 + InternetCanonicalizeUrlA @219 + InternetCanonicalizeUrlW @220 + InternetCheckConnectionA @221 + InternetCheckConnectionW @222 + InternetClearAllPerSiteCookieDecisions @223 + InternetCloseHandle @224 + InternetCombineUrlA @225 + InternetCombineUrlW @226 + InternetConfirmZoneCrossing=InternetConfirmZoneCrossingA @227 + InternetConfirmZoneCrossingA @228 + InternetConfirmZoneCrossingW @229 + InternetConnectA @230 + InternetConnectW @231 + InternetCrackUrlA @232 + InternetCrackUrlW @233 + InternetCreateUrlA @234 + InternetCreateUrlW @235 + InternetDebugGetLocalTime @236 PRIVATE + InternetDial=InternetDialA @237 + InternetDialA @238 + InternetDialW @239 + InternetEnumPerSiteCookieDecisionA @240 + InternetEnumPerSiteCookieDecisionW @241 + InternetErrorDlg @242 + InternetFindNextFileA @243 + InternetFindNextFileW @244 + InternetFortezzaCommand @245 PRIVATE + InternetGetCertByURL @246 PRIVATE + InternetGetCertByURLA @247 PRIVATE + InternetGetConnectedState @248 + InternetGetConnectedStateEx=InternetGetConnectedStateExA @249 + InternetGetConnectedStateExA @250 + InternetGetConnectedStateExW @251 + InternetGetCookieA @252 + InternetGetCookieExA @253 + InternetGetCookieExW @254 + InternetGetCookieW @255 + InternetGetLastResponseInfoA @256 + InternetGetLastResponseInfoW @257 + InternetGetPerSiteCookieDecisionA @258 + InternetGetPerSiteCookieDecisionW @259 + InternetGetSecurityInfoByURL=InternetGetSecurityInfoByURLA @260 + InternetGetSecurityInfoByURLA @261 + InternetGetSecurityInfoByURLW @262 + InternetGoOnline=InternetGoOnlineA @263 + InternetGoOnlineA @264 + InternetGoOnlineW @265 + InternetHangUp @266 + InternetInitializeAutoProxyDll @267 + InternetLockRequestFile @268 + InternetOpenA @269 + InternetOpenServerPushParse @270 PRIVATE + InternetOpenUrlA @271 + InternetOpenUrlW @272 + InternetOpenW @273 + InternetQueryDataAvailable @274 + InternetQueryFortezzaStatus @275 + InternetQueryOptionA @276 + InternetQueryOptionW @277 + InternetReadFile @278 + InternetReadFileExA @279 + InternetReadFileExW @280 + InternetSecurityProtocolToStringA @281 PRIVATE + InternetSecurityProtocolToStringW @282 PRIVATE + InternetServerPushParse @283 PRIVATE + InternetSetCookieA @284 + InternetSetCookieExA @285 + InternetSetCookieExW @286 + InternetSetCookieW @287 + InternetSetDialState @288 PRIVATE + InternetSetDialStateA @289 PRIVATE + InternetSetDialStateW @290 PRIVATE + InternetSetFilePointer @291 + InternetSetOptionA @292 + InternetSetOptionExA @293 + InternetSetOptionExW @294 + InternetSetOptionW @295 + InternetSetPerSiteCookieDecisionA @296 + InternetSetPerSiteCookieDecisionW @297 + InternetSetStatusCallback=InternetSetStatusCallbackA @298 + InternetSetStatusCallbackA @299 + InternetSetStatusCallbackW @300 + InternetShowSecurityInfoByURL=InternetShowSecurityInfoByURLA @301 + InternetShowSecurityInfoByURLA @302 + InternetShowSecurityInfoByURLW @303 + InternetTimeFromSystemTime=InternetTimeFromSystemTimeA @304 + InternetTimeFromSystemTimeA @305 + InternetTimeFromSystemTimeW @306 + InternetTimeToSystemTime=InternetTimeToSystemTimeA @307 + InternetTimeToSystemTimeA @308 + InternetTimeToSystemTimeW @309 + InternetUnlockRequestFile @310 + InternetWriteFile @311 + InternetWriteFileExA @312 PRIVATE + InternetWriteFileExW @313 PRIVATE + IsHostInProxyBypassList @314 + IsUrlCacheEntryExpiredA @315 + IsUrlCacheEntryExpiredW @316 + LoadUrlCacheContent @317 + ParseX509EncodedCertificateForListBoxEntry @318 + PrivacyGetZonePreferenceW @319 + PrivacySetZonePreferenceW @320 + ReadUrlCacheEntryStream @321 + RegisterUrlCacheNotification @322 + ResumeSuspendedDownload @323 + RetrieveUrlCacheEntryFileA @324 + RetrieveUrlCacheEntryFileW @325 + RetrieveUrlCacheEntryStreamA @326 + RetrieveUrlCacheEntryStreamW @327 + RunOnceUrlCache @328 + SetUrlCacheConfigInfoA @329 + SetUrlCacheConfigInfoW @330 + SetUrlCacheEntryGroup=SetUrlCacheEntryGroupA @331 + SetUrlCacheEntryGroupA @332 + SetUrlCacheEntryGroupW @333 + SetUrlCacheEntryInfoA @334 + SetUrlCacheEntryInfoW @335 + SetUrlCacheGroupAttributeA @336 + SetUrlCacheGroupAttributeW @337 + SetUrlCacheHeaderData @338 PRIVATE + ShowCertificate @339 PRIVATE + ShowClientAuthCerts @340 + ShowSecurityInfo @341 PRIVATE + ShowX509EncodedCertificate @342 + UnlockUrlCacheEntryFile=UnlockUrlCacheEntryFileA @343 + UnlockUrlCacheEntryFileA @344 + UnlockUrlCacheEntryFileW @345 + UnlockUrlCacheEntryStream @346 + UpdateUrlCacheContentPath @347 PRIVATE + UrlZonesDetach @348 PRIVATE diff --git a/lib64/wine/libwinmm.def b/lib64/wine/libwinmm.def new file mode 100644 index 0000000..678c738 --- /dev/null +++ b/lib64/wine/libwinmm.def @@ -0,0 +1,191 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/winmm/winmm.spec; do not edit! + +LIBRARY winmm.dll + +EXPORTS + CloseDriver @5 + DefDriverProc @6 + DriverCallback @7 + DrvClose=CloseDriver @8 + DrvDefDriverProc=DefDriverProc @9 + DrvGetModuleHandle=GetDriverModuleHandle @10 + DrvOpen=OpenDriver @11 + DrvOpenA=OpenDriverA @12 + DrvSendMessage=SendDriverMessage @13 + GetDriverFlags @14 + GetDriverModuleHandle @15 + OpenDriver @16 + OpenDriverA @17 + PlaySound=PlaySoundA @18 + PlaySoundA @19 + PlaySoundW @20 + SendDriverMessage @21 + auxGetDevCapsA @22 + auxGetDevCapsW @23 + auxGetNumDevs @24 + auxGetVolume @25 + auxOutMessage @26 + auxSetVolume @27 + joyConfigChanged @28 + joyGetDevCapsA @29 + joyGetDevCapsW @30 + joyGetNumDevs @31 + joyGetPos @32 + joyGetPosEx @33 + joyGetThreshold @34 + joyReleaseCapture @35 + joySetCapture @36 + joySetThreshold @37 + mciDriverNotify @38 + mciDriverYield @39 + mciExecute @40 + mciFreeCommandResource @41 + mciGetCreatorTask @42 + mciGetDeviceIDA @43 + mciGetDeviceIDFromElementIDA @44 + mciGetDeviceIDFromElementIDW @45 + mciGetDeviceIDW @46 + mciGetDriverData @47 + mciGetErrorStringA @48 + mciGetErrorStringW @49 + mciGetYieldProc @50 + mciLoadCommandResource @51 + mciSendCommandA @52 + mciSendCommandW @53 + mciSendStringA @54 + mciSendStringW @55 + mciSetDriverData @56 + mciSetYieldProc @57 + midiConnect @58 + midiDisconnect @59 + midiInAddBuffer @60 + midiInClose @61 + midiInGetDevCapsA @62 + midiInGetDevCapsW @63 + midiInGetErrorTextA=midiOutGetErrorTextA @64 + midiInGetErrorTextW=midiOutGetErrorTextW @65 + midiInGetID @66 + midiInGetNumDevs @67 + midiInMessage @68 + midiInOpen @69 + midiInPrepareHeader @70 + midiInReset @71 + midiInStart @72 + midiInStop @73 + midiInUnprepareHeader @74 + midiOutCacheDrumPatches @75 + midiOutCachePatches @76 + midiOutClose @77 + midiOutGetDevCapsA @78 + midiOutGetDevCapsW @79 + midiOutGetErrorTextA @80 + midiOutGetErrorTextW @81 + midiOutGetID @82 + midiOutGetNumDevs @83 + midiOutGetVolume @84 + midiOutLongMsg @85 + midiOutMessage @86 + midiOutOpen @87 + midiOutPrepareHeader @88 + midiOutReset @89 + midiOutSetVolume @90 + midiOutShortMsg @91 + midiOutUnprepareHeader @92 + midiStreamClose @93 + midiStreamOpen @94 + midiStreamOut @95 + midiStreamPause @96 + midiStreamPosition @97 + midiStreamProperty @98 + midiStreamRestart @99 + midiStreamStop @100 + mixerClose @101 + mixerGetControlDetailsA @102 + mixerGetControlDetailsW @103 + mixerGetDevCapsA @104 + mixerGetDevCapsW @105 + mixerGetID @106 + mixerGetLineControlsA @107 + mixerGetLineControlsW @108 + mixerGetLineInfoA @109 + mixerGetLineInfoW @110 + mixerGetNumDevs @111 + mixerMessage @112 + mixerOpen @113 + mixerSetControlDetails @114 + mmGetCurrentTask @115 + mmTaskBlock @116 + mmTaskCreate @117 + mmTaskSignal @118 + mmTaskYield @119 + mmioAdvance @120 + mmioAscend @121 + mmioClose @122 + mmioCreateChunk @123 + mmioDescend @124 + mmioFlush @125 + mmioGetInfo @126 + mmioInstallIOProc16 @127 PRIVATE + mmioInstallIOProcA @128 + mmioInstallIOProcW @129 + mmioOpenA @130 + mmioOpenW @131 + mmioRead @132 + mmioRenameA @133 + mmioRenameW @134 + mmioSeek @135 + mmioSendMessage @136 + mmioSetBuffer @137 + mmioSetInfo @138 + mmioStringToFOURCCA @139 + mmioStringToFOURCCW @140 + mmioWrite @141 + mmsystemGetVersion @142 + sndPlaySoundA @143 + sndPlaySoundW @144 + timeBeginPeriod @145 + timeEndPeriod @146 + timeGetDevCaps @147 + timeGetSystemTime @148 + timeGetTime=kernel32.GetTickCount @149 + timeKillEvent @150 + timeSetEvent @151 + waveInAddBuffer @152 + waveInClose @153 + waveInGetDevCapsA @154 + waveInGetDevCapsW @155 + waveInGetErrorTextA=waveOutGetErrorTextA @156 + waveInGetErrorTextW=waveOutGetErrorTextW @157 + waveInGetID @158 + waveInGetNumDevs @159 + waveInGetPosition @160 + waveInMessage @161 + waveInOpen @162 + waveInPrepareHeader @163 + waveInReset @164 + waveInStart @165 + waveInStop @166 + waveInUnprepareHeader @167 + waveOutBreakLoop @168 + waveOutClose @169 + waveOutGetDevCapsA @170 + waveOutGetDevCapsW @171 + waveOutGetErrorTextA @172 + waveOutGetErrorTextW @173 + waveOutGetID @174 + waveOutGetNumDevs @175 + waveOutGetPitch @176 + waveOutGetPlaybackRate @177 + waveOutGetPosition @178 + waveOutGetVolume @179 + waveOutMessage @180 + waveOutOpen @181 + waveOutPause @182 + waveOutPrepareHeader @183 + waveOutReset @184 + waveOutRestart @185 + waveOutSetPitch @186 + waveOutSetPlaybackRate @187 + waveOutSetVolume @188 + waveOutUnprepareHeader @189 + waveOutWrite @190 diff --git a/lib64/wine/libwinnls32.def b/lib64/wine/libwinnls32.def new file mode 100644 index 0000000..9b00ef3 --- /dev/null +++ b/lib64/wine/libwinnls32.def @@ -0,0 +1,12 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/winnls32/winnls32.spec; do not edit! + +LIBRARY winnls32.dll + +EXPORTS + WINNLS32EnableIME @1 + WINNLS32GetEnableStatus @2 + WINNLS32GetIMEHotKey @3 PRIVATE + IMP32GetIME @21 PRIVATE + IMP32QueryIME @22 PRIVATE + IMP32SetIME @23 PRIVATE + IME32SendIMEMessageEx @41 PRIVATE diff --git a/lib64/wine/libwinscard.def b/lib64/wine/libwinscard.def new file mode 100644 index 0000000..89a77f7 --- /dev/null +++ b/lib64/wine/libwinscard.def @@ -0,0 +1,68 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/winscard/winscard.spec; do not edit! + +LIBRARY winscard.dll + +EXPORTS + ClassInstall32 @1 PRIVATE + SCardAccessNewReaderEvent @2 PRIVATE + SCardReleaseAllEvents @3 PRIVATE + SCardReleaseNewReaderEvent @4 PRIVATE + SCardAccessStartedEvent @5 + SCardAddReaderToGroupA @6 + SCardAddReaderToGroupW @7 + SCardBeginTransaction @8 PRIVATE + SCardCancel @9 + SCardConnectA @10 PRIVATE + SCardConnectW @11 PRIVATE + SCardControl @12 PRIVATE + SCardDisconnect @13 PRIVATE + SCardEndTransaction @14 PRIVATE + SCardEstablishContext @15 + SCardForgetCardTypeA @16 PRIVATE + SCardForgetCardTypeW @17 PRIVATE + SCardForgetReaderA @18 PRIVATE + SCardForgetReaderGroupA @19 PRIVATE + SCardForgetReaderGroupW @20 PRIVATE + SCardForgetReaderW @21 PRIVATE + SCardFreeMemory @22 PRIVATE + SCardGetAttrib @23 PRIVATE + SCardGetCardTypeProviderNameA @24 PRIVATE + SCardGetCardTypeProviderNameW @25 PRIVATE + SCardGetProviderIdA @26 PRIVATE + SCardGetProviderIdW @27 PRIVATE + SCardGetStatusChangeA @28 PRIVATE + SCardGetStatusChangeW @29 PRIVATE + SCardIntroduceCardTypeA @30 PRIVATE + SCardIntroduceCardTypeW @31 PRIVATE + SCardIntroduceReaderA @32 PRIVATE + SCardIntroduceReaderGroupA @33 PRIVATE + SCardIntroduceReaderGroupW @34 PRIVATE + SCardIntroduceReaderW @35 PRIVATE + SCardIsValidContext @36 + SCardListCardsA @37 + SCardListCardsW @38 PRIVATE + SCardListInterfacesA @39 PRIVATE + SCardListInterfacesW @40 PRIVATE + SCardListReaderGroupsA @41 PRIVATE + SCardListReaderGroupsW @42 PRIVATE + SCardListReadersA @43 + SCardListReadersW @44 + SCardLocateCardsA @45 PRIVATE + SCardLocateCardsByATRA @46 PRIVATE + SCardLocateCardsByATRW @47 PRIVATE + SCardLocateCardsW @48 PRIVATE + SCardReconnect @49 PRIVATE + SCardReleaseContext @50 + SCardReleaseStartedEvent @51 + SCardRemoveReaderFromGroupA @52 PRIVATE + SCardRemoveReaderFromGroupW @53 PRIVATE + SCardSetAttrib @54 PRIVATE + SCardSetCardTypeProviderNameA @55 PRIVATE + SCardSetCardTypeProviderNameW @56 PRIVATE + SCardState @57 PRIVATE + SCardStatusA @58 + SCardStatusW @59 + SCardTransmit @60 PRIVATE + g_rgSCardRawPci @61 DATA + g_rgSCardT0Pci @62 DATA + g_rgSCardT1Pci @63 DATA diff --git a/lib64/wine/libwinspool.def b/lib64/wine/libwinspool.def new file mode 100644 index 0000000..621a0c2 --- /dev/null +++ b/lib64/wine/libwinspool.def @@ -0,0 +1,189 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/winspool.drv/winspool.drv.spec; do not edit! + +LIBRARY winspool.drv + +EXPORTS + EnumPrinterPropertySheets @100 NONAME PRIVATE + ClusterSplOpen @101 NONAME PRIVATE + ClusterSplClose @102 NONAME PRIVATE + ClusterSplIsAlive @103 NONAME PRIVATE + GetDefaultPrinterA @201 + SetDefaultPrinterA @202 + GetDefaultPrinterW @203 + SetDefaultPrinterW @204 + SplReadPrinter @205 NONAME PRIVATE + AddPerMachineConnectionA @206 NONAME PRIVATE + AddPerMachineConnectionW @207 NONAME PRIVATE + DeletePerMachineConnectionA @208 NONAME PRIVATE + DeletePerMachineConnectionW @209 NONAME PRIVATE + EnumPerMachineConnectionsA @210 NONAME PRIVATE + EnumPerMachineConnectionsW @211 NONAME PRIVATE + LoadPrinterDriver @212 NONAME PRIVATE + RefCntLoadDriver @213 NONAME PRIVATE + RefCntUnloadDriver @214 NONAME PRIVATE + ForceUnloadDriver @215 NONAME PRIVATE + PublishPrinterA @216 NONAME PRIVATE + PublishPrinterW @217 NONAME PRIVATE + CallCommonPropertySheetUI @218 NONAME PRIVATE + PrintUIQueueCreate @219 NONAME PRIVATE + PrintUIPrinterPropPages @220 NONAME PRIVATE + PrintUIDocumentDefaults @221 NONAME PRIVATE + SendRecvBidiData @222 NONAME PRIVATE + RouterFreeBidiResponseContainer @223 NONAME PRIVATE + ExternalConnectToLd64In32Server @224 NONAME PRIVATE + PrintUIWebPnpEntry @226 NONAME PRIVATE + PrintUIWebPnpPostEntry @227 NONAME PRIVATE + PrintUICreateInstance @228 NONAME PRIVATE + PrintUIDocumentPropertiesWrap @229 NONAME PRIVATE + PrintUIPrinterSetup @230 NONAME PRIVATE + PrintUIServerPropPages @231 NONAME PRIVATE + AddDriverCatalog @232 NONAME PRIVATE + ADVANCEDSETUPDIALOG @104 PRIVATE + AbortPrinter @105 + AddFormA @106 + AddFormW @107 + AddJobA @108 + AddJobW @109 + AddMonitorA @110 + AddMonitorW @111 + AddPortA @112 + AddPortExA @113 + AddPortExW @114 + AddPortW @115 + AddPrintProcessorA @116 + AddPrintProcessorW @117 + AddPrintProvidorA @118 + AddPrintProvidorW @119 + AddPrinterA @120 + AddPrinterConnectionA @121 + AddPrinterConnectionW @122 + AddPrinterDriverA @123 + AddPrinterDriverExA @124 + AddPrinterDriverExW @125 + AddPrinterDriverW @126 + AddPrinterW @127 + AdvancedDocumentPropertiesA @128 + AdvancedDocumentPropertiesW @129 + AdvancedSetupDialog @130 PRIVATE + ClosePrinter @131 + ConfigurePortA @132 + ConfigurePortW @133 + ConnectToPrinterDlg @134 + ConvertAnsiDevModeToUnicodeDevMode @135 PRIVATE + ConvertUnicodeDevModeToAnsiDevMode @136 PRIVATE + CreatePrinterIC @137 PRIVATE + DEVICECAPABILITIES @138 PRIVATE + DEVICEMODE @139 PRIVATE + DeleteFormA @140 + DeleteFormW @141 + DeleteMonitorA @142 + DeleteMonitorW @143 + DeletePortA @144 + DeletePortW @145 + DeletePrintProcessorA @146 + DeletePrintProcessorW @147 + DeletePrintProvidorA @148 + DeletePrintProvidorW @149 + DeletePrinter @150 + DeletePrinterConnectionA @151 + DeletePrinterConnectionW @152 + DeletePrinterDataExA @153 + DeletePrinterDataExW @154 + DeletePrinterDriverA @155 + DeletePrinterDriverExA @156 + DeletePrinterDriverExW @157 + DeletePrinterDriverW @158 + DeletePrinterIC @159 PRIVATE + DevQueryPrint @160 PRIVATE + DeviceCapabilities=DeviceCapabilitiesA @161 + DeviceCapabilitiesA @162 + DeviceCapabilitiesW @163 + DeviceMode @164 PRIVATE + DocumentEvent @165 PRIVATE + DocumentPropertiesA @166 + DocumentPropertiesW @167 + EXTDEVICEMODE @168 PRIVATE + EndDocPrinter @169 + EndPagePrinter @170 + EnumFormsA @171 + EnumFormsW @172 + EnumJobsA @173 + EnumJobsW @174 + EnumMonitorsA @175 + EnumMonitorsW @176 + EnumPortsA @177 + EnumPortsW @178 + EnumPrintProcessorDatatypesA @179 + EnumPrintProcessorDatatypesW @180 + EnumPrintProcessorsA @181 + EnumPrintProcessorsW @182 + EnumPrinterDataA @183 + EnumPrinterDataExA @184 + EnumPrinterDataExW @185 + EnumPrinterDataW @186 + EnumPrinterDriversA @187 + EnumPrinterDriversW @188 + EnumPrintersA @189 + EnumPrintersW @190 + EnumPrinterKeyA @191 + EnumPrinterKeyW @192 + ExtDeviceMode @193 + FindClosePrinterChangeNotification @194 + FindFirstPrinterChangeNotification @195 + FindNextPrinterChangeNotification @196 + FreePrinterNotifyInfo @197 + GetFormA @198 + GetFormW @199 + GetJobA @200 + GetJobW @225 + GetPrintProcessorDirectoryA @233 + GetPrintProcessorDirectoryW @234 + GetPrinterA @235 + GetPrinterDataA @236 + GetPrinterDataExA @237 + GetPrinterDataExW @238 + GetPrinterDataW @239 + GetPrinterDriverA @240 + GetPrinterDriverDirectoryA @241 + GetPrinterDriverDirectoryW @242 + GetPrinterDriverW @243 + GetPrinterW @244 + IsValidDevmodeA @245 + IsValidDevmodeW @246 + OpenPrinterA @247 + OpenPrinterW @248 + PerfClose @249 + PerfCollect @250 + PerfOpen @251 + PlayGdiScriptOnPrinterIC @252 PRIVATE + PrinterMessageBoxA @253 PRIVATE + PrinterMessageBoxW @254 PRIVATE + PrinterProperties @255 + ReadPrinter @256 + ResetPrinterA @257 + ResetPrinterW @258 + ScheduleJob @259 + SetAllocFailCount @260 PRIVATE + SetFormA @261 + SetFormW @262 + SetJobA @263 + SetJobW @264 + SetPrinterA @265 + SetPrinterDataA @266 + SetPrinterDataExA @267 + SetPrinterDataExW @268 + SetPrinterDataW @269 + SetPrinterW @270 + SpoolerDevQueryPrintW @271 PRIVATE + SpoolerInit @272 + SpoolerPrinterEvent @273 PRIVATE + StartDocDlgA @274 + StartDocDlgW @275 + StartDocPrinterA @276 + StartDocPrinterW @277 + StartPagePrinter @278 + UploadPrinterDriverPackageA @279 + UploadPrinterDriverPackageW @280 + WaitForPrinterChange @281 PRIVATE + WritePrinter @282 + XcvDataW @283 diff --git a/lib64/wine/libwintab32.def b/lib64/wine/libwintab32.def new file mode 100644 index 0000000..2d4f9e2 --- /dev/null +++ b/lib64/wine/libwintab32.def @@ -0,0 +1,49 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/wintab32/wintab32.spec; do not edit! + +LIBRARY wintab32.dll + +EXPORTS + WTInfoA @20 + WTOpenA @21 + WTClose @22 + WTPacketsGet @23 + WTPacket @24 + WTEnable @40 + WTOverlap @41 + WTConfig @60 + WTGetA @61 + WTSetA @62 + WTExtGet @63 + WTExtSet @64 + WTSave @65 + WTRestore @66 + WTPacketsPeek @80 + WTDataGet @81 + WTDataPeek @82 + WTQueueSizeGet @84 + WTQueueSizeSet @85 + WTMgrOpen @100 + WTMgrClose @101 + WTMgrContextEnum @120 + WTMgrContextOwner @121 + WTMgrDefContext @122 + WTMgrDeviceConfig @140 + WTMgrExt @180 + WTMgrCsrEnable @181 + WTMgrCsrButtonMap @182 + WTMgrCsrPressureBtnMarks @183 + WTMgrCsrPressureResponse @184 + WTMgrCsrExt @185 + WTQueuePacketsEx @200 + WTMgrCsrPressureBtnMarksEx @201 + WTMgrConfigReplaceExA @202 + WTMgrPacketHookExA @203 + WTMgrPacketUnhook @204 + WTMgrPacketHookNext @205 + WTMgrDefContextEx @206 + WTInfoW @1020 + WTOpenW @1021 + WTGetW @1061 + WTSetW @1062 + WTMgrConfigReplaceExW @1202 + WTMgrPacketHookExW @1203 diff --git a/lib64/wine/libwintrust.def b/lib64/wine/libwintrust.def new file mode 100644 index 0000000..0b0a9af --- /dev/null +++ b/lib64/wine/libwintrust.def @@ -0,0 +1,131 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/wintrust/wintrust.spec; do not edit! + +LIBRARY wintrust.dll + +EXPORTS + AddPersonalTrustDBPages @1 PRIVATE + CatalogCompactHashDatabase @2 PRIVATE + CryptCATAdminAcquireContext @3 + CryptCATAdminAcquireContext2 @4 + CryptCATAdminAddCatalog @5 + CryptCATAdminCalcHashFromFileHandle @6 + CryptCATAdminEnumCatalogFromHash @7 + CryptCATAdminPauseServiceForBackup @8 PRIVATE + CryptCATAdminReleaseCatalogContext @9 + CryptCATAdminReleaseContext @10 + CryptCATAdminRemoveCatalog @11 + CryptCATAdminResolveCatalogPath @12 + CryptCATCDFClose @13 + CryptCATCDFEnumAttributes @14 PRIVATE + CryptCATCDFEnumAttributesWithCDFTag @15 PRIVATE + CryptCATCDFEnumCatAttributes @16 + CryptCATCDFEnumMembers @17 PRIVATE + CryptCATCDFEnumMembersByCDFTag @18 PRIVATE + CryptCATCDFEnumMembersByCDFTagEx @19 + CryptCATCDFOpen @20 + CryptCATCatalogInfoFromContext @21 + CryptCATClose @22 + CryptCATEnumerateAttr @23 + CryptCATEnumerateCatAttr @24 + CryptCATEnumerateMember @25 + CryptCATGetAttrInfo @26 + CryptCATGetCatAttrInfo @27 + CryptCATGetMemberInfo @28 + CryptCATHandleFromStore @29 PRIVATE + CryptCATOpen @30 + CryptCATPersistStore @31 PRIVATE + CryptCATPutAttrInfo @32 PRIVATE + CryptCATPutCatAttrInfo @33 PRIVATE + CryptCATPutMemberInfo @34 PRIVATE + CryptCATStoreFromHandle @35 PRIVATE + CryptCATVerifyMember @36 PRIVATE + CryptSIPCreateIndirectData @37 + CryptSIPGetInfo @38 PRIVATE + CryptSIPGetRegWorkingFlags @39 PRIVATE + CryptSIPGetSignedDataMsg @40 + CryptSIPPutSignedDataMsg @41 + CryptSIPRemoveSignedDataMsg @42 + CryptSIPVerifyIndirectData @43 + DllRegisterServer @44 PRIVATE + DllUnregisterServer @45 PRIVATE + DriverCleanupPolicy @46 + DriverFinalPolicy @47 + DriverInitializePolicy @48 + FindCertsByIssuer @49 + GenericChainCertificateTrust @50 + GenericChainFinalProv @51 + HTTPSCertificateTrust @52 + HTTPSFinalProv @53 + IsCatalogFile @54 + MsCatConstructHashTag @55 PRIVATE + MsCatFreeHashTag @56 PRIVATE + OfficeCleanupPolicy @57 PRIVATE + OfficeInitializePolicy @58 PRIVATE + OpenPersonalTrustDBDialog @59 + SoftpubAuthenticode @60 + SoftpubCheckCert @61 + SoftpubCleanup @62 + SoftpubDefCertInit @63 + SoftpubDllRegisterServer @64 + SoftpubDllUnregisterServer @65 + SoftpubDumpStructure @66 PRIVATE + SoftpubFreeDefUsageCallData @67 PRIVATE + SoftpubInitialize @68 + SoftpubLoadDefUsageCallData @69 PRIVATE + SoftpubLoadMessage @70 + SoftpubLoadSignature @71 + TrustDecode @72 PRIVATE + TrustFindIssuerCertificate @73 PRIVATE + TrustFreeDecode @74 PRIVATE + TrustIsCertificateSelfSigned @75 + TrustOpenStores @76 PRIVATE + WTHelperCertCheckValidSignature @77 + WTHelperCertFindIssuerCertificate @78 PRIVATE + WTHelperCertIsSelfSigned @79 PRIVATE + WTHelperCheckCertUsage @80 PRIVATE + WTHelperGetAgencyInfo @81 PRIVATE + WTHelperGetFileHandle @82 + WTHelperGetFileName @83 + WTHelperGetKnownUsages @84 + WTHelperGetProvCertFromChain @85 + WTHelperGetProvPrivateDataFromChain @86 + WTHelperGetProvSignerFromChain @87 + WTHelperIsInRootStore @88 PRIVATE + WTHelperOpenKnownStores @89 PRIVATE + WTHelperProvDataFromStateData @90 + WVTAsn1CatMemberInfoDecode @91 + WVTAsn1CatMemberInfoEncode @92 + WVTAsn1CatNameValueDecode @93 + WVTAsn1CatNameValueEncode @94 + WVTAsn1SpcFinancialCriteriaInfoDecode @95 + WVTAsn1SpcFinancialCriteriaInfoEncode @96 + WVTAsn1SpcIndirectDataContentDecode @97 + WVTAsn1SpcIndirectDataContentEncode @98 + WVTAsn1SpcLinkDecode @99 + WVTAsn1SpcLinkEncode @100 + WVTAsn1SpcMinimalCriteriaInfoDecode @101 PRIVATE + WVTAsn1SpcMinimalCriteriaInfoEncode @102 PRIVATE + WVTAsn1SpcPeImageDataDecode @103 + WVTAsn1SpcPeImageDataEncode @104 + WVTAsn1SpcSigInfoDecode @105 PRIVATE + WVTAsn1SpcSigInfoEncode @106 PRIVATE + WVTAsn1SpcSpAgencyInfoDecode @107 PRIVATE + WVTAsn1SpcSpAgencyInfoEncode @108 PRIVATE + WVTAsn1SpcSpOpusInfoDecode @109 + WVTAsn1SpcSpOpusInfoEncode @110 + WVTAsn1SpcStatementTypeDecode @111 PRIVATE + WVTAsn1SpcStatementTypeEncode @112 PRIVATE + WinVerifyTrust @113 + WinVerifyTrustEx @114 + WintrustAddActionID @115 + WintrustAddDefaultForUsage @116 + WintrustCertificateTrust @117 + WintrustGetDefaultForUsage @118 PRIVATE + WintrustGetRegPolicyFlags @119 + WintrustLoadFunctionPointers @120 + WintrustRemoveActionID @121 + WintrustSetRegPolicyFlags @122 + mscat32DllRegisterServer @123 + mscat32DllUnregisterServer @124 + mssip32DllRegisterServer @125 + mssip32DllUnregisterServer @126 diff --git a/lib64/wine/libwlanapi.def b/lib64/wine/libwlanapi.def new file mode 100644 index 0000000..dd2cfd1 --- /dev/null +++ b/lib64/wine/libwlanapi.def @@ -0,0 +1,41 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/wlanapi/wlanapi.spec; do not edit! + +LIBRARY wlanapi.dll + +EXPORTS + WlanAllocateMemory @1 + WlanCloseHandle @2 + WlanConnect @3 PRIVATE + WlanDeleteProfile @4 PRIVATE + WlanDisconnect @5 PRIVATE + WlanEnumInterfaces @6 + WlanExtractPsdIEDataList @7 PRIVATE + WlanFreeMemory @8 + WlanGetAvailableNetworkList @9 + WlanGetFilterList @10 PRIVATE + WlanGetInterfaceCapability @11 PRIVATE + WlanGetNetworkBssList @12 PRIVATE + WlanGetProfile @13 PRIVATE + WlanGetProfileCustomUserData @14 PRIVATE + WlanGetProfileList @15 PRIVATE + WlanGetSecuritySettings @16 PRIVATE + WlanIhvControl @17 PRIVATE + WlanOpenHandle @18 + WlanQueryAutoConfigParameter @19 PRIVATE + WlanQueryInterface @20 PRIVATE + WlanReasonCodeToString @21 PRIVATE + WlanRegisterNotification @22 + WlanRenameProfile @23 PRIVATE + WlanSaveTemporaryProfile @24 PRIVATE + WlanScan @25 + WlanSetAutoConfigParameter @26 PRIVATE + WlanSetFilterList @27 PRIVATE + WlanSetInterface @28 PRIVATE + WlanSetProfile @29 PRIVATE + WlanSetProfileCustomUserData @30 PRIVATE + WlanSetProfileEapUserData @31 PRIVATE + WlanSetProfileEapXmlUserData @32 PRIVATE + WlanSetProfileList @33 PRIVATE + WlanSetProfilePosition @34 PRIVATE + WlanSetPsdIEDataList @35 PRIVATE + WlanSetSecuritySettings @36 PRIVATE diff --git a/lib64/wine/libwldap32.def b/lib64/wine/libwldap32.def new file mode 100644 index 0000000..ef07242 --- /dev/null +++ b/lib64/wine/libwldap32.def @@ -0,0 +1,250 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/wldap32/wldap32.spec; do not edit! + +LIBRARY wldap32.dll + +EXPORTS + ldap_abandon=WLDAP32_ldap_abandon @10 + ldap_add=ldap_addA @11 + ldap_get_optionW @12 + ldap_unbind=WLDAP32_ldap_unbind @13 + ldap_set_optionW @14 + LdapGetLastError @16 + cldap_open=cldap_openA @17 + LdapMapErrorToWin32 @18 + ldap_compare=ldap_compareA @19 + ldap_delete=ldap_deleteA @20 + ldap_result2error=WLDAP32_ldap_result2error @21 + ldap_err2string=ldap_err2stringA @22 + ldap_modify=ldap_modifyA @23 + ldap_modrdn=ldap_modrdnA @24 + ldap_open=ldap_openA @25 + ldap_first_entry=WLDAP32_ldap_first_entry @26 + ldap_next_entry=WLDAP32_ldap_next_entry @27 + cldap_openW @28 + LdapUTF8ToUnicode @29 + ldap_get_dn=ldap_get_dnA @30 + ldap_dn2ufn=ldap_dn2ufnA @31 + ldap_first_attribute=ldap_first_attributeA @32 + ldap_next_attribute=ldap_next_attributeA @33 + ldap_get_values=ldap_get_valuesA @34 + ldap_get_values_len=ldap_get_values_lenA @35 + ldap_count_entries=WLDAP32_ldap_count_entries @36 + ldap_count_values=ldap_count_valuesA @37 + ldap_value_free=ldap_value_freeA @38 + ldap_explode_dn=ldap_explode_dnA @39 + ldap_result=WLDAP32_ldap_result @40 + ldap_msgfree=WLDAP32_ldap_msgfree @41 + ldap_addW @42 + ldap_search=ldap_searchA @43 + ldap_add_s=ldap_add_sA @44 + ldap_bind_s=ldap_bind_sA @45 + ldap_unbind_s=WLDAP32_ldap_unbind_s @46 + ldap_delete_s=ldap_delete_sA @47 + ldap_modify_s=ldap_modify_sA @48 + ldap_modrdn_s=ldap_modrdn_sA @49 + ldap_search_s=ldap_search_sA @50 + ldap_search_st=ldap_search_stA @51 + ldap_compare_s=ldap_compare_sA @52 + LdapUnicodeToUTF8 @53 + ber_bvfree=WLDAP32_ber_bvfree @54 + cldap_openA @55 + ldap_addA @56 + ldap_add_ext=ldap_add_extA @57 + ldap_add_extA @58 + ldap_simple_bind=ldap_simple_bindA @59 + ldap_simple_bind_s=ldap_simple_bind_sA @60 + ldap_bind=ldap_bindA @61 + ldap_add_extW @62 + ldap_add_ext_s=ldap_add_ext_sA @63 + ldap_add_ext_sA @64 + ldap_add_ext_sW @65 + ldap_add_sA @66 + ldap_modrdn2=ldap_modrdn2A @67 + ldap_modrdn2_s=ldap_modrdn2_sA @68 + ldap_add_sW @69 + ldap_bindA @70 + ldap_bindW @71 + ldap_bind_sA @72 + ldap_bind_sW @73 + ldap_close_extended_op @74 + ldap_compareA @75 + ldap_compareW @76 + ldap_count_values_len=WLDAP32_ldap_count_values_len @77 + ldap_compare_ext=ldap_compare_extA @78 + ldap_value_free_len=WLDAP32_ldap_value_free_len @79 + ldap_compare_extA @80 + ldap_compare_extW @81 + ldap_perror=WLDAP32_ldap_perror @82 + ldap_compare_ext_s=ldap_compare_ext_sA @83 + ldap_compare_ext_sA @84 + ldap_compare_ext_sW @85 + ldap_compare_sA @86 + ldap_compare_sW @87 + ldap_connect @88 + ldap_control_free=ldap_control_freeA @89 + ldap_control_freeA @90 + ldap_control_freeW @91 + ldap_controls_free=ldap_controls_freeA @92 + ldap_controls_freeA @93 + ldap_controls_freeW @94 + ldap_count_references=WLDAP32_ldap_count_references @95 + ldap_count_valuesA @96 + ldap_count_valuesW @97 + ldap_create_page_control=ldap_create_page_controlA @98 + ldap_create_page_controlA @99 + ldap_create_page_controlW @100 + ldap_create_sort_control=ldap_create_sort_controlA @101 + ldap_create_sort_controlA @102 + ldap_create_sort_controlW @103 + ldap_deleteA @104 + ldap_deleteW @105 + ldap_delete_ext=ldap_delete_extA @106 + ldap_delete_extA @107 + ldap_delete_extW @108 + ldap_delete_ext_s=ldap_delete_ext_sA @109 + ldap_delete_ext_sA @110 + ldap_delete_ext_sW @111 + ldap_delete_sA @112 + ldap_delete_sW @113 + ldap_dn2ufnW @114 + ldap_encode_sort_controlA @115 + ldap_encode_sort_controlW @116 + ldap_err2stringA @117 + ldap_err2stringW @118 + ldap_escape_filter_elementA @119 + ldap_escape_filter_elementW @120 + ldap_explode_dnA @121 + ldap_explode_dnW @122 + ldap_extended_operation=ldap_extended_operationA @123 + ldap_extended_operationA @124 + ldap_extended_operationW @125 + ldap_first_attributeA @126 + ldap_first_attributeW @127 + ldap_first_reference=WLDAP32_ldap_first_reference @128 + ldap_free_controls=ldap_free_controlsA @129 + ldap_free_controlsA @130 + ldap_free_controlsW @131 + ldap_get_dnA @132 + ldap_get_dnW @133 + ldap_get_next_page @134 + ldap_get_next_page_s @135 + ldap_get_option=ldap_get_optionA @136 + ldap_get_optionA @137 + ldap_get_paged_count @138 + ldap_get_valuesA @139 + ldap_get_valuesW @140 + ldap_get_values_lenA @141 + ldap_get_values_lenW @142 + ldap_init=ldap_initA @143 + ldap_initA @144 + ldap_initW @145 + ldap_memfreeA @146 + ldap_memfreeW @147 + ldap_modifyA @148 + ldap_modifyW @149 + ldap_modify_ext=ldap_modify_extA @150 + ldap_modify_extA @151 + ldap_modify_extW @152 + ldap_modify_ext_s=ldap_modify_ext_sA @153 + ldap_modify_ext_sA @154 + ldap_modify_ext_sW @155 + ldap_modify_sA @156 + ldap_modify_sW @157 + ldap_modrdn2A @158 + ldap_modrdn2W @159 + ldap_modrdn2_sA @160 + ldap_modrdn2_sW @161 + ldap_modrdnA @162 + ldap_modrdnW @163 + ldap_modrdn_sA @164 + ldap_modrdn_sW @165 + ldap_next_attributeA @166 + ldap_next_attributeW @167 + ldap_next_reference=WLDAP32_ldap_next_reference @168 + ldap_openA @169 + ldap_openW @170 + ldap_parse_page_control=ldap_parse_page_controlA @171 + ldap_parse_page_controlA @172 + ldap_parse_page_controlW @173 + ldap_parse_reference=ldap_parse_referenceA @174 + ldap_parse_referenceA @175 + ldap_parse_referenceW @176 + ldap_parse_result=ldap_parse_resultA @177 + ldap_parse_resultA @178 + ldap_parse_resultW @179 + ldap_parse_sort_control=ldap_parse_sort_controlA @180 + ldap_parse_sort_controlA @181 + ldap_parse_sort_controlW @182 + ldap_rename_ext=ldap_rename_extA @183 + ldap_rename_extA @184 + ldap_rename_extW @185 + ldap_rename_ext_s=ldap_rename_ext_sA @186 + ldap_rename_ext_sA @187 + ldap_rename_ext_sW @188 + ldap_searchA @189 + ldap_searchW @190 + ldap_search_abandon_page @191 + ldap_search_ext=ldap_search_extA @192 + ldap_search_extA @193 + ldap_search_extW @194 + ldap_search_ext_s=ldap_search_ext_sA @195 + ldap_search_ext_sA @196 + ldap_escape_filter_element=ldap_escape_filter_elementA @197 + ldap_set_dbg_flags @198 PRIVATE + ldap_set_dbg_routine @199 PRIVATE + ldap_memfree=ldap_memfreeA @200 + ldap_startup @201 + ldap_cleanup @202 + ldap_search_ext_sW @203 + ldap_search_init_page=ldap_search_init_pageA @204 + ldap_search_init_pageA @205 + ldap_search_init_pageW @206 + ldap_search_sA @207 + ldap_search_sW @208 + ldap_search_stA @209 + ldap_search_stW @210 + ldap_set_option=ldap_set_optionA @211 + ldap_set_optionA @212 + ldap_simple_bindA @213 + ldap_simple_bindW @214 + ldap_simple_bind_sA @215 + ldap_simple_bind_sW @216 + ldap_sslinit=ldap_sslinitA @217 + ldap_sslinitA @218 + ldap_sslinitW @219 + ldap_ufn2dn=ldap_ufn2dnA @220 + ldap_ufn2dnA @221 + ldap_ufn2dnW @222 + ldap_value_freeA @223 + ldap_value_freeW @224 + ldap_check_filterA @230 + ldap_check_filterW @231 + ldap_dn2ufnA @232 + ber_init=WLDAP32_ber_init @300 + ber_free=WLDAP32_ber_free @301 + ber_bvecfree=WLDAP32_ber_bvecfree @302 + ber_bvdup=WLDAP32_ber_bvdup @303 + ber_alloc_t=WLDAP32_ber_alloc_t @304 + ber_skip_tag=WLDAP32_ber_skip_tag @305 + ber_peek_tag=WLDAP32_ber_peek_tag @306 + ber_first_element=WLDAP32_ber_first_element @307 + ber_next_element=WLDAP32_ber_next_element @308 + ber_flatten=WLDAP32_ber_flatten @309 + ber_printf=WLDAP32_ber_printf @310 + ber_scanf=WLDAP32_ber_scanf @311 + ldap_conn_from_msg @312 + ldap_sasl_bindW @313 + ldap_sasl_bind_sW @314 + ldap_sasl_bindA @315 + ldap_sasl_bind_sA @316 + ldap_parse_extended_resultW @317 + ldap_parse_extended_resultA @318 + ldap_create_vlv_controlW @319 + ldap_create_vlv_controlA @320 + ldap_parse_vlv_controlW @321 + ldap_parse_vlv_controlA @322 + ldap_start_tls_sW @329 + ldap_start_tls_sA @330 + ldap_stop_tls_s @331 + ldap_extended_operation_sW @332 + ldap_extended_operation_sA @333 diff --git a/lib64/wine/libwmcodecdspuuid.a b/lib64/wine/libwmcodecdspuuid.a new file mode 100644 index 0000000..edd9072 Binary files /dev/null and b/lib64/wine/libwmcodecdspuuid.a differ diff --git a/lib64/wine/libwmvcore.def b/lib64/wine/libwmvcore.def new file mode 100644 index 0000000..8d261d8 --- /dev/null +++ b/lib64/wine/libwmvcore.def @@ -0,0 +1,25 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/wmvcore/wmvcore.spec; do not edit! + +LIBRARY wmvcore.dll + +EXPORTS + WMCheckURLExtension @1 + WMCheckURLScheme @2 + WMCreateBackupRestorerPrivate=WMCreateBackupRestorer @3 + WMIsAvailableOffline @4 PRIVATE + WMValidateData @5 PRIVATE + DllRegisterServer @6 PRIVATE + WMCreateBackupRestorer @7 + WMCreateEditor @8 + WMCreateIndexer @9 PRIVATE + WMCreateProfileManager @10 + WMCreateReader @11 + WMCreateReaderPriv @12 + WMCreateSyncReader @13 + WMCreateSyncReaderPriv @14 + WMCreateWriter @15 + WMCreateWriterFileSink @16 PRIVATE + WMCreateWriterNetworkSink @17 PRIVATE + WMCreateWriterPriv @18 + WMCreateWriterPushSink @19 PRIVATE + WMIsContentProtected @20 PRIVATE diff --git a/lib64/wine/libwnaspi32.def b/lib64/wine/libwnaspi32.def new file mode 100644 index 0000000..2c22614 --- /dev/null +++ b/lib64/wine/libwnaspi32.def @@ -0,0 +1,12 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/wnaspi32/wnaspi32.spec; do not edit! + +LIBRARY wnaspi32.dll + +EXPORTS + GetASPI32SupportInfo @1 + SendASPI32Command @2 + GetASPI32DLLVersion @4 + RegisterWOWPost @6 PRIVATE + TranslateASPI32Address @7 + GetASPI32Buffer @8 + FreeASPI32Buffer @14 diff --git a/lib64/wine/libws2_32.def b/lib64/wine/libws2_32.def new file mode 100644 index 0000000..3e84bd2 --- /dev/null +++ b/lib64/wine/libws2_32.def @@ -0,0 +1,132 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/ws2_32/ws2_32.spec; do not edit! + +LIBRARY ws2_32.dll + +EXPORTS + accept=WS_accept @1 + bind=WS_bind @2 + closesocket=WS_closesocket @3 + connect=WS_connect @4 + getpeername=WS_getpeername @5 + getsockname=WS_getsockname @6 + getsockopt=WS_getsockopt @7 + htonl=WS_htonl @8 + htons=WS_htons @9 + ioctlsocket=WS_ioctlsocket @10 + inet_addr=WS_inet_addr @11 + inet_ntoa=WS_inet_ntoa @12 + listen=WS_listen @13 + ntohl=WS_ntohl @14 + ntohs=WS_ntohs @15 + recv=WS_recv @16 + recvfrom=WS_recvfrom @17 + select=WS_select @18 + send=WS_send @19 + sendto=WS_sendto @20 + setsockopt=WS_setsockopt @21 + shutdown=WS_shutdown @22 + socket=WS_socket @23 + gethostbyaddr=WS_gethostbyaddr @51 + gethostbyname=WS_gethostbyname @52 + getprotobyname=WS_getprotobyname @53 + getprotobynumber=WS_getprotobynumber @54 + getservbyname=WS_getservbyname @55 + getservbyport=WS_getservbyport @56 + gethostname=WS_gethostname @57 + WSAAsyncSelect @101 + WSAAsyncGetHostByAddr @102 + WSAAsyncGetHostByName @103 + WSAAsyncGetProtoByNumber @104 + WSAAsyncGetProtoByName @105 + WSAAsyncGetServByPort @106 + WSAAsyncGetServByName @107 + WSACancelAsyncRequest @108 + WSASetBlockingHook @109 + WSAUnhookBlockingHook @110 + WSAGetLastError @111 + WSASetLastError @112 + WSACancelBlockingCall @113 + WSAIsBlocking @114 + WSAStartup @115 + WSACleanup @116 + __WSAFDIsSet @151 + WEP @500 PRIVATE + FreeAddrInfoExW @24 + FreeAddrInfoW @25 + GetAddrInfoExCancel @26 + GetAddrInfoExOverlappedResult @27 + GetAddrInfoExW @28 + GetAddrInfoW @29 + GetNameInfoW @30 + InetNtopW @31 + InetPtonW @32 + WSApSetPostRoutine @33 + WPUCompleteOverlappedRequest @34 + WSAAccept @35 + WSAAddressToStringA @36 + WSAAddressToStringW @37 + WSACloseEvent @38 + WSAConnect @39 + WSACreateEvent @40 + WSADuplicateSocketA @41 + WSADuplicateSocketW @42 + WSAEnumNameSpaceProvidersA @43 + WSAEnumNameSpaceProvidersW @44 + WSAEnumNetworkEvents @45 + WSAEnumProtocolsA @46 + WSAEnumProtocolsW @47 + WSAEventSelect @48 + WSAGetOverlappedResult @49 + WSAGetQOSByName @50 + WSAGetServiceClassInfoA @58 + WSAGetServiceClassInfoW @59 + WSAGetServiceClassNameByClassIdA @60 + WSAGetServiceClassNameByClassIdW @61 + WSAHtonl @62 + WSAHtons @63 + WSAInstallServiceClassA @64 + WSAInstallServiceClassW @65 + WSAIoctl @66 + WSAJoinLeaf @67 + WSALookupServiceBeginA @68 + WSALookupServiceBeginW @69 + WSALookupServiceEnd @70 + WSALookupServiceNextA @71 + WSALookupServiceNextW @72 + WSANSPIoctl @73 + WSANtohl @74 + WSANtohs @75 + WSAPoll @76 + WSAProviderConfigChange @77 + WSARecv @78 + WSARecvDisconnect @79 + WSARecvFrom @80 + WSARemoveServiceClass @81 + WSAResetEvent=kernel32.ResetEvent @82 + WSASend @83 + WSASendDisconnect @84 + WSASendMsg @85 + WSASendTo @86 + WSASetEvent=kernel32.SetEvent @87 + WSASetServiceA @88 + WSASetServiceW @89 + WSASocketA @90 + WSASocketW @91 + WSAStringToAddressA @92 + WSAStringToAddressW @93 + WSAWaitForMultipleEvents=kernel32.WaitForMultipleObjectsEx @94 + WSCDeinstallProvider @95 + WSCEnableNSProvider @96 + WSCEnumProtocols @97 + WSCGetProviderPath @98 + WSCInstallNameSpace @99 + WSCInstallProvider @100 + WSCUnInstallNameSpace @117 + WSCUpdateProvider @118 PRIVATE + WSCWriteNameSpaceOrder @119 PRIVATE + WSCWriteProviderOrder @120 + freeaddrinfo=WS_freeaddrinfo @121 + getaddrinfo=WS_getaddrinfo @122 + getnameinfo=WS_getnameinfo @123 + inet_ntop=WS_inet_ntop @124 + inet_pton=WS_inet_pton @125 diff --git a/lib64/wine/libwsdapi.def b/lib64/wine/libwsdapi.def new file mode 100644 index 0000000..848dc9d --- /dev/null +++ b/lib64/wine/libwsdapi.def @@ -0,0 +1,50 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/wsdapi/wsdapi.spec; do not edit! + +LIBRARY wsdapi.dll + +EXPORTS + WSDAddFirewallCheck @1 PRIVATE + WSDCancelNetworkChangeNotify @2 PRIVATE + WSDCopyNameList @3 PRIVATE + WSDNotifyNetworkChange @4 PRIVATE + WSDRemoveFirewallCheck @5 PRIVATE + WSDXMLCompareNames @6 PRIVATE + WSDAllocateLinkedMemory @7 + WSDAttachLinkedMemory @8 + WSDCompareEndpoints @9 PRIVATE + WSDCopyEndpoint @10 PRIVATE + WSDCreateDeviceHost2 @11 PRIVATE + WSDCreateDeviceHost @12 PRIVATE + WSDCreateDeviceHostAdvanced @13 PRIVATE + WSDCreateDeviceProxy2 @14 PRIVATE + WSDCreateDeviceProxy @15 PRIVATE + WSDCreateDeviceProxyAdvanced @16 PRIVATE + WSDCreateDiscoveryProvider2 @17 PRIVATE + WSDCreateDiscoveryProvider @18 PRIVATE + WSDCreateDiscoveryPublisher2 @19 PRIVATE + WSDCreateDiscoveryPublisher @20 + WSDCreateHttpAddress @21 PRIVATE + WSDCreateHttpMessageParameters @22 PRIVATE + WSDCreateHttpTransport @23 PRIVATE + WSDCreateMetadataAgent @24 PRIVATE + WSDCreateOutboundAttachment @25 PRIVATE + WSDCreateUdpAddress @26 + WSDCreateUdpMessageParameters @27 + WSDCreateUdpTransport @28 PRIVATE + WSDDetachLinkedMemory @29 + WSDFreeLinkedMemory @30 + WSDGenerateFault @31 PRIVATE + WSDGenerateFaultEx @32 PRIVATE + WSDGenerateRandomDelay @33 PRIVATE + WSDGetConfigurationOption @34 PRIVATE + WSDProcessFault @35 PRIVATE + WSDSetConfigurationOption @36 PRIVATE + WSDUriDecode @37 PRIVATE + WSDUriEncode @38 PRIVATE + WSDXMLAddChild @39 + WSDXMLAddSibling @40 + WSDXMLBuildAnyForSingleElement @41 + WSDXMLCleanupElement @42 + WSDXMLCreateContext @43 + WSDXMLGetNameFromBuiltinNamespace @44 PRIVATE + WSDXMLGetValueFromAny @45 diff --git a/lib64/wine/libwsnmp32.def b/lib64/wine/libwsnmp32.def new file mode 100644 index 0000000..807b2d7 --- /dev/null +++ b/lib64/wine/libwsnmp32.def @@ -0,0 +1,53 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/wsnmp32/wsnmp32.spec; do not edit! + +LIBRARY wsnmp32.dll + +EXPORTS + SnmpGetTranslateMode @100 PRIVATE + SnmpSetTranslateMode @101 + SnmpGetRetransmitMode @102 PRIVATE + SnmpSetRetransmitMode @103 + SnmpGetTimeout @104 PRIVATE + SnmpSetTimeout @105 PRIVATE + SnmpSetRetry @106 PRIVATE + SnmpGetRetry @107 PRIVATE + _SnmpConveyAgentAddress@4 @108 PRIVATE + _SnmpSetAgentAddress@4 @109 PRIVATE + SnmpGetVendorInfo @120 PRIVATE + SnmpStartup @200 + SnmpCleanup @201 + SnmpOpen @202 + SnmpClose @203 PRIVATE + SnmpSendMsg @204 PRIVATE + SnmpRecvMsg @205 PRIVATE + SnmpRegister @206 PRIVATE + SnmpCreateSession @220 PRIVATE + SnmpListen @221 PRIVATE + SnmpCancelMsg @222 PRIVATE + SnmpStrToEntity @300 PRIVATE + SnmpEntityToStr @301 PRIVATE + SnmpFreeEntity @302 PRIVATE + SnmpSetPort @320 PRIVATE + SnmpStrToContext @400 PRIVATE + SnmpContextToStr @401 PRIVATE + SnmpFreeContext @402 PRIVATE + SnmpCreatePdu @500 PRIVATE + SnmpGetPduData @501 PRIVATE + SnmpSetPduData @502 PRIVATE + SnmpDuplicatePdu @503 PRIVATE + SnmpFreePdu @504 PRIVATE + SnmpCreateVbl @600 PRIVATE + SnmpDuplicateVbl @601 PRIVATE + SnmpFreeVbl @602 PRIVATE + SnmpCountVbl @603 PRIVATE + SnmpGetVb @604 PRIVATE + SnmpSetVb @605 PRIVATE + SnmpDeleteVb @606 PRIVATE + SnmpFreeDescriptor @900 PRIVATE + SnmpEncodeMsg @901 PRIVATE + SnmpDecodeMsg @902 PRIVATE + SnmpStrToOid @903 PRIVATE + SnmpOidToStr @904 PRIVATE + SnmpOidCopy @905 PRIVATE + SnmpOidCompare @906 PRIVATE + SnmpGetLastError @999 PRIVATE diff --git a/lib64/wine/libwsock32.def b/lib64/wine/libwsock32.def new file mode 100644 index 0000000..e7d77bc --- /dev/null +++ b/lib64/wine/libwsock32.def @@ -0,0 +1,71 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/wsock32/wsock32.spec; do not edit! + +LIBRARY wsock32.dll + +EXPORTS + accept=ws2_32.accept @1 + bind=ws2_32.bind @2 + closesocket=ws2_32.closesocket @3 + connect=ws2_32.connect @4 + getpeername=ws2_32.getpeername @5 + getsockname=ws2_32.getsockname @6 + getsockopt=WS1_getsockopt @7 + htonl=ws2_32.htonl @8 + htons=ws2_32.htons @9 + inet_addr=ws2_32.inet_addr @10 + inet_ntoa=ws2_32.inet_ntoa @11 + ioctlsocket=ws2_32.ioctlsocket @12 + listen=ws2_32.listen @13 + ntohl=ws2_32.ntohl @14 + ntohs=ws2_32.ntohs @15 + recv=ws2_32.recv @16 + recvfrom=ws2_32.recvfrom @17 + select=ws2_32.select @18 + send=ws2_32.send @19 + sendto=ws2_32.sendto @20 + setsockopt=WS1_setsockopt @21 + shutdown=ws2_32.shutdown @22 + socket=ws2_32.socket @23 + gethostbyaddr=ws2_32.gethostbyaddr @51 + gethostbyname=ws2_32.gethostbyname @52 + getprotobyname=ws2_32.getprotobyname @53 + getprotobynumber=ws2_32.getprotobynumber @54 + getservbyname=ws2_32.getservbyname @55 + getservbyport=ws2_32.getservbyport @56 + gethostname=ws2_32.gethostname @57 + WSAAsyncSelect=ws2_32.WSAAsyncSelect @101 + WSAAsyncGetHostByAddr=ws2_32.WSAAsyncGetHostByAddr @102 + WSAAsyncGetHostByName=ws2_32.WSAAsyncGetHostByName @103 + WSAAsyncGetProtoByNumber=ws2_32.WSAAsyncGetProtoByNumber @104 + WSAAsyncGetProtoByName=ws2_32.WSAAsyncGetProtoByName @105 + WSAAsyncGetServByPort=ws2_32.WSAAsyncGetServByPort @106 + WSAAsyncGetServByName=ws2_32.WSAAsyncGetServByName @107 + WSACancelAsyncRequest=ws2_32.WSACancelAsyncRequest @108 + WSASetBlockingHook=ws2_32.WSASetBlockingHook @109 + WSAUnhookBlockingHook=ws2_32.WSAUnhookBlockingHook @110 + WSAGetLastError=ws2_32.WSAGetLastError @111 + WSASetLastError=ws2_32.WSASetLastError @112 + WSACancelBlockingCall=ws2_32.WSACancelBlockingCall @113 + WSAIsBlocking=ws2_32.WSAIsBlocking @114 + WSAStartup=ws2_32.WSAStartup @115 + WSACleanup=ws2_32.WSACleanup @116 + __WSAFDIsSet=ws2_32.__WSAFDIsSet @151 + WEP=ws2_32.WEP @500 + WsControl @1001 + inet_network=WSOCK32_inet_network @1100 + getnetbyname=WSOCK32_getnetbyname @1101 + WSARecvEx @1107 + s_perror @1108 + GetAddressByNameA @1109 + GetAddressByNameW @1110 + EnumProtocolsA @1111 + EnumProtocolsW @1112 + GetTypeByNameA @1113 + GetTypeByNameW @1114 + SetServiceA @1117 + SetServiceW @1118 + GetServiceA @1119 + GetServiceW @1120 + TransmitFile=mswsock.TransmitFile @1140 + AcceptEx=mswsock.AcceptEx @1141 + GetAcceptExSockaddrs=mswsock.GetAcceptExSockaddrs @1142 diff --git a/lib64/wine/libwtsapi32.def b/lib64/wine/libwtsapi32.def new file mode 100644 index 0000000..64f8828 --- /dev/null +++ b/lib64/wine/libwtsapi32.def @@ -0,0 +1,49 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/wtsapi32/wtsapi32.spec; do not edit! + +LIBRARY wtsapi32.dll + +EXPORTS + WTSCloseServer @1 + WTSConnectSessionA @2 + WTSConnectSessionW @3 + WTSDisconnectSession @4 + WTSEnableChildSessions @5 + WTSEnumerateProcessesA @6 + WTSEnumerateProcessesW @7 + WTSEnumerateServersA @8 + WTSEnumerateServersW @9 + WTSEnumerateSessionsA @10 + WTSEnumerateSessionsW @11 + WTSFreeMemory @12 + WTSLogoffSession @13 + WTSOpenServerA @14 + WTSOpenServerW @15 + WTSQuerySessionInformationA @16 + WTSQuerySessionInformationW @17 + WTSQueryUserConfigA @18 + WTSQueryUserConfigW @19 + WTSQueryUserToken @20 + WTSRegisterSessionNotification @21 + WTSRegisterSessionNotificationEx @22 + WTSSendMessageA @23 + WTSSendMessageW @24 + WTSSetSessionInformationA @25 PRIVATE + WTSSetSessionInformationW @26 PRIVATE + WTSSetUserConfigA @27 + WTSSetUserConfigW @28 + WTSShutdownSystem @29 + WTSStartRemoteControlSessionA @30 + WTSStartRemoteControlSessionW @31 + WTSStopRemoteControlSession @32 + WTSTerminateProcess @33 + WTSUnRegisterSessionNotification @34 + WTSUnRegisterSessionNotificationEx @35 + WTSVirtualChannelClose @36 + WTSVirtualChannelOpen @37 + WTSVirtualChannelOpenEx @38 + WTSVirtualChannelPurgeInput @39 + WTSVirtualChannelPurgeOutput @40 + WTSVirtualChannelQuery @41 + WTSVirtualChannelRead @42 + WTSVirtualChannelWrite @43 + WTSWaitSystemEvent @44 diff --git a/lib64/wine/libxinput.def b/lib64/wine/libxinput.def new file mode 100644 index 0000000..891fab8 --- /dev/null +++ b/lib64/wine/libxinput.def @@ -0,0 +1,14 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/xinput1_3/xinput1_3.spec; do not edit! + +LIBRARY xinput1_3.dll + +EXPORTS + DllMain @1 PRIVATE + XInputGetState @2 + XInputSetState @3 + XInputGetCapabilities @4 + XInputEnable @5 + XInputGetDSoundAudioDeviceGuids @6 + XInputGetBatteryInformation @7 + XInputGetKeystroke @8 + XInputGetStateEx @100 diff --git a/lib64/wine/libxmllite.def b/lib64/wine/libxmllite.def new file mode 100644 index 0000000..5ff2e31 --- /dev/null +++ b/lib64/wine/libxmllite.def @@ -0,0 +1,11 @@ +; File generated automatically from /home/ubuntu/buildbot/runners/wine/wine-src/dlls/xmllite/xmllite.spec; do not edit! + +LIBRARY xmllite.dll + +EXPORTS + CreateXmlReader @1 + CreateXmlReaderInputWithEncodingCodePage @2 PRIVATE + CreateXmlReaderInputWithEncodingName @3 + CreateXmlWriter @4 + CreateXmlWriterOutputWithEncodingCodePage @5 + CreateXmlWriterOutputWithEncodingName @6 diff --git a/lib64/wine/loadperf.dll.so b/lib64/wine/loadperf.dll.so new file mode 100755 index 0000000..e38e816 Binary files /dev/null and b/lib64/wine/loadperf.dll.so differ diff --git a/lib64/wine/localspl.dll.so b/lib64/wine/localspl.dll.so new file mode 100755 index 0000000..83468f5 Binary files /dev/null and b/lib64/wine/localspl.dll.so differ diff --git a/lib64/wine/localui.dll.so b/lib64/wine/localui.dll.so new file mode 100755 index 0000000..9d7f61c Binary files /dev/null and b/lib64/wine/localui.dll.so differ diff --git a/lib64/wine/lodctr.exe.so b/lib64/wine/lodctr.exe.so new file mode 100755 index 0000000..c5eb569 Binary files /dev/null and b/lib64/wine/lodctr.exe.so differ diff --git a/lib64/wine/lz32.dll.so b/lib64/wine/lz32.dll.so new file mode 100755 index 0000000..6fbce88 Binary files /dev/null and b/lib64/wine/lz32.dll.so differ diff --git a/lib64/wine/mapi32.dll.so b/lib64/wine/mapi32.dll.so new file mode 100755 index 0000000..8bba361 Binary files /dev/null and b/lib64/wine/mapi32.dll.so differ diff --git a/lib64/wine/mapistub.dll.so b/lib64/wine/mapistub.dll.so new file mode 100755 index 0000000..76a31d1 Binary files /dev/null and b/lib64/wine/mapistub.dll.so differ diff --git a/lib64/wine/mciavi32.dll.so b/lib64/wine/mciavi32.dll.so new file mode 100755 index 0000000..064e5c2 Binary files /dev/null and b/lib64/wine/mciavi32.dll.so differ diff --git a/lib64/wine/mcicda.dll.so b/lib64/wine/mcicda.dll.so new file mode 100755 index 0000000..322e5a1 Binary files /dev/null and b/lib64/wine/mcicda.dll.so differ diff --git a/lib64/wine/mciqtz32.dll.so b/lib64/wine/mciqtz32.dll.so new file mode 100755 index 0000000..012620f Binary files /dev/null and b/lib64/wine/mciqtz32.dll.so differ diff --git a/lib64/wine/mciseq.dll.so b/lib64/wine/mciseq.dll.so new file mode 100755 index 0000000..2a63650 Binary files /dev/null and b/lib64/wine/mciseq.dll.so differ diff --git a/lib64/wine/mciwave.dll.so b/lib64/wine/mciwave.dll.so new file mode 100755 index 0000000..b5a857b Binary files /dev/null and b/lib64/wine/mciwave.dll.so differ diff --git a/lib64/wine/mf.dll.so b/lib64/wine/mf.dll.so new file mode 100755 index 0000000..6cdd83e Binary files /dev/null and b/lib64/wine/mf.dll.so differ diff --git a/lib64/wine/mf3216.dll.so b/lib64/wine/mf3216.dll.so new file mode 100755 index 0000000..a0fc558 Binary files /dev/null and b/lib64/wine/mf3216.dll.so differ diff --git a/lib64/wine/mferror.dll.so b/lib64/wine/mferror.dll.so new file mode 100755 index 0000000..51190e5 Binary files /dev/null and b/lib64/wine/mferror.dll.so differ diff --git a/lib64/wine/mfplat.dll.so b/lib64/wine/mfplat.dll.so new file mode 100755 index 0000000..e24cf19 Binary files /dev/null and b/lib64/wine/mfplat.dll.so differ diff --git a/lib64/wine/mfplay.dll.so b/lib64/wine/mfplay.dll.so new file mode 100755 index 0000000..2ffaebe Binary files /dev/null and b/lib64/wine/mfplay.dll.so differ diff --git a/lib64/wine/mfreadwrite.dll.so b/lib64/wine/mfreadwrite.dll.so new file mode 100755 index 0000000..892448b Binary files /dev/null and b/lib64/wine/mfreadwrite.dll.so differ diff --git a/lib64/wine/mgmtapi.dll.so b/lib64/wine/mgmtapi.dll.so new file mode 100755 index 0000000..81d58a3 Binary files /dev/null and b/lib64/wine/mgmtapi.dll.so differ diff --git a/lib64/wine/midimap.dll.so b/lib64/wine/midimap.dll.so new file mode 100755 index 0000000..499f1a6 Binary files /dev/null and b/lib64/wine/midimap.dll.so differ diff --git a/lib64/wine/mlang.dll.so b/lib64/wine/mlang.dll.so new file mode 100755 index 0000000..36ebfe2 Binary files /dev/null and b/lib64/wine/mlang.dll.so differ diff --git a/lib64/wine/mmcndmgr.dll.so b/lib64/wine/mmcndmgr.dll.so new file mode 100755 index 0000000..316adf2 Binary files /dev/null and b/lib64/wine/mmcndmgr.dll.so differ diff --git a/lib64/wine/mmdevapi.dll.so b/lib64/wine/mmdevapi.dll.so new file mode 100755 index 0000000..d3fa903 Binary files /dev/null and b/lib64/wine/mmdevapi.dll.so differ diff --git a/lib64/wine/mofcomp.exe.so b/lib64/wine/mofcomp.exe.so new file mode 100755 index 0000000..e641537 Binary files /dev/null and b/lib64/wine/mofcomp.exe.so differ diff --git a/lib64/wine/mountmgr.sys.so b/lib64/wine/mountmgr.sys.so new file mode 100755 index 0000000..f6d9d42 Binary files /dev/null and b/lib64/wine/mountmgr.sys.so differ diff --git a/lib64/wine/mp3dmod.dll.so b/lib64/wine/mp3dmod.dll.so new file mode 100755 index 0000000..d31fab8 Binary files /dev/null and b/lib64/wine/mp3dmod.dll.so differ diff --git a/lib64/wine/mpr.dll.so b/lib64/wine/mpr.dll.so new file mode 100755 index 0000000..a95ecb7 Binary files /dev/null and b/lib64/wine/mpr.dll.so differ diff --git a/lib64/wine/mprapi.dll.so b/lib64/wine/mprapi.dll.so new file mode 100755 index 0000000..243adef Binary files /dev/null and b/lib64/wine/mprapi.dll.so differ diff --git a/lib64/wine/msacm32.dll.so b/lib64/wine/msacm32.dll.so new file mode 100755 index 0000000..d2d4cfd Binary files /dev/null and b/lib64/wine/msacm32.dll.so differ diff --git a/lib64/wine/msacm32.drv.so b/lib64/wine/msacm32.drv.so new file mode 100755 index 0000000..a78b726 Binary files /dev/null and b/lib64/wine/msacm32.drv.so differ diff --git a/lib64/wine/msadp32.acm.so b/lib64/wine/msadp32.acm.so new file mode 100755 index 0000000..44ba8d8 Binary files /dev/null and b/lib64/wine/msadp32.acm.so differ diff --git a/lib64/wine/msasn1.dll.so b/lib64/wine/msasn1.dll.so new file mode 100755 index 0000000..c3f7f9d Binary files /dev/null and b/lib64/wine/msasn1.dll.so differ diff --git a/lib64/wine/mscat32.dll.so b/lib64/wine/mscat32.dll.so new file mode 100755 index 0000000..6c1d3eb Binary files /dev/null and b/lib64/wine/mscat32.dll.so differ diff --git a/lib64/wine/mscms.dll.so b/lib64/wine/mscms.dll.so new file mode 100755 index 0000000..36eac96 Binary files /dev/null and b/lib64/wine/mscms.dll.so differ diff --git a/lib64/wine/mscoree.dll.so b/lib64/wine/mscoree.dll.so new file mode 100755 index 0000000..e63405e Binary files /dev/null and b/lib64/wine/mscoree.dll.so differ diff --git a/lib64/wine/msctf.dll.so b/lib64/wine/msctf.dll.so new file mode 100755 index 0000000..77630d0 Binary files /dev/null and b/lib64/wine/msctf.dll.so differ diff --git a/lib64/wine/msctfp.dll.so b/lib64/wine/msctfp.dll.so new file mode 100755 index 0000000..01b8a0b Binary files /dev/null and b/lib64/wine/msctfp.dll.so differ diff --git a/lib64/wine/msdaps.dll.so b/lib64/wine/msdaps.dll.so new file mode 100755 index 0000000..cc6c998 Binary files /dev/null and b/lib64/wine/msdaps.dll.so differ diff --git a/lib64/wine/msdelta.dll.so b/lib64/wine/msdelta.dll.so new file mode 100755 index 0000000..8ca9080 Binary files /dev/null and b/lib64/wine/msdelta.dll.so differ diff --git a/lib64/wine/msdmo.dll.so b/lib64/wine/msdmo.dll.so new file mode 100755 index 0000000..9231437 Binary files /dev/null and b/lib64/wine/msdmo.dll.so differ diff --git a/lib64/wine/msdrm.dll.so b/lib64/wine/msdrm.dll.so new file mode 100755 index 0000000..ba9211a Binary files /dev/null and b/lib64/wine/msdrm.dll.so differ diff --git a/lib64/wine/msftedit.dll.so b/lib64/wine/msftedit.dll.so new file mode 100755 index 0000000..2c6c411 Binary files /dev/null and b/lib64/wine/msftedit.dll.so differ diff --git a/lib64/wine/msg711.acm.so b/lib64/wine/msg711.acm.so new file mode 100755 index 0000000..2ec392c Binary files /dev/null and b/lib64/wine/msg711.acm.so differ diff --git a/lib64/wine/msgsm32.acm.so b/lib64/wine/msgsm32.acm.so new file mode 100755 index 0000000..15888f1 Binary files /dev/null and b/lib64/wine/msgsm32.acm.so differ diff --git a/lib64/wine/mshta.exe.so b/lib64/wine/mshta.exe.so new file mode 100755 index 0000000..2ca0aef Binary files /dev/null and b/lib64/wine/mshta.exe.so differ diff --git a/lib64/wine/mshtml.dll.so b/lib64/wine/mshtml.dll.so new file mode 100755 index 0000000..abf7566 Binary files /dev/null and b/lib64/wine/mshtml.dll.so differ diff --git a/lib64/wine/mshtml.tlb.so b/lib64/wine/mshtml.tlb.so new file mode 100755 index 0000000..5e83d1a Binary files /dev/null and b/lib64/wine/mshtml.tlb.so differ diff --git a/lib64/wine/msi.dll.so b/lib64/wine/msi.dll.so new file mode 100755 index 0000000..c1e81e9 Binary files /dev/null and b/lib64/wine/msi.dll.so differ diff --git a/lib64/wine/msidb.exe.so b/lib64/wine/msidb.exe.so new file mode 100755 index 0000000..5b87edf Binary files /dev/null and b/lib64/wine/msidb.exe.so differ diff --git a/lib64/wine/msident.dll.so b/lib64/wine/msident.dll.so new file mode 100755 index 0000000..8cec41d Binary files /dev/null and b/lib64/wine/msident.dll.so differ diff --git a/lib64/wine/msiexec.exe.so b/lib64/wine/msiexec.exe.so new file mode 100755 index 0000000..e9b1175 Binary files /dev/null and b/lib64/wine/msiexec.exe.so differ diff --git a/lib64/wine/msimg32.dll.so b/lib64/wine/msimg32.dll.so new file mode 100755 index 0000000..18b6934 Binary files /dev/null and b/lib64/wine/msimg32.dll.so differ diff --git a/lib64/wine/msimsg.dll.so b/lib64/wine/msimsg.dll.so new file mode 100755 index 0000000..0b56b9e Binary files /dev/null and b/lib64/wine/msimsg.dll.so differ diff --git a/lib64/wine/msimtf.dll.so b/lib64/wine/msimtf.dll.so new file mode 100755 index 0000000..069351a Binary files /dev/null and b/lib64/wine/msimtf.dll.so differ diff --git a/lib64/wine/msinfo32.exe.so b/lib64/wine/msinfo32.exe.so new file mode 100755 index 0000000..221b8d3 Binary files /dev/null and b/lib64/wine/msinfo32.exe.so differ diff --git a/lib64/wine/msisip.dll.so b/lib64/wine/msisip.dll.so new file mode 100755 index 0000000..7f15f34 Binary files /dev/null and b/lib64/wine/msisip.dll.so differ diff --git a/lib64/wine/msisys.ocx.so b/lib64/wine/msisys.ocx.so new file mode 100755 index 0000000..770b94e Binary files /dev/null and b/lib64/wine/msisys.ocx.so differ diff --git a/lib64/wine/msls31.dll.so b/lib64/wine/msls31.dll.so new file mode 100755 index 0000000..2dd2490 Binary files /dev/null and b/lib64/wine/msls31.dll.so differ diff --git a/lib64/wine/msnet32.dll.so b/lib64/wine/msnet32.dll.so new file mode 100755 index 0000000..4fa88fe Binary files /dev/null and b/lib64/wine/msnet32.dll.so differ diff --git a/lib64/wine/mspatcha.dll.so b/lib64/wine/mspatcha.dll.so new file mode 100755 index 0000000..8485472 Binary files /dev/null and b/lib64/wine/mspatcha.dll.so differ diff --git a/lib64/wine/msports.dll.so b/lib64/wine/msports.dll.so new file mode 100755 index 0000000..4b92d73 Binary files /dev/null and b/lib64/wine/msports.dll.so differ diff --git a/lib64/wine/msrle32.dll.so b/lib64/wine/msrle32.dll.so new file mode 100755 index 0000000..562e590 Binary files /dev/null and b/lib64/wine/msrle32.dll.so differ diff --git a/lib64/wine/msscript.ocx.so b/lib64/wine/msscript.ocx.so new file mode 100755 index 0000000..d603306 Binary files /dev/null and b/lib64/wine/msscript.ocx.so differ diff --git a/lib64/wine/mssign32.dll.so b/lib64/wine/mssign32.dll.so new file mode 100755 index 0000000..b690138 Binary files /dev/null and b/lib64/wine/mssign32.dll.so differ diff --git a/lib64/wine/mssip32.dll.so b/lib64/wine/mssip32.dll.so new file mode 100755 index 0000000..41783d5 Binary files /dev/null and b/lib64/wine/mssip32.dll.so differ diff --git a/lib64/wine/mstask.dll.so b/lib64/wine/mstask.dll.so new file mode 100755 index 0000000..0182deb Binary files /dev/null and b/lib64/wine/mstask.dll.so differ diff --git a/lib64/wine/msvcirt.dll.so b/lib64/wine/msvcirt.dll.so new file mode 100755 index 0000000..074a653 Binary files /dev/null and b/lib64/wine/msvcirt.dll.so differ diff --git a/lib64/wine/msvcm80.dll.so b/lib64/wine/msvcm80.dll.so new file mode 100755 index 0000000..1cd747d Binary files /dev/null and b/lib64/wine/msvcm80.dll.so differ diff --git a/lib64/wine/msvcm90.dll.so b/lib64/wine/msvcm90.dll.so new file mode 100755 index 0000000..972795f Binary files /dev/null and b/lib64/wine/msvcm90.dll.so differ diff --git a/lib64/wine/msvcp100.dll.so b/lib64/wine/msvcp100.dll.so new file mode 100755 index 0000000..8f2e59d Binary files /dev/null and b/lib64/wine/msvcp100.dll.so differ diff --git a/lib64/wine/msvcp110.dll.so b/lib64/wine/msvcp110.dll.so new file mode 100755 index 0000000..7453abf Binary files /dev/null and b/lib64/wine/msvcp110.dll.so differ diff --git a/lib64/wine/msvcp120.dll.so b/lib64/wine/msvcp120.dll.so new file mode 100755 index 0000000..76e65dd Binary files /dev/null and b/lib64/wine/msvcp120.dll.so differ diff --git a/lib64/wine/msvcp120_app.dll.so b/lib64/wine/msvcp120_app.dll.so new file mode 100755 index 0000000..0800783 Binary files /dev/null and b/lib64/wine/msvcp120_app.dll.so differ diff --git a/lib64/wine/msvcp140.dll.so b/lib64/wine/msvcp140.dll.so new file mode 100755 index 0000000..001c6cc Binary files /dev/null and b/lib64/wine/msvcp140.dll.so differ diff --git a/lib64/wine/msvcp60.dll.so b/lib64/wine/msvcp60.dll.so new file mode 100755 index 0000000..2cedbd9 Binary files /dev/null and b/lib64/wine/msvcp60.dll.so differ diff --git a/lib64/wine/msvcp70.dll.so b/lib64/wine/msvcp70.dll.so new file mode 100755 index 0000000..907e2c9 Binary files /dev/null and b/lib64/wine/msvcp70.dll.so differ diff --git a/lib64/wine/msvcp71.dll.so b/lib64/wine/msvcp71.dll.so new file mode 100755 index 0000000..abb1bd8 Binary files /dev/null and b/lib64/wine/msvcp71.dll.so differ diff --git a/lib64/wine/msvcp80.dll.so b/lib64/wine/msvcp80.dll.so new file mode 100755 index 0000000..d6f093a Binary files /dev/null and b/lib64/wine/msvcp80.dll.so differ diff --git a/lib64/wine/msvcp90.dll.so b/lib64/wine/msvcp90.dll.so new file mode 100755 index 0000000..6652665 Binary files /dev/null and b/lib64/wine/msvcp90.dll.so differ diff --git a/lib64/wine/msvcr100.dll.so b/lib64/wine/msvcr100.dll.so new file mode 100755 index 0000000..df67021 Binary files /dev/null and b/lib64/wine/msvcr100.dll.so differ diff --git a/lib64/wine/msvcr110.dll.so b/lib64/wine/msvcr110.dll.so new file mode 100755 index 0000000..a6382ae Binary files /dev/null and b/lib64/wine/msvcr110.dll.so differ diff --git a/lib64/wine/msvcr120.dll.so b/lib64/wine/msvcr120.dll.so new file mode 100755 index 0000000..b27bfbd Binary files /dev/null and b/lib64/wine/msvcr120.dll.so differ diff --git a/lib64/wine/msvcr120_app.dll.so b/lib64/wine/msvcr120_app.dll.so new file mode 100755 index 0000000..563a0ea Binary files /dev/null and b/lib64/wine/msvcr120_app.dll.so differ diff --git a/lib64/wine/msvcr70.dll.so b/lib64/wine/msvcr70.dll.so new file mode 100755 index 0000000..c2145d4 Binary files /dev/null and b/lib64/wine/msvcr70.dll.so differ diff --git a/lib64/wine/msvcr71.dll.so b/lib64/wine/msvcr71.dll.so new file mode 100755 index 0000000..a1f0fc8 Binary files /dev/null and b/lib64/wine/msvcr71.dll.so differ diff --git a/lib64/wine/msvcr80.dll.so b/lib64/wine/msvcr80.dll.so new file mode 100755 index 0000000..5b5ce27 Binary files /dev/null and b/lib64/wine/msvcr80.dll.so differ diff --git a/lib64/wine/msvcr90.dll.so b/lib64/wine/msvcr90.dll.so new file mode 100755 index 0000000..007846c Binary files /dev/null and b/lib64/wine/msvcr90.dll.so differ diff --git a/lib64/wine/msvcrt.dll.so b/lib64/wine/msvcrt.dll.so new file mode 100755 index 0000000..a549c5c Binary files /dev/null and b/lib64/wine/msvcrt.dll.so differ diff --git a/lib64/wine/msvcrt20.dll.so b/lib64/wine/msvcrt20.dll.so new file mode 100755 index 0000000..33e3314 Binary files /dev/null and b/lib64/wine/msvcrt20.dll.so differ diff --git a/lib64/wine/msvcrt40.dll.so b/lib64/wine/msvcrt40.dll.so new file mode 100755 index 0000000..8d06156 Binary files /dev/null and b/lib64/wine/msvcrt40.dll.so differ diff --git a/lib64/wine/msvcrtd.dll.so b/lib64/wine/msvcrtd.dll.so new file mode 100755 index 0000000..7c6012c Binary files /dev/null and b/lib64/wine/msvcrtd.dll.so differ diff --git a/lib64/wine/msvfw32.dll.so b/lib64/wine/msvfw32.dll.so new file mode 100755 index 0000000..ee05ec0 Binary files /dev/null and b/lib64/wine/msvfw32.dll.so differ diff --git a/lib64/wine/msvidc32.dll.so b/lib64/wine/msvidc32.dll.so new file mode 100755 index 0000000..17ccc2d Binary files /dev/null and b/lib64/wine/msvidc32.dll.so differ diff --git a/lib64/wine/mswsock.dll.so b/lib64/wine/mswsock.dll.so new file mode 100755 index 0000000..e04ed44 Binary files /dev/null and b/lib64/wine/mswsock.dll.so differ diff --git a/lib64/wine/msxml.dll.so b/lib64/wine/msxml.dll.so new file mode 100755 index 0000000..650542b Binary files /dev/null and b/lib64/wine/msxml.dll.so differ diff --git a/lib64/wine/msxml2.dll.so b/lib64/wine/msxml2.dll.so new file mode 100755 index 0000000..6e2c3a3 Binary files /dev/null and b/lib64/wine/msxml2.dll.so differ diff --git a/lib64/wine/msxml3.dll.so b/lib64/wine/msxml3.dll.so new file mode 100755 index 0000000..531bff4 Binary files /dev/null and b/lib64/wine/msxml3.dll.so differ diff --git a/lib64/wine/msxml4.dll.so b/lib64/wine/msxml4.dll.so new file mode 100755 index 0000000..3f9f817 Binary files /dev/null and b/lib64/wine/msxml4.dll.so differ diff --git a/lib64/wine/msxml6.dll.so b/lib64/wine/msxml6.dll.so new file mode 100755 index 0000000..b4538aa Binary files /dev/null and b/lib64/wine/msxml6.dll.so differ diff --git a/lib64/wine/mtxdm.dll.so b/lib64/wine/mtxdm.dll.so new file mode 100755 index 0000000..c9c3cab Binary files /dev/null and b/lib64/wine/mtxdm.dll.so differ diff --git a/lib64/wine/ncrypt.dll.so b/lib64/wine/ncrypt.dll.so new file mode 100755 index 0000000..b2be8ff Binary files /dev/null and b/lib64/wine/ncrypt.dll.so differ diff --git a/lib64/wine/nddeapi.dll.so b/lib64/wine/nddeapi.dll.so new file mode 100755 index 0000000..fc1e0b2 Binary files /dev/null and b/lib64/wine/nddeapi.dll.so differ diff --git a/lib64/wine/ndis.sys.so b/lib64/wine/ndis.sys.so new file mode 100755 index 0000000..a21e574 Binary files /dev/null and b/lib64/wine/ndis.sys.so differ diff --git a/lib64/wine/net.exe.so b/lib64/wine/net.exe.so new file mode 100755 index 0000000..923855c Binary files /dev/null and b/lib64/wine/net.exe.so differ diff --git a/lib64/wine/netapi32.dll.so b/lib64/wine/netapi32.dll.so new file mode 100755 index 0000000..a3c64d7 Binary files /dev/null and b/lib64/wine/netapi32.dll.so differ diff --git a/lib64/wine/netcfgx.dll.so b/lib64/wine/netcfgx.dll.so new file mode 100755 index 0000000..7388792 Binary files /dev/null and b/lib64/wine/netcfgx.dll.so differ diff --git a/lib64/wine/netprofm.dll.so b/lib64/wine/netprofm.dll.so new file mode 100755 index 0000000..2a9d54f Binary files /dev/null and b/lib64/wine/netprofm.dll.so differ diff --git a/lib64/wine/netsh.exe.so b/lib64/wine/netsh.exe.so new file mode 100755 index 0000000..34b6767 Binary files /dev/null and b/lib64/wine/netsh.exe.so differ diff --git a/lib64/wine/netstat.exe.so b/lib64/wine/netstat.exe.so new file mode 100755 index 0000000..76eb834 Binary files /dev/null and b/lib64/wine/netstat.exe.so differ diff --git a/lib64/wine/newdev.dll.so b/lib64/wine/newdev.dll.so new file mode 100755 index 0000000..2b19a4d Binary files /dev/null and b/lib64/wine/newdev.dll.so differ diff --git a/lib64/wine/ngen.exe.so b/lib64/wine/ngen.exe.so new file mode 100755 index 0000000..a1bef35 Binary files /dev/null and b/lib64/wine/ngen.exe.so differ diff --git a/lib64/wine/ninput.dll.so b/lib64/wine/ninput.dll.so new file mode 100755 index 0000000..248a4f6 Binary files /dev/null and b/lib64/wine/ninput.dll.so differ diff --git a/lib64/wine/normaliz.dll.so b/lib64/wine/normaliz.dll.so new file mode 100755 index 0000000..7ed7e77 Binary files /dev/null and b/lib64/wine/normaliz.dll.so differ diff --git a/lib64/wine/notepad.exe.so b/lib64/wine/notepad.exe.so new file mode 100755 index 0000000..ce9b1ac Binary files /dev/null and b/lib64/wine/notepad.exe.so differ diff --git a/lib64/wine/npmshtml.dll.so b/lib64/wine/npmshtml.dll.so new file mode 100755 index 0000000..f81810f Binary files /dev/null and b/lib64/wine/npmshtml.dll.so differ diff --git a/lib64/wine/npptools.dll.so b/lib64/wine/npptools.dll.so new file mode 100755 index 0000000..3bbe233 Binary files /dev/null and b/lib64/wine/npptools.dll.so differ diff --git a/lib64/wine/ntdll.dll.so b/lib64/wine/ntdll.dll.so new file mode 100755 index 0000000..1659fac Binary files /dev/null and b/lib64/wine/ntdll.dll.so differ diff --git a/lib64/wine/ntdsapi.dll.so b/lib64/wine/ntdsapi.dll.so new file mode 100755 index 0000000..bfb44b4 Binary files /dev/null and b/lib64/wine/ntdsapi.dll.so differ diff --git a/lib64/wine/ntoskrnl.exe.so b/lib64/wine/ntoskrnl.exe.so new file mode 100755 index 0000000..f3cba29 Binary files /dev/null and b/lib64/wine/ntoskrnl.exe.so differ diff --git a/lib64/wine/ntprint.dll.so b/lib64/wine/ntprint.dll.so new file mode 100755 index 0000000..7bd9102 Binary files /dev/null and b/lib64/wine/ntprint.dll.so differ diff --git a/lib64/wine/nvapi64.dll.so b/lib64/wine/nvapi64.dll.so new file mode 100755 index 0000000..60e3ae8 Binary files /dev/null and b/lib64/wine/nvapi64.dll.so differ diff --git a/lib64/wine/nvcuda.dll.so b/lib64/wine/nvcuda.dll.so new file mode 100755 index 0000000..7aeb4fe Binary files /dev/null and b/lib64/wine/nvcuda.dll.so differ diff --git a/lib64/wine/nvcuvid.dll.so b/lib64/wine/nvcuvid.dll.so new file mode 100755 index 0000000..7a24df0 Binary files /dev/null and b/lib64/wine/nvcuvid.dll.so differ diff --git a/lib64/wine/nvencodeapi64.dll.so b/lib64/wine/nvencodeapi64.dll.so new file mode 100755 index 0000000..9ab6fa6 Binary files /dev/null and b/lib64/wine/nvencodeapi64.dll.so differ diff --git a/lib64/wine/objsel.dll.so b/lib64/wine/objsel.dll.so new file mode 100755 index 0000000..35e58a3 Binary files /dev/null and b/lib64/wine/objsel.dll.so differ diff --git a/lib64/wine/odbc32.dll.so b/lib64/wine/odbc32.dll.so new file mode 100755 index 0000000..0c4933a Binary files /dev/null and b/lib64/wine/odbc32.dll.so differ diff --git a/lib64/wine/odbccp32.dll.so b/lib64/wine/odbccp32.dll.so new file mode 100755 index 0000000..b2b0c26 Binary files /dev/null and b/lib64/wine/odbccp32.dll.so differ diff --git a/lib64/wine/odbccu32.dll.so b/lib64/wine/odbccu32.dll.so new file mode 100755 index 0000000..724e154 Binary files /dev/null and b/lib64/wine/odbccu32.dll.so differ diff --git a/lib64/wine/ole32.dll.so b/lib64/wine/ole32.dll.so new file mode 100755 index 0000000..ed067b8 Binary files /dev/null and b/lib64/wine/ole32.dll.so differ diff --git a/lib64/wine/oleacc.dll.so b/lib64/wine/oleacc.dll.so new file mode 100755 index 0000000..cadff8e Binary files /dev/null and b/lib64/wine/oleacc.dll.so differ diff --git a/lib64/wine/oleaut32.dll.so b/lib64/wine/oleaut32.dll.so new file mode 100755 index 0000000..89f7d3a Binary files /dev/null and b/lib64/wine/oleaut32.dll.so differ diff --git a/lib64/wine/olecli32.dll.so b/lib64/wine/olecli32.dll.so new file mode 100755 index 0000000..249de71 Binary files /dev/null and b/lib64/wine/olecli32.dll.so differ diff --git a/lib64/wine/oledb32.dll.so b/lib64/wine/oledb32.dll.so new file mode 100755 index 0000000..24636b7 Binary files /dev/null and b/lib64/wine/oledb32.dll.so differ diff --git a/lib64/wine/oledlg.dll.so b/lib64/wine/oledlg.dll.so new file mode 100755 index 0000000..048cced Binary files /dev/null and b/lib64/wine/oledlg.dll.so differ diff --git a/lib64/wine/olepro32.dll.so b/lib64/wine/olepro32.dll.so new file mode 100755 index 0000000..a616024 Binary files /dev/null and b/lib64/wine/olepro32.dll.so differ diff --git a/lib64/wine/olesvr32.dll.so b/lib64/wine/olesvr32.dll.so new file mode 100755 index 0000000..bd85009 Binary files /dev/null and b/lib64/wine/olesvr32.dll.so differ diff --git a/lib64/wine/olethk32.dll.so b/lib64/wine/olethk32.dll.so new file mode 100755 index 0000000..3a2e7b8 Binary files /dev/null and b/lib64/wine/olethk32.dll.so differ diff --git a/lib64/wine/oleview.exe.so b/lib64/wine/oleview.exe.so new file mode 100755 index 0000000..fbc7f6f Binary files /dev/null and b/lib64/wine/oleview.exe.so differ diff --git a/lib64/wine/opcservices.dll.so b/lib64/wine/opcservices.dll.so new file mode 100755 index 0000000..a6806e3 Binary files /dev/null and b/lib64/wine/opcservices.dll.so differ diff --git a/lib64/wine/openal32.dll.so b/lib64/wine/openal32.dll.so new file mode 100755 index 0000000..2158b37 Binary files /dev/null and b/lib64/wine/openal32.dll.so differ diff --git a/lib64/wine/opencl.dll.so b/lib64/wine/opencl.dll.so new file mode 100755 index 0000000..320aefd Binary files /dev/null and b/lib64/wine/opencl.dll.so differ diff --git a/lib64/wine/opengl32.dll.so b/lib64/wine/opengl32.dll.so new file mode 100755 index 0000000..6243895 Binary files /dev/null and b/lib64/wine/opengl32.dll.so differ diff --git a/lib64/wine/packager.dll.so b/lib64/wine/packager.dll.so new file mode 100755 index 0000000..30b88e5 Binary files /dev/null and b/lib64/wine/packager.dll.so differ diff --git a/lib64/wine/pdh.dll.so b/lib64/wine/pdh.dll.so new file mode 100755 index 0000000..de0ca90 Binary files /dev/null and b/lib64/wine/pdh.dll.so differ diff --git a/lib64/wine/photometadatahandler.dll.so b/lib64/wine/photometadatahandler.dll.so new file mode 100755 index 0000000..034a11e Binary files /dev/null and b/lib64/wine/photometadatahandler.dll.so differ diff --git a/lib64/wine/pidgen.dll.so b/lib64/wine/pidgen.dll.so new file mode 100755 index 0000000..6485f46 Binary files /dev/null and b/lib64/wine/pidgen.dll.so differ diff --git a/lib64/wine/ping.exe.so b/lib64/wine/ping.exe.so new file mode 100755 index 0000000..6474a59 Binary files /dev/null and b/lib64/wine/ping.exe.so differ diff --git a/lib64/wine/plugplay.exe.so b/lib64/wine/plugplay.exe.so new file mode 100755 index 0000000..d9bb131 Binary files /dev/null and b/lib64/wine/plugplay.exe.so differ diff --git a/lib64/wine/powershell.exe.so b/lib64/wine/powershell.exe.so new file mode 100755 index 0000000..7a72ade Binary files /dev/null and b/lib64/wine/powershell.exe.so differ diff --git a/lib64/wine/powrprof.dll.so b/lib64/wine/powrprof.dll.so new file mode 100755 index 0000000..544f10d Binary files /dev/null and b/lib64/wine/powrprof.dll.so differ diff --git a/lib64/wine/presentationfontcache.exe.so b/lib64/wine/presentationfontcache.exe.so new file mode 100755 index 0000000..792bbcf Binary files /dev/null and b/lib64/wine/presentationfontcache.exe.so differ diff --git a/lib64/wine/printui.dll.so b/lib64/wine/printui.dll.so new file mode 100755 index 0000000..aaed7e4 Binary files /dev/null and b/lib64/wine/printui.dll.so differ diff --git a/lib64/wine/prntvpt.dll.so b/lib64/wine/prntvpt.dll.so new file mode 100755 index 0000000..7f10205 Binary files /dev/null and b/lib64/wine/prntvpt.dll.so differ diff --git a/lib64/wine/progman.exe.so b/lib64/wine/progman.exe.so new file mode 100755 index 0000000..7792007 Binary files /dev/null and b/lib64/wine/progman.exe.so differ diff --git a/lib64/wine/propsys.dll.so b/lib64/wine/propsys.dll.so new file mode 100755 index 0000000..8ab3b22 Binary files /dev/null and b/lib64/wine/propsys.dll.so differ diff --git a/lib64/wine/psapi.dll.so b/lib64/wine/psapi.dll.so new file mode 100755 index 0000000..b1ea9c3 Binary files /dev/null and b/lib64/wine/psapi.dll.so differ diff --git a/lib64/wine/pstorec.dll.so b/lib64/wine/pstorec.dll.so new file mode 100755 index 0000000..6d9a38c Binary files /dev/null and b/lib64/wine/pstorec.dll.so differ diff --git a/lib64/wine/qcap.dll.so b/lib64/wine/qcap.dll.so new file mode 100755 index 0000000..cb87a5e Binary files /dev/null and b/lib64/wine/qcap.dll.so differ diff --git a/lib64/wine/qedit.dll.so b/lib64/wine/qedit.dll.so new file mode 100755 index 0000000..9b92d85 Binary files /dev/null and b/lib64/wine/qedit.dll.so differ diff --git a/lib64/wine/qmgr.dll.so b/lib64/wine/qmgr.dll.so new file mode 100755 index 0000000..f2ea125 Binary files /dev/null and b/lib64/wine/qmgr.dll.so differ diff --git a/lib64/wine/qmgrprxy.dll.so b/lib64/wine/qmgrprxy.dll.so new file mode 100755 index 0000000..55773a8 Binary files /dev/null and b/lib64/wine/qmgrprxy.dll.so differ diff --git a/lib64/wine/quartz.dll.so b/lib64/wine/quartz.dll.so new file mode 100755 index 0000000..d901be1 Binary files /dev/null and b/lib64/wine/quartz.dll.so differ diff --git a/lib64/wine/query.dll.so b/lib64/wine/query.dll.so new file mode 100755 index 0000000..f436ab7 Binary files /dev/null and b/lib64/wine/query.dll.so differ diff --git a/lib64/wine/qwave.dll.so b/lib64/wine/qwave.dll.so new file mode 100755 index 0000000..aeaafff Binary files /dev/null and b/lib64/wine/qwave.dll.so differ diff --git a/lib64/wine/rasapi32.dll.so b/lib64/wine/rasapi32.dll.so new file mode 100755 index 0000000..0da86a7 Binary files /dev/null and b/lib64/wine/rasapi32.dll.so differ diff --git a/lib64/wine/rasdlg.dll.so b/lib64/wine/rasdlg.dll.so new file mode 100755 index 0000000..74f055d Binary files /dev/null and b/lib64/wine/rasdlg.dll.so differ diff --git a/lib64/wine/reg.exe.so b/lib64/wine/reg.exe.so new file mode 100755 index 0000000..7bf9a61 Binary files /dev/null and b/lib64/wine/reg.exe.so differ diff --git a/lib64/wine/regapi.dll.so b/lib64/wine/regapi.dll.so new file mode 100755 index 0000000..db04c77 Binary files /dev/null and b/lib64/wine/regapi.dll.so differ diff --git a/lib64/wine/regasm.exe.so b/lib64/wine/regasm.exe.so new file mode 100755 index 0000000..72f2e1a Binary files /dev/null and b/lib64/wine/regasm.exe.so differ diff --git a/lib64/wine/regedit.exe.so b/lib64/wine/regedit.exe.so new file mode 100755 index 0000000..b977847 Binary files /dev/null and b/lib64/wine/regedit.exe.so differ diff --git a/lib64/wine/regsvcs.exe.so b/lib64/wine/regsvcs.exe.so new file mode 100755 index 0000000..7a47008 Binary files /dev/null and b/lib64/wine/regsvcs.exe.so differ diff --git a/lib64/wine/regsvr32.exe.so b/lib64/wine/regsvr32.exe.so new file mode 100755 index 0000000..a5837c4 Binary files /dev/null and b/lib64/wine/regsvr32.exe.so differ diff --git a/lib64/wine/resutils.dll.so b/lib64/wine/resutils.dll.so new file mode 100755 index 0000000..1edeb63 Binary files /dev/null and b/lib64/wine/resutils.dll.so differ diff --git a/lib64/wine/riched20.dll.so b/lib64/wine/riched20.dll.so new file mode 100755 index 0000000..9bde8c0 Binary files /dev/null and b/lib64/wine/riched20.dll.so differ diff --git a/lib64/wine/riched32.dll.so b/lib64/wine/riched32.dll.so new file mode 100755 index 0000000..b94df8e Binary files /dev/null and b/lib64/wine/riched32.dll.so differ diff --git a/lib64/wine/rpcrt4.dll.so b/lib64/wine/rpcrt4.dll.so new file mode 100755 index 0000000..ef574d2 Binary files /dev/null and b/lib64/wine/rpcrt4.dll.so differ diff --git a/lib64/wine/rpcss.exe.so b/lib64/wine/rpcss.exe.so new file mode 100755 index 0000000..6b96c9c Binary files /dev/null and b/lib64/wine/rpcss.exe.so differ diff --git a/lib64/wine/rsabase.dll.so b/lib64/wine/rsabase.dll.so new file mode 100755 index 0000000..23126dd Binary files /dev/null and b/lib64/wine/rsabase.dll.so differ diff --git a/lib64/wine/rsaenh.dll.so b/lib64/wine/rsaenh.dll.so new file mode 100755 index 0000000..7955dd5 Binary files /dev/null and b/lib64/wine/rsaenh.dll.so differ diff --git a/lib64/wine/rstrtmgr.dll.so b/lib64/wine/rstrtmgr.dll.so new file mode 100755 index 0000000..de063ce Binary files /dev/null and b/lib64/wine/rstrtmgr.dll.so differ diff --git a/lib64/wine/rtutils.dll.so b/lib64/wine/rtutils.dll.so new file mode 100755 index 0000000..2ff8d23 Binary files /dev/null and b/lib64/wine/rtutils.dll.so differ diff --git a/lib64/wine/runas.exe.so b/lib64/wine/runas.exe.so new file mode 100755 index 0000000..043bc83 Binary files /dev/null and b/lib64/wine/runas.exe.so differ diff --git a/lib64/wine/rundll32.exe.so b/lib64/wine/rundll32.exe.so new file mode 100755 index 0000000..be7c1eb Binary files /dev/null and b/lib64/wine/rundll32.exe.so differ diff --git a/lib64/wine/samlib.dll.so b/lib64/wine/samlib.dll.so new file mode 100755 index 0000000..889c6b9 Binary files /dev/null and b/lib64/wine/samlib.dll.so differ diff --git a/lib64/wine/sane.ds.so b/lib64/wine/sane.ds.so new file mode 100755 index 0000000..2e5c122 Binary files /dev/null and b/lib64/wine/sane.ds.so differ diff --git a/lib64/wine/sapi.dll.so b/lib64/wine/sapi.dll.so new file mode 100755 index 0000000..2909fde Binary files /dev/null and b/lib64/wine/sapi.dll.so differ diff --git a/lib64/wine/sas.dll.so b/lib64/wine/sas.dll.so new file mode 100755 index 0000000..9cc6305 Binary files /dev/null and b/lib64/wine/sas.dll.so differ diff --git a/lib64/wine/sc.exe.so b/lib64/wine/sc.exe.so new file mode 100755 index 0000000..fa734c3 Binary files /dev/null and b/lib64/wine/sc.exe.so differ diff --git a/lib64/wine/scarddlg.dll.so b/lib64/wine/scarddlg.dll.so new file mode 100755 index 0000000..3d0d355 Binary files /dev/null and b/lib64/wine/scarddlg.dll.so differ diff --git a/lib64/wine/sccbase.dll.so b/lib64/wine/sccbase.dll.so new file mode 100755 index 0000000..d56a758 Binary files /dev/null and b/lib64/wine/sccbase.dll.so differ diff --git a/lib64/wine/schannel.dll.so b/lib64/wine/schannel.dll.so new file mode 100755 index 0000000..ed65ca4 Binary files /dev/null and b/lib64/wine/schannel.dll.so differ diff --git a/lib64/wine/schedsvc.dll.so b/lib64/wine/schedsvc.dll.so new file mode 100755 index 0000000..e48a682 Binary files /dev/null and b/lib64/wine/schedsvc.dll.so differ diff --git a/lib64/wine/schtasks.exe.so b/lib64/wine/schtasks.exe.so new file mode 100755 index 0000000..97b263a Binary files /dev/null and b/lib64/wine/schtasks.exe.so differ diff --git a/lib64/wine/scrobj.dll.so b/lib64/wine/scrobj.dll.so new file mode 100755 index 0000000..db00cb8 Binary files /dev/null and b/lib64/wine/scrobj.dll.so differ diff --git a/lib64/wine/scrrun.dll.so b/lib64/wine/scrrun.dll.so new file mode 100755 index 0000000..f39ce06 Binary files /dev/null and b/lib64/wine/scrrun.dll.so differ diff --git a/lib64/wine/scsiport.sys.so b/lib64/wine/scsiport.sys.so new file mode 100755 index 0000000..02fab3b Binary files /dev/null and b/lib64/wine/scsiport.sys.so differ diff --git a/lib64/wine/sdbinst.exe.so b/lib64/wine/sdbinst.exe.so new file mode 100755 index 0000000..d43c11b Binary files /dev/null and b/lib64/wine/sdbinst.exe.so differ diff --git a/lib64/wine/secedit.exe.so b/lib64/wine/secedit.exe.so new file mode 100755 index 0000000..34d4fc4 Binary files /dev/null and b/lib64/wine/secedit.exe.so differ diff --git a/lib64/wine/secur32.dll.so b/lib64/wine/secur32.dll.so new file mode 100755 index 0000000..4b34ccd Binary files /dev/null and b/lib64/wine/secur32.dll.so differ diff --git a/lib64/wine/security.dll.so b/lib64/wine/security.dll.so new file mode 100755 index 0000000..4caaf29 Binary files /dev/null and b/lib64/wine/security.dll.so differ diff --git a/lib64/wine/sensapi.dll.so b/lib64/wine/sensapi.dll.so new file mode 100755 index 0000000..37b912f Binary files /dev/null and b/lib64/wine/sensapi.dll.so differ diff --git a/lib64/wine/serialui.dll.so b/lib64/wine/serialui.dll.so new file mode 100755 index 0000000..f9050f5 Binary files /dev/null and b/lib64/wine/serialui.dll.so differ diff --git a/lib64/wine/servicemodelreg.exe.so b/lib64/wine/servicemodelreg.exe.so new file mode 100755 index 0000000..e81d3a2 Binary files /dev/null and b/lib64/wine/servicemodelreg.exe.so differ diff --git a/lib64/wine/services.exe.so b/lib64/wine/services.exe.so new file mode 100755 index 0000000..2992d89 Binary files /dev/null and b/lib64/wine/services.exe.so differ diff --git a/lib64/wine/setupapi.dll.so b/lib64/wine/setupapi.dll.so new file mode 100755 index 0000000..d2d3ec5 Binary files /dev/null and b/lib64/wine/setupapi.dll.so differ diff --git a/lib64/wine/sfc.dll.so b/lib64/wine/sfc.dll.so new file mode 100755 index 0000000..86c7bb2 Binary files /dev/null and b/lib64/wine/sfc.dll.so differ diff --git a/lib64/wine/sfc_os.dll.so b/lib64/wine/sfc_os.dll.so new file mode 100755 index 0000000..550e6ee Binary files /dev/null and b/lib64/wine/sfc_os.dll.so differ diff --git a/lib64/wine/shcore.dll.so b/lib64/wine/shcore.dll.so new file mode 100755 index 0000000..93c0a03 Binary files /dev/null and b/lib64/wine/shcore.dll.so differ diff --git a/lib64/wine/shdoclc.dll.so b/lib64/wine/shdoclc.dll.so new file mode 100755 index 0000000..1ccbe4f Binary files /dev/null and b/lib64/wine/shdoclc.dll.so differ diff --git a/lib64/wine/shdocvw.dll.so b/lib64/wine/shdocvw.dll.so new file mode 100755 index 0000000..7e10b61 Binary files /dev/null and b/lib64/wine/shdocvw.dll.so differ diff --git a/lib64/wine/shell32.dll.so b/lib64/wine/shell32.dll.so new file mode 100755 index 0000000..0084a18 Binary files /dev/null and b/lib64/wine/shell32.dll.so differ diff --git a/lib64/wine/shfolder.dll.so b/lib64/wine/shfolder.dll.so new file mode 100755 index 0000000..0a33520 Binary files /dev/null and b/lib64/wine/shfolder.dll.so differ diff --git a/lib64/wine/shlwapi.dll.so b/lib64/wine/shlwapi.dll.so new file mode 100755 index 0000000..585027e Binary files /dev/null and b/lib64/wine/shlwapi.dll.so differ diff --git a/lib64/wine/shutdown.exe.so b/lib64/wine/shutdown.exe.so new file mode 100755 index 0000000..0e4eefa Binary files /dev/null and b/lib64/wine/shutdown.exe.so differ diff --git a/lib64/wine/slbcsp.dll.so b/lib64/wine/slbcsp.dll.so new file mode 100755 index 0000000..299bf2a Binary files /dev/null and b/lib64/wine/slbcsp.dll.so differ diff --git a/lib64/wine/slc.dll.so b/lib64/wine/slc.dll.so new file mode 100755 index 0000000..cd996fb Binary files /dev/null and b/lib64/wine/slc.dll.so differ diff --git a/lib64/wine/snmpapi.dll.so b/lib64/wine/snmpapi.dll.so new file mode 100755 index 0000000..dea3818 Binary files /dev/null and b/lib64/wine/snmpapi.dll.so differ diff --git a/lib64/wine/softpub.dll.so b/lib64/wine/softpub.dll.so new file mode 100755 index 0000000..b001461 Binary files /dev/null and b/lib64/wine/softpub.dll.so differ diff --git a/lib64/wine/spoolss.dll.so b/lib64/wine/spoolss.dll.so new file mode 100755 index 0000000..80029f5 Binary files /dev/null and b/lib64/wine/spoolss.dll.so differ diff --git a/lib64/wine/spoolsv.exe.so b/lib64/wine/spoolsv.exe.so new file mode 100755 index 0000000..5404369 Binary files /dev/null and b/lib64/wine/spoolsv.exe.so differ diff --git a/lib64/wine/srclient.dll.so b/lib64/wine/srclient.dll.so new file mode 100755 index 0000000..670c828 Binary files /dev/null and b/lib64/wine/srclient.dll.so differ diff --git a/lib64/wine/sspicli.dll.so b/lib64/wine/sspicli.dll.so new file mode 100755 index 0000000..d6a360d Binary files /dev/null and b/lib64/wine/sspicli.dll.so differ diff --git a/lib64/wine/start.exe.so b/lib64/wine/start.exe.so new file mode 100755 index 0000000..905f155 Binary files /dev/null and b/lib64/wine/start.exe.so differ diff --git a/lib64/wine/stdole2.tlb.so b/lib64/wine/stdole2.tlb.so new file mode 100755 index 0000000..ccb481e Binary files /dev/null and b/lib64/wine/stdole2.tlb.so differ diff --git a/lib64/wine/stdole32.tlb.so b/lib64/wine/stdole32.tlb.so new file mode 100755 index 0000000..c04cd3b Binary files /dev/null and b/lib64/wine/stdole32.tlb.so differ diff --git a/lib64/wine/sti.dll.so b/lib64/wine/sti.dll.so new file mode 100755 index 0000000..0f07526 Binary files /dev/null and b/lib64/wine/sti.dll.so differ diff --git a/lib64/wine/strmdll.dll.so b/lib64/wine/strmdll.dll.so new file mode 100755 index 0000000..45daee5 Binary files /dev/null and b/lib64/wine/strmdll.dll.so differ diff --git a/lib64/wine/subst.exe.so b/lib64/wine/subst.exe.so new file mode 100755 index 0000000..e0d6d1f Binary files /dev/null and b/lib64/wine/subst.exe.so differ diff --git a/lib64/wine/svchost.exe.so b/lib64/wine/svchost.exe.so new file mode 100755 index 0000000..b2e3203 Binary files /dev/null and b/lib64/wine/svchost.exe.so differ diff --git a/lib64/wine/svrapi.dll.so b/lib64/wine/svrapi.dll.so new file mode 100755 index 0000000..a9acf6e Binary files /dev/null and b/lib64/wine/svrapi.dll.so differ diff --git a/lib64/wine/sxs.dll.so b/lib64/wine/sxs.dll.so new file mode 100755 index 0000000..1643735 Binary files /dev/null and b/lib64/wine/sxs.dll.so differ diff --git a/lib64/wine/systeminfo.exe.so b/lib64/wine/systeminfo.exe.so new file mode 100755 index 0000000..78d1a73 Binary files /dev/null and b/lib64/wine/systeminfo.exe.so differ diff --git a/lib64/wine/t2embed.dll.so b/lib64/wine/t2embed.dll.so new file mode 100755 index 0000000..99b0d44 Binary files /dev/null and b/lib64/wine/t2embed.dll.so differ diff --git a/lib64/wine/tapi32.dll.so b/lib64/wine/tapi32.dll.so new file mode 100755 index 0000000..1b9520c Binary files /dev/null and b/lib64/wine/tapi32.dll.so differ diff --git a/lib64/wine/taskkill.exe.so b/lib64/wine/taskkill.exe.so new file mode 100755 index 0000000..675e903 Binary files /dev/null and b/lib64/wine/taskkill.exe.so differ diff --git a/lib64/wine/tasklist.exe.so b/lib64/wine/tasklist.exe.so new file mode 100755 index 0000000..8d327d8 Binary files /dev/null and b/lib64/wine/tasklist.exe.so differ diff --git a/lib64/wine/taskmgr.exe.so b/lib64/wine/taskmgr.exe.so new file mode 100755 index 0000000..bba0e53 Binary files /dev/null and b/lib64/wine/taskmgr.exe.so differ diff --git a/lib64/wine/taskschd.dll.so b/lib64/wine/taskschd.dll.so new file mode 100755 index 0000000..3f95313 Binary files /dev/null and b/lib64/wine/taskschd.dll.so differ diff --git a/lib64/wine/tdh.dll.so b/lib64/wine/tdh.dll.so new file mode 100755 index 0000000..17d826c Binary files /dev/null and b/lib64/wine/tdh.dll.so differ diff --git a/lib64/wine/tdi.sys.so b/lib64/wine/tdi.sys.so new file mode 100755 index 0000000..e5b3d5d Binary files /dev/null and b/lib64/wine/tdi.sys.so differ diff --git a/lib64/wine/termsv.exe.so b/lib64/wine/termsv.exe.so new file mode 100755 index 0000000..9fb2035 Binary files /dev/null and b/lib64/wine/termsv.exe.so differ diff --git a/lib64/wine/traffic.dll.so b/lib64/wine/traffic.dll.so new file mode 100755 index 0000000..0888a00 Binary files /dev/null and b/lib64/wine/traffic.dll.so differ diff --git a/lib64/wine/twain_32.dll.so b/lib64/wine/twain_32.dll.so new file mode 100755 index 0000000..ef765e4 Binary files /dev/null and b/lib64/wine/twain_32.dll.so differ diff --git a/lib64/wine/tzres.dll.so b/lib64/wine/tzres.dll.so new file mode 100755 index 0000000..9758c3a Binary files /dev/null and b/lib64/wine/tzres.dll.so differ diff --git a/lib64/wine/ucrtbase.dll.so b/lib64/wine/ucrtbase.dll.so new file mode 100755 index 0000000..d3599c5 Binary files /dev/null and b/lib64/wine/ucrtbase.dll.so differ diff --git a/lib64/wine/uianimation.dll.so b/lib64/wine/uianimation.dll.so new file mode 100755 index 0000000..bff711c Binary files /dev/null and b/lib64/wine/uianimation.dll.so differ diff --git a/lib64/wine/uiautomationcore.dll.so b/lib64/wine/uiautomationcore.dll.so new file mode 100755 index 0000000..8b74aa1 Binary files /dev/null and b/lib64/wine/uiautomationcore.dll.so differ diff --git a/lib64/wine/uiribbon.dll.so b/lib64/wine/uiribbon.dll.so new file mode 100755 index 0000000..76d62eb Binary files /dev/null and b/lib64/wine/uiribbon.dll.so differ diff --git a/lib64/wine/unicows.dll.so b/lib64/wine/unicows.dll.so new file mode 100755 index 0000000..2628290 Binary files /dev/null and b/lib64/wine/unicows.dll.so differ diff --git a/lib64/wine/uninstaller.exe.so b/lib64/wine/uninstaller.exe.so new file mode 100755 index 0000000..4cd61e7 Binary files /dev/null and b/lib64/wine/uninstaller.exe.so differ diff --git a/lib64/wine/unlodctr.exe.so b/lib64/wine/unlodctr.exe.so new file mode 100755 index 0000000..c1f53a5 Binary files /dev/null and b/lib64/wine/unlodctr.exe.so differ diff --git a/lib64/wine/updspapi.dll.so b/lib64/wine/updspapi.dll.so new file mode 100755 index 0000000..abd4ce7 Binary files /dev/null and b/lib64/wine/updspapi.dll.so differ diff --git a/lib64/wine/url.dll.so b/lib64/wine/url.dll.so new file mode 100755 index 0000000..c02119d Binary files /dev/null and b/lib64/wine/url.dll.so differ diff --git a/lib64/wine/urlmon.dll.so b/lib64/wine/urlmon.dll.so new file mode 100755 index 0000000..6edf83d Binary files /dev/null and b/lib64/wine/urlmon.dll.so differ diff --git a/lib64/wine/usbd.sys.so b/lib64/wine/usbd.sys.so new file mode 100755 index 0000000..020d268 Binary files /dev/null and b/lib64/wine/usbd.sys.so differ diff --git a/lib64/wine/user32.dll.so b/lib64/wine/user32.dll.so new file mode 100755 index 0000000..7f8d69a Binary files /dev/null and b/lib64/wine/user32.dll.so differ diff --git a/lib64/wine/userenv.dll.so b/lib64/wine/userenv.dll.so new file mode 100755 index 0000000..a02d9b5 Binary files /dev/null and b/lib64/wine/userenv.dll.so differ diff --git a/lib64/wine/usp10.dll.so b/lib64/wine/usp10.dll.so new file mode 100755 index 0000000..0251ce6 Binary files /dev/null and b/lib64/wine/usp10.dll.so differ diff --git a/lib64/wine/uxtheme.dll.so b/lib64/wine/uxtheme.dll.so new file mode 100755 index 0000000..cd86185 Binary files /dev/null and b/lib64/wine/uxtheme.dll.so differ diff --git a/lib64/wine/vbscript.dll.so b/lib64/wine/vbscript.dll.so new file mode 100755 index 0000000..9adfa3a Binary files /dev/null and b/lib64/wine/vbscript.dll.so differ diff --git a/lib64/wine/vcomp.dll.so b/lib64/wine/vcomp.dll.so new file mode 100755 index 0000000..0e3fbd2 Binary files /dev/null and b/lib64/wine/vcomp.dll.so differ diff --git a/lib64/wine/vcomp100.dll.so b/lib64/wine/vcomp100.dll.so new file mode 100755 index 0000000..f51c795 Binary files /dev/null and b/lib64/wine/vcomp100.dll.so differ diff --git a/lib64/wine/vcomp110.dll.so b/lib64/wine/vcomp110.dll.so new file mode 100755 index 0000000..7c3dd5a Binary files /dev/null and b/lib64/wine/vcomp110.dll.so differ diff --git a/lib64/wine/vcomp120.dll.so b/lib64/wine/vcomp120.dll.so new file mode 100755 index 0000000..2d03ad3 Binary files /dev/null and b/lib64/wine/vcomp120.dll.so differ diff --git a/lib64/wine/vcomp140.dll.so b/lib64/wine/vcomp140.dll.so new file mode 100755 index 0000000..94f49ab Binary files /dev/null and b/lib64/wine/vcomp140.dll.so differ diff --git a/lib64/wine/vcomp90.dll.so b/lib64/wine/vcomp90.dll.so new file mode 100755 index 0000000..dc0426a Binary files /dev/null and b/lib64/wine/vcomp90.dll.so differ diff --git a/lib64/wine/vcruntime140.dll.so b/lib64/wine/vcruntime140.dll.so new file mode 100755 index 0000000..503800d Binary files /dev/null and b/lib64/wine/vcruntime140.dll.so differ diff --git a/lib64/wine/vdmdbg.dll.so b/lib64/wine/vdmdbg.dll.so new file mode 100755 index 0000000..d25af49 Binary files /dev/null and b/lib64/wine/vdmdbg.dll.so differ diff --git a/lib64/wine/version.dll.so b/lib64/wine/version.dll.so new file mode 100755 index 0000000..b5f7221 Binary files /dev/null and b/lib64/wine/version.dll.so differ diff --git a/lib64/wine/view.exe.so b/lib64/wine/view.exe.so new file mode 100755 index 0000000..e00efdf Binary files /dev/null and b/lib64/wine/view.exe.so differ diff --git a/lib64/wine/virtdisk.dll.so b/lib64/wine/virtdisk.dll.so new file mode 100755 index 0000000..e007e50 Binary files /dev/null and b/lib64/wine/virtdisk.dll.so differ diff --git a/lib64/wine/vssapi.dll.so b/lib64/wine/vssapi.dll.so new file mode 100755 index 0000000..5c3f7cb Binary files /dev/null and b/lib64/wine/vssapi.dll.so differ diff --git a/lib64/wine/vulkan-1.dll.so b/lib64/wine/vulkan-1.dll.so new file mode 100755 index 0000000..ba27988 Binary files /dev/null and b/lib64/wine/vulkan-1.dll.so differ diff --git a/lib64/wine/wbemdisp.dll.so b/lib64/wine/wbemdisp.dll.so new file mode 100755 index 0000000..c3c656e Binary files /dev/null and b/lib64/wine/wbemdisp.dll.so differ diff --git a/lib64/wine/wbemprox.dll.so b/lib64/wine/wbemprox.dll.so new file mode 100755 index 0000000..3678e23 Binary files /dev/null and b/lib64/wine/wbemprox.dll.so differ diff --git a/lib64/wine/wdscore.dll.so b/lib64/wine/wdscore.dll.so new file mode 100755 index 0000000..f00fd69 Binary files /dev/null and b/lib64/wine/wdscore.dll.so differ diff --git a/lib64/wine/webservices.dll.so b/lib64/wine/webservices.dll.so new file mode 100755 index 0000000..b0411ab Binary files /dev/null and b/lib64/wine/webservices.dll.so differ diff --git a/lib64/wine/wer.dll.so b/lib64/wine/wer.dll.so new file mode 100755 index 0000000..ab69cb1 Binary files /dev/null and b/lib64/wine/wer.dll.so differ diff --git a/lib64/wine/wevtapi.dll.so b/lib64/wine/wevtapi.dll.so new file mode 100755 index 0000000..6eebd09 Binary files /dev/null and b/lib64/wine/wevtapi.dll.so differ diff --git a/lib64/wine/wevtutil.exe.so b/lib64/wine/wevtutil.exe.so new file mode 100755 index 0000000..3a5b32c Binary files /dev/null and b/lib64/wine/wevtutil.exe.so differ diff --git a/lib64/wine/wiaservc.dll.so b/lib64/wine/wiaservc.dll.so new file mode 100755 index 0000000..6242ae7 Binary files /dev/null and b/lib64/wine/wiaservc.dll.so differ diff --git a/lib64/wine/wimgapi.dll.so b/lib64/wine/wimgapi.dll.so new file mode 100755 index 0000000..e4c5e4e Binary files /dev/null and b/lib64/wine/wimgapi.dll.so differ diff --git a/lib64/wine/win32k.sys.so b/lib64/wine/win32k.sys.so new file mode 100755 index 0000000..09ebb51 Binary files /dev/null and b/lib64/wine/win32k.sys.so differ diff --git a/lib64/wine/windowscodecs.dll.so b/lib64/wine/windowscodecs.dll.so new file mode 100755 index 0000000..a10847c Binary files /dev/null and b/lib64/wine/windowscodecs.dll.so differ diff --git a/lib64/wine/windowscodecsext.dll.so b/lib64/wine/windowscodecsext.dll.so new file mode 100755 index 0000000..1f927d3 Binary files /dev/null and b/lib64/wine/windowscodecsext.dll.so differ diff --git a/lib64/wine/winealsa.drv.so b/lib64/wine/winealsa.drv.so new file mode 100755 index 0000000..6f15b15 Binary files /dev/null and b/lib64/wine/winealsa.drv.so differ diff --git a/lib64/wine/wineboot.exe.so b/lib64/wine/wineboot.exe.so new file mode 100755 index 0000000..29c5206 Binary files /dev/null and b/lib64/wine/wineboot.exe.so differ diff --git a/lib64/wine/winebrowser.exe.so b/lib64/wine/winebrowser.exe.so new file mode 100755 index 0000000..e868b56 Binary files /dev/null and b/lib64/wine/winebrowser.exe.so differ diff --git a/lib64/wine/winebus.sys.so b/lib64/wine/winebus.sys.so new file mode 100755 index 0000000..80ad63f Binary files /dev/null and b/lib64/wine/winebus.sys.so differ diff --git a/lib64/wine/winecfg.exe.so b/lib64/wine/winecfg.exe.so new file mode 100755 index 0000000..4d9b9c9 Binary files /dev/null and b/lib64/wine/winecfg.exe.so differ diff --git a/lib64/wine/wineconsole.exe.so b/lib64/wine/wineconsole.exe.so new file mode 100755 index 0000000..83b0402 Binary files /dev/null and b/lib64/wine/wineconsole.exe.so differ diff --git a/lib64/wine/wined3d.dll.so b/lib64/wine/wined3d.dll.so new file mode 100755 index 0000000..196dd57 Binary files /dev/null and b/lib64/wine/wined3d.dll.so differ diff --git a/lib64/wine/winedbg.exe.so b/lib64/wine/winedbg.exe.so new file mode 100755 index 0000000..4b8cbfb Binary files /dev/null and b/lib64/wine/winedbg.exe.so differ diff --git a/lib64/wine/winedevice.exe.so b/lib64/wine/winedevice.exe.so new file mode 100755 index 0000000..6551252 Binary files /dev/null and b/lib64/wine/winedevice.exe.so differ diff --git a/lib64/wine/winefile.exe.so b/lib64/wine/winefile.exe.so new file mode 100755 index 0000000..65b48e1 Binary files /dev/null and b/lib64/wine/winefile.exe.so differ diff --git a/lib64/wine/winegstreamer.dll.so b/lib64/wine/winegstreamer.dll.so new file mode 100755 index 0000000..78e999b Binary files /dev/null and b/lib64/wine/winegstreamer.dll.so differ diff --git a/lib64/wine/winehid.sys.so b/lib64/wine/winehid.sys.so new file mode 100755 index 0000000..57802c5 Binary files /dev/null and b/lib64/wine/winehid.sys.so differ diff --git a/lib64/wine/winejoystick.drv.so b/lib64/wine/winejoystick.drv.so new file mode 100755 index 0000000..ce93780 Binary files /dev/null and b/lib64/wine/winejoystick.drv.so differ diff --git a/lib64/wine/winemapi.dll.so b/lib64/wine/winemapi.dll.so new file mode 100755 index 0000000..8ade51e Binary files /dev/null and b/lib64/wine/winemapi.dll.so differ diff --git a/lib64/wine/winemenubuilder.exe.so b/lib64/wine/winemenubuilder.exe.so new file mode 100755 index 0000000..4da4ba0 Binary files /dev/null and b/lib64/wine/winemenubuilder.exe.so differ diff --git a/lib64/wine/winemine.exe.so b/lib64/wine/winemine.exe.so new file mode 100755 index 0000000..43b65d6 Binary files /dev/null and b/lib64/wine/winemine.exe.so differ diff --git a/lib64/wine/winemsibuilder.exe.so b/lib64/wine/winemsibuilder.exe.so new file mode 100755 index 0000000..d926503 Binary files /dev/null and b/lib64/wine/winemsibuilder.exe.so differ diff --git a/lib64/wine/wineoss.drv.so b/lib64/wine/wineoss.drv.so new file mode 100755 index 0000000..0428d3c Binary files /dev/null and b/lib64/wine/wineoss.drv.so differ diff --git a/lib64/wine/winepath.exe.so b/lib64/wine/winepath.exe.so new file mode 100755 index 0000000..83274f0 Binary files /dev/null and b/lib64/wine/winepath.exe.so differ diff --git a/lib64/wine/wineps.drv.so b/lib64/wine/wineps.drv.so new file mode 100755 index 0000000..9146e15 Binary files /dev/null and b/lib64/wine/wineps.drv.so differ diff --git a/lib64/wine/winepulse.drv.so b/lib64/wine/winepulse.drv.so new file mode 100755 index 0000000..769c7bc Binary files /dev/null and b/lib64/wine/winepulse.drv.so differ diff --git a/lib64/wine/winevulkan.dll.so b/lib64/wine/winevulkan.dll.so new file mode 100755 index 0000000..998398c Binary files /dev/null and b/lib64/wine/winevulkan.dll.so differ diff --git a/lib64/wine/winex11.drv.so b/lib64/wine/winex11.drv.so new file mode 100755 index 0000000..c345efb Binary files /dev/null and b/lib64/wine/winex11.drv.so differ diff --git a/lib64/wine/wing32.dll.so b/lib64/wine/wing32.dll.so new file mode 100755 index 0000000..c9efff4 Binary files /dev/null and b/lib64/wine/wing32.dll.so differ diff --git a/lib64/wine/winhlp32.exe.so b/lib64/wine/winhlp32.exe.so new file mode 100755 index 0000000..0ffdbd9 Binary files /dev/null and b/lib64/wine/winhlp32.exe.so differ diff --git a/lib64/wine/winhttp.dll.so b/lib64/wine/winhttp.dll.so new file mode 100755 index 0000000..a913ccf Binary files /dev/null and b/lib64/wine/winhttp.dll.so differ diff --git a/lib64/wine/wininet.dll.so b/lib64/wine/wininet.dll.so new file mode 100755 index 0000000..d713c3a Binary files /dev/null and b/lib64/wine/wininet.dll.so differ diff --git a/lib64/wine/winmgmt.exe.so b/lib64/wine/winmgmt.exe.so new file mode 100755 index 0000000..a776719 Binary files /dev/null and b/lib64/wine/winmgmt.exe.so differ diff --git a/lib64/wine/winmm.dll.so b/lib64/wine/winmm.dll.so new file mode 100755 index 0000000..f8d11e5 Binary files /dev/null and b/lib64/wine/winmm.dll.so differ diff --git a/lib64/wine/winnls32.dll.so b/lib64/wine/winnls32.dll.so new file mode 100755 index 0000000..0f808f2 Binary files /dev/null and b/lib64/wine/winnls32.dll.so differ diff --git a/lib64/wine/winscard.dll.so b/lib64/wine/winscard.dll.so new file mode 100755 index 0000000..9506da3 Binary files /dev/null and b/lib64/wine/winscard.dll.so differ diff --git a/lib64/wine/winspool.drv.so b/lib64/wine/winspool.drv.so new file mode 100755 index 0000000..c832d69 Binary files /dev/null and b/lib64/wine/winspool.drv.so differ diff --git a/lib64/wine/winsta.dll.so b/lib64/wine/winsta.dll.so new file mode 100755 index 0000000..5ad4836 Binary files /dev/null and b/lib64/wine/winsta.dll.so differ diff --git a/lib64/wine/wintab32.dll.so b/lib64/wine/wintab32.dll.so new file mode 100755 index 0000000..b8c35ca Binary files /dev/null and b/lib64/wine/wintab32.dll.so differ diff --git a/lib64/wine/wintrust.dll.so b/lib64/wine/wintrust.dll.so new file mode 100755 index 0000000..fe3e4f8 Binary files /dev/null and b/lib64/wine/wintrust.dll.so differ diff --git a/lib64/wine/winusb.dll.so b/lib64/wine/winusb.dll.so new file mode 100755 index 0000000..c0b57ac Binary files /dev/null and b/lib64/wine/winusb.dll.so differ diff --git a/lib64/wine/winver.exe.so b/lib64/wine/winver.exe.so new file mode 100755 index 0000000..c667e2e Binary files /dev/null and b/lib64/wine/winver.exe.so differ diff --git a/lib64/wine/wlanapi.dll.so b/lib64/wine/wlanapi.dll.so new file mode 100755 index 0000000..a540443 Binary files /dev/null and b/lib64/wine/wlanapi.dll.so differ diff --git a/lib64/wine/wldap32.dll.so b/lib64/wine/wldap32.dll.so new file mode 100755 index 0000000..b37d4f1 Binary files /dev/null and b/lib64/wine/wldap32.dll.so differ diff --git a/lib64/wine/wmasf.dll.so b/lib64/wine/wmasf.dll.so new file mode 100755 index 0000000..172fcf3 Binary files /dev/null and b/lib64/wine/wmasf.dll.so differ diff --git a/lib64/wine/wmi.dll.so b/lib64/wine/wmi.dll.so new file mode 100755 index 0000000..c854653 Binary files /dev/null and b/lib64/wine/wmi.dll.so differ diff --git a/lib64/wine/wmic.exe.so b/lib64/wine/wmic.exe.so new file mode 100755 index 0000000..516cac7 Binary files /dev/null and b/lib64/wine/wmic.exe.so differ diff --git a/lib64/wine/wmiutils.dll.so b/lib64/wine/wmiutils.dll.so new file mode 100755 index 0000000..ed2ac1b Binary files /dev/null and b/lib64/wine/wmiutils.dll.so differ diff --git a/lib64/wine/wmp.dll.so b/lib64/wine/wmp.dll.so new file mode 100755 index 0000000..4157313 Binary files /dev/null and b/lib64/wine/wmp.dll.so differ diff --git a/lib64/wine/wmphoto.dll.so b/lib64/wine/wmphoto.dll.so new file mode 100755 index 0000000..4535bf1 Binary files /dev/null and b/lib64/wine/wmphoto.dll.so differ diff --git a/lib64/wine/wmplayer.exe.so b/lib64/wine/wmplayer.exe.so new file mode 100755 index 0000000..97ff06b Binary files /dev/null and b/lib64/wine/wmplayer.exe.so differ diff --git a/lib64/wine/wmvcore.dll.so b/lib64/wine/wmvcore.dll.so new file mode 100755 index 0000000..da5bfee Binary files /dev/null and b/lib64/wine/wmvcore.dll.so differ diff --git a/lib64/wine/wnaspi32.dll.so b/lib64/wine/wnaspi32.dll.so new file mode 100755 index 0000000..672e632 Binary files /dev/null and b/lib64/wine/wnaspi32.dll.so differ diff --git a/lib64/wine/wordpad.exe.so b/lib64/wine/wordpad.exe.so new file mode 100755 index 0000000..cf8f5df Binary files /dev/null and b/lib64/wine/wordpad.exe.so differ diff --git a/lib64/wine/wow64cpu.dll.so b/lib64/wine/wow64cpu.dll.so new file mode 100755 index 0000000..c3e7eaf Binary files /dev/null and b/lib64/wine/wow64cpu.dll.so differ diff --git a/lib64/wine/wpc.dll.so b/lib64/wine/wpc.dll.so new file mode 100755 index 0000000..c087755 Binary files /dev/null and b/lib64/wine/wpc.dll.so differ diff --git a/lib64/wine/wpcap.dll.so b/lib64/wine/wpcap.dll.so new file mode 100755 index 0000000..8f8e97b Binary files /dev/null and b/lib64/wine/wpcap.dll.so differ diff --git a/lib64/wine/write.exe.so b/lib64/wine/write.exe.so new file mode 100755 index 0000000..669177d Binary files /dev/null and b/lib64/wine/write.exe.so differ diff --git a/lib64/wine/ws2_32.dll.so b/lib64/wine/ws2_32.dll.so new file mode 100755 index 0000000..f49be14 Binary files /dev/null and b/lib64/wine/ws2_32.dll.so differ diff --git a/lib64/wine/wscript.exe.so b/lib64/wine/wscript.exe.so new file mode 100755 index 0000000..2a0f3b7 Binary files /dev/null and b/lib64/wine/wscript.exe.so differ diff --git a/lib64/wine/wsdapi.dll.so b/lib64/wine/wsdapi.dll.so new file mode 100755 index 0000000..ada17f4 Binary files /dev/null and b/lib64/wine/wsdapi.dll.so differ diff --git a/lib64/wine/wshom.ocx.so b/lib64/wine/wshom.ocx.so new file mode 100755 index 0000000..4189101 Binary files /dev/null and b/lib64/wine/wshom.ocx.so differ diff --git a/lib64/wine/wsnmp32.dll.so b/lib64/wine/wsnmp32.dll.so new file mode 100755 index 0000000..bafb234 Binary files /dev/null and b/lib64/wine/wsnmp32.dll.so differ diff --git a/lib64/wine/wsock32.dll.so b/lib64/wine/wsock32.dll.so new file mode 100755 index 0000000..1874e9e Binary files /dev/null and b/lib64/wine/wsock32.dll.so differ diff --git a/lib64/wine/wtsapi32.dll.so b/lib64/wine/wtsapi32.dll.so new file mode 100755 index 0000000..4af9867 Binary files /dev/null and b/lib64/wine/wtsapi32.dll.so differ diff --git a/lib64/wine/wuapi.dll.so b/lib64/wine/wuapi.dll.so new file mode 100755 index 0000000..aad0c30 Binary files /dev/null and b/lib64/wine/wuapi.dll.so differ diff --git a/lib64/wine/wuaueng.dll.so b/lib64/wine/wuaueng.dll.so new file mode 100755 index 0000000..e9cdc30 Binary files /dev/null and b/lib64/wine/wuaueng.dll.so differ diff --git a/lib64/wine/wuauserv.exe.so b/lib64/wine/wuauserv.exe.so new file mode 100755 index 0000000..d8b5b33 Binary files /dev/null and b/lib64/wine/wuauserv.exe.so differ diff --git a/lib64/wine/wusa.exe.so b/lib64/wine/wusa.exe.so new file mode 100755 index 0000000..2f95832 Binary files /dev/null and b/lib64/wine/wusa.exe.so differ diff --git a/lib64/wine/x3daudio1_0.dll.so b/lib64/wine/x3daudio1_0.dll.so new file mode 100755 index 0000000..6012d75 Binary files /dev/null and b/lib64/wine/x3daudio1_0.dll.so differ diff --git a/lib64/wine/x3daudio1_1.dll.so b/lib64/wine/x3daudio1_1.dll.so new file mode 100755 index 0000000..52ed7f8 Binary files /dev/null and b/lib64/wine/x3daudio1_1.dll.so differ diff --git a/lib64/wine/x3daudio1_2.dll.so b/lib64/wine/x3daudio1_2.dll.so new file mode 100755 index 0000000..9799c30 Binary files /dev/null and b/lib64/wine/x3daudio1_2.dll.so differ diff --git a/lib64/wine/x3daudio1_3.dll.so b/lib64/wine/x3daudio1_3.dll.so new file mode 100755 index 0000000..8b7fa4f Binary files /dev/null and b/lib64/wine/x3daudio1_3.dll.so differ diff --git a/lib64/wine/x3daudio1_4.dll.so b/lib64/wine/x3daudio1_4.dll.so new file mode 100755 index 0000000..c3cff92 Binary files /dev/null and b/lib64/wine/x3daudio1_4.dll.so differ diff --git a/lib64/wine/x3daudio1_5.dll.so b/lib64/wine/x3daudio1_5.dll.so new file mode 100755 index 0000000..7f1aa68 Binary files /dev/null and b/lib64/wine/x3daudio1_5.dll.so differ diff --git a/lib64/wine/x3daudio1_6.dll.so b/lib64/wine/x3daudio1_6.dll.so new file mode 100755 index 0000000..0cc8587 Binary files /dev/null and b/lib64/wine/x3daudio1_6.dll.so differ diff --git a/lib64/wine/x3daudio1_7.dll.so b/lib64/wine/x3daudio1_7.dll.so new file mode 100755 index 0000000..d579c49 Binary files /dev/null and b/lib64/wine/x3daudio1_7.dll.so differ diff --git a/lib64/wine/xapofx1_1.dll.so b/lib64/wine/xapofx1_1.dll.so new file mode 100755 index 0000000..92928d6 Binary files /dev/null and b/lib64/wine/xapofx1_1.dll.so differ diff --git a/lib64/wine/xapofx1_2.dll.so b/lib64/wine/xapofx1_2.dll.so new file mode 100755 index 0000000..2e9f57a Binary files /dev/null and b/lib64/wine/xapofx1_2.dll.so differ diff --git a/lib64/wine/xapofx1_3.dll.so b/lib64/wine/xapofx1_3.dll.so new file mode 100755 index 0000000..62aca0a Binary files /dev/null and b/lib64/wine/xapofx1_3.dll.so differ diff --git a/lib64/wine/xapofx1_4.dll.so b/lib64/wine/xapofx1_4.dll.so new file mode 100755 index 0000000..0e0c9ab Binary files /dev/null and b/lib64/wine/xapofx1_4.dll.so differ diff --git a/lib64/wine/xapofx1_5.dll.so b/lib64/wine/xapofx1_5.dll.so new file mode 100755 index 0000000..8c62938 Binary files /dev/null and b/lib64/wine/xapofx1_5.dll.so differ diff --git a/lib64/wine/xaudio2_0.dll.so b/lib64/wine/xaudio2_0.dll.so new file mode 100755 index 0000000..5b0a088 Binary files /dev/null and b/lib64/wine/xaudio2_0.dll.so differ diff --git a/lib64/wine/xaudio2_1.dll.so b/lib64/wine/xaudio2_1.dll.so new file mode 100755 index 0000000..b0d9ced Binary files /dev/null and b/lib64/wine/xaudio2_1.dll.so differ diff --git a/lib64/wine/xaudio2_2.dll.so b/lib64/wine/xaudio2_2.dll.so new file mode 100755 index 0000000..f77596f Binary files /dev/null and b/lib64/wine/xaudio2_2.dll.so differ diff --git a/lib64/wine/xaudio2_3.dll.so b/lib64/wine/xaudio2_3.dll.so new file mode 100755 index 0000000..9115d9f Binary files /dev/null and b/lib64/wine/xaudio2_3.dll.so differ diff --git a/lib64/wine/xaudio2_4.dll.so b/lib64/wine/xaudio2_4.dll.so new file mode 100755 index 0000000..fc807c8 Binary files /dev/null and b/lib64/wine/xaudio2_4.dll.so differ diff --git a/lib64/wine/xaudio2_5.dll.so b/lib64/wine/xaudio2_5.dll.so new file mode 100755 index 0000000..64c7815 Binary files /dev/null and b/lib64/wine/xaudio2_5.dll.so differ diff --git a/lib64/wine/xaudio2_6.dll.so b/lib64/wine/xaudio2_6.dll.so new file mode 100755 index 0000000..850e775 Binary files /dev/null and b/lib64/wine/xaudio2_6.dll.so differ diff --git a/lib64/wine/xaudio2_7.dll.so b/lib64/wine/xaudio2_7.dll.so new file mode 100755 index 0000000..e69e960 Binary files /dev/null and b/lib64/wine/xaudio2_7.dll.so differ diff --git a/lib64/wine/xaudio2_8.dll.so b/lib64/wine/xaudio2_8.dll.so new file mode 100755 index 0000000..c15aab3 Binary files /dev/null and b/lib64/wine/xaudio2_8.dll.so differ diff --git a/lib64/wine/xaudio2_9.dll.so b/lib64/wine/xaudio2_9.dll.so new file mode 100755 index 0000000..f26f1e3 Binary files /dev/null and b/lib64/wine/xaudio2_9.dll.so differ diff --git a/lib64/wine/xcopy.exe.so b/lib64/wine/xcopy.exe.so new file mode 100755 index 0000000..1b965cc Binary files /dev/null and b/lib64/wine/xcopy.exe.so differ diff --git a/lib64/wine/xinput1_1.dll.so b/lib64/wine/xinput1_1.dll.so new file mode 100755 index 0000000..29912fe Binary files /dev/null and b/lib64/wine/xinput1_1.dll.so differ diff --git a/lib64/wine/xinput1_2.dll.so b/lib64/wine/xinput1_2.dll.so new file mode 100755 index 0000000..10b664e Binary files /dev/null and b/lib64/wine/xinput1_2.dll.so differ diff --git a/lib64/wine/xinput1_3.dll.so b/lib64/wine/xinput1_3.dll.so new file mode 100755 index 0000000..23e4ae3 Binary files /dev/null and b/lib64/wine/xinput1_3.dll.so differ diff --git a/lib64/wine/xinput1_4.dll.so b/lib64/wine/xinput1_4.dll.so new file mode 100755 index 0000000..35b7d80 Binary files /dev/null and b/lib64/wine/xinput1_4.dll.so differ diff --git a/lib64/wine/xinput9_1_0.dll.so b/lib64/wine/xinput9_1_0.dll.so new file mode 100755 index 0000000..a809b17 Binary files /dev/null and b/lib64/wine/xinput9_1_0.dll.so differ diff --git a/lib64/wine/xmllite.dll.so b/lib64/wine/xmllite.dll.so new file mode 100755 index 0000000..c703e41 Binary files /dev/null and b/lib64/wine/xmllite.dll.so differ diff --git a/lib64/wine/xolehlp.dll.so b/lib64/wine/xolehlp.dll.so new file mode 100755 index 0000000..01cb7a8 Binary files /dev/null and b/lib64/wine/xolehlp.dll.so differ diff --git a/lib64/wine/xpsprint.dll.so b/lib64/wine/xpsprint.dll.so new file mode 100755 index 0000000..2e29500 Binary files /dev/null and b/lib64/wine/xpsprint.dll.so differ diff --git a/lib64/wine/xpssvcs.dll.so b/lib64/wine/xpssvcs.dll.so new file mode 100755 index 0000000..2a16f47 Binary files /dev/null and b/lib64/wine/xpssvcs.dll.so differ diff --git a/share/applications/wine.desktop b/share/applications/wine.desktop new file mode 100644 index 0000000..36dd921 --- /dev/null +++ b/share/applications/wine.desktop @@ -0,0 +1,32 @@ +[Desktop Entry] +Type=Application +Name=Wine Windows Program Loader +Name[ar]=منظومة واين لتشغيل برامج وندوز +Name[cs]=Zavaděč programů pro Wine +Name[de]=Wine Windows-Programmstarter +Name[es]=Wine Cargador de programas de Windows +Name[lt]=Wine Windows programų paleidyklė +Name[nl]=Wine Windows programmalader +Name[sv]=Wine Windows Programstartare +Name[ro]=Wine - Încărcătorul de programe Windows +Name[ru]=Wine - загрузчик Windows программ +Name[uk]=Wine - завантажувач Windows програм +Name[fr]=Wine - Chargeur de programmes Windows +Name[ca]=Wine - Carregador d'aplicacions del Windows +Name[pt]=Carregador de aplicativos Windows Wine +Name[pt_br]=Carregador de aplicativos Windows Wine +Name[it]=Wine Carica Programmi Windows +Name[da]=Wine, Programstarter til Windows-programmer +Name[nb]=Wine - for kjøring av Windows-programmer +Name[nn]=Wine - for køyring av Windows-program +Name[sr]=Wine - дизач Windows програма +Name[sr@latin]=Wine - dizač Windows programa +Name[tr]=Wine - Windows programı yükleyicisi +Name[hr]=Wine - dizač Windows programa +Name[he]=Wine — מריץ תכניות Windows +Name[ja]=Wine Windowsプログラムローダー +Exec=wine start /unix %f +MimeType=application/x-ms-dos-executable;application/x-msi;application/x-ms-shortcut; +Icon=wine +NoDisplay=true +StartupNotify=true diff --git a/share/man/de.UTF-8/man1/wine.1 b/share/man/de.UTF-8/man1/wine.1 new file mode 100644 index 0000000..6cfd969 --- /dev/null +++ b/share/man/de.UTF-8/man1/wine.1 @@ -0,0 +1,323 @@ +.\" -*- nroff -*- +.TH WINE 1 "November 2007" "Wine 4.6" "Windows On Unix" +.SH NAME +wine \- Windows-Programme auf Unix-Systemen ausführen +.SH ÜBERSICHT +.BI "wine " Programm +[Argumente ... ] +.br +.B wine --help +.br +.B wine --version +.PP +Für das Übergeben von Kommandos an Windows-Programme siehe den +Abschnitt +.B +"Programm / Argumente" +in dieser Manpage. +.SH BESCHREIBUNG +.B wine +lädt und führt ein Windows-Programm aus. Dieses Programm kann ein +beliebiges DOS/Win3.1/Win32-Programm sein; es wird nur die +x86-Architektur unterstützt. +.PP +Um wine zu debuggen, nutzen Sie anstelledessen das Kommando +.BR winedbg . +.PP +Um rein kommandozeilenbasierte Programme auszuführen, nutzen Sie +.B wineconsole +anstelle von +.BR wine . +Wenn Sie nicht +.B wineconsole +für CLI-Programme nutzen, kann dies dazu führen, dass das Programm +nicht korrekt ausgeführt werden kann. +.PP +Wenn wine nur mit +.B --help +oder +.B --version +als Argument aufgerufen wird, wird +.B wine +nur einen kleinen Hilfetext oder die Version ausgeben und sich beenden. +.SH PROGRAMM/ARGUMENTE +Der Programmname kann auf DOS-Art +.RI ( C:\(rs\(rsWINDOWS\(rs\(rsSOL.EXE ) +oder auf UNIX-Art angegeben werden +.RI ( /msdos/windows/sol.exe ). +Sie können Argumente an die Windows-Anwendung übergeben, indem Sie +sie einfach an den wine-Befehl anhängen (z. B.: +.IR "wine notepad C:\(rs\(rsTEMP\(rs\(rsREADME.TXT" ). +Sie müssen unter Umständen Sonderzeichen und/oder Leerzeichen +mit '\(rs' maskieren, wenn Sie wine über die Kommandokonsole aufrufen, +z.B. +.PP +wine C:\(rs\(rsProgram\(rs Files\(rs\(rsMyPrg\(rs\(rstest.exe +.PP +.SH UMGEBUNGSVARIABLEN +.B wine +leitet die Umgebungsvariablen der Shell, in der es gestartet wurde, an +die Windows-Applikation weiter. Um eine für Ihre Applikation nötige +Variable zugänglich zu machen, folgen Sie der Anleitung Ihrer Shell zu +Umgebungsvariablen. +.TP +.I WINEPREFIX +Wenn gesetzt, wird dieser Ordner als Speicherort für die +Konfigurationsdateien von +.B wine +genutzt. Die Standardeinstellung ist +.IR $HOME/.wine . +Dieser Ordner wird auch für den UNIX-Socket zur Kommunikation mit +.IR wineserver . +genutzt. Alle +.B wine +-Prozesse, die den gleichen +.B wineserver +nutzen (z.B. Prozesse desselben Nutzers) teilen sich bestimmte Objekte +wie die Registry, Arbeitsspeicher und die Konfigurationsdateien. Mit +dem Setzen von +.I WINEPREFIX +beim Starten verschiedener +.B wine +-Prozesse ist es möglich, eine Anzahl vollkommen unabhängiger +.B wine +-Prozesse zu starten. +.TP +.I WINESERVER +Gibt den Ort der +.B wineserver +-Anwendung an. Wenn diese Variable nicht gesetzt ist, wird versucht, +.B /home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wineserver +zu laden. Wenn auch dies nicht funktioniert, sucht +.B wine +in $PATH und anderen Orten nach wineserver. +.TP +.I WINELOADER +Gibt den Ort der +.B wine +-Anwendung an, die genutzt wird, um Windows-Programme zu laden. Wenn + diese Variable nicht gesetzt ist, wird versucht, +.B /home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine +zu laden. Wenn auch dies nicht funktioniert, wird in $PATH und anderen +Orten nach wine gesucht. +.TP +.I WINEDEBUG +Wählt die Stufe der Debug-Meldungen aus. Die Variable hat das Format +.RI [ Klasse ][+/-] Kanal [,[ Klasse2 ][+/-] Kanal2 ]. +.RS +7 +.PP +.I Klasse +ist optional und kann z.B. folgende Werte annehmen: +.BR err , +.BR warn , +.BR fixme , +oder +.BR trace . +Wenn +.I class +nicht angegeben ist, werden alle Debugmeldungen dieses Kanals +ausgegeben. Jeder Kanal gibt Meldungen einer bestimmten +.BR wine . +-Komponente aus. Das folgende Zeichen kann entweder + oder - sein, je +nachdem ob der Kanal ein- oder ausgeschaltet werden soll. Wenn keine +.I Klasse +angegeben ist, kann das führende + weggelassen werden. In WINEDEBUG +sind keine Leerzeichen erlaubt. +.PP +Beispiele: +.TP +WINEDEBUG=warn+all +zeigt alle Nachrichten der Kategorie "warning" an (empfohlen zum +Debuggen). +.br +.TP +WINEDEBUG=warn+dll,+heap +schaltet alle DLL-Meldungen der Kategorie "warning" sowie jegliche +Heap-Meldungen an. +.br +.TP +WINEDEBUG=fixme-all,warn+cursor,+relay +schaltet alle FIXME-Nachrichten ab, Zeigernachrichten der Kategorie +"warning" an und schaltet alle Relay-Meldungen (API-Aufrufe) an. +.br +.TP +WINEDEBUG=relay +schaltet alle Relay-Nachrichten an. Für mehr Kontrolle über die im +Relaytrace angezeigten DLLs und Funktionen siehe den [Debug]-Abschnitt +der Wine-Konfigurationsdatei. +.PP +Für mehr Informationen zu den Debug-Meldungen siehe den Abschnitt +.I Running Wine +im Wine-Benutzerhandbuch. +.RE +.TP +.I WINEDLLPATH +Gibt den Pfad/die Pfade an, in denen wine nach eigenen DLLs und +Winelib-Anwendungen sucht. Die Einträge der Liste werden mit einem ":" +getrennt. Zusätzlich wird noch in +.B /home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/lib/wine +gesucht. +.TP +.I WINEDLLOVERRIDES +Definiert die Bibliotheksüberschreibung und Ladereihenfolge der DLLs, +die beim Laden jeder DLL berücksichtigt wird. Derzeit gibt es zwei Typen von +DLLs, die in den Speicher eines Prozesses geladen werden können: +Native Windows-DLLs +.RI ( native ), +und +.B wine +-interne DLLs +.RI ( builtin ). +Der Typ kann mit dem ersten Buchstaben abgekürzt werden +.RI ( n ", " b ). +Jede Anweisungssequenz muss mit einem Komma abgeschlossen werden. +.RS +.PP +Jede DLL kann ihre eigene Ladereihenfolge besitzen. Die +Ladereihenfolge bestimmt, welche DLL-Version als erste geladen werden +soll. Wenn die erste versagt, ist die nächste an der Reihe und so +weiter. Viele DLLs mit derselben Reihenfolge können durch Kommata +getrennt werden. Es ist auch möglich, mit dem Semikolon verschiedene +Reihenfolgen für verschiedene DLLs festzulegen. +.PP +Die Ladereihenfolge für eine 16bit-DLL wird immer durch die +Reihenfolge der 32bit-DLL bestimmt, die sie enthält. Diese 32bit-DLL +kann durch Ansehen des symbolischen Links der 16bit .dll.so-Datei +gefunden werden. Wenn zum Beispiel ole32.dll als "builtin" eingestellt +ist, wird storage.dll ebenfalls als "builtin" geladen, da die +32bit-DLL ole32.dll die 16bit-DLL storage.dll enthält. +.PP +Beispiele: +.TP +WINEDLLOVERRIDES="comdlg32,shell32=n,b" +.br +Versuche, die DLLs comdlg32 und shell32 als native Windows-DLLs zu +laden; wenn dies fehlschlägt, soll Wine die mitgebrachte Version +benutzen. +.TP +WINEDLLOVERRIDES="comdlg32,shell32=n;c:\(rs\(rsfoo\(rs\(rsbar\(rs\(rsbaz=b" +.br +Versuche, die DLLs comdlg32 und shell32 als native Windows-DLLs zu +laden. Weiterhin, wenn eine Anwendung versucht, die DLL +c:\(rsfoo\(rsbar\(rsbaz.dll zu laden, soll wine die eingebaute DLL baz +verwenden. +.TP +WINEDLLOVERRIDES="comdlg32=b,n;shell32=b;comctl32=n" +.br +Versuche, die mitgebrachte comdlg32-Bibliothek zu laden; wenn dies +fehlschlägt soll Wine die native comdlg32-DLL nutzen. Bei shell32 soll +immer die mitgebrachte Version verwendet werden; bei comctl32 immer +die native. +.RE +.TP +.I DISPLAY +Gibt das zu nutzende X11-Display an. +.TP +OSS sound driver configuration variables +.TP +.I AUDIODEV +Gerät für Audio-Ein-/Ausgabe festlegen. Standard: +.BR /dev/dsp . +.TP +.I MIXERDEV +Audiomixer-Gerät festlegen. Standard: +.BR /dev/mixer . +.TP +.I MIDIDEV +MIDI-Sequencergerät festlegen. Standard: +.BR /dev/sequencer . +.SH DATEIEN +.TP +.I /home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine +Der +.B wine +-Programmstarter +.TP +.I /home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wineconsole +Der +.B wine +-Programmstarter für Konsolenapplikationen (CLI) +.TP +.I /home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wineserver +Der +.B wine +-Server +.TP +.I /home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/winedbg +Der +.B wine +-Debugger +.TP +.I /home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/lib/wine +Der Ordner mit den gemeinsamen DLLs von +.B wine +.TP +.I $WINEPREFIX/dosdevices +Dieser Ordner enthält die DOS-Gerätezuweisungen. Jede Datei in diesem +Ordner ist ein Symlink auf die Unix-Gerätedatei, die dieses Gerät +bereitstellt. Wenn zum Beispiel COM1 /dev/ttyS0 repräsentieren soll, +wird der Symlink $WINEPREFIX/dosdevices/com1 -> /dev/ttyS0 benötigt. +.br +DOS-Laufwerke werden auch mit Symlinks angegeben. Wenn z.B. das +Laufwerk D: dem CD-ROM-Laufwerk entsprechen soll, das auf /mnt/cdrom +eingebunden ist, wird der Link $WINEPREFIX/dosdevices/d: -> /mnt/cdrom +benötigt. Es kann auch die Unix-Gerätedatei angegeben werden; der +einzige Unterschied ist der "::" anstelle dem einfachen ":" im Namen: +$WINEPREFIX/dosdevices/d:: -> /dev/hdc. +.SH AUTOREN +.B wine +ist dank der Arbeit vieler Entwickler verfügbar. Für eine Liste siehe +die Datei +.B AUTHORS +im obersten Ordner der Quellcodedistribution. +.SH COPYRIGHT +.B wine +kann unter den Bedingungen der LGPL genutzt werden; für eine Kopie der +Lizenz siehe die Datei +.B COPYING.LIB +im obersten Ordner der Quellcodedistribution. +.SH FEHLER +.PP +Statusberichte für viele Anwendungen sind unter +.I https://appdb.winehq.org + verfügbar. Bitte fügen Sie Anwendungen, die Sie mit Wine nutzen, der + Liste hinzu, sofern noch kein Eintrag existiert. +.PP +Fehler können unter +.I https://bugs.winehq.org +gemeldet werden. Wenn Sie einen Fehler melden möchten, lesen Sie +bitte vorher +.I https://wiki.winehq.org/Bugs +im +.B wine +-Quellcode, um zu sehen, welche Informationen benötigt werden. +.PP +Probleme und Hinweise mit/zu dieser Manpage können auch auf +.I https://bugs.winehq.org +gemeldet werden. +.SH VERFÜGBARKEIT +Die aktuellste öffentliche Wine-Version kann auf +.I https://www.winehq.org/download +bezogen werden. +.PP +Ein Schnappschuss des Entwicklungscodes kann via GIT besorgt werden, +siehe dazu +.I +https://www.winehq.org/git +.PP +WineHQ, die Hauptseite der +.B wine +-Entwicklung, befindet sich auf +.IR https://www.winehq.org . +Diese Website bietet viele Informationen und Ressourcen zu +.BR wine . +.PP +Für nähere Informationen zur Entwicklung von +.B wine +können Sie sich als Abonnement bei der +.B wine +-Mailingliste auf +.I https://www.winehq.org/forums +eintragen. +.SH "SIEHE AUCH" +.BR wineserver (1),\ winedbg (1) diff --git a/share/man/de.UTF-8/man1/winemaker.1 b/share/man/de.UTF-8/man1/winemaker.1 new file mode 100644 index 0000000..17b79d2 --- /dev/null +++ b/share/man/de.UTF-8/man1/winemaker.1 @@ -0,0 +1,264 @@ +.\" -*- nroff -*- +.TH WINEMAKER 1 "Januar 2012" "Wine 4.6" "Wine Entwicklerhandbuch" +.SH NAME +winemaker \- Erzeugt eine Build-Infrastruktur, um Windows Programme unter Unix zu kompilieren +.SH ÜBERSICHT +.B "winemaker " +[ +.BR "--nobanner " "] [ " "--backup " "| " "--nobackup " "] [ "--nosource-fix " +] +.br + [ +.BR "--lower-none " "| " "--lower-all " "| " "--lower-uppercase " +] +.br + [ +.BR "--lower-include " "| " "--nolower-include " ]\ [ " --mfc " "| " "--nomfc " +] +.br + [ +.BR "--guiexe " "| " "--windows " "| " "--cuiexe " "| " "--console " "| " "--dll " "| " "--lib " +] +.br + [ +.BI "-D" macro "\fR[=\fIdefn\fR] ] [" "\ " "-I" "dir\fR ]\ [ " "-P" "dir\fR ] [ " "-i" "dll\fR ] [ " "-L" "dir\fR ] [ " "-l" "library " +] +.br + [ +.BR "--nodlls " "] [ " "--nomsvcrt " "] [ " "--interactive " "] [ " "--single-target \fIname\fR " +] +.br + [ +.BR "--generated-files " "] [ " "--nogenerated-files " "] +.br + [ +.BR "--wine32 " "] +.br +.IR " Arbeitsverzeichnis" " | " "Projektdatei" " | " "Workspacedatei" + +.SH BESCHREIBUNG +.PP +.B winemaker +ist ein Perl-Script um Ihnen das Konvertieren von Windows-Quellcode +zu einem Winelib-Programm zu erleichtern. +.PP +Zu diesem Zweck beherrscht \fBwinemaker\fR folgende Operationen: +.PP +- Quellcodedateien und Verzeichnisse in Kleinbuchstaben umbenennen, falls +diese beim Übertragen komplett in Großbuchstaben angekommen sind. +.PP +- Konvertierung von DOS- zu Unix-Zeilenenden (CRLF nach LF). +.PP +- Include-Anweisungen und Resourcenreferenzen durchsuchen, um Backslashes +durch Slashes zu ersetzen. +.PP +- Während des obigen Schrittes wird \fBwinemaker\fR ebenfalls nach der angegebenen Datei +im Includepfad suchen und die entsprechende Zeile, falls nötig, mit der korrekten +Groß-/Kleinschreibweise austauschen. +.PP +- \fBwinemaker\fR wird ebenso andere, exotischere Probleme wie die Benutzung von +\fI#pragma pack\fR, \fIafxres.h\fR in nicht-MFC-Projekten und mehr untersuchen. +Sollte etwas ungwöhnliches vorkommen, wird \fBwinemaker\fR Sie warnen. +.PP +- \fBwinemaker\fR kann eine ganze Verzeichnisstruktur auf einmal durchsuchen, +schätzen welche ausführbaren Dateien und Bibliotheken Sie zu erstellen +gedenken, diese den passenden Quelldateien zuordnen und entsprechende \fIMakefile\fR +generieren. +.PP +- letztendlich wird \fBwinemaker\fR eine globale \fIMakefile\fR für den normalen Gebrauch erzeugen. +.PP +- \fBwinemaker\fR erkennt MFC-basierte Projekte und erstellt angepasste Dateien. +.PP +- Existierende Projektdateien können von \fBwinemaker\fR gelesen werden. +Unterstützt sind dsp, dsw, vcproj und sln-Dateien. +.PP +.SH ARGUMENTE +.TP +.B --nobanner +Unterdrückt die Anzeige des Banners. +.TP +.B --backup +Lässt \fBwinemaker\fR Backups von allen Quellcodedateien anlegen, an denen +Änderungen vorgenommen werden. Diese Option ist Standard. +.TP +.B --nobackup +Lässt \fBwinemaker\fR keine Backups anlegen. +.TP +.B --nosource-fix +Weist \fBwinemaker\fR an, keine Quellcodedateien zu ändern (z.B. DOS zu Unix +Konvertierung). Verhindert Fehlermeldungen bei schreibgeschützten Dateien. +.TP +.B --lower-all +Alle Dateien und Verzeichnisse werden in Kleinschreibung umbenannt. +.TP +.B --lower-uppercase +Nur Dateien und Verzeichnisse, die komplett groß geschrieben sind, werden +in Kleinschreibung umbenannt. +\fIHALLO.C\fR würde beispielsweise umbenannt werden, \fIWelt.c\fR jedoch nicht. +.TP +.B --lower-none +Keine Dateien und Verzeichnisse werden in Kleinschreibung umbenannt. +Beachten Sie, dass dies nicht die Umbenennung von Dateien verhindert, deren +Erweiterungen nicht unverändert verarbeitet werden können, z.B. ".Cxx". +Diese Option ist Standard. +.TP +.B "--lower-include " +Wenn die Datei zu einer Include-Anweisung (oder einer anderen Form von +Dateireferenz für Resourcen) nicht auffindbar ist, wird der Dateiname in +Kleinschreibung umbenannt. Diese Option ist Standard. +.TP +.B "--nolower-include " +Es werden keine Änderungen an Include-Anweisungen oder Referenzen vorgenommen, +wenn die entsprechende Datei nicht auffindbar ist. +.TP +.BR "--guiexe " "| " "--windows" +Legt fest, dass für jedes gefundene, ausführbare Target, oder Target unbekannten +Typs angenommen wird, dass es sich um eine grafische Anwendung handelt. +Diese Option ist Standard. +.TP +.BR "--cuiexe " "| " "--console" +Legt fest, dass für jedes gefundene, ausführbare Target, oder Target unbekannten +Typs angenommen wird, dass es sich um eine Konsolenanwendung handelt. +.TP +.B --dll +\fBwinemaker\fR wird im Zweifelsfall annehmen, dass es sich bei einem unbekannten +Target um eine DLL handelt. +.TP +.B --lib +\fBwinemaker\fR wird im Zweifelsfall annehmen, dass es sich bei einem unbekannten +Target um eine statische Bibliothek handelt. +.TP +.B --mfc +Teilt \fBwinemaker\fR mit, dass es sich um MFC-basierte Ziele handelt. In solch einem +Fall passt \fBwinemaker\fR Pfade für Header und Bibliotheken entsprechend an und +verlinkt die Ziele mit der MFC-Bibliothek. +.TP +.B --nomfc +Teilt \fBwinemaker\fR mit, dass es sich nicht um MFC-basierte Ziele handelt. Diese +Option verhindert die Benutzung von MFC-Bibliotheken, selbst wenn \fBwinemaker\fR +Dateien wie \fIstdafx.cpp\fR oder \fIstdafx.h\fR begegnet, was normalerweise automatisch +MFC aktivieren würde, wenn weder \fB--nomfc\fR noch \fB--mfc\fR angegeben wurden. +.TP +.BI -D macro "\fR[=\fIdefn\fR]" +Fügt diese Makrodefinition zur globalen Makroliste hinzu. +.TP +.BI -I dir +Hängt das angegebene Verzeichnis dem globalen Include-Pfad an. +.TP +.BI -P dir +Hängt das angegebene Verzeichnis dem globalen DLL-Pfad an. +.TP +.BI -i dll +Fügt die angegebene Winelib-Bibliothek zur globalen Liste der zu importierenden +Winelib-Bibliotheken hinzu. +.TP +.BI -L dir +Hängt das angegebene Verzeichnis dem globalen Bibliotheks-Pfad an. +.TP +.BI -l library +Fügt die angegebene Bibliothek zur globalen Liste der zu verlinkenden +Bibliotheken hinzu. +.TP +.B --nodlls +Diese Option teilt \fBwinemaker\fR mit, nicht den Standardsatz an Winelib-Bibliotheken +zu importieren. Dies bedeutet, dass jede DLL, die Ihr Quellcode nutzt, explizit +mit \fB-i\fR an \fBwinemaker\fR übergeben werden muss. +Die Standard-Bibliotheken sind: \fIodbc32.dll\fR, \fIodbccp32.dll\fR, \fIole32.dll\fR, +\fIoleaut32.dll\fR und \fIwinspool.drv\fR. +.TP +.B --nomsvcrt +Setzt einige Optionen, die \fBwinegcc\fR daran hindern, gegen msvcrt zu kompilieren. +Nutzen Sie diese Option bei cpp-Dateien, die \fI\fR einbinden. +.TP +.B --interactive +Versetzt \fBwinemaker\fR in einen interaktiven Modus. In diesem Modus wird \fBwinemaker\fR +Sie für die Targetliste jedes Verzeichnisses nach Bestätigung und jeweils +target- und verzeichnisspezifischen Optionen fragen. +.TP +.BI --single-target " name" +Gibt an, dass es nur ein einziges Target gibt, namens \fIname\fR. +.TP +.B --generated-files +Weist \fBwinemaker\fR an, eine \fIMakefile\fR zu erzeugen. Diese Option ist Standard. +.TP +.B --nogenerated-files +Weist \fBwinemaker\fR an, keine \fIMakefile\fR zu erzeugen. +.TP +.B --wine32 +Weist \fBwinemaker\fR an, ein 32-Bit Target zu erstellen. Dies ist nützlich bei +wow64-Systemen. Ohne diese Option wird die Standardarchitektur benutzt. + +.SH BEISPIELE +.PP +Ein typischer \fBwinemaker\fR Aufruf: +.PP +$ winemaker --lower-uppercase -DSTRICT . +.PP +Damit scannt \fBwinemaker\fR das aktuelle Verzeichnis und die Unterverzeichnisse nach +Quellcodedateien. Jede Datei und jedes Verzeichnis, das ganz in Großbuchstaben +geschrieben ist, wird in Kleinbuchstaben umbenannt. Danach werden alle Quellcodedateien +an die Kompilierung mit Winelib angepasst und \fIMakefile\fRs erzeugt. \fB-DSTRICT\fR gibt +an, dass das \fBSTRICT\fR-Makro gesetzt sein muss, um diesen Quellcode zu kompilieren. +Letztendlich wird \fBwinemaker\fR die globale \fIMakefile\fR erzeugen. +.PP +Der nächste Schritt wäre dann: +.PP +$ make +.PP +Wenn Sie an diesem Punkt Compilerfehler erhalten (was recht wahrscheinlich ist, +ab einer gewissen Projektgröße), sollten Sie den Winelib User Guide zu Rate +ziehen, um Problemlösungen und Tipps zu finden. +.PP +Bei einem MFC-basierten Projekt sollten Sie stattdessen folgenden Befehl ausführen: +.PP +$ winemaker --lower-uppercase --mfc . +.br +$ make +.PP +Mit einer existierenden Projektdatei lautet der passende Befehl: +.PP +$ winemaker meinprojekt.dsp +.br +$ make +.PP + +.SH TODO / FEHLER +.PP +In einigen Fällen werden Sie die \fIMakefile\fR oder den Quellcode von Hand +nachbearbeiten müssen. +.PP +Angenommen, die fertigen Windows-Bibliotheken oder Binärdateien sind vorhanden, +könnte mit \fBwinedump\fR ermittelt werden, um welche Art von ausführbarer Datei es +sich handelt (grafisch oder Konsole), gegen welche Bibliotheken sie gelinkt +sind und welche Funktionen exportiert werden (bei Bibliotheken). All diese +Informationen könnten dann für das Winelib-Projekt verwendet werden. +.PP +Weiterhin ist \fBwinemaker\fR nicht sehr gut darin, die Bibliothek zu finden, die +die Anwendung enthält: Sie muss entweder im aktuellen Verzeichnis oder im +.IR LD_LIBRARY_PATH liegen. +.PP +\fBwinemaker\fR unterstützt noch keine Messagedateien und deren Compiler. +.PP +Fehler können im +.UR https://bugs.winehq.org +.B Wine Bugtracker +.UE +gemeldet werden. +.SH AUTOREN +François Gouget für CodeWeavers +.br +Dimitrie O. Paun +.br +André Hentschel +.SH VERFÜGBARKEIT +.B winemaker +ist Teil der Wine-Distribution, verfügbar im WineHQ, dem +.UR https://www.winehq.org/ +.B Hauptquartier der Wine-Entwicklung +.UE . +.SH SIEHE AUCH +.BR wine (1), +.br +.UR https://www.winehq.org/help +.B Wine-Dokumentation und Support +.UE . diff --git a/share/man/de.UTF-8/man1/wineserver.1 b/share/man/de.UTF-8/man1/wineserver.1 new file mode 100644 index 0000000..b39b8ab --- /dev/null +++ b/share/man/de.UTF-8/man1/wineserver.1 @@ -0,0 +1,111 @@ +.TH WINESERVER 1 "Oktober 2005" "Wine 4.6" "Windows on Unix" +.SH NAME +wineserver \- der Wine Server +.SH ÜBERSICHT +.BI wineserver\ [options] +.SH BESCHREIBUNG +.B wineserver +ist ein Hintergrundprozess, der Wine vergleichbare Dienste bereitstellt, +wie der Windows Kernel unter Windows. +.PP +.B wineserver +startet normalerweise automatisch mit \fBwine\fR(1), daher sollten Sie sich +darüber keine Gedanken machen müssen. In einigen Fällen kann es jedoch von +Nutzen sein, \fBwineserver\fR explizit mit verschiedenen Optionen aufzurufen, +wie im Folgenden beschrieben. +.SH ARGUMENTE +.TP +\fB\-d\fI[n]\fR, \fB--debug\fI[=n] +Setzt das Debuglevel auf +.IR n . +0 gibt keine Debuginformationen aus, 1 steht für normale und 2 für extra +detaillierte Ausgabe. Wenn +.I n +nicht angegeben wird, ist 1 der Standardwert. Die Debugausgabe wird +an stderr geleitet. \fBwine\fR(1) wird beim Start von \fBwineserver\fR +automatisch das Debuglevel auf normal setzen, wenn +server in der +Umgebungsvariable WINEDEBUG angegeben ist. +.TP +.BR \-f ", " --foreground +Lässt den Server zur vereinfachten Fehlersuche im Vordergrund laufen, +zum Beispiel für den Betrieb unter einem Debugger. +.TP +.BR \-h ", " --help +Zeigt den Hilfetext an. +.TP +\fB\-k\fI[n]\fR, \fB--kill\fI[=n] +Beendet den momentan laufenden +.BR wineserver , +optional mit Signal \fIn\fR. Wenn kein Signal angegeben wurde, wird +SIGINT, gefolgt von einem SIGKILL gesendet. Die zu beendende Instanz von +\fBwineserver\fR wird durch die Umgebungsvariable WINEPREFIX bestimmt. +.TP +\fB\-p\fI[n]\fR, \fB--persistent\fI[=n] +Gibt die Dauer an, für die \fBwineserver\fR weiterläuft nachdem alle +Clientprozesse beendet sind. Das erspart den Rechenaufwand und Zeitverlust +eines Neustarts, wenn Anwendungen in schneller Abfolge gestartet werden. +Die Verzögerung \fIn\fR ist anzugeben in Sekunden, der Standardwert ist 3. +Bei fehlender Angabe von \fIn\fR läuft der Server unbegrenzt weiter. +.TP +.BR \-v ", " --version +Zeigt Versionsinformationen an und beendet sich wieder. +.TP +.BR \-w ", " --wait +Wartet, bis sich der gerade laufende +.B wineserver +beendet hat. +.SH UMGEBUNGSVARIABLEN +.TP +.I WINEPREFIX +Wenn gesetzt, wird der Inhalt dieser Umgebungsvariable als Pfad zu einem +Verzeichnis interpretiert, in dem der +.B wineserver +seine Daten ablegt (Standardmäßig in \fI$HOME/.wine\fR). Alle +.B wine +-Prozesse, die den selben +.B wineserver +verwenden (z.B. vom selben Benutzer), teilen sich u.a. die selbe Registry, +gemeinsamen Speicher und Kernelobjekte. +Durch Setzen von unterschiedlichen Pfaden als +.I WINEPREFIX +für verschiedene Wine-Prozesse ist es möglich, eine beliebige Zahl komplett +unabhängiger Sitzungen von Wine zu betreiben. +.TP +.I WINESERVER +Gibt den Pfad und Namen der +.B wineserver +-Binärdatei an, die automatisch von \fBwine\fR gestartet wird. Ist diese +Variable nicht gesetzt, wird \fBwine\fR versuchen, +.IR /home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wineserver +zu laden. Existiert dieser Pfad nicht, wird nach einer Datei namens +\fIwineserver\fR an den in der Variable PATH spezifizierten und anderen +wahrscheinlichen Orten gesucht. +.SH DATEIEN +.TP +.B ~/.wine +Verzeichnis mit benutzerspezifischen Daten, die von +.B wine +verwaltet werden. +.TP +.BI /tmp/.wine- uid +Verzeichnis, das den Unix-Socket des Servers und die lock-Datei enthält. +Diese Dateien werden in einem Unterverzeichnis angelegt, dessen Name sich aus +den Geräte- und Inode-Nummern des WINEPREFIX-Verzeichnisses zusammensetzt. +.SH AUTOREN +Der ursprüngliche Autor von +.B wineserver +ist Alexandre Julliard. Viele andere Personen haben neue Funktionen hinzugefügt +und Fehler behoben. Details finden Sie in der Datei Changelog. +.SH FEHLER +Wenn Sie einen Fehler finden, melden Sie ihn bitte im +.UR https://bugs.winehq.org +.B Wine Bugtracker +.UE . +.SH VERFÜGBARKEIT +.B wineserver +ist Teil der Wine-Distribution, verfügbar im WineHQ, dem +.UR https://www.winehq.org/ +.B Hauptquartier der Wine-Entwicklung +.UE . +.SH "SIEHE AUCH" +.BR wine (1). diff --git a/share/man/fr.UTF-8/man1/wine.1 b/share/man/fr.UTF-8/man1/wine.1 new file mode 100644 index 0000000..ac34853 --- /dev/null +++ b/share/man/fr.UTF-8/man1/wine.1 @@ -0,0 +1,297 @@ +.TH WINE 1 "juillet 2013" "Wine 4.6" "Windows sur Unix" +.SH NOM +wine \- exécuter des programmes Windows sur Unix +.SH SYNOPSIS +.B wine +.IR "programme " [ arguments ] +.br +.B wine --help +.br +.B wine --version +.PP +Pour des instructions sur le passage d'arguments aux programmes Windows, veuillez lire la section +.B +PROGRAMME/ARGUMENTS +de la page de manuel. +.SH DESCRIPTION +.B wine +charge et exécute le programme indiqué, qui peut être un exécutable DOS, Windows +3.x, Win32 ou Win64 (sur les systèmes 64 bits). +.PP +Pour déboguer wine, utilisez plutôt +.BR winedbg . +.PP +Pour exécuter des applications en ligne de commande (programmes Windows +console), préférez +.BR wineconsole . +Cela permet d'afficher la sortie dans une fenêtre séparée. +Si vous n'utilisez pas +.B wineconsole +pour les programmes en ligne de commande, le support console sera très limité et votre +programme pourrait ne pas fonctionner correctement. +.PP +Lorsque wine est invoqué avec +.B --help +ou +.B --version +pour seul argument, il +affichera seulement un petit message d'aide ou sa version respectivement, puis se terminera. +.SH PROGRAMME/ARGUMENTS +Le nom du programme peut être spécifié au format DOS +.RI ( C:\(rs\(rsWINDOWS\(rs\(rsSOL.EXE ) +ou au format Unix +.RI ( /msdos/windows/sol.exe ). +Vous pouvez passer des arguments au programme exécuté en les ajoutant +à la fin de la ligne de commande invoquant +.B wine +(par exemple : \fIwine notepad C:\(rs\(rsTEMP\(rs\(rsLISEZMOI.TXT\fR). +Notez que vous devrez protéger les caractères spéciaux (et les espaces) +en utilisant un '\(rs' lorsque vous invoquez Wine depuis +un shell, par exemple : +.PP +wine C:\(rs\(rsProgram\(rs Files\(rs\(rsMonProg\(rs\(rstest.exe +.PP +Il peut également s'agir d'un des exécutables Windows livrés avec Wine, +auquel cas la spécification d'un chemin complet n'est pas obligatoire, +p.ex. \fIwine explorer\fR ou \fIwine notepad\fR. +.PP +.SH ENVIRONNEMENT +.B wine +passe les variables d'environnement du shell depuis lequel il +est lancé au processus Windows/DOS exécuté. Utilisez donc la syntaxe appropriée +à votre shell pour déclarer les variables d'environnement dont vous avez besoin. +.TP +.B WINEPREFIX +Si définie, le contenu de cette variable est pris comme le nom du répertoire où +Wine stocke ses données (la valeur par défaut est +.IR $HOME/.wine ). +Ce répertoire est également utilisé pour identifier le socket utilisé pour +communiquer avec +.BR wineserver . +Tous les processus +.B wine +utilisant le même +.B wineserver +(c'est-à-dire le même utilisateur) partagent certains éléments comme la base de registre, +la mémoire partagée et les objets du noyau. +En donnant à +.B WINEPREFIX +une valeur spécifique pour différents processus +.BR wine , +il est possible d'exécuter plusieurs sessions de +.B wine +totalement indépendantes. +.TP +.B WINESERVER +Spécifie le chemin et le nom de l'exécutable +.BR wineserver . +Si cette variable n'est pas définie, Wine essaiera de charger +.I /home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wineserver +ou, à défaut, un fichier nommé +« wineserver » dans le chemin système ou quelques autres emplacements potentiels. +.TP +.B WINELOADER +Spécifie le chemin et le nom de l'exécutable +.B wine +à utiliser pour exécuter de nouveaux processus Windows. Si pas définie, Wine +essaiera de charger +.I /home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine +ou, à défaut, un fichier nommé +« wine » dans le chemin système ou quelques autres emplacements potentiels. +.TP +.B WINEDEBUG +Active ou désactive les messages de débogage. La syntaxe est : +.RI [ classe ][\fB+\fR|\fB-\fR] canal [,[ classe2 ][\fB+\fR|\fB-\fR] canal2 ] +.RS +7 +.PP +La +.I classe +est optionnelle et peut avoir une des valeurs suivantes : +.BR err , +.BR warn , +.B fixme +ou +.BR trace . +Si elle n'est pas spécifiée, tous les messages de débogage pour le canal +associé seront activés. Chaque canal imprimera des messages à propos +d'un composant particulier de Wine. +Le caractère suivant peut être \fB+\fR ou \fB-\fR pour activer/désactiver +le canal spécifié. Si aucune +.I classe +n'est spécifiée, le caractère \fB+\fR peut être omis. Notez que les espaces ne sont pas +autorisées dans cette chaîne de caractères. +.PP +Exemples : +.TP +WINEDEBUG=warn+all +activera tous les messages d'avertissement (recommandé pour le débogage). +.br +.TP +WINEDEBUG=warn+dll,+heap +activera tous messages d'avertissement sur les DLL, et tous les messages sur le tas. +.br +.TP +WINEDEBUG=fixme-all,warn+cursor,+relay +désactivera tous les messages FIXME, activera les messages d'avertissement sur le composant cursor et +activera tous les messages du canal relay (appels de l'API). +.br +.TP +WINEDEBUG=relay +activera tous les messages du canal relay. Pour un contrôle plus fin sur l'inclusion et +l'exclusion des fonctions et DLL des traces relay, utilisez la clé +.B HKEY_CURRENT_USER\\\\Software\\\\Wine\\\\Debug +de la base de registre. +.PP +Pour plus d'informations sur les messages de débogage, référez-vous au chapitre +.I Exécution de Wine +du guide de l'utilisateur de Wine. +.RE +.TP +.B WINEDLLPATH +Spécifie le(s) chemin(s) où chercher les DLL intégrées et les applications +Winelib. C'est une liste de répertoires séparés par des « : ». En plus des +répertoires spécifiés dans +.BR WINEDLLPATH , +Wine utilisera aussi le répertoire +.IR /home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/lib/wine . +.TP +.B WINEDLLOVERRIDES +Définit le type de remplacement et l'ordre de chargement des DLL utilisées lors du +processus de chargement d'une DLL. Deux types de bibliothèques peuvent actuellement +être chargés dans l'espace d'adressage d'un processus : les DLL natives de +Windows +.RI ( native ") et les DLL intégrées à Wine (" builtin ). +Le type peut être abrégé avec la première lettre du type +.RI ( n " ou " b ). +La bibliothèque peut également être désactivée (''). Les séquences d'ordres +doivent être séparées par des virgules. +.RS +.PP +Chaque DLL peut avoir son ordre de chargement propre. L'ordre de chargement +détermine quelle version de la DLL doit être chargée dans l'espace +d'adressage. Si la première tentative échoue, la suivante est essayée et +ainsi de suite. Plusieurs bibliothèques avec le même ordre de chargement +peuvent être séparées par des virgules. Il est également possible de spécifier +différents ordres de chargements pour différentes bibliothèques en séparant les +entrées par « ; ». +.PP +L'ordre de chargement pour une DLL 16 bits est toujours défini par l'ordre de +chargement de la DLL 32 bits qui la contient (qui peut être identifié en +observant le lien symbolique du fichier .dll.so 16 bits). Par exemple, si +\fIole32.dll\fR est configurée comme builtin, \fIstorage.dll\fR sera également chargée comme +builtin puisque la DLL 32 bits \fIole32.dll\fR contient la DLL 16 bits \fIstorage.dll\fR. +.PP +Exemples : +.TP +WINEDLLOVERRIDES="comdlg32,shell32=n,b" +.br +Charge comdlg32 et shell32 comme des DLL windows natives, ou la version +intégrée en cas d'échec. +.TP +WINEDLLOVERRIDES="comdlg32,shell32=n;c:\(rs\(rsfoo\(rs\(rsbar\(rs\(rsbaz=b" +.br +Charge les bibliothèques windows natives comdlg32 et shell32. De plus, si une +application demande le chargement de \fIc:\(rsfoo\(rsbar\(rsbaz.dll\fR, charge la +bibliothèque intégrée \fIbaz\fR. +.TP +WINEDLLOVERRIDES="comdlg32=b,n;shell32=b;comctl32=n;oleaut32=" +.br +Charge la bibliothèque intégrée comdlg32, ou la version native en cas +d'échec ; charge la version intégrée de shell32 et la version native de +comctl32 ; oleaut32 sera désactivée. +.RE +.TP +.B WINEARCH +Spécifie l'architecture Windows à prendre en charge. Peut être +.B win32 +(prise en charge des applications 32 bits uniquement), ou +.B win64 +(prise en charge des applications 64 bits, et 32 bits en mode WoW64). +.br +L'architecture prise en charge par un préfixe Wine donné est déterminée +au moment de sa création et ne peut être modifiée ultérieurement. +Si vous exécutez Wine avec un préfixe préexistant, il refusera de démarrer +si +.B WINEARCH +ne correspond pas à l'architecture du préfixe. +.TP +.B DISPLAY +Spécifie l'affichage X11 à utiliser. +.TP +Variables de configuration du pilote audio OSS : +.TP +.B AUDIODEV +Définit le périphérique pour les entrées/sorties audio, par défaut +.IR /dev/dsp . +.TP +.B MIXERDEV +Définit le périphérique pour les contrôles du mixeur, par défaut +.IR /dev/mixer . +.TP +.B MIDIDEV +Définit le périphérique pour le séquenceur MIDI, par défaut +.IR /dev/sequencer . +.SH FICHIERS +.TP +.I /home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine +Le chargeur de programme de Wine. +.TP +.I /home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wineconsole +Le chargeur de programme de Wine pour les applications en mode console (CUI). +.TP +.I /home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wineserver +Le serveur Wine. +.TP +.I /home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/winedbg +Le débogueur de Wine. +.TP +.I /home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/lib/wine +Répertoire contenant les bibliothèques partagées de Wine. +.TP +.I $WINEPREFIX/dosdevices +Répertoire contenant le mapping des périphériques DOS. Chaque fichier dans ce +répertoire est un lien symbolique vers le fichier périphérique Unix qui implémente +un périphérique donné. Par exemple, si COM1 est mappé sur \fI/dev/ttyS0\fR, vous aurez un +lien symbolique de la forme \fI$WINEPREFIX/dosdevices/com1\fR -> \fI/dev/ttyS0\fR. +.br +Les lecteurs DOS sont aussi définis à l'aide de liens symboliques ; par exemple, si le +lecteur D: correspond au CDROM monté sur \fI/mnt/cdrom\fR, vous aurez un lien symbolique +\fI$WINEPREFIX/dosdevices/d:\fR -> \fI/mnt/cdrom\fR. Le périphérique Unix correspondant à un lecteur +DOS peut être spécifié de la même façon, à l'exception du fait qu'il faut utiliser « :: » à +la place de « : ». Dans l'exemple précédent, si le lecteur CDROM est monté depuis /dev/hdc, +le lien symbolique correspondant sera \fI$WINEPREFIX/dosdevices/d::\fR -> \fI/dev/hdc\fR. +.SH AUTEURS +Wine est disponible grâce au travail de nombreux développeurs. Pour une liste +des auteurs, référez-vous au fichier +.I AUTHORS +à la racine de la distribution des sources. +.SH COPYRIGHT +Wine peut être distribué selon les termes de la licence LGPL. Une copie de cette +licence se trouve dans le fichier +.I COPYING.LIB +à la racine de la distribution des sources. +.SH BUGS +.PP +Un rapport sur la compatibilité de nombreuses applications est disponible sur la +.UR https://appdb.winehq.org +.B base de données d'applications de Wine +.UE . +N'hésitez pas à y ajouter des entrées pour les applications que vous +exécutez actuellement, si nécessaire. +.PP +Les bugs peuvent être signalés (en anglais) sur le +.UR https://bugs.winehq.org +.B système de suivi des problèmes de Wine +.UE . +.SH DISPONIBILITÉ +La version publique la plus récente de Wine est disponible sur WineHQ, le +.UR https://www.winehq.org/ +.B quartier général du développement de Wine +.UE . +.SH "VOIR AUSSI" +.BR wineserver (1), +.BR winedbg (1), +.br +.UR https://www.winehq.org/help +.B Documentation et support de Wine +.UE . diff --git a/share/man/fr.UTF-8/man1/winemaker.1 b/share/man/fr.UTF-8/man1/winemaker.1 new file mode 100644 index 0000000..f04e5a3 --- /dev/null +++ b/share/man/fr.UTF-8/man1/winemaker.1 @@ -0,0 +1,288 @@ +.TH WINEMAKER 1 "jan 2012" "Wine 4.6" "Manuel des développeurs de Wine" +.SH NOM +winemaker \- générer une infrastructure de construction pour la compilation de programmes Windows sur UNIX +.SH SYNOPSIS +.B "winemaker " +[ +.BR "--nobanner " "] [ " "--backup " "| " "--nobackup " "] [ "--nosource-fix " +] +.br + [ +.BR "--lower-none " "| " "--lower-all " "| " "--lower-uppercase " +] +.br + [ +.BR "--lower-include " "| " "--nolower-include " ]\ [ " --mfc " "| " "--nomfc " +] +.br + [ +.BR "--guiexe " "| " "--windows " "| " "--cuiexe " "| " "--console " "| " "--dll " "| " "--lib " +] +.br + [ +.BI "-D" macro "\fR[=\fIdéfn\fR] ] [" "\ " "-I" "rép\fR ]\ [ " "-P" "rép\fR ] [ " "-i" "dll\fR ] [ " "-L" "rép\fR ] [ " "-l" "bibliothèque " +] +.br + [ +.BR "--nodlls " "] [ " "--nomsvcrt " "] [ " "--interactive " "] [ " "--single-target \fInom\fR " +] +.br + [ +.BR "--generated-files " "] [ " "--nogenerated-files " "] +.br + [ +.BR "--wine32 " "] +.br +.IR " répertoire_de_travail" " | " "fichier_projet" " | " "fichier_espace_de_travail" + +.SH DESCRIPTION +.PP +.B winemaker +est un script perl conçu pour vous aider à entamer le +processus de conversion de vos sources Windows en programmes Winelib. +.PP +À cet effet, il peut effectuer les opérations suivantes : +.PP +-\ renommer vos fichiers sources et répertoires en minuscules s'ils ont été +convertis en majuscules durant le transfert. +.PP +-\ convertir les fins de ligne DOS en fins de ligne UNIX (CRLF vers LF). +.PP +-\ parcourir les directives d'inclusion et les références aux fichiers +de ressources pour y remplacer les backslashs par des slashs. +.PP +-\ durant l'étape ci-dessus, +.B winemaker +va également effectuer une recherche insensible à la casse du fichier +référencé dans le chemin d'inclusion, et réécrire la directive d'inclusion +avec la casse correcte si nécessaire. +.PP +.RB "-\ " winemaker +recherchera également d'autres problèmes plus exotiques comme l'emploi +de \fI#pragma pack\fR, l'utilisation de \fIafxres.h\fR dans des projets +non MFC, etc. Quand il trouve de tels points nébuleux, il émettra des +avertissements. +.PP +.RB "-\ " winemaker +peut également balayer un arbre de répertoires complet en une seule passe, +deviner quels sont les exécutables et bibliothèques en cours de construction, +les faire correspondre à des fichiers sources, et générer le \fIMakefile\fR +correspondant. +.PP +-\ finalement, +.B winemaker +générera un \fIMakefile\fR global pour une utilisation classique. +.PP +.RB "-\ " winemaker +comprend les projets de type MFC, et génère des fichiers appropriés. +.PP +.RB "-\ " winemaker +est capable de lire des fichiers projets existants (dsp, dsw, vcproj et sln). +.PP +.SH OPTIONS +.TP +.B --nobanner +Désactiver l'affichage de la bannière. +.TP +.B --backup +Effectuer une sauvegarde préalable de tous les fichiers modifiés. +Comportement par défaut. +.TP +.B --nobackup +Ne pas effectuer de sauvegarde des fichiers sources modifiés. +.TP +.B --nosource-fix +Ne pas essayer de corriger les fichiers sources (p.ex. la conversion +DOS vers UNIX). Cela évite des messages d'erreur si des fichiers sont +en lecture seule. +.TP +.B --lower-all +Renommer tous les fichiers et répertoires en minuscules. +.TP +.B --lower-uppercase +Ne renommer que les fichiers et répertoires qui ont un nom composé +uniquement de majuscules. +Ainsi, \fIHELLO.C\fR serait renommé, mais pas \fIWorld.c\fR. +.TP +.B --lower-none +Ne pas renommer de fichiers et répertoires en minuscules. Notez que cela +n'empêche pas le renommage d'un fichier si son extension ne peut être traitée +telle quelle, comme par exemple « .Cxx ». Comportement par défaut. +.TP +.B "--lower-include " +Convertir en minuscules les noms de fichiers associés à des directives +d'inclusion (ou à d'autres formes de références de fichiers pour les +fichiers ressources) que +.B winemaker +n'arrive pas à trouver. Comportement par défaut. +.TP +.B "--nolower-include " +Ne pas modifier la directive d'inclusion si le fichier référencé ne peut +être trouvé. +.TP +.BR "--guiexe " "| " "--windows" +Présumer une application graphique quand une cible exécutable ou une cible d'un +type inconnu est rencontrée. +Comportement par défaut. +.TP +.BR "--cuiexe " "| " "--console" +Présumer une application en mode console quand une cible exécutable ou une cible d'un +type inconnu est rencontrée. +.TP +.B --dll +Présumer une DLL quand une cible d'un type inconnu est rencontrée (c.-à-d. si +.B winemaker +ne peut déterminer s'il s'agit d'un exécutable, d'une DLL ou d'une bibliothèque statique). +.TP +.B --lib +Présumer une bibliothèque statique quand une cible d'un type inconnu est rencontrée (c.-à-d. si +.B winemaker +ne peut déterminer s'il s'agit d'un exécutable, d'une DLL ou d'une bibliothèque statique). +.TP +.B --mfc +Spécifier que les cibles utilisent les MFC. Dans ce cas, +.B winemaker +adapte les chemins d'inclusion et des bibliothèques en conséquence, +et lie la cible avec la bibliothèque MFC. +.TP +.B --nomfc +Spécifier que les cibles n'utilisent pas les MFC. Cette option empêche +l'utilisation des bibliothèques MFC même si +.B winemaker +rencontre des fichiers \fIstdafx.cpp\fR ou \fIstdafx.h\fR qui activeraient +les MFC automatiquement en temps normal si ni \fB--nomfc\fR ni \fB--mfc\fR n'était +spécifiée. +.TP +.BI -D macro "\fR[\fB=\fIdéfn\fR]" +Ajouter la définition de macro spécifiée à la liste globale des +définitions de macros. +.TP +.BI -I répertoire +Ajouter le répertoire spécifié au chemin global d'inclusion. +.TP +.BI -P répertoire +Ajouter le répertoire spécifié au chemin global des DLL. +.TP +.BI -i dll +Ajouter la bibliothèque Winelib à la liste global de bibliothèques Winelib +à importer. +.TP +.BI -L répertoire +Ajouter le répertoire spécifié au chemin global des bibliothèques. +.TP +.BI -l bibliothèque +Ajouter la bibliothèque spécifiée à la liste globale de bibliothèques à utiliser lors de l'édition des liens. +.TP +.B --nodlls +Ne pas utiliser l'ensemble standard de bibliothèques Winelib pour les imports, +c.-à-d. que toute DLL utilisée par votre code doit être explicitement spécifiée à l'aide d'options +\fB-i\fR. +L'ensemble standard de bibliothèques est : \fIodbc32.dll\fR, \fIodbccp32.dll\fR, \fIole32.dll\fR, +\fIoleaut32.dll\fR et \fIwinspool.drv\fR. +.TP +.B --nomsvcrt +Définir certaines options afin que \fBwinegcc\fR n'utilise pas +msvcrt durant la compilation. Utilisez cette option si certains fichiers cpp +incluent \fI\fR. +.TP +.B --interactive +Utiliser le mode interactif. Dans ce mode, +.B winemaker +demandera de confirmer la liste de cibles pour chaque répertoire, et ensuite +de fournir des options spécifiques de répertoire et/ou de cible. +.TP +.BI --single-target " nom" +Spécifier qu'il n'y a qu'une seule cible, appelée \fInom\fR. +.TP +.B --generated-files +Générer le \fIMakefile\fR. Comportement par défaut. +.TP +.B --nogenerated-files +Ne pas générer le \fIMakefile\fR. +.TP +.B --wine32 +Générer une cible 32 bits. Utile sur les systèmes wow64. Sans cette option, +l'architecture par défaut est utilisée. + +.SH EXEMPLES +.PP +Voici quelques exemples typiques d'utilisation de +.B winemaker +: +.PP +$ winemaker --lower-uppercase -DSTRICT . +.PP +Recherche des fichiers sources dans le répertoire courant et ses +sous-répertoires. Quand un fichier ou répertoire a un nom composé +uniquement de majuscules, le renomme en minuscules. Ensuite, adapte tous +ces fichiers sources pour une compilation avec Winelib, et génère des +\fIMakefile\fRs. \fB-DSTRICT\fR spécifie que la macro \fBSTRICT\fR doit +être définie lors de la compilation des sources. +Finalement, un \fIMakefile\fR est créé. +.PP +L'étape suivante serait : +.PP +$ make +.PP +Si vous obtenez des erreurs de compilation à ce moment (ce qui est plus que +probable pour un projet d'une taille raisonnable), vous devriez consulter +le guide de l'utilisateur de Winelib pour trouver des moyens de les résoudre. +.PP +Pour un projet utilisant les MFC, vous devriez plutôt exécuter les commandes +suivantes\ : +.PP +$ winemaker --lower-uppercase --mfc . +.br +$ make +.PP +Pour un fichier projet existant, vous devriez exécuter les commandes suivantes : +.PP +$ winemaker monprojet.dsp +.br +$ make +.PP + +.SH LIMITATIONS / PROBLÈMES +.PP +Dans certains cas, vous devrez éditer manuellement le \fIMakefile\fR ou les fichiers +sources. +.PP +En supposant que l'exécutable ou la bibliothèque windows est disponible, on peut +utiliser +.B winedump +pour en déterminer le type (graphique ou en mode console) et les +bibliothèques auxquelles il est lié (pour les exécutables), ou quelles fonctions +elle exporte (pour les bibliothèques). On pourrait ensuite restituer tous ces +réglages pour la cible Winelib correspondante. +.PP +De plus, +.B winemaker +n'est pas très apte à trouver la bibliothèque contenant l'exécutable : elle doit +être soit dans le répertoire courant, soit dans un des répertoires de +.BR LD_LIBRARY_PATH . +.PP +.B winemaker +ne prend pas encore en charge les fichiers de messages, ni le compilateur +de messages. +.PP +Les bugs peuvent être signalés (en anglais) sur le +.UR https://bugs.winehq.org +.B système de suivi des problèmes de Wine +.UE . +.SH AUTEURS +François Gouget pour CodeWeavers +.br +Dimitrie O. Paun +.br +André Hentschel +.SH DISPONIBILITÉ +\fBwinemaker\fR fait partie de la distribution de Wine, qui est disponible sur WineHQ, le +.UR https://www.winehq.org/ +.B quartier général du développement de Wine +.UE . +.SH VOIR AUSSI +.BR wine (1), +.br +.UR https://www.winehq.org/help +.B Documentation et support de Wine +.UE . diff --git a/share/man/fr.UTF-8/man1/wineserver.1 b/share/man/fr.UTF-8/man1/wineserver.1 new file mode 100644 index 0000000..803f9f9 --- /dev/null +++ b/share/man/fr.UTF-8/man1/wineserver.1 @@ -0,0 +1,115 @@ +.TH WINESERVER 1 "octobre 2005" "Wine 4.6" "Windows sur Unix" +.SH NOM +wineserver \- le serveur Wine +.SH SYNOPSIS +.B wineserver +.RI [ options ] +.SH DESCRIPTION +.B wineserver +est un démon qui fournit à Wine à peu près les mêmes services +que le noyau de Windows fournit sous Windows. +.PP +.B wineserver +est normalement lancé automatiquement lorsque \fBwine\fR(1) démarre, mais +il peut être utile de le démarrer explicitement avec certaines options, +détaillées ci-après. +.SH OPTIONS +.TP +\fB\-d\fR[\fIn\fR], \fB--debug\fR[\fB=\fIn\fR] +Définit le niveau de débogage à +.IR n . +0 signifie aucune information de débogage, 1 est le niveau normal et 2 indique +un débogage plus important. Si +.I n +n'est pas spécifié, la valeur par défaut est 1. La sortie de débogage sera +stderr. \fBwine\fR(1) active automatiquement le débogage au niveau normal lorsqu'il +démarre \fBwineserver\fR si l'option +server est indiquée dans la variable +\fBWINEDEBUG\fR. +.TP +.BR \-f ", " --foreground +Laisse le serveur au premier plan pour un débogage plus aisé, par +exemple lorsqu'il est exécuté dans un débogueur. +.TP +.BR \-h ", " --help +Affiche un message d'aide. +.TP +\fB\-k\fR[\fIn\fR], \fB--kill\fR[\fB=\fIn\fR] +Termine le +.B wineserver +actuellement exécuté en lui envoyant facultativement le signal \fIn\fR. Si +aucun signal n'est spécifié, un signal \fBSIGINT\fR est envoyé en premier, +puis un signal \fBSIGKILL\fR. L'instance de \fBwineserver\fR à arrêter +est déterminée par la variable d'environnement \fBWINEPREFIX\fR. +.TP +\fB\-p\fR[\fIn\fR], \fB--persistent\fR[\fB=\fIn\fR] +Spécifie le délai de persistance de \fBwineserver\fR, c'est-à-dire le +temps pendant lequel le serveur continuera à tourner après que tous les +processus clients se sont terminés. Ceci évite le coût inhérent à l'arrêt +puis au redémarrage du serveur lorsque des programmes sont lancés successivement +à intervalle rapproché. +Le délai d'attente \fIn\fR est exprimé en secondes (3 secondes par défaut). +Si \fIn\fR n'est pas spécifié, le serveur s'exécute indéfiniment. +.TP +.BR \-v ", " --version +Affiche les informations sur la version et se termine. +.TP +.BR \-w ", " --wait +Attend que le +.B wineserver +actuellement exécuté se termine. +.SH ENVIRONNEMENT +.TP +.B WINEPREFIX +Si définie, cette variable indique le nom du répertoire où +.B wineserver +stocke ses données (\fI$HOME/.wine\fR par défaut). Tous les processus +.B wine +utilisant le même +.B wineserver +(c'est-à-dire pour un même utilisateur) partagent certains éléments comme la base de registre, +la mémoire partagée et les objets du noyau. +En donnant à +.B WINEPREFIX +une valeur spécifique pour différents processus Wine, il est possible d'exécuter plusieurs +sessions de Wine totalement indépendantes. +.TP +.B WINESERVER +Spécifie le chemin et le nom de l'exécutable +.B wineserver +qui sera lancé automatiquement par \fBwine\fR. +Si cette variable n'est pas définie, Wine essaiera de charger +.I /home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wineserver +ou, à défaut, un fichier nommé +\fIwineserver\fR dans le chemin système ou quelques autres emplacements potentiels. +.SH FICHIERS +.TP +.B ~/.wine +Répertoire contenant les données utilisateur gérées par +.BR wine . +.TP +.BI /tmp/.wine- uid +Répertoire contenant le socket de serveur Unix et le fichier de verrouillage. +Ces fichiers sont créés dans un sous-répertoire dont le nom est dérivé +des périphérique et numéros d'inodes du répertoire \fBWINEPREFIX\fR. +.SH AUTEURS +L'auteur originel de +.B wineserver +est Alexandre Julliard. Beaucoup d'autres personnes ont contribué des nouvelles fonctionnalités +et des corrections de bugs. Pour une liste complète, consultez l'historique git. +.SH BUGS +Les bugs peuvent être signalés (en anglais) sur le +.UR https://bugs.winehq.org +.B système de suivi des problèmes de Wine +.UE . +.SH DISPONIBILITÉ +.B wineserver +fait partie de la distribution de Wine, disponible depuis WineHQ, le +.UR https://www.winehq.org/ +.B quartier général des développeurs de Wine +.UE . +.SH "VOIR AUSSI" +.BR wine (1), +.br +.UR https://www.winehq.org/help +.B Documentation et support de Wine +.UE . diff --git a/share/man/man1/msiexec.1 b/share/man/man1/msiexec.1 new file mode 100644 index 0000000..f86baaa --- /dev/null +++ b/share/man/man1/msiexec.1 @@ -0,0 +1,128 @@ +.TH MSIEXEC 1 "November 2010" "Wine 4.6" "Wine Programs" +.SH NAME +msiexec \- Wine MSI Installer +.SH SYNOPSIS +.B msiexec +.I command +.RI { "required parameter" } +.RI [ "optional parameter" ]... +.SH DESCRIPTION +.B msiexec +is the Wine MSI installer, which is command line +compatible with its Microsoft Windows counterpart. +.SH INSTALL OPTIONS +.IP \fB/i\ \fR{\fIpackage\fR|\fIproductcode\fR}\ \fR[\fIproperty\fR=\fIfoobar\fR] +Install {package|productcode} with property=foobar. +.IP \fB/a\ \fR{\fIpackage\fR|\fIproductcode\fR}\ \fR[\fIproperty\fR=\fIfoobar\fR] +Install {package|productcode} in administrator (network) mode. +.IP \fB/x\ \fR{\fIpackage\fR|\fIproductcode\fR}\ \fR[\fIproperty\fR=\fIfoobar\fR] +Uninstall {package|productcode} with property=foobar. +.IP \fB/uninstall\ \fR{\fIpackage\fR|\fIproductcode\fR}\ \fR[\fIproperty\fR=\fIfoobar\fR] +Same as \fB/x\fR. +.SH REPAIR OPTIONS +.IP \fB/f\fR\ \ +\fR[\fBp\fR|\fBo\fR|\fBe\fR|\fBd\fR|\fBc\fR|\fBa\fR|\fBu\fR|\fBm\fR|\fBs\fR|\fBv\fR]\ \ +\fR{\fIpackage\fR|\fIproductcode\fR} +Repair an installation. Default options are \'omus\' +.IP "\fBp\fR" +Reinstall the file if it is missing. +.IP "\fBo\fR" +Reinstall the file if it is missing or if any older version is installed. +.IP "\fBe\fR" +Reinstall the file if it is missing, or if the installed version is equal or older. +.IP "\fBd\fR" +Reinstall the file if it is missing or a different version is installed. +.IP "\fBc\fR" +Reinstall the file if it is missing or the checksum does not match. +.IP "\fBa\fR" +Reinstall all files. +.IP "\fBu\fR" +Rewrite all required user registry entries. +.IP "\fBm\fR" +Rewrite all required machine registry entries. +.IP "\fBs\fR" +Overwrite any conflicting shortcuts. +.IP "\fBv\fR" +Recache the local installation package from the source installation package. +.SH PATCHING +.IP \fB/p\ \fR{\fIpatch\fR}\ \fR[\fIproperty\fR=\fIfoobar\fR] +Apply \fIpatch\fR. This should not be used with any of the above options. +.SH UI CONTROL +.IP \fB/q\fR[\fBn\fR|\fBb\fR|\fBr\fR|\fBf\fR] +These options allow changing the behavior of the UI when installing MSI packages. +.IP \fB/q\fR +Show no UI. +.IP \fB/qn +Same as \fB/q\fR. +.IP \fB/qb +Show a basic UI. +.IP \fB/qr +Shows a reduced user UI. +.IP \fB/qf +Shows a full UI. +.SH LOGGING +.IP \fB/l\fR[\fB*\fR]\ +[\fBi\fR|\fBw\fR|\fBe\fR|\fBa\fR|\fBr\fR|\fBu\fR|\fBc\fR|\fBm\fR|\fBo\fR|\fBp\fR|\fBv\fR]\ +[\fB+\fR|\fB!\fR]\ {\fIlogfile\fR} +Enable logging to \fIlogfile\fR. Defaults are \'iwearmo\'. +.IP "\fB*\fR" +Enable all logging options except \'v\' and \'x\'. +.IP "\fBi\fR" +Log status messages. +.IP "\fBw\fR" +Log nonfatal warnings. +.IP "\fBe\fR" +Log all error messages. +.IP "\fBa\fR" +Log start of actions. +.IP "\fBr\fR" +Log action specific records. +.IP "\fBu\fR" +Log user requests. +.IP "\fBc\fR" +Log initial UI parameters. +.IP "\fBm\fR" +Log out of memory errors. +.IP "\fBo\fR" +Log out of diskspace messages. +.IP "\fBp \fR" +Log terminal properties. +.IP "\fBv \fR" +Verbose logging. +.IP "\fBx \fR" +Log extra debugging messages. +.IP "\fB+ \fR" +Append logging to existing file. +.IP "\fB! \fR" +Flush each line to log. +.SH OTHER OPTIONS +.IP \fB/h +Show help. +.IP "\fB/j\fR[\fBu\fR|\fBm\fR] {\fIpackage\fR|\fIproductcode\fR} \ +[\fB/t \fItransform\fR] [\fB/g \fIlanguageid\fR]" +Advertise \fIpackage\fR optionally with \fB/t \fItransform\fR and \fB/g \fIlanguageid\fR. +.IP \fB/y +Register MSI service. +.IP \fB/z +Unregister MSI service. +.IP \fB/? +Same as \fB/h\fR. + +.SH BUGS +Bugs can be reported on the +.UR https://bugs.winehq.org +.B Wine bug tracker +.UE . +.SH AVAILABILITY +.B msiexec +is part of the Wine distribution, which is available through WineHQ, +the +.UR https://www.winehq.org/ +.B Wine development headquarters +.UE . +.SH "SEE ALSO" +.BR wine (1), +.br +.UR https://www.winehq.org/help +.B Wine documentation and support +.UE . diff --git a/share/man/man1/notepad.1 b/share/man/man1/notepad.1 new file mode 100644 index 0000000..547abdd --- /dev/null +++ b/share/man/man1/notepad.1 @@ -0,0 +1,28 @@ +.TH NOTEPAD 1 "November 2010" "Wine 4.6" "Wine Programs" +.SH NAME +notepad \- Wine text editor +.SH SYNOPSIS +.B notepad +.RI [ text\ file ] +.SH DESCRIPTION +.B notepad +is the Wine text editor, designed to be compatible with its Microsoft Windows counterpart. +It supports ANSI, UTF-8 and UTF-16 files, and can read (but not write) files with Unix line endings. +.SH BUGS +Bugs can be reported on the +.UR https://bugs.winehq.org +.B Wine bug tracker +.UE . +.SH AVAILABILITY +.B notepad +is part of the Wine distribution, which is available through WineHQ, +the +.UR https://www.winehq.org/ +.B Wine development headquarters +.UE . +.SH "SEE ALSO" +.BR wine (1), +.br +.UR https://www.winehq.org/help +.B Wine documentation and support +.UE . diff --git a/share/man/man1/regedit.1 b/share/man/man1/regedit.1 new file mode 100644 index 0000000..9feb4f5 --- /dev/null +++ b/share/man/man1/regedit.1 @@ -0,0 +1,49 @@ +.TH REGEDIT 1 "November 2010" "Wine 4.6" "Wine Programs" +.SH NAME +regedit \- Wine registry editor +.SH SYNOPSIS +.B regedit +.RI [ text\ file ] +.SH DESCRIPTION +.B regedit +is the Wine registry editor, designed to be compatible with its Microsoft Windows counterpart. +If called without any options, it will start the full GUI editor. + +The switches are case\-insensitive and can be prefixed either by '\-' or '/'. +.SH "OPTIONS" +.TP +\fB\-E\fR \fIfile\fR [\fIregpath\fR] +Exports the content of the specified registry key to the specified \fIfile\fR. It exports +the whole registry if no key is specified. +.IP \fB\-D\fR\ \fIregpath +Deletes the specified registry key. +.IP \fB\-S\fR +Run regedit silently (ignored, CLI mode is always silent). This exists for compatibility with Windows regedit. +.IP \fB\-V\fR +Run regedit in advanced mode (ignored). This exists for compatibility with Windows regedit. +.IP \fB\-L\fR\ \fIlocation +Specifies the location of the system.dat registry file (ignored). This exists for compatibility with Windows regedit. +.IP \fB\-R\fR\ \fIlocation +Specifies the location of the user.dat registry file (ignored). This exists for compatibility with Windows regedit. +.IP \fB\-?\fR +Prints a help message. Any other options are ignored. +.IP \fB\-C\fR\ \fIfile.reg\fR +Create registry from \fIfile.reg\fR (unimplemented). +.SH BUGS +Bugs can be reported on the +.UR https://bugs.winehq.org +.B Wine bug tracker +.UE . +.SH AVAILABILITY +.B regedit +is part of the Wine distribution, which is available through WineHQ, +the +.UR https://www.winehq.org/ +.B Wine development headquarters +.UE . +.SH "SEE ALSO" +.BR wine (1), +.br +.UR https://www.winehq.org/help +.B Wine documentation and support +.UE . diff --git a/share/man/man1/regsvr32.1 b/share/man/man1/regsvr32.1 new file mode 100644 index 0000000..0d7afb1 --- /dev/null +++ b/share/man/man1/regsvr32.1 @@ -0,0 +1,37 @@ +.TH REGSVR32 1 "November 2010" "Wine 4.6" "Wine Programs" +.SH NAME +regsvr32 \- Wine DLL Registration Server +.SH SYNOPSIS +.B regsvr32 +.RB [ /u "] [" /s "] [" /n "] [" /i "[\fB:\fIcmdline\fR]] " \fIdllname +.SH DESCRIPTION +.B regsvr32 +is the Wine dll registration server, designed to be compatible with its Microsoft Windows counterpart. +By default, it will register the given dll. +.SH COMMANDS +.IP \fB/u +Unregister the specified dll. +.IP \fB/s +Run regsvr32 silently (will not show any GUI dialogs). +.IP \fB/i +Call DllInstall passing it an optional \fIcmdline\fR. When used with \fB/u\fR calls DllUninstall. +.IP \fB/n +Do not call DllRegisterServer; this option must be used with \fB/i\fR. +.SH BUGS +Bugs can be reported on the +.UR https://bugs.winehq.org +.B Wine bug tracker +.UE . +.SH AVAILABILITY +.B regsvr32 +is part of the Wine distribution, which is available through WineHQ, +the +.UR https://www.winehq.org/ +.B Wine development headquarters +.UE . +.SH "SEE ALSO" +.BR wine (1), +.br +.UR https://www.winehq.org/help +.B Wine documentation and support +.UE . diff --git a/share/man/man1/widl.1 b/share/man/man1/widl.1 new file mode 100644 index 0000000..c75b2bd --- /dev/null +++ b/share/man/man1/widl.1 @@ -0,0 +1,155 @@ +.TH WIDL 1 "October 2007" "Wine 4.6" "Wine Developers Manual" +.SH NAME +widl \- Wine Interface Definition Language (IDL) compiler +.SH SYNOPSIS +.B widl +[\fIoptions\fR] \fIIDL_file\fR +.br +.B widl +[\fIoptions\fR] \fB--dlldata-only\fR \fIname1\fR [\fIname2\fR...] +.SH DESCRIPTION +When no options are used the program will generate a header file, and possibly +client and server stubs, proxy and dlldata files, a typelib, and a UUID file, +depending on the contents of the IDL file. If any of the options \fB-c\fR, +\fB-h\fR, \fB-p\fR, \fB-s\fR, \fB-t\fR, \fB-u\fR or \fB--local-stubs\fR is given, +.B widl +will only generate the requested files, and no others. When run with +\fB--dlldata-only\fR, widl will only generate a dlldata file, and it will +contain a list of the names passed as arguments. Usually the way this file +is updated is that each time +.B widl +is run, it reads any existing dlldata file, and if necessary regenerates it +with the same list of names, but with the present proxy file included. +.PP +When run without any arguments, +.B widl +will print a help message. +.PP +.SH OPTIONS +.PP +.B General options: +.IP "\fB-V\fR" +Print version number and exit. +.IP "\fB-o, --output=\fIname" +Set the name of the output file. When generating multiple output +files, this sets only the base name of the file; the respective output +files are then named \fIname\fR.h, \fIname\fR_p.c, etc. If a full +file name with extension is specified, only that file is generated. +.IP "\fB-b, --target=\fIcpu-manufacturer\fR[\fI-kernel\fR]\fI-os\fR" +Set the target architecture when cross-compiling. The target +specification is in the standard autoconf format as returned by +\fBconfig.sub\fR. +.IP "\fB-m32, -m64, --win32, --win64\fR" +Force the target architecture to 32-bit or 64-bit. +.PP +.B Header options: +.IP "\fB-h\fR" +Generate header files. The default output filename is \fIinfile\fB.h\fR. +.IP "\fB--oldnames\fR" +Use old naming conventions. +.PP +.B Type library options: +.IP \fB-t\fR +Generate a type library. The default output filename is +\fIinfile\fB.tlb\fR. If the output file name ends in \fB.res\fR, a +binary resource file containing the type library is generated instead. +.PP +.B UUID file options: +.IP "\fB-u\fR" +Generate a UUID file. The default output filename is \fIinfile\fB_i.c\fR. +.PP +.B Proxy/stub generation options: +.IP "\fB-c\fR" +Generate a client stub file. The default output filename is \fIinfile\fB_c.c\fR. +.IP "\fB-Os\fR" +Generate inline stubs. +.IP "\fB-Oi\fR" +Generate old-style interpreted stubs. +.IP "\fB-Oif, -Oic, -Oicf\fR" +Generate new-style fully interpreted stubs. +.IP "\fB-p\fR" +Generate a proxy. The default output filename is \fIinfile\fB_p.c\fR. +.IP "\fB--prefix-all=\fIprefix\fR" +Prefix to put on the name of both client and server stubs. +.IP "\fB--prefix-client=\fIprefix\fR" +Prefix to put on the name of client stubs. +.IP "\fB--prefix-server=\fIprefix\fR" +Prefix to put on the name of server stubs. +.IP "\fB-s\fR" +Generate a server stub file. The default output filename is +\fIinfile\fB_s.c\fR. +.PP +.IP "\fB--winrt\fR" +Enable Windows Runtime mode. +.IP "\fB--ns_prefix\fR" +Prefix namespaces with ABI namespace. +.PP +.B Registration script options: +.IP "\fB-r\fR" +Generate a registration script. The default output filename is +\fIinfile\fB_r.rgs\fR. If the output file name ends in \fB.res\fR, a +binary resource file containing the script is generated instead. +.PP +.B Dlldata file options: +.IP "\fB--dlldata-only\fI name1 \fR[\fIname2\fR...]" +Regenerate the dlldata file from scratch using the specified proxy +names. The default output filename is \fBdlldata.c\fR. +.PP +.B Preprocessor options: +.IP "\fB-I \fIpath\fR" +Add a header search directory to path. Multiple search +directories are allowed. +.IP "\fB-D \fIid\fR[\fB=\fIval\fR]" +Define preprocessor macro \fIid\fR with value \fIval\fR. +.IP "\fB-E\fR" +Preprocess only. +.IP "\fB-N\fR" +Do not preprocess input. +.PP +.B Debug options: +.IP "\fB-W\fR" +Enable pedantic warnings. +.IP "\fB-d \fIn\fR" +Set debug level to the non negative integer \fIn\fR. If +prefixed with \fB0x\fR, it will be interpreted as an hexadecimal +number. For the meaning of values, see the \fBDEBUG\fR section. +.PP +.B Miscellaneous options: +.IP "\fB-app_config\fR" +Ignored, present for midl compatibility. +.IP "\fB--acf=\fIfile\fR" +Use specified application configuration file. +.IP "\fB--local-stubs=\fIfile\fR" +Generate empty stubs for call_as/local methods in an object interface and +write them to \fIfile\fR. +.PP +.SH DEBUG +Debug level \fIn\fR is a bitmask with the following meaning: + * 0x01 Tell which resource is parsed (verbose mode) + * 0x02 Dump internal structures + * 0x04 Create a parser trace (yydebug=1) + * 0x08 Preprocessor messages + * 0x10 Preprocessor lex messages + * 0x20 Preprocessor yacc trace +.SH BUGS +Bugs can be reported on the +.UR https://bugs.winehq.org +.B Wine bug tracker +.UE . +.SH AUTHORS +.B widl +was originally written by Ove Kåven. It has been improved by Rob Shearman, +Dan Hipschman, and others. For a complete list, see the git commit logs. +This man page was originally written by Hannu Valtonen and then updated by +Dan Hipschman. +.SH AVAILABILITY +.B widl +is part of the Wine distribution, which is available through WineHQ, +the +.UR https://www.winehq.org/ +.B Wine development headquarters +.UE . +.SH "SEE ALSO" +.UR https://www.winehq.org/help +.B Wine documentation and support +.UE . diff --git a/share/man/man1/wine.1 b/share/man/man1/wine.1 new file mode 100644 index 0000000..b0cff13 --- /dev/null +++ b/share/man/man1/wine.1 @@ -0,0 +1,313 @@ +.TH WINE 1 "July 2013" "Wine 4.6" "Windows On Unix" +.SH NAME +wine \- run Windows programs on Unix +.SH SYNOPSIS +.B wine +.IR "program " [ arguments ] +.br +.B wine --help +.br +.B wine --version +.PP +For instructions on passing arguments to Windows programs, please see the +.B +PROGRAM/ARGUMENTS +section of the man page. +.SH DESCRIPTION +.B wine +loads and runs the given program, which can be a DOS, Windows +3.x, Win32 or Win64 executable (on 64-bit systems). +.PP +For debugging wine, use +.B winedbg +instead. +.PP +For running CUI executables (Windows console programs), use +.B wineconsole +instead of +.BR wine . +This will display the output in a separate window. Not using +.B wineconsole +for CUI programs will only provide very limited console support, and your +program might not function properly. +.PP +When invoked with +.B --help +or +.B --version +as the only argument, +.B wine +will simply print a small help message or its version respectively and exit. +.SH PROGRAM/ARGUMENTS +The program name may be specified in DOS format +.RI ( C:\(rs\(rsWINDOWS\(rs\(rsSOL.EXE ) +or in Unix format +.RI ( /msdos/windows/sol.exe ). +You may pass arguments to the program being executed by adding them to the +end of the command line invoking +.B wine +(such as: \fIwine notepad C:\(rs\(rsTEMP\(rs\(rsREADME.TXT\fR). +Note that you need to '\(rs' escape special characters (and spaces) when invoking Wine via +a shell, e.g. +.PP +wine C:\(rs\(rsProgram\(rs Files\(rs\(rsMyPrg\(rs\(rstest.exe +.PP +It can also be one of the Windows executables shipped with Wine, in +which case specifying the full path is not mandatory, e.g. \fIwine +explorer\fR or \fIwine notepad\fR. +.PP +.SH ENVIRONMENT +.B wine +makes the environment variables of the shell from which it +is started accessible to the Windows/DOS processes started. So use the +appropriate syntax for your shell to enter environment variables you need. +.TP +.B WINEPREFIX +If set, the contents of this variable is taken as the name of the directory where +Wine stores its data (the default is +.IR $HOME/.wine ). +This directory is also used to identify the socket which is used to +communicate with the +.BR wineserver . +All +.B wine +processes using the same +.B wineserver +(i.e.: same user) share certain things like registry, shared memory, +and config file. +By setting +.B WINEPREFIX +to different values for different +.B wine +processes, it is possible to run a number of truly independent +.B wine +processes. +.TP +.B WINESERVER +Specifies the path and name of the +.B wineserver +binary. If not set, Wine will try to load +.IR /home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wineserver , +and if this doesn't exist it will then look for a file named +"wineserver" in the path and in a few other likely locations. +.TP +.B WINELOADER +Specifies the path and name of the +.B wine +binary to use to launch new Windows processes. If not set, Wine will +try to load +.IR /home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine , +and if this doesn't exist it will then look for a file named "wine" in +the path and in a few other likely locations. +.TP +.B WINEDEBUG +Turns debugging messages on or off. The syntax of the variable is +of the form +.RI [ class ][\fB+\fR|\fB-\fR] channel [,[ class2 ][\fB+\fR|\fB-\fR] channel2 ] +.RS +7 +.PP +.I class +is optional and can be one of the following: +.BR err , +.BR warn , +.BR fixme , +or +.BR trace . +If +.I class +is not specified, all debugging messages for the specified +channel are turned on. Each channel will print messages about a particular +component of Wine. +The following character can be either \fB+\fR or \fB-\fR to switch the specified +channel on or off respectively. If there is no +.I class +part before it, a leading \fB+\fR\fR can be omitted. Note that spaces are not +allowed anywhere in the string. +.PP +Examples: +.TP +WINEDEBUG=warn+all +will turn on all warning messages (recommended for debugging). +.br +.TP +WINEDEBUG=warn+dll,+heap +will turn on DLL warning messages and all heap messages. +.br +.TP +WINEDEBUG=fixme-all,warn+cursor,+relay +will turn off all FIXME messages, turn on cursor warning messages, and turn +on all relay messages (API calls). +.br +.TP +WINEDEBUG=relay +will turn on all relay messages. For more control on including or excluding +functions and dlls from the relay trace, look into the +.B HKEY_CURRENT_USER\\\\Software\\\\Wine\\\\Debug +registry key. +.PP +For more information on debugging messages, see the +.I Running Wine +chapter of the Wine User Guide. +.RE +.TP +.B WINEDLLPATH +Specifies the path(s) in which to search for builtin dlls and Winelib +applications. This is a list of directories separated by ":". In +addition to any directory specified in +.BR WINEDLLPATH , +Wine will also look in +.IR /home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/lib/wine . +.TP +.B WINEDLLOVERRIDES +Defines the override type and load order of dlls used in the loading +process for any dll. There are currently two types of libraries that can be loaded +into a process address space: native windows dlls +.RI ( native ") and Wine internal dlls (" builtin ). +The type may be abbreviated with the first letter of the type +.RI ( n " or " b ). +The library may also be disabled (''). Each sequence of orders must be separated by commas. +.RS +.PP +Each dll may have its own specific load order. The load order +determines which version of the dll is attempted to be loaded into the +address space. If the first fails, then the next is tried and so +on. Multiple libraries with the same load order can be separated with +commas. It is also possible to use specify different loadorders for +different libraries by separating the entries by ";". +.PP +The load order for a 16-bit dll is always defined by the load order of +the 32-bit dll that contains it (which can be identified by looking at +the symbolic link of the 16-bit .dll.so file). For instance if +\fIole32.dll\fR is configured as builtin, \fIstorage.dll\fR will be loaded as +builtin too, since the 32-bit \fIole32.dll\fR contains the 16-bit +\fIstorage.dll\fR. +.PP +Examples: +.TP +WINEDLLOVERRIDES="comdlg32,shell32=n,b" +.br +Try to load comdlg32 and shell32 as native windows dll first and try +the builtin version if the native load fails. +.TP +WINEDLLOVERRIDES="comdlg32,shell32=n;c:\(rs\(rsfoo\(rs\(rsbar\(rs\(rsbaz=b" +.br +Try to load the libraries comdlg32 and shell32 as native windows dlls. Furthermore, if +an application request to load \fIc:\(rsfoo\(rsbar\(rsbaz.dll\fR load the builtin library \fIbaz\fR. +.TP +WINEDLLOVERRIDES="comdlg32=b,n;shell32=b;comctl32=n;oleaut32=" +.br +Try to load comdlg32 as builtin first and try the native version if +the builtin load fails; load shell32 always as builtin and comctl32 +always as native; oleaut32 will be disabled. +.RE +.TP +.B WINEPATH +Specifies additional path(s) to be prepended to the default Windows +.B PATH +environment variable. This is a list of Windows-style directories +separated by ";". +.RS +.PP +For a permanent alternative, edit (create if needed) the +.B PATH +value under the +.B HKEY_CURRENT_USER\\\\Environment +registry key. +.RE +.TP +.B WINEARCH +Specifies the Windows architecture to support. It can be set either to +.B win32 +(support only 32-bit applications), or to +.B win64 +(support both 64-bit applications and 32-bit ones in WoW64 mode). +.br +The architecture supported by a given Wine prefix is set at prefix +creation time and cannot be changed afterwards. When running with an +existing prefix, Wine will refuse to start if +.B WINEARCH +doesn't match the prefix architecture. +.TP +.B DISPLAY +Specifies the X11 display to use. +.TP +OSS sound driver configuration variables: +.TP +.B AUDIODEV +Set the device for audio input / output. Default +.IR /dev/dsp . +.TP +.B MIXERDEV +Set the device for mixer controls. Default +.IR /dev/mixer . +.TP +.B MIDIDEV +Set the MIDI (sequencer) device. Default +.IR /dev/sequencer . +.SH FILES +.TP +.I /home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine +The Wine program loader. +.TP +.I /home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wineconsole +The Wine program loader for CUI (console) applications. +.TP +.I /home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wineserver +The Wine server +.TP +.I /home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/winedbg +The Wine debugger +.TP +.I /home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/lib/wine +Directory containing Wine shared libraries +.TP +.I $WINEPREFIX/dosdevices +Directory containing the DOS device mappings. Each file in that +directory is a symlink to the Unix device file implementing a given +device. For instance, if COM1 is mapped to \fI/dev/ttyS0\fR you'd have a +symlink of the form \fI$WINEPREFIX/dosdevices/com1\fR -> \fI/dev/ttyS0\fR. +.br +DOS drives are also specified with symlinks; for instance if drive D: +corresponds to the CDROM mounted at \fI/mnt/cdrom\fR, you'd have a symlink +\fI$WINEPREFIX/dosdevices/d:\fR -> \fI/mnt/cdrom\fR. The Unix device corresponding +to a DOS drive can be specified the same way, except with '::' instead +of ':'. So for the previous example, if the CDROM device is mounted +from \fI/dev/hdc\fR, the corresponding symlink would be +\fI$WINEPREFIX/dosdevices/d::\fR -> \fI/dev/hdc\fR. +.SH AUTHORS +Wine is available thanks to the work of many developers. For a listing +of the authors, please see the file +.I AUTHORS +in the top-level directory of the source distribution. +.SH COPYRIGHT +Wine can be distributed under the terms of the LGPL license. A copy of the +license is in the file +.I COPYING.LIB +in the top-level directory of the source distribution. +.SH BUGS +.PP +A status report on many applications is available from the +.UR https://appdb.winehq.org +.B Wine Application Database +.UE . +Please add entries to this list for applications you currently run, if +necessary. +.PP +Bugs can be reported on the +.UR https://bugs.winehq.org +.B Wine bug tracker +.UE . +.SH AVAILABILITY +The most recent public version of +.B wine +is available through WineHQ, the +.UR https://www.winehq.org/ +.B Wine development headquarters +.UE . +.SH "SEE ALSO" +.BR wineserver (1), +.BR winedbg (1), +.br +.UR https://www.winehq.org/help +.B Wine documentation and support +.UE . diff --git a/share/man/man1/wineboot.1 b/share/man/man1/wineboot.1 new file mode 100644 index 0000000..d5f7173 --- /dev/null +++ b/share/man/man1/wineboot.1 @@ -0,0 +1,45 @@ +.TH WINEBOOT 1 "November 2010" "Wine 4.6" "Wine Programs" +.SH NAME +wineboot \- perform Wine initialization, startup, and shutdown tasks +.SH SYNOPSIS +.B wineboot +.RI [ options ] +.SH DESCRIPTION +.B wineboot +performs the initial creation and setup of a WINEPREFIX for wine(1). It can also perform a simulated +reboot or shutdown to any applications running within the WINEPREFIX. +.SH "OPTIONS" +.IP \fB\-h\fR,\fB\ \-\-help +Display help message. +.IP \fB\-e\fR,\fB\ \-\-end\-session +End the current session cleanly. +.IP \fB\-f\fR,\fB\ \-\-force +Force exit for processes that don't exit cleanly +.IP \fB\-i\fR,\fB\ \-\-init +Initialize the WINEPREFIX. +.IP \fB\-k\fR,\fB\ \-\-kill +Kill running processes without any cleanup. +.IP \fB\-r\fR,\fB\ \-\-restart +Restart only, don't do normal startup operations. +.IP \fB\-s\fR,\fB\ \-\-shutdown +Shutdown only, don't reboot. +.IP \fB\-u\fR,\fB\ \-\-update +Update the WINEPREFIX. +.SH BUGS +Bugs can be reported on the +.UR https://bugs.winehq.org +.B Wine bug tracker +.UE . +.SH AVAILABILITY +.B wineboot +is part of the Wine distribution, which is available through WineHQ, +the +.UR https://www.winehq.org/ +.B Wine development headquarters +.UE . +.SH "SEE ALSO" +.BR wine (1), +.br +.UR https://www.winehq.org/help +.B Wine documentation and support +.UE . diff --git a/share/man/man1/winebuild.1 b/share/man/man1/winebuild.1 new file mode 100644 index 0000000..1b06009 --- /dev/null +++ b/share/man/man1/winebuild.1 @@ -0,0 +1,514 @@ +.TH WINEBUILD 1 "October 2005" "Wine 4.6" "Wine Developers Manual" +.SH NAME +winebuild \- Wine dll builder +.SH SYNOPSIS +.B winebuild +.RI [ options ]\ [ inputfile ...] +.SH DESCRIPTION +.B winebuild +generates the assembly files that are necessary to build a Wine dll, +which is basically a Win32 dll encapsulated inside a Unix library. +.PP +.B winebuild +has different modes, depending on what kind of file it is asked to +generate. The mode is specified by one of the mode options specified +below. In addition to the mode option, various other command-line +option can be specified, as described in the \fBOPTIONS\fR section. +.SH "MODE OPTIONS" +You have to specify exactly one of the following options, depending on +what you want winebuild to generate. +.TP +.BI \--dll +Build an assembly file from a .spec file (see \fBSPEC FILE SYNTAX\fR +for details), or from a standard Windows .def file. The .spec/.def +file is specified via the \fB-E\fR option. The resulting file must be +assembled and linked to the other object files to build a working Wine +dll. In this mode, the +.I input files +should be the list of all object files that will be linked into the +final dll, to allow +.B winebuild +to get the list of all undefined symbols that need to be imported from +other dlls. +.TP +.BI \--exe +Build an assembly file for an executable. This is basically the same as +the \fB--dll\fR mode except that it doesn't require a .spec/.def file as input, +since an executable need not export functions. Some executables however +do export functions, and for those a .spec/.def file can be specified via +the \fB-E\fR option. The executable is named from the .spec/.def file name if +present, or explicitly through the \fB-F\fR option. The resulting file must be +assembled and linked to the other object files to build a working Wine +executable, and all the other object files must be listed as +.I input files. +.TP +.BI \--def +Build a .def file from a spec file. The .spec file is specified via the +\fB-E\fR option. This is used when building dlls with a PE (Win32) compiler. +.TP +.BI \--implib +Build a .a import library from a spec file. The .spec file is +specified via the \fB-E\fR option. +.TP +.B \--resources +Generate a .o file containing all the input resources. This is useful +when building with a PE compiler, since the PE binutils cannot handle +multiple resource files as input. For a standard Unix build, the +resource files are automatically included when building the spec file, +so there's no need for an intermediate .o file. +.SH OPTIONS +.TP +.BI \--as-cmd= as-command +Specify the command to use to compile assembly files; the default is +\fBas\fR. +.TP +.BI \-b,\ --target= cpu-manufacturer\fR[\fB-\fIkernel\fR]\fB-\fIos +Specify the target CPU and platform on which the generated code will +be built. The target specification is in the standard autoconf format +as returned by config.sub. +.TP +.BI \--cc-cmd= cc-command +Specify the C compiler to use to compile assembly files; the default +is to instead use the assembler specified with \fB--as-cmd\fR. +.TP +.BI \-d,\ --delay-lib= name +Set the delayed import mode for the specified library, which must be +one of the libraries imported with the \fB-l\fR option. Delayed mode +means that the library won't be loaded until a function imported from +it is actually called. +.TP +.BI \-D\ symbol +Ignored for compatibility with the C compiler. +.TP +.BI \-e,\ --entry= function +Specify the module entry point function; if not specified, the default +is +.B DllMain +for dlls, and +.B main +for executables (if the standard C +.B main +is not defined, +.B WinMain +is used instead). This is only valid for Win32 modules. +.TP +.BI \-E,\ --export= filename +Specify a .spec file (see \fBSPEC FILE SYNTAX\fR for details), +or a standard Windows .def file that defines the exports +of the DLL or executable that is being built. +.TP +.B \--external-symbols +Allow linking to external symbols directly from the spec +file. Normally symbols exported by a dll have to be defined in the dll +itself; this option makes it possible to use symbols defined in +another Unix library (for symbols defined in another dll, a +.I forward +specification must be used instead). +.TP +.BI \-f\ option +Specify a code generation option. Currently \fB\-fPIC\fR and +\fB\-fasynchronous-unwind-tables\fR are supported. Other options are +ignored for compatibility with the C compiler. +.TP +.B \--fake-module +Create a fake PE module for a dll or exe, instead of the normal +assembly or object file. The PE module contains the resources for the +module, but no executable code. +.TP +.BI \-F,\ --filename= filename +Set the file name of the module. The default is to use the base name +of the spec file (without any extension). +.TP +.B \-h, --help +Display a usage message and exit. +.TP +.BI \-H,\ --heap= size +Specify the size of the module local heap in bytes (only valid for +Win16 modules); default is no local heap. +.TP +.BI \-I\ directory +Ignored for compatibility with the C compiler. +.TP +.B \-k, --kill-at +Remove the stdcall decorations from the symbol names in the +generated .def file. Only meaningful in \fB--def\fR mode. +.TP +.BI \-K\ flags +Ignored for compatibility with the C compiler. +.TP +.BI \--large-address-aware +Set a flag in the executable to notify the loader that this +application supports address spaces larger than 2 gigabytes. +.TP +.BI \--ld-cmd= ld-command +Specify the command to use to link the object files; the default is +\fBld\fR. +.TP +.BI \-L,\ --library-path= directory +Append the specified directory to the list of directories that are +searched for import libraries. +.TP +.BI \-l,\ --library= name +Import the specified library, looking for a corresponding +\fIlibname.def\fR file in the directories specified with the \fB-L\fR +option. +.TP +.B \-m16, -m32, -m64 +Generate respectively 16-bit, 32-bit or 64-bit code. +.TP +.BI \-marm,\ \-mthumb,\ \-march= option ,\ \-mcpu= option ,\ \-mfpu= option ,\ \-mfloat-abi= option +Set code generation options for the assembler. +.TP +.BI \-M,\ --main-module= module +When building a 16-bit dll, set the name of its 32-bit counterpart to +\fImodule\fR. This is used to enforce that the load order for the +16-bit dll matches that of the 32-bit one. +.TP +.BI \-N,\ --dll-name= dllname +Set the internal name of the module. It is only used in Win16 +modules. The default is to use the base name of the spec file (without +any extension). This is used for KERNEL, since it lives in +KRNL386.EXE. It shouldn't be needed otherwise. +.TP +.BI \--nm-cmd= nm-command +Specify the command to use to get the list of undefined symbols; the +default is \fBnm\fR. +.TP +.BI --nxcompat= yes\fR|\fIno +Specify whether the module is compatible with no-exec support. The +default is yes. +.TP +.BI \-o,\ --output= file +Set the name of the output file (default is standard output). If the +output file name ends in .o, the text output is sent to a +temporary file that is then assembled to produce the specified .o +file. +.TP +.BI \-r,\ --res= rsrc.res +Load resources from the specified binary resource file. The +\fIrsrc.res\fR file can be produced from a source resource file with +.BR wrc (1) +(or with a Windows resource compiler). +.br +This option is only necessary for Win16 resource files, the Win32 ones +can simply listed as +.I input files +and will automatically be handled correctly (though the +.B \-r +option will also work for Win32 files). +.TP +.B --save-temps +Do not delete the various temporary files that \fBwinebuild\fR generates. +.TP +.BI --subsystem= subsystem\fR[\fB:\fImajor\fR[\fB.\fIminor\fR]] +Set the subsystem of the executable, which can be one of the following: +.br +.B console +for a command line executable, +.br +.B windows +for a graphical executable, +.br +.B native +for a native-mode dll, +.br +.B wince +for a ce dll. +.br +The entry point of a command line executable is a normal C \fBmain\fR +function. A \fBwmain\fR function can be used instead if you need the +argument array to use Unicode strings. A graphical executable has a +\fBWinMain\fR entry point. +.br +Optionally a major and minor subsystem version can also be specified; +the default subsystem version is 4.0. +.TP +.BI \-u,\ --undefined= symbol +Add \fIsymbol\fR to the list of undefined symbols when invoking the +linker. This makes it possible to force a specific module of a static +library to be included when resolving imports. +.TP +.B \-v, --verbose +Display the various subcommands being invoked by +.BR winebuild . +.TP +.B \--version +Display the program version and exit. +.TP +.B \-w, --warnings +Turn on warnings. +.SH "SPEC FILE SYNTAX" +.SS "General syntax" +A spec file should contain a list of ordinal declarations. The general +syntax is the following: +.PP +.I ordinal functype +.RI [ flags ]\ exportname \ \fB(\fR\ [ args... ] \ \fB) \ [ handler ] +.br +.IB ordinal\ variable +.RI [ flags ]\ exportname \ \fB(\fR\ [ data... ] \ \fB) +.br +.IB ordinal\ extern +.RI [ flags ]\ exportname \ [ symbolname ] +.br +.IB ordinal\ stub +.RI [ flags ]\ exportname \ [\ \fB( args... \fB)\fR\ ] +.br +.IB ordinal\ equate +.RI [ flags ]\ exportname\ data +.br +.BI #\ comments +.PP +Declarations must fit on a single line, except if the end of line is +escaped using a backslash character. The +.B # +character anywhere in a line causes the rest of the line to be ignored +as a comment. +.PP +.I ordinal +specifies the ordinal number corresponding to the entry point, or '@' +for automatic ordinal allocation (Win32 only). +.PP +.I flags +is a series of optional flags, preceded by a '-' character. The +supported flags are: +.RS +.TP +.B -norelay +The entry point is not displayed in relay debugging traces (Win32 +only). +.TP +.B -noname +The entry point will be exported by ordinal instead of by name. The +name is still available for importing. +.TP +.B -ret16 +The function returns a 16-bit value (Win16 only). +.TP +.B -ret64 +The function returns a 64-bit value (Win32 only). +.TP +.B -register +The function uses CPU register to pass arguments. +.TP +.B -private +The function cannot be imported from other dlls, it can only be +accessed through GetProcAddress. +.TP +.B -ordinal +The entry point will be imported by ordinal instead of by name. The +name is still exported. +.TP +.B -thiscall +The function uses the +.I thiscall +calling convention (first parameter in %ecx register on i386). +.TP +.B -fastcall +The function uses the +.I fastcall +calling convention (first two parameters in %ecx/%edx registers on +i386). +.TP +.RE +.BI -arch= cpu\fR[\fB,\fIcpu\fR] +The entry point is only available on the specified CPU +architecture(s). The names \fBwin32\fR and \fBwin64\fR match all +32-bit or 64-bit CPU architectures respectively. In 16-bit dlls, +specifying \fB-arch=win32\fR causes the entry point to be exported +from the 32-bit wrapper module. +.SS "Function ordinals" +Syntax: +.br +.I ordinal functype +.RI [ flags ]\ exportname \ \fB(\fR\ [ args... ] \ \fB) \ [ handler ] +.br + +This declaration defines a function entry point. The prototype defined by +.IR exportname \ \fB(\fR\ [ args... ] \ \fB) +specifies the name available for dynamic linking and the format of the +arguments. '@' can be used instead of +.I exportname +for ordinal-only exports. +.PP +.I functype +should be one of: +.RS +.TP +.B stdcall +for a normal Win32 function +.TP +.B pascal +for a normal Win16 function +.TP +.B cdecl +for a Win16 or Win32 function using the C calling convention +.TP +.B varargs +for a Win16 or Win32 function using the C calling convention with a +variable number of arguments +.RE +.PP +.I args +should be one or several of: +.RS +.TP +.B word +(16-bit unsigned value) +.TP +.B s_word +(16-bit signed word) +.TP +.B long +(pointer-sized integer value) +.TP +.B int64 +(64-bit integer value) +.TP +.B int128 +(128-bit integer value) +.TP +.B float +(32-bit floating point value) +.TP +.B double +(64-bit floating point value) +.TP +.B ptr +(linear pointer) +.TP +.B str +(linear pointer to a null-terminated ASCII string) +.TP +.B wstr +(linear pointer to a null-terminated Unicode string) +.TP +.B segptr +(segmented pointer) +.TP +.B segstr +(segmented pointer to a null-terminated ASCII string). +.HP +Note: The 16-bit and segmented pointer types are only valid for Win16 +functions. +.RE +.PP +.I handler +is the name of the actual C function that will implement that entry +point in 32-bit mode. The handler can also be specified as +.IB dllname . function +to define a forwarded function (one whose implementation is in another +dll). If +.I handler +is not specified, it is assumed to be identical to +.I exportname. +.PP +This first example defines an entry point for the 32-bit GetFocus() +call: +.IP +@ stdcall GetFocus() GetFocus +.PP +This second example defines an entry point for the 16-bit +CreateWindow() call (the ordinal 100 is just an example); it also +shows how long lines can be split using a backslash: +.IP +100 pascal CreateWindow(ptr ptr long s_word s_word s_word \\ + s_word word word word ptr) WIN_CreateWindow +.PP +To declare a function using a variable number of arguments, specify +the function as +.B varargs +and declare it in the C file with a '...' parameter for a Win32 +function, or with an extra VA_LIST16 argument for a Win16 function. +See the wsprintf* functions in user.exe.spec and user32.spec for an +example. +.SS "Variable ordinals" +Syntax: +.br +.IB ordinal\ variable +.RI [ flags ]\ exportname \ \fB(\fR\ [ data... ] \ \fB) +.PP +This declaration defines data storage as 32-bit words at the ordinal +specified. +.I exportname +will be the name available for dynamic +linking. +.I data +can be a decimal number or a hex number preceded by "0x". The +following example defines the variable VariableA at ordinal 2 and +containing 4 ints: +.IP +2 variable VariableA(-1 0xff 0 0) +.PP +This declaration only works in Win16 spec files. In Win32 you should +use +.B extern +instead (see below). +.SS "Extern ordinals" +Syntax: +.br +.IB ordinal\ extern +.RI [ flags ]\ exportname \ [ symbolname ] +.PP +This declaration defines an entry that simply maps to a C symbol +(variable or function). It only works in Win32 spec files. +.I exportname +will point to the symbol +.I symbolname +that must be defined in the C code. Alternatively, it can be of the +form +.IB dllname . symbolname +to define a forwarded symbol (one whose implementation is in another +dll). If +.I symbolname +is not specified, it is assumed to be identical to +.I exportname. +.SS "Stub ordinals" +Syntax: +.br +.IB ordinal\ stub +.RI [ flags ]\ exportname \ [\ \fB( args... \fB)\fR\ ] +.PP +This declaration defines a stub function. It makes the name and +ordinal available for dynamic linking, but will terminate execution +with an error message if the function is ever called. +.SS "Equate ordinals" +Syntax: +.br +.IB ordinal\ equate +.RI [ flags ]\ exportname\ data +.PP +This declaration defines an ordinal as an absolute value. +.I exportname +will be the name available for dynamic linking. +.I data +can be a decimal number or a hex number preceded by "0x". +.SH AUTHORS +.B winebuild +has been worked on by many people over the years. The main authors are +Robert J. Amstadt, Alexandre Julliard, Martin von Loewis, Ulrich +Weigand and Eric Youngdale. Many other people have contributed new features +and bug fixes. For a complete list, see the git commit logs. +.SH BUGS +It is not yet possible to use a PE-format dll in an import +specification; only Wine dlls can be imported. +.PP +Bugs can be reported on the +.UR https://bugs.winehq.org +.B Wine bug tracker +.UE . +.SH AVAILABILITY +.B winebuild +is part of the Wine distribution, which is available through WineHQ, +the +.UR https://www.winehq.org/ +.B Wine development headquarters +.UE . +.SH "SEE ALSO" +.BR wine (1), +.BR winegcc (1), +.BR wrc (1), +.br +.UR https://www.winehq.org/help +.B Wine documentation and support +.UE . diff --git a/share/man/man1/winecfg.1 b/share/man/man1/winecfg.1 new file mode 100644 index 0000000..ee80cf9 --- /dev/null +++ b/share/man/man1/winecfg.1 @@ -0,0 +1,29 @@ +.TH WINECFG 1 "November 2010" "Wine 4.6" "Wine Programs" +.SH NAME +winecfg \- Wine Configuration Editor +.SH SYNOPSIS +.BR "winecfg" +.SH DESCRIPTION +.B winecfg +is the Wine configuration editor. It allows you to change several settings, such as DLL load order +(native versus builtin), enable a virtual desktop, setup disk drives, and change the Wine audio driver, +among others. Many of these settings can be made on a per application basis, for example, preferring native +riched20.dll for wordpad.exe, but not for notepad.exe. +.SH BUGS +Bugs can be reported on the +.UR https://bugs.winehq.org +.B Wine bug tracker +.UE . +.SH AVAILABILITY +.B winecfg +is part of the Wine distribution, which is available through WineHQ, +the +.UR https://www.winehq.org/ +.B Wine development headquarters +.UE . +.SH "SEE ALSO" +.BR wine (1), +.br +.UR https://www.winehq.org/help +.B Wine documentation and support +.UE . diff --git a/share/man/man1/wineconsole.1 b/share/man/man1/wineconsole.1 new file mode 100644 index 0000000..f58be9f --- /dev/null +++ b/share/man/man1/wineconsole.1 @@ -0,0 +1,32 @@ +.TH WINECONSOLE 1 "November 2010" "Wine 4.6" "Wine Programs" +.SH NAME +wineconsole \- The Wine console +.SH SYNOPSIS +.B wineconsole +.RI [ option "] " command +.SH DESCRIPTION +.B wineconsole +is the Wine console manager, used to run console commands and applications. It allows running the +console either in the current terminal (\fIcurses\fR) or in a newly made window (\fIuser\fR). +.SH "OPTIONS" +.IP \fB\-\-backend=\fR{\fIuser\fR|\fIcurses\fR} +If \fIuser\fR is chosen, a new window will be created for the console. The \fIcurses\fR option will make +wineconsole try to setup the current terminal as a Wine console. +.SH BUGS +Bugs can be reported on the +.UR https://bugs.winehq.org +.B Wine bug tracker +.UE . +.SH AVAILABILITY +.B wineconsole +is part of the Wine distribution, which is available through WineHQ, +the +.UR https://www.winehq.org/ +.B Wine development headquarters +.UE . +.SH "SEE ALSO" +.BR wine (1), +.br +.UR https://www.winehq.org/help +.B Wine documentation and support +.UE . diff --git a/share/man/man1/winecpp.1 b/share/man/man1/winecpp.1 new file mode 120000 index 0000000..98b0f73 --- /dev/null +++ b/share/man/man1/winecpp.1 @@ -0,0 +1 @@ +winegcc.1 \ No newline at end of file diff --git a/share/man/man1/winedbg.1 b/share/man/man1/winedbg.1 new file mode 100644 index 0000000..6c639b8 --- /dev/null +++ b/share/man/man1/winedbg.1 @@ -0,0 +1,422 @@ +.TH WINEDBG 1 "October 2005" "Wine 4.6" "Wine Developers Manual" +.SH NAME +winedbg \- Wine debugger +.SH SYNOPSIS +.B winedbg +.RI "[ " options " ] [ " program_name " [ " program_arguments " ] | " wpid " ]" +.PP +.B winedbg --gdb +.RI "[ " options " ] [ " program_name " [ " program_arguments " ] | " wpid " ]" +.PP +.BI "winedbg --auto " wpid +.PP +.B winedbg --minidump +.RI "[ " file.mdmp " ] " wpid +.PP +.BI "winedbg " file.mdmp +.SH DESCRIPTION +.B winedbg +is a debugger for Wine. It allows: +.RS 4 +.nf ++ debugging native Win32 applications ++ debugging Winelib applications ++ being a drop-in replacement for Dr Watson +.fi +.RE +.PP + +.SH MODES +\fBwinedbg\fR can be used in five modes. The first argument to the +program determines the mode winedbg will run in. +.IP \fBdefault\fR +Without any explicit mode, this is standard \fBwinedbg\fR operating +mode. \fBwinedbg\fR will act as the front end for the user. +.IP \fB--gdb\fR +\fBwinedbg\fR will be used as a proxy for \fBgdb\fR. \fBgdb\fR will be +the front end for command handling, and \fBwinedbg\fR will proxy all +debugging requests from \fBgdb\fR to the Win32 APIs. +.IP \fB--auto\fR +This mode is used when \fBwinedbg\fR is set up in \fIAeDebug\fR +registry entry as the default debugger. \fBwinedbg\fR will then +display basic information about a crash. This is useful for users +who don't want to debug a crash, but rather gather relevant +information about the crash to be sent to developers. +.IP \fB--minidump\fR +This mode is similar to the \fB--auto\fR one, except that instead of +printing the information on the screen (as \fB--auto\fR does), it's +saved into a minidump file. The name of the file is either passed on +the command line, or generated by \fBWineDbg\fR when none is given. +This file could later on be reloaded into \fBwinedbg\fR for further +examination. +.IP \fBfile.mdmp\fR +In this mode \fBwinedbg\fR reloads the state of a debuggee which +has been saved into a minidump file. See either the \fBminidump\fR +command below, or the \fB--minidump mode\fR. + +.SH OPTIONS +When in \fBdefault\fR mode, the following options are available: +.PP +.IP \fB--command\ \fIstring\fR +\fBwinedbg\fR will execute the command \fIstring\fR as if it was keyed on +winedbg command line, and then will exit. This can be handy for +getting the pid of running processes (winedbg --command "info proc"). +.IP \fB--file\ \fIfilename\fR +\fBwinedbg\fR will execute the list of commands contained in file +filename as if they were keyed on winedbg command line, and then +will exit. +.PP +When in \fBgdb\fR proxy mode, the following options are available: +.PP +.IP \fB--no-start\fR +\fBgdb\fR will not be automatically +started. Relevant information for starting \fBgdb\fR is printed on +screen. This is somehow useful when not directly using \fBgdb\fR but +some graphical front-ends, like \fBddd\fR or \fBkgbd\fR. +.IP \fB--port\fR\ \fIport\fR +Start the \fBgdb\fR server on the given port. If this option is not +specified, a randomly chosen port will be used. If \fB--no-start\fR is +specified, the port used will be printed on startup. +.IP \fB--with-xterm\fR +This will run \fBgdb\fR in its own xterm instead of using the current +Unix console for textual display. +.PP +In all modes, the rest of the command line, when passed, is used to +identify which programs, if any, has to debugged: +.IP \fIprogram_name\fR +This is the name of an executable to start for a debugging +session. \fBwinedbg\fR will actually create a process with this +executable. If \fIprograms_arguments\fR are also given, they will be +used as arguments for creating the process to be debugged. +.IP \fIwpid\fR +\fBwinedbg\fR will attach to the process which Windows pid is \fIwpid\fR. +Use the \fBinfo proc\fR command within \fBwinedbg\fR to list running processes +and their Windows pids. +.IP \fBdefault\fR +If nothing is specified, you will enter the debugger without any run +nor attached process. You'll have to do the job yourself. + +.SH COMMANDS +.SS Default mode, and while reloading a minidump file: +.PP +Most of commands used in \fBwinedbg\fR are similar to the ones from +\fBgdb\fR. Please refer to the \fBgdb\fR documentations for some more +details. See the \fIgdb\ differences\fR section later on to get a list +of variations from \fBgdb\fR commands. +.PP +\fIMisc. commands\fR +.IP \fBabort\fR +Aborts the debugger. +.IP \fBquit\fR +Exits the debugger. +.IP \fBattach\ \fIN\fR +Attach to a Wine process (\fIN\fR is its Windows ID, numeric or hexadecimal). +IDs can be obtained using the \fBinfo\ process\fR command. Note the +\fBinfo\ process\fR command returns hexadecimal values +.IP +.IP \fBdetach\fR +Detach from a Wine-process. +.PP +\fIHelp commands\fR +.IP \fBhelp\fR +Prints some help on the commands. +.IP \fBhelp\ info\fR +Prints some help on info commands +.PP +\fIFlow control commands\fR +.IP \fBcont\fR +Continue execution until next breakpoint or exception. +.IP \fBpass\fR +Pass the exception event up to the filter chain. +.IP \fBstep\fR +Continue execution until next C line of code (enters function call) +.IP \fBnext\fR +Continue execution until next C line of code (doesn't enter function +call) +.IP \fBstepi\fR +Execute next assembly instruction (enters function call) +.IP \fBnexti\fR +Execute next assembly instruction (doesn't enter function call) +.IP \fBfinish\fR +Execute until return of current function is reached. +.PP +\fBcont\fR, \fBstep\fR, \fBnext\fR, \fBstepi\fR, \fBnexti\fR can be +postfixed by a number (N), meaning that the command must be executed N +times before control is returned to the user. +.PP +\fIBreakpoints, watchpoints +.IP \fBenable\ \fIN\fR +Enables (break|watch)-point \fIN\fR +.IP \fBdisable\ \fIN\fR +Disables (break|watch)-point \fIN\fR +.IP \fBdelete\ \fIN\fR +Deletes (break|watch)-point \fIN\fR +.IP \fBcond\ \fIN\fR +Removes any existing condition to (break|watch)-point \fIN\fR +.IP \fBcond\ \fIN\ expr\fR +Adds condition \fIexpr\fR to (break|watch)-point +\fIN\fR. \fIexpr\fR will be evaluated each time the +(break|watch)-point is hit. If the result is a zero value, the +breakpoint isn't triggered. +.IP \fBbreak\ *\ \fIN\fR +Adds a breakpoint at address \fIN\fR +.IP \fBbreak\ \fIid\fR +Adds a breakpoint at the address of symbol \fIid\fR +.IP \fBbreak\ \fIid\ N\fR +Adds a breakpoint at the line \fIN\fR inside symbol \fIid\fR. +.IP \fBbreak\ \fIN\fR +Adds a breakpoint at line \fIN\fR of current source file. +.IP \fBbreak\fR +Adds a breakpoint at current \fB$PC\fR address. +.IP \fBwatch\ *\ \fIN\fR +Adds a watch command (on write) at address \fIN\fR (on 4 bytes). +.IP \fBwatch\ \fIid\fR +Adds a watch command (on write) at the address of symbol +\fIid\fR. Size depends on size of \fIid\fR. +.IP \fBrwatch\ *\ \fIN\fR +Adds a watch command (on read) at address \fIN\fR (on 4 bytes). +.IP \fBrwatch\ \fIid\fR +Adds a watch command (on read) at the address of symbol +\fIid\fR. Size depends on size of \fIid\fR. +.IP \fBinfo\ break\fR +Lists all (break|watch)-points (with their state). +.PP +You can use the symbol \fBEntryPoint\fR to stand for the entry point of the Dll. +.PP +When setting a (break|watch)-point by \fIid\fR, if the symbol cannot +be found (for example, the symbol is contained in a not yet loaded +module), \fBwinedbg\fR will recall the name of the symbol and will try +to set the breakpoint each time a new module is loaded (until it succeeds). +.PP +\fIStack manipulation\fR +.IP \fBbt\fR +Print calling stack of current thread. +.IP \fBbt\ \fIN\fR +Print calling stack of thread of ID \fIN\fR. Note: this doesn't change +the position of the current frame as manipulated by the \fBup\fR & +\fBdn\fR commands). +.IP \fBup\fR +Goes up one frame in current thread's stack +.IP \fBup\ \fIN\fR +Goes up \fIN\fR frames in current thread's stack +.IP \fBdn\fR +Goes down one frame in current thread's stack +.IP \fBdn\ \fIN\fR +Goes down \fIN\fR frames in current thread's stack +.IP \fBframe\ \fIN\fR +Sets \fIN\fR as the current frame for current thread's stack. +.IP \fBinfo\ locals\fR +Prints information on local variables for current function frame. +.PP +\fIDirectory & source file manipulation\fR +.IP \fBshow\ dir\fR +Prints the list of dirs where source files are looked for. +.IP \fBdir\ \fIpathname\fR +Adds \fIpathname\fR to the list of dirs where to look for source +files +.IP \fBdir\fR +Deletes the list of dirs where to look for source files +.IP \fBsymbolfile\ \fIpathname\fR +Loads external symbol definition file \fIpathname\fR +.IP \fBsymbolfile\ \fIpathname\ N\fR +Loads external symbol definition file \fIpathname\fR (applying +an offset of \fIN\fR to addresses) +.IP \fBlist\fR +Lists 10 source lines forwards from current position. +.IP \fBlist\ -\fR +Lists 10 source lines backwards from current position +.IP \fBlist\ \fIN\fR +Lists 10 source lines from line \fIN\fR in current file +.IP \fBlist\ \fIpathname\fB:\fIN\fR +Lists 10 source lines from line \fIN\fR in file \fIpathname\fR +.IP \fBlist\ \fIid\fR +Lists 10 source lines of function \fIid\fR +.IP \fBlist\ *\ \fIN\fR +Lists 10 source lines from address \fIN\fR +.PP +You can specify the end target (to change the 10 lines value) using +the ',' separator. For example: +.IP \fBlist\ 123,\ 234\fR +lists source lines from line 123 up to line 234 in current file +.IP \fBlist\ foo.c:1,56\fR +lists source lines from line 1 up to 56 in file foo.c +.PP +\fIDisplaying\fR +.PP +A display is an expression that's evaluated and printed after the +execution of any \fBwinedbg\fR command. +.IP \fBdisplay\fR +.IP \fBinfo\ display\fR +Lists the active displays +.IP \fBdisplay\ \fIexpr\fR +Adds a display for expression \fIexpr\fR +.IP \fBdisplay\ /\fIfmt\ \fIexpr\fR +Adds a display for expression \fIexpr\fR. Printing evaluated +\fIexpr\fR is done using the given format (see \fBprint\ command\fR +for more on formats) +.IP \fBdel\ display\ \fIN\fR +.IP \fBundisplay\ \fIN\fR +Deletes display \fIN\fR +.PP +\fIDisassembly\fR +.IP \fBdisas\fR +Disassemble from current position +.IP \fBdisas\ \fIexpr\fR +Disassemble from address \fIexpr\fR +.IP \fBdisas\ \fIexpr\fB,\fIexpr\fR +Disassembles code between addresses specified by the two expressions +.PP +\fIMemory\ (reading,\ writing,\ typing)\fR +.IP \fBx\ \fIexpr\fR +Examines memory at address \fIexpr\fR +.IP \fBx\ /\fIfmt\ expr\fR +Examines memory at address \fIexpr\fR using format \fIfmt\fR +.IP \fBprint\ \fIexpr\fR +Prints the value of \fIexpr\fR (possibly using its type) +.IP \fBprint\ /\fIfmt\ expr\fR +Prints the value of \fIexpr\fR (possibly using its type) +.IP \fBset\ \fIvar\fB\ =\ \fIexpr\fR +Writes the value of \fIexpr\fR in \fIvar\fR variable +.IP \fBwhatis\ \fIexpr\fR +Prints the C type of expression \fIexpr\fR +.PP +.IP \fIfmt\fR +is either \fIletter\fR or \fIcount letter\fR, where \fIletter\fR +can be: +.RS 4 +.IP s +an ASCII string +.IP u +a UTF16 Unicode string +.IP i +instructions (disassemble) +.IP x +32-bit unsigned hexadecimal integer +.IP d +32-bit signed decimal integer +.IP w +16-bit unsigned hexadecimal integer +.IP c +character (only printable 0x20-0x7f are actually printed) +.IP b +8-bit unsigned hexadecimal integer +.IP g +Win32 GUID +.RE +.PP +\fIExpressions\fR +.PP +Expressions in Wine Debugger are mostly written in a C form. However, +there are a few discrepancies: +.PP +.RS 4 +Identifiers can take a '!' in their names. This allows mainly to +specify a module where to look the ID from, e.g. \fIUSER32!CreateWindowExA\fR. +.PP +In a cast operation, when specifying a structure or a union, you must +use the struct or union keyword (even if your program uses a typedef). +.RE +.PP +When specifying an identifier, if several symbols with +this name exist, the debugger will prompt for the symbol you want to +use. Pick up the one you want from its number. +.PP +\fIMisc.\fR +.PP +.BI "minidump " file.mdmp +saves the debugging context of the debuggee into a minidump file called +\fIfile.mdmp\fR. +.PP +\fIInformation on Wine internals\fR +.IP \fBinfo\ class\fR +Lists all Windows classes registered in Wine +.IP \fBinfo\ class\ \fIid\fR +Prints information on Windows class \fIid\fR +.IP \fBinfo\ share\fR +Lists all the dynamic libraries loaded in the debugged program +(including .so files, NE and PE DLLs) +.IP \fBinfo\ share\ \fIN\fR +Prints information on module at address \fIN\fR +.IP \fBinfo\ regs\fR +Prints the value of the CPU registers +.IP \fBinfo\ all-regs\fR +Prints the value of the CPU and Floating Point registers +.IP \fBinfo\ segment\fR +Lists all allocated segments (i386 only) +.IP \fBinfo\ segment\ \fIN\fR +Prints information on segment \fIN\fR (i386 only) +.IP \fBinfo\ stack\fR +Prints the values on top of the stack +.IP \fBinfo\ map\fR +Lists all virtual mappings used by the debugged program +.IP \fBinfo\ map\ \fIN\fR +Lists all virtual mappings used by the program of Windows pid \fIN\fR +.IP \fBinfo\ wnd\fR +Displays the window hierarchy starting from the desktop window +.IP \fBinfo\ wnd\ \fIN\fR +Prints information of Window of handle \fIN\fR +.IP \fBinfo\ process\fR +Lists all w-processes in Wine session +.IP \fBinfo\ thread\fR +Lists all w-threads in Wine session +.IP \fBinfo\ frame\fR +Lists the exception frames (starting from current stack frame). You +can also pass, as optional argument, a thread id (instead of current +thread) to examine its exception frames. +.PP +Debug messages can be turned on and off as you are debugging using +the \fBset\fR command, but only for channels initialized with the +\fIWINEDEBUG\fR environment variable. +.IP \fBset\ warn\ +\ \fIwin\fR +Turns on warn on \fIwin\fR channel +.IP \fBset\ +\ \fIwin\fR +Turns on warn/fixme/err/trace on \fIwin\fR channel +.IP \fBset\ -\ \fIwin\fR +Turns off warn/fixme/err/trace on \fIwin\fR channel +.IP \fBset\ fixme\ -\ all\fR +Turns off fixme class on all channels +.PP +.SS Gdb mode: +.PP +See the \fBgdb\fR documentation for all the \fBgdb\fR commands. +.PP +However, a few Wine extensions are available, through the +\fBmonitor\fR command: +.IP \fBmonitor\ wnd\fR +Lists all windows in the Wine session +.IP \fBmonitor\ proc\fR +Lists all processes in the Wine session +.IP \fBmonitor\ mem\fR +Displays memory mapping of debugged process +.PP +.SS Auto and minidump modes: +.PP +Since no user input is possible, no commands are available. + +.SH ENVIRONMENT +.IP \fBWINE_GDB\fR +When used in \fBgdb\fR proxy mode, \fBWINE_GDB\fR specifies the name +(and the path) of the executable to be used for \fBgdb\fR. "gdb" +is used by default. +.SH AUTHORS +The first version was written by Eric Youngdale. +.PP +See Wine developers list for the rest of contributors. +.SH BUGS +Bugs can be reported on the +.UR https://bugs.winehq.org +.B Wine bug tracker +.UE . +.SH AVAILABILITY +.B winedbg +is part of the Wine distribution, which is available through WineHQ, +the +.UR https://www.winehq.org/ +.B Wine development headquarters +.UE . +.SH "SEE ALSO" +.BR wine (1), +.br +.UR https://www.winehq.org/help +.B Wine documentation and support +.UE . diff --git a/share/man/man1/winedump.1 b/share/man/man1/winedump.1 new file mode 100644 index 0000000..0875c88 --- /dev/null +++ b/share/man/man1/winedump.1 @@ -0,0 +1,236 @@ +.TH WINEDUMP 1 "October 2005" "Wine 4.6" "Wine Developers Manual" +.SH NAME +winedump \- A Wine DLL tool +.SH SYNOPSIS +.BR "winedump " [ "-h " "| " +.BI "sym " sym +| +.BI "spec " dll +| +.BI "dump " file +.RI "] [" "mode_options" ] +.SH DESCRIPTION +.B winedump +is a Wine tool which aims to help: +.nf +A: Reimplementing a Win32 DLL for use within Wine, or +.nf +B: Compiling a Win32 application with Winelib that uses x86 DLLs +.PP +For both tasks in order to be able to link to the Win functions some +glue code is needed. This 'glue' comes in the form of a \fI.spec\fR file. +The \fI.spec\fR file, along with some dummy code, is used to create a +Wine \fI.so\fR corresponding to the Windows DLL. The \fBwinebuild\fR program +can then resolve calls made to DLL functions. +.PP +Creating a \fI.spec\fR file is a labour intensive task during which it is +easy to make a mistake. The idea of \fBwinedump\fR is to automate this task +and create the majority of the support code needed for your DLL. In +addition you can have \fBwinedump\fR create code to help you re-implement a +DLL, by providing tracing of calls to the DLL, and (in some cases) +automatically determining the parameters, calling conventions, and +return values of the DLL functions. +.PP +Another use for this tool is to display (dump) information about a 32bit +DLL or PE format image file. When used in this way \fBwinedump\fR functions +similarly to tools such as pedump provided by many Win32 compiler +vendors. +.PP +Finally \fBwinedump\fR can be also used to demangle C++ symbols. +.SH MODES +.B winedump +can be used in several different modes. The first argument to the +program determines the mode \fBwinedump\fR will run in. +.IP \fB-h\fR +Help mode. +Basic usage help is printed. +.IP \fBdump\fR +To dump the contents of a file. +.IP \fBspec\fR +For generating .spec files and stub DLLs. +.IP \fBsym\fR +Symbol mode. +Used to demangle C++ symbols. +.SH OPTIONS +Mode options depend on the mode given as the first argument. +.PP +.B Help mode: +.nf +No options are used. +The program prints the help info and then exits. +.PP +.B Dump mode: +.IP \fIfile\fR +Dumps the contents of \fIfile\fR. Various file formats are supported +(PE, NE, LE, Minidumps, .lnk). +.IP \fB-C\fR +Turns on symbol demangling. +.IP \fB-f\fR +Dumps file header information. +This option dumps only the standard PE header structures, +along with the COFF sections available in the file. +.IP "\fB-j \fIdir_name\fR" +Dumps only the content of directory \fIdir_name\fR, for files +which header points to directories. +For PE files, currently the import, export, debug, resource, +tls and clr directories are implemented. +For NE files, currently the export and resource directories are +implemented. +.IP \fB-x\fR +Dumps everything. +This command prints all available information (including all +available directories - see \fB-j\fR option) about the file. You may +wish to pipe the output through \fBmore\fR/\fBless\fR or into a file, since +a lot of output will be produced. +.IP \fB-G\fR +Dumps contents of debug section if any (for now, only stabs +information is supported). +.PP +.B Spec mode: +.IP \fIdll\fR +Use \fIdll\fR for input file and generate implementation code. +.IP "\fB-I \fIdir\fR" +Look for prototypes in \fIdir\fR (implies \fB-c\fR). In the case of +Windows DLLs, this could be either the standard include +directory from your compiler, or a SDK include directory. +If you have a text document with prototypes (such as +documentation) that can be used also, however you may need +to delete some non-code lines to ensure that prototypes are +parsed correctly. +The \fIdir\fR argument can also be a file specification (e.g. +\fIinclude/*\fR). If it contains wildcards you must quote it to +prevent the shell from expanding it. +If you have no prototypes, specify \fI/dev/null\fR as \fIdir\fR. +\fBwinedump\fR may still be able to generate some working stub +code for you. +.IP \fB-c\fR +Generate skeleton code (requires \fB-I\fR). +This option tells \fBwinedump\fR to create function stubs for each +function in the DLL. As \fBwinedump\fR reads each exported symbol +from the source DLL, it first tries to demangle the name. If +the name is a C++ symbol, the arguments, class and return +value are all encoded into the symbol name. Winedump +converts this information into a C function prototype. If +this fails, the file(s) specified in the \fB-I\fR argument are +scanned for a function prototype. If one is found it is used +for the next step of the process, code generation. +.IP \fB-t\fR +TRACE arguments (implies \fB-c\fR). +This option produces the same code as \fB-c\fR, except that +arguments are printed out when the function is called. +Structs that are passed by value are printed as "struct", +and functions that take variable argument lists print "...". +.IP "\fB-f \fIdll\fR" +Forward calls to \fIdll\fR (implies \fB-t\fR). +This is the most complicated level of code generation. The +same code is generated as \fB-t\fR, however support is added for +forwarding calls to another DLL. The DLL to forward to is +given as \fIdll\fR. +.IP \fB-D\fR +Generate documentation. +By default, \fBwinedump\fR generates a standard comment at the +header of each function it generates. Passing this option +makes \fBwinedump\fR output a full header template for standard +Wine documentation, listing the parameters and return value +of the function. +.IP "\fB-o \fIname\fR" +Set the output dll name (default: \fBdll\fR). +By default, if \fBwinedump\fR is run on DLL \fIfoo\fR, it creates +files \fIfoo.spec\fR, \fIfoo_main.c\fR etc, and prefixes any +functions generated with \fIFOO_\fR. If \fB-o \fIbar\fR is given, +these will become \fIbar.spec\fR, \fIbar_main.c\fR and \fIBAR_\fR +respectively. +This option is mostly useful when generating a forwarding DLL. +.IP \fB-C\fR +Assume __cdecl calls (default: __stdcall). +If winebuild cannot determine the calling convention, +__stdcall is used by default, unless this option has +been given. +Unless \fB-q\fR is given, a warning will be printed for every +function that \fBwinedump\fR determines the calling convention +for and which does not match the assumed calling convention. +.IP "\fB-s \fInum\fR" +Start prototype search after symbol \fInum\fR. +.IP "\fB-e \fInum\fR" +End prototype search after symbol \fInum\fR. +By passing the \fB-s\fR or \fB-e\fR options you can have \fBwinedump\fR try to +generate code for only some functions in your DLL. This may +be used to generate a single function, for example, if you +wanted to add functionality to an existing DLL. +.IP "\fB-S \fIsymfile\fR" +Search only prototype names found in \fIsymfile\fR. +If you want to only generate code for a subset of exported +functions from your source DLL, you can use this option to +provide a text file containing the names of the symbols to +extract, one per line. Only the symbols present in this file +will be used in your output DLL. +.IP \fB-q\fR +Don't show progress (quiet). +No output is printed unless a fatal error is encountered. +.IP \fB-v\fR +Show lots of detail while working (verbose). +There are 3 levels of output while \fBwinedump\fR is running. The +default level, when neither \fB-q\fR or \fB-v\fR are given, prints the +number of exported functions found in the dll, followed by +the name of each function as it is processed, and a status +indication of whether it was processed OK. With \fB-v\fR given, a +lot of information is dumped while \fBwinedump\fR works: this is +intended to help debug any problems. +.PP +.B Sym mode: +.IP \fIsym\fR +Demangles C++ symbol \fIsym\fR and then exits. +.SH FILES +.I function_grep.pl +.RS +Perl script used to retrieve a function prototype. +.RE +.PP +Files output in +.BR spec " mode" +for +.IR foo.dll : +.nf +.I foo.spec +.RS +This is the \fI.spec\fR file. +.RE +.I foo_dll.h +.nf +.I foo_main.c +.RS +These are the source code files containing the minimum set +of code to build a stub DLL. The C file contains one +function, \fIFOO_Init\fR, which does nothing (but must be +present). +.RE +.I Makefile.in +.RS +This is a template for \fBconfigure\fR to produce a makefile. It +is designed for a DLL that will be inserted into the Wine +source tree. +.SH BUGS +C++ name demangling is not fully in sync with the implementation in msvcrt. +It might be useful to submit your C++ name to the testsuite for msvcrt. +.PP +Bugs can be reported on the +.UR https://bugs.winehq.org +.B Wine bug tracker +.UE . +.SH AUTHORS +Jon P. Griffiths +.nf +Michael Stefaniuc +.SH AVAILABILITY +.B winedump +is part of the Wine distribution, which is available through WineHQ, +the +.UR https://www.winehq.org/ +.B Wine development headquarters +.UE . +.SH "SEE ALSO" +.BR wine (1) +.br +.UR https://www.winehq.org/help +.B Wine documentation and support +.UE . diff --git a/share/man/man1/winefile.1 b/share/man/man1/winefile.1 new file mode 100644 index 0000000..6de49fb --- /dev/null +++ b/share/man/man1/winefile.1 @@ -0,0 +1,33 @@ +.TH WINEFILE 1 "November 2010" "Wine 4.6" "Wine Programs" +.SH NAME +winefile \- Wine File Manager +.SH SYNOPSIS +.BI winefile " path" +.SH DESCRIPTION +.B winefile +is the Wine file manager, with a similar design to early Microsoft Windows explorer. +.SH USAGE +You can pass winefile either a Unix or Win32 path, for example: + +.RB "Using a Unix path: " "winefile /mnt/hda1" + +.RB "Using a Win32 path: " "winefile C:\(rs\(rswindows\(rs\(rs\" + +.SH BUGS +Bugs can be reported on the +.UR https://bugs.winehq.org +.B Wine bug tracker +.UE . +.SH AVAILABILITY +.B winefile +is part of the Wine distribution, which is available through WineHQ, +the +.UR https://www.winehq.org/ +.B Wine development headquarters +.UE . +.SH "SEE ALSO" +.BR wine (1), +.br +.UR https://www.winehq.org/help +.B Wine documentation and support +.UE . diff --git a/share/man/man1/wineg++.1 b/share/man/man1/wineg++.1 new file mode 120000 index 0000000..98b0f73 --- /dev/null +++ b/share/man/man1/wineg++.1 @@ -0,0 +1 @@ +winegcc.1 \ No newline at end of file diff --git a/share/man/man1/winegcc.1 b/share/man/man1/winegcc.1 new file mode 100644 index 0000000..751ac45 --- /dev/null +++ b/share/man/man1/winegcc.1 @@ -0,0 +1,111 @@ +.TH WINEGCC 1 "October 2005" "Wine 4.6" "Wine Developers Manual" +.SH NAME +winegcc \- Wine C and C++ MinGW Compatible Compiler +.SH SYNOPSIS +.B winegcc +.RI [ options "] " infile\fR... +.SH DESCRIPTION +.B winegcc +is a gcc wrapper which tries to provide a MinGW compatible compiler +under Linux. This is most useful to Win32 developers who can simply +take their MinGW code from Windows, and recompile it without +modifications under Winelib on Linux. +wineg++ accepts mostly the same options as winegcc. +.PP +The goal of winegcc is to be able to simply replace gcc/g++/windres +with winegcc/wineg++/wrc in a MinGW Makefile, and just recompile +the application using Winelib under Wine. While typically there are +small adjustments that must be made to the application source code +and/or Makefile, it is quite easy to do them in a fashion that is +compatible between the MinGW and Wine environments. +.PP +This manual will document only the differences from gcc; please consult +the gcc manual for more information on those options. +.PP +.SH OPTIONS +.B gcc options: +All gcc options are supported, and are passed along to the backend +compiler. +.IP "\fB-B\fIprefix\fR" +This option specifies where to find the executables, libraries, +include files, and data files of the compiler itself. This is a +standard gcc option that has been extended to recognize a +\fIprefix\fR ending with '/tools/winebuild', in which case winegcc +enters a special mode for building Wine itself. Developers should +avoid prefixes ending with the magic suffix, or if that is not +possible, simply express it differently, such as '/tools/winebuild/', +to avoid the special behaviour. +.IP \fB-fno-short-wchar\fR +Override the underlying type for wchar_t to be the default for the +target, instead of using short unsigned int, which is the default +for Win32. +.IP \fB-mconsole\fR +This option passes '--subsystem console' to winebuild, to build +console applications. It is the default. +.IP \fB-mno-cygwin\fR +Use Wine implementation of MSVCRT, instead of linking against +the host system libc. This is necessary for the vast majority +of Win32 applications, as they typically depend on various features +of MSVCRT. This switch is also used by the MinGW compiler to link +against MSVCRT on Windows, instead of linking against Cygwin +libc. Sharing the syntax with MinGW makes it very easy to write +Makefiles that work under Wine, MinGW+MSYS, or MinGW+Cygwin. +.IP \fB-municode\fR +Set the default entry point of the application to be the Unicode +\fBwmain()\fR instead of the standard \fBmain()\fR. +.IP \fB-mwindows\fR +This option adds -lgdi32, -lcomdlg32, and -lshell32 to the list of +default libraries, and passes '--subsystem windows' to winebuild +to build graphical applications. +.IP \fB-nodefaultlibs\fR +Do not use the standard system libraries when linking. These +include at a minimum -lkernel32, -luser32, -ladvapi32, and +any default libraries used by the backend compiler. The -mwindows +option augments the list of default libraries as described above. +.IP \fB-nostartfiles\fR +Do not add the winecrt0 library when linking. +.IP \fB-Wb,\fIoption\fR +Pass an option to winebuild. If \fIoption\fR contains +commas, it is split into multiple options at the commas. +.SH ENVIRONMENT +.TP +.B WINEBUILD +Specifies the path and name of the \fBwinebuild\fR binary that will be +launched automatically by \fBwinegcc\fR. +If not set, \fBwinegcc\fR will look for a file named \fIwinebuild\fR +in the path. +.SH DEFINES +winegcc defines __WINE__, for code that needs to know when it is +being compiled under Wine. It also defines WIN32, _WIN32, __WIN32, +__WIN32__, __WINNT, and __WINNT__ for compatibility with MinGW. +.SH BUGS +The dllimport/dllexport attributes are not supported at the moment, +due to lack of support for these features in the ELF version of gcc. +.PP +Static linking is not currently supported against Wine DLLs. As a +result, the -static, --static, and -Wl,-static options will generate +an error. +.PP +Bugs can be reported on the +.UR https://bugs.winehq.org +.B Wine bug tracker +.UE . +.SH AUTHORS +.B winegcc +was written by Dimitrie O. Paun. +.SH AVAILABILITY +.B winegcc +is part of the Wine distribution, which is available through WineHQ, +the +.UR https://www.winehq.org/ +.B Wine development headquarters +.UE . +.SH "SEE ALSO" +.BR gcc (1), +.BR winebuild (1), +.BR wrc (1), +.BR wine (1), +.br +.UR https://www.winehq.org/help +.B Wine documentation and support +.UE . diff --git a/share/man/man1/winemaker.1 b/share/man/man1/winemaker.1 new file mode 100644 index 0000000..c3b964d --- /dev/null +++ b/share/man/man1/winemaker.1 @@ -0,0 +1,249 @@ +.TH WINEMAKER 1 "Jan 2012" "Wine 4.6" "Wine Developers Manual" +.SH NAME +winemaker \- generate a build infrastructure for compiling Windows programs on Unix +.SH SYNOPSIS +.B "winemaker " +[ +.BR "--nobanner " "] [ " "--backup " "| " "--nobackup " "] [ "--nosource-fix " +] +.br + [ +.BR "--lower-none " "| " "--lower-all " "| " "--lower-uppercase " +] +.br + [ +.BR "--lower-include " "| " "--nolower-include " ]\ [ " --mfc " "| " "--nomfc " +] +.br + [ +.BR "--guiexe " "| " "--windows " "| " "--cuiexe " "| " "--console " "| " "--dll " "| " "--lib " +] +.br + [ +.BI "-D" macro "\fR[=\fIdefn\fR] ] [" "\ " "-I" "dir\fR ]\ [ " "-P" "dir\fR ] [ " "-i" "dll\fR ] [ " "-L" "dir\fR ] [ " "-l" "library " +] +.br + [ +.BR "--nodlls " "] [ " "--nomsvcrt " "] [ " "--interactive " "] [ " "--single-target \fIname\fR " +] +.br + [ +.BR "--generated-files " "] [ " "--nogenerated-files " "] +.br + [ +.BR "--wine32 " "] +.br +.IR " work_directory" " | " "project_file" " | " "workspace_file" + +.SH DESCRIPTION +.PP +.B winemaker +is a perl script designed to help you bootstrap the +process of converting your Windows sources to Winelib programs. +.PP +In order to do this \fBwinemaker\fR can perform the following operations: +.PP +- rename your source files and directories to lowercase in the event they +got all uppercased during the transfer. +.PP +- perform DOS to Unix (CRLF to LF) conversions. +.PP +- scan the include statements and resource file references to replace the +backslashes with forward slashes. +.PP +- during the above step \fBwinemaker\fR will also perform a case insensitive search +of the referenced file in the include path and rewrite the include statement +with the right case if necessary. +.PP +- \fBwinemaker\fR will also check other more exotic issues like \fI#pragma pack\fR +usage, use of \fIafxres.h\fR in non MFC projects, and more. Whenever it +encounters something out of the ordinary, it will warn you about it. +.PP +- \fBwinemaker\fR can also scan a complete directory tree at once, guess what are +the executables and libraries you are trying to build, match them with +source files, and generate the corresponding \fIMakefile\fR. +.PP +- finally \fBwinemaker\fR will generate a global \fIMakefile\fR for normal use. +.PP +- \fBwinemaker\fR knows about MFC-based project and will generate customized files. +.PP +- \fBwinemaker\fR can read existing project files. It supports dsp, dsw, vcproj and sln files. +.PP +.SH OPTIONS +.TP +.B --nobanner +Disable the printing of the banner. +.TP +.B --backup +Perform a backup of all the modified source files. This is the default. +.TP +.B --nobackup +Do not backup modified source files. +.TP +.B --nosource-fix +Do no try to fix the source files (e.g. DOS to Unix +conversion). This prevents complaints if the files are readonly. +.TP +.B --lower-all +Rename all files and directories to lowercase. +.TP +.B --lower-uppercase +Only rename files and directories that have an all uppercase name. +So \fIHELLO.C\fR would be renamed but not \fIWorld.c\fR. +.TP +.B --lower-none +Do not rename files and directories to lower case. Note +that this does not prevent the renaming of a file if its extension cannot +be handled as is, e.g. ".Cxx". This is the default. +.TP +.B --lower-include +When the file corresponding to an include statement (or other form of file reference +for resource files) cannot be found, convert that filename to lowercase. This is the default. +.TP +.B --nolower-include +Do not modify the include statement if the referenced file cannot be found. +.TP +.BR "--guiexe " "| " "--windows" +Assume a graphical application when an executable target or a target of +unknown type is found. This is the default. +.TP +.BR "--cuiexe " "| " "--console" +Assume a console application when an executable target or a target of +unknown type is found. +.TP +.B --dll +Assume a dll when a target of unknown type is found, i.e. when \fBwinemaker\fR is unable to +determine whether it is an executable, a dll, or a static library, +.TP +.B --lib +Assume a static library when a target of unknown type is found, i.e. when \fBwinemaker\fR is +unable to determine whether it is an executable, a dll, or a static library, +.TP +.B --mfc +Specify that the targets are MFC based. In such a case \fBwinemaker\fR adapts +the include and library paths accordingly, and links the target with the +MFC library. +.TP +.B --nomfc +Specify that targets are not MFC-based. This option disables use of MFC libraries +even if \fBwinemaker\fR encounters files \fIstdafx.cpp\fR or \fIstdafx.h\fR that would cause it +to enable MFC automatically if neither \fB--nomfc\fR nor \fB--mfc\fR was specified. +.TP +.BI -D macro "\fR[\fB=\fIdefn\fR]" +Add the specified macro definition to the global list of macro definitions. +.TP +.BI -I dir +Append the specified directory to the global include path. +.TP +.BI -P dir +Append the specified directory to the global dll path. +.TP +.BI -i dll +Add the Winelib library to the global list of Winelib libraries to import. +.TP +.BI -L dir +Append the specified directory to the global library path. +.TP +.BI -l library +Add the specified library to the global list of libraries to link with. +.TP +.B --nodlls +Do not use the standard set of Winelib libraries for imports. +That is, any DLL your code uses must be explicitly passed with \fB-i\fR options. +The standard set of libraries is: \fIodbc32.dll\fR, \fIodbccp32.dll\fR, \fIole32.dll\fR, +\fIoleaut32.dll\fR and \fIwinspool.drv\fR. +.TP +.B --nomsvcrt +Set some options to tell \fBwinegcc\fR not to compile against msvcrt. +Use this option if you have cpp-files that include \fI\fR. +.TP +.B --interactive +Use interactive mode. In this mode \fBwinemaker\fR will ask you to +confirm the list of targets for each directory, and then to provide directory and +target specific options. +.TP +.BI --single-target " name" +Specify that there is only one target, called \fIname\fR. +.TP +.B --generated-files +Generate the \fIMakefile\fR. This is the default. +.TP +.B --nogenerated-files +Do not generate the \fIMakefile\fR. +.TP +.B --wine32 +Generate a 32-bit target. This is useful on wow64 systems. +Without that option the default architecture is used. + +.SH EXAMPLES +.PP +Here is a typical \fBwinemaker\fR use: +.PP +$ winemaker --lower-uppercase -DSTRICT . +.PP +The above tells \fBwinemaker\fR to scan the current directory and its +subdirectories for source files. Whenever if finds a file or directory which +name is all uppercase, it should rename it to lowercase. It should then fix +all these source files for compilation with Winelib and generate \fIMakefile\fRs. +The \fB-DSTRICT\fR specifies that the \fBSTRICT\fR macro must be set when compiling +these sources. Finally a \fIMakefile\fR will be created. +.PP +The next step would be: +.PP +$ make +.PP +If at this point you get compilation errors (which is quite likely for a +reasonably sized project) then you should consult the Winelib User Guide to +find tips on how to resolve them. +.PP +For an MFC-based project you would have to run the following commands instead: +.PP +$ winemaker --lower-uppercase --mfc . +.br +$ make +.PP +For an existing project-file you would have to run the following commands: +.PP +$ winemaker myproject.dsp +.br +$ make +.PP + +.SH TODO / BUGS +In some cases you will have to edit the \fIMakefile\fR or source files manually. +.PP +Assuming that the windows executable/library is available, we could +use \fBwinedump\fR to determine what kind of executable it is (graphical +or console), which libraries it is linked with, and which functions it +exports (for libraries). We could then restore all these settings for the +corresponding Winelib target. +.PP +Furthermore \fBwinemaker\fR is not very good at finding the library containing the +executable: it must either be in the current directory or in the +.BR LD_LIBRARY_PATH . +.PP +\fBwinemaker\fR does not support message files and the message compiler yet. +.PP +Bugs can be reported on the +.UR https://bugs.winehq.org +.B Wine bug tracker +.UE . +.SH AUTHORS +François Gouget for CodeWeavers +.br +Dimitrie O. Paun +.br +André Hentschel +.SH AVAILABILITY +.B winemaker +is part of the Wine distribution, which is available through WineHQ, +the +.UR https://www.winehq.org/ +.B Wine development headquarters +.UE . +.SH SEE ALSO +.BR wine (1), +.br +.UR https://www.winehq.org/help +.B Wine documentation and support +.UE . diff --git a/share/man/man1/winemine.1 b/share/man/man1/winemine.1 new file mode 100644 index 0000000..a67060a --- /dev/null +++ b/share/man/man1/winemine.1 @@ -0,0 +1,27 @@ +.TH WINEMINE 1 "November 2010" "Wine 4.6" "Wine Programs" +.SH NAME +winemine \- Wine Minesweeper game +.SH SYNOPSIS +.BR winemine +.SH DESCRIPTION +.B winemine +is the Wine Minesweeper game. The object of the game is to try to find all the hidden mines by +uncovering the tiles to see how many mines each tile is adjacent to, without uncovering a mine. +.SH BUGS +Bugs can be reported on the +.UR https://bugs.winehq.org +.B Wine bug tracker +.UE . +.SH AVAILABILITY +.B winemine +is part of the Wine distribution, which is available through WineHQ, +the +.UR https://www.winehq.org/ +.B Wine development headquarters +.UE . +.SH "SEE ALSO" +.BR wine (1), +.br +.UR https://www.winehq.org/help +.B Wine documentation and support +.UE . diff --git a/share/man/man1/winepath.1 b/share/man/man1/winepath.1 new file mode 100644 index 0000000..17b5865 --- /dev/null +++ b/share/man/man1/winepath.1 @@ -0,0 +1,49 @@ +.TH WINEPATH 1 "November 2010" "Wine 4.6" "Wine Programs" +.SH NAME +winepath \- Tool to convert Unix paths to/from Win32 paths +.SH SYNOPSIS +.B winepath +.IR "option " { path } +.SH DESCRIPTION +.B winepath +is a tool to convert a Unix path to/from a Win32 (short/long) path +compatible with its Microsoft Windows counterpart. + +If more than one option is given then the input paths are output in +all formats specified, in the order long, short, Unix, Windows. +If no option is given the default output is Unix format. +.SH OPTIONS +.IP \fB\-u\fR,\fB\ \-\-unix +converts a Windows path to a Unix path. +.IP \fB\-w\fR,\fB\ \-\-windows +converts a Unix path to a long Windows path. +.IP \fB\-l\fR,\fB\ \-\-long +converts the short Windows path of an existing file or directory to the long +format. +.IP \fB\-s\fR,\fB\ \-\-short +converts the long Windows path of an existing file or directory to the short +format. +.IP \fB\-0 +separate output with \\0 character, instead of a newline. +.IP \fB\-h\fR,\fB\ \-\-help +shows winepath help message and exit. +.IP \fB\-v\fR,\fB\ \-\-version +shows version information and exit. +.SH BUGS +Bugs can be reported on the +.UR https://bugs.winehq.org +.B Wine bug tracker +.UE . +.SH AVAILABILITY +.B winepath +is part of the Wine distribution, which is available through WineHQ, +the +.UR https://www.winehq.org/ +.B Wine development headquarters +.UE . +.SH "SEE ALSO" +.BR wine (1), +.br +.UR https://www.winehq.org/help +.B Wine documentation and support +.UE . diff --git a/share/man/man1/wineserver.1 b/share/man/man1/wineserver.1 new file mode 100644 index 0000000..22f24d4 --- /dev/null +++ b/share/man/man1/wineserver.1 @@ -0,0 +1,116 @@ +.TH WINESERVER 1 "October 2005" "Wine 4.6" "Windows on Unix" +.SH NAME +wineserver \- the Wine server +.SH SYNOPSIS +.B wineserver +.RI [ options ] +.SH DESCRIPTION +.B wineserver +is a daemon process that provides to Wine roughly the same services +that the Windows kernel provides on Windows. +.PP +.B wineserver +is normally launched automatically when starting \fBwine\fR(1), so you +shouldn't have to worry about it. In some cases however, it can be +useful to start \fBwineserver\fR explicitly with different options, as +explained below. +.SH OPTIONS +.TP +\fB\-d\fR[\fIn\fR], \fB--debug\fR[\fB=\fIn\fR] +Set the debug level to +.IR n . +0 means no debugging information, 1 is the normal level, and 2 is for +extra verbose debugging. If +.I n +is not specified, the default is 1. The debug output will be sent to +stderr. \fBwine\fR(1) will automatically enable normal level debugging +when starting \fBwineserver\fR if the +server option is set in the +\fBWINEDEBUG\fR variable. +.TP +.BR \-f ", " --foreground +Make the server remain in the foreground for easier debugging, for +instance when running it under a debugger. +.TP +.BR \-h ", " --help +Display a help message. +.TP +\fB\-k\fR[\fIn\fR], \fB--kill\fR[\fB=\fIn\fR] +Kill the currently running +.BR wineserver , +optionally by sending signal \fIn\fR. If no signal is specified, sends +a \fBSIGINT\fR first and then a \fBSIGKILL\fR. The instance of \fBwineserver\fR +that is killed is selected based on the \fBWINEPREFIX\fR environment +variable. +.TP +\fB\-p\fR[\fIn\fR], \fB--persistent\fR[\fB=\fIn\fR] +Specify the \fBwineserver\fR persistence delay, i.e. the amount of +time that the server will keep running when all client processes have +terminated. This avoids the cost of shutting down and starting again +when programs are launched in quick succession. The timeout \fIn\fR is +in seconds, the default value is 3 seconds. If \fIn\fR is not +specified, the server stays around forever. +.TP +.BR \-v ", " --version +Display version information and exit. +.TP +.BR \-w ", " --wait +Wait until the currently running +.B wineserver +terminates. +.SH ENVIRONMENT +.TP +.B WINEPREFIX +If set, the content of this variable is taken as the name of the directory where +.B wineserver +stores its data (the default is \fI$HOME/.wine\fR). All +.B wine +processes using the same +.B wineserver +(i.e.: same user) share certain things like registry, shared memory +and kernel objects. +By setting +.B WINEPREFIX +to different values for different Wine processes, it is possible to +run a number of truly independent Wine sessions. +.TP +.B WINESERVER +Specifies the path and name of the +.B wineserver +binary that will be launched automatically by \fBwine\fR. If not set, +\fBwine\fR will try to load +.IR /home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wineserver , +and if this doesn't exist it will then look for a file named +\fIwineserver\fR in the path and in a few other likely locations. +.SH FILES +.TP +.B ~/.wine +Directory containing user specific data managed by +.BR wine . +.TP +.BI /tmp/.wine- uid +Directory containing the server Unix socket and the lock +file. These files are created in a subdirectory generated from the +\fBWINEPREFIX\fR directory device and inode numbers. +.SH AUTHORS +The original author of +.B wineserver +is Alexandre Julliard. Many other people have contributed new features +and bug fixes. For a complete list, see the git commit logs. +.SH BUGS +Bugs can be reported on the +.UR https://bugs.winehq.org +.B Wine bug tracker +.UE . +.SH AVAILABILITY +.B wineserver +is part of the Wine distribution, which is available through WineHQ, +the +.UR https://www.winehq.org/ +.B Wine development headquarters +.UE . +.SH "SEE ALSO" +.BR wine (1), +.br +.UR https://www.winehq.org/help +.B Wine documentation and support +.UE . diff --git a/share/man/man1/wmc.1 b/share/man/man1/wmc.1 new file mode 100644 index 0000000..3dcfe7c --- /dev/null +++ b/share/man/man1/wmc.1 @@ -0,0 +1,123 @@ +.TH WMC 1 "October 2005" "Wine 4.6" "Wine Developers Manual" +.SH NAME +wmc \- Wine Message Compiler +.SH SYNOPSIS +.B wmc +.RI [ options ]\ [ inputfile ] +.SH DESCRIPTION +.B wmc +compiles messages from +.B inputfile +into FormatMessage[AW] compatible format encapsulated in a resourcescript +format. +.B wmc +outputs the data either in a standard \fI.bin\fR formatted binary +file, or can generated inline resource data. +.PP +.B wmc +takes only one \fIinputfile\fR as argument (see \fBBUGS\fR). The +\fIinputfile\fR normally has extension \fI.mc\fR. The messages are read from +standard input if no inputfile is given. If the outputfile is not specified +with \fB-o\fR, then \fBwmc\fR will write the output to \fIinputfile.{rc,h}\fR. +The outputfile is named \fIwmc.tab.{rc,h}\fR if no inputfile was given. +.SH OPTIONS +.TP +.BI \-B\ x +Set output byte-order x={n[ative], l[ittle], b[ig]}. Default is n[ative]. +.TP +.B \-c +Set 'custom-bit' in message-code values. +.TP +.B \-d +NON-FUNCTIONAL; Use decimal values in output +.TP +.B \-D +Set debug flag. This results is a parser trace and a lot of extra messages. +.TP +.BR \-h ,\ \-\-help +Print an informative usage message and exits. +.TP +.BI \-H\ file +Write headerfile to \fIfile\fR. Default is \fIinputfile.h\fR. +.TP +.B \-i +Inline messagetable(s). This option skips the generation of all \fI.bin\fR files +and writes all output into the \fI.rc\fR file. This encoding is parsable with +wrc(1). +.TP +.BR \-o ,\ \-\-output =\fIfile +Output to \fIfile\fR. Default is \fIinputfile.rc\fR. +.TP +.BR \-O ,\ \-\-output\-format =\fIformat +Set the output format. Supported formats are \fBrc\fR (the default), +\fBres\fR, and \fBpot\fR. +.TP +.BR \-P ,\ \-\-po-dir =\fIdirectory +Enable the generation of resource translations based on po files +loaded from the specified directory. That directory must follow the +gettext convention, in particular in must contain one \fI.po\fR file for +each language, and a LINGUAS file listing the available languages. +.TP +.B \-u +Assume that the inputfile is in unicode. +.TP +.B \-U +Write resource output in unicode formatted messagetable(s). +.TP +.B \-v +Show all supported codepages and languages. +.TP +.BR \-V ,\ \-\-version +Print version end exit. +.TP +.BR \-W ,\ \-\-pedantic +Enable pedantic warnings. +.SH EXTENSIONS +The original syntax is extended to support codepages more smoothly. Normally, +codepages are based on the DOS codepage from the language setting. The +original syntax only allows the destination codepage to be set. However, this +is not enough for non\-DOS systems which do not use unicode source-files. +.PP +A new keyword \fBCodepages\fR is introduced to set both input and output +codepages to anything one wants for each language. The syntax is similar to +the other constructs: +.PP +Codepages '=' '(' language '=' cpin ':' cpout ... ')' +.PP +The \fIlanguage\fR is the numerical language\-ID or the alias set with +LanguageNames. The input codepage \fIcpin\fR and output codepage +\fIcpout\fR are the numerical codepage IDs. There can be multiple mappings +within the definition and the definition may occur more than once. +.SH AUTHORS +.B wmc +was written by Bertho A. Stultiens. +.SH BUGS +The message compiler should be able to have multiple input files and combine +them into one output file. This would enable the splitting of languages into +separate files. +.PP +Unicode detection of the input is suboptimal, to say the least. It should +recognize byte order marks (BOM) and decide what to do. +.PP +Decimal output is completely lacking. Don't know whether it should be +implemented because it is a, well, non-informative format change. It is +recognized on the commandline for some form of compatibility. +.PP +Bugs can be reported on the +.UR https://bugs.winehq.org +.B Wine bug tracker +.UE . +.SH AVAILABILITY +.B wmc +is part of the Wine distribution, which is available through WineHQ, +the +.UR https://www.winehq.org/ +.B Wine development headquarters +.UE . +.SH "SEE ALSO" +.BR wine (1), +.BR wrc (1), +.br +.UR https://www.winehq.org/help +.B Wine documentation and support +.UE . diff --git a/share/man/man1/wrc.1 b/share/man/man1/wrc.1 new file mode 100644 index 0000000..63b506f --- /dev/null +++ b/share/man/man1/wrc.1 @@ -0,0 +1,229 @@ +.TH WRC 1 "October 2005" "Wine 4.6" "Wine Developers Manual" +.SH NAME +wrc \- Wine Resource Compiler +.SH SYNOPSIS +.B wrc +.RI [ options ]\ [ inputfile ...] +.SH DESCRIPTION +.B wrc +compiles resources from \fIinputfile\fR +into win16 and win32 compatible binary format. +.PP +The source file is preprocessed with a builtin ANSI\-C compatible +preprocessor before the resources are compiled. See \fBPREPROCESSOR\fR +below. +.PP +.B wrc +takes a series of \fIinputfile\fR as argument. The resources are read from +standard input if no inputfile is given. If the output file is not +specified with \fB-o\fR, then \fBwrc\fR will write the output to +\fIinputfile.res\fR with \fI.rc\fR stripped, or to \fIwrc.tab.res\fR if +no inputfile was given. +.SH OPTIONS +.TP +.BI \-b,\ --target= cpu-manufacturer\fR[\fI\fB-\fIkernel\fR]\fB-\fIos +Specify the target CPU and platform on which the generated code will +be built. The target specification is in the standard autoconf format +as returned by \fBconfig.sub\fR. +.TP +.I \fB\-D\fR, \fB\-\-define\fR=\fIid\fR[\fB=\fIval\fR] +Define preprocessor identifier \fIid\fR to (optionally) value \fIval\fR. +See also +.B PREPROCESSOR +below. +.TP +.I \fB\-\-debug\fR=\fInn\fR +Set debug level to \fInn\fR. The value is a bitmask consisting of +1=verbose, 2=dump internals, 4=resource parser trace, 8=preprocessor +messages, 16=preprocessor scanner and 32=preprocessor parser trace. +.TP +.I \fB\-\-endianness\fR=\fIe\fR +Win32 only; set output byte\-ordering, where \fIe\fR is one of n[ative], +l[ittle] or b[ig]. Only resources in source-form can be reordered. Native +ordering depends on the system on which \fBwrc\fR was built. You can see +the native ordering by typing \fIwrc \-h\fR. +.TP +.I \fB\-E\fR +Preprocess only. The output is written to standard output if no +outputfile was selected. The output is compatible with what gcc would +generate. +.TP +.I \fB\-h\fR, \fB\-\-help\fR +Prints a summary message and exits. +.TP +.I \fB\-i\fR, \fB\-\-input\fR=\fIfile\fR +The name of the input file. If this option is not used, then \fBwrc\fR +will use the first non-option argument as the input file name. If there +are no non-option arguments, then \fBwrc\fR will read from standard input. +.TP +.I \fB\-I\fR, \fB\-\-include\-dir\fR=\fIpath\fR +Add \fIpath\fR to include search directories. \fIpath\fR may contain +multiple directories, separated with ':'. It is allowed to specify +\fB\-I\fR multiple times. Include files are searched in the order in +which the \fB\-I\fR options were specified. +.br +The search is compatible with gcc, in which '<>' quoted filenames are +searched exclusively via the \fB\-I\fR set path, whereas the '""' quoted +filenames are first tried to be opened in the current directory. Also +resource statements with file references are located in the same way. +.TP +.I \fB\-J\fR, \fB\-\-input\-format\fR=\fIformat\fR +Sets the input format. Valid options are 'rc' or 'rc16'. Setting the +input to 'rc16' disables the recognition of win32 keywords. +.TP +.I \fB\-l\fR, \fB\-\-language\fR=\fIlang\fR +Set default language to \fIlang\fR. Default is the neutral language 0 +(i.e. "LANGUAGE 0, 0"). +.TP +.B \-m16, -m32, -m64 +Generate resources for 16-bit, 32-bit or 64-bit platforms respectively. +The only difference between 32-bit and 64-bit is whether +the _WIN64 preprocessor symbol is defined. +.TP +.I \fB\-\-nostdinc\fR +Do not search the standard include path, look for include files only +in the directories explicitly specified with the \fB\-I\fR option. +.TP +.I \fB\-\-no\-use\-temp\-file\fR +Ignored for compatibility with \fIwindres\fR. +.TP +.I \fB\-o\fR, \fB\-fo\fR, \fB\-\-output\fR=\fIfile\fR +Write output to \fIfile\fR. Default is \fBinputfile.res\fR +with \fB.rc\fR stripped or \fBwrc.tab.res\fR if input is read +from standard input. +.TP +.I \fB\-O\fR, \fB\-\-output\-format\fR=\fIformat\fR +Sets the output format. The supported formats are \fBpo\fR, \fBpot\fR, +\fBres\fR, and \fBres16\fR. If this option is not specified, the +format defaults to \fBres\fR. +.br +In \fBpo\fR mode, if an output file name is specified it must match a +known language name, like \fBen_US.po\fR; only resources for the +specified language are output. If no output file name is specified, a +separate \fI.po\fR file is created for every language encountered in the +input. +.TP +.I \fB\-\-pedantic\fR +Enable pedantic warnings. Notably redefinition of #define statements can +be discovered with this option. +.TP +.I \fB\-\-po-dir=\fIdir\fR +Enable the generation of resource translations based on mo files +loaded from the specified directory. That directory must follow the +gettext convention, in particular it must contain one \fI.mo\fR file for +each language, and a LINGUAS file listing the available languages. +.TP +.I \fB\-r\fR +Ignored for compatibility with \fIrc\fR. +.TP +.I \fB\-\-preprocessor\fR=\fIprogram\fR +This option may be used to specify the preprocessor to use, including any +leading arguments. If not specified, \fBwrc\fR uses its builtin processor. +To disable preprocessing, use \fB--preprocessor=cat\fR. +.TP +.I \fB\-U\fR, \fB\-\-undefine\fR=\fIid\fR +Undefine preprocessor identifier \fIid\fR. Please note that only macros +defined up to this point are undefined by this command. However, these +include the special macros defined automatically by \fIwrc\fR. +See also +.B PREPROCESSOR +below. +.TP +.I \fB\-\-use\-temp\-file\fR +Ignored for compatibility with \fIwindres\fR. +.TP +.I \fB\-v\fR, \fB\-\-verbose\fR +Turns on verbose mode (equivalent to \fB-d 1\fR). +.TP +.I \fB\-\-version\fR +Print version and exit. +.SH PREPROCESSOR +The preprocessor is ANSI\-C compatible with some of the extensions of +the gcc preprocessor. +.PP +The preprocessor recognizes these directives: #include, #define (both +simple and macro), #undef, #if, #ifdef, #ifndef, #elif, #else, #endif, +#error, #warning, #line, # (both null\- and line\-directive), #pragma +(ignored), #ident (ignored). +.PP +The preprocessor sets by default several defines: +.br +RC_INVOKED set to 1 +.br +__WRC__ Major version of wrc +.br +__WRC_MINOR__ Minor version of wrc +.br +__WRC_PATCHLEVEL__ Patch level +.PP +Win32 compilation mode also sets _WIN32 to 1. +.PP +Special macros __FILE__, __LINE__, __TIME__ and __DATE__ are also +recognized and expand to their respective equivalent. +.SH "LANGUAGE SUPPORT" +Language, version and characteristics can be bound to all resource types that +have inline data, such as RCDATA. This is an extension to Microsoft's resource +compiler, which lacks this support completely. Only VERSIONINFO cannot have +version and characteristics attached, but languages are propagated properly if +you declare it correctly before the VERSIONINFO resource starts. +.PP +Example: +.PP +1 RCDATA DISCARDABLE +.br +LANGUAGE 1, 0 +.br +VERSION 312 +.br +CHARACTERISTICS 876 +.br +{ +.br + 1, 2, 3, 4, 5, "and whatever more data you want" +.br + '00 01 02 03 04 05 06 07 08' +.br +} +.SH AUTHORS +.B wrc +was written by Bertho A. Stultiens and is a nearly complete rewrite of +the first wine resource compiler (1994) by Martin von Loewis. +Additional resource\-types were contributed by Ulrich Czekalla and Albert +den Haan. Many cleanups by Dimitrie O. Paun in 2002-2003. +Bugfixes have been contributed by many Wine developers. +.SH BUGS +\- The preprocessor recognizes variable argument macros, but does not +expand them correctly. +.br +\- Error reporting should be more precise, as currently the column and +line number reported are those of the next token. +.br +\- Default memory options should differ between win16 and win32. +.PP +There is no support for: +.br +\- RT_DLGINCLUDE, RT_VXD, RT_PLUGPLAY and RT_HTML (unknown format) +.br +\- PUSHBOX control is unsupported due to lack of original functionality. +.PP +Fonts are parsed and generated, but there is no support for the +generation of the FONTDIR yet. The user must supply the FONTDIR +resource in the source to match the FONT resources. +.PP +Bugs can be reported on the +.UR https://bugs.winehq.org +.B Wine bug tracker +.UE . +.SH AVAILABILITY +.B wrc +is part of the Wine distribution, which is available through WineHQ, +the +.UR https://www.winehq.org/ +.B Wine development headquarters +.UE . +.SH "SEE ALSO" +.BR wine (1), +.br +.UR https://www.winehq.org/help +.B Wine documentation and support +.UE . diff --git a/share/man/pl.UTF-8/man1/wine.1 b/share/man/pl.UTF-8/man1/wine.1 new file mode 100644 index 0000000..1754a24 --- /dev/null +++ b/share/man/pl.UTF-8/man1/wine.1 @@ -0,0 +1,326 @@ +.\" -*- nroff -*- +.TH WINE 1 "October 2005" "Wine 4.6" "Windows On Unix" +.SH NAZWA +wine \- uruchamiaj programy Windowsowe na Uniksie +.SH SKŁADNIA +.BI "wine " program +[opcje ... ] +.br +.B wine --help +.br +.B wine --version +.PP +Informacji na temat przekazywania opcji programom Windowsowym szukaj w rozdziale +.B +OPCJE +tej instrukcji. +.SH OPIS +.B wine +ładuje i wykonuje dany program, gdzie program to plik wykonywalny DOSa, Windowsa +3.x lub Win32 (tylko binarne x86). +.PP +Do debugowania wine lepiej jednak użyć +.B winedbg +.PP +Do uruchamiania plików wykonywalnych CUI (programy konsolowe Windowsa) używaj +.B wineconsole +zamiast +.BR wine . +Spowoduje to, że całe wyjście zostanie pokazane w osobnym oknie (wymaganiem jest uruchomiony X11). +Przez nie użycie +.B wineconsole +do programów CUI otrzymasz ograniczone wsparcie dla konsoli +,a twój program może nie zadziałać prawidłowo. +.PP +Gdy wywołasz wine z +.B --help +lub +.B --version +jako jedyną opcją, +.B wine +pokaże małą informację pomocy lub odpowiednio wyświetli swoją wersję i zakończy działanie. +.SH OPCJE +Nazwa programu może być określona w formacie DOS +.RI ( C:\(rs\(rsWINDOWS\(rs\(rsSOL.EXE ) +lub w formacie Unix +.RI ( /msdos/windows/sol.exe ). +Możesz dodać opcje do wykonywanego programu przez dodanie ich do +końca wywołania linii wiersza poleceń +.B wine +(tak jak np.: wine notepad C:\(rs\(rsTEMP\(rs\(rsREADME.TXT). +Zauważ, że musisz '\(rs' poradzić sobie ze znakami specjalnymi (i spacjami) podczas wywoływania Wine przez +powłokę, np. +.PP +wine C:\(rs\(rsProgram\(rs Files\(rs\(rsMyPrg\(rs\(rstest.exe +.PP +.SH ZMIENNE ŚRODOWISKOWE +.B wine +udostępnia zmienne środowiskowe z powłoki, z której wystartował +.B wine +programom windowsowym/dosowym, więc używaj odpowiedniej składni +twojej powłoki, aby wpisać zmienne środowiskowe, których potrzebujesz. +.TP +.I WINEPREFIX +Jeżeli ta zmienna jest ustawiona, to jej zawartość jest brana jako nazwa katalogu gdzie +.B wine +przechowuje swoje dane (domyślny katalog to +.IR $HOME/.wine ). +Katalog ten jest także wykorzystywany do identyfikacji gniazda używanego do +porozumiewania się z +.IR wineserver . +Wszystkie procesy +.B wine +używające tego samego +.B wineserver +(np.: ten sam użytkownik) dzielą pewne elementy takie jak rejrestr, współdzielona pamięć, +i plik konfiguracyjny. +Poprzez ustawianie +.I WINEPREFIX +na inne wartości dla różnych procesów +.B wine +jest możliwe uruchamianie kilka prawdziwie niezależnych procesów +.BR wine . +.TP +.I WINESERVER +Określa ścieżkę i nazwę programu binarnego +.B wineserver +Jeżeli nie ustawione, Wine będzie próbował załadować +.BR /home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wineserver +i jeśli zakończy się to niepowodzeniem to będzie szukał pliku o nazwie +"wineserver" w podanej ścieżce i kilku innych miejscach prawdopodobnego występowania. +.TP +.I WINELOADER +Określa ścieżkę i nazwę programu binarnego +.B wine +używanej do uruchamiania nowych procesów Windowsowych. Jeżeli nieustawione, Wine będzie +próbowało załadować +.BR /home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine +i jeśli zakończy się to niepowodzeniem to będzie szukał pliku o nazwie "wine" w +podanej ścieżce i kilku innych miejscach prawdopodobnego występowania. +.TP +.I WINEDEBUG +Włącza lub wyłącza wiadomości debuggera. Składnia zmiennej +wygląda następująco +.RI [ klasa ][+/-] kanał [,[ klasa2 ][+/-] kanał2 ]. +.RS +7 +.PP +.I klasa +jest opcjonalna i może być jedną z następujących: +.BR err , +.BR warn , +.BR fixme , +lub +.BR trace . +Jeżeli +.I klasa +nie jest określona, to wszystkie wiadomości debuggera dla określonego +kanału są wyłączone. Każdy kanał będzie wyświetlał wiadomości o poszczególnym +komponencie +.BR wine . +Następny znak może być albo + albo - i służy odpowiednio do włączenia albo wyłączenia +określonego kanału. Jeżeli nie ma części +.I klasa +przed nim, to znak znaczący + może być pominięty. Zauważ, że spacje są niedozwolone +w żadnym miejscu łańcucha znaków. +.PP +Przykłady: +.TP +WINEDEBUG=warn+all +włączy wszystkie ostrzeżenia (zalecane przy debugowaniu). +.br +.TP +WINEDEBUG=warn+dll,+heap +włączy wszystkie ostrzeżenia bibliotek DLL i wszystkie wiadomości stosu. +.br +.TP +WINEDEBUG=fixme-all,warn+cursor,+relay +wyłączy wszystkie wiadomości FIXME, włączy ostrzeżenia kursora i +wszystkie wiadomości relay (wywołania API). +.br +.TP +WINEDEBUG=relay +włączy wszystkie wiadomości relay. Aby mieć większą kontrolę przy uwzględnianiu i wykluczaniu +funkcji i bibliotek dll ze śladu relay, zapoznaj się z kluczem rejestru +.B HKEY_CURRENT_USER\\\\Software\\\\Wine\\\\Debug +.PP +Informacji na temat wiadomości debugera szukaj w rozdziale +.I Running Wine +z Przewodnika użytkownika Wine. +.RE +.TP +.I WINEDLLPATH +Określa ścieżkę/ki, w których należy szukać wbudowanych bibliotek dll i programów +Winelib. To lista katalogów oddzielonych znakiem ":". W dodatku do +każdego katalogu określonego w +.IR WINEDLLPATH , +Wine będzie także szukał w katalogu +.BR /home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/lib/wine . +.TP +.I WINEDLLOVERRIDES +Definiuje typ nadpisania i kolejność ładowania bibliotek dll użytych do ładowania +procesu dla jakiejkolwiek biblioteki dll. Obecnie istnieją dwa typy bibliotek, które można załadować +do przestrzeni adresowej procesu: natywne biblioteki Windowsa +.RI ( native ), +.B wine +wewnętrzne biblioteki dll +.RI ( builtin ). +Typ może być skrócony przez pierwszą literkę typu +.RI ( n ", " b ). +Biblioteka może być także całkowicie wyłączona (''). Każda sekwencja rozkazów musi być oddzielona przecinkami. +.RS +.PP +Każda biblioteka dll może mieć swoją własną kolejność ładowania. Kolejność ładowania +określa, którą wersję biblioteki dll będzie się próbowało załadować do +przestrzeni adresowej. Jeżeli pierwsza zawiedzie, to próbowana jest następna i tak dalej. +Wiele bibliotek z tą samą kolejnością ładowania może być oddzielona przecinkami. +Istnieje także możliwość określenia różnych kolejności ładowania dla różnych bibliotek +przez oddzielanie wpisów znakiem ";". +.PP +Kolejność ładowania dla 16-bitowej biblioteki dll jest zawsze określona przez kolejność ładowania +32-bitowej biblioteki dll, która ją zawiera (co może być rozpoznane przez podgląd +symbolicznych dowiązań 16-bitowego pliku .dll.so). Dla przykładu jeżeli biblioteka +ole32.dll jest skonfigurowana jako wbudowana, to biblioteka storage.dll będzie również zładowana jako +wbudowana, ponieważ 32-bitowa biblioteka ole32.dll zawiera 16-bitową bibliotekę +storage.dll. +.PP +Przykłady: +.TP +WINEDLLOVERRIDES="comdlg32,shell32=n,b" +.br +Spróbuj załadować comdlg32 i shell32 jako natywne biblioteki windowsowe i powróć +do wersji wbudowanych jeżeli natywne zawiodą. +.TP +WINEDLLOVERRIDES="comdlg32,shell32=n;c:\(rs\(rsfoo\(rs\(rsbar\(rs\(rsbaz=b" +.br +Spróbuj załadować comdlg32 i shell32 jako natywne biblioteki windowsowe. Dodatkowo, jeżeli +program zażąda załadowania c:\(rsfoo\(rsbar\(rsbaz.dll to załaduj wbudowaną bibliotekę rsbaz. +.TP +WINEDLLOVERRIDES="comdlg32=b,n;shell32=b;comctl32=n;oleaut32=" +.br +Najpierw spróbuj załadować comdlg32 jako wbudowaną i skorzystaj z wersji natywnej jeżeli +wbudowane zawiodą; zawsze ładuj shell32 jako wbudowaną i comctl32 +jako natywną. Oleaut32 pozostaw wyłączone. +.RE +.TP +.I WINEARCH +Określa jaką architekturę Windowsa wspierać. Może to być zarówno +.B win32 +(wsparcie tylko 32-bitowych programów), lub +.B win64 +(wsparcie dla programów 64-bitowych jak i 32-bitowych w trybie WoW64). +.br +Architektura wspierana przez dany prefiks Wine jest ustawiana już w momencie tworzenia prefiksa +i nie może być później zmieniona. Gdy opcja zostanie uruchomiona z istniejącym +prefiksem, Wine odmówi uruchomienie jeżeli +.I WINEARCH +nie zgadza się z architekturą prefiksu. +.TP +.I DISPLAY +Określa, którego wyświetlacza X11 użyć. +.TP +Zmienne konfiguracyjne sterownika dźwięku OSS +.TP +.I AUDIODEV +Ustaw urządzenie dla wejścia / wyjścia dźwięku. Domyślnie +.BR /dev/dsp . +.TP +.I MIXERDEV +Ustaw urządzenie dla suwaków miksera. Domyślnie +.BR /dev/mixer . +.TP +.I MIDIDEV +Ustaw urządzanie MIDI (sekwencer). Domyślnie +.BR /dev/sequencer . +.SH FILES +.TP +.I /home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine +Ładowarka programów +.B wine +.TP +.I /home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wineconsole +Ładowarka programów +.B wine +dla aplikacji CUI (konsolowych). +.TP +.I /home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wineserver +Serwer +.B wine +.TP +.I /home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/winedbg +Debugger +.B wine +.TP +.I /home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/lib/wine +Katalog zawierający współdzielone biblioteki +.BR wine +.TP +.I $WINEPREFIX/dosdevices +Katalog zawierający mapowania urządzeń DOS. Każdy plik w tym +katalogu jest dowiązaniem symbolicznym do pliku urządzenia Uniksowego implementującego +dane urządzenie. Dla przykładu, jeżeli COM1 byłoby zmapowane do /dev/ttyS0 to miałbyś +symboliczene dowiązanie w formie $WINEPREFIX/dosdevices/com1 -> /dev/ttyS0. +.br +Napędy DOS również są określone przez dowiązania symboliczne; Dla przykładu jeżeli napęd D: +odpowiadałby napędowi CDROM zamontowanemu w /mnt/cdrom, miałbyś dowiązanie symboliczne +$WINEPREFIX/dosdevices/d: -> /mnt/cdrom. Urządzenia Uniksowe odpowiadające +napędom DOS mogą być określone w ten sam sposób, z użyciem '::' zamiast ':'. +Tak więc dla poprzedniego przykładu, jeżeli urządzenie CDROM byłoby zamontowane +z /dev/hdc, to odpowiadające dowiązanie symboliczne wyglądałoby następująco +$WINEPREFIX/dosdevices/d:: -> /dev/hdc. +.SH AUTORZY +.B wine +jest dostępne dzięki pracy wielu programistów. Lista autorów +jest dostępna w pliku +.B AUTOHORS +w głównym katalogu dystrybucyjnym źródła. +.SH PRAWA AUTORSKIE +.B wine +może być rozpowszechniane pod warunkami licencji LGPL. Kopia +licencji jest dostępna w pliku +.B COPYING.LIB +w głównym katalogu dystrybucyjnym źródła. +.SH BŁĘDY +.PP +Raporty stanu działania programów są dostępne na stronie +.IR https://appdb.winehq.org . +Jeżeli brakuje na liście aplikacji, której używasz, to nie wahaj się +dodać jej samodzielnie. +.PP +Raporty błędów mogą być wysyłane do Wine Bugzilla +.I https://bugs.winehq.org +Jeżeli chcesz zgłosić błąd zapoznaj się z +.I https://wiki.winehq.org/Bugs +w źródle +.B wine +, aby dowiedzieć się jakie informacje są niezbędne +.PP +Sugestie i problemy dotyczące tej instrukcji również przesyłaj do +.I https://bugs.winehq.org +.SH DOSTĘPNOŚĆ +Najaktualniejszą publiczną wersję +.B wine +można pobrać ze strony +.I https://www.winehq.org/download +.PP +Najaktualnieszy zrzut kodu można pobrać przez GIT. Aby dowiedzieć się +jak to zrobić, odwiedź stronę +.I +https://www.winehq.org/git +.PP +WineHQ, siedziba rozwoju +.B wine +, mieści się na stronie +.IR https://www.winehq.org . +Strona ta zawiera wiele informacji o +.BR wine . +.PP +Po dalsze informacje na temat rozwoju +.B wine +zapisz się na listę mailingową +.B wine +na stronie +.I https://www.winehq.org/forums + +.SH "ZOBACZ TAKŻE" +.BR wineserver (1), +.BR winedbg (1) diff --git a/share/wine/fonts/arial.ttf b/share/wine/fonts/arial.ttf new file mode 100644 index 0000000..faca0d4 Binary files /dev/null and b/share/wine/fonts/arial.ttf differ diff --git a/share/wine/fonts/coue1255.fon b/share/wine/fonts/coue1255.fon new file mode 100644 index 0000000..9515d04 Binary files /dev/null and b/share/wine/fonts/coue1255.fon differ diff --git a/share/wine/fonts/coue1256.fon b/share/wine/fonts/coue1256.fon new file mode 100644 index 0000000..dba7e8f Binary files /dev/null and b/share/wine/fonts/coue1256.fon differ diff --git a/share/wine/fonts/coue1257.fon b/share/wine/fonts/coue1257.fon new file mode 100644 index 0000000..e39dc35 Binary files /dev/null and b/share/wine/fonts/coue1257.fon differ diff --git a/share/wine/fonts/cour.ttf b/share/wine/fonts/cour.ttf new file mode 100644 index 0000000..3c381b1 Binary files /dev/null and b/share/wine/fonts/cour.ttf differ diff --git a/share/wine/fonts/coure.fon b/share/wine/fonts/coure.fon new file mode 100644 index 0000000..bd39208 Binary files /dev/null and b/share/wine/fonts/coure.fon differ diff --git a/share/wine/fonts/couree.fon b/share/wine/fonts/couree.fon new file mode 100644 index 0000000..890a653 Binary files /dev/null and b/share/wine/fonts/couree.fon differ diff --git a/share/wine/fonts/coureg.fon b/share/wine/fonts/coureg.fon new file mode 100644 index 0000000..5be0785 Binary files /dev/null and b/share/wine/fonts/coureg.fon differ diff --git a/share/wine/fonts/courer.fon b/share/wine/fonts/courer.fon new file mode 100644 index 0000000..995a81d Binary files /dev/null and b/share/wine/fonts/courer.fon differ diff --git a/share/wine/fonts/couret.fon b/share/wine/fonts/couret.fon new file mode 100644 index 0000000..1ca5e54 Binary files /dev/null and b/share/wine/fonts/couret.fon differ diff --git a/share/wine/fonts/cvgasys.fon b/share/wine/fonts/cvgasys.fon new file mode 100644 index 0000000..a4d7653 Binary files /dev/null and b/share/wine/fonts/cvgasys.fon differ diff --git a/share/wine/fonts/hvgasys.fon b/share/wine/fonts/hvgasys.fon new file mode 100644 index 0000000..7bc88b5 Binary files /dev/null and b/share/wine/fonts/hvgasys.fon differ diff --git a/share/wine/fonts/jsmalle.fon b/share/wine/fonts/jsmalle.fon new file mode 100644 index 0000000..97de2ba Binary files /dev/null and b/share/wine/fonts/jsmalle.fon differ diff --git a/share/wine/fonts/jvgafix.fon b/share/wine/fonts/jvgafix.fon new file mode 100644 index 0000000..d3bf7a3 Binary files /dev/null and b/share/wine/fonts/jvgafix.fon differ diff --git a/share/wine/fonts/jvgasys.fon b/share/wine/fonts/jvgasys.fon new file mode 100644 index 0000000..1415d85 Binary files /dev/null and b/share/wine/fonts/jvgasys.fon differ diff --git a/share/wine/fonts/marlett.ttf b/share/wine/fonts/marlett.ttf new file mode 100644 index 0000000..b3122c5 Binary files /dev/null and b/share/wine/fonts/marlett.ttf differ diff --git a/share/wine/fonts/msyh.ttf b/share/wine/fonts/msyh.ttf new file mode 100644 index 0000000..b01793a Binary files /dev/null and b/share/wine/fonts/msyh.ttf differ diff --git a/share/wine/fonts/smae1255.fon b/share/wine/fonts/smae1255.fon new file mode 100644 index 0000000..683b867 Binary files /dev/null and b/share/wine/fonts/smae1255.fon differ diff --git a/share/wine/fonts/smae1256.fon b/share/wine/fonts/smae1256.fon new file mode 100644 index 0000000..19757ae Binary files /dev/null and b/share/wine/fonts/smae1256.fon differ diff --git a/share/wine/fonts/smae1257.fon b/share/wine/fonts/smae1257.fon new file mode 100644 index 0000000..4829642 Binary files /dev/null and b/share/wine/fonts/smae1257.fon differ diff --git a/share/wine/fonts/smalle.fon b/share/wine/fonts/smalle.fon new file mode 100644 index 0000000..9a2d832 Binary files /dev/null and b/share/wine/fonts/smalle.fon differ diff --git a/share/wine/fonts/smallee.fon b/share/wine/fonts/smallee.fon new file mode 100644 index 0000000..f4e28c2 Binary files /dev/null and b/share/wine/fonts/smallee.fon differ diff --git a/share/wine/fonts/smalleg.fon b/share/wine/fonts/smalleg.fon new file mode 100644 index 0000000..8a8b8fb Binary files /dev/null and b/share/wine/fonts/smalleg.fon differ diff --git a/share/wine/fonts/smaller.fon b/share/wine/fonts/smaller.fon new file mode 100644 index 0000000..0cd2ab1 Binary files /dev/null and b/share/wine/fonts/smaller.fon differ diff --git a/share/wine/fonts/smallet.fon b/share/wine/fonts/smallet.fon new file mode 100644 index 0000000..5fcac7a Binary files /dev/null and b/share/wine/fonts/smallet.fon differ diff --git a/share/wine/fonts/ssee1255.fon b/share/wine/fonts/ssee1255.fon new file mode 100644 index 0000000..e2db380 Binary files /dev/null and b/share/wine/fonts/ssee1255.fon differ diff --git a/share/wine/fonts/ssee1256.fon b/share/wine/fonts/ssee1256.fon new file mode 100644 index 0000000..ee577a0 Binary files /dev/null and b/share/wine/fonts/ssee1256.fon differ diff --git a/share/wine/fonts/ssee1257.fon b/share/wine/fonts/ssee1257.fon new file mode 100644 index 0000000..87dfc52 Binary files /dev/null and b/share/wine/fonts/ssee1257.fon differ diff --git a/share/wine/fonts/ssee874.fon b/share/wine/fonts/ssee874.fon new file mode 100644 index 0000000..54a3a2a Binary files /dev/null and b/share/wine/fonts/ssee874.fon differ diff --git a/share/wine/fonts/ssef1255.fon b/share/wine/fonts/ssef1255.fon new file mode 100644 index 0000000..01401e8 Binary files /dev/null and b/share/wine/fonts/ssef1255.fon differ diff --git a/share/wine/fonts/ssef1256.fon b/share/wine/fonts/ssef1256.fon new file mode 100644 index 0000000..9dc5f0d Binary files /dev/null and b/share/wine/fonts/ssef1256.fon differ diff --git a/share/wine/fonts/ssef1257.fon b/share/wine/fonts/ssef1257.fon new file mode 100644 index 0000000..daad9b5 Binary files /dev/null and b/share/wine/fonts/ssef1257.fon differ diff --git a/share/wine/fonts/ssef874.fon b/share/wine/fonts/ssef874.fon new file mode 100644 index 0000000..ba95253 Binary files /dev/null and b/share/wine/fonts/ssef874.fon differ diff --git a/share/wine/fonts/sserife.fon b/share/wine/fonts/sserife.fon new file mode 100644 index 0000000..2d3422c Binary files /dev/null and b/share/wine/fonts/sserife.fon differ diff --git a/share/wine/fonts/sserifee.fon b/share/wine/fonts/sserifee.fon new file mode 100644 index 0000000..94f8554 Binary files /dev/null and b/share/wine/fonts/sserifee.fon differ diff --git a/share/wine/fonts/sserifeg.fon b/share/wine/fonts/sserifeg.fon new file mode 100644 index 0000000..ae14fcb Binary files /dev/null and b/share/wine/fonts/sserifeg.fon differ diff --git a/share/wine/fonts/sserifer.fon b/share/wine/fonts/sserifer.fon new file mode 100644 index 0000000..66489d3 Binary files /dev/null and b/share/wine/fonts/sserifer.fon differ diff --git a/share/wine/fonts/sserifet.fon b/share/wine/fonts/sserifet.fon new file mode 100644 index 0000000..643f343 Binary files /dev/null and b/share/wine/fonts/sserifet.fon differ diff --git a/share/wine/fonts/sseriff.fon b/share/wine/fonts/sseriff.fon new file mode 100644 index 0000000..30e0efe Binary files /dev/null and b/share/wine/fonts/sseriff.fon differ diff --git a/share/wine/fonts/sseriffe.fon b/share/wine/fonts/sseriffe.fon new file mode 100644 index 0000000..6be3081 Binary files /dev/null and b/share/wine/fonts/sseriffe.fon differ diff --git a/share/wine/fonts/sseriffg.fon b/share/wine/fonts/sseriffg.fon new file mode 100644 index 0000000..f488172 Binary files /dev/null and b/share/wine/fonts/sseriffg.fon differ diff --git a/share/wine/fonts/sseriffr.fon b/share/wine/fonts/sseriffr.fon new file mode 100644 index 0000000..af07bf3 Binary files /dev/null and b/share/wine/fonts/sseriffr.fon differ diff --git a/share/wine/fonts/sserifft.fon b/share/wine/fonts/sserifft.fon new file mode 100644 index 0000000..011d0e3 Binary files /dev/null and b/share/wine/fonts/sserifft.fon differ diff --git a/share/wine/fonts/svgasys.fon b/share/wine/fonts/svgasys.fon new file mode 100644 index 0000000..9442c5d Binary files /dev/null and b/share/wine/fonts/svgasys.fon differ diff --git a/share/wine/fonts/symbol.ttf b/share/wine/fonts/symbol.ttf new file mode 100644 index 0000000..1fd5b4e Binary files /dev/null and b/share/wine/fonts/symbol.ttf differ diff --git a/share/wine/fonts/tahoma.ttf b/share/wine/fonts/tahoma.ttf new file mode 100644 index 0000000..8bee8ad Binary files /dev/null and b/share/wine/fonts/tahoma.ttf differ diff --git a/share/wine/fonts/tahomabd.ttf b/share/wine/fonts/tahomabd.ttf new file mode 100644 index 0000000..c01f9e1 Binary files /dev/null and b/share/wine/fonts/tahomabd.ttf differ diff --git a/share/wine/fonts/times.ttf b/share/wine/fonts/times.ttf new file mode 100644 index 0000000..6751c1e Binary files /dev/null and b/share/wine/fonts/times.ttf differ diff --git a/share/wine/fonts/vgafix.fon b/share/wine/fonts/vgafix.fon new file mode 100644 index 0000000..11c1350 Binary files /dev/null and b/share/wine/fonts/vgafix.fon differ diff --git a/share/wine/fonts/vgas1255.fon b/share/wine/fonts/vgas1255.fon new file mode 100644 index 0000000..e1e7bea Binary files /dev/null and b/share/wine/fonts/vgas1255.fon differ diff --git a/share/wine/fonts/vgas1256.fon b/share/wine/fonts/vgas1256.fon new file mode 100644 index 0000000..ab1a761 Binary files /dev/null and b/share/wine/fonts/vgas1256.fon differ diff --git a/share/wine/fonts/vgas1257.fon b/share/wine/fonts/vgas1257.fon new file mode 100644 index 0000000..c2e24d5 Binary files /dev/null and b/share/wine/fonts/vgas1257.fon differ diff --git a/share/wine/fonts/vgas874.fon b/share/wine/fonts/vgas874.fon new file mode 100644 index 0000000..0fd52f9 Binary files /dev/null and b/share/wine/fonts/vgas874.fon differ diff --git a/share/wine/fonts/vgasys.fon b/share/wine/fonts/vgasys.fon new file mode 100644 index 0000000..5f5d2f5 Binary files /dev/null and b/share/wine/fonts/vgasys.fon differ diff --git a/share/wine/fonts/vgasyse.fon b/share/wine/fonts/vgasyse.fon new file mode 100644 index 0000000..5a7a555 Binary files /dev/null and b/share/wine/fonts/vgasyse.fon differ diff --git a/share/wine/fonts/vgasysg.fon b/share/wine/fonts/vgasysg.fon new file mode 100644 index 0000000..d8e39f4 Binary files /dev/null and b/share/wine/fonts/vgasysg.fon differ diff --git a/share/wine/fonts/vgasysr.fon b/share/wine/fonts/vgasysr.fon new file mode 100644 index 0000000..ace93dc Binary files /dev/null and b/share/wine/fonts/vgasysr.fon differ diff --git a/share/wine/fonts/vgasyst.fon b/share/wine/fonts/vgasyst.fon new file mode 100644 index 0000000..fc66d63 Binary files /dev/null and b/share/wine/fonts/vgasyst.fon differ diff --git a/share/wine/fonts/wingding.ttf b/share/wine/fonts/wingding.ttf new file mode 100644 index 0000000..c8ab8e1 Binary files /dev/null and b/share/wine/fonts/wingding.ttf differ diff --git a/share/wine/l_intl.nls b/share/wine/l_intl.nls new file mode 100644 index 0000000..29c2294 Binary files /dev/null and b/share/wine/l_intl.nls differ diff --git a/share/wine/wine.inf b/share/wine/wine.inf new file mode 100644 index 0000000..08d32fb --- /dev/null +++ b/share/wine/wine.inf @@ -0,0 +1,3774 @@ +;; .INF script for the basic Wine configuration +;; Version: Wine 4.6 +;; +;; This should be run through setupapi: +;; rundll32 setupapi.dll,InstallHinfSection DefaultInstall 128 wine.inf +;; +;; Copyright (C) 2004 Chris Morgan +;; Copyright (C) 2004 Brian Vincent +;; Copyright (C) 2004 Alexandre Julliard +;; +;; This library is free software; you can redistribute it and/or +;; modify it under the terms of the GNU Lesser General Public +;; License as published by the Free Software Foundation; either +;; version 2.1 of the License, or (at your option) any later version. +;; +;; This library is distributed in the hope that it will be useful, +;; but WITHOUT ANY WARRANTY; without even the implied warranty of +;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +;; Lesser General Public License for more details. +;; +;; You should have received a copy of the GNU Lesser General Public +;; License along with this library; if not, write to the Free Software +;; Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +;; + +[version] +signature="$CHICAGO$" + +[DefaultInstall] +RegisterDlls=RegisterDllsSection +WineFakeDlls=FakeDllsWin32,FakeDlls +UpdateInis=SystemIni +CopyFiles=@l_intl.nls +AddReg=\ + Classes,\ + ContentIndex,\ + ControlClass,\ + CriticalDevice,\ + CurrentVersion,\ + Debugger,\ + DirectX,\ + Fonts,\ + MCI,\ + Misc,\ + Nls,\ + OLE,\ + Printing,\ + Services, \ + SessionMgr,\ + Tapi,\ + Timezones,\ + LicenseInformation + +[DefaultInstall.NT] +RegisterDlls=RegisterDllsSection +WineFakeDlls=FakeDllsWin32,FakeDlls +UpdateInis=SystemIni +CopyFiles=@l_intl.nls +AddReg=\ + Classes,\ + ContentIndex,\ + ControlClass,\ + CriticalDevice,\ + CurrentVersion,\ + Debugger,\ + DirectX,\ + Fonts,\ + MCI,\ + Misc,\ + Nls,\ + OLE,\ + Printing,\ + Services, \ + SessionMgr,\ + Tapi,\ + Timezones,\ + VersionInfo,\ + LicenseInformation + +[DefaultInstall.ntamd64] +RegisterDlls=RegisterDllsSection +WineFakeDlls=FakeDllsWin64,FakeDlls +WinePreInstall=Wow64 +UpdateInis=SystemIni +CopyFiles=@l_intl.nls +AddReg=\ + Classes,\ + ContentIndex,\ + ControlClass,\ + CriticalDevice,\ + CurrentVersion,\ + CurrentVersionWow64,\ + Debugger,\ + DirectX,\ + Fonts,\ + MCI,\ + Misc,\ + Nls,\ + OLE,\ + Printing,\ + Services, \ + SessionMgr,\ + Tapi,\ + Timezones,\ + VersionInfo.ntamd64,\ + LicenseInformation + +[Wow64Install] +RegisterDlls=RegisterDllsSection +WineFakeDlls=FakeDllsWin32,FakeDllsWow64 +CopyFiles=@l_intl.nls +AddReg=\ + CurrentVersion,\ + CurrentVersionWow64,\ + Debugger,\ + DirectX,\ + MCI,\ + Misc,\ + Tapi,\ + VersionInfo.ntamd64,\ + LicenseInformation + +[DefaultInstall.Services] +AddService=BITS,0,BITSService +AddService=MSIServer,0,MSIService +AddService=MountMgr,0x800,MountMgrService +AddService=RpcSs,0,RpcSsService +AddService=Spooler,0,SpoolerService +AddService=StiSvc,0,StiService +AddService=TermService,0,TerminalServices +AddService=PlugPlay,0,PlugPlayService +AddService=FontCache3.0.0.0,0,WPFFontCacheService +AddService=LanmanServer,0,LanmanServerService +AddService=FontCache,0,FontCacheService +AddService=Schedule,0,TaskSchedulerService +AddService=WineBus,0,WineBusService +AddService=WineHID,0,WineHIDService +AddService=Winmgmt,0,WinmgmtService +AddService=wuauserv,0,wuauService + +[DefaultInstall.NT.Services] +AddService=BITS,0,BITSService +AddService=MSIServer,0,MSIService +AddService=MountMgr,0x800,MountMgrService +AddService=RpcSs,0,RpcSsService +AddService=Spooler,0,SpoolerService +AddService=StiSvc,0,StiService +AddService=TermService,0,TerminalServices +AddService=PlugPlay,0,PlugPlayService +AddService=FontCache3.0.0.0,0,WPFFontCacheService +AddService=LanmanServer,0,LanmanServerService +AddService=FontCache,0,FontCacheService +AddService=Schedule,0,TaskSchedulerService +AddService=WineBus,0,WineBusService +AddService=WineHID,0,WineHIDService +AddService=Winmgmt,0,WinmgmtService +AddService=wuauserv,0,wuauService + +[DefaultInstall.ntamd64.Services] +AddService=BITS,0,BITSService +AddService=MSIServer,0,MSIService +AddService=MountMgr,0x800,MountMgrService +AddService=RpcSs,0,RpcSsService +AddService=Spooler,0,SpoolerService +AddService=StiSvc,0,StiService +AddService=TermService,0,TerminalServices +AddService=PlugPlay,0,PlugPlayService +AddService=FontCache3.0.0.0,0,WPFFontCacheService +AddService=LanmanServer,0,LanmanServerService +AddService=FontCache,0,FontCacheService +AddService=Schedule,0,TaskSchedulerService +AddService=WineBus,0,WineBusService +AddService=WineHID,0,WineHIDService +AddService=Winmgmt,0,WinmgmtService +AddService=wuauserv,0,wuauService + +[Strings] +MciExtStr="Software\Microsoft\Windows NT\CurrentVersion\MCI Extensions" +Mci32Str="Software\Microsoft\Windows NT\CurrentVersion\MCI32" +CurrentVersion="Software\Microsoft\Windows\CurrentVersion" +CurrentVersionNT="Software\Microsoft\Windows NT\CurrentVersion" +FontSubStr="Software\Microsoft\Windows NT\CurrentVersion\FontSubstitutes" +Control="System\CurrentControlSet\Control" + +[Classes] +HKCR,.chm,,2,"chm.file" +HKCR,.cpl,,2,"cplfile" +HKCR,.hlp,,2,"hlpfile" +HKCR,.inf,,2,"inffile" +HKCR,.ini,,2,"inifile" +HKCR,.lnk,,2,"lnkfile" +HKCR,.msi,,2,"Msi.Package" +HKCR,.msp,,2,"Msi.Patch" +HKCR,.pdf,,2,"pdffile" +HKCR,.rtf,,2,"rtffile" +HKCR,.wri,,2,"wrifile" +HKCR,*\shellex\ContextMenuHandlers,,16 +HKCR,chm.file,,2,"Compiled HTML Help File" +HKCR,chm.file\DefaultIcon,,2,"%10%\hh.exe,0" +HKCR,chm.file\shell\open\command,,2,"%10%\hh.exe %1" +HKCR,cplfile,,2,"Control Panel Item" +HKCR,cplfile\shell\cplopen,,2,"Open with Control Panel" +HKCR,cplfile\shell\cplopen\command,,2,"rundll32.exe shell32.dll,Control_RunDLL ""%1"",%*" +HKCR,Directory\Background\shellex\ContextMenuHandlers\New,,16 +HKCR,DirectShow,,16 +HKCR,exefile,,2,"Application" +HKCR,exefile\DefaultIcon,,2,"%1" +HKCR,exefile\shell\open\command,,2,"""%1"" %*" +HKCR,folder\shell\open\ddeexec,,2,"[ViewFolder("%l", %I, %S)]" +HKCR,folder\shell\open\ddeexec,"NoActivateHandler",2,"" +HKCR,folder\shell\open\ddeexec\application,,2,"Folders" +HKCR,folder\shellex\ContextMenuHandlers,,16 +HKCR,hlpfile,,2,"Help File" +HKCR,hlpfile\shell\open\command,,2,"%11%\winhlp32.exe %1" +HKCR,htmlfile\shell\open\command,,2,"""%11%\winebrowser.exe"" -nohome" +HKCR,htmlfile\shell\open\ddeexec,,2,"""%1"",,-1,0,,,," +HKCR,htmlfile\shell\open\ddeexec,"NoActivateHandler",2,"" +HKCR,htmlfile\shell\open\ddeexec\Application,,2,"IExplore" +HKCR,htmlfile\shell\open\ddeexec\Topic,,2,"WWW_OpenURL" +HKCR,inffile,,2,"Setup Information" +HKCR,inffile\shell\install\command,,2,"%11%\rundll32.exe setupapi,InstallHinfSection DefaultInstall 132 %1" +HKCR,inifile,,2,"Configuration Settings" +HKCR,inifile\shell\open\command,,2,"%11%\notepad.exe %1" +HKCR,inifile\shell\print\command,,2,"%11%\notepad.exe /p %1" +HKCR,lnkfile,,2,"Shortcut" +HKCR,lnkfile,"NeverShowExt",2,"" +HKCR,lnkfile,"IsShortcut",2,"yes" +HKCR,lnkfile\CLSID,,2,"{00021401-0000-0000-C000-000000000046}" +HKCR,lnkfile\shellex\IconHandler,,2,"{00021401-0000-0000-C000-000000000046}" +HKCR,lnkfile\shellex\ContextMenuHandlers\{00021401-0000-0000-C000-000000000046},,0x10, +HKCR,MediaFoundation,,16 +HKCR,Msi.Package,,2,"Windows Installer Package" +HKCR,Msi.Package\DefaultIcon,,2,"msiexec.exe" +HKCR,Msi.Package\shell\Open\command,,2,"%11%\msiexec.exe /i ""%1""" +HKCR,Msi.Package\shell\Repair\command,,2,"%11%\msiexec.exe /f ""%1""" +HKCR,Msi.Package\shell\Uninstall\command,,2,"%11%\msiexec.exe /x ""%1""" +HKCR,Msi.Patch,,2,"Windows Installer Patch" +HKCR,Msi.Patch\DefaultIcon,,2,"msiexec.exe" +HKCR,Msi.Patch\shell\Open\command,,2,"%11%\msiexec.exe /p ""%1""" +HKCR,pdffile,,2,"PDF Document" +HKCR,pdffile\shell\open\command,,2,"""%11%\winebrowser.exe"" -nohome" +HKCR,pdffile\shell\open\ddeexec,,2,"""%1"",,-1,0,,,," +HKCR,pdffile\shell\open\ddeexec,"NoActivateHandler",2,"" +HKCR,pdffile\shell\open\ddeexec\Application,,2,"IExplore" +HKCR,pdffile\shell\open\ddeexec\Topic,,2,"WWW_OpenURL" +HKCR,rtffile,,2,"Rich Text Document" +HKCR,rtffile\shell\open\command,,2,"""%16422%\Windows NT\Accessories\wordpad.exe"" %1" +HKCR,rtffile\shell\print\command,,2,"""%16422%\Windows NT\Accessories\wordpad.exe"" /p %1" +HKCR,txtfile,,2,"Text Document" +HKCR,txtfile\shell\open\command,,2,"%11%\notepad.exe %1" +HKCR,txtfile\shell\print\command,,2,"%11%\notepad.exe /p %1" +HKCR,wrifile\shell\open\command,,2,"""%16422%\Windows NT\Accessories\wordpad.exe"" %1" +HKCR,wrifile\shell\print\command,,2,"""%16422%\Windows NT\Accessories\wordpad.exe"" /p %1" +HKCR,xmlfile,,2,"XML Document" +HKCR,xmlfile\shell\open\command,,2,"""%11%\winebrowser.exe"" -nohome" +HKCR,xmlfile\shell\open\ddeexec,,2,"""%1"",,-1,0,,,," +HKCR,xmlfile\shell\open\ddeexec,"NoActivateHandler",2,"" +HKCR,xmlfile\shell\open\ddeexec\Application,,2,"IExplore" +HKCR,xmlfile\shell\open\ddeexec\Topic,,2,"WWW_OpenURL" +HKCR,ftp\shell\open\command,,2,"""%11%\winebrowser.exe"" -nohome" +HKCR,ftp\shell\open\ddeexec,,2,"""%1"",,-1,0,,,," +HKCR,ftp\shell\open\ddeexec,"NoActivateHandler",2,"" +HKCR,ftp\shell\open\ddeexec\Application,,2,"IExplore" +HKCR,ftp\shell\open\ddeexec\Topic,,2,"WWW_OpenURL" +HKCR,http\shell\open\command,,2,"""%11%\winebrowser.exe"" -nohome" +HKCR,http\shell\open\ddeexec,,2,"""%1"",,-1,0,,,," +HKCR,http\shell\open\ddeexec,"NoActivateHandler",2,"" +HKCR,http\shell\open\ddeexec\Application,,2,"IExplore" +HKCR,http\shell\open\ddeexec\Topic,,2,"WWW_OpenURL" +HKCR,https\shell\open\command,,2,"""%11%\winebrowser.exe"" -nohome" +HKCR,https\shell\open\ddeexec,,2,"""%1"",,-1,0,,,," +HKCR,https\shell\open\ddeexec,"NoActivateHandler",2,"" +HKCR,https\shell\open\ddeexec\Application,,2,"IExplore" +HKCR,https\shell\open\ddeexec\Topic,,2,"WWW_OpenURL" +HKCR,mailto\shell\open\command,,2,"%11%\winebrowser %1" + +HKCR,MIME\Database\Charset\_iso-2022-jp$ESC,"Codepage",0x10003,932 +HKCR,MIME\Database\Charset\_iso-2022-jp$ESC,"InternetEncoding",0x10003,50221 +HKCR,MIME\Database\Charset\_iso-2022-jp$SIO,"Codepage",0x10003,932 +HKCR,MIME\Database\Charset\_iso-2022-jp$SIO,"InternetEncoding",0x10003,50222 +HKCR,MIME\Database\Charset\ASMO-708,"Codepage",0x10003,1256 +HKCR,MIME\Database\Charset\ASMO-708,"InternetEncoding",0x10003,708 +HKCR,MIME\Database\Charset\Big5,"Codepage",0x10003,950 +HKCR,MIME\Database\Charset\Big5,"InternetEncoding",0x10003,950 +HKCR,MIME\Database\Charset\DOS-720,"Codepage",0x10003,1256 +HKCR,MIME\Database\Charset\DOS-720,"InternetEncoding",0x10003,720 +HKCR,MIME\Database\Charset\DOS-862,"Codepage",0x10003,1255 +HKCR,MIME\Database\Charset\DOS-862,"InternetEncoding",0x10003,862 +HKCR,MIME\Database\Charset\DOS-874,"Codepage",0x10003,874 +HKCR,MIME\Database\Charset\DOS-874,"InternetEncoding",0x10003,874 +HKCR,MIME\Database\Charset\euc-jp,"Codepage",0x10003,932 +HKCR,MIME\Database\Charset\euc-jp,"InternetEncoding",0x10003,51932 +HKCR,MIME\Database\Charset\euc-kr,"Codepage",0x10003,949 +HKCR,MIME\Database\Charset\euc-kr,"InternetEncoding",0x10003,949 +HKCR,MIME\Database\Charset\GB2312,"Codepage",0x10003,936 +HKCR,MIME\Database\Charset\GB2312,"InternetEncoding",0x10003,936 +HKCR,MIME\Database\Charset\hz-gb-2312,"Codepage",0x10003,936 +HKCR,MIME\Database\Charset\hz-gb-2312,"InternetEncoding",0x10003,52936 +HKCR,MIME\Database\Charset\ibm852,"Codepage",0x10003,852 +HKCR,MIME\Database\Charset\ibm852,"InternetEncoding",0x10003,852 +HKCR,MIME\Database\Charset\ibm866,"Codepage",0x10003,866 +HKCR,MIME\Database\Charset\ibm866,"InternetEncoding",0x10003,866 +HKCR,MIME\Database\Charset\iso-2022-jp,"Codepage",0x10003,932 +HKCR,MIME\Database\Charset\iso-2022-jp,"InternetEncoding",0x10003,50220 +HKCR,MIME\Database\Charset\iso-2022-kr,"Codepage",0x10003,949 +HKCR,MIME\Database\Charset\iso-2022-kr,"InternetEncoding",0x10003,50225 +HKCR,MIME\Database\Charset\iso-8859-1,"Codepage",0x10003,1252 +HKCR,MIME\Database\Charset\iso-8859-1,"InternetEncoding",0x10003,1252 +HKCR,MIME\Database\Charset\iso-8859-2,"Codepage",0x10003,1250 +HKCR,MIME\Database\Charset\iso-8859-2,"InternetEncoding",0x10003,28592 +HKCR,MIME\Database\Charset\iso-8859-3,"Codepage",0x10003,1254 +HKCR,MIME\Database\Charset\iso-8859-3,"InternetEncoding",0x10003,28593 +HKCR,MIME\Database\Charset\iso-8859-4,"Codepage",0x10003,1257 +HKCR,MIME\Database\Charset\iso-8859-4,"InternetEncoding",0x10003,28594 +HKCR,MIME\Database\Charset\iso-8859-5,"Codepage",0x10003,1251 +HKCR,MIME\Database\Charset\iso-8859-5,"InternetEncoding",0x10003,25595 +HKCR,MIME\Database\Charset\iso-8859-6,"Codepage",0x10003,1256 +HKCR,MIME\Database\Charset\iso-8859-6,"InternetEncoding",0x10003,28596 +HKCR,MIME\Database\Charset\iso-8859-7,"Codepage",0x10003,1253 +HKCR,MIME\Database\Charset\iso-8859-7,"InternetEncoding",0x10003,28597 +HKCR,MIME\Database\Charset\iso-8859-8,"Codepage",0x10003,1255 +HKCR,MIME\Database\Charset\iso-8859-8,"InternetEncoding",0x10003,28598 +HKCR,MIME\Database\Charset\iso-8859-8-i,"Codepage",0x10003,1255 +HKCR,MIME\Database\Charset\iso-8859-8-i,"InternetEncoding",0x10003,38598 +HKCR,MIME\Database\Charset\iso-8859-9,"Codepage",0x10003,1254 +HKCR,MIME\Database\Charset\iso-8859-9,"InternetEncoding",0x10003,1254 +HKCR,MIME\Database\Charset\koi8-r,"Codepage",0x10003,1251 +HKCR,MIME\Database\Charset\koi8-r,"InternetEncoding",0x10003,20866 +HKCR,MIME\Database\Charset\koi8-ru,"Codepage",0x10003,1251 +HKCR,MIME\Database\Charset\koi8-ru,"InternetEncoding",0x10003,21866 +HKCR,MIME\Database\Charset\ks_c_5601-1987,"Codepage",0x10003,949 +HKCR,MIME\Database\Charset\ks_c_5601-1987,"InternetEncoding",0x10003,949 +HKCR,MIME\Database\Charset\shift_jis,"Codepage",0x10003,932 +HKCR,MIME\Database\Charset\shift_jis,"InternetEncoding",0x10003,932 +HKCR,MIME\Database\Charset\unicode,"Codepage",0x10003,1200 +HKCR,MIME\Database\Charset\unicode,"InternetEncoding",0x10003,1200 +HKCR,MIME\Database\Charset\unicodeFFFE,"Codepage",0x10003,1200 +HKCR,MIME\Database\Charset\unicodeFFFE,"InternetEncoding",0x10003,1201 +HKCR,MIME\Database\Charset\utf-7,"Codepage",0x10003,1200 +HKCR,MIME\Database\Charset\utf-7,"InternetEncoding",0x10003,65000 +HKCR,MIME\Database\Charset\utf-8,"Codepage",0x10003,1200 +HKCR,MIME\Database\Charset\utf-8,"InternetEncoding",0x10003,65001 +HKCR,MIME\Database\Charset\windows-1250,"Codepage",0x10003,1250 +HKCR,MIME\Database\Charset\windows-1250,"InternetEncoding",0x10003,1250 +HKCR,MIME\Database\Charset\windows-1251,"Codepage",0x10003,1251 +HKCR,MIME\Database\Charset\windows-1251,"InternetEncoding",0x10003,1251 +HKCR,MIME\Database\Charset\windows-1252,"Codepage",0x10003,1252 +HKCR,MIME\Database\Charset\windows-1252,"InternetEncoding",0x10003,1252 +HKCR,MIME\Database\Charset\windows-1253,"Codepage",0x10003,1253 +HKCR,MIME\Database\Charset\windows-1253,"InternetEncoding",0x10003,1253 +HKCR,MIME\Database\Charset\windows-1255,"Codepage",0x10003,1255 +HKCR,MIME\Database\Charset\windows-1255,"InternetEncoding",0x10003,1255 +HKCR,MIME\Database\Charset\windows-1256,"Codepage",0x10003,1256 +HKCR,MIME\Database\Charset\windows-1256,"InternetEncoding",0x10003,1256 +HKCR,MIME\Database\Charset\windows-1257,"Codepage",0x10003,1257 +HKCR,MIME\Database\Charset\windows-1257,"InternetEncoding",0x10003,1257 +HKCR,MIME\Database\Charset\windows-1258,"Codepage",0x10003,1258 +HKCR,MIME\Database\Charset\windows-1258,"InternetEncoding",0x10003,1258 +HKCR,MIME\Database\Charset\windows-874,"Codepage",0x10003,874 +HKCR,MIME\Database\Charset\windows-874,"InternetEncoding",0x10003,874 +HKCR,MIME\Database\Charset\ANSI_X3.4-1968,"AliasForCharset",,iso-8859-1 +HKCR,MIME\Database\Charset\ANSI_X3.4-1986,"AliasForCharset",,iso-8859-1 +HKCR,MIME\Database\Charset\arabic,"AliasForCharset",,iso-8859-6 +HKCR,MIME\Database\Charset\ascii,"AliasForCharset",,iso-8859-1 +HKCR,MIME\Database\Charset\chinese,"AliasForCharset",,gb2312 +HKCR,MIME\Database\Charset\CN-GB,"AliasForCharset",,gb2312 +HKCR,MIME\Database\Charset\cp1256,"AliasForCharset",,windows-1256 +HKCR,MIME\Database\Charset\cp367,"AliasForCharset",,iso-8859-1 +HKCR,MIME\Database\Charset\cp819,"AliasForCharset",,iso-8859-1 +HKCR,MIME\Database\Charset\cp852,"AliasForCharset",,ibm852 +HKCR,MIME\Database\Charset\ibm866,"AliasForCharset",,ibm866 +HKCR,MIME\Database\Charset\csASCII,"AliasForCharset",,iso-8859-1 +HKCR,MIME\Database\Charset\csbig5,"AliasForCharset",,big5 +HKCR,MIME\Database\Charset\csEUCKR,"AliasForCharset",,ks_c_5601-1987 +HKCR,MIME\Database\Charset\csEUCPkdFmtJapanese,"AliasForCharset",,euc-jp +HKCR,MIME\Database\Charset\csGB2312 ,"AliasForCharset",,gb2312 +HKCR,MIME\Database\Charset\csISO2022JP,"AliasForCharset",,_iso-2022-jp$ESC +HKCR,MIME\Database\Charset\csISO2022KR,"AliasForCharset",,iso-2022-kr +HKCR,MIME\Database\Charset\csISO58GB231280,"AliasForCharset",,gb2312 +HKCR,MIME\Database\Charset\csISOLatin1,"AliasForCharset",,windows-1252 +HKCR,MIME\Database\Charset\csISOLatin2,"AliasForCharset",,iso-8859-2 +HKCR,MIME\Database\Charset\csISOLatin4,"AliasForCharset",,iso-8859-4 +HKCR,MIME\Database\Charset\csISOLatin5,"AliasForCharset",,iso-8859-9 +HKCR,MIME\Database\Charset\csISOLatinArabic,"AliasForCharset",,iso-8859-6 +HKCR,MIME\Database\Charset\csISOLatinCyrillic,"AliasForCharset",,iso-8859-5 +HKCR,MIME\Database\Charset\csISOLatinGreek,"AliasForCharset",,iso-8859-7 +HKCR,MIME\Database\Charset\csISOLatinHebrew,"AliasForCharset",,iso-8859-8 +HKCR,MIME\Database\Charset\csKOI8R,"AliasForCharset",,koi8-r +HKCR,MIME\Database\Charset\csKSC56011987,"AliasForCharset",,ks_c_5601-1987 +HKCR,MIME\Database\Charset\csShiftJIS,"AliasForCharset",,shift_jis +HKCR,MIME\Database\Charset\csUnicode11UTF7,"AliasForCharset",,utf-7 +HKCR,MIME\Database\Charset\csWindows31J,"AliasForCharset",,shift_jis +HKCR,MIME\Database\Charset\cyrillic,"AliasForCharset",,iso-8859-5 +HKCR,MIME\Database\Charset\ECMA-114,"AliasForCharset",,iso-8859-6 +HKCR,MIME\Database\Charset\ECMA-118,"AliasForCharset",,iso-8859-7 +HKCR,MIME\Database\Charset\ELOT_928,"AliasForCharset",,iso-8859-7 +HKCR,MIME\Database\Charset\Extended_UNIX_Code_Packed_Format_for_Japanese,"AliasForCharset",,euc-jp +HKCR,MIME\Database\Charset\GB_2312-80,"AliasForCharset",,gb2312 +HKCR,MIME\Database\Charset\GBK,"AliasForCharset",,gb2312 +HKCR,MIME\Database\Charset\greek,"AliasForCharset",,iso-8859-7 +HKCR,MIME\Database\Charset\greek8,"AliasForCharset",,iso-8859-7 +HKCR,MIME\Database\Charset\hebrew,"AliasForCharset",,iso-8859-8 +HKCR,MIME\Database\Charset\IBM367,"AliasForCharset",,iso-8859-1 +HKCR,MIME\Database\Charset\ibm819,"AliasForCharset",,iso-8859-1 +HKCR,MIME\Database\Charset\iso-8859-11,"AliasForCharset",,windows-874 +HKCR,MIME\Database\Charset\ISO-8859-8 Visual,"AliasForCharset",,iso-8859-8 +HKCR,MIME\Database\Charset\iso-ir-100,"AliasForCharset",,iso-8859-1 +HKCR,MIME\Database\Charset\iso-ir-101,"AliasForCharset",,iso-8859-2 +HKCR,MIME\Database\Charset\iso-ir-110,"AliasForCharset",,iso-8859-4 +HKCR,MIME\Database\Charset\iso-ir-111,"AliasForCharset",,iso-8859-4 +HKCR,MIME\Database\Charset\iso-ir-126,"AliasForCharset",,iso-8859-7 +HKCR,MIME\Database\Charset\iso-ir-127,"AliasForCharset",,iso-8859-6 +HKCR,MIME\Database\Charset\iso-ir-138,"AliasForCharset",,iso-8859-8 +HKCR,MIME\Database\Charset\iso-ir-144,"AliasForCharset",,iso-8859-5 +HKCR,MIME\Database\Charset\iso-ir-148,"AliasForCharset",,iso-8859-9 +HKCR,MIME\Database\Charset\iso-ir-149,"AliasForCharset",,ks_c_5601-1987 +HKCR,MIME\Database\Charset\iso-ir-58,"AliasForCharset",,gb2312 +HKCR,MIME\Database\Charset\iso-ir-6,"AliasForCharset",,iso-8859-1 +HKCR,MIME\Database\Charset\ISO646-US,"AliasForCharset",,iso-8859-1 +HKCR,MIME\Database\Charset\iso8859-1,"AliasForCharset",,iso-8859-1 +HKCR,MIME\Database\Charset\iso8859-2,"AliasForCharset",,iso-8859-2 +HKCR,MIME\Database\Charset\ISO_646.irv:1991,"AliasForCharset",,iso-8859-1 +HKCR,MIME\Database\Charset\iso_8859-1,"AliasForCharset",,iso-8859-1 +HKCR,MIME\Database\Charset\iso_8859-1:1987,"AliasForCharset",,iso-8859-1 +HKCR,MIME\Database\Charset\iso_8859-2,"AliasForCharset",,iso-8859-2 +HKCR,MIME\Database\Charset\iso_8859-2:1987,"AliasForCharset",,iso-8859-2 +HKCR,MIME\Database\Charset\ISO_8859-4,"AliasForCharset",,iso-8859-4 +HKCR,MIME\Database\Charset\ISO_8859-4:1988,"AliasForCharset",,iso-8859-4 +HKCR,MIME\Database\Charset\ISO_8859-5,"AliasForCharset",,iso-8859-5 +HKCR,MIME\Database\Charset\ISO_8859-5:1988,"AliasForCharset",,iso-8859-5 +HKCR,MIME\Database\Charset\ISO_8859-6,"AliasForCharset",,iso-8859-6 +HKCR,MIME\Database\Charset\ISO_8859-6:1987,"AliasForCharset",,iso-8859-6 +HKCR,MIME\Database\Charset\ISO_8859-7,"AliasForCharset",,iso-8859-7 +HKCR,MIME\Database\Charset\ISO_8859-7:1987,"AliasForCharset",,iso-8859-7 +HKCR,MIME\Database\Charset\ISO_8859-8,"AliasForCharset",,iso-8859-8 +HKCR,MIME\Database\Charset\ISO_8859-8:1987,"AliasForCharset",,iso-8859-8 +HKCR,MIME\Database\Charset\ISO_8859-9,"AliasForCharset",,iso-8859-9 +HKCR,MIME\Database\Charset\ISO_8859-9:1987,"AliasForCharset",,iso-8859-9 +HKCR,MIME\Database\Charset\koi,"AliasForCharset",,koi8-r +HKCR,MIME\Database\Charset\korean,"AliasForCharset",,ks_c_5601-1987 +HKCR,MIME\Database\Charset\ks_c_5601,"AliasForCharset",,ks_c_5601-1987 +HKCR,MIME\Database\Charset\ks_c_5601-1989,"AliasForCharset",,ks_c_5601-1987 +HKCR,MIME\Database\Charset\KSC5601,"AliasForCharset",,ks_c_5601-1987 +HKCR,MIME\Database\Charset\KSC_5601,"AliasForCharset",,ks_c_5601-1987 +HKCR,MIME\Database\Charset\l1,"AliasForCharset",,windows-1252 +HKCR,MIME\Database\Charset\l2,"AliasForCharset",,iso-8859-2 +HKCR,MIME\Database\Charset\l4,"AliasForCharset",,iso-8859-4 +HKCR,MIME\Database\Charset\l5,"AliasForCharset",,iso-8859-9 +HKCR,MIME\Database\Charset\latin1,"AliasForCharset",,iso-8859-1 +HKCR,MIME\Database\Charset\latin2,"AliasForCharset",,iso-8859-2 +HKCR,MIME\Database\Charset\latin4,"AliasForCharset",,iso-8859-4 +HKCR,MIME\Database\Charset\latin5,"AliasForCharset",,iso-8859-9 +HKCR,MIME\Database\Charset\logical,"AliasForCharset",,windows-1255 +HKCR,MIME\Database\Charset\ms_Kanji,"AliasForCharset",,shift_jis +HKCR,MIME\Database\Charset\shift-jis,"AliasForCharset",,shift_jis +HKCR,MIME\Database\Charset\unicode-1-1-utf-7,"AliasForCharset",,utf-7 +HKCR,MIME\Database\Charset\unicode-1-1-utf-8,"AliasForCharset",,utf-8 +HKCR,MIME\Database\Charset\unicode-2-0-utf-8,"AliasForCharset",,utf-8 +HKCR,MIME\Database\Charset\us,"AliasForCharset",,iso-8859-1 +HKCR,MIME\Database\Charset\us-ascii,"AliasForCharset",,iso-8859-1 +HKCR,MIME\Database\Charset\visual,"AliasForCharset",,iso-8859-8 +HKCR,MIME\Database\Charset\Windows-1254,"AliasForCharset",,iso-8859-9 + +[ContentIndex] +HKLM,System\CurrentControlSet\Control\ContentIndex\Language\Neutral,"WBreakerClass",,"{369647e0-17b0-11ce-9950-00aa004bbb1f}" +HKLM,System\CurrentControlSet\Control\ContentIndex\Language\Neutral,"StemmerClass",,"" +HKLM,System\CurrentControlSet\Control\ContentIndex\Language\Neutral,"Locale",0x10003,0 + +[ControlClass] +HKLM,System\CurrentControlSet\Control\Class\{4d36e967-e325-11ce-bfc1-08002be10318},,,"Disk drives" +HKLM,System\CurrentControlSet\Control\Class\{4d36e967-e325-11ce-bfc1-08002be10318},"Class",,"DiskDrive" +HKLM,System\CurrentControlSet\Control\Class\{4d36e968-e325-11ce-bfc1-08002be10318},,,"Display drivers" +HKLM,System\CurrentControlSet\Control\Class\{4d36e968-e325-11ce-bfc1-08002be10318},"Class",,"Display" +HKLM,System\CurrentControlSet\Control\Class\{4d36e978-e325-11ce-bfc1-08002be10318},,,"Ports (COM & LPT)" +HKLM,System\CurrentControlSet\Control\Class\{4d36e978-e325-11ce-bfc1-08002be10318},"Class",,"Ports" +HKLM,System\CurrentControlSet\Control\Class\{6bdd1fc6-810f-11d0-bec7-08002be2092f},,,"Imaging devices" +HKLM,System\CurrentControlSet\Control\Class\{6bdd1fc6-810f-11d0-bec7-08002be2092f},"Class",,"Image" +HKLM,System\CurrentControlSet\Control\Class\{745a17a0-74d3-11d0-b6fe-00a0c90f57da},,,"Human Interface Devices" +HKLM,System\CurrentControlSet\Control\Class\{745a17a0-74d3-11d0-b6fe-00a0c90f57da},"Class",,"HIDClass" + +[CriticalDevice] +HKLM,System\CurrentControlSet\Control\CriticalDeviceDatabase\HIDRAW,"Service",,"WineHID" +HKLM,System\CurrentControlSet\Control\CriticalDeviceDatabase\IOHID,"Service",,"WineHID" +HKLM,System\CurrentControlSet\Control\CriticalDeviceDatabase\LNXEV,"Service",,"WineHID" +HKLM,System\CurrentControlSet\Control\CriticalDeviceDatabase\SDLJOY,"Service",,"WineHID" + +[CurrentVersion] +HKCU,%CurrentVersion%\Run,,16 +HKLM,%CurrentVersion%,"CommonFilesDir",,"%16427%" +HKLM,%CurrentVersion%,"FirstInstallDateTime",1,21,81,7c,23 +HKLM,%CurrentVersion%,"ProductId",,"12345-oem-0000001-54321" +HKLM,%CurrentVersion%,"ProgramFilesDir",,"%16422%" +HKLM,%CurrentVersion%,"ProgramFilesPath",0x20000,"%%ProgramFiles%%" +HKLM,%CurrentVersion%,"RegisteredOrganization",2,"" +HKLM,%CurrentVersion%,"RegisteredOwner",2,"" +HKLM,%CurrentVersion%\App Paths,,16 +HKLM,%CurrentVersion%\Control Panel\Cursors\Schemes,,16 +HKLM,%CurrentVersion%\Controls Folder\PowerCfg,"DiskSpinDownMax",,"3600" +HKLM,%CurrentVersion%\Controls Folder\PowerCfg,"DiskSpinDownMin",,"3" +HKLM,%CurrentVersion%\Controls Folder\PowerCfg,"LastID",,"5" +HKLM,%CurrentVersion%\Explorer\AutoplayHandlers,,16 +HKLM,%CurrentVersion%\Explorer\DriveIcons,,16 +HKLM,%CurrentVersion%\Explorer\KindMap,,16 +HKLM,%CurrentVersion%\Group Policy,,16 +HKLM,%CurrentVersion%\Installer,"InstallerLocation",,"%11%" +HKLM,%CurrentVersion%\Policies\System,"EnableLUA",0x10003,0 +HKLM,%CurrentVersion%\PreviewHandlers,,16 +HKLM,%CurrentVersion%\Run,,16 +HKLM,%CurrentVersion%\Setup,"BootDir",,"%30%" +HKLM,%CurrentVersion%\Setup,"SharedDir",,"%25%" +HKLM,%CurrentVersion%\Setup\WindowsFeatures\WindowsMediaVersion,,,"12.0.7601.18840" +HKLM,%CurrentVersion%\Setup\WindowsFeatures\WindowsMediaVersion,"Version",1,00,00,0c,00,98,49,b1,1d +HKLM,%CurrentVersion%\Shell Extensions\Approved,,16 +HKLM,%CurrentVersion%\Uninstall,,16 +HKLM,%CurrentVersion%\Winlogon,,16 +HKLM,%CurrentVersionNT%,"InstallDate",0x10003,1273299354 +HKLM,%CurrentVersionNT%,"ProductId",,"12345-oem-0000001-54321" +HKLM,%CurrentVersionNT%,"RegisteredOrganization",2,"" +HKLM,%CurrentVersionNT%,"RegisteredOwner",2,"" +HKLM,%CurrentVersionNT%,"SystemRoot",,"%10%" +HKLM,%CurrentVersionNT%\Console,,16 +HKLM,%CurrentVersionNT%\Drivers32,,16 +HKLM,%CurrentVersionNT%\FontDpi,,16 +HKLM,%CurrentVersionNT%\FontLink,,16 +HKLM,%CurrentVersionNT%\FontMapper,,16 +HKLM,%CurrentVersionNT%\Fonts,,16 +HKLM,%CurrentVersionNT%\FontSubstitutes,,16 +HKLM,%CurrentVersionNT%\Gre_Initialize,,16 +HKLM,%CurrentVersionNT%\Hotfix\Q246009,"Installed",,"1" +HKLM,%CurrentVersionNT%\Image File Execution Options,,16 +HKLM,%CurrentVersionNT%\LanguagePack,,16 +HKLM,%CurrentVersionNT%\NetworkCards,,16 +HKLM,%CurrentVersionNT%\OpenGLDrivers,,16 +HKLM,%CurrentVersionNT%\Perflib,,16 +HKLM,%CurrentVersionNT%\Perflib,Last Counter,0x10003,1846 +HKLM,%CurrentVersionNT%\Perflib,Last Help,0x10003,1847 +HKLM,%CurrentVersionNT%\Perflib\009,Counter,0x10002,1,1847,1846,End Marker +HKLM,%CurrentVersionNT%\Perflib\009,Counters,0x10002,1,1847,1846,End Marker +HKLM,%CurrentVersionNT%\Perflib\009,Help,0x10002,1847,End Marker +HKLM,%CurrentVersionNT%\Ports,,16 +HKLM,%CurrentVersionNT%\Print,,16 +HKLM,%CurrentVersionNT%\ProfileList,,16 +; Update/Replace if local_user_sid in server/token.c changes +HKLM,%CurrentVersionNT%\ProfileList\S-1-5-21-0-0-0-1000,,16 +HKLM,%CurrentVersionNT%\ProfileList\S-1-5-21-0-0-0-1000,"ProfileImagePath",0x20000,"%53%" + +[CurrentVersionWow64] +HKLM,%CurrentVersion%,"ProgramFilesDir (x86)",,"%16426%" +HKLM,%CurrentVersion%,"CommonFilesDir (x86)",,"%16428%" + +[Debugger] +HKLM,%CurrentVersionNT%\AeDebug,"Debugger",2,"winedbg --auto %ld %ld" +HKLM,%CurrentVersionNT%\AeDebug,"Auto",2,"1" +HKCU,Software\Wine\Debug,"RelayExclude",2,"ntdll.RtlEnterCriticalSection;ntdll.RtlTryEnterCriticalSection;ntdll.RtlLeaveCriticalSection;kernel32.48;kernel32.49;kernel32.94;kernel32.95;kernel32.96;kernel32.97;kernel32.98;kernel32.TlsGetValue;kernel32.TlsSetValue;kernel32.FlsGetValue;kernel32.FlsSetValue;kernel32.SetLastError" +HKCU,Software\Wine\Debug,"RelayFromExclude",2,"winex11.drv;winemac.drv;user32;gdi32;advapi32;kernel32" + +[DirectX] +HKLM,Software\Microsoft\DirectX,"Version",,"4.09.00.0904" +HKLM,Software\Microsoft\DirectX,"InstalledVersion",1,00,00,00,09,00,00,00,00 +HKLM,Software\Microsoft\DirectMusic,GMFilePath,,"%12%\gm.dls" +HKLM,Software\Microsoft\DirectMusic\Defaults,DefaultOutputPort,,"{58C2B4D0-46E7-11D1-89AC-00A0C9054129}" +HKLM,Software\Microsoft\DirectMusic\SoftwareSynths\{58C2B4D0-46E7-11D1-89AC-00A0C9054129},Description,,"Microsoft Software Synthesizer" +HKLM,Software\Microsoft\DirectPlay\Service Providers\Internet TCP/IP Connection For DirectPlay,"DescriptionA",,"Internet TCP/IP Connection For DirectPlay" +HKLM,Software\Microsoft\DirectPlay\Service Providers\Internet TCP/IP Connection For DirectPlay,"DescriptionW",,"Internet TCP/IP Connection For DirectPlay" +HKLM,Software\Microsoft\DirectPlay\Service Providers\Internet TCP/IP Connection For DirectPlay,"dwReserved1",0x10001,0x000001f4 +HKLM,Software\Microsoft\DirectPlay\Service Providers\Internet TCP/IP Connection For DirectPlay,"dwReserved2",0x10001,0x00000000 +HKLM,Software\Microsoft\DirectPlay\Service Providers\Internet TCP/IP Connection For DirectPlay,"Guid",,"{36E95EE0-8577-11cf-960C-0080C7534E82}" +HKLM,Software\Microsoft\DirectPlay\Service Providers\Internet TCP/IP Connection For DirectPlay,"NATHelp",,"dpnhupnp.dll" +HKLM,Software\Microsoft\DirectPlay\Service Providers\Internet TCP/IP Connection For DirectPlay,"Path",,"dpwsockx.dll" +HKLM,Software\Microsoft\DirectPlay\Service Providers\IPX Connection For DirectPlay,"DescriptionA",,"IPX Connection For DirectPlay" +HKLM,Software\Microsoft\DirectPlay\Service Providers\IPX Connection For DirectPlay,"DescriptionW",,"IPX Connection For DirectPlay" +HKLM,Software\Microsoft\DirectPlay\Service Providers\IPX Connection For DirectPlay,"dwReserved1",0x10001,0x00000032 +HKLM,Software\Microsoft\DirectPlay\Service Providers\IPX Connection For DirectPlay,"dwReserved2",0x10001,0x00000000 +HKLM,Software\Microsoft\DirectPlay\Service Providers\IPX Connection For DirectPlay,"Guid",,"{685BC400-9D2C-11cf-A9CD-00AA006886E3}" +HKLM,Software\Microsoft\DirectPlay\Service Providers\IPX Connection For DirectPlay,"Path",,"dpwsockx.dll" +HKLM,Software\Microsoft\DirectPlay\Service Providers\Modem Connection For DirectPlay,"DescriptionA",,"Modem Connection For DirectPlay" +HKLM,Software\Microsoft\DirectPlay\Service Providers\Modem Connection For DirectPlay,"DescriptionW",,"Modem Connection For DirectPlay" +HKLM,Software\Microsoft\DirectPlay\Service Providers\Modem Connection For DirectPlay,"dwReserved1",0x10001,0x00000000 +HKLM,Software\Microsoft\DirectPlay\Service Providers\Modem Connection For DirectPlay,"dwReserved2",0x10001,0x00000000 +HKLM,Software\Microsoft\DirectPlay\Service Providers\Modem Connection For DirectPlay,"Guid",,"{44EAA760-CB68-11cf-9C4E-00A0C905425E}" +HKLM,Software\Microsoft\DirectPlay\Service Providers\Modem Connection For DirectPlay,"Path",,"dpmodemx.dll" +HKLM,Software\Microsoft\DirectPlay\Service Providers\Serial Connection For DirectPlay,"DescriptionA",,"Serial Connection For DirectPlay" +HKLM,Software\Microsoft\DirectPlay\Service Providers\Serial Connection For DirectPlay,"DescriptionW",,"Serial Connection For DirectPlay" +HKLM,Software\Microsoft\DirectPlay\Service Providers\Serial Connection For DirectPlay,"dwReserved1",0x10001,0x00000000 +HKLM,Software\Microsoft\DirectPlay\Service Providers\Serial Connection For DirectPlay,"dwReserved2",0x10001,0x00000000 +HKLM,Software\Microsoft\DirectPlay\Service Providers\Serial Connection For DirectPlay,"Guid",,"{0F1D6860-88D9-11cf-9C4E-00A0C905425E}" +HKLM,Software\Microsoft\DirectPlay\Service Providers\Serial Connection For DirectPlay,"Path",,"dpmodemx.dll" + +[SessionMgr] +HKLM,%Control%\Session Manager,CriticalSectionTimeout,0x00040002,0x00278d00 +HKLM,%Control%\Session Manager,GlobalFlag,0x00040002,0 +HKLM,%Control%\Session Manager,HeapDeCommitFreeBlockThreshold,0x00040002,0 +HKLM,%Control%\Session Manager,HeapDeCommitTotalFreeThreshold,0x00040002,0 +HKLM,%Control%\Session Manager,HeapSegmentCommit,0x00040002,0 +HKLM,%Control%\Session Manager,HeapSegmentReserve,0x00040002,0 +HKLM,%Control%\Session Manager\Environment,"ComSpec",0x00020000,"%11%\cmd.exe" +HKLM,%Control%\Session Manager\Environment,"PATH",0x00020002,"%11%;%10%;%11%\wbem" +HKLM,%Control%\Session Manager\Environment,"PATHEXT",,".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH" +HKLM,%Control%\Session Manager\Environment,"SystemDrive",2,"c:" +HKLM,%Control%\Session Manager\Environment,"SYSTEMROOT",,"%10%" +HKLM,%Control%\Session Manager\Environment,"TEMP",0x00020002,"%10%\temp" +HKLM,%Control%\Session Manager\Environment,"TMP",0x00020002,"%10%\temp" +HKLM,%Control%\Session Manager\Environment,"windir",0x00020000,"%10%" +HKLM,%Control%\Session Manager\Environment,"winsysdir",,"%11%" +HKLM,%Control%\Session Manager\Memory Management,PagingFiles,,"%24%\pagefile.sys 27 77" +HKLM,%Control%\Session Manager\Memory Management,WriteWatch,0x00040002,1 + +[Fonts] +HKLM,%FontSubStr%,"Arial Baltic,186",,"Arial,186" +HKLM,%FontSubStr%,"Arial CE,238",,"Arial,238" +HKLM,%FontSubStr%,"Arial CYR,204",,"Arial,204" +HKLM,%FontSubStr%,"Arial Greek,161",,"Arial,161" +HKLM,%FontSubStr%,"Arial TUR,162",,"Arial,162" +HKLM,%FontSubStr%,"Courier New Baltic,186",,"Courier New,186" +HKLM,%FontSubStr%,"Courier New CE,238",,"Courier New,238" +HKLM,%FontSubStr%,"Courier New CYR,204",,"Courier New,204" +HKLM,%FontSubStr%,"Courier New Greek,161",,"Courier New,161" +HKLM,%FontSubStr%,"Courier New TUR,162",,"Courier New,162" +HKLM,%FontSubStr%,"Helv",,"MS Sans Serif" +HKLM,%FontSubStr%,"Helvetica",,"Arial" +HKLM,%FontSubStr%,"MS Shell Dlg 2",,"Tahoma" +HKLM,%FontSubStr%,"Times",,"Times New Roman" +HKLM,%FontSubStr%,"Times New Roman Baltic,186",,"Times New Roman,186" +HKLM,%FontSubStr%,"Times New Roman CE,238",,"Times New Roman,238" +HKLM,%FontSubStr%,"Times New Roman CYR,204",,"Times New Roman,204" +HKLM,%FontSubStr%,"Times New Roman Greek,161",,"Times New Roman,161" +HKLM,%FontSubStr%,"Times New Roman TUR,162",,"Times New Roman,162" +HKLM,System\CurrentControlSet\Hardware Profiles\Current\Software\Fonts,"LogPixels",0x10003,0x00000060 + +[MCI] +HKLM,%Mci32Str%,"AVIVideo",,"mciavi32.dll" +HKLM,%Mci32Str%,"CDAudio",,"mcicda.dll" +HKLM,%Mci32Str%,"Sequencer",,"mciseq.dll" +HKLM,%Mci32Str%,"WaveAudio",,"mciwave.dll" +HKLM,%Mci32Str%,"MPEGVideo",,"mciqtz32.dll" + +HKLM,%MciExtStr%,"aifc",,"MPEGVideo" +HKLM,%MciExtStr%,"asf",,"MPEGVideo" +HKLM,%MciExtStr%,"asx",,"MPEGVideo" +HKLM,%MciExtStr%,"au",,"MPEGVideo" +HKLM,%MciExtStr%,"avi",,"AVIVideo" +HKLM,%MciExtStr%,"cda",,"CDAudio" +HKLM,%MciExtStr%,"lsf",,"MPEGVideo" +HKLM,%MciExtStr%,"lsx",,"MPEGVideo" +HKLM,%MciExtStr%,"m1v",,"MPEGVideo" +HKLM,%MciExtStr%,"m3u",,"MPEGVideo" +HKLM,%MciExtStr%,"mid",,"Sequencer" +HKLM,%MciExtStr%,"midi",,"Sequencer" +HKLM,%MciExtStr%,"mp2",,"MPEGVideo" +HKLM,%MciExtStr%,"mp2v",,"MPEGVideo" +HKLM,%MciExtStr%,"mp3",,"MPEGVideo" +HKLM,%MciExtStr%,"mpa",,"MPEGVideo" +HKLM,%MciExtStr%,"mpe",,"MPEGVideo" +HKLM,%MciExtStr%,"mpeg",,"MPEGVideo" +HKLM,%MciExtStr%,"mpg",,"MPEGVideo" +HKLM,%MciExtStr%,"mpv",,"MPEGVideo" +HKLM,%MciExtStr%,"mpv2",,"MPEGVideo" +HKLM,%MciExtStr%,"rmi",,"Sequencer" +HKLM,%MciExtStr%,"snd",,"MPEGVideo" +HKLM,%MciExtStr%,"wav",,"WaveAudio" +HKLM,%MciExtStr%,"wax",,"MPEGVideo" +HKLM,%MciExtStr%,"wm",,"MPEGVideo" +HKLM,%MciExtStr%,"wma",,"MPEGVideo" +HKLM,%MciExtStr%,"wmp",,"MPEGVideo" +HKLM,%MciExtStr%,"wmv",,"MPEGVideo" +HKLM,%MciExtStr%,"wmx",,"MPEGVideo" +HKLM,%MciExtStr%,"wvx",,"MPEGVideo" + +[Misc] +HKLM,Software\Borland\Database Engine\Settings\SYSTEM\INIT,SHAREDMEMLOCATION,,9000 +HKLM,Software\Clients\Mail,,2,"Native Mail Client" +HKLM,Software\Clients\Mail\Native Mail Client,,2,"Native Mail Client" +HKLM,Software\Clients\Mail\Native Mail Client,"DLLPath",2,"%11%\winemapi.dll" +HKLM,Software\Microsoft\Advanced INF Setup,,16 +HKLM,Software\Microsoft\Clients,,16 +HKLM,Software\Microsoft\Cryptography\Calais\Current,,16 +HKLM,Software\Microsoft\Cryptography\Calais\Readers,,16 +HKLM,Software\Microsoft\Cryptography\Services,,16 +HKLM,Software\Microsoft\CTF\SystemShared,,16 +HKLM,Software\Microsoft\CTF\TIP,,16 +HKLM,Software\Microsoft\DFS,,16 +HKLM,Software\Microsoft\Driver Signing,,16 +HKLM,Software\Microsoft\EnterpriseCertificates,,16 +HKLM,Software\Microsoft\EventSystem,,16 +HKLM,Software\Microsoft\MediaPlayer,"Installation DirectoryLFN",2,"%16422%\Windows Media Player" +HKLM,Software\Microsoft\MediaPlayer\PlayerUpgrade,"PlayerVersion",2,"12,0,7601,18840" +HKLM,Software\Microsoft\MSMQ,,16 +HKLM,Software\Microsoft\Non-Driver Signing,,16 +HKLM,Software\Microsoft\Notepad\DefaultFonts,,16 +HKLM,Software\Microsoft\RAS,,16 +HKLM,Software\Microsoft\Rpc\SecurityService,1,2,"secur32.dll" +HKLM,Software\Microsoft\Rpc\SecurityService,10,2,"secur32.dll" +HKLM,Software\Microsoft\Rpc\SecurityService,14,2,"schannel.dll" +HKLM,Software\Microsoft\Rpc\SecurityService,16,2,"secur32.dll" +HKLM,Software\Microsoft\Rpc\SecurityService,18,2,"secur32.dll" +HKLM,Software\Microsoft\Rpc\SecurityService,68,2,"netlogon.dll" +HKLM,Software\Microsoft\Rpc\SecurityService,9,2,"secur32.dll" +HKLM,Software\Microsoft\Shared Tools\MSInfo,,16 +HKLM,Software\Microsoft\SystemCertificates,,16 +HKLM,Software\Microsoft\SystemCertificates\CA\Certificates\23340A0167398E341C5890709FD30EED44FC1964,"Blob",1,\ + 03,00,00,00,01,00,00,00,14,00,00,00,23,34,0a,01,67,39,8e,34,1c,58,90,70,9f,d3,0e,ed,44,fc,19,64,20,00,00,\ + 00,01,00,00,00,81,05,00,00,30,82,05,7d,30,82,03,65,a0,03,02,01,02,02,09,00,87,0d,26,f3,cb,4a,11,1b,30,0d,\ + 06,09,2a,86,48,86,f7,0d,01,01,0d,05,00,30,55,31,0b,30,09,06,03,55,04,06,13,02,55,53,31,13,30,11,06,03,55,\ + 04,08,0c,0a,53,6f,6d,65,2d,53,74,61,74,65,31,0d,30,0b,06,03,55,04,0a,0c,04,57,69,6e,65,31,22,30,20,06,03,\ + 55,04,03,0c,19,49,6e,76,61,6c,69,64,20,64,75,6d,6d,79,20,63,65,72,74,69,66,69,63,61,74,65,30,1e,17,0d,31,\ + 36,30,33,31,33,30,32,31,33,33,31,5a,17,0d,31,36,30,33,31,32,30,32,31,33,33,31,5a,30,55,31,0b,30,09,06,03,\ + 55,04,06,13,02,55,53,31,13,30,11,06,03,55,04,08,0c,0a,53,6f,6d,65,2d,53,74,61,74,65,31,0d,30,0b,06,03,55,\ + 04,0a,0c,04,57,69,6e,65,31,22,30,20,06,03,55,04,03,0c,19,49,6e,76,61,6c,69,64,20,64,75,6d,6d,79,20,63,65,\ + 72,74,69,66,69,63,61,74,65,30,82,02,22,30,0d,06,09,2a,86,48,86,f7,0d,01,01,01,05,00,03,82,02,0f,00,30,82,\ + 02,0a,02,82,02,01,00,ec,26,db,20,a6,25,fc,6d,d7,7f,35,45,2a,bd,26,9a,6c,a7,f3,4c,e7,d4,1b,c1,44,bf,13,61,\ + 9c,93,9f,ff,f2,89,d7,aa,52,d0,e0,d3,41,99,00,a5,82,0e,71,e2,f7,22,0c,9c,3a,21,e1,b2,ba,a8,e2,0b,6f,7c,7c,\ + fb,92,c4,98,9f,01,dd,17,b4,f7,ac,ab,75,40,fb,b8,1d,7c,4f,c2,ac,6f,d5,ed,38,b6,b5,dd,73,fe,3d,21,f7,fd,81,\ + e6,af,fe,85,a4,0b,9c,d2,d2,7f,fd,45,3e,7f,80,ce,69,69,38,e1,5c,9c,bc,fd,4c,8b,64,78,f7,45,56,53,8f,97,aa,\ + 98,3a,49,37,2e,45,a6,dc,04,fc,89,26,71,fd,15,24,3b,66,5c,3d,fe,7f,ef,25,b3,01,94,a1,8f,83,5d,b0,d7,d5,1c,\ + 8e,14,b2,95,f5,52,28,50,ab,81,74,0e,0f,5f,61,fe,4b,03,e0,c4,98,3a,f9,01,c7,f0,c9,66,12,d9,60,17,a9,1e,6b,\ + 2d,91,6b,de,95,96,58,f5,81,21,af,d1,7f,99,01,cb,e6,1d,cf,d3,0f,1e,70,4b,de,2b,2c,fe,1f,1d,d8,76,32,74,8d,\ + bc,4f,0c,33,6d,3b,9f,ba,15,16,28,70,44,6b,da,c5,85,11,4f,bd,4c,00,b4,f1,03,93,89,18,63,1d,ec,3e,ad,6a,b1,\ + fc,07,f7,65,7c,bf,6a,c8,e7,2a,19,40,0a,55,59,39,63,b1,b8,a8,95,20,62,ae,97,82,af,d6,b1,97,ce,ba,29,19,9f,\ + dd,c8,63,a0,80,34,e5,a0,c5,f6,b2,95,b1,8e,34,39,34,08,cb,24,70,a7,fb,8e,34,2c,e4,41,77,ea,05,3b,30,5e,71,\ + b9,64,9f,bf,a6,db,d8,ef,5e,42,9c,4e,5d,47,68,a5,23,15,4f,07,3c,d3,ea,62,ff,af,4c,08,e7,9b,2b,9c,0a,69,f7,\ + 3e,ab,8a,05,40,d2,17,7e,0f,c8,37,2b,e2,62,25,f7,e9,e0,d7,8f,18,ff,46,f9,35,3f,2d,d6,3e,cf,e2,fd,08,0d,1f,\ + 63,ff,80,75,50,3b,a9,44,11,c8,b4,ae,a4,24,17,e3,0d,8a,a5,d3,56,37,97,99,91,c1,62,f9,75,a6,77,e0,25,f6,a4,\ + 9c,83,36,bb,4a,c5,82,c4,86,03,2f,dd,6f,c4,45,ec,fe,d0,51,d6,e0,d2,6a,da,00,30,24,c0,8e,e8,a1,ce,4c,7f,bb,\ + 54,09,05,9e,2b,93,95,c8,ac,39,12,29,56,4e,b0,20,36,9c,a3,b6,cb,46,59,a3,2b,62,2c,2d,57,02,03,01,00,01,a3,\ + 50,30,4e,30,1d,06,03,55,1d,0e,04,16,04,14,d1,85,39,b7,9b,05,e7,f9,54,12,91,68,ed,93,ec,63,eb,d3,8f,14,30,\ + 1f,06,03,55,1d,23,04,18,30,16,80,14,d1,85,39,b7,9b,05,e7,f9,54,12,91,68,ed,93,ec,63,eb,d3,8f,14,30,0c,06,\ + 03,55,1d,13,04,05,30,03,01,01,ff,30,0d,06,09,2a,86,48,86,f7,0d,01,01,0d,05,00,03,82,02,01,00,be,a7,cf,6e,\ + e7,3d,5d,f2,38,0c,f9,69,85,fe,79,25,cf,c5,5b,d3,4e,4b,ec,20,16,1b,46,1a,d9,a4,a1,84,24,9a,4d,0d,44,70,83,\ + be,e3,af,5b,ac,c4,31,e3,d5,f8,cc,af,71,11,2d,ea,a8,44,20,81,8b,e3,f6,da,77,6a,f6,15,f3,11,78,78,76,4f,6d,\ + b6,8c,a5,27,41,0a,16,b6,c8,56,dc,a6,a2,0a,e2,87,e9,ab,f0,05,8b,61,7c,a7,03,2f,30,cc,dd,21,7e,48,43,10,cd,\ + aa,9e,37,69,7c,3e,2f,7b,c1,0c,78,80,aa,18,92,95,a0,2a,9e,2f,a6,33,6b,91,8d,fb,f1,47,16,ec,87,86,7a,26,d3,\ + 57,a9,89,37,76,86,76,9b,96,bf,f1,2a,e3,62,2a,bc,66,7b,91,62,fb,a2,7e,16,c6,6e,84,08,49,b0,9d,5d,42,b7,64,\ + 39,1f,49,a6,a2,98,bc,ca,57,e5,f5,91,c0,6b,6c,94,56,68,34,00,96,25,1d,e5,bb,9e,2f,1a,dd,c2,27,e4,49,f2,54,\ + 68,0a,e3,1b,4c,01,14,0d,64,8c,d6,ab,73,af,51,b6,fe,af,0a,b6,c1,99,36,97,f8,44,48,64,d3,c0,ab,d9,a8,da,06,\ + 1a,27,c3,24,cf,7a,30,12,38,20,6c,71,ea,57,fa,b6,24,23,42,3d,be,07,f9,d7,de,b2,91,20,a6,57,79,06,60,42,cb,\ + 73,2b,98,ea,49,78,ee,47,71,a5,1c,f1,f9,8f,78,49,ad,6f,21,72,1a,d2,90,02,59,01,7d,f1,cd,c7,43,4c,f4,6c,90,\ + 59,38,bf,46,92,09,24,3b,51,2b,49,2a,a7,f9,7c,96,44,e6,ed,8e,7d,85,64,6b,ca,7b,e3,af,bd,73,ae,17,31,52,2a,\ + 9f,a3,3b,dd,3d,33,59,26,7c,6d,46,ff,5b,dd,3c,82,dd,d1,3d,9c,31,2a,82,7e,85,ce,ef,a6,34,98,96,87,7a,2b,a0,\ + a5,5a,9c,2a,5c,f4,79,36,b4,85,87,eb,fd,7e,94,83,40,b0,4f,d7,03,c1,df,75,37,30,4f,46,6b,29,b5,0f,b7,4f,19,\ + 73,79,dd,ee,2d,2c,c8,1f,72,ee,63,4a,32,85,33,57,1d,f5,89,53,4f,b2,1e,20,9b,11,e4,43,99,15,65,c4,a0,ec,cf,\ + d3,0f,d6,b2,2c,8c,a7,6d,5f,11,2f,0e,e4,f7,e9,d4,13,db,fb,f6,0a,51,ac,6c,08,ef,d6,cb,81,86,53,36,a8,a0,02,\ + de,31,47,56,db,65,f1,7e,3a,c8,69,5b,69,ab,34,3e,48,a3 +HKLM,Software\Microsoft\TermServLicensing,,16 +HKLM,Software\Microsoft\Transaction Server,,16 +HKLM,Software\Microsoft\WBEM,"Installation Directory",2,"%11%\wbem" +HKLM,Software\Microsoft\Windows Messaging Subsystem,"MAPI",2,"1" +HKLM,Software\Policies,,16 +HKLM,Software\Registered Applications,,16 +HKLM,System\CurrentControlSet\Control\hivelist,,16 +HKLM,System\CurrentControlSet\Control\Lsa,"Security Packages",0x10002,kerberos,schannel +HKLM,System\CurrentControlSet\Control\Lsa\Kerberos,,16 +HKLM,System\CurrentControlSet\Control\SecurityProviders\Schannel\Protocols\SSL 2.0\Client,"DisabledByDefault",0x10003,1 +HKLM,System\CurrentControlSet\Control\ServiceGroupOrder,"List",0x00010000,"TDI" +HKLM,System\CurrentControlSet\Control\TimeZoneInformation,"StandardName",2,"" +HKLM,System\CurrentControlSet\Control\TimeZoneInformation,"TimeZoneKeyName",2,"" +HKLM,System\CurrentControlSet\Control\VirtualDeviceDrivers,,16 +HKLM,System\CurrentControlSet\Control\VMM32Files,,16 +HKLM,System\Select,"Current",0x10003,1 +HKCU,AppEvents\Schemes\Apps\Explorer\Navigating\.Current,,,"" +HKCU,Software\Microsoft\Protected Storage System Provider,,16 +; Some apps requires at least four subkeys of Active Setup\Installed Components +HKLM,SOFTWARE\Microsoft\Active Setup\Installed Components\{44BBA855-CC51-11CF-AAFA-00AA00B6015F},,2,"DirectDrawEx" +HKLM,SOFTWARE\Microsoft\Active Setup\Installed Components\{44BBA855-CC51-11CF-AAFA-00AA00B6015F},"ComponentID",2,"DirectDrawEx" +HKLM,SOFTWARE\Microsoft\Active Setup\Installed Components\{44BBA855-CC51-11CF-AAFA-00AA00B6015F},"IsInstalled",2,1 +HKLM,SOFTWARE\Microsoft\Active Setup\Installed Components\{44BBA855-CC51-11CF-AAFA-00AA00B6015F},"Locale",2,"*" +HKLM,SOFTWARE\Microsoft\Active Setup\Installed Components\{44BBA855-CC51-11CF-AAFA-00AA00B6015F},"Version",2,"4,71,1113,0" + +HKLM,SOFTWARE\Microsoft\Active Setup\Installed Components\{de5aed00-a4bf-11d1-9948-00c04f98bbc9},,2,"HTML Help" +HKLM,SOFTWARE\Microsoft\Active Setup\Installed Components\{de5aed00-a4bf-11d1-9948-00c04f98bbc9},"ComponentID",2,"HTMLHelp" +HKLM,SOFTWARE\Microsoft\Active Setup\Installed Components\{de5aed00-a4bf-11d1-9948-00c04f98bbc9},"IsInstalled",2,1 +HKLM,SOFTWARE\Microsoft\Active Setup\Installed Components\{de5aed00-a4bf-11d1-9948-00c04f98bbc9},"Locale",2,"*" +HKLM,SOFTWARE\Microsoft\Active Setup\Installed Components\{de5aed00-a4bf-11d1-9948-00c04f98bbc9},"Version",2,"4,74,9273,0" + +HKLM,SOFTWARE\Microsoft\Active Setup\Installed Components\{6BF52A52-394A-11d3-B153-00C04F79FAA6},,2,"Windows Media Player" +HKLM,SOFTWARE\Microsoft\Active Setup\Installed Components\{6BF52A52-394A-11d3-B153-00C04F79FAA6},"ComponentID",2,"wmp" +HKLM,SOFTWARE\Microsoft\Active Setup\Installed Components\{6BF52A52-394A-11d3-B153-00C04F79FAA6},"IsInstalled",2,1 +HKLM,SOFTWARE\Microsoft\Active Setup\Installed Components\{6BF52A52-394A-11d3-B153-00C04F79FAA6},"Locale",2,"*" +HKLM,SOFTWARE\Microsoft\Active Setup\Installed Components\{6BF52A52-394A-11d3-B153-00C04F79FAA6},"Version",2,"12,0,7601,18840" + +[Nls] +HKLM,System\CurrentControlSet\Control\Nls\Codepage,"37",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"0401",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"0402",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"0403",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"0404",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"0405",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"0406",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"0407",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"0408",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"0409",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"040a",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"040b",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"040c",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"040d",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"040e",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"040f",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"0410",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"0411",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"0412",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"0413",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"0414",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"0415",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"0416",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"0418",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"0419",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"041a",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"041b",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"041c",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"041d",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"041e",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"041f",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"0420",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"0421",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"0422",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"0423",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"0424",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"0425",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"0426",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"0427",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"0429",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"042a",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"042b",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"042c",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"042d",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"042f",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"0436",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"0437",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"0438",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"0439",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"043e",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"043f",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"0440",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"0441",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"0443",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"0444",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"0446",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"0447",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"0449",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"044a",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"044b",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"044e",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"044f",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"0450",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"0452",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"0456",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"0457",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"045a",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"0465",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"047e",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"048f",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"0490",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"0491",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"0494",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"0801",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"0804",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"0807",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"0809",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"080a",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"080c",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"0810",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"0813",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"0814",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"0816",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"081a",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"081d",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"082c",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"083e",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"0843",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"0894",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"0c01",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"0c04",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"0c07",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"0c09",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"0c0a",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"0c0c",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"0c1a",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"0c94",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"1001",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"1004",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"1007",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"1009",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"100a",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"100c",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"1401",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"1404",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"1407",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"1409",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"140a",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"140c",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"1801",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"1809",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"180a",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"180c",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"1c01",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"1c09",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"1c0a",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"2001",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"2009",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"200a",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"2401",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"2409",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"240a",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"2801",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"2809",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"280a",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"2c01",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"2c09",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"2c0a",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"3001",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"3009",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"300a",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"3401",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"3409",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"340a",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"3801",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"380a",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"3c01",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"3c0a",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"4001",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"400a",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"440a",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"480a",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"4c0a",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"500a",,"" +HKLM,System\CurrentControlSet\Control\Nls\Language,"Default",,"0409" +HKLM,System\CurrentControlSet\Control\Nls\Language,"InstallLanguage",,"0409" + +HKLM,System\CurrentControlSet\Control\Nls\Language Groups,"1",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Language Groups,"10",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Language Groups,"11",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Language Groups,"2",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Language Groups,"3",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Language Groups,"4",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Language Groups,"5",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Language Groups,"6",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Language Groups,"7",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Language Groups,"8",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Language Groups,"9",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Language Groups,"a",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Language Groups,"b",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Language Groups,"c",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Language Groups,"d",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Language Groups,"e",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Language Groups,"f",,"1" + +HKLM,System\CurrentControlSet\Control\Nls\Locale,,,"00000409" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00000401",,"d" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00000402",,"5" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00000403",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00000404",,"9" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00000405",,"2" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00000406",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00000407",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00000408",,"4" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00000409",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"0000040a",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"0000040b",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"0000040c",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"0000040d",,"c" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"0000040e",,"2" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"0000040f",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00000410",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00000411",,"7" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00000412",,"8" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00000413",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00000414",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00000415",,"2" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00000416",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00000418",,"2" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00000419",,"5" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"0000041a",,"2" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"0000041b",,"2" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"0000041c",,"2" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"0000041d",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"0000041e",,"b" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"0000041f",,"6" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00000420",,"d" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00000421",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00000422",,"5" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00000423",,"5" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00000424",,"2" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00000425",,"3" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00000426",,"3" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00000427",,"3" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00000429",,"d" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"0000042a",,"e" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"0000042b",,"11" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"0000042c",,"6" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"0000042d",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"0000042f",,"5" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00000436",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00000437",,"10" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00000438",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00000439",,"f" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"0000043e",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"0000043f",,"5" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00000440",,"5" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00000441",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00000443",,"6" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00000444",,"5" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00000446",,"f" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00000447",,"f" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00000449",,"f" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"0000044a",,"f" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"0000044b",,"f" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"0000044e",,"f" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"0000044f",,"f" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00000450",,"5" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00000452",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00000456",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00000457",,"f" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"0000045a",,"d" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00000465",,"d" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"0000047e",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"0000048f",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00000490",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00000491",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00000492",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00000494",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00000801",,"d" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00000804",,"a" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00000807",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00000809",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"0000080a",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"0000080c",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00000810",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00000813",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00000814",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00000816",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"0000081a",,"2" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"0000081d",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"0000082c",,"5" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"0000083c",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"0000083e",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00000843",,"5" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00000c01",,"d" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00000c04",,"9" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00000c07",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00000c09",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00000c0a",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00000c0c",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00000c1a",,"5" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00001001",,"d" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00001004",,"a" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00001007",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00001009",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"0000100a",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"0000100c",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00001401",,"d" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00001404",,"9" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00001407",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00001409",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"0000140a",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"0000140c",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00001801",,"d" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00001809",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"0000180a",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"0000180c",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00001c01",,"d" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00001c09",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00001c0a",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00002001",,"d" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00002009",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"0000200a",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00002401",,"d" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00002409",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"0000240a",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00002801",,"d" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00002809",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"0000280a",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00002c01",,"d" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00002c09",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00002c0a",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00003001",,"d" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00003009",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"0000300a",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00003401",,"d" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00003409",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"0000340a",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00003801",,"d" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"0000380a",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00003c01",,"d" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00003c0a",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00004001",,"d" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"0000400a",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"0000440a",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"0000480a",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"00004c0a",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Locale,"0000500a",,"1" + +HKLM,System\CurrentControlSet\Control\Nls\Locale\Alternate Sorts,"00010407",,"1" +HKLM,System\CurrentControlSet\Control\Nls\Locale\Alternate Sorts,"0001040e",,"2" +HKLM,System\CurrentControlSet\Control\Nls\Locale\Alternate Sorts,"00010437",,"10" +HKLM,System\CurrentControlSet\Control\Nls\Locale\Alternate Sorts,"00020804",,"a" +HKLM,System\CurrentControlSet\Control\Nls\Locale\Alternate Sorts,"00021004",,"a" +HKLM,System\CurrentControlSet\Control\Nls\Locale\Alternate Sorts,"00021404",,"9" +HKLM,System\CurrentControlSet\Control\Nls\Locale\Alternate Sorts,"00030404",,"9" + +[OLE] +HKLM,"Software\Microsoft\OLE","EnableDCOM",,"Y" +HKLM,"Software\Microsoft\OLE","EnableRemoteConnect",,"N" + +[Printing] +HKLM,%Control%\Print\Monitors\Local Port,"Driver",2,"localspl.dll" +HKLM,%Control%\Print\Printers,"DefaultSpoolDirectory",2,"%11%\spool\printers" +HKLM,%CurrentVersionNT%\Ports,"FILE:",,"" +HKLM,%CurrentVersionNT%\Ports,"LPT1:",,"" +HKLM,%CurrentVersionNT%\Ports,"LPT2:",,"" +HKLM,%CurrentVersionNT%\Ports,"LPT3:",,"" +HKLM,%CurrentVersionNT%\Ports,"COM1:",2,"9600,n,8,1" +HKLM,%CurrentVersionNT%\Ports,"COM2:",2,"9600,n,8,1" +HKLM,%CurrentVersionNT%\Ports,"COM3:",2,"9600,n,8,1" +HKLM,%CurrentVersionNT%\Ports,"COM4:",2,"9600,n,8,1" + +[Tapi] +HKLM,%CurrentVersion%\Telephony,"Perf1",0x10001,0x5045524a +HKLM,%CurrentVersion%\Telephony,"Perf2",0x10001,0x50455246 +HKLM,%CurrentVersion%\Telephony\Locations,,16 + +HKLM,%CurrentVersion%\Telephony\Country List,"CountryListVersion",0x10001,0x00000019 + +HKLM,%CurrentVersion%\Telephony\Country List\1,"CountryCode",0x10001,0x00000001 +HKLM,%CurrentVersion%\Telephony\Country List\1,"InternationalRule",,"011EFG" +HKLM,%CurrentVersion%\Telephony\Country List\1,"LongDistanceRule",," 1FG" +HKLM,%CurrentVersion%\Telephony\Country List\1,"Name",,"United States of America" +HKLM,%CurrentVersion%\Telephony\Country List\1,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\101,"CountryCode",0x10001,0x00000001 +HKLM,%CurrentVersion%\Telephony\Country List\101,"InternationalRule",,"011EFG" +HKLM,%CurrentVersion%\Telephony\Country List\101,"LongDistanceRule",," 1FG" +HKLM,%CurrentVersion%\Telephony\Country List\101,"Name",,"Anguilla" +HKLM,%CurrentVersion%\Telephony\Country List\101,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\102,"CountryCode",0x10001,0x00000001 +HKLM,%CurrentVersion%\Telephony\Country List\102,"InternationalRule",,"011EFG" +HKLM,%CurrentVersion%\Telephony\Country List\102,"LongDistanceRule",," 1FG" +HKLM,%CurrentVersion%\Telephony\Country List\102,"Name",,"Antigua" +HKLM,%CurrentVersion%\Telephony\Country List\102,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\103,"CountryCode",0x10001,0x00000001 +HKLM,%CurrentVersion%\Telephony\Country List\103,"InternationalRule",,"011EFG" +HKLM,%CurrentVersion%\Telephony\Country List\103,"LongDistanceRule",," 1FG" +HKLM,%CurrentVersion%\Telephony\Country List\103,"Name",,"Bahamas" +HKLM,%CurrentVersion%\Telephony\Country List\103,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\104,"CountryCode",0x10001,0x00000001 +HKLM,%CurrentVersion%\Telephony\Country List\104,"InternationalRule",,"011EFG" +HKLM,%CurrentVersion%\Telephony\Country List\104,"LongDistanceRule",," 1FG" +HKLM,%CurrentVersion%\Telephony\Country List\104,"Name",,"Barbados" +HKLM,%CurrentVersion%\Telephony\Country List\104,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\105,"CountryCode",0x10001,0x00000001 +HKLM,%CurrentVersion%\Telephony\Country List\105,"InternationalRule",,"011EFG" +HKLM,%CurrentVersion%\Telephony\Country List\105,"LongDistanceRule",," 1FG" +HKLM,%CurrentVersion%\Telephony\Country List\105,"Name",,"Bermuda" +HKLM,%CurrentVersion%\Telephony\Country List\105,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\106,"CountryCode",0x10001,0x00000001 +HKLM,%CurrentVersion%\Telephony\Country List\106,"InternationalRule",,"011EFG" +HKLM,%CurrentVersion%\Telephony\Country List\106,"LongDistanceRule",," 1FG" +HKLM,%CurrentVersion%\Telephony\Country List\106,"Name",,"British Virgin Islands" +HKLM,%CurrentVersion%\Telephony\Country List\106,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\107,"CountryCode",0x10001,0x00000001 +HKLM,%CurrentVersion%\Telephony\Country List\107,"InternationalRule",,"011EFG" +HKLM,%CurrentVersion%\Telephony\Country List\107,"LongDistanceRule",," 1FG" +HKLM,%CurrentVersion%\Telephony\Country List\107,"Name",,"Canada" +HKLM,%CurrentVersion%\Telephony\Country List\107,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\108,"CountryCode",0x10001,0x00000001 +HKLM,%CurrentVersion%\Telephony\Country List\108,"InternationalRule",,"011EFG" +HKLM,%CurrentVersion%\Telephony\Country List\108,"LongDistanceRule",," 1FG" +HKLM,%CurrentVersion%\Telephony\Country List\108,"Name",,"Cayman Islands" +HKLM,%CurrentVersion%\Telephony\Country List\108,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\109,"CountryCode",0x10001,0x00000001 +HKLM,%CurrentVersion%\Telephony\Country List\109,"InternationalRule",,"011EFG" +HKLM,%CurrentVersion%\Telephony\Country List\109,"LongDistanceRule",," 1FG" +HKLM,%CurrentVersion%\Telephony\Country List\109,"Name",,"Dominica" +HKLM,%CurrentVersion%\Telephony\Country List\109,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\110,"CountryCode",0x10001,0x00000001 +HKLM,%CurrentVersion%\Telephony\Country List\110,"InternationalRule",,"011EFG" +HKLM,%CurrentVersion%\Telephony\Country List\110,"LongDistanceRule",," 1FG" +HKLM,%CurrentVersion%\Telephony\Country List\110,"Name",,"Dominican Republic" +HKLM,%CurrentVersion%\Telephony\Country List\110,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\111,"CountryCode",0x10001,0x00000001 +HKLM,%CurrentVersion%\Telephony\Country List\111,"InternationalRule",,"011EFG" +HKLM,%CurrentVersion%\Telephony\Country List\111,"LongDistanceRule",," 1FG" +HKLM,%CurrentVersion%\Telephony\Country List\111,"Name",,"Grenada" +HKLM,%CurrentVersion%\Telephony\Country List\111,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\112,"CountryCode",0x10001,0x00000001 +HKLM,%CurrentVersion%\Telephony\Country List\112,"InternationalRule",,"011EFG" +HKLM,%CurrentVersion%\Telephony\Country List\112,"LongDistanceRule",," 1FG" +HKLM,%CurrentVersion%\Telephony\Country List\112,"Name",,"Jamaica" +HKLM,%CurrentVersion%\Telephony\Country List\112,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\113,"CountryCode",0x10001,0x00000001 +HKLM,%CurrentVersion%\Telephony\Country List\113,"InternationalRule",,"011EFG" +HKLM,%CurrentVersion%\Telephony\Country List\113,"LongDistanceRule",," 1FG" +HKLM,%CurrentVersion%\Telephony\Country List\113,"Name",,"Montserrat" +HKLM,%CurrentVersion%\Telephony\Country List\113,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\115,"CountryCode",0x10001,0x00000001 +HKLM,%CurrentVersion%\Telephony\Country List\115,"InternationalRule",,"011EFG" +HKLM,%CurrentVersion%\Telephony\Country List\115,"LongDistanceRule",," 1FG" +HKLM,%CurrentVersion%\Telephony\Country List\115,"Name",,"St. Kitts and Nevis" +HKLM,%CurrentVersion%\Telephony\Country List\115,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\116,"CountryCode",0x10001,0x00000001 +HKLM,%CurrentVersion%\Telephony\Country List\116,"InternationalRule",,"0EFG" +HKLM,%CurrentVersion%\Telephony\Country List\116,"LongDistanceRule",," 1FG" +HKLM,%CurrentVersion%\Telephony\Country List\116,"Name",,"St. Vincent and the Grenadines" +HKLM,%CurrentVersion%\Telephony\Country List\116,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\117,"CountryCode",0x10001,0x00000001 +HKLM,%CurrentVersion%\Telephony\Country List\117,"InternationalRule",,"011EFG" +HKLM,%CurrentVersion%\Telephony\Country List\117,"LongDistanceRule",," 1FG" +HKLM,%CurrentVersion%\Telephony\Country List\117,"Name",,"Trinidad and Tobago" +HKLM,%CurrentVersion%\Telephony\Country List\117,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\118,"CountryCode",0x10001,0x00000001 +HKLM,%CurrentVersion%\Telephony\Country List\118,"InternationalRule",,"0EFG" +HKLM,%CurrentVersion%\Telephony\Country List\118,"LongDistanceRule",," 1FG" +HKLM,%CurrentVersion%\Telephony\Country List\118,"Name",,"Turks and Caicos Islands" +HKLM,%CurrentVersion%\Telephony\Country List\118,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\120,"CountryCode",0x10001,0x00000001 +HKLM,%CurrentVersion%\Telephony\Country List\120,"InternationalRule",,"011EFG" +HKLM,%CurrentVersion%\Telephony\Country List\120,"LongDistanceRule",," 1FG" +HKLM,%CurrentVersion%\Telephony\Country List\120,"Name",,"Barbuda" +HKLM,%CurrentVersion%\Telephony\Country List\120,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\121,"CountryCode",0x10001,0x00000001 +HKLM,%CurrentVersion%\Telephony\Country List\121,"InternationalRule",,"011EFG" +HKLM,%CurrentVersion%\Telephony\Country List\121,"LongDistanceRule",," 1FG" +HKLM,%CurrentVersion%\Telephony\Country List\121,"Name",,"Puerto Rico" +HKLM,%CurrentVersion%\Telephony\Country List\121,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\122,"CountryCode",0x10001,0x00000001 +HKLM,%CurrentVersion%\Telephony\Country List\122,"InternationalRule",,"011EFG" +HKLM,%CurrentVersion%\Telephony\Country List\122,"LongDistanceRule",," 1FG" +HKLM,%CurrentVersion%\Telephony\Country List\122,"Name",,"Saint Lucia" +HKLM,%CurrentVersion%\Telephony\Country List\122,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\123,"CountryCode",0x10001,0x00000001 +HKLM,%CurrentVersion%\Telephony\Country List\123,"InternationalRule",,"011EFG" +HKLM,%CurrentVersion%\Telephony\Country List\123,"LongDistanceRule",," 1FG" +HKLM,%CurrentVersion%\Telephony\Country List\123,"Name",,"United States Virgin Islands" +HKLM,%CurrentVersion%\Telephony\Country List\123,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\124,"CountryCode",0x10001,0x00000001 +HKLM,%CurrentVersion%\Telephony\Country List\124,"InternationalRule",,"011EFG" +HKLM,%CurrentVersion%\Telephony\Country List\124,"LongDistanceRule",," 1FG" +HKLM,%CurrentVersion%\Telephony\Country List\124,"Name",,"Guam" +HKLM,%CurrentVersion%\Telephony\Country List\124,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\20,"CountryCode",0x10001,0x00000014 +HKLM,%CurrentVersion%\Telephony\Country List\20,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\20,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\20,"Name",,"Egypt" +HKLM,%CurrentVersion%\Telephony\Country List\20,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\212,"CountryCode",0x10001,0x000000d4 +HKLM,%CurrentVersion%\Telephony\Country List\212,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\212,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\212,"Name",,"Morocco" +HKLM,%CurrentVersion%\Telephony\Country List\212,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\213,"CountryCode",0x10001,0x000000d5 +HKLM,%CurrentVersion%\Telephony\Country List\213,"InternationalRule",,"00,EFG" +HKLM,%CurrentVersion%\Telephony\Country List\213,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\213,"Name",,"Algeria" +HKLM,%CurrentVersion%\Telephony\Country List\213,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\216,"CountryCode",0x10001,0x000000d8 +HKLM,%CurrentVersion%\Telephony\Country List\216,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\216,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\216,"Name",,"Tunisia" +HKLM,%CurrentVersion%\Telephony\Country List\216,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\218,"CountryCode",0x10001,0x000000da +HKLM,%CurrentVersion%\Telephony\Country List\218,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\218,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\218,"Name",,"Libya" +HKLM,%CurrentVersion%\Telephony\Country List\218,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\220,"CountryCode",0x10001,0x000000dc +HKLM,%CurrentVersion%\Telephony\Country List\220,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\220,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\220,"Name",,"Gambia" +HKLM,%CurrentVersion%\Telephony\Country List\220,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\221,"CountryCode",0x10001,0x000000dd +HKLM,%CurrentVersion%\Telephony\Country List\221,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\221,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\221,"Name",,"Senegal Republic" +HKLM,%CurrentVersion%\Telephony\Country List\221,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\222,"CountryCode",0x10001,0x000000de +HKLM,%CurrentVersion%\Telephony\Country List\222,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\222,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\222,"Name",,"Mauritania" +HKLM,%CurrentVersion%\Telephony\Country List\222,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\223,"CountryCode",0x10001,0x000000df +HKLM,%CurrentVersion%\Telephony\Country List\223,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\223,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\223,"Name",,"Mali" +HKLM,%CurrentVersion%\Telephony\Country List\223,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\224,"CountryCode",0x10001,0x000000e0 +HKLM,%CurrentVersion%\Telephony\Country List\224,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\224,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\224,"Name",,"Guinea" +HKLM,%CurrentVersion%\Telephony\Country List\224,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\225,"CountryCode",0x10001,0x000000e1 +HKLM,%CurrentVersion%\Telephony\Country List\225,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\225,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\225,"Name",,"Cote d'Ivoire" +HKLM,%CurrentVersion%\Telephony\Country List\225,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\226,"CountryCode",0x10001,0x000000e2 +HKLM,%CurrentVersion%\Telephony\Country List\226,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\226,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\226,"Name",,"Burkina Faso" +HKLM,%CurrentVersion%\Telephony\Country List\226,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\227,"CountryCode",0x10001,0x000000e3 +HKLM,%CurrentVersion%\Telephony\Country List\227,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\227,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\227,"Name",,"Niger" +HKLM,%CurrentVersion%\Telephony\Country List\227,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\228,"CountryCode",0x10001,0x000000e4 +HKLM,%CurrentVersion%\Telephony\Country List\228,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\228,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\228,"Name",,"Togo" +HKLM,%CurrentVersion%\Telephony\Country List\228,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\229,"CountryCode",0x10001,0x000000e5 +HKLM,%CurrentVersion%\Telephony\Country List\229,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\229,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\229,"Name",,"Benin" +HKLM,%CurrentVersion%\Telephony\Country List\229,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\230,"CountryCode",0x10001,0x000000e6 +HKLM,%CurrentVersion%\Telephony\Country List\230,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\230,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\230,"Name",,"Mauritius" +HKLM,%CurrentVersion%\Telephony\Country List\230,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\231,"CountryCode",0x10001,0x000000e7 +HKLM,%CurrentVersion%\Telephony\Country List\231,"InternationalRule",,"0EFG" +HKLM,%CurrentVersion%\Telephony\Country List\231,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\231,"Name",,"Liberia" +HKLM,%CurrentVersion%\Telephony\Country List\231,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\232,"CountryCode",0x10001,0x000000e8 +HKLM,%CurrentVersion%\Telephony\Country List\232,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\232,"LongDistanceRule",,"IG" +HKLM,%CurrentVersion%\Telephony\Country List\232,"Name",,"Sierra Leone" +HKLM,%CurrentVersion%\Telephony\Country List\232,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\233,"CountryCode",0x10001,0x000000e9 +HKLM,%CurrentVersion%\Telephony\Country List\233,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\233,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\233,"Name",,"Ghana" +HKLM,%CurrentVersion%\Telephony\Country List\233,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\234,"CountryCode",0x10001,0x000000ea +HKLM,%CurrentVersion%\Telephony\Country List\234,"InternationalRule",,"009EFG" +HKLM,%CurrentVersion%\Telephony\Country List\234,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\234,"Name",,"Nigeria" +HKLM,%CurrentVersion%\Telephony\Country List\234,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\235,"CountryCode",0x10001,0x000000eb +HKLM,%CurrentVersion%\Telephony\Country List\235,"InternationalRule",,"15EFG" +HKLM,%CurrentVersion%\Telephony\Country List\235,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\235,"Name",,"Chad" +HKLM,%CurrentVersion%\Telephony\Country List\235,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\236,"CountryCode",0x10001,0x000000ec +HKLM,%CurrentVersion%\Telephony\Country List\236,"InternationalRule",,"19EFG" +HKLM,%CurrentVersion%\Telephony\Country List\236,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\236,"Name",,"Central African Republic" +HKLM,%CurrentVersion%\Telephony\Country List\236,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\237,"CountryCode",0x10001,0x000000ed +HKLM,%CurrentVersion%\Telephony\Country List\237,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\237,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\237,"Name",,"Cameroon" +HKLM,%CurrentVersion%\Telephony\Country List\237,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\238,"CountryCode",0x10001,0x000000ee +HKLM,%CurrentVersion%\Telephony\Country List\238,"InternationalRule",,"0EFG" +HKLM,%CurrentVersion%\Telephony\Country List\238,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\238,"Name",,"Cape Verde Islands" +HKLM,%CurrentVersion%\Telephony\Country List\238,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\239,"CountryCode",0x10001,0x000000ef +HKLM,%CurrentVersion%\Telephony\Country List\239,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\239,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\239,"Name",,"Sao Tome and Principe" +HKLM,%CurrentVersion%\Telephony\Country List\239,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\240,"CountryCode",0x10001,0x000000f0 +HKLM,%CurrentVersion%\Telephony\Country List\240,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\240,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\240,"Name",,"Equatorial Guinea" +HKLM,%CurrentVersion%\Telephony\Country List\240,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\241,"CountryCode",0x10001,0x000000f1 +HKLM,%CurrentVersion%\Telephony\Country List\241,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\241,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\241,"Name",,"Gabon" +HKLM,%CurrentVersion%\Telephony\Country List\241,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\242,"CountryCode",0x10001,0x000000f2 +HKLM,%CurrentVersion%\Telephony\Country List\242,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\242,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\242,"Name",,"Congo" +HKLM,%CurrentVersion%\Telephony\Country List\242,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\243,"CountryCode",0x10001,0x000000f3 +HKLM,%CurrentVersion%\Telephony\Country List\243,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\243,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\243,"Name",,"Congo, Democratic Republic of the" +HKLM,%CurrentVersion%\Telephony\Country List\243,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\244,"CountryCode",0x10001,0x000000f4 +HKLM,%CurrentVersion%\Telephony\Country List\244,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\244,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\244,"Name",,"Angola" +HKLM,%CurrentVersion%\Telephony\Country List\244,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\245,"CountryCode",0x10001,0x000000f5 +HKLM,%CurrentVersion%\Telephony\Country List\245,"InternationalRule",,"099EFG" +HKLM,%CurrentVersion%\Telephony\Country List\245,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\245,"Name",,"Guinea-Bissau" +HKLM,%CurrentVersion%\Telephony\Country List\245,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\246,"CountryCode",0x10001,0x000000f6 +HKLM,%CurrentVersion%\Telephony\Country List\246,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\246,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\246,"Name",,"Diego Garcia" +HKLM,%CurrentVersion%\Telephony\Country List\246,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\247,"CountryCode",0x10001,0x000000f7 +HKLM,%CurrentVersion%\Telephony\Country List\247,"InternationalRule",,"01EFG" +HKLM,%CurrentVersion%\Telephony\Country List\247,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\247,"Name",,"Ascension Island" +HKLM,%CurrentVersion%\Telephony\Country List\247,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\248,"CountryCode",0x10001,0x000000f8 +HKLM,%CurrentVersion%\Telephony\Country List\248,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\248,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\248,"Name",,"Seychelles" +HKLM,%CurrentVersion%\Telephony\Country List\248,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\249,"CountryCode",0x10001,0x000000f9 +HKLM,%CurrentVersion%\Telephony\Country List\249,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\249,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\249,"Name",,"Sudan" +HKLM,%CurrentVersion%\Telephony\Country List\249,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\250,"CountryCode",0x10001,0x000000fa +HKLM,%CurrentVersion%\Telephony\Country List\250,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\250,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\250,"Name",,"Rwanda" +HKLM,%CurrentVersion%\Telephony\Country List\250,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\251,"CountryCode",0x10001,0x000000fb +HKLM,%CurrentVersion%\Telephony\Country List\251,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\251,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\251,"Name",,"Ethiopia" +HKLM,%CurrentVersion%\Telephony\Country List\251,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\252,"CountryCode",0x10001,0x000000fc +HKLM,%CurrentVersion%\Telephony\Country List\252,"InternationalRule",,"19,EFG" +HKLM,%CurrentVersion%\Telephony\Country List\252,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\252,"Name",,"Somalia" +HKLM,%CurrentVersion%\Telephony\Country List\252,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\253,"CountryCode",0x10001,0x000000fd +HKLM,%CurrentVersion%\Telephony\Country List\253,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\253,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\253,"Name",,"Djibouti" +HKLM,%CurrentVersion%\Telephony\Country List\253,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\254,"CountryCode",0x10001,0x000000fe +HKLM,%CurrentVersion%\Telephony\Country List\254,"InternationalRule",,"000EFG" +HKLM,%CurrentVersion%\Telephony\Country List\254,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\254,"Name",,"Kenya" +HKLM,%CurrentVersion%\Telephony\Country List\254,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\255,"CountryCode",0x10001,0x000000ff +HKLM,%CurrentVersion%\Telephony\Country List\255,"InternationalRule",,"0900EFG" +HKLM,%CurrentVersion%\Telephony\Country List\255,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\255,"Name",,"Tanzania" +HKLM,%CurrentVersion%\Telephony\Country List\255,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\256,"CountryCode",0x10001,0x00000100 +HKLM,%CurrentVersion%\Telephony\Country List\256,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\256,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\256,"Name",,"Uganda" +HKLM,%CurrentVersion%\Telephony\Country List\256,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\257,"CountryCode",0x10001,0x00000101 +HKLM,%CurrentVersion%\Telephony\Country List\257,"InternationalRule",,"90EFG" +HKLM,%CurrentVersion%\Telephony\Country List\257,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\257,"Name",,"Burundi" +HKLM,%CurrentVersion%\Telephony\Country List\257,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\258,"CountryCode",0x10001,0x00000102 +HKLM,%CurrentVersion%\Telephony\Country List\258,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\258,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\258,"Name",,"Mozambique" +HKLM,%CurrentVersion%\Telephony\Country List\258,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\260,"CountryCode",0x10001,0x00000104 +HKLM,%CurrentVersion%\Telephony\Country List\260,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\260,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\260,"Name",,"Zambia" +HKLM,%CurrentVersion%\Telephony\Country List\260,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\261,"CountryCode",0x10001,0x00000105 +HKLM,%CurrentVersion%\Telephony\Country List\261,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\261,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\261,"Name",,"Madagascar" +HKLM,%CurrentVersion%\Telephony\Country List\261,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\262,"CountryCode",0x10001,0x00000106 +HKLM,%CurrentVersion%\Telephony\Country List\262,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\262,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\262,"Name",,"Reunion Island" +HKLM,%CurrentVersion%\Telephony\Country List\262,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\263,"CountryCode",0x10001,0x00000107 +HKLM,%CurrentVersion%\Telephony\Country List\263,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\263,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\263,"Name",,"Zimbabwe" +HKLM,%CurrentVersion%\Telephony\Country List\263,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\264,"CountryCode",0x10001,0x00000108 +HKLM,%CurrentVersion%\Telephony\Country List\264,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\264,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\264,"Name",,"Namibia" +HKLM,%CurrentVersion%\Telephony\Country List\264,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\265,"CountryCode",0x10001,0x00000109 +HKLM,%CurrentVersion%\Telephony\Country List\265,"InternationalRule",,"101EFG" +HKLM,%CurrentVersion%\Telephony\Country List\265,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\265,"Name",,"Malawi" +HKLM,%CurrentVersion%\Telephony\Country List\265,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\266,"CountryCode",0x10001,0x0000010a +HKLM,%CurrentVersion%\Telephony\Country List\266,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\266,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\266,"Name",,"Lesotho" +HKLM,%CurrentVersion%\Telephony\Country List\266,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\267,"CountryCode",0x10001,0x0000010b +HKLM,%CurrentVersion%\Telephony\Country List\267,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\267,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\267,"Name",,"Botswana" +HKLM,%CurrentVersion%\Telephony\Country List\267,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\268,"CountryCode",0x10001,0x0000010c +HKLM,%CurrentVersion%\Telephony\Country List\268,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\268,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\268,"Name",,"Swaziland" +HKLM,%CurrentVersion%\Telephony\Country List\268,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\269,"CountryCode",0x10001,0x0000010d +HKLM,%CurrentVersion%\Telephony\Country List\269,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\269,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\269,"Name",,"Mayotte Island" +HKLM,%CurrentVersion%\Telephony\Country List\269,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\2691,"CountryCode",0x10001,0x0000010d +HKLM,%CurrentVersion%\Telephony\Country List\2691,"InternationalRule",,"10EFG" +HKLM,%CurrentVersion%\Telephony\Country List\2691,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\2691,"Name",,"Comoros" +HKLM,%CurrentVersion%\Telephony\Country List\2691,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\27,"CountryCode",0x10001,0x0000001b +HKLM,%CurrentVersion%\Telephony\Country List\27,"InternationalRule",,"09EFG" +HKLM,%CurrentVersion%\Telephony\Country List\27,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\27,"Name",,"South Africa" +HKLM,%CurrentVersion%\Telephony\Country List\27,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\290,"CountryCode",0x10001,0x00000122 +HKLM,%CurrentVersion%\Telephony\Country List\290,"InternationalRule",,"01EFG" +HKLM,%CurrentVersion%\Telephony\Country List\290,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\290,"Name",,"St. Helena" +HKLM,%CurrentVersion%\Telephony\Country List\290,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\291,"CountryCode",0x10001,0x00000123 +HKLM,%CurrentVersion%\Telephony\Country List\291,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\291,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\291,"Name",,"Eritrea" +HKLM,%CurrentVersion%\Telephony\Country List\291,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\297,"CountryCode",0x10001,0x00000129 +HKLM,%CurrentVersion%\Telephony\Country List\297,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\297,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\297,"Name",,"Aruba" +HKLM,%CurrentVersion%\Telephony\Country List\297,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\298,"CountryCode",0x10001,0x0000012a +HKLM,%CurrentVersion%\Telephony\Country List\298,"InternationalRule",,"009EFG" +HKLM,%CurrentVersion%\Telephony\Country List\298,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\298,"Name",,"Faroe Islands" +HKLM,%CurrentVersion%\Telephony\Country List\298,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\299,"CountryCode",0x10001,0x0000012b +HKLM,%CurrentVersion%\Telephony\Country List\299,"InternationalRule",,"009EFG" +HKLM,%CurrentVersion%\Telephony\Country List\299,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\299,"Name",,"Greenland" +HKLM,%CurrentVersion%\Telephony\Country List\299,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\30,"CountryCode",0x10001,0x0000001e +HKLM,%CurrentVersion%\Telephony\Country List\30,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\30,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\30,"Name",,"Greece" +HKLM,%CurrentVersion%\Telephony\Country List\30,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\31,"CountryCode",0x10001,0x0000001f +HKLM,%CurrentVersion%\Telephony\Country List\31,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\31,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\31,"Name",,"Netherlands" +HKLM,%CurrentVersion%\Telephony\Country List\31,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\32,"CountryCode",0x10001,0x00000020 +HKLM,%CurrentVersion%\Telephony\Country List\32,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\32,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\32,"Name",,"Belgium" +HKLM,%CurrentVersion%\Telephony\Country List\32,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\33,"CountryCode",0x10001,0x00000021 +HKLM,%CurrentVersion%\Telephony\Country List\33,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\33,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\33,"Name",,"France" +HKLM,%CurrentVersion%\Telephony\Country List\33,"SameAreaRule",,"0FG" + +HKLM,%CurrentVersion%\Telephony\Country List\34,"CountryCode",0x10001,0x00000022 +HKLM,%CurrentVersion%\Telephony\Country List\34,"InternationalRule",,"00,EFG" +HKLM,%CurrentVersion%\Telephony\Country List\34,"LongDistanceRule",,"IG" +HKLM,%CurrentVersion%\Telephony\Country List\34,"Name",,"Spain" +HKLM,%CurrentVersion%\Telephony\Country List\34,"SameAreaRule",,"IG" + +HKLM,%CurrentVersion%\Telephony\Country List\350,"CountryCode",0x10001,0x0000015e +HKLM,%CurrentVersion%\Telephony\Country List\350,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\350,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\350,"Name",,"Gibraltar" +HKLM,%CurrentVersion%\Telephony\Country List\350,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\351,"CountryCode",0x10001,0x0000015f +HKLM,%CurrentVersion%\Telephony\Country List\351,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\351,"LongDistanceRule",,"IG" +HKLM,%CurrentVersion%\Telephony\Country List\351,"Name",,"Portugal" +HKLM,%CurrentVersion%\Telephony\Country List\351,"SameAreaRule",,"IG" + +HKLM,%CurrentVersion%\Telephony\Country List\352,"CountryCode",0x10001,0x00000160 +HKLM,%CurrentVersion%\Telephony\Country List\352,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\352,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\352,"Name",,"Luxembourg" +HKLM,%CurrentVersion%\Telephony\Country List\352,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\353,"CountryCode",0x10001,0x00000161 +HKLM,%CurrentVersion%\Telephony\Country List\353,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\353,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\353,"Name",,"Ireland" +HKLM,%CurrentVersion%\Telephony\Country List\353,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\354,"CountryCode",0x10001,0x00000162 +HKLM,%CurrentVersion%\Telephony\Country List\354,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\354,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\354,"Name",,"Iceland" +HKLM,%CurrentVersion%\Telephony\Country List\354,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\355,"CountryCode",0x10001,0x00000163 +HKLM,%CurrentVersion%\Telephony\Country List\355,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\355,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\355,"Name",,"Albania" +HKLM,%CurrentVersion%\Telephony\Country List\355,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\356,"CountryCode",0x10001,0x00000164 +HKLM,%CurrentVersion%\Telephony\Country List\356,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\356,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\356,"Name",,"Malta" +HKLM,%CurrentVersion%\Telephony\Country List\356,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\357,"CountryCode",0x10001,0x00000165 +HKLM,%CurrentVersion%\Telephony\Country List\357,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\357,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\357,"Name",,"Cyprus" +HKLM,%CurrentVersion%\Telephony\Country List\357,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\358,"CountryCode",0x10001,0x00000166 +HKLM,%CurrentVersion%\Telephony\Country List\358,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\358,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\358,"Name",,"Finland" +HKLM,%CurrentVersion%\Telephony\Country List\358,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\359,"CountryCode",0x10001,0x00000167 +HKLM,%CurrentVersion%\Telephony\Country List\359,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\359,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\359,"Name",,"Bulgaria" +HKLM,%CurrentVersion%\Telephony\Country List\359,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\36,"CountryCode",0x10001,0x00000024 +HKLM,%CurrentVersion%\Telephony\Country List\36,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\36,"LongDistanceRule",," 06,FG" +HKLM,%CurrentVersion%\Telephony\Country List\36,"Name",,"Hungary" +HKLM,%CurrentVersion%\Telephony\Country List\36,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\370,"CountryCode",0x10001,0x00000172 +HKLM,%CurrentVersion%\Telephony\Country List\370,"InternationalRule",,"8W10EFG" +HKLM,%CurrentVersion%\Telephony\Country List\370,"LongDistanceRule",," 8WFG" +HKLM,%CurrentVersion%\Telephony\Country List\370,"Name",,"Lithuania" +HKLM,%CurrentVersion%\Telephony\Country List\370,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\371,"CountryCode",0x10001,0x00000173 +HKLM,%CurrentVersion%\Telephony\Country List\371,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\371,"LongDistanceRule",," 8,FG" +HKLM,%CurrentVersion%\Telephony\Country List\371,"Name",,"Latvia" +HKLM,%CurrentVersion%\Telephony\Country List\371,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\372,"CountryCode",0x10001,0x00000174 +HKLM,%CurrentVersion%\Telephony\Country List\372,"InternationalRule",,"8,00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\372,"LongDistanceRule",," 8,2IG" +HKLM,%CurrentVersion%\Telephony\Country List\372,"Name",,"Estonia" +HKLM,%CurrentVersion%\Telephony\Country List\372,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\373,"CountryCode",0x10001,0x00000175 +HKLM,%CurrentVersion%\Telephony\Country List\373,"InternationalRule",,"8W10EFG" +HKLM,%CurrentVersion%\Telephony\Country List\373,"LongDistanceRule",," 8WFG" +HKLM,%CurrentVersion%\Telephony\Country List\373,"Name",,"Moldova" +HKLM,%CurrentVersion%\Telephony\Country List\373,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\374,"CountryCode",0x10001,0x00000176 +HKLM,%CurrentVersion%\Telephony\Country List\374,"InternationalRule",,"8,10EFG" +HKLM,%CurrentVersion%\Telephony\Country List\374,"LongDistanceRule",," 8,IG" +HKLM,%CurrentVersion%\Telephony\Country List\374,"Name",,"Armenia" +HKLM,%CurrentVersion%\Telephony\Country List\374,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\375,"CountryCode",0x10001,0x00000177 +HKLM,%CurrentVersion%\Telephony\Country List\375,"InternationalRule",,"8W10EFG" +HKLM,%CurrentVersion%\Telephony\Country List\375,"LongDistanceRule",," 8WFG" +HKLM,%CurrentVersion%\Telephony\Country List\375,"Name",,"Belarus" +HKLM,%CurrentVersion%\Telephony\Country List\375,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\376,"CountryCode",0x10001,0x00000178 +HKLM,%CurrentVersion%\Telephony\Country List\376,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\376,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\376,"Name",,"Andorra" +HKLM,%CurrentVersion%\Telephony\Country List\376,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\377,"CountryCode",0x10001,0x00000179 +HKLM,%CurrentVersion%\Telephony\Country List\377,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\377,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\377,"Name",,"Monaco" +HKLM,%CurrentVersion%\Telephony\Country List\377,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\378,"CountryCode",0x10001,0x0000017a +HKLM,%CurrentVersion%\Telephony\Country List\378,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\378,"LongDistanceRule",,"IG" +HKLM,%CurrentVersion%\Telephony\Country List\378,"Name",,"San Marino" +HKLM,%CurrentVersion%\Telephony\Country List\378,"SameAreaRule",,"IG" + +HKLM,%CurrentVersion%\Telephony\Country List\379,"CountryCode",0x10001,0x00000027 +HKLM,%CurrentVersion%\Telephony\Country List\379,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\379,"LongDistanceRule",,"IG" +HKLM,%CurrentVersion%\Telephony\Country List\379,"Name",,"Vatican City" +HKLM,%CurrentVersion%\Telephony\Country List\379,"SameAreaRule",,"IG" + +HKLM,%CurrentVersion%\Telephony\Country List\380,"CountryCode",0x10001,0x0000017c +HKLM,%CurrentVersion%\Telephony\Country List\380,"InternationalRule",,"8W10EFG" +HKLM,%CurrentVersion%\Telephony\Country List\380,"LongDistanceRule",," 8WFG" +HKLM,%CurrentVersion%\Telephony\Country List\380,"Name",,"Ukraine" +HKLM,%CurrentVersion%\Telephony\Country List\380,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\381,"CountryCode",0x10001,0x0000017d +HKLM,%CurrentVersion%\Telephony\Country List\381,"InternationalRule",,"99EFG" +HKLM,%CurrentVersion%\Telephony\Country List\381,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\381,"Name",,"Yugoslavia" +HKLM,%CurrentVersion%\Telephony\Country List\381,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\385,"CountryCode",0x10001,0x00000181 +HKLM,%CurrentVersion%\Telephony\Country List\385,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\385,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\385,"Name",,"Croatia" +HKLM,%CurrentVersion%\Telephony\Country List\385,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\386,"CountryCode",0x10001,0x00000182 +HKLM,%CurrentVersion%\Telephony\Country List\386,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\386,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\386,"Name",,"Slovenia" +HKLM,%CurrentVersion%\Telephony\Country List\386,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\387,"CountryCode",0x10001,0x00000183 +HKLM,%CurrentVersion%\Telephony\Country List\387,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\387,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\387,"Name",,"Bosnia and Herzegovina" +HKLM,%CurrentVersion%\Telephony\Country List\387,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\389,"CountryCode",0x10001,0x00000185 +HKLM,%CurrentVersion%\Telephony\Country List\389,"InternationalRule",,"99EFG" +HKLM,%CurrentVersion%\Telephony\Country List\389,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\389,"Name",,"F.Y.R.O.M. (Former Yugoslav Republic of Macedonia)" +HKLM,%CurrentVersion%\Telephony\Country List\389,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\39,"CountryCode",0x10001,0x00000027 +HKLM,%CurrentVersion%\Telephony\Country List\39,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\39,"LongDistanceRule",,"IG" +HKLM,%CurrentVersion%\Telephony\Country List\39,"Name",,"Italy" +HKLM,%CurrentVersion%\Telephony\Country List\39,"SameAreaRule",,"IG" + +HKLM,%CurrentVersion%\Telephony\Country List\40,"CountryCode",0x10001,0x00000028 +HKLM,%CurrentVersion%\Telephony\Country List\40,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\40,"LongDistanceRule",," 0FG" +HKLM,%CurrentVersion%\Telephony\Country List\40,"Name",,"Romania" +HKLM,%CurrentVersion%\Telephony\Country List\40,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\41,"CountryCode",0x10001,0x00000029 +HKLM,%CurrentVersion%\Telephony\Country List\41,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\41,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\41,"Name",,"Switzerland" +HKLM,%CurrentVersion%\Telephony\Country List\41,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\420,"CountryCode",0x10001,0x000001a4 +HKLM,%CurrentVersion%\Telephony\Country List\420,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\420,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\420,"Name",,"Czech Republic" +HKLM,%CurrentVersion%\Telephony\Country List\420,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\421,"CountryCode",0x10001,0x000001a5 +HKLM,%CurrentVersion%\Telephony\Country List\421,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\421,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\421,"Name",,"Slovakia" +HKLM,%CurrentVersion%\Telephony\Country List\421,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\423,"CountryCode",0x10001,0x000001a7 +HKLM,%CurrentVersion%\Telephony\Country List\423,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\423,"LongDistanceRule",,"G" +HKLM,%CurrentVersion%\Telephony\Country List\423,"Name",,"Liechtenstein" +HKLM,%CurrentVersion%\Telephony\Country List\423,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\43,"CountryCode",0x10001,0x0000002b +HKLM,%CurrentVersion%\Telephony\Country List\43,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\43,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\43,"Name",,"Austria" +HKLM,%CurrentVersion%\Telephony\Country List\43,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\44,"CountryCode",0x10001,0x0000002c +HKLM,%CurrentVersion%\Telephony\Country List\44,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\44,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\44,"Name",,"United Kingdom" +HKLM,%CurrentVersion%\Telephony\Country List\44,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\45,"CountryCode",0x10001,0x0000002d +HKLM,%CurrentVersion%\Telephony\Country List\45,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\45,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\45,"Name",,"Denmark" +HKLM,%CurrentVersion%\Telephony\Country List\45,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\46,"CountryCode",0x10001,0x0000002e +HKLM,%CurrentVersion%\Telephony\Country List\46,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\46,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\46,"Name",,"Sweden" +HKLM,%CurrentVersion%\Telephony\Country List\46,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\47,"CountryCode",0x10001,0x0000002f +HKLM,%CurrentVersion%\Telephony\Country List\47,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\47,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\47,"Name",,"Norway" +HKLM,%CurrentVersion%\Telephony\Country List\47,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\48,"CountryCode",0x10001,0x00000030 +HKLM,%CurrentVersion%\Telephony\Country List\48,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\48,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\48,"Name",,"Poland" +HKLM,%CurrentVersion%\Telephony\Country List\48,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\49,"CountryCode",0x10001,0x00000031 +HKLM,%CurrentVersion%\Telephony\Country List\49,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\49,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\49,"Name",,"Germany" +HKLM,%CurrentVersion%\Telephony\Country List\49,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\500,"CountryCode",0x10001,0x000001f4 +HKLM,%CurrentVersion%\Telephony\Country List\500,"InternationalRule",,"0EFG" +HKLM,%CurrentVersion%\Telephony\Country List\500,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\500,"Name",,"Falkland Islands (Islas Malvinas)" +HKLM,%CurrentVersion%\Telephony\Country List\500,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\501,"CountryCode",0x10001,0x000001f5 +HKLM,%CurrentVersion%\Telephony\Country List\501,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\501,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\501,"Name",,"Belize" +HKLM,%CurrentVersion%\Telephony\Country List\501,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\502,"CountryCode",0x10001,0x000001f6 +HKLM,%CurrentVersion%\Telephony\Country List\502,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\502,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\502,"Name",,"Guatemala" +HKLM,%CurrentVersion%\Telephony\Country List\502,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\503,"CountryCode",0x10001,0x000001f7 +HKLM,%CurrentVersion%\Telephony\Country List\503,"InternationalRule",,"0EFG" +HKLM,%CurrentVersion%\Telephony\Country List\503,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\503,"Name",,"El Salvador" +HKLM,%CurrentVersion%\Telephony\Country List\503,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\504,"CountryCode",0x10001,0x000001f8 +HKLM,%CurrentVersion%\Telephony\Country List\504,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\504,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\504,"Name",,"Honduras" +HKLM,%CurrentVersion%\Telephony\Country List\504,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\505,"CountryCode",0x10001,0x000001f9 +HKLM,%CurrentVersion%\Telephony\Country List\505,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\505,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\505,"Name",,"Nicaragua" +HKLM,%CurrentVersion%\Telephony\Country List\505,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\506,"CountryCode",0x10001,0x000001fa +HKLM,%CurrentVersion%\Telephony\Country List\506,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\506,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\506,"Name",,"Costa Rica" +HKLM,%CurrentVersion%\Telephony\Country List\506,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\507,"CountryCode",0x10001,0x000001fb +HKLM,%CurrentVersion%\Telephony\Country List\507,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\507,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\507,"Name",,"Panama" +HKLM,%CurrentVersion%\Telephony\Country List\507,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\508,"CountryCode",0x10001,0x000001fc +HKLM,%CurrentVersion%\Telephony\Country List\508,"InternationalRule",,"00,EFG" +HKLM,%CurrentVersion%\Telephony\Country List\508,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\508,"Name",,"St. Pierre and Miquelon" +HKLM,%CurrentVersion%\Telephony\Country List\508,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\509,"CountryCode",0x10001,0x000001fd +HKLM,%CurrentVersion%\Telephony\Country List\509,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\509,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\509,"Name",,"Haiti" +HKLM,%CurrentVersion%\Telephony\Country List\509,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\51,"CountryCode",0x10001,0x00000033 +HKLM,%CurrentVersion%\Telephony\Country List\51,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\51,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\51,"Name",,"Peru" +HKLM,%CurrentVersion%\Telephony\Country List\51,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\52,"CountryCode",0x10001,0x00000034 +HKLM,%CurrentVersion%\Telephony\Country List\52,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\52,"LongDistanceRule",," 01FG" +HKLM,%CurrentVersion%\Telephony\Country List\52,"Name",,"Mexico" +HKLM,%CurrentVersion%\Telephony\Country List\52,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\53,"CountryCode",0x10001,0x00000035 +HKLM,%CurrentVersion%\Telephony\Country List\53,"InternationalRule",,"119EFG" +HKLM,%CurrentVersion%\Telephony\Country List\53,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\53,"Name",,"Cuba" +HKLM,%CurrentVersion%\Telephony\Country List\53,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\5399,"CountryCode",0x10001,0x00000035 +HKLM,%CurrentVersion%\Telephony\Country List\5399,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\5399,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\5399,"Name",,"Guantanamo Bay" +HKLM,%CurrentVersion%\Telephony\Country List\5399,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\54,"CountryCode",0x10001,0x00000036 +HKLM,%CurrentVersion%\Telephony\Country List\54,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\54,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\54,"Name",,"Argentina" +HKLM,%CurrentVersion%\Telephony\Country List\54,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\55,"CountryCode",0x10001,0x00000037 +HKLM,%CurrentVersion%\Telephony\Country List\55,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\55,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\55,"Name",,"Brazil" +HKLM,%CurrentVersion%\Telephony\Country List\55,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\56,"CountryCode",0x10001,0x00000038 +HKLM,%CurrentVersion%\Telephony\Country List\56,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\56,"LongDistanceRule",,"FG" +HKLM,%CurrentVersion%\Telephony\Country List\56,"Name",,"Chile" +HKLM,%CurrentVersion%\Telephony\Country List\56,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\57,"CountryCode",0x10001,0x00000039 +HKLM,%CurrentVersion%\Telephony\Country List\57,"InternationalRule",,"009EFG" +HKLM,%CurrentVersion%\Telephony\Country List\57,"LongDistanceRule",,"09FG" +HKLM,%CurrentVersion%\Telephony\Country List\57,"Name",,"Colombia" +HKLM,%CurrentVersion%\Telephony\Country List\57,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\58,"CountryCode",0x10001,0x0000003a +HKLM,%CurrentVersion%\Telephony\Country List\58,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\58,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\58,"Name",,"Venezuela" +HKLM,%CurrentVersion%\Telephony\Country List\58,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\590,"CountryCode",0x10001,0x0000024e +HKLM,%CurrentVersion%\Telephony\Country List\590,"InternationalRule",,"00,EFG" +HKLM,%CurrentVersion%\Telephony\Country List\590,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\590,"Name",,"Guadeloupe" +HKLM,%CurrentVersion%\Telephony\Country List\590,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\5901,"CountryCode",0x10001,0x0000024e +HKLM,%CurrentVersion%\Telephony\Country List\5901,"InternationalRule",,"00,EFG" +HKLM,%CurrentVersion%\Telephony\Country List\5901,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\5901,"Name",,"French Antilles" +HKLM,%CurrentVersion%\Telephony\Country List\5901,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\591,"CountryCode",0x10001,0x0000024f +HKLM,%CurrentVersion%\Telephony\Country List\591,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\591,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\591,"Name",,"Bolivia" +HKLM,%CurrentVersion%\Telephony\Country List\591,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\592,"CountryCode",0x10001,0x00000250 +HKLM,%CurrentVersion%\Telephony\Country List\592,"InternationalRule",,"001EFG" +HKLM,%CurrentVersion%\Telephony\Country List\592,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\592,"Name",,"Guyana" +HKLM,%CurrentVersion%\Telephony\Country List\592,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\593,"CountryCode",0x10001,0x00000251 +HKLM,%CurrentVersion%\Telephony\Country List\593,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\593,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\593,"Name",,"Ecuador" +HKLM,%CurrentVersion%\Telephony\Country List\593,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\594,"CountryCode",0x10001,0x00000252 +HKLM,%CurrentVersion%\Telephony\Country List\594,"InternationalRule",,"00,EFG" +HKLM,%CurrentVersion%\Telephony\Country List\594,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\594,"Name",,"French Guiana" +HKLM,%CurrentVersion%\Telephony\Country List\594,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\595,"CountryCode",0x10001,0x00000253 +HKLM,%CurrentVersion%\Telephony\Country List\595,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\595,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\595,"Name",,"Paraguay" +HKLM,%CurrentVersion%\Telephony\Country List\595,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\596,"CountryCode",0x10001,0x00000254 +HKLM,%CurrentVersion%\Telephony\Country List\596,"InternationalRule",,"00,EFG" +HKLM,%CurrentVersion%\Telephony\Country List\596,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\596,"Name",,"Martinique" +HKLM,%CurrentVersion%\Telephony\Country List\596,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\597,"CountryCode",0x10001,0x00000255 +HKLM,%CurrentVersion%\Telephony\Country List\597,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\597,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\597,"Name",,"Suriname" +HKLM,%CurrentVersion%\Telephony\Country List\597,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\598,"CountryCode",0x10001,0x00000256 +HKLM,%CurrentVersion%\Telephony\Country List\598,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\598,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\598,"Name",,"Uruguay" +HKLM,%CurrentVersion%\Telephony\Country List\598,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\599,"CountryCode",0x10001,0x00000257 +HKLM,%CurrentVersion%\Telephony\Country List\599,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\599,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\599,"Name",,"Netherlands Antilles" +HKLM,%CurrentVersion%\Telephony\Country List\599,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\60,"CountryCode",0x10001,0x0000003c +HKLM,%CurrentVersion%\Telephony\Country List\60,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\60,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\60,"Name",,"Malaysia" +HKLM,%CurrentVersion%\Telephony\Country List\60,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\61,"CountryCode",0x10001,0x0000003d +HKLM,%CurrentVersion%\Telephony\Country List\61,"InternationalRule",,"0011EFG" +HKLM,%CurrentVersion%\Telephony\Country List\61,"LongDistanceRule",," 0FG" +HKLM,%CurrentVersion%\Telephony\Country List\61,"Name",,"Australia" +HKLM,%CurrentVersion%\Telephony\Country List\61,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\6101,"CountryCode",0x10001,0x0000003d +HKLM,%CurrentVersion%\Telephony\Country List\6101,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\6101,"LongDistanceRule",," 0FG" +HKLM,%CurrentVersion%\Telephony\Country List\6101,"Name",,"Cocos-Keeling Islands" +HKLM,%CurrentVersion%\Telephony\Country List\6101,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\62,"CountryCode",0x10001,0x0000003e +HKLM,%CurrentVersion%\Telephony\Country List\62,"InternationalRule",,"001EFG" +HKLM,%CurrentVersion%\Telephony\Country List\62,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\62,"Name",,"Indonesia" +HKLM,%CurrentVersion%\Telephony\Country List\62,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\63,"CountryCode",0x10001,0x0000003f +HKLM,%CurrentVersion%\Telephony\Country List\63,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\63,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\63,"Name",,"Philippines" +HKLM,%CurrentVersion%\Telephony\Country List\63,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\64,"CountryCode",0x10001,0x00000040 +HKLM,%CurrentVersion%\Telephony\Country List\64,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\64,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\64,"Name",,"New Zealand" +HKLM,%CurrentVersion%\Telephony\Country List\64,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\65,"CountryCode",0x10001,0x00000041 +HKLM,%CurrentVersion%\Telephony\Country List\65,"InternationalRule",,"001EFG" +HKLM,%CurrentVersion%\Telephony\Country List\65,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\65,"Name",,"Singapore" +HKLM,%CurrentVersion%\Telephony\Country List\65,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\66,"CountryCode",0x10001,0x00000042 +HKLM,%CurrentVersion%\Telephony\Country List\66,"InternationalRule",,"001EFG" +HKLM,%CurrentVersion%\Telephony\Country List\66,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\66,"Name",,"Thailand" +HKLM,%CurrentVersion%\Telephony\Country List\66,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\670,"CountryCode",0x10001,0x0000029e +HKLM,%CurrentVersion%\Telephony\Country List\670,"InternationalRule",,"011EFG" +HKLM,%CurrentVersion%\Telephony\Country List\670,"LongDistanceRule",," 1FG" +HKLM,%CurrentVersion%\Telephony\Country List\670,"Name",,"Saipan Island" +HKLM,%CurrentVersion%\Telephony\Country List\670,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\6701,"CountryCode",0x10001,0x0000029e +HKLM,%CurrentVersion%\Telephony\Country List\6701,"InternationalRule",,"011EFG" +HKLM,%CurrentVersion%\Telephony\Country List\6701,"LongDistanceRule",," 1FG" +HKLM,%CurrentVersion%\Telephony\Country List\6701,"Name",,"Rota Island" +HKLM,%CurrentVersion%\Telephony\Country List\6701,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\6702,"CountryCode",0x10001,0x0000029e +HKLM,%CurrentVersion%\Telephony\Country List\6702,"InternationalRule",,"011EFG" +HKLM,%CurrentVersion%\Telephony\Country List\6702,"LongDistanceRule",," 1FG" +HKLM,%CurrentVersion%\Telephony\Country List\6702,"Name",,"Tinian Island" +HKLM,%CurrentVersion%\Telephony\Country List\6702,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\672,"CountryCode",0x10001,0x000002a0 +HKLM,%CurrentVersion%\Telephony\Country List\672,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\672,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\672,"Name",,"Christmas Island" +HKLM,%CurrentVersion%\Telephony\Country List\672,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\6722,"CountryCode",0x10001,0x000002a0 +HKLM,%CurrentVersion%\Telephony\Country List\6722,"InternationalRule",,"0101EFG" +HKLM,%CurrentVersion%\Telephony\Country List\6722,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\6722,"Name",,"Norfolk Island" +HKLM,%CurrentVersion%\Telephony\Country List\6722,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\673,"CountryCode",0x10001,0x000002a1 +HKLM,%CurrentVersion%\Telephony\Country List\673,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\673,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\673,"Name",,"Brunei" +HKLM,%CurrentVersion%\Telephony\Country List\673,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\674,"CountryCode",0x10001,0x000002a2 +HKLM,%CurrentVersion%\Telephony\Country List\674,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\674,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\674,"Name",,"Nauru" +HKLM,%CurrentVersion%\Telephony\Country List\674,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\675,"CountryCode",0x10001,0x000002a3 +HKLM,%CurrentVersion%\Telephony\Country List\675,"InternationalRule",,"05EFG" +HKLM,%CurrentVersion%\Telephony\Country List\675,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\675,"Name",,"Papua New Guinea" +HKLM,%CurrentVersion%\Telephony\Country List\675,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\676,"CountryCode",0x10001,0x000002a4 +HKLM,%CurrentVersion%\Telephony\Country List\676,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\676,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\676,"Name",,"Tonga" +HKLM,%CurrentVersion%\Telephony\Country List\676,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\677,"CountryCode",0x10001,0x000002a5 +HKLM,%CurrentVersion%\Telephony\Country List\677,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\677,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\677,"Name",,"Solomon Islands" +HKLM,%CurrentVersion%\Telephony\Country List\677,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\678,"CountryCode",0x10001,0x000002a6 +HKLM,%CurrentVersion%\Telephony\Country List\678,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\678,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\678,"Name",,"Vanuatu" +HKLM,%CurrentVersion%\Telephony\Country List\678,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\679,"CountryCode",0x10001,0x000002a7 +HKLM,%CurrentVersion%\Telephony\Country List\679,"InternationalRule",,"05EFG" +HKLM,%CurrentVersion%\Telephony\Country List\679,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\679,"Name",,"Fiji Islands" +HKLM,%CurrentVersion%\Telephony\Country List\679,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\680,"CountryCode",0x10001,0x000002a8 +HKLM,%CurrentVersion%\Telephony\Country List\680,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\680,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\680,"Name",,"Palau" +HKLM,%CurrentVersion%\Telephony\Country List\680,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\681,"CountryCode",0x10001,0x000002a9 +HKLM,%CurrentVersion%\Telephony\Country List\681,"InternationalRule",,"00,EFG" +HKLM,%CurrentVersion%\Telephony\Country List\681,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\681,"Name",,"Wallis and Futuna Islands" +HKLM,%CurrentVersion%\Telephony\Country List\681,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\682,"CountryCode",0x10001,0x000002aa +HKLM,%CurrentVersion%\Telephony\Country List\682,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\682,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\682,"Name",,"Cook Islands" +HKLM,%CurrentVersion%\Telephony\Country List\682,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\683,"CountryCode",0x10001,0x000002ab +HKLM,%CurrentVersion%\Telephony\Country List\683,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\683,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\683,"Name",,"Niue" +HKLM,%CurrentVersion%\Telephony\Country List\683,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\684,"CountryCode",0x10001,0x000002ac +HKLM,%CurrentVersion%\Telephony\Country List\684,"InternationalRule",,"1EFG" +HKLM,%CurrentVersion%\Telephony\Country List\684,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\684,"Name",,"American Samoa" +HKLM,%CurrentVersion%\Telephony\Country List\684,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\685,"CountryCode",0x10001,0x000002ad +HKLM,%CurrentVersion%\Telephony\Country List\685,"InternationalRule",,"0EFG" +HKLM,%CurrentVersion%\Telephony\Country List\685,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\685,"Name",,"Samoa" +HKLM,%CurrentVersion%\Telephony\Country List\685,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\686,"CountryCode",0x10001,0x000002ae +HKLM,%CurrentVersion%\Telephony\Country List\686,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\686,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\686,"Name",,"Kiribati" +HKLM,%CurrentVersion%\Telephony\Country List\686,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\687,"CountryCode",0x10001,0x000002af +HKLM,%CurrentVersion%\Telephony\Country List\687,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\687,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\687,"Name",,"New Caledonia" +HKLM,%CurrentVersion%\Telephony\Country List\687,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\688,"CountryCode",0x10001,0x000002b0 +HKLM,%CurrentVersion%\Telephony\Country List\688,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\688,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\688,"Name",,"Tuvalu" +HKLM,%CurrentVersion%\Telephony\Country List\688,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\689,"CountryCode",0x10001,0x000002b1 +HKLM,%CurrentVersion%\Telephony\Country List\689,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\689,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\689,"Name",,"French Polynesia" +HKLM,%CurrentVersion%\Telephony\Country List\689,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\690,"CountryCode",0x10001,0x000002b2 +HKLM,%CurrentVersion%\Telephony\Country List\690,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\690,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\690,"Name",,"Tokelau" +HKLM,%CurrentVersion%\Telephony\Country List\690,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\691,"CountryCode",0x10001,0x000002b3 +HKLM,%CurrentVersion%\Telephony\Country List\691,"InternationalRule",,"011EFG" +HKLM,%CurrentVersion%\Telephony\Country List\691,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\691,"Name",,"Micronesia, Federated States of" +HKLM,%CurrentVersion%\Telephony\Country List\691,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\692,"CountryCode",0x10001,0x000002b4 +HKLM,%CurrentVersion%\Telephony\Country List\692,"InternationalRule",,"011EFG" +HKLM,%CurrentVersion%\Telephony\Country List\692,"LongDistanceRule",,"1FG" +HKLM,%CurrentVersion%\Telephony\Country List\692,"Name",,"Marshall Islands" +HKLM,%CurrentVersion%\Telephony\Country List\692,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\7,"CountryCode",0x10001,0x00000007 +HKLM,%CurrentVersion%\Telephony\Country List\7,"InternationalRule",,"8W10EFG" +HKLM,%CurrentVersion%\Telephony\Country List\7,"LongDistanceRule",," 8WFG" +HKLM,%CurrentVersion%\Telephony\Country List\7,"Name",,"Russia" +HKLM,%CurrentVersion%\Telephony\Country List\7,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\705,"CountryCode",0x10001,0x00000007 +HKLM,%CurrentVersion%\Telephony\Country List\705,"InternationalRule",,"8W10EFG" +HKLM,%CurrentVersion%\Telephony\Country List\705,"LongDistanceRule",," 8WFG" +HKLM,%CurrentVersion%\Telephony\Country List\705,"Name",,"Kazakhstan" +HKLM,%CurrentVersion%\Telephony\Country List\705,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\708,"CountryCode",0x10001,0x00000007 +HKLM,%CurrentVersion%\Telephony\Country List\708,"InternationalRule",,"8W10EFG" +HKLM,%CurrentVersion%\Telephony\Country List\708,"LongDistanceRule",," 8WFG" +HKLM,%CurrentVersion%\Telephony\Country List\708,"Name",,"Tajikistan" +HKLM,%CurrentVersion%\Telephony\Country List\708,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\800,"CountryCode",0x10001,0x00000320 +HKLM,%CurrentVersion%\Telephony\Country List\800,"InternationalRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\800,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\800,"Name",,"International Freephone Service" +HKLM,%CurrentVersion%\Telephony\Country List\800,"SameAreaRule",,"" + +HKLM,%CurrentVersion%\Telephony\Country List\81,"CountryCode",0x10001,0x00000051 +HKLM,%CurrentVersion%\Telephony\Country List\81,"InternationalRule",,"001EFG" +HKLM,%CurrentVersion%\Telephony\Country List\81,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\81,"Name",,"Japan" +HKLM,%CurrentVersion%\Telephony\Country List\81,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\82,"CountryCode",0x10001,0x00000052 +HKLM,%CurrentVersion%\Telephony\Country List\82,"InternationalRule",,"001EFG" +HKLM,%CurrentVersion%\Telephony\Country List\82,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\82,"Name",,"Korea (Republic of)" +HKLM,%CurrentVersion%\Telephony\Country List\82,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\84,"CountryCode",0x10001,0x00000054 +HKLM,%CurrentVersion%\Telephony\Country List\84,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\84,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\84,"Name",,"Vietnam" +HKLM,%CurrentVersion%\Telephony\Country List\84,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\850,"CountryCode",0x10001,0x00000352 +HKLM,%CurrentVersion%\Telephony\Country List\850,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\850,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\850,"Name",,"Korea (North)" +HKLM,%CurrentVersion%\Telephony\Country List\850,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\852,"CountryCode",0x10001,0x00000354 +HKLM,%CurrentVersion%\Telephony\Country List\852,"InternationalRule",,"001EFG" +HKLM,%CurrentVersion%\Telephony\Country List\852,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\852,"Name",,"Hong Kong S.A.R." +HKLM,%CurrentVersion%\Telephony\Country List\852,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\853,"CountryCode",0x10001,0x00000355 +HKLM,%CurrentVersion%\Telephony\Country List\853,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\853,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\853,"Name",,"Macau S.A.R." +HKLM,%CurrentVersion%\Telephony\Country List\853,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\855,"CountryCode",0x10001,0x00000357 +HKLM,%CurrentVersion%\Telephony\Country List\855,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\855,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\855,"Name",,"Cambodia" +HKLM,%CurrentVersion%\Telephony\Country List\855,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\856,"CountryCode",0x10001,0x00000358 +HKLM,%CurrentVersion%\Telephony\Country List\856,"InternationalRule",,"14EFG" +HKLM,%CurrentVersion%\Telephony\Country List\856,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\856,"Name",,"Laos" +HKLM,%CurrentVersion%\Telephony\Country List\856,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\86,"CountryCode",0x10001,0x00000056 +HKLM,%CurrentVersion%\Telephony\Country List\86,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\86,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\86,"Name",,"China" +HKLM,%CurrentVersion%\Telephony\Country List\86,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\870,"CountryCode",0x10001,0x00000366 +HKLM,%CurrentVersion%\Telephony\Country List\870,"InternationalRule",,"00EFG#" +HKLM,%CurrentVersion%\Telephony\Country List\870,"LongDistanceRule",,"00EFG#" +HKLM,%CurrentVersion%\Telephony\Country List\870,"Name",,"INMARSAT" +HKLM,%CurrentVersion%\Telephony\Country List\870,"SameAreaRule",,"00EFG#" + +HKLM,%CurrentVersion%\Telephony\Country List\871,"CountryCode",0x10001,0x00000367 +HKLM,%CurrentVersion%\Telephony\Country List\871,"InternationalRule",,"00EFG#" +HKLM,%CurrentVersion%\Telephony\Country List\871,"LongDistanceRule",,"00EFG#" +HKLM,%CurrentVersion%\Telephony\Country List\871,"Name",,"INMARSAT (Atlantic-East)" +HKLM,%CurrentVersion%\Telephony\Country List\871,"SameAreaRule",,"00EFG#" + +HKLM,%CurrentVersion%\Telephony\Country List\872,"CountryCode",0x10001,0x00000368 +HKLM,%CurrentVersion%\Telephony\Country List\872,"InternationalRule",,"00EFG#" +HKLM,%CurrentVersion%\Telephony\Country List\872,"LongDistanceRule",,"00EFG#" +HKLM,%CurrentVersion%\Telephony\Country List\872,"Name",,"INMARSAT (Pacific)" +HKLM,%CurrentVersion%\Telephony\Country List\872,"SameAreaRule",,"00EFG#" + +HKLM,%CurrentVersion%\Telephony\Country List\873,"CountryCode",0x10001,0x00000369 +HKLM,%CurrentVersion%\Telephony\Country List\873,"InternationalRule",,"00EFG#" +HKLM,%CurrentVersion%\Telephony\Country List\873,"LongDistanceRule",,"00EFG#" +HKLM,%CurrentVersion%\Telephony\Country List\873,"Name",,"INMARSAT (Indian)" +HKLM,%CurrentVersion%\Telephony\Country List\873,"SameAreaRule",,"00EFG#" + +HKLM,%CurrentVersion%\Telephony\Country List\874,"CountryCode",0x10001,0x0000036a +HKLM,%CurrentVersion%\Telephony\Country List\874,"InternationalRule",,"00EFG#" +HKLM,%CurrentVersion%\Telephony\Country List\874,"LongDistanceRule",,"00EFG#" +HKLM,%CurrentVersion%\Telephony\Country List\874,"Name",,"INMARSAT (Atlantic-West)" +HKLM,%CurrentVersion%\Telephony\Country List\874,"SameAreaRule",,"00EFG#" + +HKLM,%CurrentVersion%\Telephony\Country List\880,"CountryCode",0x10001,0x00000370 +HKLM,%CurrentVersion%\Telephony\Country List\880,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\880,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\880,"Name",,"Bangladesh" +HKLM,%CurrentVersion%\Telephony\Country List\880,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\886,"CountryCode",0x10001,0x00000376 +HKLM,%CurrentVersion%\Telephony\Country List\886,"InternationalRule",,"002EFG" +HKLM,%CurrentVersion%\Telephony\Country List\886,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\886,"Name",,"Taiwan" +HKLM,%CurrentVersion%\Telephony\Country List\886,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\90,"CountryCode",0x10001,0x0000005a +HKLM,%CurrentVersion%\Telephony\Country List\90,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\90,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\90,"Name",,"Turkey" +HKLM,%CurrentVersion%\Telephony\Country List\90,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\91,"CountryCode",0x10001,0x0000005b +HKLM,%CurrentVersion%\Telephony\Country List\91,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\91,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\91,"Name",,"India" +HKLM,%CurrentVersion%\Telephony\Country List\91,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\92,"CountryCode",0x10001,0x0000005c +HKLM,%CurrentVersion%\Telephony\Country List\92,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\92,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\92,"Name",,"Pakistan" +HKLM,%CurrentVersion%\Telephony\Country List\92,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\93,"CountryCode",0x10001,0x0000005d +HKLM,%CurrentVersion%\Telephony\Country List\93,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\93,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\93,"Name",,"Afghanistan" +HKLM,%CurrentVersion%\Telephony\Country List\93,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\94,"CountryCode",0x10001,0x0000005e +HKLM,%CurrentVersion%\Telephony\Country List\94,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\94,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\94,"Name",,"Sri Lanka" +HKLM,%CurrentVersion%\Telephony\Country List\94,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\95,"CountryCode",0x10001,0x0000005f +HKLM,%CurrentVersion%\Telephony\Country List\95,"InternationalRule",,"0EFG" +HKLM,%CurrentVersion%\Telephony\Country List\95,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\95,"Name",,"Myanmar" +HKLM,%CurrentVersion%\Telephony\Country List\95,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\960,"CountryCode",0x10001,0x000003c0 +HKLM,%CurrentVersion%\Telephony\Country List\960,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\960,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\960,"Name",,"Maldives" +HKLM,%CurrentVersion%\Telephony\Country List\960,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\961,"CountryCode",0x10001,0x000003c1 +HKLM,%CurrentVersion%\Telephony\Country List\961,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\961,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\961,"Name",,"Lebanon" +HKLM,%CurrentVersion%\Telephony\Country List\961,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\962,"CountryCode",0x10001,0x000003c2 +HKLM,%CurrentVersion%\Telephony\Country List\962,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\962,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\962,"Name",,"Jordan" +HKLM,%CurrentVersion%\Telephony\Country List\962,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\963,"CountryCode",0x10001,0x000003c3 +HKLM,%CurrentVersion%\Telephony\Country List\963,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\963,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\963,"Name",,"Syria" +HKLM,%CurrentVersion%\Telephony\Country List\963,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\964,"CountryCode",0x10001,0x000003c4 +HKLM,%CurrentVersion%\Telephony\Country List\964,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\964,"LongDistanceRule",,"FG" +HKLM,%CurrentVersion%\Telephony\Country List\964,"Name",,"Iraq" +HKLM,%CurrentVersion%\Telephony\Country List\964,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\965,"CountryCode",0x10001,0x000003c5 +HKLM,%CurrentVersion%\Telephony\Country List\965,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\965,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\965,"Name",,"Kuwait" +HKLM,%CurrentVersion%\Telephony\Country List\965,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\966,"CountryCode",0x10001,0x000003c6 +HKLM,%CurrentVersion%\Telephony\Country List\966,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\966,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\966,"Name",,"Saudi Arabia" +HKLM,%CurrentVersion%\Telephony\Country List\966,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\967,"CountryCode",0x10001,0x000003c7 +HKLM,%CurrentVersion%\Telephony\Country List\967,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\967,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\967,"Name",,"Yemen" +HKLM,%CurrentVersion%\Telephony\Country List\967,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\968,"CountryCode",0x10001,0x000003c8 +HKLM,%CurrentVersion%\Telephony\Country List\968,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\968,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\968,"Name",,"Oman" +HKLM,%CurrentVersion%\Telephony\Country List\968,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\971,"CountryCode",0x10001,0x000003cb +HKLM,%CurrentVersion%\Telephony\Country List\971,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\971,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\971,"Name",,"United Arab Emirates" +HKLM,%CurrentVersion%\Telephony\Country List\971,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\972,"CountryCode",0x10001,0x000003cc +HKLM,%CurrentVersion%\Telephony\Country List\972,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\972,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\972,"Name",,"Israel" +HKLM,%CurrentVersion%\Telephony\Country List\972,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\973,"CountryCode",0x10001,0x000003cd +HKLM,%CurrentVersion%\Telephony\Country List\973,"InternationalRule",,"0EFG" +HKLM,%CurrentVersion%\Telephony\Country List\973,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\973,"Name",,"Bahrain" +HKLM,%CurrentVersion%\Telephony\Country List\973,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\974,"CountryCode",0x10001,0x000003ce +HKLM,%CurrentVersion%\Telephony\Country List\974,"InternationalRule",,"0EFG" +HKLM,%CurrentVersion%\Telephony\Country List\974,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\974,"Name",,"Qatar" +HKLM,%CurrentVersion%\Telephony\Country List\974,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\975,"CountryCode",0x10001,0x000003cf +HKLM,%CurrentVersion%\Telephony\Country List\975,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\975,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\975,"Name",,"Bhutan" +HKLM,%CurrentVersion%\Telephony\Country List\975,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\976,"CountryCode",0x10001,0x000003d0 +HKLM,%CurrentVersion%\Telephony\Country List\976,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\976,"LongDistanceRule",,"0FG" +HKLM,%CurrentVersion%\Telephony\Country List\976,"Name",,"Mongolia" +HKLM,%CurrentVersion%\Telephony\Country List\976,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\977,"CountryCode",0x10001,0x000003d1 +HKLM,%CurrentVersion%\Telephony\Country List\977,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\977,"LongDistanceRule",,"" +HKLM,%CurrentVersion%\Telephony\Country List\977,"Name",,"Nepal" +HKLM,%CurrentVersion%\Telephony\Country List\977,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\98,"CountryCode",0x10001,0x00000062 +HKLM,%CurrentVersion%\Telephony\Country List\98,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\98,"LongDistanceRule",,"FG" +HKLM,%CurrentVersion%\Telephony\Country List\98,"Name",,"Iran" +HKLM,%CurrentVersion%\Telephony\Country List\98,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\993,"CountryCode",0x10001,0x000003e1 +HKLM,%CurrentVersion%\Telephony\Country List\993,"InternationalRule",,"8W10EFG" +HKLM,%CurrentVersion%\Telephony\Country List\993,"LongDistanceRule",," 8WFG" +HKLM,%CurrentVersion%\Telephony\Country List\993,"Name",,"Turkmenistan" +HKLM,%CurrentVersion%\Telephony\Country List\993,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\994,"CountryCode",0x10001,0x000003e2 +HKLM,%CurrentVersion%\Telephony\Country List\994,"InternationalRule",,"8W10EFG" +HKLM,%CurrentVersion%\Telephony\Country List\994,"LongDistanceRule",," 8WFG" +HKLM,%CurrentVersion%\Telephony\Country List\994,"Name",,"Azerbaijan" +HKLM,%CurrentVersion%\Telephony\Country List\994,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\995,"CountryCode",0x10001,0x000003e3 +HKLM,%CurrentVersion%\Telephony\Country List\995,"InternationalRule",,"8W10EFG" +HKLM,%CurrentVersion%\Telephony\Country List\995,"LongDistanceRule",," 8WFG" +HKLM,%CurrentVersion%\Telephony\Country List\995,"Name",,"Georgia" +HKLM,%CurrentVersion%\Telephony\Country List\995,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\996,"CountryCode",0x10001,0x000003e4 +HKLM,%CurrentVersion%\Telephony\Country List\996,"InternationalRule",,"00EFG" +HKLM,%CurrentVersion%\Telephony\Country List\996,"LongDistanceRule",,"8FG" +HKLM,%CurrentVersion%\Telephony\Country List\996,"Name",,"Kyrgyzstan" +HKLM,%CurrentVersion%\Telephony\Country List\996,"SameAreaRule",,"G" + +HKLM,%CurrentVersion%\Telephony\Country List\998,"CountryCode",0x10001,0x000003e6 +HKLM,%CurrentVersion%\Telephony\Country List\998,"InternationalRule",,"8W10EFG" +HKLM,%CurrentVersion%\Telephony\Country List\998,"LongDistanceRule",," 8WFG" +HKLM,%CurrentVersion%\Telephony\Country List\998,"Name",,"Uzbekistan" +HKLM,%CurrentVersion%\Telephony\Country List\998,"SameAreaRule",,"G" + +[RegisterDllsSection] +;;some dlls have to be registered first +11,,shell32.dll,1 +11,,quartz.dll,1 + +11,,cryptdlg.dll,1 +11,,cryptnet.dll,1 +11,,devenum.dll,1 +11,,mlang.dll,1 +11,,mp3dmod.dll,1 +11,,mscoree.dll,1 +11,,mshtml.dll,1 +11,,msisip.dll,1 +11,,qcap.dll,1 +11,,urlmon.dll,1 +11,,windowscodecs.dll,1 +11,,winegstreamer.dll,1 +11,,wineqtdecoder.dll,1 +11,,wintrust.dll,1 +11,,iexplore.exe,1 + +; 32bit-only fake dlls +[FakeDllsWin32] +10,,rundll.exe,rundll.exe16 +10,,twain.dll,twain.dll16 +10,,twain_32.dll +10,twain_32,sane.ds +10,twain_32,gphoto2.ds +10,,winhelp.exe,winhelp.exe16 +10,,winhlp32.exe +10,command,start.exe +10,system,ddeml.dll,ddeml.dll16 +10,system,mmsystem.dll,mmsystem.dll16 +11,,ddhelp.exe +11,,dosx.exe +11,,dsound.vxd +11,,winhlp32.exe + +; 64bit-only fake dlls +[FakeDllsWin64] +10,twain_64,sane.ds +10,twain_64,gphoto2.ds + +; Wow64-only fake dlls +[FakeDllsWow64] +; create some directories first +11,mui, +11,gecko\plugin,npmshtml.dll +11,Speech\Common,sapi.dll +11,wbem,mofcomp.exe +10,syswow64,stdole2.tlb +11,,iexplore.exe +11,,winetest.exe,- +12,,dxgkrnl.sys,- +12,,dxgmms1.sys,- +12,,fltmgr.sys,- +12,,ksecdd.sys,- +12,,mountmgr.sys,- +12,,ndis.sys,- +12,,tdi.sys,- +12,,winebus.sys,- +12,,winehid.sys,- +; skip .NET fake dlls in Wine Mono package +11,,aspnet_regiis.exe,- +11,,ngen.exe,- +11,,fusion.dll,- +11,,regsvcs.exe,- +11,,regasm.exe,- +11,,servicemodelreg.exe,- +11,,presentationfontcache.exe,- +; registration order matters for these +11,,msxml.dll +11,,msxml2.dll +11,,msxml3.dll +11,,msxml4.dll +11,,msxml6.dll +11,,shdocvw.dll +16422,Internet Explorer,iexplore.exe +16422,Windows Media Player,wmplayer.exe +16422,Windows NT\Accessories,wordpad.exe +16427,System\OLE DB,oledb32.dll +16427,System\OLE DB,msdaps.dll +11,,* + +[FakeDlls] +; create some directories first +10,help, +10,inf, +10,logs, +10,tasks, +10,temp, +11,catroot, +11,mui, +11,tasks, +11,spool\drivers\color, +11,spool\printers, +10,,explorer.exe +10,,hh.exe +10,,notepad.exe +10,,regedit.exe +11,,explorer.exe +11,,iexplore.exe +11,,notepad.exe +11,,winetest.exe,- +12,,dxgkrnl.sys +12,,dxgmms1.sys +12,,fltmgr.sys +12,,ksecdd.sys +12,,mountmgr.sys +12,,ndis.sys +12,,tdi.sys +12,,winebus.sys +12,,winehid.sys +; skip .NET fake dlls in Wine Mono package +11,,aspnet_regiis.exe,- +11,,ngen.exe,- +11,,fusion.dll,- +11,,regsvcs.exe,- +11,,regasm.exe,- +11,,servicemodelreg.exe,- +11,,presentationfontcache.exe,- +; registration order matters for these +11,,msxml.dll +11,,msxml2.dll +11,,msxml3.dll +11,,msxml4.dll +11,,msxml6.dll +11,,shdocvw.dll +11,gecko\plugin,npmshtml.dll +11,Speech\Common,sapi.dll +11,wbem,mofcomp.exe +11,wbem,wbemdisp.dll +11,wbem,wbemprox.dll +11,wbem,wmic.exe +11,wbem,wmiutils.dll +; empty folders to make sure the parent dirs are not removed +16410,Microsoft, +16412,Microsoft, +16422,Internet Explorer,iexplore.exe +16422,Windows Media Player,wmplayer.exe +16422,Windows NT\Accessories,wordpad.exe +16427,Microsoft Shared\TextConv, +16427,System\OLE DB,oledb32.dll +16427,System\OLE DB,msdaps.dll +11,,* + +[SystemIni] +system.ini, mci,,"MPEGVideo=mciqtz32.dll" +system.ini, mci,,"MPEGVideo2=mciqtz32.dll" +system.ini, mci,,"avivideo=mciavi32.dll" +system.ini, mci,,"cdaudio=mcicda.dll" +system.ini, mci,,"sequencer=mciseq.dll" +system.ini, mci,,"vcr=mcivisca.drv" +system.ini, mci,,"; videodisc=mcipionr.drv" +system.ini, mci,,"waveaudio=mciwave.dll" + +system.ini, drivers32,,"msacm.imaadpcm=imaadp32.acm" +system.ini, drivers32,,"msacm.msadpcm=msadp32.acm" +system.ini, drivers32,,"msacm.msg711=msg711.acm" +system.ini, drivers32,,"msacm.l3acm=l3codeca.acm" +system.ini, drivers32,,"msacm.msgsm610=msgsm32.acm" +system.ini, drivers32,,"vidc.mrle=msrle32.dll" +system.ini, drivers32,,"vidc.msvc=msvidc32.dll" +system.ini, drivers32,,"vidc.cvid=iccvid.dll" +system.ini, drivers32,,"; vidc.IV50=ir50_32.dll" +system.ini, drivers32,,"; vidc.IV31=ir32_32.dll" +system.ini, drivers32,,"; vidc.IV32=ir32_32.dll" + +[Timezones] +; The timezone information (TZI field) comes from the Olson timezone database +; http://www.twinsun.com/tz/tz-link.htm +; The mapping of Windows timezone names to Olson Tzids is based on the +; Unicode.org CLDR data: +; https://www.unicode.org/cldr/charts/latest/supplemental/zone_tzid.html +HKLM,%CurrentVersionNT%\Time Zones\Afghanistan Standard Time,"Display",,"Asia/Kabul" +HKLM,%CurrentVersionNT%\Time Zones\Afghanistan Standard Time,"Dlt",,"Afghanistan Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\Afghanistan Standard Time,"MUI_Dlt",,"@tzres.dll,-39617" +HKLM,%CurrentVersionNT%\Time Zones\Afghanistan Standard Time,"MUI_Std",,"@tzres.dll,-39616" +HKLM,%CurrentVersionNT%\Time Zones\Afghanistan Standard Time,"Std",,"Afghanistan Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\Afghanistan Standard Time,"TZI",1,f2,fe,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Alaskan Standard Time,"Display",,"America/Anchorage" +HKLM,%CurrentVersionNT%\Time Zones\Alaskan Standard Time,"Dlt",,"Alaskan Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\Alaskan Standard Time,"MUI_Dlt",,"@tzres.dll,-50193" +HKLM,%CurrentVersionNT%\Time Zones\Alaskan Standard Time,"MUI_Std",,"@tzres.dll,-50192" +HKLM,%CurrentVersionNT%\Time Zones\Alaskan Standard Time,"Std",,"Alaskan Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\Alaskan Standard Time,"TZI",1,1c,02,00,00,00,00,00,00,c4,ff,ff,ff,00,00,0b,00,00,00,01,00,02,00,00,00,00,00,00,00,00,00,03,00,00,00,02,00,02,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Arab Standard Time,"Display",,"Asia/Riyadh" +HKLM,%CurrentVersionNT%\Time Zones\Arab Standard Time,"Dlt",,"Arab Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\Arab Standard Time,"MUI_Dlt",,"@tzres.dll,-41969" +HKLM,%CurrentVersionNT%\Time Zones\Arab Standard Time,"MUI_Std",,"@tzres.dll,-41968" +HKLM,%CurrentVersionNT%\Time Zones\Arab Standard Time,"Std",,"Arab Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\Arab Standard Time,"TZI",1,4c,ff,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Arabian Standard Time,"Display",,"Asia/Dubai" +HKLM,%CurrentVersionNT%\Time Zones\Arabian Standard Time,"Dlt",,"Arabian Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\Arabian Standard Time,"MUI_Dlt",,"@tzres.dll,-42705" +HKLM,%CurrentVersionNT%\Time Zones\Arabian Standard Time,"MUI_Std",,"@tzres.dll,-42704" +HKLM,%CurrentVersionNT%\Time Zones\Arabian Standard Time,"Std",,"Arabian Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\Arabian Standard Time,"TZI",1,10,ff,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Arabic Standard Time,"Display",,"Asia/Baghdad" +HKLM,%CurrentVersionNT%\Time Zones\Arabic Standard Time,"Dlt",,"Arabic Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\Arabic Standard Time,"MUI_Dlt",,"@tzres.dll,-8769" +HKLM,%CurrentVersionNT%\Time Zones\Arabic Standard Time,"MUI_Std",,"@tzres.dll,-8768" +HKLM,%CurrentVersionNT%\Time Zones\Arabic Standard Time,"Std",,"Arabic Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\Arabic Standard Time,"TZI",1,4c,ff,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Argentina Standard Time,"Display",,"America/Buenos_Aires" +HKLM,%CurrentVersionNT%\Time Zones\Argentina Standard Time,"Dlt",,"Argentina Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\Argentina Standard Time,"MUI_Dlt",,"@tzres.dll,-19585" +HKLM,%CurrentVersionNT%\Time Zones\Argentina Standard Time,"MUI_Std",,"@tzres.dll,-19584" +HKLM,%CurrentVersionNT%\Time Zones\Argentina Standard Time,"Std",,"Argentina Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\Argentina Standard Time,"TZI",1,b4,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Atlantic Standard Time,"Display",,"America/Halifax" +HKLM,%CurrentVersionNT%\Time Zones\Atlantic Standard Time,"Dlt",,"Atlantic Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\Atlantic Standard Time,"MUI_Dlt",,"@tzres.dll,-34225" +HKLM,%CurrentVersionNT%\Time Zones\Atlantic Standard Time,"MUI_Std",,"@tzres.dll,-34224" +HKLM,%CurrentVersionNT%\Time Zones\Atlantic Standard Time,"Std",,"Atlantic Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\Atlantic Standard Time,"TZI",1,f0,00,00,00,00,00,00,00,c4,ff,ff,ff,00,00,0b,00,00,00,01,00,02,00,00,00,00,00,00,00,00,00,03,00,00,00,02,00,02,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\AUS Central Standard Time,"Display",,"Australia/Darwin" +HKLM,%CurrentVersionNT%\Time Zones\AUS Central Standard Time,"Dlt",,"AUS Central Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\AUS Central Standard Time,"MUI_Dlt",,"@tzres.dll,-47025" +HKLM,%CurrentVersionNT%\Time Zones\AUS Central Standard Time,"MUI_Std",,"@tzres.dll,-47024" +HKLM,%CurrentVersionNT%\Time Zones\AUS Central Standard Time,"Std",,"AUS Central Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\AUS Central Standard Time,"TZI",1,c6,fd,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\AUS Eastern Standard Time,"Display",,"Australia/Sydney" +HKLM,%CurrentVersionNT%\Time Zones\AUS Eastern Standard Time,"Dlt",,"AUS Eastern Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\AUS Eastern Standard Time,"MUI_Dlt",,"@tzres.dll,-30369" +HKLM,%CurrentVersionNT%\Time Zones\AUS Eastern Standard Time,"MUI_Std",,"@tzres.dll,-30368" +HKLM,%CurrentVersionNT%\Time Zones\AUS Eastern Standard Time,"Std",,"AUS Eastern Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\AUS Eastern Standard Time,"TZI",1,a8,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,04,00,00,00,01,00,03,00,00,00,00,00,00,00,00,00,0a,00,00,00,01,00,02,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Azerbaijan Standard Time,"Display",,"Asia/Baku" +HKLM,%CurrentVersionNT%\Time Zones\Azerbaijan Standard Time,"Dlt",,"Azerbaijan Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\Azerbaijan Standard Time,"MUI_Dlt",,"@tzres.dll,-11313" +HKLM,%CurrentVersionNT%\Time Zones\Azerbaijan Standard Time,"MUI_Std",,"@tzres.dll,-11312" +HKLM,%CurrentVersionNT%\Time Zones\Azerbaijan Standard Time,"Std",,"Azerbaijan Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\Azerbaijan Standard Time,"TZI",1,10,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,0a,00,00,00,05,00,05,00,00,00,00,00,00,00,00,00,03,00,00,00,05,00,04,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Azores Standard Time,"Display",,"Atlantic/Azores" +HKLM,%CurrentVersionNT%\Time Zones\Azores Standard Time,"Dlt",,"Azores Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\Azores Standard Time,"MUI_Dlt",,"@tzres.dll,-18833" +HKLM,%CurrentVersionNT%\Time Zones\Azores Standard Time,"MUI_Std",,"@tzres.dll,-18832" +HKLM,%CurrentVersionNT%\Time Zones\Azores Standard Time,"Std",,"Azores Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\Azores Standard Time,"TZI",1,3c,00,00,00,00,00,00,00,c4,ff,ff,ff,00,00,0a,00,00,00,05,00,01,00,00,00,00,00,00,00,00,00,03,00,00,00,05,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Bahia Standard Time,"Display",,"America/Bahia" +HKLM,%CurrentVersionNT%\Time Zones\Bahia Standard Time,"Dlt",,"Bahia Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\Bahia Standard Time,"MUI_Dlt",,"@tzres.dll,-50897" +HKLM,%CurrentVersionNT%\Time Zones\Bahia Standard Time,"MUI_Std",,"@tzres.dll,-50896" +HKLM,%CurrentVersionNT%\Time Zones\Bahia Standard Time,"Std",,"Bahia Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\Bahia Standard Time,"TZI",1,b4,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Bangladesh Standard Time,"Display",,"Asia/Dhaka" +HKLM,%CurrentVersionNT%\Time Zones\Bangladesh Standard Time,"Dlt",,"Bangladesh Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\Bangladesh Standard Time,"MUI_Dlt",,"@tzres.dll,-48721" +HKLM,%CurrentVersionNT%\Time Zones\Bangladesh Standard Time,"MUI_Std",,"@tzres.dll,-48720" +HKLM,%CurrentVersionNT%\Time Zones\Bangladesh Standard Time,"Std",,"Bangladesh Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\Bangladesh Standard Time,"TZI",1,98,fe,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Belarus Standard Time,"Display",,"Europe/Minsk" +HKLM,%CurrentVersionNT%\Time Zones\Belarus Standard Time,"Dlt",,"Belarus Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\Belarus Standard Time,"MUI_Dlt",,"@tzres.dll,-56577" +HKLM,%CurrentVersionNT%\Time Zones\Belarus Standard Time,"MUI_Std",,"@tzres.dll,-56576" +HKLM,%CurrentVersionNT%\Time Zones\Belarus Standard Time,"Std",,"Belarus Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\Belarus Standard Time,"TZI",1,4c,ff,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Canada Central Standard Time,"Display",,"America/Regina" +HKLM,%CurrentVersionNT%\Time Zones\Canada Central Standard Time,"Dlt",,"Canada Central Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\Canada Central Standard Time,"MUI_Dlt",,"@tzres.dll,-25713" +HKLM,%CurrentVersionNT%\Time Zones\Canada Central Standard Time,"MUI_Std",,"@tzres.dll,-25712" +HKLM,%CurrentVersionNT%\Time Zones\Canada Central Standard Time,"Std",,"Canada Central Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\Canada Central Standard Time,"TZI",1,68,01,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Cape Verde Standard Time,"Display",,"Atlantic/Cape_Verde" +HKLM,%CurrentVersionNT%\Time Zones\Cape Verde Standard Time,"Dlt",,"Cape Verde Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\Cape Verde Standard Time,"MUI_Dlt",,"@tzres.dll,-2001" +HKLM,%CurrentVersionNT%\Time Zones\Cape Verde Standard Time,"MUI_Std",,"@tzres.dll,-2000" +HKLM,%CurrentVersionNT%\Time Zones\Cape Verde Standard Time,"Std",,"Cape Verde Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\Cape Verde Standard Time,"TZI",1,3c,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Caucasus Standard Time,"Display",,"Asia/Yerevan" +HKLM,%CurrentVersionNT%\Time Zones\Caucasus Standard Time,"Dlt",,"Caucasus Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\Caucasus Standard Time,"MUI_Dlt",,"@tzres.dll,-29873" +HKLM,%CurrentVersionNT%\Time Zones\Caucasus Standard Time,"MUI_Std",,"@tzres.dll,-29872" +HKLM,%CurrentVersionNT%\Time Zones\Caucasus Standard Time,"Std",,"Caucasus Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\Caucasus Standard Time,"TZI",1,10,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,0a,00,00,00,05,00,03,00,00,00,00,00,00,00,00,00,03,00,00,00,05,00,02,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Cen. Australia Standard Time,"Display",,"Australia/Adelaide" +HKLM,%CurrentVersionNT%\Time Zones\Cen. Australia Standard Time,"Dlt",,"Cen. Australia Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\Cen. Australia Standard Time,"MUI_Dlt",,"@tzres.dll,-38929" +HKLM,%CurrentVersionNT%\Time Zones\Cen. Australia Standard Time,"MUI_Std",,"@tzres.dll,-38928" +HKLM,%CurrentVersionNT%\Time Zones\Cen. Australia Standard Time,"Std",,"Cen. Australia Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\Cen. Australia Standard Time,"TZI",1,c6,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,04,00,00,00,01,00,03,00,00,00,00,00,00,00,00,00,0a,00,00,00,01,00,02,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Central America Standard Time,"Display",,"America/Guatemala" +HKLM,%CurrentVersionNT%\Time Zones\Central America Standard Time,"Dlt",,"Central America Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\Central America Standard Time,"MUI_Dlt",,"@tzres.dll,-36657" +HKLM,%CurrentVersionNT%\Time Zones\Central America Standard Time,"MUI_Std",,"@tzres.dll,-36656" +HKLM,%CurrentVersionNT%\Time Zones\Central America Standard Time,"Std",,"Central America Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\Central America Standard Time,"TZI",1,68,01,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Central Asia Standard Time,"Display",,"Asia/Almaty" +HKLM,%CurrentVersionNT%\Time Zones\Central Asia Standard Time,"Dlt",,"Central Asia Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\Central Asia Standard Time,"MUI_Dlt",,"@tzres.dll,-8177" +HKLM,%CurrentVersionNT%\Time Zones\Central Asia Standard Time,"MUI_Std",,"@tzres.dll,-8176" +HKLM,%CurrentVersionNT%\Time Zones\Central Asia Standard Time,"Std",,"Central Asia Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\Central Asia Standard Time,"TZI",1,98,fe,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Central Brazilian Standard Time,"Display",,"America/Cuiaba" +HKLM,%CurrentVersionNT%\Time Zones\Central Brazilian Standard Time,"Dlt",,"Central Brazilian Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\Central Brazilian Standard Time,"MUI_Dlt",,"@tzres.dll,-56337" +HKLM,%CurrentVersionNT%\Time Zones\Central Brazilian Standard Time,"MUI_Std",,"@tzres.dll,-56336" +HKLM,%CurrentVersionNT%\Time Zones\Central Brazilian Standard Time,"Std",,"Central Brazilian Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\Central Brazilian Standard Time,"TZI",1,f0,00,00,00,00,00,00,00,c4,ff,ff,ff,00,00,02,00,00,00,03,00,00,00,00,00,00,00,00,00,00,00,0a,00,00,00,03,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Central Brazilian Standard Time\Dynamic DST,"2015",1,f0,00,00,00,00,00,00,00,c4,ff,ff,ff,df,07,02,00,00,00,16,00,00,00,00,00,00,00,00,00,df,07,0a,00,00,00,12,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Central Brazilian Standard Time\Dynamic DST,"2023",1,f0,00,00,00,00,00,00,00,c4,ff,ff,ff,e7,07,02,00,00,00,1a,00,00,00,00,00,00,00,00,00,e7,07,0a,00,00,00,0f,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Central Brazilian Standard Time\Dynamic DST,"2026",1,f0,00,00,00,00,00,00,00,c4,ff,ff,ff,ea,07,02,00,00,00,16,00,00,00,00,00,00,00,00,00,ea,07,0a,00,00,00,12,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Central Brazilian Standard Time\Dynamic DST,"2034",1,f0,00,00,00,00,00,00,00,c4,ff,ff,ff,f2,07,02,00,00,00,1a,00,00,00,00,00,00,00,00,00,f2,07,0a,00,00,00,0f,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Central Brazilian Standard Time\Dynamic DST,"2037",1,f0,00,00,00,00,00,00,00,c4,ff,ff,ff,f5,07,02,00,00,00,16,00,00,00,00,00,00,00,00,00,f5,07,0a,00,00,00,12,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Central Brazilian Standard Time\Dynamic DST,"FirstEntry",0x10001,2015 +HKLM,%CurrentVersionNT%\Time Zones\Central Brazilian Standard Time\Dynamic DST,"LastEntry",0x10001,2037 +HKLM,%CurrentVersionNT%\Time Zones\Central Europe Standard Time,"Display",,"Europe/Budapest" +HKLM,%CurrentVersionNT%\Time Zones\Central Europe Standard Time,"Dlt",,"Central Europe Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\Central Europe Standard Time,"MUI_Dlt",,"@tzres.dll,-4897" +HKLM,%CurrentVersionNT%\Time Zones\Central Europe Standard Time,"MUI_Std",,"@tzres.dll,-4896" +HKLM,%CurrentVersionNT%\Time Zones\Central Europe Standard Time,"Std",,"Central Europe Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\Central Europe Standard Time,"TZI",1,c4,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,0a,00,00,00,05,00,03,00,00,00,00,00,00,00,00,00,03,00,00,00,05,00,02,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Central European Standard Time,"Display",,"Europe/Warsaw" +HKLM,%CurrentVersionNT%\Time Zones\Central European Standard Time,"Dlt",,"Central European Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\Central European Standard Time,"MUI_Dlt",,"@tzres.dll,-2977" +HKLM,%CurrentVersionNT%\Time Zones\Central European Standard Time,"MUI_Std",,"@tzres.dll,-2976" +HKLM,%CurrentVersionNT%\Time Zones\Central European Standard Time,"Std",,"Central European Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\Central European Standard Time,"TZI",1,c4,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,0a,00,00,00,05,00,03,00,00,00,00,00,00,00,00,00,03,00,00,00,05,00,02,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Central Pacific Standard Time,"Display",,"Pacific/Guadalcanal" +HKLM,%CurrentVersionNT%\Time Zones\Central Pacific Standard Time,"Dlt",,"Central Pacific Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\Central Pacific Standard Time,"MUI_Dlt",,"@tzres.dll,-64417" +HKLM,%CurrentVersionNT%\Time Zones\Central Pacific Standard Time,"MUI_Std",,"@tzres.dll,-64416" +HKLM,%CurrentVersionNT%\Time Zones\Central Pacific Standard Time,"Std",,"Central Pacific Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\Central Pacific Standard Time,"TZI",1,6c,fd,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Central Standard Time,"Display",,"America/Chicago" +HKLM,%CurrentVersionNT%\Time Zones\Central Standard Time,"Dlt",,"Central Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\Central Standard Time,"MUI_Dlt",,"@tzres.dll,-17457" +HKLM,%CurrentVersionNT%\Time Zones\Central Standard Time,"MUI_Std",,"@tzres.dll,-17456" +HKLM,%CurrentVersionNT%\Time Zones\Central Standard Time,"Std",,"Central Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\Central Standard Time,"TZI",1,68,01,00,00,00,00,00,00,c4,ff,ff,ff,00,00,0b,00,00,00,01,00,02,00,00,00,00,00,00,00,00,00,03,00,00,00,02,00,02,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Central Standard Time (Mexico),"Display",,"America/Mexico_City" +HKLM,%CurrentVersionNT%\Time Zones\Central Standard Time (Mexico),"Dlt",,"Central Daylight Time (Mexico)" +HKLM,%CurrentVersionNT%\Time Zones\Central Standard Time (Mexico),"MUI_Dlt",,"@tzres.dll,-32801" +HKLM,%CurrentVersionNT%\Time Zones\Central Standard Time (Mexico),"MUI_Std",,"@tzres.dll,-32800" +HKLM,%CurrentVersionNT%\Time Zones\Central Standard Time (Mexico),"Std",,"Central Standard Time (Mexico)" +HKLM,%CurrentVersionNT%\Time Zones\Central Standard Time (Mexico),"TZI",1,68,01,00,00,00,00,00,00,c4,ff,ff,ff,00,00,0a,00,00,00,05,00,02,00,00,00,00,00,00,00,00,00,04,00,00,00,01,00,02,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\China Standard Time,"Display",,"Asia/Shanghai" +HKLM,%CurrentVersionNT%\Time Zones\China Standard Time,"Dlt",,"China Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\China Standard Time,"MUI_Dlt",,"@tzres.dll,-161" +HKLM,%CurrentVersionNT%\Time Zones\China Standard Time,"MUI_Std",,"@tzres.dll,-160" +HKLM,%CurrentVersionNT%\Time Zones\China Standard Time,"Std",,"China Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\China Standard Time,"TZI",1,20,fe,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Dateline Standard Time,"Display",,"Etc/GMT+12" +HKLM,%CurrentVersionNT%\Time Zones\Dateline Standard Time,"Dlt",,"Dateline Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\Dateline Standard Time,"MUI_Dlt",,"@tzres.dll,-50385" +HKLM,%CurrentVersionNT%\Time Zones\Dateline Standard Time,"MUI_Std",,"@tzres.dll,-50384" +HKLM,%CurrentVersionNT%\Time Zones\Dateline Standard Time,"Std",,"Dateline Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\Dateline Standard Time,"TZI",1,30,fd,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\E. Africa Standard Time,"Display",,"Africa/Nairobi" +HKLM,%CurrentVersionNT%\Time Zones\E. Africa Standard Time,"Dlt",,"E. Africa Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\E. Africa Standard Time,"MUI_Dlt",,"@tzres.dll,-62721" +HKLM,%CurrentVersionNT%\Time Zones\E. Africa Standard Time,"MUI_Std",,"@tzres.dll,-62720" +HKLM,%CurrentVersionNT%\Time Zones\E. Africa Standard Time,"Std",,"E. Africa Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\E. Africa Standard Time,"TZI",1,4c,ff,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\E. Australia Standard Time,"Display",,"Australia/Brisbane" +HKLM,%CurrentVersionNT%\Time Zones\E. Australia Standard Time,"Dlt",,"E. Australia Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\E. Australia Standard Time,"MUI_Dlt",,"@tzres.dll,-65265" +HKLM,%CurrentVersionNT%\Time Zones\E. Australia Standard Time,"MUI_Std",,"@tzres.dll,-65264" +HKLM,%CurrentVersionNT%\Time Zones\E. Australia Standard Time,"Std",,"E. Australia Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\E. Australia Standard Time,"TZI",1,a8,fd,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\E. South America Standard Time,"Display",,"America/Sao_Paulo" +HKLM,%CurrentVersionNT%\Time Zones\E. South America Standard Time,"Dlt",,"E. South America Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\E. South America Standard Time,"MUI_Dlt",,"@tzres.dll,-64097" +HKLM,%CurrentVersionNT%\Time Zones\E. South America Standard Time,"MUI_Std",,"@tzres.dll,-64096" +HKLM,%CurrentVersionNT%\Time Zones\E. South America Standard Time,"Std",,"E. South America Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\E. South America Standard Time,"TZI",1,b4,00,00,00,00,00,00,00,c4,ff,ff,ff,00,00,02,00,00,00,03,00,00,00,00,00,00,00,00,00,00,00,0b,00,00,00,01,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\E. South America Standard Time\Dynamic DST,"2015",1,b4,00,00,00,00,00,00,00,c4,ff,ff,ff,df,07,02,00,00,00,16,00,00,00,00,00,00,00,00,00,df,07,0a,00,00,00,12,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\E. South America Standard Time\Dynamic DST,"2023",1,b4,00,00,00,00,00,00,00,c4,ff,ff,ff,e7,07,02,00,00,00,1a,00,00,00,00,00,00,00,00,00,e7,07,0a,00,00,00,0f,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\E. South America Standard Time\Dynamic DST,"2026",1,b4,00,00,00,00,00,00,00,c4,ff,ff,ff,ea,07,02,00,00,00,16,00,00,00,00,00,00,00,00,00,ea,07,0a,00,00,00,12,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\E. South America Standard Time\Dynamic DST,"2034",1,b4,00,00,00,00,00,00,00,c4,ff,ff,ff,f2,07,02,00,00,00,1a,00,00,00,00,00,00,00,00,00,f2,07,0a,00,00,00,0f,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\E. South America Standard Time\Dynamic DST,"2037",1,b4,00,00,00,00,00,00,00,c4,ff,ff,ff,f5,07,02,00,00,00,16,00,00,00,00,00,00,00,00,00,f5,07,0a,00,00,00,12,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\E. South America Standard Time\Dynamic DST,"FirstEntry",0x10001,2015 +HKLM,%CurrentVersionNT%\Time Zones\E. South America Standard Time\Dynamic DST,"LastEntry",0x10001,2037 +HKLM,%CurrentVersionNT%\Time Zones\Easter Island Standard Time,"Display",,"Pacific/Easter"" +HKLM,%CurrentVersionNT%\Time Zones\Easter Island Standard Time,"Dlt",,"Easter Island Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\Easter Island Standard Time,"MUI_Dlt",,"@tzres.dll,-58593" +HKLM,%CurrentVersionNT%\Time Zones\Easter Island Standard Time,"MUI_Std",,"@tzres.dll,-58592" +HKLM,%CurrentVersionNT%\Time Zones\Easter Island Standard Time,"Std",,"Easter Island Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\Easter Island Standard Time,"TZI",1,2c,01,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Easter Island Standard Time\Dynamic DST,"2015",1,2c,01,00,00,00,00,00,00,c4,ff,ff,ff,df,07,04,00,06,00,19,00,17,00,00,00,00,00,00,00,e0,07,01,00,05,00,01,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Easter Island Standard Time\Dynamic DST,"FirstEntry",0x10001,2015 +HKLM,%CurrentVersionNT%\Time Zones\Easter Island Standard Time\Dynamic DST,"LastEntry",0x10001,2015 +HKLM,%CurrentVersionNT%\Time Zones\Eastern Standard Time,"Display",,"America/New_York" +HKLM,%CurrentVersionNT%\Time Zones\Eastern Standard Time,"Dlt",,"Eastern Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\Eastern Standard Time,"MUI_Dlt",,"@tzres.dll,-30801" +HKLM,%CurrentVersionNT%\Time Zones\Eastern Standard Time,"MUI_Std",,"@tzres.dll,-30800" +HKLM,%CurrentVersionNT%\Time Zones\Eastern Standard Time,"Std",,"Eastern Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\Eastern Standard Time,"TZI",1,2c,01,00,00,00,00,00,00,c4,ff,ff,ff,00,00,0b,00,00,00,01,00,02,00,00,00,00,00,00,00,00,00,03,00,00,00,02,00,02,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Egypt Standard Time,"Display",,"Africa/Cairo" +HKLM,%CurrentVersionNT%\Time Zones\Egypt Standard Time,"Dlt",,"Egypt Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\Egypt Standard Time,"MUI_Dlt",,"@tzres.dll,-59425" +HKLM,%CurrentVersionNT%\Time Zones\Egypt Standard Time,"MUI_Std",,"@tzres.dll,-59424" +HKLM,%CurrentVersionNT%\Time Zones\Egypt Standard Time,"Std",,"Egypt Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\Egypt Standard Time,"TZI",1,88,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,08,00,05,00,05,00,00,00,00,00,00,00,00,00,00,00,04,00,05,00,04,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Ekaterinburg Standard Time,"Display",,"Asia/Yekaterinburg" +HKLM,%CurrentVersionNT%\Time Zones\Ekaterinburg Standard Time,"Dlt",,"Ekaterinburg Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\Ekaterinburg Standard Time,"MUI_Dlt",,"@tzres.dll,-45953" +HKLM,%CurrentVersionNT%\Time Zones\Ekaterinburg Standard Time,"MUI_Std",,"@tzres.dll,-45952" +HKLM,%CurrentVersionNT%\Time Zones\Ekaterinburg Standard Time,"Std",,"Ekaterinburg Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\Ekaterinburg Standard Time,"TZI",1,d4,fe,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Fiji Standard Time,"Display",,"Pacific/Fiji" +HKLM,%CurrentVersionNT%\Time Zones\Fiji Standard Time,"Dlt",,"Fiji Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\Fiji Standard Time,"MUI_Dlt",,"@tzres.dll,-25681" +HKLM,%CurrentVersionNT%\Time Zones\Fiji Standard Time,"MUI_Std",,"@tzres.dll,-25680" +HKLM,%CurrentVersionNT%\Time Zones\Fiji Standard Time,"Std",,"Fiji Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\Fiji Standard Time,"TZI",1,30,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,01,00,00,00,03,00,03,00,00,00,00,00,00,00,00,00,0b,00,00,00,01,00,02,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Fiji Standard Time\Dynamic DST,"2016",1,30,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,e0,07,01,00,00,00,18,00,03,00,00,00,00,00,00,00,e0,07,0b,00,00,00,06,00,02,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Fiji Standard Time\Dynamic DST,"2017",1,30,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,e1,07,01,00,00,00,16,00,03,00,00,00,00,00,00,00,e1,07,0b,00,00,00,05,00,02,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Fiji Standard Time\Dynamic DST,"2021",1,30,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,e5,07,01,00,00,00,18,00,03,00,00,00,00,00,00,00,e5,07,0b,00,00,00,07,00,02,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Fiji Standard Time\Dynamic DST,"2022",1,30,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,e6,07,01,00,00,00,17,00,03,00,00,00,00,00,00,00,e6,07,0b,00,00,00,06,00,02,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Fiji Standard Time\Dynamic DST,"2023",1,30,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,e7,07,01,00,00,00,16,00,03,00,00,00,00,00,00,00,e7,07,0b,00,00,00,05,00,02,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Fiji Standard Time\Dynamic DST,"2027",1,30,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,eb,07,01,00,00,00,18,00,03,00,00,00,00,00,00,00,eb,07,0b,00,00,00,07,00,02,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Fiji Standard Time\Dynamic DST,"2028",1,30,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,ec,07,01,00,00,00,17,00,03,00,00,00,00,00,00,00,ec,07,0b,00,00,00,05,00,02,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Fiji Standard Time\Dynamic DST,"2033",1,30,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,f1,07,01,00,00,00,17,00,03,00,00,00,00,00,00,00,f1,07,0b,00,00,00,06,00,02,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Fiji Standard Time\Dynamic DST,"2034",1,30,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,f2,07,01,00,00,00,16,00,03,00,00,00,00,00,00,00,f2,07,0b,00,00,00,05,00,02,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Fiji Standard Time\Dynamic DST,"2038",1,30,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,f6,07,01,00,00,00,18,00,03,00,00,00,00,00,00,00,f6,07,0b,00,00,00,07,00,02,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Fiji Standard Time\Dynamic DST,"2039",1,30,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,f7,07,01,00,00,00,17,00,03,00,00,00,00,00,00,00,f7,07,0b,00,00,00,06,00,02,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Fiji Standard Time\Dynamic DST,"2040",1,30,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,f8,07,01,00,00,00,16,00,03,00,00,00,00,00,00,00,f8,07,0b,00,00,00,04,00,02,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Fiji Standard Time\Dynamic DST,"2044",1,30,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,fc,07,01,00,00,00,18,00,03,00,00,00,00,00,00,00,fc,07,0b,00,00,00,06,00,02,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Fiji Standard Time\Dynamic DST,"2045",1,30,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,fd,07,01,00,00,00,16,00,03,00,00,00,00,00,00,00,fd,07,0b,00,00,00,05,00,02,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Fiji Standard Time\Dynamic DST,"2049",1,30,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,01,08,01,00,00,00,18,00,03,00,00,00,00,00,00,00,01,08,0b,00,00,00,07,00,02,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Fiji Standard Time\Dynamic DST,"2050",1,30,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,02,08,01,00,00,00,17,00,03,00,00,00,00,00,00,00,02,08,0b,00,00,00,06,00,02,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Fiji Standard Time\Dynamic DST,"2051",1,30,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,03,08,01,00,00,00,16,00,03,00,00,00,00,00,00,00,03,08,0b,00,00,00,05,00,02,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Fiji Standard Time\Dynamic DST,"2055",1,30,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,07,08,01,00,00,00,18,00,03,00,00,00,00,00,00,00,07,08,0b,00,00,00,07,00,02,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Fiji Standard Time\Dynamic DST,"2056",1,30,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,08,08,01,00,00,00,17,00,03,00,00,00,00,00,00,00,08,08,0b,00,00,00,05,00,02,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Fiji Standard Time\Dynamic DST,"2061",1,30,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,0d,08,01,00,00,00,17,00,03,00,00,00,00,00,00,00,0d,08,0b,00,00,00,06,00,02,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Fiji Standard Time\Dynamic DST,"2062",1,30,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,0e,08,01,00,00,00,16,00,03,00,00,00,00,00,00,00,0e,08,0b,00,00,00,05,00,02,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Fiji Standard Time\Dynamic DST,"2066",1,30,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,12,08,01,00,00,00,18,00,03,00,00,00,00,00,00,00,12,08,0b,00,00,00,07,00,02,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Fiji Standard Time\Dynamic DST,"2067",1,30,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,13,08,01,00,00,00,17,00,03,00,00,00,00,00,00,00,13,08,0b,00,00,00,06,00,02,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Fiji Standard Time\Dynamic DST,"2068",1,30,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,14,08,01,00,00,00,16,00,03,00,00,00,00,00,00,00,14,08,0b,00,00,00,04,00,02,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Fiji Standard Time\Dynamic DST,"2072",1,30,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,18,08,01,00,00,00,18,00,03,00,00,00,00,00,00,00,18,08,0b,00,00,00,06,00,02,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Fiji Standard Time\Dynamic DST,"2073",1,30,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,19,08,01,00,00,00,16,00,03,00,00,00,00,00,00,00,19,08,0b,00,00,00,05,00,02,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Fiji Standard Time\Dynamic DST,"2077",1,30,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,1d,08,01,00,00,00,18,00,03,00,00,00,00,00,00,00,1d,08,0b,00,00,00,07,00,02,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Fiji Standard Time\Dynamic DST,"2078",1,30,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,1e,08,01,00,00,00,17,00,03,00,00,00,00,00,00,00,1e,08,0b,00,00,00,06,00,02,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Fiji Standard Time\Dynamic DST,"2079",1,30,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,1f,08,01,00,00,00,16,00,03,00,00,00,00,00,00,00,1f,08,0b,00,00,00,05,00,02,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Fiji Standard Time\Dynamic DST,"2083",1,30,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,23,08,01,00,00,00,18,00,03,00,00,00,00,00,00,00,23,08,0b,00,00,00,07,00,02,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Fiji Standard Time\Dynamic DST,"2084",1,30,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,24,08,01,00,00,00,17,00,03,00,00,00,00,00,00,00,24,08,0b,00,00,00,05,00,02,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Fiji Standard Time\Dynamic DST,"2089",1,30,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,29,08,01,00,00,00,17,00,03,00,00,00,00,00,00,00,29,08,0b,00,00,00,06,00,02,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Fiji Standard Time\Dynamic DST,"2090",1,30,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,2a,08,01,00,00,00,16,00,03,00,00,00,00,00,00,00,2a,08,0b,00,00,00,05,00,02,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Fiji Standard Time\Dynamic DST,"2094",1,30,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,2e,08,01,00,00,00,18,00,03,00,00,00,00,00,00,00,2e,08,0b,00,00,00,07,00,02,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Fiji Standard Time\Dynamic DST,"2095",1,30,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,2f,08,01,00,00,00,17,00,03,00,00,00,00,00,00,00,2f,08,0b,00,00,00,06,00,02,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Fiji Standard Time\Dynamic DST,"2096",1,30,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,30,08,01,00,00,00,16,00,03,00,00,00,00,00,00,00,30,08,0b,00,00,00,04,00,02,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Fiji Standard Time\Dynamic DST,"FirstEntry",0x10001,2016 +HKLM,%CurrentVersionNT%\Time Zones\Fiji Standard Time\Dynamic DST,"LastEntry",0x10001,2096 +HKLM,%CurrentVersionNT%\Time Zones\FLE Standard Time,"Display",,"Europe/Kiev" +HKLM,%CurrentVersionNT%\Time Zones\FLE Standard Time,"Dlt",,"FLE Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\FLE Standard Time,"MUI_Dlt",,"@tzres.dll,-63265" +HKLM,%CurrentVersionNT%\Time Zones\FLE Standard Time,"MUI_Std",,"@tzres.dll,-63264" +HKLM,%CurrentVersionNT%\Time Zones\FLE Standard Time,"Std",,"FLE Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\FLE Standard Time,"TZI",1,88,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,0a,00,00,00,05,00,04,00,00,00,00,00,00,00,00,00,03,00,00,00,05,00,03,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Georgian Standard Time,"Display",,"Asia/Tbilisi" +HKLM,%CurrentVersionNT%\Time Zones\Georgian Standard Time,"Dlt",,"Georgian Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\Georgian Standard Time,"MUI_Dlt",,"@tzres.dll,-417" +HKLM,%CurrentVersionNT%\Time Zones\Georgian Standard Time,"MUI_Std",,"@tzres.dll,-416" +HKLM,%CurrentVersionNT%\Time Zones\Georgian Standard Time,"Std",,"Georgian Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\Georgian Standard Time,"TZI",1,10,ff,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\GMT Standard Time,"Display",,"Europe/London" +HKLM,%CurrentVersionNT%\Time Zones\GMT Standard Time,"Dlt",,"GMT Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\GMT Standard Time,"MUI_Dlt",,"@tzres.dll,-7409" +HKLM,%CurrentVersionNT%\Time Zones\GMT Standard Time,"MUI_Std",,"@tzres.dll,-7408" +HKLM,%CurrentVersionNT%\Time Zones\GMT Standard Time,"Std",,"GMT Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\GMT Standard Time,"TZI",1,00,00,00,00,00,00,00,00,c4,ff,ff,ff,00,00,0a,00,00,00,05,00,02,00,00,00,00,00,00,00,00,00,03,00,00,00,05,00,01,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Greenland Standard Time,"Display",,"America/Godthab" +HKLM,%CurrentVersionNT%\Time Zones\Greenland Standard Time,"Dlt",,"Greenland Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\Greenland Standard Time,"MUI_Dlt",,"@tzres.dll,-58097" +HKLM,%CurrentVersionNT%\Time Zones\Greenland Standard Time,"MUI_Std",,"@tzres.dll,-58096" +HKLM,%CurrentVersionNT%\Time Zones\Greenland Standard Time,"Std",,"Greenland Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\Greenland Standard Time,"TZI",1,b4,00,00,00,00,00,00,00,c4,ff,ff,ff,00,00,0a,00,06,00,05,00,17,00,00,00,00,00,00,00,00,00,03,00,06,00,05,00,16,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Greenland Standard Time\Dynamic DST,"2015",1,b4,00,00,00,00,00,00,00,c4,ff,ff,ff,df,07,0a,00,06,00,18,00,17,00,00,00,00,00,00,00,df,07,03,00,06,00,1c,00,16,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Greenland Standard Time\Dynamic DST,"2018",1,b4,00,00,00,00,00,00,00,c4,ff,ff,ff,e2,07,0a,00,06,00,1b,00,17,00,00,00,00,00,00,00,e2,07,03,00,06,00,18,00,16,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Greenland Standard Time\Dynamic DST,"2020",1,b4,00,00,00,00,00,00,00,c4,ff,ff,ff,e4,07,0a,00,06,00,18,00,17,00,00,00,00,00,00,00,e4,07,03,00,06,00,1c,00,16,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Greenland Standard Time\Dynamic DST,"2026",1,b4,00,00,00,00,00,00,00,c4,ff,ff,ff,ea,07,0a,00,06,00,18,00,17,00,00,00,00,00,00,00,ea,07,03,00,06,00,1c,00,16,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Greenland Standard Time\Dynamic DST,"2029",1,b4,00,00,00,00,00,00,00,c4,ff,ff,ff,ed,07,0a,00,06,00,1b,00,17,00,00,00,00,00,00,00,ed,07,03,00,06,00,18,00,16,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Greenland Standard Time\Dynamic DST,"2035",1,b4,00,00,00,00,00,00,00,c4,ff,ff,ff,f3,07,0a,00,06,00,1b,00,17,00,00,00,00,00,00,00,f3,07,03,00,06,00,18,00,16,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Greenland Standard Time\Dynamic DST,"2037",1,b4,00,00,00,00,00,00,00,c4,ff,ff,ff,f5,07,0a,00,06,00,18,00,17,00,00,00,00,00,00,00,f5,07,03,00,06,00,1c,00,16,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Greenland Standard Time\Dynamic DST,"2040",1,b4,00,00,00,00,00,00,00,c4,ff,ff,ff,f8,07,0a,00,06,00,1b,00,17,00,00,00,00,00,00,00,f8,07,03,00,06,00,18,00,16,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Greenland Standard Time\Dynamic DST,"2043",1,b4,00,00,00,00,00,00,00,c4,ff,ff,ff,fb,07,0a,00,06,00,18,00,17,00,00,00,00,00,00,00,fb,07,03,00,06,00,1c,00,16,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Greenland Standard Time\Dynamic DST,"2046",1,b4,00,00,00,00,00,00,00,c4,ff,ff,ff,fe,07,0a,00,06,00,1b,00,17,00,00,00,00,00,00,00,fe,07,03,00,06,00,18,00,16,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Greenland Standard Time\Dynamic DST,"2048",1,b4,00,00,00,00,00,00,00,c4,ff,ff,ff,00,08,0a,00,06,00,18,00,17,00,00,00,00,00,00,00,00,08,03,00,06,00,1c,00,16,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Greenland Standard Time\Dynamic DST,"2054",1,b4,00,00,00,00,00,00,00,c4,ff,ff,ff,06,08,0a,00,06,00,18,00,17,00,00,00,00,00,00,00,06,08,03,00,06,00,1c,00,16,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Greenland Standard Time\Dynamic DST,"2057",1,b4,00,00,00,00,00,00,00,c4,ff,ff,ff,09,08,0a,00,06,00,1b,00,17,00,00,00,00,00,00,00,09,08,03,00,06,00,18,00,16,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Greenland Standard Time\Dynamic DST,"2063",1,b4,00,00,00,00,00,00,00,c4,ff,ff,ff,0f,08,0a,00,06,00,1b,00,17,00,00,00,00,00,00,00,0f,08,03,00,06,00,18,00,16,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Greenland Standard Time\Dynamic DST,"2065",1,b4,00,00,00,00,00,00,00,c4,ff,ff,ff,11,08,0a,00,06,00,18,00,17,00,00,00,00,00,00,00,11,08,03,00,06,00,1c,00,16,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Greenland Standard Time\Dynamic DST,"2068",1,b4,00,00,00,00,00,00,00,c4,ff,ff,ff,14,08,0a,00,06,00,1b,00,17,00,00,00,00,00,00,00,14,08,03,00,06,00,18,00,16,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Greenland Standard Time\Dynamic DST,"2071",1,b4,00,00,00,00,00,00,00,c4,ff,ff,ff,17,08,0a,00,06,00,18,00,17,00,00,00,00,00,00,00,17,08,03,00,06,00,1c,00,16,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Greenland Standard Time\Dynamic DST,"2074",1,b4,00,00,00,00,00,00,00,c4,ff,ff,ff,1a,08,0a,00,06,00,1b,00,17,00,00,00,00,00,00,00,1a,08,03,00,06,00,18,00,16,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Greenland Standard Time\Dynamic DST,"2076",1,b4,00,00,00,00,00,00,00,c4,ff,ff,ff,1c,08,0a,00,06,00,18,00,17,00,00,00,00,00,00,00,1c,08,03,00,06,00,1c,00,16,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Greenland Standard Time\Dynamic DST,"2082",1,b4,00,00,00,00,00,00,00,c4,ff,ff,ff,22,08,0a,00,06,00,18,00,17,00,00,00,00,00,00,00,22,08,03,00,06,00,1c,00,16,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Greenland Standard Time\Dynamic DST,"2085",1,b4,00,00,00,00,00,00,00,c4,ff,ff,ff,25,08,0a,00,06,00,1b,00,17,00,00,00,00,00,00,00,25,08,03,00,06,00,18,00,16,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Greenland Standard Time\Dynamic DST,"2091",1,b4,00,00,00,00,00,00,00,c4,ff,ff,ff,2b,08,0a,00,06,00,1b,00,17,00,00,00,00,00,00,00,2b,08,03,00,06,00,18,00,16,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Greenland Standard Time\Dynamic DST,"2093",1,b4,00,00,00,00,00,00,00,c4,ff,ff,ff,2d,08,0a,00,06,00,18,00,17,00,00,00,00,00,00,00,2d,08,03,00,06,00,1c,00,16,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Greenland Standard Time\Dynamic DST,"2096",1,b4,00,00,00,00,00,00,00,c4,ff,ff,ff,30,08,0a,00,06,00,1b,00,17,00,00,00,00,00,00,00,30,08,03,00,06,00,18,00,16,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Greenland Standard Time\Dynamic DST,"2099",1,b4,00,00,00,00,00,00,00,c4,ff,ff,ff,33,08,0a,00,06,00,18,00,17,00,00,00,00,00,00,00,33,08,03,00,06,00,1c,00,16,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Greenland Standard Time\Dynamic DST,"FirstEntry",0x10001,2015 +HKLM,%CurrentVersionNT%\Time Zones\Greenland Standard Time\Dynamic DST,"LastEntry",0x10001,2099 +HKLM,%CurrentVersionNT%\Time Zones\Greenwich Standard Time,"Display",,"Atlantic/Reykjavik" +HKLM,%CurrentVersionNT%\Time Zones\Greenwich Standard Time,"Dlt",,"Greenwich Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\Greenwich Standard Time,"MUI_Dlt",,"@tzres.dll,-47169" +HKLM,%CurrentVersionNT%\Time Zones\Greenwich Standard Time,"MUI_Std",,"@tzres.dll,-47168" +HKLM,%CurrentVersionNT%\Time Zones\Greenwich Standard Time,"Std",,"Greenwich Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\Greenwich Standard Time,"TZI",1,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\GTB Standard Time,"Display",,"Europe/Bucharest" +HKLM,%CurrentVersionNT%\Time Zones\GTB Standard Time,"Dlt",,"GTB Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\GTB Standard Time,"MUI_Dlt",,"@tzres.dll,-24193" +HKLM,%CurrentVersionNT%\Time Zones\GTB Standard Time,"MUI_Std",,"@tzres.dll,-24192" +HKLM,%CurrentVersionNT%\Time Zones\GTB Standard Time,"Std",,"GTB Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\GTB Standard Time,"TZI",1,88,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,0a,00,00,00,05,00,04,00,00,00,00,00,00,00,00,00,03,00,00,00,05,00,03,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Hawaiian Standard Time,"Display",,"Pacific/Honolulu" +HKLM,%CurrentVersionNT%\Time Zones\Hawaiian Standard Time,"Dlt",,"Hawaiian Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\Hawaiian Standard Time,"MUI_Dlt",,"@tzres.dll,-53377" +HKLM,%CurrentVersionNT%\Time Zones\Hawaiian Standard Time,"MUI_Std",,"@tzres.dll,-53376" +HKLM,%CurrentVersionNT%\Time Zones\Hawaiian Standard Time,"Std",,"Hawaiian Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\Hawaiian Standard Time,"TZI",1,58,02,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\India Standard Time,"Display",,"Asia/Calcutta" +HKLM,%CurrentVersionNT%\Time Zones\India Standard Time,"Dlt",,"India Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\India Standard Time,"MUI_Dlt",,"@tzres.dll,-22401" +HKLM,%CurrentVersionNT%\Time Zones\India Standard Time,"MUI_Std",,"@tzres.dll,-22400" +HKLM,%CurrentVersionNT%\Time Zones\India Standard Time,"Std",,"India Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\India Standard Time,"TZI",1,b6,fe,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Iran Standard Time,"Display",,"Asia/Tehran" +HKLM,%CurrentVersionNT%\Time Zones\Iran Standard Time,"Dlt",,"Iran Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\Iran Standard Time,"MUI_Dlt",,"@tzres.dll,-5569" +HKLM,%CurrentVersionNT%\Time Zones\Iran Standard Time,"MUI_Std",,"@tzres.dll,-5568" +HKLM,%CurrentVersionNT%\Time Zones\Iran Standard Time,"Std",,"Iran Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\Iran Standard Time,"TZI",1,2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,09,00,00,00,04,00,00,00,00,00,00,00,00,00,00,00,03,00,05,00,04,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Iran Standard Time\Dynamic DST,"1991",1,2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,c7,07,09,00,00,00,16,00,00,00,00,00,00,00,00,00,c7,07,05,00,05,00,03,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Iran Standard Time\Dynamic DST,"1992",1,2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,c8,07,09,00,02,00,16,00,00,00,00,00,00,00,00,00,c8,07,03,00,00,00,16,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Iran Standard Time\Dynamic DST,"1993",1,2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,c9,07,09,00,03,00,16,00,00,00,00,00,00,00,00,00,c9,07,03,00,01,00,16,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Iran Standard Time\Dynamic DST,"1994",1,2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,ca,07,09,00,04,00,16,00,00,00,00,00,00,00,00,00,ca,07,03,00,02,00,16,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Iran Standard Time\Dynamic DST,"1995",1,2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,cb,07,09,00,05,00,16,00,00,00,00,00,00,00,00,00,cb,07,03,00,03,00,16,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Iran Standard Time\Dynamic DST,"1996",1,2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,cc,07,09,00,06,00,15,00,00,00,00,00,00,00,00,00,cc,07,03,00,04,00,15,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Iran Standard Time\Dynamic DST,"1997",1,2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,cd,07,09,00,01,00,16,00,00,00,00,00,00,00,00,00,cd,07,03,00,06,00,16,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Iran Standard Time\Dynamic DST,"1998",1,2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,ce,07,09,00,02,00,16,00,00,00,00,00,00,00,00,00,ce,07,03,00,00,00,16,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Iran Standard Time\Dynamic DST,"1999",1,2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,cf,07,09,00,03,00,16,00,00,00,00,00,00,00,00,00,cf,07,03,00,01,00,16,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Iran Standard Time\Dynamic DST,"2000",1,2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,d0,07,09,00,04,00,15,00,00,00,00,00,00,00,00,00,d0,07,03,00,02,00,15,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Iran Standard Time\Dynamic DST,"2001",1,2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,d1,07,09,00,06,00,16,00,00,00,00,00,00,00,00,00,d1,07,03,00,04,00,16,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Iran Standard Time\Dynamic DST,"2002",1,2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,d2,07,09,00,00,00,16,00,00,00,00,00,00,00,00,00,d2,07,03,00,05,00,16,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Iran Standard Time\Dynamic DST,"2003",1,2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,d3,07,09,00,01,00,16,00,00,00,00,00,00,00,00,00,d3,07,03,00,06,00,16,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Iran Standard Time\Dynamic DST,"2004",1,2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,d4,07,09,00,02,00,15,00,00,00,00,00,00,00,00,00,d4,07,03,00,00,00,15,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Iran Standard Time\Dynamic DST,"2005",1,2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,d5,07,09,00,04,00,16,00,00,00,00,00,00,00,00,00,d5,07,03,00,02,00,16,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Iran Standard Time\Dynamic DST,"2006",1,2e,ff,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Iran Standard Time\Dynamic DST,"2007",1,2e,ff,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Iran Standard Time\Dynamic DST,"2008",1,2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,d8,07,09,00,00,00,15,00,00,00,00,00,00,00,00,00,d8,07,03,00,05,00,15,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Iran Standard Time\Dynamic DST,"2009",1,2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,d9,07,09,00,02,00,16,00,00,00,00,00,00,00,00,00,d9,07,03,00,00,00,16,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Iran Standard Time\Dynamic DST,"2010",1,2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,da,07,09,00,03,00,16,00,00,00,00,00,00,00,00,00,da,07,03,00,01,00,16,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Iran Standard Time\Dynamic DST,"2011",1,2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,db,07,09,00,04,00,16,00,00,00,00,00,00,00,00,00,db,07,03,00,02,00,16,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Iran Standard Time\Dynamic DST,"2012",1,2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,dc,07,09,00,05,00,15,00,00,00,00,00,00,00,00,00,dc,07,03,00,03,00,15,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Iran Standard Time\Dynamic DST,"2013",1,2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,dd,07,09,00,00,00,16,00,00,00,00,00,00,00,00,00,dd,07,03,00,05,00,16,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Iran Standard Time\Dynamic DST,"2014",1,2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,de,07,09,00,01,00,16,00,00,00,00,00,00,00,00,00,de,07,03,00,06,00,16,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Iran Standard Time\Dynamic DST,"2015",1,2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,df,07,09,00,02,00,16,00,00,00,00,00,00,00,00,00,df,07,03,00,00,00,16,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Iran Standard Time\Dynamic DST,"2016",1,2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,e0,07,09,00,03,00,15,00,00,00,00,00,00,00,00,00,e0,07,03,00,01,00,15,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Iran Standard Time\Dynamic DST,"2017",1,2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,e1,07,09,00,05,00,16,00,00,00,00,00,00,00,00,00,e1,07,03,00,03,00,16,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Iran Standard Time\Dynamic DST,"2018",1,2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,e2,07,09,00,06,00,16,00,00,00,00,00,00,00,00,00,e2,07,03,00,04,00,16,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Iran Standard Time\Dynamic DST,"2019",1,2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,e3,07,09,00,00,00,16,00,00,00,00,00,00,00,00,00,e3,07,03,00,05,00,16,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Iran Standard Time\Dynamic DST,"2020",1,2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,e4,07,09,00,01,00,15,00,00,00,00,00,00,00,00,00,e4,07,03,00,06,00,15,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Iran Standard Time\Dynamic DST,"2021",1,2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,e5,07,09,00,03,00,16,00,00,00,00,00,00,00,00,00,e5,07,03,00,01,00,16,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Iran Standard Time\Dynamic DST,"2022",1,2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,e6,07,09,00,04,00,16,00,00,00,00,00,00,00,00,00,e6,07,03,00,02,00,16,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Iran Standard Time\Dynamic DST,"2023",1,2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,e7,07,09,00,05,00,16,00,00,00,00,00,00,00,00,00,e7,07,03,00,03,00,16,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Iran Standard Time\Dynamic DST,"2024",1,2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,e8,07,09,00,06,00,15,00,00,00,00,00,00,00,00,00,e8,07,03,00,04,00,15,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Iran Standard Time\Dynamic DST,"2025",1,2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,e9,07,09,00,01,00,16,00,00,00,00,00,00,00,00,00,e9,07,03,00,06,00,16,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Iran Standard Time\Dynamic DST,"2026",1,2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,ea,07,09,00,02,00,16,00,00,00,00,00,00,00,00,00,ea,07,03,00,00,00,16,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Iran Standard Time\Dynamic DST,"2027",1,2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,eb,07,09,00,03,00,16,00,00,00,00,00,00,00,00,00,eb,07,03,00,01,00,16,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Iran Standard Time\Dynamic DST,"2028",1,2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,ec,07,09,00,04,00,15,00,00,00,00,00,00,00,00,00,ec,07,03,00,02,00,15,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Iran Standard Time\Dynamic DST,"2029",1,2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,ed,07,09,00,05,00,15,00,00,00,00,00,00,00,00,00,ed,07,03,00,03,00,15,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Iran Standard Time\Dynamic DST,"2030",1,2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,ee,07,09,00,00,00,16,00,00,00,00,00,00,00,00,00,ee,07,03,00,05,00,16,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Iran Standard Time\Dynamic DST,"2031",1,2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,ef,07,09,00,01,00,16,00,00,00,00,00,00,00,00,00,ef,07,03,00,06,00,16,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Iran Standard Time\Dynamic DST,"2032",1,2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,f0,07,09,00,02,00,15,00,00,00,00,00,00,00,00,00,f0,07,03,00,00,00,15,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Iran Standard Time\Dynamic DST,"2033",1,2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,f1,07,09,00,03,00,15,00,00,00,00,00,00,00,00,00,f1,07,03,00,01,00,15,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Iran Standard Time\Dynamic DST,"2034",1,2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,f2,07,09,00,05,00,16,00,00,00,00,00,00,00,00,00,f2,07,03,00,03,00,16,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Iran Standard Time\Dynamic DST,"2035",1,2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,f3,07,09,00,06,00,16,00,00,00,00,00,00,00,00,00,f3,07,03,00,04,00,16,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Iran Standard Time\Dynamic DST,"2036",1,2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,f4,07,09,00,00,00,15,00,00,00,00,00,00,00,00,00,f4,07,03,00,05,00,15,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Iran Standard Time\Dynamic DST,"2037",1,2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,f5,07,09,00,01,00,15,00,00,00,00,00,00,00,00,00,f5,07,03,00,06,00,15,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Iran Standard Time\Dynamic DST,"FirstEntry",0x10001,1991 +HKLM,%CurrentVersionNT%\Time Zones\Iran Standard Time\Dynamic DST,"LastEntry",0x10001,2037 +HKLM,%CurrentVersionNT%\Time Zones\Israel Standard Time,"Display",,"Asia/Jerusalem" +HKLM,%CurrentVersionNT%\Time Zones\Israel Standard Time,"Dlt",,"Israel Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\Israel Standard Time,"MUI_Dlt",,"@tzres.dll,-47969" +HKLM,%CurrentVersionNT%\Time Zones\Israel Standard Time,"MUI_Std",,"@tzres.dll,-47968" +HKLM,%CurrentVersionNT%\Time Zones\Israel Standard Time,"Std",,"Israel Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\Israel Standard Time,"TZI",1,88,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,0a,00,00,00,05,00,02,00,00,00,00,00,00,00,00,00,03,00,05,00,04,00,02,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Israel Standard Time\Dynamic DST,"2019",1,88,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,e3,07,0a,00,00,00,1b,00,02,00,00,00,00,00,00,00,e3,07,03,00,05,00,1d,00,02,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Israel Standard Time\Dynamic DST,"2024",1,88,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,e8,07,0a,00,00,00,1b,00,02,00,00,00,00,00,00,00,e8,07,03,00,05,00,1d,00,02,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Israel Standard Time\Dynamic DST,"2030",1,88,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,ee,07,0a,00,00,00,1b,00,02,00,00,00,00,00,00,00,ee,07,03,00,05,00,1d,00,02,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Israel Standard Time\Dynamic DST,"2041",1,88,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,f9,07,0a,00,00,00,1b,00,02,00,00,00,00,00,00,00,f9,07,03,00,05,00,1d,00,02,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Israel Standard Time\Dynamic DST,"2047",1,88,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,ff,07,0a,00,00,00,1b,00,02,00,00,00,00,00,00,00,ff,07,03,00,05,00,1d,00,02,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Israel Standard Time\Dynamic DST,"2052",1,88,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,04,08,0a,00,00,00,1b,00,02,00,00,00,00,00,00,00,04,08,03,00,05,00,1d,00,02,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Israel Standard Time\Dynamic DST,"2058",1,88,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,0a,08,0a,00,00,00,1b,00,02,00,00,00,00,00,00,00,0a,08,03,00,05,00,1d,00,02,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Israel Standard Time\Dynamic DST,"2069",1,88,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,15,08,0a,00,00,00,1b,00,02,00,00,00,00,00,00,00,15,08,03,00,05,00,1d,00,02,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Israel Standard Time\Dynamic DST,"2075",1,88,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,1b,08,0a,00,00,00,1b,00,02,00,00,00,00,00,00,00,1b,08,03,00,05,00,1d,00,02,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Israel Standard Time\Dynamic DST,"2080",1,88,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,20,08,0a,00,00,00,1b,00,02,00,00,00,00,00,00,00,20,08,03,00,05,00,1d,00,02,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Israel Standard Time\Dynamic DST,"2086",1,88,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,26,08,0a,00,00,00,1b,00,02,00,00,00,00,00,00,00,26,08,03,00,05,00,1d,00,02,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Israel Standard Time\Dynamic DST,"2097",1,88,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,31,08,0a,00,00,00,1b,00,02,00,00,00,00,00,00,00,31,08,03,00,05,00,1d,00,02,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Israel Standard Time\Dynamic DST,"FirstEntry",0x10001,2019 +HKLM,%CurrentVersionNT%\Time Zones\Israel Standard Time\Dynamic DST,"LastEntry",0x10001,2097 +HKLM,%CurrentVersionNT%\Time Zones\Jordan Standard Time,"Display",,"Asia/Amman" +HKLM,%CurrentVersionNT%\Time Zones\Jordan Standard Time,"Dlt",,"Jordan Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\Jordan Standard Time,"MUI_Dlt",,"@tzres.dll,-17233" +HKLM,%CurrentVersionNT%\Time Zones\Jordan Standard Time,"MUI_Std",,"@tzres.dll,-17232" +HKLM,%CurrentVersionNT%\Time Zones\Jordan Standard Time,"Std",,"Jordan Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\Jordan Standard Time,"TZI",1,88,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,0a,00,05,00,05,00,01,00,00,00,00,00,00,00,00,00,03,00,05,00,05,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Jordan Standard Time\Dynamic DST,"2016",1,88,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,e0,07,0a,00,05,00,1c,00,01,00,00,00,00,00,00,00,e0,07,04,00,05,00,01,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Jordan Standard Time\Dynamic DST,"2022",1,88,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,e6,07,0a,00,05,00,1c,00,01,00,00,00,00,00,00,00,e6,07,04,00,05,00,01,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Jordan Standard Time\Dynamic DST,"2033",1,88,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,f1,07,0a,00,05,00,1c,00,01,00,00,00,00,00,00,00,f1,07,04,00,05,00,01,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Jordan Standard Time\Dynamic DST,"2039",1,88,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,f7,07,0a,00,05,00,1c,00,01,00,00,00,00,00,00,00,f7,07,04,00,05,00,01,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Jordan Standard Time\Dynamic DST,"2044",1,88,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,fc,07,0a,00,05,00,1c,00,01,00,00,00,00,00,00,00,fc,07,04,00,05,00,01,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Jordan Standard Time\Dynamic DST,"2050",1,88,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,02,08,0a,00,05,00,1c,00,01,00,00,00,00,00,00,00,02,08,04,00,05,00,01,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Jordan Standard Time\Dynamic DST,"2061",1,88,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,0d,08,0a,00,05,00,1c,00,01,00,00,00,00,00,00,00,0d,08,04,00,05,00,01,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Jordan Standard Time\Dynamic DST,"2067",1,88,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,13,08,0a,00,05,00,1c,00,01,00,00,00,00,00,00,00,13,08,04,00,05,00,01,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Jordan Standard Time\Dynamic DST,"2072",1,88,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,18,08,0a,00,05,00,1c,00,01,00,00,00,00,00,00,00,18,08,04,00,05,00,01,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Jordan Standard Time\Dynamic DST,"2078",1,88,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,1e,08,0a,00,05,00,1c,00,01,00,00,00,00,00,00,00,1e,08,04,00,05,00,01,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Jordan Standard Time\Dynamic DST,"2089",1,88,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,29,08,0a,00,05,00,1c,00,01,00,00,00,00,00,00,00,29,08,04,00,05,00,01,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Jordan Standard Time\Dynamic DST,"2095",1,88,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,2f,08,0a,00,05,00,1c,00,01,00,00,00,00,00,00,00,2f,08,04,00,05,00,01,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Jordan Standard Time\Dynamic DST,"FirstEntry",0x10001,2016 +HKLM,%CurrentVersionNT%\Time Zones\Jordan Standard Time\Dynamic DST,"LastEntry",0x10001,2095 +HKLM,%CurrentVersionNT%\Time Zones\Kaliningrad Standard Time,"Display",,"Europe/Kaliningrad" +HKLM,%CurrentVersionNT%\Time Zones\Kaliningrad Standard Time,"Dlt",,"Kaliningrad Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\Kaliningrad Standard Time,"MUI_Dlt",,"@tzres.dll,-14721" +HKLM,%CurrentVersionNT%\Time Zones\Kaliningrad Standard Time,"MUI_Std",,"@tzres.dll,-14720" +HKLM,%CurrentVersionNT%\Time Zones\Kaliningrad Standard Time,"Std",,"Kaliningrad Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\Kaliningrad Standard Time,"TZI",1,88,ff,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Korea Standard Time,"Display",,"Asia/Seoul" +HKLM,%CurrentVersionNT%\Time Zones\Korea Standard Time,"Dlt",,"Korea Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\Korea Standard Time,"MUI_Dlt",,"@tzres.dll,-62049" +HKLM,%CurrentVersionNT%\Time Zones\Korea Standard Time,"MUI_Std",,"@tzres.dll,-62048" +HKLM,%CurrentVersionNT%\Time Zones\Korea Standard Time,"Std",,"Korea Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\Korea Standard Time,"TZI",1,e4,fd,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Libya Standard Time,"Display",,"Africa/Tripoli" +HKLM,%CurrentVersionNT%\Time Zones\Libya Standard Time,"Dlt",,"Libya Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\Libya Standard Time,"MUI_Dlt",,"@tzres.dll,-50769" +HKLM,%CurrentVersionNT%\Time Zones\Libya Standard Time,"MUI_Std",,"@tzres.dll,-50768" +HKLM,%CurrentVersionNT%\Time Zones\Libya Standard Time,"Std",,"Libya Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\Libya Standard Time,"TZI",1,88,ff,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Line Islands Standard Time,"Display",,"Pacific/Kiritimati" +HKLM,%CurrentVersionNT%\Time Zones\Line Islands Standard Time,"Dlt",,"Line Islands Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\Line Islands Standard Time,"MUI_Dlt",,"@tzres.dll,-16769" +HKLM,%CurrentVersionNT%\Time Zones\Line Islands Standard Time,"MUI_Std",,"@tzres.dll,-16768" +HKLM,%CurrentVersionNT%\Time Zones\Line Islands Standard Time,"Std",,"Line Islands Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\Line Islands Standard Time,"TZI",1,b8,fc,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Magadan Standard Time,"Display",,"Asia/Magadan" +HKLM,%CurrentVersionNT%\Time Zones\Magadan Standard Time,"Dlt",,"Magadan Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\Magadan Standard Time,"MUI_Dlt",,"@tzres.dll,-8833" +HKLM,%CurrentVersionNT%\Time Zones\Magadan Standard Time,"MUI_Std",,"@tzres.dll,-8832" +HKLM,%CurrentVersionNT%\Time Zones\Magadan Standard Time,"Std",,"Magadan Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\Magadan Standard Time,"TZI",1,a8,fd,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Mauritius Standard Time,"Display",,"Indian/Mauritius" +HKLM,%CurrentVersionNT%\Time Zones\Mauritius Standard Time,"Dlt",,"Mauritius Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\Mauritius Standard Time,"MUI_Dlt",,"@tzres.dll,-60897" +HKLM,%CurrentVersionNT%\Time Zones\Mauritius Standard Time,"MUI_Std",,"@tzres.dll,-60896" +HKLM,%CurrentVersionNT%\Time Zones\Mauritius Standard Time,"Std",,"Mauritius Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\Mauritius Standard Time,"TZI",1,10,ff,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Middle East Standard Time,"Display",,"Asia/Beirut" +HKLM,%CurrentVersionNT%\Time Zones\Middle East Standard Time,"Dlt",,"Middle East Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\Middle East Standard Time,"MUI_Dlt",,"@tzres.dll,-15969" +HKLM,%CurrentVersionNT%\Time Zones\Middle East Standard Time,"MUI_Std",,"@tzres.dll,-15968" +HKLM,%CurrentVersionNT%\Time Zones\Middle East Standard Time,"Std",,"Middle East Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\Middle East Standard Time,"TZI",1,88,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,0a,00,00,00,05,00,00,00,00,00,00,00,00,00,00,00,03,00,00,00,05,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Montevideo Standard Time,"Display",,"America/Montevideo" +HKLM,%CurrentVersionNT%\Time Zones\Montevideo Standard Time,"Dlt",,"Montevideo Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\Montevideo Standard Time,"MUI_Dlt",,"@tzres.dll,-27969" +HKLM,%CurrentVersionNT%\Time Zones\Montevideo Standard Time,"MUI_Std",,"@tzres.dll,-27968" +HKLM,%CurrentVersionNT%\Time Zones\Montevideo Standard Time,"Std",,"Montevideo Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\Montevideo Standard Time,"TZI",1,b4,00,00,00,00,00,00,00,c4,ff,ff,ff,00,00,03,00,00,00,02,00,02,00,00,00,00,00,00,00,00,00,0a,00,00,00,01,00,02,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Morocco Standard Time,"Display",,"Africa/Casablanca" +HKLM,%CurrentVersionNT%\Time Zones\Morocco Standard Time,"Dlt",,"Morocco Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\Morocco Standard Time,"MUI_Dlt",,"@tzres.dll,-2993" +HKLM,%CurrentVersionNT%\Time Zones\Morocco Standard Time,"MUI_Std",,"@tzres.dll,-2992" +HKLM,%CurrentVersionNT%\Time Zones\Morocco Standard Time,"Std",,"Morocco Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\Morocco Standard Time,"TZI",1,00,00,00,00,00,00,00,00,c4,ff,ff,ff,00,00,0a,00,00,00,05,00,03,00,00,00,00,00,00,00,00,00,03,00,00,00,05,00,02,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Morocco Standard Time\Dynamic DST,"2015",1,00,00,00,00,00,00,00,00,c4,ff,ff,ff,df,07,0a,00,00,00,19,00,03,00,00,00,00,00,00,00,df,07,07,00,00,00,13,00,02,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Morocco Standard Time\Dynamic DST,"2016",1,00,00,00,00,00,00,00,00,c4,ff,ff,ff,e0,07,0a,00,00,00,1e,00,03,00,00,00,00,00,00,00,e0,07,07,00,00,00,0a,00,02,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Morocco Standard Time\Dynamic DST,"2022",1,00,00,00,00,00,00,00,00,c4,ff,ff,ff,e6,07,0a,00,00,00,1e,00,03,00,00,00,00,00,00,00,e6,07,05,00,00,00,08,00,02,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Morocco Standard Time\Dynamic DST,"2023",1,00,00,00,00,00,00,00,00,c4,ff,ff,ff,e7,07,0a,00,00,00,1d,00,03,00,00,00,00,00,00,00,e7,07,04,00,00,00,17,00,02,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Morocco Standard Time\Dynamic DST,"2024",1,00,00,00,00,00,00,00,00,c4,ff,ff,ff,e8,07,0a,00,00,00,1b,00,03,00,00,00,00,00,00,00,e8,07,04,00,00,00,0e,00,02,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Morocco Standard Time\Dynamic DST,"2025",1,00,00,00,00,00,00,00,00,c4,ff,ff,ff,e9,07,0a,00,00,00,1a,00,03,00,00,00,00,00,00,00,e9,07,04,00,00,00,06,00,02,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Morocco Standard Time\Dynamic DST,"2036",1,00,00,00,00,00,00,00,00,c4,ff,ff,ff,f4,07,0a,00,00,00,13,00,03,00,00,00,00,00,00,00,f4,07,03,00,00,00,1e,00,02,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Morocco Standard Time\Dynamic DST,"FirstEntry",0x10001,2015 +HKLM,%CurrentVersionNT%\Time Zones\Morocco Standard Time\Dynamic DST,"LastEntry",0x10001,2036 +HKLM,%CurrentVersionNT%\Time Zones\Mountain Standard Time,"Display",,"America/Denver" +HKLM,%CurrentVersionNT%\Time Zones\Mountain Standard Time,"Dlt",,"Mountain Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\Mountain Standard Time,"MUI_Dlt",,"@tzres.dll,-34353" +HKLM,%CurrentVersionNT%\Time Zones\Mountain Standard Time,"MUI_Std",,"@tzres.dll,-34352" +HKLM,%CurrentVersionNT%\Time Zones\Mountain Standard Time,"Std",,"Mountain Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\Mountain Standard Time,"TZI",1,a4,01,00,00,00,00,00,00,c4,ff,ff,ff,00,00,0b,00,00,00,01,00,02,00,00,00,00,00,00,00,00,00,03,00,00,00,02,00,02,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Mountain Standard Time (Mexico),"Display",,"America/Chihuahua" +HKLM,%CurrentVersionNT%\Time Zones\Mountain Standard Time (Mexico),"Dlt",,"Mountain Daylight Time (Mexico)" +HKLM,%CurrentVersionNT%\Time Zones\Mountain Standard Time (Mexico),"MUI_Dlt",,"@tzres.dll,-7249" +HKLM,%CurrentVersionNT%\Time Zones\Mountain Standard Time (Mexico),"MUI_Std",,"@tzres.dll,-7248" +HKLM,%CurrentVersionNT%\Time Zones\Mountain Standard Time (Mexico),"Std",,"Mountain Standard Time (Mexico)" +HKLM,%CurrentVersionNT%\Time Zones\Mountain Standard Time (Mexico),"TZI",1,a4,01,00,00,00,00,00,00,c4,ff,ff,ff,00,00,0a,00,00,00,05,00,02,00,00,00,00,00,00,00,00,00,04,00,00,00,01,00,02,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Myanmar Standard Time,"Display",,"Asia/Rangoon" +HKLM,%CurrentVersionNT%\Time Zones\Myanmar Standard Time,"Dlt",,"Myanmar Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\Myanmar Standard Time,"MUI_Dlt",,"@tzres.dll,-21105" +HKLM,%CurrentVersionNT%\Time Zones\Myanmar Standard Time,"MUI_Std",,"@tzres.dll,-21104" +HKLM,%CurrentVersionNT%\Time Zones\Myanmar Standard Time,"Std",,"Myanmar Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\Myanmar Standard Time,"TZI",1,7a,fe,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\N. Central Asia Standard Time,"Display",,"Asia/Novosibirsk" +HKLM,%CurrentVersionNT%\Time Zones\N. Central Asia Standard Time,"Dlt",,"N. Central Asia Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\N. Central Asia Standard Time,"MUI_Dlt",,"@tzres.dll,-30705" +HKLM,%CurrentVersionNT%\Time Zones\N. Central Asia Standard Time,"MUI_Std",,"@tzres.dll,-30704" +HKLM,%CurrentVersionNT%\Time Zones\N. Central Asia Standard Time,"Std",,"N. Central Asia Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\N. Central Asia Standard Time,"TZI",1,98,fe,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Namibia Standard Time,"Display",,"Africa/Windhoek" +HKLM,%CurrentVersionNT%\Time Zones\Namibia Standard Time,"Dlt",,"Namibia Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\Namibia Standard Time,"MUI_Dlt",,"@tzres.dll,-6209" +HKLM,%CurrentVersionNT%\Time Zones\Namibia Standard Time,"MUI_Std",,"@tzres.dll,-6208" +HKLM,%CurrentVersionNT%\Time Zones\Namibia Standard Time,"Std",,"Namibia Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\Namibia Standard Time,"TZI",1,c4,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,04,00,00,00,01,00,02,00,00,00,00,00,00,00,00,00,09,00,00,00,01,00,02,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Nepal Standard Time,"Display",,"Asia/Katmandu" +HKLM,%CurrentVersionNT%\Time Zones\Nepal Standard Time,"Dlt",,"Nepal Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\Nepal Standard Time,"MUI_Dlt",,"@tzres.dll,-1217" +HKLM,%CurrentVersionNT%\Time Zones\Nepal Standard Time,"MUI_Std",,"@tzres.dll,-1216" +HKLM,%CurrentVersionNT%\Time Zones\Nepal Standard Time,"Std",,"Nepal Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\Nepal Standard Time,"TZI",1,a7,fe,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\New Zealand Standard Time,"Display",,"Pacific/Auckland" +HKLM,%CurrentVersionNT%\Time Zones\New Zealand Standard Time,"Dlt",,"New Zealand Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\New Zealand Standard Time,"MUI_Dlt",,"@tzres.dll,-54897" +HKLM,%CurrentVersionNT%\Time Zones\New Zealand Standard Time,"MUI_Std",,"@tzres.dll,-54896" +HKLM,%CurrentVersionNT%\Time Zones\New Zealand Standard Time,"Std",,"New Zealand Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\New Zealand Standard Time,"TZI",1,30,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,04,00,00,00,01,00,03,00,00,00,00,00,00,00,00,00,09,00,00,00,05,00,02,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Newfoundland Standard Time,"Display",,"America/St_Johns" +HKLM,%CurrentVersionNT%\Time Zones\Newfoundland Standard Time,"Dlt",,"Newfoundland Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\Newfoundland Standard Time,"MUI_Dlt",,"@tzres.dll,-9505" +HKLM,%CurrentVersionNT%\Time Zones\Newfoundland Standard Time,"MUI_Std",,"@tzres.dll,-9504" +HKLM,%CurrentVersionNT%\Time Zones\Newfoundland Standard Time,"Std",,"Newfoundland Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\Newfoundland Standard Time,"TZI",1,d2,00,00,00,00,00,00,00,c4,ff,ff,ff,00,00,0b,00,00,00,01,00,02,00,00,00,00,00,00,00,00,00,03,00,00,00,02,00,02,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\North Asia East Standard Time,"Display",,"Asia/Irkutsk" +HKLM,%CurrentVersionNT%\Time Zones\North Asia East Standard Time,"Dlt",,"North Asia East Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\North Asia East Standard Time,"MUI_Dlt",,"@tzres.dll,-19057" +HKLM,%CurrentVersionNT%\Time Zones\North Asia East Standard Time,"MUI_Std",,"@tzres.dll,-19056" +HKLM,%CurrentVersionNT%\Time Zones\North Asia East Standard Time,"Std",,"North Asia East Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\North Asia East Standard Time,"TZI",1,20,fe,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\North Asia Standard Time,"Display",,"Asia/Krasnoyarsk" +HKLM,%CurrentVersionNT%\Time Zones\North Asia Standard Time,"Dlt",,"North Asia Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\North Asia Standard Time,"MUI_Dlt",,"@tzres.dll,-305" +HKLM,%CurrentVersionNT%\Time Zones\North Asia Standard Time,"MUI_Std",,"@tzres.dll,-304" +HKLM,%CurrentVersionNT%\Time Zones\North Asia Standard Time,"Std",,"North Asia Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\North Asia Standard Time,"TZI",1,5c,fe,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Pacific SA Standard Time,"Display",,"America/Santiago" +HKLM,%CurrentVersionNT%\Time Zones\Pacific SA Standard Time,"Dlt",,"Pacific SA Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\Pacific SA Standard Time,"MUI_Dlt",,"@tzres.dll,-65009" +HKLM,%CurrentVersionNT%\Time Zones\Pacific SA Standard Time,"MUI_Std",,"@tzres.dll,-65008" +HKLM,%CurrentVersionNT%\Time Zones\Pacific SA Standard Time,"Std",,"Pacific SA Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\Pacific SA Standard Time,"TZI",1,b4,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Pacific SA Standard Time\Dynamic DST,"2015",1,b4,00,00,00,00,00,00,00,c4,ff,ff,ff,df,07,04,00,00,00,1a,00,01,00,00,00,00,00,00,00,e0,07,01,00,05,00,01,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Pacific SA Standard Time\Dynamic DST,"FirstEntry",0x10001,2015 +HKLM,%CurrentVersionNT%\Time Zones\Pacific SA Standard Time\Dynamic DST,"LastEntry",0x10001,2015 +HKLM,%CurrentVersionNT%\Time Zones\Pacific Standard Time,"Display",,"America/Los_Angeles" +HKLM,%CurrentVersionNT%\Time Zones\Pacific Standard Time,"Dlt",,"Pacific Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\Pacific Standard Time,"MUI_Dlt",,"@tzres.dll,-11233" +HKLM,%CurrentVersionNT%\Time Zones\Pacific Standard Time,"MUI_Std",,"@tzres.dll,-11232" +HKLM,%CurrentVersionNT%\Time Zones\Pacific Standard Time,"Std",,"Pacific Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\Pacific Standard Time,"TZI",1,e0,01,00,00,00,00,00,00,c4,ff,ff,ff,00,00,0b,00,00,00,01,00,02,00,00,00,00,00,00,00,00,00,03,00,00,00,02,00,02,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Pacific Standard Time (Mexico),"Display",,"America/Tijuana" +HKLM,%CurrentVersionNT%\Time Zones\Pacific Standard Time (Mexico),"Dlt",,"Pacific Daylight Time (Mexico)" +HKLM,%CurrentVersionNT%\Time Zones\Pacific Standard Time (Mexico),"MUI_Dlt",,"@tzres.dll,-15585" +HKLM,%CurrentVersionNT%\Time Zones\Pacific Standard Time (Mexico),"MUI_Std",,"@tzres.dll,-15584" +HKLM,%CurrentVersionNT%\Time Zones\Pacific Standard Time (Mexico),"Std",,"Pacific Standard Time (Mexico)" +HKLM,%CurrentVersionNT%\Time Zones\Pacific Standard Time (Mexico),"TZI",1,e0,01,00,00,00,00,00,00,c4,ff,ff,ff,00,00,0b,00,00,00,01,00,02,00,00,00,00,00,00,00,00,00,03,00,00,00,02,00,02,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Pakistan Standard Time,"Display",,"Asia/Karachi" +HKLM,%CurrentVersionNT%\Time Zones\Pakistan Standard Time,"Dlt",,"Pakistan Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\Pakistan Standard Time,"MUI_Dlt",,"@tzres.dll,-28753" +HKLM,%CurrentVersionNT%\Time Zones\Pakistan Standard Time,"MUI_Std",,"@tzres.dll,-28752" +HKLM,%CurrentVersionNT%\Time Zones\Pakistan Standard Time,"Std",,"Pakistan Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\Pakistan Standard Time,"TZI",1,d4,fe,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Paraguay Standard Time,"Display",,"America/Asuncion" +HKLM,%CurrentVersionNT%\Time Zones\Paraguay Standard Time,"Dlt",,"Paraguay Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\Paraguay Standard Time,"MUI_Dlt",,"@tzres.dll,-50225" +HKLM,%CurrentVersionNT%\Time Zones\Paraguay Standard Time,"MUI_Std",,"@tzres.dll,-50224" +HKLM,%CurrentVersionNT%\Time Zones\Paraguay Standard Time,"Std",,"Paraguay Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\Paraguay Standard Time,"TZI",1,f0,00,00,00,00,00,00,00,c4,ff,ff,ff,00,00,03,00,00,00,04,00,00,00,00,00,00,00,00,00,00,00,0a,00,00,00,01,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Romance Standard Time,"Display",,"Europe/Paris" +HKLM,%CurrentVersionNT%\Time Zones\Romance Standard Time,"Dlt",,"Romance Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\Romance Standard Time,"MUI_Dlt",,"@tzres.dll,-45105" +HKLM,%CurrentVersionNT%\Time Zones\Romance Standard Time,"MUI_Std",,"@tzres.dll,-45104" +HKLM,%CurrentVersionNT%\Time Zones\Romance Standard Time,"Std",,"Romance Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\Romance Standard Time,"TZI",1,c4,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,0a,00,00,00,05,00,03,00,00,00,00,00,00,00,00,00,03,00,00,00,05,00,02,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Russian Standard Time,"Display",,"Europe/Moscow" +HKLM,%CurrentVersionNT%\Time Zones\Russian Standard Time,"Dlt",,"Russian Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\Russian Standard Time,"MUI_Dlt",,"@tzres.dll,-44561" +HKLM,%CurrentVersionNT%\Time Zones\Russian Standard Time,"MUI_Std",,"@tzres.dll,-44560" +HKLM,%CurrentVersionNT%\Time Zones\Russian Standard Time,"Std",,"Russian Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\Russian Standard Time,"TZI",1,4c,ff,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\SA Eastern Standard Time,"Display",,"America/Cayenne" +HKLM,%CurrentVersionNT%\Time Zones\SA Eastern Standard Time,"Dlt",,"SA Eastern Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\SA Eastern Standard Time,"MUI_Dlt",,"@tzres.dll,-40657" +HKLM,%CurrentVersionNT%\Time Zones\SA Eastern Standard Time,"MUI_Std",,"@tzres.dll,-40656" +HKLM,%CurrentVersionNT%\Time Zones\SA Eastern Standard Time,"Std",,"SA Eastern Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\SA Eastern Standard Time,"TZI",1,b4,00,00,00,00,00,00,00,c4,ff,ff,ff,00,00,03,00,00,00,03,00,00,00,00,00,00,00,00,00,00,00,0a,00,00,00,01,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\SA Pacific Standard Time,"Display",,"America/Bogota" +HKLM,%CurrentVersionNT%\Time Zones\SA Pacific Standard Time,"Dlt",,"SA Pacific Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\SA Pacific Standard Time,"MUI_Dlt",,"@tzres.dll,-49425" +HKLM,%CurrentVersionNT%\Time Zones\SA Pacific Standard Time,"MUI_Std",,"@tzres.dll,-49424" +HKLM,%CurrentVersionNT%\Time Zones\SA Pacific Standard Time,"Std",,"SA Pacific Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\SA Pacific Standard Time,"TZI",1,2c,01,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\SA Western Standard Time,"Display",,"America/La_Paz" +HKLM,%CurrentVersionNT%\Time Zones\SA Western Standard Time,"Dlt",,"SA Western Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\SA Western Standard Time,"MUI_Dlt",,"@tzres.dll,-57121" +HKLM,%CurrentVersionNT%\Time Zones\SA Western Standard Time,"MUI_Std",,"@tzres.dll,-57120" +HKLM,%CurrentVersionNT%\Time Zones\SA Western Standard Time,"Std",,"SA Western Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\SA Western Standard Time,"TZI",1,f0,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Samoa Standard Time,"Display",,"Pacific/Apia" +HKLM,%CurrentVersionNT%\Time Zones\Samoa Standard Time,"Dlt",,"Samoa Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\Samoa Standard Time,"MUI_Dlt",,"@tzres.dll,-14593" +HKLM,%CurrentVersionNT%\Time Zones\Samoa Standard Time,"MUI_Std",,"@tzres.dll,-14592" +HKLM,%CurrentVersionNT%\Time Zones\Samoa Standard Time,"Std",,"Samoa Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\Samoa Standard Time,"TZI",1,94,02,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\SE Asia Standard Time,"Display",,"Asia/Bangkok" +HKLM,%CurrentVersionNT%\Time Zones\SE Asia Standard Time,"Dlt",,"SE Asia Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\SE Asia Standard Time,"MUI_Dlt",,"@tzres.dll,-53729" +HKLM,%CurrentVersionNT%\Time Zones\SE Asia Standard Time,"MUI_Std",,"@tzres.dll,-53728" +HKLM,%CurrentVersionNT%\Time Zones\SE Asia Standard Time,"Std",,"SE Asia Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\SE Asia Standard Time,"TZI",1,5c,fe,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Singapore Standard Time,"Display",,"Asia/Singapore" +HKLM,%CurrentVersionNT%\Time Zones\Singapore Standard Time,"Dlt",,"Singapore Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\Singapore Standard Time,"MUI_Dlt",,"@tzres.dll,-61841" +HKLM,%CurrentVersionNT%\Time Zones\Singapore Standard Time,"MUI_Std",,"@tzres.dll,-61840" +HKLM,%CurrentVersionNT%\Time Zones\Singapore Standard Time,"Std",,"Singapore Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\Singapore Standard Time,"TZI",1,20,fe,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\South Africa Standard Time,"Display",,"Africa/Johannesburg" +HKLM,%CurrentVersionNT%\Time Zones\South Africa Standard Time,"Dlt",,"South Africa Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\South Africa Standard Time,"MUI_Dlt",,"@tzres.dll,-38897" +HKLM,%CurrentVersionNT%\Time Zones\South Africa Standard Time,"MUI_Std",,"@tzres.dll,-38896" +HKLM,%CurrentVersionNT%\Time Zones\South Africa Standard Time,"Std",,"South Africa Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\South Africa Standard Time,"TZI",1,88,ff,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Sri Lanka Standard Time,"Display",,"Asia/Colombo" +HKLM,%CurrentVersionNT%\Time Zones\Sri Lanka Standard Time,"Dlt",,"Sri Lanka Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\Sri Lanka Standard Time,"MUI_Dlt",,"@tzres.dll,-39409" +HKLM,%CurrentVersionNT%\Time Zones\Sri Lanka Standard Time,"MUI_Std",,"@tzres.dll,-39408" +HKLM,%CurrentVersionNT%\Time Zones\Sri Lanka Standard Time,"Std",,"Sri Lanka Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\Sri Lanka Standard Time,"TZI",1,b6,fe,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Syria Standard Time,"Display",,"Asia/Damascus" +HKLM,%CurrentVersionNT%\Time Zones\Syria Standard Time,"Dlt",,"Syria Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\Syria Standard Time,"MUI_Dlt",,"@tzres.dll,-46577" +HKLM,%CurrentVersionNT%\Time Zones\Syria Standard Time,"MUI_Std",,"@tzres.dll,-46576" +HKLM,%CurrentVersionNT%\Time Zones\Syria Standard Time,"Std",,"Syria Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\Syria Standard Time,"TZI",1,88,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,0a,00,05,00,05,00,00,00,00,00,00,00,00,00,00,00,03,00,05,00,05,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Taipei Standard Time,"Display",,"Asia/Taipei" +HKLM,%CurrentVersionNT%\Time Zones\Taipei Standard Time,"Dlt",,"Taipei Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\Taipei Standard Time,"MUI_Dlt",,"@tzres.dll,-26433" +HKLM,%CurrentVersionNT%\Time Zones\Taipei Standard Time,"MUI_Std",,"@tzres.dll,-26432" +HKLM,%CurrentVersionNT%\Time Zones\Taipei Standard Time,"Std",,"Taipei Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\Taipei Standard Time,"TZI",1,20,fe,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Tasmania Standard Time,"Display",,"Australia/Hobart" +HKLM,%CurrentVersionNT%\Time Zones\Tasmania Standard Time,"Dlt",,"Tasmania Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\Tasmania Standard Time,"MUI_Dlt",,"@tzres.dll,-36017" +HKLM,%CurrentVersionNT%\Time Zones\Tasmania Standard Time,"MUI_Std",,"@tzres.dll,-36016" +HKLM,%CurrentVersionNT%\Time Zones\Tasmania Standard Time,"Std",,"Tasmania Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\Tasmania Standard Time,"TZI",1,a8,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,04,00,00,00,01,00,03,00,00,00,00,00,00,00,00,00,0a,00,00,00,01,00,02,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Tokyo Standard Time,"Display",,"Asia/Tokyo" +HKLM,%CurrentVersionNT%\Time Zones\Tokyo Standard Time,"Dlt",,"Tokyo Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\Tokyo Standard Time,"MUI_Dlt",,"@tzres.dll,-16241" +HKLM,%CurrentVersionNT%\Time Zones\Tokyo Standard Time,"MUI_Std",,"@tzres.dll,-16240" +HKLM,%CurrentVersionNT%\Time Zones\Tokyo Standard Time,"Std",,"Tokyo Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\Tokyo Standard Time,"TZI",1,e4,fd,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Tonga Standard Time,"Display",,"Pacific/Tongatapu" +HKLM,%CurrentVersionNT%\Time Zones\Tonga Standard Time,"Dlt",,"Tonga Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\Tonga Standard Time,"MUI_Dlt",,"@tzres.dll,-7217" +HKLM,%CurrentVersionNT%\Time Zones\Tonga Standard Time,"MUI_Std",,"@tzres.dll,-7216" +HKLM,%CurrentVersionNT%\Time Zones\Tonga Standard Time,"Std",,"Tonga Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\Tonga Standard Time,"TZI",1,f4,fc,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Turkey Standard Time,"Display",,"Europe/Istanbul" +HKLM,%CurrentVersionNT%\Time Zones\Turkey Standard Time,"Dlt",,"Turkey Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\Turkey Standard Time,"MUI_Dlt",,"@tzres.dll,-24849" +HKLM,%CurrentVersionNT%\Time Zones\Turkey Standard Time,"MUI_Std",,"@tzres.dll,-24848" +HKLM,%CurrentVersionNT%\Time Zones\Turkey Standard Time,"Std",,"Turkey Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\Turkey Standard Time,"TZI",1,88,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,0a,00,00,00,05,00,04,00,00,00,00,00,00,00,00,00,03,00,00,00,05,00,03,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Turkey Standard Time\Dynamic DST,"2015",1,88,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,df,07,0b,00,00,00,08,00,04,00,00,00,00,00,00,00,df,07,03,00,00,00,1d,00,03,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Turkey Standard Time\Dynamic DST,"FirstEntry",0x10001,2015 +HKLM,%CurrentVersionNT%\Time Zones\Turkey Standard Time\Dynamic DST,"LastEntry",0x10001,2015 +HKLM,%CurrentVersionNT%\Time Zones\Ulaanbaatar Standard Time,"Display",,"Asia/Ulaanbaatar" +HKLM,%CurrentVersionNT%\Time Zones\Ulaanbaatar Standard Time,"Dlt",,"Ulaanbaatar Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\Ulaanbaatar Standard Time,"MUI_Dlt",,"@tzres.dll,-47201" +HKLM,%CurrentVersionNT%\Time Zones\Ulaanbaatar Standard Time,"MUI_Std",,"@tzres.dll,-47200" +HKLM,%CurrentVersionNT%\Time Zones\Ulaanbaatar Standard Time,"Std",,"Ulaanbaatar Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\Ulaanbaatar Standard Time,"TZI",1,20,fe,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,09,00,06,00,05,00,00,00,00,00,00,00,00,00,00,00,03,00,06,00,05,00,02,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\US Eastern Standard Time,"Display",,"America/Indianapolis" +HKLM,%CurrentVersionNT%\Time Zones\US Eastern Standard Time,"Dlt",,"US Eastern Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\US Eastern Standard Time,"MUI_Dlt",,"@tzres.dll,-34929" +HKLM,%CurrentVersionNT%\Time Zones\US Eastern Standard Time,"MUI_Std",,"@tzres.dll,-34928" +HKLM,%CurrentVersionNT%\Time Zones\US Eastern Standard Time,"Std",,"US Eastern Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\US Eastern Standard Time,"TZI",1,2c,01,00,00,00,00,00,00,c4,ff,ff,ff,00,00,0b,00,00,00,01,00,02,00,00,00,00,00,00,00,00,00,03,00,00,00,02,00,02,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\US Mountain Standard Time,"Display",,"America/Phoenix" +HKLM,%CurrentVersionNT%\Time Zones\US Mountain Standard Time,"Dlt",,"US Mountain Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\US Mountain Standard Time,"MUI_Dlt",,"@tzres.dll,-37473" +HKLM,%CurrentVersionNT%\Time Zones\US Mountain Standard Time,"MUI_Std",,"@tzres.dll,-37472" +HKLM,%CurrentVersionNT%\Time Zones\US Mountain Standard Time,"Std",,"US Mountain Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\US Mountain Standard Time,"TZI",1,a4,01,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\UTC,"Display",,"Etc/GMT" +HKLM,%CurrentVersionNT%\Time Zones\UTC,"Dlt",,"Coordinated Universal Time" +HKLM,%CurrentVersionNT%\Time Zones\UTC,"MUI_Dlt",,"@tzres.dll,-22001" +HKLM,%CurrentVersionNT%\Time Zones\UTC,"MUI_Std",,"@tzres.dll,-22000" +HKLM,%CurrentVersionNT%\Time Zones\UTC,"Std",,"Coordinated Universal Time" +HKLM,%CurrentVersionNT%\Time Zones\UTC,"TZI",1,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Venezuela Standard Time,"Display",,"America/Caracas" +HKLM,%CurrentVersionNT%\Time Zones\Venezuela Standard Time,"Dlt",,"Venezuela Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\Venezuela Standard Time,"MUI_Dlt",,"@tzres.dll,-51473" +HKLM,%CurrentVersionNT%\Time Zones\Venezuela Standard Time,"MUI_Std",,"@tzres.dll,-51472" +HKLM,%CurrentVersionNT%\Time Zones\Venezuela Standard Time,"Std",,"Venezuela Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\Venezuela Standard Time,"TZI",1,0e,01,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Vladivostok Standard Time,"Display",,"Asia/Vladivostok" +HKLM,%CurrentVersionNT%\Time Zones\Vladivostok Standard Time,"Dlt",,"Vladivostok Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\Vladivostok Standard Time,"MUI_Dlt",,"@tzres.dll,-61377" +HKLM,%CurrentVersionNT%\Time Zones\Vladivostok Standard Time,"MUI_Std",,"@tzres.dll,-61376" +HKLM,%CurrentVersionNT%\Time Zones\Vladivostok Standard Time,"Std",,"Vladivostok Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\Vladivostok Standard Time,"TZI",1,a8,fd,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\W. Australia Standard Time,"Display",,"Australia/Perth" +HKLM,%CurrentVersionNT%\Time Zones\W. Australia Standard Time,"Dlt",,"W. Australia Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\W. Australia Standard Time,"MUI_Dlt",,"@tzres.dll,-65377" +HKLM,%CurrentVersionNT%\Time Zones\W. Australia Standard Time,"MUI_Std",,"@tzres.dll,-65376" +HKLM,%CurrentVersionNT%\Time Zones\W. Australia Standard Time,"Std",,"W. Australia Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\W. Australia Standard Time,"TZI",1,20,fe,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\W. Central Africa Standard Time,"Display",,"Africa/Lagos" +HKLM,%CurrentVersionNT%\Time Zones\W. Central Africa Standard Time,"Dlt",,"W. Central Africa Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\W. Central Africa Standard Time,"MUI_Dlt",,"@tzres.dll,-64977" +HKLM,%CurrentVersionNT%\Time Zones\W. Central Africa Standard Time,"MUI_Std",,"@tzres.dll,-64976" +HKLM,%CurrentVersionNT%\Time Zones\W. Central Africa Standard Time,"Std",,"W. Central Africa Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\W. Central Africa Standard Time,"TZI",1,c4,ff,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\W. Europe Standard Time,"Display",,"Europe/Berlin" +HKLM,%CurrentVersionNT%\Time Zones\W. Europe Standard Time,"Dlt",,"W. Europe Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\W. Europe Standard Time,"MUI_Dlt",,"@tzres.dll,-27697" +HKLM,%CurrentVersionNT%\Time Zones\W. Europe Standard Time,"MUI_Std",,"@tzres.dll,-27696" +HKLM,%CurrentVersionNT%\Time Zones\W. Europe Standard Time,"Std",,"W. Europe Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\W. Europe Standard Time,"TZI",1,c4,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,0a,00,00,00,05,00,03,00,00,00,00,00,00,00,00,00,03,00,00,00,05,00,02,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\West Asia Standard Time,"Display",,"Asia/Tashkent" +HKLM,%CurrentVersionNT%\Time Zones\West Asia Standard Time,"Dlt",,"West Asia Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\West Asia Standard Time,"MUI_Dlt",,"@tzres.dll,-49665" +HKLM,%CurrentVersionNT%\Time Zones\West Asia Standard Time,"MUI_Std",,"@tzres.dll,-49664" +HKLM,%CurrentVersionNT%\Time Zones\West Asia Standard Time,"Std",,"West Asia Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\West Asia Standard Time,"TZI",1,d4,fe,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\West Pacific Standard Time,"Display",,"Pacific/Port_Moresby" +HKLM,%CurrentVersionNT%\Time Zones\West Pacific Standard Time,"Dlt",,"West Pacific Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\West Pacific Standard Time,"MUI_Dlt",,"@tzres.dll,-10225" +HKLM,%CurrentVersionNT%\Time Zones\West Pacific Standard Time,"MUI_Std",,"@tzres.dll,-10224" +HKLM,%CurrentVersionNT%\Time Zones\West Pacific Standard Time,"Std",,"West Pacific Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\West Pacific Standard Time,"TZI",1,a8,fd,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersionNT%\Time Zones\Yakutsk Standard Time,"Display",,"Asia/Yakutsk" +HKLM,%CurrentVersionNT%\Time Zones\Yakutsk Standard Time,"Dlt",,"Yakutsk Daylight Time" +HKLM,%CurrentVersionNT%\Time Zones\Yakutsk Standard Time,"MUI_Dlt",,"@tzres.dll,-40577" +HKLM,%CurrentVersionNT%\Time Zones\Yakutsk Standard Time,"MUI_Std",,"@tzres.dll,-40576" +HKLM,%CurrentVersionNT%\Time Zones\Yakutsk Standard Time,"Std",,"Yakutsk Standard Time" +HKLM,%CurrentVersionNT%\Time Zones\Yakutsk Standard Time,"TZI",1,e4,fd,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00 +HKLM,%CurrentVersion%\Time Zones,"SymbolicLinkValue",0x60000,"\Registry\Machine\%CurrentVersionNT%\Time Zones" + +[BITSService] +AddReg=BITSServiceKeys +Description="BITS Service" +DisplayName="BITS Service" +ServiceBinary="%11%\svchost.exe -k netsvcs" +ServiceType=16 +StartType=3 +ErrorControl=1 + +[MSIService] +Description="MSI Installer Server" +DisplayName="MSIServer" +ServiceBinary="%11%\msiexec.exe /V" +ServiceType=32 +StartType=3 +ErrorControl=1 + +[MountMgrService] +Description="Device mounting service" +DisplayName="Mount Manager" +ServiceBinary="%12%\mountmgr.sys" +ServiceType=1 +StartType=2 +ErrorControl=1 + +[RpcSsService] +Description="RPC service" +DisplayName="Remote Procedure Call (RPC)" +ServiceBinary="%11%\rpcss.exe" +ServiceType=32 +StartType=3 +ErrorControl=1 + +[WineBusService] +Description="Wine Platform Bus Kernel" +DisplayName="Platform Bus Kernel" +ServiceBinary="%12%\winebus.sys" +LoadOrderGroup="WinePlugPlay" +ServiceType=1 +StartType=2 +ErrorControl=1 + +[WineHIDService] +Description="Wine HID Minidriver" +DisplayName="Wine HID" +ServiceBinary="%12%\winehid.sys" +LoadOrderGroup="WinePlugPlay" +ServiceType=1 +StartType=3 +ErrorControl=1 + +[SpoolerService] +AddReg=SpoolerServiceKeys +Description="Loads files to memory for later printing" +DisplayName="Print Spooler" +ServiceBinary="%11%\spoolsv.exe" +ServiceType=0x110 +StartType=3 +ErrorControl=1 +LoadOrderGroup="SpoolerGroup" + +[SpoolerServiceKeys] +HKLM,"System\CurrentControlSet\Services\Spooler\Performance","Library",,"winspool.drv" +HKLM,"System\CurrentControlSet\Services\Spooler\Performance","Open",,"PerfOpen" +HKLM,"System\CurrentControlSet\Services\Spooler\Performance","Close",,"PerfClose" +HKLM,"System\CurrentControlSet\Services\Spooler\Performance","Collect",,"PerfCollect" + +[TerminalServices] +Description="Remote desktop access" +DisplayName="Terminal Services" +ServiceBinary="%11%\termsv.exe" +ServiceType=32 +StartType=3 +ErrorControl=1 + +[WinmgmtService] +Description="Provides access to Windows Management Instrumentation" +DisplayName="Windows Management Instrumentation Service" +ServiceBinary="%11%\winmgmt.exe" +ServiceType=32 +StartType=3 +ErrorControl=1 + +[StiService] +AddReg=StiServiceKeys +Description="WIA Service" +DisplayName="WIA Service" +ServiceBinary="%11%\svchost.exe -k imgsvc" +ServiceType=16 +StartType=3 +ErrorControl=1 + +[BITSServiceKeys] +HKR,Parameters,"ServiceDll",,"%11%\qmgr.dll" +HKLM,%CurrentVersionNT%\SvcHost,"netsvcs",0x00010000,"BITS" + +[StiServiceKeys] +HKR,Parameters,"ServiceDll",,"%11%\wiaservc.dll" +HKLM,%CurrentVersionNT%\SvcHost,"imgsvc",0x00010000,"StiSvc" + +[PlugPlayService] +Description="Enables automatic configuration of devices" +DisplayName="Plug and Play Service" +ServiceBinary="%11%\plugplay.exe" +ServiceType=32 +StartType=2 +ErrorControl=1 + +[WPFFontCacheService] +Description="Windows Presentation Foundation font cache service" +DisplayName="Windows Presentation Foundation Font Cache 3.0.0.0" +ServiceBinary="%10%\Microsoft.Net\Framework\v3.0\wpf\presentationfontcache.exe" +ServiceType=16 +StartType=3 +ErrorControl=1 + +[LanmanServerService] +AddReg=LanmanServerServiceKeys +Description="Lanman Server" +DisplayName="Lanman Server" +ServiceBinary="%11%\svchost.exe -k netsvcs" +ServiceType=32 +StartType=4 +ErrorControl=1 + +[LanmanServerServiceKeys] +HKR,Parameters,"ServiceDll",,"%11%\srvsvc.dll" +;; HKLM,%CurrentVersionNT%\SvcHost,"netsvcs",0x00010008,"lanmanserver" + +[FontCacheService] +AddReg=FontCacheServiceKeys +Description="Windows Font Cache Service" +DisplayName="Windows Font Cache Service" +ServiceBinary="%11%\svchost.exe -k netsvcs" +ServiceType=32 +StartType=3 +ErrorControl=1 + +[FontCacheServiceKeys] +HKR,Parameters,"ServiceDll",,"%11%\fntcache.dll" +HKLM,%CurrentVersionNT%\SvcHost,"netsvcs",0x00010008,"fontcache" + +[TaskSchedulerService] +AddReg=TaskSchedulerServiceKeys +Description="Task Scheduler" +DisplayName="Task Scheduler" +ServiceBinary="%11%\svchost.exe -k netsvcs" +ServiceType=32 +StartType=3 +ErrorControl=1 + +[TaskSchedulerServiceKeys] +HKR,Parameters,"ServiceDll",,"%11%\schedsvc.dll" +HKLM,%CurrentVersionNT%\SvcHost,"netsvcs",0x00010008,"Schedule" + +[wuauService] +Description="wuauserv" +DisplayName="Automatic Updates" +ServiceBinary="%11%\wuauserv.exe" +ServiceType=32 +StartType=3 +ErrorControl=1 + +[Services] +HKLM,%CurrentVersion%\RunServices,"winemenubuilder",2,"%11%\winemenubuilder.exe -a -r" +HKLM,"System\CurrentControlSet\Services\Eventlog\Application",,16 +HKLM,"System\CurrentControlSet\Services\Eventlog\System","Sources",0x10000,"" +HKLM,"System\CurrentControlSet\Services\Tcpip\Parameters","DataBasePath",2,"%11%\drivers" +HKLM,"System\CurrentControlSet\Services\VxD\MSTCP",,16 +HKLM,"System\CurrentControlSet\Services\Winsock\Parameters",,16 +HKLM,"System\CurrentControlSet\Services\Winsock2\Parameters\Protocol_Catalog9\Catalog_Entries",,16 + +[VersionInfo] +HKLM,%CurrentVersionNT%,"CurrentVersion",2,"6.1" +HKLM,%CurrentVersionNT%,"CSDVersion",2,"Service Pack 1" +HKLM,%CurrentVersionNT%,"CurrentBuild",2,"7601" +HKLM,%CurrentVersionNT%,"CurrentBuildNumber",2,"7601" +HKLM,%CurrentVersionNT%,"CurrentType",2,"Uniprocessor Free" +HKLM,%CurrentVersionNT%,"ProductName",2,"Microsoft Windows 7" +HKLM,%Control%\ProductOptions,"ProductType",2,"WinNT" +HKLM,%Control%\Windows,"CSDVersion",0x10003,0x100 +HKLM,%Control%\Session Manager\Environment,"OS",2,"Windows_NT" + +[VersionInfo.ntamd64] +HKLM,%CurrentVersionNT%,"CurrentVersion",2,"6.1" +HKLM,%CurrentVersionNT%,"CSDVersion",2,"Service Pack 1" +HKLM,%CurrentVersionNT%,"CurrentBuild",2,"7601" +HKLM,%CurrentVersionNT%,"CurrentBuildNumber",2,"7601" +HKLM,%CurrentVersionNT%,"CurrentType",2,"Uniprocessor Free" +HKLM,%CurrentVersionNT%,"ProductName",2,"Microsoft Windows 7" +HKLM,%Control%\ProductOptions,"ProductType",2,"WinNT" +HKLM,%Control%\Windows,"CSDVersion",0x10003,0x100 +HKLM,%Control%\Session Manager\Environment,"OS",2,"Windows_NT" + +[Wow64] +; Wow6432Node symlinks +HKLM,Software\Classes\Wow6432Node\AppId,"SymbolicLinkValue",0x60000,"\Registry\Machine\Software\Classes\AppId" +HKLM,Software\Classes\Wow6432Node\Protocols,"SymbolicLinkValue",0x60000,"\Registry\Machine\Software\Classes\Protocols" +HKLM,Software\Classes\Wow6432Node\TypeLib,"SymbolicLinkValue",0x60000,"\Registry\Machine\Software\Classes\TypeLib" +HKLM,Software\Wow6432Node\Classes,"SymbolicLinkValue",0x60000,"\Registry\Machine\Software\Classes\Wow6432Node" +; 32-bit redirected keys under HKLM\Software\Classes +HKLM,Software\Classes\Wow6432Node\CLSID,,16 +HKLM,Software\Classes\Wow6432Node\DirectShow,,16 +HKLM,Software\Classes\Wow6432Node\Interface,,16 +HKLM,Software\Classes\Wow6432Node\Media Type,,16 +HKLM,Software\Classes\Wow6432Node\MediaFoundation,,16 +; symlinks for shared keys under HKLM\Software +HKLM,Software\Wow6432Node\Microsoft\Clients,"SymbolicLinkValue",0x60000,"\Registry\Machine\Software\Microsoft\Clients" +HKLM,Software\Wow6432Node\Microsoft\Cryptography\Calais\Current,"SymbolicLinkValue",0x60000,"\Registry\Machine\Software\Microsoft\Cryptography\Calais\Current" +HKLM,Software\Wow6432Node\Microsoft\Cryptography\Calais\Readers,"SymbolicLinkValue",0x60000,"\Registry\Machine\Software\Microsoft\Cryptography\Calais\Readers" +HKLM,Software\Wow6432Node\Microsoft\Cryptography\Services,"SymbolicLinkValue",0x60000,"\Registry\Machine\Software\Microsoft\Cryptography\Services" +HKLM,Software\Wow6432Node\Microsoft\CTF\SystemShared,"SymbolicLinkValue",0x60000,"\Registry\Machine\Software\Microsoft\CTF\SystemShared" +HKLM,Software\Wow6432Node\Microsoft\CTF\TIP,"SymbolicLinkValue",0x60000,"\Registry\Machine\Software\Microsoft\CTF\TIP" +HKLM,Software\Wow6432Node\Microsoft\DFS,"SymbolicLinkValue",0x60000,"\Registry\Machine\Software\Microsoft\DFS" +HKLM,Software\Wow6432Node\Microsoft\Driver Signing,"SymbolicLinkValue",0x60000,"\Registry\Machine\Software\Microsoft\Driver Signing" +HKLM,Software\Wow6432Node\Microsoft\EnterpriseCertificates,"SymbolicLinkValue",0x60000,"\Registry\Machine\Software\Microsoft\EnterpriseCertificates" +HKLM,Software\Wow6432Node\Microsoft\EventSystem,"SymbolicLinkValue",0x60000,"\Registry\Machine\Software\Microsoft\EventSystem" +HKLM,Software\Wow6432Node\Microsoft\MSMQ,"SymbolicLinkValue",0x60000,"\Registry\Machine\Software\Microsoft\MSMQ" +HKLM,Software\Wow6432Node\Microsoft\Non-Driver Signing,"SymbolicLinkValue",0x60000,"\Registry\Machine\Software\Microsoft\Non-Driver Signing" +HKLM,Software\Wow6432Node\Microsoft\Notepad\DefaultFonts,"SymbolicLinkValue",0x60000,"\Registry\Machine\Software\Microsoft\Notepad\DefaultFonts" +HKLM,Software\Wow6432Node\Microsoft\OLE,"SymbolicLinkValue",0x60000,"\Registry\Machine\Software\Microsoft\OLE" +HKLM,Software\Wow6432Node\Microsoft\RAS,"SymbolicLinkValue",0x60000,"\Registry\Machine\Software\Microsoft\RAS" +HKLM,Software\Wow6432Node\Microsoft\RPC,"SymbolicLinkValue",0x60000,"\Registry\Machine\Software\Microsoft\RPC" +HKLM,Software\Wow6432Node\Microsoft\Software\Microsoft\Shared Tools\MSInfo,"SymbolicLinkValue",0x60000,"\Registry\Machine\Software\Microsoft\Shared Tools\MSInfo" +HKLM,Software\Wow6432Node\Microsoft\SystemCertificates,"SymbolicLinkValue",0x60000,"\Registry\Machine\Software\Microsoft\SystemCertificates" +HKLM,Software\Wow6432Node\Microsoft\TermServLicensing,"SymbolicLinkValue",0x60000,"\Registry\Machine\Software\Microsoft\TermServLicensing" +HKLM,Software\Wow6432Node\Microsoft\Transaction Server,"SymbolicLinkValue",0x60000,"\Registry\Machine\Software\Microsoft\Transaction Server" +HKLM,Software\Wow6432Node\Microsoft\Windows\CurrentVersion\App Paths,"SymbolicLinkValue",0x60000,"\Registry\Machine\Software\Microsoft\Windows\CurrentVersion\App Paths" +HKLM,Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Control Panel\Cursors\Schemes,"SymbolicLinkValue",0x60000,"\Registry\Machine\Software\Microsoft\Windows\CurrentVersion\Control Panel\Cursors\Schemes" +HKLM,Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Explorer\AutoplayHandlers,"SymbolicLinkValue",0x60000,"\Registry\Machine\Software\Microsoft\Windows\CurrentVersion\Explorer\AutoplayHandlers" +HKLM,Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Explorer\DriveIcons,"SymbolicLinkValue",0x60000,"\Registry\Machine\Software\Microsoft\Windows\CurrentVersion\Explorer\DriveIcons" +HKLM,Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Explorer\KindMap,"SymbolicLinkValue",0x60000,"\Registry\Machine\Software\Microsoft\Windows\CurrentVersion\Explorer\KindMap" +HKLM,Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Group Policy,"SymbolicLinkValue",0x60000,"\Registry\Machine\Software\Microsoft\Windows\CurrentVersion\Group Policy" +HKLM,Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Policies,"SymbolicLinkValue",0x60000,"\Registry\Machine\Software\Microsoft\Windows\CurrentVersion\Policies" +HKLM,Software\Wow6432Node\Microsoft\Windows\CurrentVersion\PreviewHandlers,"SymbolicLinkValue",0x60000,"\Registry\Machine\Software\Microsoft\Windows\CurrentVersion\PreviewHandlers" +HKLM,Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Setup,"SymbolicLinkValue",0x60000,"\Registry\Machine\Software\Microsoft\Windows\CurrentVersion\Setup" +HKLM,Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Telephony\Locations,"SymbolicLinkValue",0x60000,"\Registry\Machine\Software\Microsoft\Windows\CurrentVersion\Telephony\Locations" +HKLM,Software\Wow6432Node\Microsoft\Windows NT\CurrentVersion\Console,"SymbolicLinkValue",0x60000,"\Registry\Machine\Software\Microsoft\Windows NT\CurrentVersion\Console" +HKLM,Software\Wow6432Node\Microsoft\Windows NT\CurrentVersion\FontDpi,"SymbolicLinkValue",0x60000,"\Registry\Machine\Software\Microsoft\Windows NT\CurrentVersion\FontDpi" +HKLM,Software\Wow6432Node\Microsoft\Windows NT\CurrentVersion\FontLink,"SymbolicLinkValue",0x60000,"\Registry\Machine\Software\Microsoft\Windows NT\CurrentVersion\FontLink" +HKLM,Software\Wow6432Node\Microsoft\Windows NT\CurrentVersion\FontMapper,"SymbolicLinkValue",0x60000,"\Registry\Machine\Software\Microsoft\Windows NT\CurrentVersion\FontMapper" +HKLM,Software\Wow6432Node\Microsoft\Windows NT\CurrentVersion\Fonts,"SymbolicLinkValue",0x60000,"\Registry\Machine\Software\Microsoft\Windows NT\CurrentVersion\Fonts" +HKLM,Software\Wow6432Node\Microsoft\Windows NT\CurrentVersion\FontSubstitutes,"SymbolicLinkValue",0x60000,"\Registry\Machine\Software\Microsoft\Windows NT\CurrentVersion\FontSubstitutes" +HKLM,Software\Wow6432Node\Microsoft\Windows NT\CurrentVersion\Gre_Initialize,"SymbolicLinkValue",0x60000,"\Registry\Machine\Software\Microsoft\Windows NT\CurrentVersion\Gre_Initialize" +HKLM,Software\Wow6432Node\Microsoft\Windows NT\CurrentVersion\Image File Execution Options,"SymbolicLinkValue",0x60000,"\Registry\Machine\Software\Microsoft\Windows NT\CurrentVersion\Image File Execution Options" +HKLM,Software\Wow6432Node\Microsoft\Windows NT\CurrentVersion\LanguagePack,"SymbolicLinkValue",0x60000,"\Registry\Machine\Software\Microsoft\Windows NT\CurrentVersion\LanguagePack" +HKLM,Software\Wow6432Node\Microsoft\Windows NT\CurrentVersion\NetworkCards,"SymbolicLinkValue",0x60000,"\Registry\Machine\Software\Microsoft\Windows NT\CurrentVersion\NetworkCards" +HKLM,Software\Wow6432Node\Microsoft\Windows NT\CurrentVersion\Perflib,"SymbolicLinkValue",0x60000,"\Registry\Machine\Software\Microsoft\Windows NT\CurrentVersion\Perflib" +HKLM,Software\Wow6432Node\Microsoft\Windows NT\CurrentVersion\Ports,"SymbolicLinkValue",0x60000,"\Registry\Machine\Software\Microsoft\Windows NT\CurrentVersion\Ports" +HKLM,Software\Wow6432Node\Microsoft\Windows NT\CurrentVersion\Print,"SymbolicLinkValue",0x60000,"\Registry\Machine\Software\Microsoft\Windows NT\CurrentVersion\Print" +HKLM,Software\Wow6432Node\Microsoft\Windows NT\CurrentVersion\ProfileList,"SymbolicLinkValue",0x60000,"\Registry\Machine\Software\Microsoft\Windows NT\CurrentVersion\ProfileList" +HKLM,Software\Wow6432Node\Microsoft\Windows NT\CurrentVersion\Time Zones,"SymbolicLinkValue",0x60000,"\Registry\Machine\Software\Microsoft\Windows NT\CurrentVersion\Time Zones" +HKLM,Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Time Zones,"SymbolicLinkValue",0x60000,"\Registry\Machine\Software\Microsoft\Windows NT\CurrentVersion\Time Zones" +HKLM,Software\Wow6432Node\Policies,"SymbolicLinkValue",0x60000,"\Registry\Machine\Software\Policies" +HKLM,Software\Wow6432Node\Registered Applications,"SymbolicLinkValue",0x60000,"\Registry\Machine\Software\Registered Applications" + +[LicenseInformation] +; based on information from http://www.geoffchappell.com/notes/windows/license/install.htm +HKLM,Software\Wine\LicenseInformation,"Kernel-MUI-Language-Allowed",,"EMPTY" +HKLM,Software\Wine\LicenseInformation,"Kernel-MUI-Language-Disallowed",,"EMPTY" +HKLM,Software\Wine\LicenseInformation,"Kernel-MUI-Number-Allowed",0x10001,1000 +HKLM,Software\Wine\LicenseInformation,"Shell-InBoxGames-FreeCell-EnableGame",0x10001,0x00000001 +HKLM,Software\Wine\LicenseInformation,"Shell-InBoxGames-Hearts-EnableGame",0x10001,0x00000001 +HKLM,Software\Wine\LicenseInformation,"Shell-InBoxGames-Minesweeper-EnableGame",0x10001,0x00000001 +HKLM,Software\Wine\LicenseInformation,"Shell-InBoxGames-PurblePlace-EnableGame",0x10001,0x00000001 +HKLM,Software\Wine\LicenseInformation,"Shell-InBoxGames-Shanghai-EnableGame",0x10001,0x00000001 +HKLM,Software\Wine\LicenseInformation,"Shell-InBoxGames-Solitaire-EnableGame",0x10001,0x00000001 +HKLM,Software\Wine\LicenseInformation,"Shell-InBoxGames-SpiderSolitaire-EnableGame",0x10001,0x00000001 +HKLM,Software\Wine\LicenseInformation,"Shell-PremiumInBoxGames-Chess-EnableGame",0x10001,0x00000001