mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
Remove unneeded w32api files
svn path=/trunk/; revision=15143
This commit is contained in:
parent
c78d3be5ff
commit
df8fe14cb4
127 changed files with 0 additions and 30713 deletions
|
@ -1,5 +0,0 @@
|
|||
2000-10-23 Danny R. Smith <danny_r_smith_2001@yahoo.co.nz>
|
||||
* include/basetsd.h
|
||||
* include/ras.h
|
||||
* include/raserror.h
|
||||
* include/rassapi.h
|
File diff suppressed because it is too large
Load diff
|
@ -1,157 +0,0 @@
|
|||
#
|
||||
# Makefile.in
|
||||
#
|
||||
# This file is part of a free library for the Win32 API.
|
||||
#
|
||||
# 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.
|
||||
|
||||
# start config section
|
||||
|
||||
SHELL = @SHELL@
|
||||
|
||||
srcdir = @srcdir@
|
||||
VPATH = @srcdir@
|
||||
|
||||
build_alias = @build@
|
||||
host_alias = @host@
|
||||
target_alias = @target@
|
||||
prefix = @prefix@
|
||||
conf_prefix = @prefix@
|
||||
|
||||
program_transform_name = @program_transform_name@
|
||||
exec_prefix = @exec_prefix@
|
||||
bindir = @bindir@
|
||||
libdir = @libdir@
|
||||
tooldir = $(exec_prefix)/$(target_alias)
|
||||
datadir = @datadir@
|
||||
infodir = @infodir@
|
||||
includedir = @includedir@
|
||||
|
||||
CC = @CC@
|
||||
CC_FOR_TARGET = $(CC)
|
||||
CFLAGS = @CFLAGS@
|
||||
|
||||
DLLTOOL = @DLLTOOL@
|
||||
AS = @AS@
|
||||
AS_FOR_TARGET = $(AS_FOR_TARGET)
|
||||
WINDRES = @WINDRES@
|
||||
|
||||
RANLIB = @RANLIB@
|
||||
AR = @AR@
|
||||
LD = @LD@
|
||||
|
||||
TAR = tar
|
||||
TARFLAGS = z
|
||||
TARFILEEXT = .tar.gz
|
||||
|
||||
FLAGS_TO_PASS = \
|
||||
AS="$(AS)" \
|
||||
CC="$(CC)" \
|
||||
CPPFLAGS="$(CPPFLAGS)" \
|
||||
CFLAGS="$(CFLAGS)" \
|
||||
CXXFLAGS="$(CXXFLAGS)" \
|
||||
AR="$(AR)" \
|
||||
RANLIB="$(RANLIB)" \
|
||||
LD="$(LD)" \
|
||||
DLLTOOL="$(DLLTOOL)" \
|
||||
TAR="$(TAR)" \
|
||||
TARFLAGS="$(TARFLAGS)" \
|
||||
TARFILEEXT="$(TARFILEEXT)" \
|
||||
WINDRES="$(WINDRES)"
|
||||
|
||||
# end config section
|
||||
|
||||
SUBDIRS = lib
|
||||
|
||||
PACKAGE = w32api
|
||||
VERSION = 2.5
|
||||
CYGRELEASE = 1
|
||||
|
||||
DIST_FILES = Makefile.in configure.in configure config.guess config.sub \
|
||||
install-sh README.w32api ChangeLog TODO CONTRIBUTIONS
|
||||
|
||||
all: lib
|
||||
|
||||
%-subdirs:
|
||||
for i in $(SUBDIRS); do \
|
||||
$(MAKE) $(FLAGS_TO_PASS) -C $$i $*; \
|
||||
done
|
||||
|
||||
lib:
|
||||
$(MAKE) $(FLAGS_TO_PASS) -C $@
|
||||
|
||||
test:
|
||||
$(MAKE) -C lib test $(FLAGS_TO_PASS)
|
||||
|
||||
install uninstall:
|
||||
for i in $(SUBDIRS); do \
|
||||
(cd $$i; $(MAKE) $@); \
|
||||
done
|
||||
|
||||
ifdef SNAPDATE
|
||||
distdir = $(PACKAGE)-$(VERSION)-$(SNAPDATE)
|
||||
else
|
||||
ifneq (,$(findstring cygwin, $(target_alias)))
|
||||
distdir=$(PACKAGE)-$(VERSION)-$(CYGRELEASE)
|
||||
else
|
||||
distdir=$(PACKAGE)-$(VERSION)
|
||||
endif
|
||||
endif
|
||||
|
||||
ifneq (,$(findstring mingw, $(target_alias)))
|
||||
dist_prefix=
|
||||
else
|
||||
dist_prefix=/$(conf_prefix)
|
||||
endif
|
||||
|
||||
ifneq (,$(findstring cygwin, $(target_alias)))
|
||||
TARFLAGS = j
|
||||
TARFILEEXT = .tar.bz2
|
||||
endif
|
||||
|
||||
dist: srcdist bindist
|
||||
|
||||
srcdist:
|
||||
rm -rf $(distdir)
|
||||
mkdir $(distdir)
|
||||
chmod 755 $(distdir)
|
||||
for i in $(DIST_FILES); do \
|
||||
cp -p $(srcdir)/$$i $(distdir)/$$i ; \
|
||||
done
|
||||
for i in $(SUBDIRS); do \
|
||||
(cd $$i; $(MAKE) distdir=../$(distdir) dist); \
|
||||
done
|
||||
rm -f $(distdir)-src$(TARFILEEXT)
|
||||
$(TAR) $(TARFLAGS)cf $(distdir)-src$(TARFILEEXT) $(distdir)
|
||||
|
||||
bindist:
|
||||
rm -rf $(distdir)
|
||||
mkdir $(distdir)
|
||||
chmod 755 $(distdir)
|
||||
$(MAKE) install prefix=`pwd`/$(distdir)$(dist_prefix) exec_prefix=`pwd`/$(distdir)$(dist_prefix)
|
||||
rm -f $(distdir)$(TARFILEEXT)
|
||||
cd $(distdir); $(TAR) $(TARFLAGS)cf ../$(distdir)$(TARFILEEXT) *
|
||||
|
||||
snapshot:
|
||||
make dist SNAPDATE=$(shell date '+%Y%m%d')
|
||||
|
||||
Makefile: Makefile.in config.status configure
|
||||
$(SHELL) config.status
|
||||
|
||||
mostlyclean-top:
|
||||
rm -f *~
|
||||
clean-top: mostlyclean-top
|
||||
rm -rf $(distdir)
|
||||
rm -f $(distdir)*$(TARFILEEXT)
|
||||
maintainer-clean-top:
|
||||
|
||||
mostlyclean: mostlyclean-top mostlyclean-subdirs
|
||||
clean: mostlyclean-top clean-subdirs
|
||||
distclean: clean-top
|
||||
rm -f Makefile config.status config.log config.cache TAGS *~
|
||||
$(MAKE) -C lib distclean
|
||||
maintainer-clean: maintainer-clean-subdirs
|
||||
|
||||
.PHONY: lib test
|
|
@ -1,62 +0,0 @@
|
|||
Makefile.in: Need to redo the clean targets
|
||||
|
||||
**Check to see if the rest of this is still valid?**
|
||||
|
||||
winsock2.h - Possible to merge with winsock.h?
|
||||
listview control
|
||||
_WIN32_IE issue
|
||||
|
||||
Missing functions/defines/structs
|
||||
=================================
|
||||
ATF_AVAILABLE
|
||||
SERKF_ACTIVE
|
||||
TIMER_ALL_ACCESS,TIMER_MODIFY_STATE (new style Win32 Access Control: accctrl)
|
||||
AbnormalTermination and other low-level exception handling macros/functions.
|
||||
GetExceptionCode
|
||||
GetExceptionInformation
|
||||
GetAuditedPermissionsFromAcl
|
||||
GetEffectiveRightsFromAcl
|
||||
GetExplicitEntriesFromAcl
|
||||
AcsLan
|
||||
BuildExplicitAccessWithName
|
||||
BuildImpersonateExplicitAccessWithName
|
||||
BuildImpersonateTrustee
|
||||
BuildSecurityDescriptor
|
||||
BuildTrusteeWithName
|
||||
BuildTrusteeWithSid
|
||||
GetMultipleTrustee
|
||||
GetMultipleTrusteeOperation
|
||||
GetNamedSecurityInfo
|
||||
GetSecurityInfo
|
||||
GetTrusteeForm
|
||||
GetTrusteeName
|
||||
GetTrusteeType
|
||||
PF_XXXX defines for IsProcessorFeaturePresent
|
||||
LookupSecurityDescriptorParts
|
||||
LSXXXX lsapi functions/types
|
||||
RASADFunc through RasValidateEntryName (RASAPI ras.h)
|
||||
SetEntriesInAcl
|
||||
SetNamedSecurityInfo
|
||||
SetSecurityInfo
|
||||
SetServiceBits
|
||||
SnmpExtensionInit through SnmpUtilVarBindListFree (mgmtapi.h/snmp.h
|
||||
Simple Network Management Protocol(SNMP))
|
||||
SOBailOut through SUUserSaveData, VwStreamCloseFunc through VwStreamTellFunc
|
||||
(File viewer/parser (quick view))
|
||||
WinSubmitCertificate (wintrust.h)
|
||||
WinTrustProviderClientInitialize through WinVerifyTrust
|
||||
EXPLICIT_ACCESS
|
||||
INotifyReplica (reconcil)
|
||||
|
||||
OLE/COM:
|
||||
========
|
||||
oleidl.h
|
||||
oaidl.h
|
||||
ocidl.h
|
||||
Some GUIDs should be in libole32.a instead of libuuid.a
|
||||
|
||||
Low priority
|
||||
============
|
||||
RASAPI
|
||||
MAPI
|
||||
directx (what about existing ports?)
|
1407
reactos/w32api/config.guess
vendored
1407
reactos/w32api/config.guess
vendored
File diff suppressed because it is too large
Load diff
1504
reactos/w32api/config.sub
vendored
1504
reactos/w32api/config.sub
vendored
File diff suppressed because it is too large
Load diff
2726
reactos/w32api/configure
vendored
2726
reactos/w32api/configure
vendored
File diff suppressed because it is too large
Load diff
|
@ -1,50 +0,0 @@
|
|||
dnl Process this file with autoconf to produce a configure script.
|
||||
|
||||
dnl This file is part of a free win32 library
|
||||
dnl
|
||||
dnl This program is distributed in the hope that it will be useful,
|
||||
dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
dnl GNU General Public License for more details.
|
||||
|
||||
AC_PREREQ(2.12)
|
||||
AC_INIT(lib/scrnsave.c)
|
||||
|
||||
AC_CANONICAL_SYSTEM
|
||||
|
||||
dnl Find install command
|
||||
AC_PROG_INSTALL
|
||||
|
||||
dnl check for cc and CFLAGS
|
||||
CFLAGS=${CFLAGS-"-O2 -g"}
|
||||
AC_CHECK_TOOL(CC, gcc, gcc)
|
||||
AC_SUBST(CC)
|
||||
AC_SUBST(CFLAGS)
|
||||
|
||||
dnl check for various tools
|
||||
AC_CHECK_TOOL(AR, ar, ar)
|
||||
AC_SUBST(AR)
|
||||
AC_CHECK_TOOL(AS, as, as)
|
||||
AC_SUBST(AS)
|
||||
AC_CHECK_TOOL(RANLIB, ranlib, ranlib)
|
||||
AC_SUBST(RANLIB)
|
||||
AC_CHECK_TOOL(LD, ld, ld)
|
||||
AC_SUBST(LD)
|
||||
AC_CHECK_TOOL(DLLTOOL, dlltool, dlltool)
|
||||
AC_SUBST(DLLTOOL)
|
||||
AC_CHECK_TOOL(WINDRES, windres, windres)
|
||||
AC_SUBST(WINDRES)
|
||||
|
||||
AC_MSG_CHECKING([for build environment])
|
||||
case "$build_alias" in
|
||||
*-mingw*) BUILDENV=mingw;;
|
||||
*-cygwin*) BUILDENV=cygwin;;
|
||||
esac
|
||||
if test -z "$BUILDENV"; then
|
||||
AC_MSG_RESULT(standard)
|
||||
else
|
||||
AC_MSG_RESULT($BUILDENV)
|
||||
fi
|
||||
AC_SUBST(BUILDENV)
|
||||
|
||||
AC_OUTPUT(Makefile lib/Makefile lib/ddk/Makefile)
|
|
@ -1,251 +0,0 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# install - install a program, script, or datafile
|
||||
# This comes from X11R5 (mit/util/scripts/install.sh).
|
||||
#
|
||||
# Copyright 1991 by the Massachusetts Institute of Technology
|
||||
#
|
||||
# Permission to use, copy, modify, distribute, and sell this software and its
|
||||
# documentation for any purpose is hereby granted without fee, provided that
|
||||
# the above copyright notice appear in all copies and that both that
|
||||
# copyright notice and this permission notice appear in supporting
|
||||
# documentation, and that the name of M.I.T. not be used in advertising or
|
||||
# publicity pertaining to distribution of the software without specific,
|
||||
# written prior permission. M.I.T. makes no representations about the
|
||||
# suitability of this software for any purpose. It is provided "as is"
|
||||
# without express or implied warranty.
|
||||
#
|
||||
# Calling this script install-sh is preferred over install.sh, to prevent
|
||||
# `make' implicit rules from creating a file called install from it
|
||||
# when there is no Makefile.
|
||||
#
|
||||
# This script is compatible with the BSD install script, but was written
|
||||
# from scratch. It can only install one file at a time, a restriction
|
||||
# shared with many OS's install programs.
|
||||
|
||||
|
||||
# set DOITPROG to echo to test this script
|
||||
|
||||
# Don't use :- since 4.3BSD and earlier shells don't like it.
|
||||
doit="${DOITPROG-}"
|
||||
|
||||
|
||||
# put in absolute paths if you don't have them in your path; or use env. vars.
|
||||
|
||||
mvprog="${MVPROG-mv}"
|
||||
cpprog="${CPPROG-cp}"
|
||||
chmodprog="${CHMODPROG-chmod}"
|
||||
chownprog="${CHOWNPROG-chown}"
|
||||
chgrpprog="${CHGRPPROG-chgrp}"
|
||||
stripprog="${STRIPPROG-strip}"
|
||||
rmprog="${RMPROG-rm}"
|
||||
mkdirprog="${MKDIRPROG-mkdir}"
|
||||
|
||||
transformbasename=""
|
||||
transform_arg=""
|
||||
instcmd="$mvprog"
|
||||
chmodcmd="$chmodprog 0755"
|
||||
chowncmd=""
|
||||
chgrpcmd=""
|
||||
stripcmd=""
|
||||
rmcmd="$rmprog -f"
|
||||
mvcmd="$mvprog"
|
||||
src=""
|
||||
dst=""
|
||||
dir_arg=""
|
||||
|
||||
while [ x"$1" != x ]; do
|
||||
case $1 in
|
||||
-c) instcmd="$cpprog"
|
||||
shift
|
||||
continue;;
|
||||
|
||||
-d) dir_arg=true
|
||||
shift
|
||||
continue;;
|
||||
|
||||
-m) chmodcmd="$chmodprog $2"
|
||||
shift
|
||||
shift
|
||||
continue;;
|
||||
|
||||
-o) chowncmd="$chownprog $2"
|
||||
shift
|
||||
shift
|
||||
continue;;
|
||||
|
||||
-g) chgrpcmd="$chgrpprog $2"
|
||||
shift
|
||||
shift
|
||||
continue;;
|
||||
|
||||
-s) stripcmd="$stripprog"
|
||||
shift
|
||||
continue;;
|
||||
|
||||
-t=*) transformarg=`echo $1 | sed 's/-t=//'`
|
||||
shift
|
||||
continue;;
|
||||
|
||||
-b=*) transformbasename=`echo $1 | sed 's/-b=//'`
|
||||
shift
|
||||
continue;;
|
||||
|
||||
*) if [ x"$src" = x ]
|
||||
then
|
||||
src=$1
|
||||
else
|
||||
# this colon is to work around a 386BSD /bin/sh bug
|
||||
:
|
||||
dst=$1
|
||||
fi
|
||||
shift
|
||||
continue;;
|
||||
esac
|
||||
done
|
||||
|
||||
if [ x"$src" = x ]
|
||||
then
|
||||
echo "install: no input file specified"
|
||||
exit 1
|
||||
else
|
||||
true
|
||||
fi
|
||||
|
||||
if [ x"$dir_arg" != x ]; then
|
||||
dst=$src
|
||||
src=""
|
||||
|
||||
if [ -d $dst ]; then
|
||||
instcmd=:
|
||||
chmodcmd=""
|
||||
else
|
||||
instcmd=mkdir
|
||||
fi
|
||||
else
|
||||
|
||||
# Waiting for this to be detected by the "$instcmd $src $dsttmp" command
|
||||
# might cause directories to be created, which would be especially bad
|
||||
# if $src (and thus $dsttmp) contains '*'.
|
||||
|
||||
if [ -f $src -o -d $src ]
|
||||
then
|
||||
true
|
||||
else
|
||||
echo "install: $src does not exist"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [ x"$dst" = x ]
|
||||
then
|
||||
echo "install: no destination specified"
|
||||
exit 1
|
||||
else
|
||||
true
|
||||
fi
|
||||
|
||||
# If destination is a directory, append the input filename; if your system
|
||||
# does not like double slashes in filenames, you may need to add some logic
|
||||
|
||||
if [ -d $dst ]
|
||||
then
|
||||
dst="$dst"/`basename $src`
|
||||
else
|
||||
true
|
||||
fi
|
||||
fi
|
||||
|
||||
## this sed command emulates the dirname command
|
||||
dstdir=`echo $dst | sed -e 's,[^/]*$,,;s,/$,,;s,^$,.,'`
|
||||
|
||||
# Make sure that the destination directory exists.
|
||||
# this part is taken from Noah Friedman's mkinstalldirs script
|
||||
|
||||
# Skip lots of stat calls in the usual case.
|
||||
if [ ! -d "$dstdir" ]; then
|
||||
defaultIFS='
|
||||
'
|
||||
IFS="${IFS-${defaultIFS}}"
|
||||
|
||||
oIFS="${IFS}"
|
||||
# Some sh's can't handle IFS=/ for some reason.
|
||||
IFS='%'
|
||||
set - `echo ${dstdir} | sed -e 's@/@%@g' -e 's@^%@/@'`
|
||||
IFS="${oIFS}"
|
||||
|
||||
pathcomp=''
|
||||
|
||||
while [ $# -ne 0 ] ; do
|
||||
pathcomp="${pathcomp}${1}"
|
||||
shift
|
||||
|
||||
if [ ! -d "${pathcomp}" ] ;
|
||||
then
|
||||
$mkdirprog "${pathcomp}"
|
||||
else
|
||||
true
|
||||
fi
|
||||
|
||||
pathcomp="${pathcomp}/"
|
||||
done
|
||||
fi
|
||||
|
||||
if [ x"$dir_arg" != x ]
|
||||
then
|
||||
$doit $instcmd $dst &&
|
||||
|
||||
if [ x"$chowncmd" != x ]; then $doit $chowncmd $dst; else true ; fi &&
|
||||
if [ x"$chgrpcmd" != x ]; then $doit $chgrpcmd $dst; else true ; fi &&
|
||||
if [ x"$stripcmd" != x ]; then $doit $stripcmd $dst; else true ; fi &&
|
||||
if [ x"$chmodcmd" != x ]; then $doit $chmodcmd $dst; else true ; fi
|
||||
else
|
||||
|
||||
# If we're going to rename the final executable, determine the name now.
|
||||
|
||||
if [ x"$transformarg" = x ]
|
||||
then
|
||||
dstfile=`basename $dst`
|
||||
else
|
||||
dstfile=`basename $dst $transformbasename |
|
||||
sed $transformarg`$transformbasename
|
||||
fi
|
||||
|
||||
# don't allow the sed command to completely eliminate the filename
|
||||
|
||||
if [ x"$dstfile" = x ]
|
||||
then
|
||||
dstfile=`basename $dst`
|
||||
else
|
||||
true
|
||||
fi
|
||||
|
||||
# Make a temp file name in the proper directory.
|
||||
|
||||
dsttmp=$dstdir/#inst.$$#
|
||||
|
||||
# Move or copy the file name to the temp name
|
||||
|
||||
$doit $instcmd $src $dsttmp &&
|
||||
|
||||
trap "rm -f ${dsttmp}" 0 &&
|
||||
|
||||
# and set any options; do chmod last to preserve setuid bits
|
||||
|
||||
# If any of these fail, we abort the whole thing. If we want to
|
||||
# ignore errors from any of these, just make sure not to ignore
|
||||
# errors from the above "$doit $instcmd $src $dsttmp" command.
|
||||
|
||||
if [ x"$chowncmd" != x ]; then $doit $chowncmd $dsttmp; else true;fi &&
|
||||
if [ x"$chgrpcmd" != x ]; then $doit $chgrpcmd $dsttmp; else true;fi &&
|
||||
if [ x"$stripcmd" != x ]; then $doit $stripcmd $dsttmp; else true;fi &&
|
||||
if [ x"$chmodcmd" != x ]; then $doit $chmodcmd $dsttmp; else true;fi &&
|
||||
|
||||
# Now rename the file to the real destination.
|
||||
|
||||
$doit $rmcmd -f $dstdir/$dstfile &&
|
||||
$doit $mvcmd $dsttmp $dstdir/$dstfile
|
||||
|
||||
fi &&
|
||||
|
||||
|
||||
exit 0
|
|
@ -1,267 +0,0 @@
|
|||
#
|
||||
# Makefile.in
|
||||
#
|
||||
# This file is part of a free library for the Win32 API.
|
||||
#
|
||||
# This library is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
|
||||
|
||||
# start config section
|
||||
|
||||
SHELL = @SHELL@
|
||||
|
||||
srcdir = @srcdir@
|
||||
VPATH = @srcdir@
|
||||
|
||||
SUBDIRS := ddk
|
||||
subdirs := ddk
|
||||
|
||||
host_alias = @host@
|
||||
build_alias = @build@
|
||||
target_alias = @target@
|
||||
prefix = @prefix@
|
||||
includedir:=@includedir@
|
||||
|
||||
program_transform_name = @program_transform_name@
|
||||
exec_prefix = @exec_prefix@
|
||||
libdir:=@libdir@
|
||||
bindir = @bindir@
|
||||
ifeq ($(target_alias),$(host_alias))
|
||||
ifeq ($(build_alias),$(host_alias))
|
||||
tooldir:=$(exec_prefix)
|
||||
else
|
||||
tooldir:=$(exec_prefix)/$(target_alias)
|
||||
endif
|
||||
else
|
||||
tooldir:=$(exec_prefix)/$(target_alias)
|
||||
endif
|
||||
datadir = @datadir@
|
||||
infodir = @infodir@
|
||||
ifneq (,$(findstring cygwin,$(target_alias)))
|
||||
inst_includedir:=$(tooldir)/include/w32api
|
||||
inst_libdir:=$(tooldir)/lib/w32api
|
||||
else
|
||||
inst_includedir:=$(includedir)
|
||||
inst_libdir:=$(libdir)
|
||||
endif
|
||||
|
||||
INSTALL = @INSTALL@
|
||||
INSTALL_DATA = @INSTALL_DATA@
|
||||
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||
mkinstalldirs = mkdir -p
|
||||
|
||||
CC = @CC@
|
||||
CC_FOR_TARGET = $(CC)
|
||||
|
||||
DLLTOOL = @DLLTOOL@
|
||||
DLLTOOL_FLAGS = --as=$(AS) -k
|
||||
AS = @AS@
|
||||
AS_FOR_TARGET = $(AS_FOR_TARGET)
|
||||
WINDRES = @WINDRES@
|
||||
|
||||
# Depending on if we build as part of winsup or mingw we need to
|
||||
# add additional include paths in order to get the correct headers
|
||||
# from the C library.
|
||||
BUILDENV = @BUILDENV@
|
||||
|
||||
ifeq ($(BUILDENV), cygwin)
|
||||
# winsup/include
|
||||
# winsup/../newlib/libc/include
|
||||
# winsup/../newlib/libc/sys/cygwin
|
||||
EXTRA_INCLUDES = -I$(srcdir)/../../include -I$(srcdir)/../../../newlib/libc/include -I$(srcdir)/../../../newlib/libc/sys/cygwin
|
||||
endif
|
||||
ifeq ($(BUILDENV), mingw)
|
||||
EXTRA_INCLUDES = -I$(srcdir)/../../mingw/include
|
||||
endif
|
||||
|
||||
INCLUDES = -I$(srcdir)/../include $(EXTRA_INCLUDES)
|
||||
|
||||
CFLAGS = @CFLAGS@
|
||||
ALL_CFLAGS = $(CFLAGS) $(INCLUDES)
|
||||
|
||||
RANLIB = @RANLIB@
|
||||
AR = @AR@
|
||||
LD = @LD@
|
||||
|
||||
FLAGS_TO_PASS = \
|
||||
AS="$(AS)" \
|
||||
CC="$(CC)" \
|
||||
CPPFLAGS="$(CPPFLAGS)" \
|
||||
CFLAGS="$(CFLAGS)" \
|
||||
CXXFLAGS="$(CXXFLAGS)" \
|
||||
AR="$(AR)" \
|
||||
RANLIB="$(RANLIB)" \
|
||||
LD="$(LD)" \
|
||||
DLLTOOL="$(DLLTOOL)" \
|
||||
TAR="$(TAR)" \
|
||||
TARFLAGS="$(TARFLAGS)" \
|
||||
TARFILEEXT="$(TARFILEEXT)" \
|
||||
WINDRES="$(WINDRES)"
|
||||
|
||||
# end config section
|
||||
|
||||
# headers
|
||||
|
||||
HEADERS = $(notdir $(wildcard $(srcdir)/../include/*.h))
|
||||
GL_HEADERS = $(notdir $(wildcard $(srcdir)/../include/GL/*.h))
|
||||
|
||||
# libraries
|
||||
|
||||
DEF_FILES = $(notdir $(wildcard $(srcdir)/*.def))
|
||||
MRI_FILES = $(notdir $(wildcard $(srcdir)/*.mri))
|
||||
IMPLIBS = $(addprefix lib,$(subst .def,.a,$(DEF_FILES)))
|
||||
MIMPLIBS = $(addprefix lib,$(subst .mri,.a,$(MRI_FILES)))
|
||||
EXTRA_LIBS=libuuid.a libscrnsave.a libscrnsavw.a libdxguid.a liblargeint.a
|
||||
LIBS = $(IMPLIBS) $(MIMPLIBS) $(EXTRA_LIBS)
|
||||
UUID_OBJS = uuid.o mshtml-uuid.o
|
||||
EXTRA_OBJS = shell32.o dxguid.o scrnsave.o scrnsavw.o largeint.o \
|
||||
$(UUID_OBJS) dinput.o kernel32.o
|
||||
UUID_SOURCES = uuid.c mshtml-uuid.c
|
||||
SOURCES = scrnsave.c shell32.c largeint.c dinput.c $(UUID_SOURCES)\
|
||||
dxguid.c res.rc test.c kernel32.c
|
||||
|
||||
DISTFILES = Makefile.in $(DEF_FILES) $(MRI_FILES) $(SOURCES)
|
||||
|
||||
.NOTPARALLEL:
|
||||
|
||||
# targets
|
||||
all: $(LIBS) $(EXTRA_OBJS) ddk
|
||||
|
||||
%-subdirs:
|
||||
for i in $(SUBDIRS); do \
|
||||
$(MAKE) $(FLAGS_TO_PASS) -C $$i $*; \
|
||||
done
|
||||
|
||||
ddk:
|
||||
$(MAKE) $(FLAGS_TO_PASS) -C $@
|
||||
|
||||
TEST_OPTIONS = $(ALL_CFLAGS) -DWINVER=0x0666 \
|
||||
-Wall -pedantic -Wsystem-headers -c $(srcdir)/test.c -o test.o
|
||||
.PHONY: test ddk
|
||||
test:
|
||||
@echo "Testing w32api..."
|
||||
@for lang in c c++ objective-c ; do \
|
||||
echo "$$lang..."; \
|
||||
$(CC) -x$$lang $(TEST_OPTIONS) ; \
|
||||
echo "$$lang UNICODE..."; \
|
||||
$(CC) -x$$lang -DUNICODE $(TEST_OPTIONS) ; \
|
||||
done
|
||||
@echo "windres..."
|
||||
@$(WINDRES) --include-dir $(INCDIR) -i $(srcdir)/res.rc -o test.o
|
||||
@echo "windres UNICODE..."
|
||||
@$(WINDRES) --define UNICODE --include-dir $(INCDIR) -i $(srcdir)/res.rc -o test.o
|
||||
@rm -f test.o
|
||||
|
||||
scrnsavw.o: scrnsave.c
|
||||
$(CC) -c $(ALL_CFLAGS) -DUNICODE -o $@ $<
|
||||
|
||||
# make rules
|
||||
|
||||
.SUFFIXES: .c .o .def .a
|
||||
|
||||
.c.o:
|
||||
$(CC) -c $(ALL_CFLAGS) -o $@ $<
|
||||
|
||||
libuuid.a : $(UUID_OBJS)
|
||||
$(AR) rc $@ $(UUID_OBJS)
|
||||
$(RANLIB) $@
|
||||
|
||||
# libvfw32.a contains import stubs for 3 dll's. Using an MRI script
|
||||
# seems to be the simplest way to combine them into one archive.
|
||||
# NB: With older dlltool, the object file members will not have unique
|
||||
# names.
|
||||
libvfw32.a : vfw32.mri libmsvfw32.a libavifil32.a libavicap32.a
|
||||
rm -f $@
|
||||
$(AR) -M < ${word 1,$^}
|
||||
$(RANLIB) $@
|
||||
|
||||
lib%.a : %.def %.o
|
||||
$(DLLTOOL) $(DLLTOOL_FLAGS) --output-lib $@ --def $(srcdir)/$*.def
|
||||
$(AR) r $@ $*.o
|
||||
$(RANLIB) $@
|
||||
|
||||
lib%.a: %.def
|
||||
$(DLLTOOL) $(DLLTOOL_FLAGS) --output-lib $@ --def $<
|
||||
|
||||
lib%.a: %.o
|
||||
$(AR) rc $@ $*.o
|
||||
$(RANLIB) $@
|
||||
|
||||
.PHONY: install install-libraries install-headers install-ddk
|
||||
# install headers and libraries in a target specified directory.
|
||||
install: install-libraries install-headers install-ddk
|
||||
|
||||
install-libraries: all
|
||||
$(mkinstalldirs) $(inst_libdir)
|
||||
for i in $(LIBS); do \
|
||||
$(INSTALL_DATA) $$i $(inst_libdir)/$$i ; \
|
||||
done
|
||||
|
||||
install-headers:
|
||||
$(mkinstalldirs) $(inst_includedir)
|
||||
for i in $(HEADERS); do \
|
||||
$(INSTALL_DATA) $(srcdir)/../include/$$i $(inst_includedir)/$$i ; \
|
||||
done
|
||||
$(mkinstalldirs) $(inst_includedir)/GL
|
||||
for i in $(GL_HEADERS); do \
|
||||
$(INSTALL_DATA) $(srcdir)/../include/GL/$$i $(inst_includedir)/GL/$$i ; \
|
||||
done
|
||||
|
||||
install-ddk: install-libraries install-headers
|
||||
cd ddk && $(MAKE) install $(FLAGS_TO_PASS)
|
||||
|
||||
# uninstall headers and libraries from a target specified directory
|
||||
uninstall: uninstall-ddk uninstall-libraries uninstall-headers
|
||||
|
||||
uninstall-libraries:
|
||||
@for i in $(LIBS); do \
|
||||
rm -f $(inst_libdir)/$$i ; \
|
||||
done
|
||||
rmdir $(inst_libdir)
|
||||
|
||||
uninstall-headers:
|
||||
@for i in $(HEADERS); do \
|
||||
rm -r $(inst_includedir)/$$i ; \
|
||||
done
|
||||
rmdir $(inst_includedir)
|
||||
|
||||
uninstall-ddk:
|
||||
cd ddk && $(MAKE) -C uninstall $(FLAGS_TO_PASS)
|
||||
|
||||
dist:
|
||||
mkdir $(distdir)/include
|
||||
chmod 755 $(distdir)/include
|
||||
@for i in $(HEADERS); do \
|
||||
cp -p $(srcdir)/../include/$$i $(distdir)/include/$$i ; \
|
||||
done
|
||||
mkdir $(distdir)/include/GL
|
||||
@for i in $(GL_HEADERS); do \
|
||||
cp -p $(srcdir)/../include/GL/$$i $(distdir)/include/GL/$$i ; \
|
||||
done
|
||||
mkdir $(distdir)/lib
|
||||
chmod 755 $(distdir)/lib
|
||||
@for i in $(DISTFILES); do \
|
||||
cp -p $(srcdir)/$$i $(distdir)/lib/$$i ; \
|
||||
done
|
||||
for i in $(SUBDIRS); do \
|
||||
(cd $$i; $(MAKE) distdir=../$(distdir) dist); \
|
||||
done
|
||||
|
||||
Makefile: Makefile.in ../config.status ../configure
|
||||
cd ..; $(SHELL) config.status
|
||||
|
||||
# clean
|
||||
|
||||
mostlyclean:
|
||||
rm -f *~ *.o *.s
|
||||
|
||||
clean:
|
||||
rm -f *.o *.a *.s *~
|
||||
|
||||
distclean: clean
|
||||
rm -f config.cache config.status config.log Makefile
|
||||
|
||||
maintainer-clean: distclean
|
||||
|
|
@ -1,533 +0,0 @@
|
|||
LIBRARY ADVAPI32.DLL
|
||||
EXPORTS
|
||||
AbortSystemShutdownA@4
|
||||
AbortSystemShutdownW@4
|
||||
AccessCheck@32
|
||||
AccessCheckAndAuditAlarmA@44
|
||||
AccessCheckAndAuditAlarmW@44
|
||||
AccessCheckByType@44
|
||||
AccessCheckByTypeAndAuditAlarmA@64
|
||||
AccessCheckByTypeAndAuditAlarmW@64
|
||||
AccessCheckByTypeResultList@44
|
||||
AccessCheckByTypeResultListAndAuditAlarmA@64
|
||||
AccessCheckByTypeResultListAndAuditAlarmByHandleA@68
|
||||
AccessCheckByTypeResultListAndAuditAlarmByHandleW@68
|
||||
AccessCheckByTypeResultListAndAuditAlarmW@64
|
||||
AddAccessAllowedAce@16
|
||||
AddAccessAllowedAceEx@20
|
||||
AddAccessAllowedObjectAce@28
|
||||
AddAccessDeniedAce@16
|
||||
AddAccessDeniedAceEx@20
|
||||
AddAccessDeniedObjectAce@28
|
||||
AddAce@20
|
||||
AddAuditAccessAce@24
|
||||
AddAuditAccessAceEx@28
|
||||
AddAuditAccessObjectAce@36
|
||||
AddUsersToEncryptedFile@8
|
||||
AdjustTokenGroups@24
|
||||
AdjustTokenPrivileges@24
|
||||
AllocateAndInitializeSid@44
|
||||
AllocateLocallyUniqueId@4
|
||||
AreAllAccessesGranted@8
|
||||
AreAnyAccessesGranted@8
|
||||
BackupEventLogA@8
|
||||
BackupEventLogW@8
|
||||
BuildExplicitAccessWithNameA@20
|
||||
BuildExplicitAccessWithNameW@20
|
||||
BuildImpersonateExplicitAccessWithNameA@24
|
||||
BuildImpersonateExplicitAccessWithNameW@24
|
||||
BuildImpersonateTrusteeA@8
|
||||
BuildImpersonateTrusteeW@8
|
||||
BuildSecurityDescriptorA@36
|
||||
BuildSecurityDescriptorW@36
|
||||
BuildTrusteeWithNameA@8
|
||||
BuildTrusteeWithNameW@8
|
||||
BuildTrusteeWithObjectsAndNameA@24
|
||||
BuildTrusteeWithObjectsAndNameW@24
|
||||
BuildTrusteeWithObjectsAndSidA@20
|
||||
BuildTrusteeWithObjectsAndSidW@20
|
||||
BuildTrusteeWithSidA@8
|
||||
BuildTrusteeWithSidW@8
|
||||
CancelOverlappedAccess@4
|
||||
ChangeServiceConfig2A@12
|
||||
ChangeServiceConfig2W@12
|
||||
ChangeServiceConfigA@44
|
||||
ChangeServiceConfigW@44
|
||||
CheckTokenMembership@12
|
||||
ClearEventLogA@8
|
||||
ClearEventLogW@8
|
||||
CloseEncryptedFileRaw@4
|
||||
CloseEventLog@4
|
||||
CloseServiceHandle@4
|
||||
CloseTrace@8
|
||||
CommandLineFromMsiDescriptor@12
|
||||
ControlService@12
|
||||
ControlTraceA@20
|
||||
ControlTraceW@20
|
||||
ConvertAccessToSecurityDescriptorA@20
|
||||
ConvertAccessToSecurityDescriptorW@20
|
||||
ConvertSDToStringSDRootDomainA@24
|
||||
ConvertSDToStringSDRootDomainW@24
|
||||
ConvertSecurityDescriptorToAccessA@28
|
||||
ConvertSecurityDescriptorToAccessNamedA@28
|
||||
ConvertSecurityDescriptorToAccessNamedW@28
|
||||
ConvertSecurityDescriptorToAccessW@28
|
||||
ConvertSecurityDescriptorToStringSecurityDescriptorA@20
|
||||
ConvertSecurityDescriptorToStringSecurityDescriptorW@20
|
||||
ConvertSidToStringSidA@8
|
||||
ConvertSidToStringSidW@8
|
||||
ConvertStringSDToSDRootDomainA@20
|
||||
ConvertStringSDToSDRootDomainW@20
|
||||
ConvertStringSecurityDescriptorToSecurityDescriptorA@16
|
||||
ConvertStringSecurityDescriptorToSecurityDescriptorW@16
|
||||
ConvertStringSidToSidA@8
|
||||
ConvertStringSidToSidW@8
|
||||
ConvertToAutoInheritPrivateObjectSecurity@24
|
||||
CopySid@12
|
||||
CreatePrivateObjectSecurity@24
|
||||
CreatePrivateObjectSecurityEx@32
|
||||
CreateProcessAsUserA@44
|
||||
CreateProcessAsUserW@44
|
||||
CreateProcessWithLogonW@44
|
||||
CreateRestrictedToken@36
|
||||
CreateServiceA@52
|
||||
CreateServiceW@52
|
||||
CreateTraceInstanceId@8
|
||||
CryptAcquireContextA@20
|
||||
CryptAcquireContextW@20
|
||||
CryptContextAddRef@12
|
||||
CryptCreateHash@20
|
||||
CryptDecrypt@24
|
||||
CryptDeriveKey@20
|
||||
CryptDestroyHash@4
|
||||
CryptDestroyKey@4
|
||||
CryptDuplicateHash@16
|
||||
CryptDuplicateKey@16
|
||||
CryptEncrypt@28
|
||||
CryptEnumProviderTypesA@24
|
||||
CryptEnumProviderTypesW@24
|
||||
CryptEnumProvidersA@24
|
||||
CryptEnumProvidersW@24
|
||||
CryptExportKey@24
|
||||
CryptGenKey@16
|
||||
CryptGenRandom@12
|
||||
CryptGetDefaultProviderA@20
|
||||
CryptGetDefaultProviderW@20
|
||||
CryptGetHashParam@20
|
||||
CryptGetKeyParam@20
|
||||
CryptGetProvParam@20
|
||||
CryptGetUserKey@12
|
||||
CryptHashData@16
|
||||
CryptHashSessionKey@12
|
||||
CryptImportKey@24
|
||||
CryptReleaseContext@8
|
||||
CryptSetHashParam@16
|
||||
CryptSetKeyParam@16
|
||||
CryptSetProvParam@16
|
||||
CryptSetProviderA@8
|
||||
CryptSetProviderExA@16
|
||||
CryptSetProviderExW@16
|
||||
CryptSetProviderW@8
|
||||
CryptSignHashA@24
|
||||
CryptSignHashW@24
|
||||
CryptVerifySignatureA@24
|
||||
CryptVerifySignatureW@24
|
||||
DecryptFileA@8
|
||||
DecryptFileW@8
|
||||
DeleteAce@8
|
||||
DeleteService@4
|
||||
DeregisterEventSource@4
|
||||
DestroyPrivateObjectSecurity@4
|
||||
DuplicateEncryptionInfoFile@8
|
||||
DuplicateToken@12
|
||||
DuplicateTokenEx@24
|
||||
ElfBackupEventLogFileA@8
|
||||
ElfBackupEventLogFileW@8
|
||||
ElfChangeNotify@8
|
||||
ElfClearEventLogFileA@8
|
||||
ElfClearEventLogFileW@8
|
||||
ElfCloseEventLog@4
|
||||
ElfDeregisterEventSource@4
|
||||
ElfNumberOfRecords@8
|
||||
ElfOldestRecord@8
|
||||
ElfOpenBackupEventLogA@12
|
||||
ElfOpenBackupEventLogW@12
|
||||
ElfOpenEventLogA@12
|
||||
ElfOpenEventLogW@12
|
||||
ElfReadEventLogA@28
|
||||
ElfReadEventLogW@28
|
||||
ElfRegisterEventSourceA@12
|
||||
ElfRegisterEventSourceW@12
|
||||
ElfReportEventA@48
|
||||
ElfReportEventW@48
|
||||
EnableTrace@24
|
||||
EncryptFileA@4
|
||||
EncryptFileW@4
|
||||
EncryptionDisable@8
|
||||
EnumDependentServicesA@24
|
||||
EnumDependentServicesW@24
|
||||
EnumServiceGroupW@36
|
||||
EnumServicesStatusA@32
|
||||
EnumServicesStatusExA@40
|
||||
EnumServicesStatusExW@40
|
||||
EnumServicesStatusW@32
|
||||
EqualPrefixSid@8
|
||||
EqualSid@8
|
||||
FileEncryptionStatusA@8
|
||||
FileEncryptionStatusW@8
|
||||
FindFirstFreeAce@8
|
||||
FreeEncryptionCertificateHashList@4
|
||||
FreeSid@4
|
||||
GetAccessPermissionsForObjectA@36
|
||||
GetAccessPermissionsForObjectW@36
|
||||
GetAce@12
|
||||
GetAclInformation@16
|
||||
GetAuditedPermissionsFromAclA@16
|
||||
GetAuditedPermissionsFromAclW@16
|
||||
GetCurrentHwProfileA@4
|
||||
GetCurrentHwProfileW@4
|
||||
GetEffectiveRightsFromAclA@12
|
||||
GetEffectiveRightsFromAclW@12
|
||||
GetEventLogInformation@20
|
||||
GetExplicitEntriesFromAclA@12
|
||||
GetExplicitEntriesFromAclW@12
|
||||
GetFileSecurityA@20
|
||||
GetFileSecurityW@20
|
||||
GetInheritanceSourceA@40
|
||||
GetInheritanceSourceW@40
|
||||
GetKernelObjectSecurity@20
|
||||
GetLengthSid@4
|
||||
GetLocalManagedApplications@12
|
||||
GetManagedApplications@20
|
||||
GetMangledSiteSid@12
|
||||
GetMultipleTrusteeA@4
|
||||
GetMultipleTrusteeOperationA@4
|
||||
GetMultipleTrusteeOperationW@4
|
||||
GetMultipleTrusteeW@4
|
||||
GetNamedSecurityInfoA@32
|
||||
GetNamedSecurityInfoExA@36
|
||||
GetNamedSecurityInfoExW@36
|
||||
GetNamedSecurityInfoW@32
|
||||
GetNumberOfEventLogRecords@8
|
||||
GetOldestEventLogRecord@8
|
||||
GetOverlappedAccessResults@16
|
||||
GetPrivateObjectSecurity@20
|
||||
GetSecurityDescriptorControl@12
|
||||
GetSecurityDescriptorDacl@16
|
||||
GetSecurityDescriptorGroup@12
|
||||
GetSecurityDescriptorLength@4
|
||||
GetSecurityDescriptorOwner@12
|
||||
GetSecurityDescriptorRMControl@8
|
||||
GetSecurityDescriptorSacl@16
|
||||
GetSecurityInfo@32
|
||||
GetSecurityInfoExA@36
|
||||
GetSecurityInfoExW@36
|
||||
GetServiceDisplayNameA@16
|
||||
GetServiceDisplayNameW@16
|
||||
GetServiceKeyNameA@16
|
||||
GetServiceKeyNameW@16
|
||||
GetSidIdentifierAuthority@4
|
||||
GetSidLengthRequired@4
|
||||
GetSidSubAuthority@8
|
||||
GetSidSubAuthorityCount@4
|
||||
GetSiteDirectoryA@12
|
||||
GetSiteDirectoryW@12
|
||||
GetSiteNameFromSid@8
|
||||
GetSiteSidFromToken@4
|
||||
GetSiteSidFromUrl@4
|
||||
GetTokenInformation@20
|
||||
GetTraceEnableFlags@8
|
||||
GetTraceEnableLevel@8
|
||||
GetTraceLoggerHandle@4
|
||||
GetTrusteeFormA@4
|
||||
GetTrusteeFormW@4
|
||||
GetTrusteeNameA@4
|
||||
GetTrusteeNameW@4
|
||||
GetTrusteeTypeA@4
|
||||
GetTrusteeTypeW@4
|
||||
GetUserNameA@8
|
||||
GetUserNameW@8
|
||||
I_ScSetServiceBitsA@20
|
||||
I_ScSetServiceBitsW@20
|
||||
ImpersonateAnonymousToken@4
|
||||
ImpersonateLoggedOnUser@4
|
||||
ImpersonateNamedPipeClient@4
|
||||
ImpersonateSelf@4
|
||||
InitializeAcl@12
|
||||
InitializeSecurityDescriptor@8
|
||||
InitializeSid@12
|
||||
InitiateSystemShutdownA@20
|
||||
InitiateSystemShutdownExA@24
|
||||
InitiateSystemShutdownExW@24
|
||||
InitiateSystemShutdownW@20
|
||||
InstallApplication@4
|
||||
IsProcessRestricted@0
|
||||
IsTextUnicode@12
|
||||
IsTokenRestricted@4
|
||||
IsValidAcl@4
|
||||
IsValidSecurityDescriptor@4
|
||||
IsValidSid@4
|
||||
LockServiceDatabase@4
|
||||
LogonUserA@24
|
||||
LogonUserW@24
|
||||
LookupAccountNameA@28
|
||||
LookupAccountNameW@28
|
||||
LookupAccountSidA@28
|
||||
LookupAccountSidW@28
|
||||
LookupPrivilegeDisplayNameA@20
|
||||
LookupPrivilegeDisplayNameW@20
|
||||
LookupPrivilegeNameA@16
|
||||
LookupPrivilegeNameW@16
|
||||
LookupPrivilegeValueA@12
|
||||
LookupPrivilegeValueW@12
|
||||
LookupSecurityDescriptorPartsA@28
|
||||
LookupSecurityDescriptorPartsW@28
|
||||
LsaAddAccountRights@16
|
||||
LsaAddPrivilegesToAccount@8
|
||||
LsaClearAuditLog@4
|
||||
LsaClose@4
|
||||
LsaCreateAccount@16
|
||||
LsaCreateSecret@16
|
||||
LsaCreateTrustedDomain@16
|
||||
LsaCreateTrustedDomainEx@20
|
||||
LsaDelete@4
|
||||
LsaDeleteTrustedDomain@8
|
||||
LsaEnumerateAccountRights@16
|
||||
LsaEnumerateAccounts@20
|
||||
LsaEnumerateAccountsWithUserRight@16
|
||||
LsaEnumeratePrivileges@20
|
||||
LsaEnumeratePrivilegesOfAccount@8
|
||||
LsaEnumerateTrustedDomains@20
|
||||
LsaEnumerateTrustedDomainsEx@20
|
||||
LsaFreeMemory@4
|
||||
LsaGetQuotasForAccount@8
|
||||
LsaGetRemoteUserName@12
|
||||
LsaGetSystemAccessAccount@8
|
||||
LsaGetUserName@8
|
||||
LsaICLookupNames@32
|
||||
LsaICLookupSids@32
|
||||
LsaLookupNames@20
|
||||
LsaLookupPrivilegeDisplayName@16
|
||||
LsaLookupPrivilegeName@12
|
||||
LsaLookupPrivilegeValue@12
|
||||
LsaLookupSids@20
|
||||
LsaNtStatusToWinError@4
|
||||
LsaOpenAccount@16
|
||||
LsaOpenPolicy@16
|
||||
LsaOpenSecret@16
|
||||
LsaOpenTrustedDomain@16
|
||||
LsaOpenTrustedDomainByName@16
|
||||
LsaQueryDomainInformationPolicy@12
|
||||
LsaQueryInfoTrustedDomain@12
|
||||
LsaQueryInformationPolicy@12
|
||||
LsaQuerySecret@20
|
||||
LsaQuerySecurityObject@12
|
||||
LsaQueryTrustedDomainInfo@16
|
||||
LsaQueryTrustedDomainInfoByName@16
|
||||
LsaRemoveAccountRights@20
|
||||
LsaRemovePrivilegesFromAccount@12
|
||||
LsaRetrievePrivateData@12
|
||||
LsaSetDomainInformationPolicy@12
|
||||
LsaSetInformationPolicy@12
|
||||
LsaSetInformationTrustedDomain@12
|
||||
LsaSetQuotasForAccount@8
|
||||
LsaSetSecret@12
|
||||
LsaSetSecurityObject@12
|
||||
LsaSetSystemAccessAccount@8
|
||||
LsaSetTrustedDomainInfoByName@16
|
||||
LsaSetTrustedDomainInformation@16
|
||||
LsaStorePrivateData@12
|
||||
MakeAbsoluteSD2@8
|
||||
MakeAbsoluteSD@44
|
||||
MakeSelfRelativeSD@12
|
||||
MapGenericMask@8
|
||||
NotifyBootConfigStatus@4
|
||||
NotifyChangeEventLog@8
|
||||
ObjectCloseAuditAlarmA@12
|
||||
ObjectCloseAuditAlarmW@12
|
||||
ObjectDeleteAuditAlarmA@12
|
||||
ObjectDeleteAuditAlarmW@12
|
||||
ObjectOpenAuditAlarmA@48
|
||||
ObjectOpenAuditAlarmW@48
|
||||
ObjectPrivilegeAuditAlarmA@24
|
||||
ObjectPrivilegeAuditAlarmW@24
|
||||
OpenBackupEventLogA@8
|
||||
OpenBackupEventLogW@8
|
||||
OpenEncryptedFileRawA@12
|
||||
OpenEncryptedFileRawW@12
|
||||
OpenEventLogA@8
|
||||
OpenEventLogW@8
|
||||
OpenProcessToken@12
|
||||
OpenSCManagerA@12
|
||||
OpenSCManagerW@12
|
||||
OpenServiceA@12
|
||||
OpenServiceW@12
|
||||
OpenThreadToken@16
|
||||
OpenTraceA@4
|
||||
OpenTraceW@4
|
||||
PrivilegeCheck@12
|
||||
PrivilegedServiceAuditAlarmA@20
|
||||
PrivilegedServiceAuditAlarmW@20
|
||||
ProcessTrace@16
|
||||
QueryAllTracesA@12
|
||||
QueryAllTracesW@12
|
||||
QueryRecoveryAgentsOnEncryptedFile@8
|
||||
QueryServiceConfig2A@20
|
||||
QueryServiceConfig2W@20
|
||||
QueryServiceConfigA@16
|
||||
QueryServiceConfigW@16
|
||||
QueryServiceLockStatusA@16
|
||||
QueryServiceLockStatusW@16
|
||||
QueryServiceObjectSecurity@20
|
||||
QueryServiceStatus@8
|
||||
QueryServiceStatusEx@20
|
||||
QueryUsersOnEncryptedFile@8
|
||||
QueryWindows31FilesMigration@4
|
||||
ReadEncryptedFileRaw@12
|
||||
ReadEventLogA@28
|
||||
ReadEventLogW@28
|
||||
RegCloseKey@4
|
||||
RegConnectRegistryA@12
|
||||
RegConnectRegistryW@12
|
||||
RegCreateKeyA@12
|
||||
RegCreateKeyExA@36
|
||||
RegCreateKeyExW@36
|
||||
RegCreateKeyW@12
|
||||
RegDeleteKeyA@8
|
||||
RegDeleteKeyW@8
|
||||
RegDeleteValueA@8
|
||||
RegDeleteValueW@8
|
||||
RegDisablePredefinedCache@0
|
||||
RegEnumKeyA@16
|
||||
RegEnumKeyExA@32
|
||||
RegEnumKeyExW@32
|
||||
RegEnumKeyW@16
|
||||
RegEnumValueA@32
|
||||
RegEnumValueW@32
|
||||
RegFlushKey@4
|
||||
RegGetKeySecurity@16
|
||||
RegLoadKeyA@12
|
||||
RegLoadKeyW@12
|
||||
RegNotifyChangeKeyValue@20
|
||||
RegOpenCurrentUser@8
|
||||
RegOpenKeyA@12
|
||||
RegOpenKeyExA@20
|
||||
RegOpenKeyExW@20
|
||||
RegOpenKeyW@12
|
||||
RegOpenUserClassesRoot@16
|
||||
RegOverridePredefKey@8
|
||||
RegQueryInfoKeyA@48
|
||||
RegQueryInfoKeyW@48
|
||||
RegQueryMultipleValuesA@20
|
||||
RegQueryMultipleValuesW@20
|
||||
RegQueryValueA@16
|
||||
RegQueryValueExA@24
|
||||
RegQueryValueExW@24
|
||||
RegQueryValueW@16
|
||||
RegReplaceKeyA@16
|
||||
RegReplaceKeyW@16
|
||||
RegRestoreKeyA@12
|
||||
RegRestoreKeyW@12
|
||||
RegSaveKeyA@12
|
||||
RegSaveKeyW@12
|
||||
RegSetKeySecurity@12
|
||||
RegSetValueA@20
|
||||
RegSetValueExA@24
|
||||
RegSetValueExW@24
|
||||
RegSetValueW@20
|
||||
RegUnLoadKeyA@8
|
||||
RegUnLoadKeyW@8
|
||||
RegisterEventSourceA@8
|
||||
RegisterEventSourceW@8
|
||||
RegisterServiceCtrlHandlerA@8
|
||||
RegisterServiceCtrlHandlerExA@12
|
||||
RegisterServiceCtrlHandlerExW@12
|
||||
RegisterServiceCtrlHandlerW@8
|
||||
RegisterTraceGuidsA@32
|
||||
RegisterTraceGuidsW@32
|
||||
RemoveTraceCallback@4
|
||||
RemoveUsersFromEncryptedFile@8
|
||||
ReportEventA@36
|
||||
ReportEventW@36
|
||||
RevertToSelf@0
|
||||
SetAclInformation@16
|
||||
SetEntriesInAccessListA@24
|
||||
SetEntriesInAccessListW@24
|
||||
SetEntriesInAclA@16
|
||||
SetEntriesInAclW@16
|
||||
SetEntriesInAuditListA@24
|
||||
SetEntriesInAuditListW@24
|
||||
SetFileSecurityA@12
|
||||
SetFileSecurityW@12
|
||||
SetKernelObjectSecurity@12
|
||||
SetNamedSecurityInfoA@28
|
||||
SetNamedSecurityInfoExA@36
|
||||
SetNamedSecurityInfoExW@36
|
||||
SetNamedSecurityInfoW@28
|
||||
SetPrivateObjectSecurity@20
|
||||
SetPrivateObjectSecurityEx@24
|
||||
SetSecurityDescriptorControl@12
|
||||
SetSecurityDescriptorDacl@16
|
||||
SetSecurityDescriptorGroup@12
|
||||
SetSecurityDescriptorOwner@12
|
||||
SetSecurityDescriptorRMControl@8
|
||||
SetSecurityDescriptorSacl@16
|
||||
SetSecurityInfo@28
|
||||
SetSecurityInfoExA@36
|
||||
SetSecurityInfoExW@36
|
||||
SetServiceBits@16
|
||||
SetServiceObjectSecurity@12
|
||||
SetServiceStatus@8
|
||||
SetThreadToken@8
|
||||
SetTokenInformation@16
|
||||
SetTraceCallback@8
|
||||
SetUserFileEncryptionKey@4
|
||||
StartServiceA@12
|
||||
StartServiceCtrlDispatcherA@4
|
||||
StartServiceCtrlDispatcherW@4
|
||||
StartServiceW@12
|
||||
StartTraceA@12
|
||||
StartTraceW@12
|
||||
SynchronizeWindows31FilesAndWindowsNTRegistry@16
|
||||
SystemFunction001@12
|
||||
SystemFunction002@12
|
||||
SystemFunction003@8
|
||||
SystemFunction004@12
|
||||
SystemFunction005@12
|
||||
SystemFunction006@8
|
||||
SystemFunction007@8
|
||||
SystemFunction008@12
|
||||
SystemFunction009@12
|
||||
SystemFunction010@12
|
||||
SystemFunction011@12
|
||||
SystemFunction012@12
|
||||
SystemFunction013@12
|
||||
SystemFunction014@12
|
||||
SystemFunction015@12
|
||||
SystemFunction016@12
|
||||
SystemFunction017@12
|
||||
SystemFunction018@12
|
||||
SystemFunction019@12
|
||||
SystemFunction020@12
|
||||
SystemFunction021@12
|
||||
SystemFunction022@12
|
||||
SystemFunction023@12
|
||||
SystemFunction024@12
|
||||
SystemFunction025@12
|
||||
SystemFunction026@12
|
||||
SystemFunction027@12
|
||||
SystemFunction028@8
|
||||
SystemFunction029@8
|
||||
SystemFunction030@8
|
||||
SystemFunction031@8
|
||||
SystemFunction032@8
|
||||
SystemFunction033@8
|
||||
SystemFunction034@12
|
||||
TraceEvent@12
|
||||
TraceEventInstance@20
|
||||
TrusteeAccessToObjectA@24
|
||||
TrusteeAccessToObjectW@24
|
||||
UninstallApplication@4
|
||||
UnlockServiceDatabase@4
|
||||
UnregisterTraceGuids@8
|
||||
WriteEncryptedFileRaw@12
|
|
@ -1,8 +0,0 @@
|
|||
LIBRARY AVICAP32.DLL
|
||||
EXPORTS
|
||||
videoThunk32@20
|
||||
capGetDriverDescriptionW@20
|
||||
capGetDriverDescriptionA@20
|
||||
capCreateCaptureWindowW@32
|
||||
capCreateCaptureWindowA@32
|
||||
AppCleanup@4
|
|
@ -1,77 +0,0 @@
|
|||
LIBRARY AVIFIL32.DLL
|
||||
EXPORTS
|
||||
IID_IGetFrame
|
||||
IID_IAVIStream
|
||||
IID_IAVIFile
|
||||
IID_IAVIEditStream
|
||||
EditStreamSetNameW@8
|
||||
EditStreamSetNameA@8
|
||||
EditStreamSetName@8
|
||||
EditStreamSetInfoW@12
|
||||
EditStreamSetInfoA@12
|
||||
EditStreamSetInfo@12
|
||||
EditStreamPaste@24
|
||||
EditStreamCut@16
|
||||
EditStreamCopy@16
|
||||
EditStreamClone@8
|
||||
CreateEditableStream@8
|
||||
AVIStreamWriteData@16
|
||||
AVIStreamWrite@32
|
||||
AVIStreamTimeToSample@8
|
||||
AVIStreamStart@4
|
||||
AVIStreamSetFormat@16
|
||||
AVIStreamSampleToTime@8
|
||||
AVIStreamRelease@4
|
||||
AVIStreamReadFormat@16
|
||||
AVIStreamReadData@16
|
||||
AVIStreamRead@28
|
||||
AVIStreamOpenFromFileW@24
|
||||
AVIStreamOpenFromFileA@24
|
||||
AVIStreamOpenFromFile@24
|
||||
AVIStreamLength@4
|
||||
AVIStreamInfoW@12
|
||||
AVIStreamInfoA@12
|
||||
AVIStreamInfo@12
|
||||
AVIStreamGetFrameOpen@8
|
||||
AVIStreamGetFrameClose@4
|
||||
AVIStreamGetFrame@8
|
||||
AVIStreamFindSample@12
|
||||
AVIStreamEndStreaming@4
|
||||
AVIStreamCreate@16
|
||||
AVIStreamBeginStreaming@16
|
||||
AVIStreamAddRef@4
|
||||
AVISaveW
|
||||
AVISaveVW@24
|
||||
AVISaveVA@24
|
||||
AVISaveV@24
|
||||
AVISaveOptionsFree@8
|
||||
AVISaveOptions@20
|
||||
AVISaveA
|
||||
AVISave
|
||||
AVIPutFileOnClipboard@4
|
||||
AVIMakeStreamFromClipboard@12
|
||||
AVIMakeFileFromStreams@12
|
||||
AVIMakeCompressedStream@16
|
||||
AVIGetFromClipboard@4
|
||||
AVIFileWriteData@16
|
||||
AVIFileRelease@4
|
||||
AVIFileReadData@16
|
||||
AVIFileOpenW@16
|
||||
AVIFileOpenA@16
|
||||
AVIFileOpen@16
|
||||
AVIFileInit@0
|
||||
AVIFileInfoW@12
|
||||
AVIFileInfoA@12
|
||||
AVIFileInfo@12
|
||||
AVIFileGetStream@16
|
||||
AVIFileExit@0
|
||||
AVIFileEndRecord@4
|
||||
AVIFileCreateStreamW@12
|
||||
AVIFileCreateStreamA@12
|
||||
AVIFileCreateStream@12
|
||||
AVIFileAddRef@4
|
||||
AVIClearClipboard@0
|
||||
AVIBuildFilterW@12
|
||||
AVIBuildFilterA@12
|
||||
AVIBuildFilter@12
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
LIBRARY CAP.DLL
|
||||
EXPORTS
|
||||
DumpCAP@0
|
||||
StartCAP@0
|
||||
StopCAP@0
|
||||
_penter
|
|
@ -1,129 +0,0 @@
|
|||
LIBRARY COMCTL32.DLL
|
||||
EXPORTS
|
||||
_TrackMouseEvent@4
|
||||
AddMRUData@12
|
||||
AddMRUStringA@8
|
||||
AddMRUStringW@8
|
||||
Alloc@4
|
||||
CreateMRUListA@4
|
||||
CreateMRUListW@4
|
||||
CreateMappedBitmap@20
|
||||
CreatePage@8
|
||||
CreatePropertySheetPage@4
|
||||
CreatePropertySheetPageA@4
|
||||
CreatePropertySheetPageW@4
|
||||
CreateProxyPage@8
|
||||
CreateStatusWindow@16
|
||||
CreateStatusWindowA@16
|
||||
CreateStatusWindowW@16
|
||||
CreateToolbar@32
|
||||
CreateToolbarEx@52
|
||||
CreateUpDownControl@48
|
||||
DPA_Clone@8
|
||||
DPA_Create@4
|
||||
DPA_CreateEx@8
|
||||
DPA_DeleteAllPtrs@4
|
||||
DPA_DeletePtr@8
|
||||
DPA_Destroy@4
|
||||
DPA_GetPtr@8
|
||||
DPA_GetPtrIndex@8
|
||||
DPA_Grow@8
|
||||
DPA_InsertPtr@12
|
||||
DPA_Search@24
|
||||
DPA_SetPtr@12
|
||||
DPA_Sort@12
|
||||
DSA_Create@8
|
||||
DSA_DeleteAllItems@4
|
||||
DSA_DeleteItem@8
|
||||
DSA_Destroy@4
|
||||
DSA_GetItem@12
|
||||
DSA_GetItemPtr@8
|
||||
DSA_InsertItem@12
|
||||
DSA_SetItem@12
|
||||
DelMRUString@8
|
||||
DestroyPropertySheetPage@4
|
||||
DrawInsert@12
|
||||
DrawStatusText@16
|
||||
DrawStatusTextA@16
|
||||
DrawStatusTextW@16
|
||||
EnumMRUListA@16
|
||||
EnumMRUListW@16
|
||||
FindMRUData@16
|
||||
FindMRUStringA@12
|
||||
FindMRUStringW@12
|
||||
Free@4
|
||||
FreeMRUList@4
|
||||
GetEffectiveClientRect@12
|
||||
GetSize@4
|
||||
ImageList_Add@12
|
||||
ImageList_AddIcon@8
|
||||
ImageList_AddMasked@12
|
||||
ImageList_BeginDrag@16
|
||||
ImageList_Create@20
|
||||
ImageList_Destroy@4
|
||||
ImageList_DragEnter@12
|
||||
ImageList_DragLeave@4
|
||||
ImageList_DragMove@8
|
||||
ImageList_DragShowNolock@4
|
||||
ImageList_Draw@24
|
||||
ImageList_DrawEx@40
|
||||
ImageList_EndDrag@0
|
||||
ImageList_GetBkColor@4
|
||||
ImageList_GetDragImage@8
|
||||
ImageList_GetIcon@12
|
||||
ImageList_GetIconSize@12
|
||||
ImageList_GetImageCount@4
|
||||
ImageList_GetImageInfo@12
|
||||
ImageList_GetImageRect@12
|
||||
ImageList_LoadImage@28
|
||||
ImageList_LoadImageA@28
|
||||
ImageList_LoadImageW@28
|
||||
ImageList_Merge@24
|
||||
ImageList_Read@4
|
||||
ImageList_Remove@8
|
||||
ImageList_Replace@16
|
||||
ImageList_ReplaceIcon@12
|
||||
ImageList_SetBkColor@8
|
||||
ImageList_SetDragCursorImage@16
|
||||
ImageList_SetIconSize@12
|
||||
ImageList_SetImageCount@8
|
||||
ImageList_SetOverlayImage@12
|
||||
ImageList_Write@8
|
||||
InitCommonControls@0
|
||||
InitCommonControlsEx@4
|
||||
LBItemFromPt@16
|
||||
MakeDragList@4
|
||||
MenuHelp@28
|
||||
PropertySheet@4
|
||||
PropertySheetA@4
|
||||
PropertySheetW@4
|
||||
ReAlloc@8
|
||||
SendNotify@16
|
||||
SendNotifyEx@20
|
||||
ShowHideMenuCtl@12
|
||||
StrCSpnA@8
|
||||
StrCSpnIA@8
|
||||
StrCSpnW@8
|
||||
StrChrA@8
|
||||
StrChrIA@8
|
||||
StrChrIW@8
|
||||
StrChrW@8
|
||||
StrCmpNA@12
|
||||
StrCmpNIA@12
|
||||
StrCmpNIW@12
|
||||
StrCmpNW@12
|
||||
StrRChrA@12
|
||||
StrRChrIA@12
|
||||
StrRChrW@12
|
||||
StrRStrIA@12
|
||||
StrRStrIW@12
|
||||
StrStrA@8
|
||||
StrStrIA@8
|
||||
StrStrIW@8
|
||||
StrStrW@8
|
||||
StrToIntA@4
|
||||
StrToIntW@4
|
||||
Str_GetPtrA@12
|
||||
Str_GetPtrW@12
|
||||
Str_SetPtrA@8
|
||||
Str_SetPtrW@8
|
|
@ -1,27 +0,0 @@
|
|||
LIBRARY COMDLG32.DLL
|
||||
EXPORTS
|
||||
ChooseColorA@4
|
||||
ChooseColorW@4
|
||||
ChooseFontA@4
|
||||
ChooseFontW@4
|
||||
CommDlgExtendedError@0
|
||||
FindTextA@4
|
||||
FindTextW@4
|
||||
GetFileTitleA@12
|
||||
GetFileTitleW@12
|
||||
GetOpenFileNameA@4
|
||||
GetOpenFileNameW@4
|
||||
GetSaveFileNameA@4
|
||||
GetSaveFileNameW@4
|
||||
LoadAlterBitmap@12
|
||||
PageSetupDlgA@4
|
||||
PageSetupDlgW@4
|
||||
PrintDlgA@4
|
||||
PrintDlgExA@4
|
||||
PrintDlgExW@4
|
||||
PrintDlgW@4
|
||||
ReplaceTextA@4
|
||||
ReplaceTextW@4
|
||||
WantArrows@16
|
||||
dwLBSubclass@16
|
||||
dwOKSubclass@16
|
|
@ -1,15 +0,0 @@
|
|||
LIBRARY CRYPT32.DLL
|
||||
EXPORTS
|
||||
CertFreeCertificateChain@4
|
||||
CertGetCertificateChain@32
|
||||
CertNameToStrA@20
|
||||
CertNameToStrW@20
|
||||
CertVerifyCertificateChainPolicy@16
|
||||
CertCloseStore@8
|
||||
CertOpenSystemStoreA@8
|
||||
CertOpenSystemStoreW@8
|
||||
CertFindCertificateInStore@24
|
||||
CertFreeCertificateContext@4
|
||||
CertGetIssuerCertificateFromStore@16
|
||||
CertFindChainInStore@24
|
||||
CertOpenStore@20
|
|
@ -1,27 +0,0 @@
|
|||
LIBRARY CTL3D32.DLL
|
||||
EXPORTS
|
||||
BtnWndProc3d@16
|
||||
ComboWndProc3d@16
|
||||
Ctl3dAutoSubclass@4
|
||||
Ctl3dAutoSubclassEx@8
|
||||
Ctl3dColorChange@0
|
||||
Ctl3dCtlColor@8
|
||||
Ctl3dCtlColorEx@12
|
||||
Ctl3dDlgFramePaint@16
|
||||
Ctl3dDlgProc@16
|
||||
Ctl3dEnabled@0
|
||||
Ctl3dGetVer@0
|
||||
Ctl3dIsAutoSubclass@0
|
||||
Ctl3dRegister@4
|
||||
Ctl3dSetStyle@12
|
||||
Ctl3dSubclassCtl@4
|
||||
Ctl3dSubclassCtlEx@8
|
||||
Ctl3dSubclassDlg@8
|
||||
Ctl3dSubclassDlgEx@8
|
||||
Ctl3dUnAutoSubclass@0
|
||||
Ctl3dUnregister@4
|
||||
Ctl3dUnsubclassCtl@4
|
||||
Ctl3dWinIniChange@0
|
||||
EditWndProc3d@16
|
||||
ListWndProc3d@16
|
||||
StaticWndProc3d@16
|
|
@ -1,8 +0,0 @@
|
|||
; from DirectX 6.1
|
||||
LIBRARY d3dim.dll
|
||||
EXPORTS
|
||||
Direct3DCreate@12
|
||||
Direct3D_HALCleanUp@8
|
||||
SpanInit
|
||||
g_fOneMinusEps
|
||||
g_fTwoPow31
|
|
@ -1,24 +0,0 @@
|
|||
; from DirectX 6.1
|
||||
LIBRARY d3drm.dll
|
||||
EXPORTS
|
||||
D3DRMColorGetAlpha@4
|
||||
D3DRMColorGetBlue@4
|
||||
D3DRMColorGetGreen@4
|
||||
D3DRMColorGetRed@4
|
||||
D3DRMCreateColorRGB@12
|
||||
D3DRMCreateColorRGBA@16
|
||||
D3DRMMatrixFromQuaternion@8
|
||||
D3DRMQuaternionFromRotation@12
|
||||
D3DRMQuaternionMultiply@12
|
||||
D3DRMQuaternionSlerp@16
|
||||
D3DRMVectorAdd@12
|
||||
D3DRMVectorCrossProduct@12
|
||||
D3DRMVectorDotProduct@8
|
||||
D3DRMVectorModulus@4
|
||||
D3DRMVectorNormalize@4
|
||||
D3DRMVectorRandom@4
|
||||
D3DRMVectorReflect@12
|
||||
D3DRMVectorRotate@16
|
||||
D3DRMVectorScale@12
|
||||
D3DRMVectorSubtract@12
|
||||
Direct3DRMCreate@4
|
|
@ -1,4 +0,0 @@
|
|||
; from DirectX 6.1
|
||||
LIBRARY d3dxof.dll
|
||||
EXPORTS
|
||||
DirectXFileCreate@4
|
|
@ -1,195 +0,0 @@
|
|||
# Makefile.in
|
||||
#
|
||||
# This file is part of a free library building Windows NT drivers.
|
||||
#
|
||||
# This library is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
|
||||
|
||||
# start config section
|
||||
|
||||
SHELL = @SHELL@
|
||||
|
||||
srcdir = @srcdir@
|
||||
VPATH = @srcdir@
|
||||
|
||||
host_alias = @host@
|
||||
build_alias = @build@
|
||||
target_alias = @target@
|
||||
prefix = @prefix@
|
||||
includedir:=@includedir@
|
||||
|
||||
program_transform_name = @program_transform_name@
|
||||
exec_prefix = @exec_prefix@
|
||||
libdir:=@libdir@
|
||||
bindir = @bindir@
|
||||
ifeq ($(target_alias),$(host_alias))
|
||||
ifeq ($(build_alias),$(host_alias))
|
||||
tooldir:=$(exec_prefix)
|
||||
else
|
||||
tooldir:=$(exec_prefix)/$(target_alias)
|
||||
endif
|
||||
else
|
||||
tooldir:=$(exec_prefix)/$(target_alias)
|
||||
endif
|
||||
datadir = @datadir@
|
||||
infodir = @infodir@
|
||||
ifneq (,$(findstring cygwin,$(target_alias)))
|
||||
inst_includedir:=$(tooldir)/include/w32api/ddk
|
||||
inst_libdir:=$(tooldir)/lib/w32api
|
||||
else
|
||||
inst_includedir:=$(includedir)/ddk
|
||||
inst_libdir:=$(libdir)
|
||||
endif
|
||||
|
||||
INSTALL = @INSTALL@
|
||||
INSTALL_DATA = @INSTALL_DATA@
|
||||
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||
mkinstalldirs = mkdir -p
|
||||
|
||||
CC = @CC@
|
||||
CC_FOR_TARGET = $(CC)
|
||||
|
||||
DLLTOOL = @DLLTOOL@
|
||||
DLLTOOL_FLAGS = --as=$(AS) -k
|
||||
AS = @AS@
|
||||
AS_FOR_TARGET = $(AS_FOR_TARGET)
|
||||
WINDRES = @WINDRES@
|
||||
|
||||
# Depending on if we build as part of winsup or mingw we need to
|
||||
# add additional include paths in order to get the correct headers
|
||||
# from the C library.
|
||||
BUILDENV = @BUILDENV@
|
||||
|
||||
ifeq ($(BUILDENV), cygwin)
|
||||
# winsup/include
|
||||
# winsup/../newlib/libc/include
|
||||
# winsup/../newlib/libc/sys/cygwin
|
||||
EXTRA_INCLUDES = -I$(srcdir)/../../include -I$(srcdir)/../../../newlib/libc/include -I$(srcdir)/../../../newlib/libc/sys/cygwin
|
||||
endif
|
||||
ifeq ($(BUILDENV), mingw)
|
||||
EXTRA_INCLUDES = -I$(srcdir)/../../mingw/include
|
||||
endif
|
||||
|
||||
INCLUDES = -I$(srcdir)/../include $(EXTRA_INCLUDES)
|
||||
|
||||
CFLAGS = @CFLAGS@
|
||||
ALL_CFLAGS = $(CFLAGS) $(INCLUDES)
|
||||
|
||||
RANLIB = @RANLIB@
|
||||
AR = @AR@
|
||||
LD = @LD@
|
||||
|
||||
# end config section
|
||||
|
||||
# headers
|
||||
|
||||
HEADERS = $(notdir $(wildcard $(srcdir)/../../include/ddk/*.h))
|
||||
|
||||
# libraries
|
||||
|
||||
DEF_FILES = $(notdir $(wildcard $(srcdir)/*.def))
|
||||
IMPLIBS = $(addprefix lib,$(subst .def,.a,$(DEF_FILES)))
|
||||
LIBS = $(IMPLIBS)
|
||||
|
||||
DISTFILES = Makefile.in $(DEF_FILES)
|
||||
|
||||
.NOTPARALLEL:
|
||||
|
||||
# targets
|
||||
all: $(LIBS)
|
||||
|
||||
TEST_OPTIONS = $(ALL_CFLAGS) -Wall -pedantic -Wsystem-headers -c $(srcdir)/test.c -o test.o
|
||||
.PHONY: test
|
||||
test:
|
||||
@echo "Testing ddk..."
|
||||
@for lang in c c++ objective-c ; do \
|
||||
echo "$$lang..."; \
|
||||
$(CC) -x$$lang $(TEST_OPTIONS) ; \
|
||||
echo "$$lang UNICODE..."; \
|
||||
$(CC) -x$$lang -DUNICODE $(TEST_OPTIONS) ; \
|
||||
done
|
||||
@echo "windres..."
|
||||
@$(WINDRES) --include-dir $(INCDIR) -i $(srcdir)/res.rc -o test.o
|
||||
@echo "windres UNICODE..."
|
||||
@$(WINDRES) --define UNICODE --include-dir $(INCDIR) -i $(srcdir)/res.rc -o test.o
|
||||
@rm -f test.o
|
||||
|
||||
# make rules
|
||||
|
||||
.SUFFIXES: .c .o .def .a
|
||||
|
||||
.c.o:
|
||||
$(CC) -c $(ALL_CFLAGS) -o $@ $<
|
||||
|
||||
lib%.a : %.def %.o
|
||||
$(DLLTOOL) $(DLLTOOL_FLAGS) --output-lib $@ --def $(srcdir)/$*.def
|
||||
$(AR) r $@ $*.o
|
||||
$(RANLIB) $@
|
||||
|
||||
lib%.a: %.def
|
||||
$(DLLTOOL) $(DLLTOOL_FLAGS) --output-lib $@ --def $<
|
||||
|
||||
lib%.a: %.o
|
||||
$(AR) rc $@ $*.o
|
||||
$(RANLIB) $@
|
||||
|
||||
# install headers and libraries in a target specified directory.
|
||||
install: install-libraries install-headers
|
||||
|
||||
install-libraries: all
|
||||
$(mkinstalldirs) $(inst_libdir)
|
||||
for i in $(LIBS); do \
|
||||
$(INSTALL_DATA) $$i $(inst_libdir)/$$i ; \
|
||||
done
|
||||
|
||||
install-headers:
|
||||
$(mkinstalldirs) $(inst_includedir)
|
||||
for i in $(HEADERS); do \
|
||||
$(INSTALL_DATA) $(srcdir)/../../include/ddk/$$i $(inst_includedir)/$$i ; \
|
||||
done
|
||||
|
||||
# uninstall headers and libraries from a target specified directory
|
||||
uninstall: uninstall-libraries uninstall-headers
|
||||
|
||||
uninstall-libraries:
|
||||
@for i in $(LIBS); do \
|
||||
rm -f $(inst_libdir)/$$i ; \
|
||||
done
|
||||
rmdir $(inst_libdir)
|
||||
|
||||
uninstall-headers:
|
||||
@for i in $(HEADERS); do \
|
||||
rm -r $(inst_includedir)/$$i ; \
|
||||
done
|
||||
rmdir $(inst_includedir)
|
||||
|
||||
|
||||
dist:
|
||||
mkdir $(distdir)/include/ddk
|
||||
chmod 755 $(distdir)/include/ddk
|
||||
@for i in $(HEADERS); do \
|
||||
cp -p $(srcdir)/../../include/ddk/$$i $(distdir)/include/ddk/$$i ; \
|
||||
done
|
||||
mkdir $(distdir)/lib/ddk
|
||||
chmod 755 $(distdir)/lib/ddk
|
||||
@for i in $(DISTFILES); do \
|
||||
cp -p $(srcdir)/$$i $(distdir)/lib/ddk/$$i ; \
|
||||
done
|
||||
|
||||
Makefile: Makefile.in ../../config.status ../../configure
|
||||
cd ../..; $(SHELL) config.status
|
||||
|
||||
# clean
|
||||
|
||||
mostlyclean:
|
||||
rm -f *~ *.o *.s
|
||||
|
||||
clean:
|
||||
rm -f *.o *.a *.s *~
|
||||
|
||||
distclean: clean
|
||||
rm -f config.cache config.status config.log Makefile
|
||||
|
||||
maintainer-clean: distclean
|
|
@ -1,8 +0,0 @@
|
|||
LIBRARY apcups.dll
|
||||
EXPORTS
|
||||
UPSCancelWait@0
|
||||
UPSGetState@0
|
||||
UPSInit@0
|
||||
UPSStop@0
|
||||
UPSTurnOff@4
|
||||
UPSWaitForStateChange@8
|
|
@ -1,198 +0,0 @@
|
|||
LIBRARY cfgmgr32.dll
|
||||
EXPORTS
|
||||
;CMP_Init_Detection
|
||||
;CMP_RegisterNotification
|
||||
;CMP_Report_LogOn
|
||||
;CMP_UnregisterNotification
|
||||
CMP_WaitNoPendingInstallEvents@4
|
||||
;CMP_WaitServicesAvailable
|
||||
CM_Add_Empty_Log_Conf@16
|
||||
CM_Add_Empty_Log_Conf_Ex@20
|
||||
CM_Add_IDA@16
|
||||
CM_Add_IDW@16
|
||||
CM_Add_ID_ExA@16
|
||||
CM_Add_ID_ExW@16
|
||||
;CM_Add_Range
|
||||
CM_Add_Res_Des@24
|
||||
CM_Add_Res_Des_Ex@28
|
||||
CM_Connect_MachineA@8
|
||||
CM_Connect_MachineW@8
|
||||
;CM_Create_DevNodeA
|
||||
;CM_Create_DevNodeW
|
||||
;CM_Create_DevNode_ExA
|
||||
;CM_Create_DevNode_ExW
|
||||
;CM_Create_Range_List
|
||||
;CM_Delete_Class_Key
|
||||
;CM_Delete_Class_Key_Ex
|
||||
;CM_Delete_DevNode_Key
|
||||
;CM_Delete_DevNode_Key_Ex
|
||||
;CM_Delete_Range
|
||||
;CM_Detect_Resource_Conflict
|
||||
;CM_Detect_Resource_Conflict_Ex
|
||||
;CM_Disable_DevNode
|
||||
;CM_Disable_DevNode_Ex
|
||||
CM_Disconnect_Machine@4
|
||||
;CM_Dup_Range_List
|
||||
;CM_Enable_DevNode
|
||||
;CM_Enable_DevNode_Ex
|
||||
CM_Enumerate_Classes@12
|
||||
CM_Enumerate_Classes_Ex@16
|
||||
CM_Enumerate_EnumeratorsA@16
|
||||
CM_Enumerate_EnumeratorsW@16
|
||||
CM_Enumerate_Enumerators_ExA@20
|
||||
CM_Enumerate_Enumerators_ExW@20
|
||||
;CM_Find_Range
|
||||
;CM_First_Range
|
||||
CM_Free_Log_Conf@8
|
||||
CM_Free_Log_Conf_Ex@12
|
||||
CM_Free_Log_Conf_Handle@4
|
||||
;CM_Free_Range_List
|
||||
CM_Free_Res_Des@12
|
||||
CM_Free_Res_Des_Ex@16
|
||||
CM_Free_Res_Des_Handle@4
|
||||
CM_Free_Resource_Conflict_Handle@4
|
||||
CM_Get_Child@12
|
||||
CM_Get_Child_Ex@16
|
||||
;CM_Get_Class_Key_NameA
|
||||
;CM_Get_Class_Key_NameW
|
||||
;CM_Get_Class_Key_Name_ExA
|
||||
;CM_Get_Class_Key_Name_ExW
|
||||
;CM_Get_Class_NameA
|
||||
;CM_Get_Class_NameW
|
||||
;CM_Get_Class_Name_ExA
|
||||
;CM_Get_Class_Name_ExW
|
||||
;CM_Get_Class_Registry_PropertyA
|
||||
;CM_Get_Class_Registry_PropertyW
|
||||
CM_Get_Depth@12
|
||||
CM_Get_Depth_Ex@16
|
||||
;CM_Get_DevNode_Registry_PropertyA
|
||||
;CM_Get_DevNode_Registry_PropertyW
|
||||
;CM_Get_DevNode_Registry_Property_ExA
|
||||
;CM_Get_DevNode_Registry_Property_ExW
|
||||
CM_Get_DevNode_Status@16
|
||||
CM_Get_DevNode_Status_Ex@20
|
||||
CM_Get_Device_IDA@16
|
||||
CM_Get_Device_IDW@16
|
||||
CM_Get_Device_ID_ExA@20
|
||||
CM_Get_Device_ID_ExW@20
|
||||
CM_Get_Device_ID_ListA@16
|
||||
CM_Get_Device_ID_ListW@16
|
||||
CM_Get_Device_ID_List_ExA@20
|
||||
CM_Get_Device_ID_List_ExW@20
|
||||
CM_Get_Device_ID_List_SizeA@12
|
||||
CM_Get_Device_ID_List_SizeW@12
|
||||
CM_Get_Device_ID_List_Size_ExA@16
|
||||
CM_Get_Device_ID_List_Size_ExW@16
|
||||
CM_Get_Device_ID_Size@12
|
||||
CM_Get_Device_ID_Size_Ex@16
|
||||
;CM_Get_Device_Interface_AliasA
|
||||
;CM_Get_Device_Interface_AliasW
|
||||
;CM_Get_Device_Interface_Alias_ExA
|
||||
;CM_Get_Device_Interface_Alias_ExW
|
||||
;CM_Get_Device_Interface_ListA
|
||||
;CM_Get_Device_Interface_ListW
|
||||
;CM_Get_Device_Interface_List_ExA
|
||||
;CM_Get_Device_Interface_List_ExW
|
||||
;CM_Get_Device_Interface_List_SizeA
|
||||
;CM_Get_Device_Interface_List_SizeW
|
||||
;CM_Get_Device_Interface_List_Size_ExA
|
||||
;CM_Get_Device_Interface_List_Size_ExW
|
||||
CM_Get_First_Log_Conf@12
|
||||
CM_Get_First_Log_Conf_Ex@16
|
||||
;CM_Get_Global_State
|
||||
;CM_Get_Global_State_Ex
|
||||
;CM_Get_HW_Prof_FlagsA
|
||||
;CM_Get_HW_Prof_FlagsW
|
||||
;CM_Get_HW_Prof_Flags_ExA
|
||||
;CM_Get_HW_Prof_Flags_ExW
|
||||
;CM_Get_Hardware_Profile_InfoA
|
||||
;CM_Get_Hardware_Profile_InfoW
|
||||
;CM_Get_Hardware_Profile_Info_ExA
|
||||
;CM_Get_Hardware_Profile_Info_ExW
|
||||
CM_Get_Log_Conf_Priority@12
|
||||
CM_Get_Log_Conf_Priority_Ex@16
|
||||
CM_Get_Next_Log_Conf@12
|
||||
CM_Get_Next_Log_Conf_Ex@16
|
||||
CM_Get_Next_Res_Des@20
|
||||
CM_Get_Next_Res_Des_Ex@24
|
||||
CM_Get_Parent@12
|
||||
CM_Get_Parent_Ex@16
|
||||
CM_Get_Res_Des_Data@16
|
||||
CM_Get_Res_Des_Data_Ex@20
|
||||
CM_Get_Res_Des_Data_Size@12
|
||||
CM_Get_Res_Des_Data_Size_Ex@16
|
||||
CM_Get_Resource_Conflict_Count@8
|
||||
CM_Get_Resource_Conflict_DetailsA@12
|
||||
CM_Get_Resource_Conflict_DetailsW@12
|
||||
CM_Get_Sibling@12
|
||||
CM_Get_Sibling_Ex@16
|
||||
CM_Get_Version@0
|
||||
CM_Get_Version_Ex@4
|
||||
;CM_Intersect_Range_List
|
||||
;CM_Invert_Range_List
|
||||
;CM_Is_Dock_Station_Present
|
||||
;CM_Is_Dock_Station_Present_Ex
|
||||
CM_Locate_DevNodeA@12
|
||||
CM_Locate_DevNodeW@12
|
||||
CM_Locate_DevNode_ExA@16
|
||||
CM_Locate_DevNode_ExW@16
|
||||
;CM_Merge_Range_List
|
||||
CM_Modify_Res_Des@24
|
||||
CM_Modify_Res_Des_Ex@28
|
||||
;CM_Move_DevNode
|
||||
;CM_Move_DevNode_Ex
|
||||
;CM_Next_Range
|
||||
;CM_Open_Class_KeyA
|
||||
;CM_Open_Class_KeyW
|
||||
;CM_Open_Class_Key_ExA
|
||||
;CM_Open_Class_Key_ExW
|
||||
;CM_Open_DevNode_Key
|
||||
;CM_Open_DevNode_Key_Ex
|
||||
CM_Query_And_Remove_SubTreeA@20
|
||||
CM_Query_And_Remove_SubTreeW@20
|
||||
CM_Query_And_Remove_SubTree_ExA@0
|
||||
CM_Query_And_Remove_SubTree_ExW@0
|
||||
;CM_Query_Arbitrator_Free_Data
|
||||
;CM_Query_Arbitrator_Free_Data_Ex
|
||||
;CM_Query_Arbitrator_Free_Size
|
||||
;CM_Query_Arbitrator_Free_Size_Ex
|
||||
;CM_Query_Remove_SubTree
|
||||
;CM_Query_Remove_SubTree_Ex
|
||||
CM_Query_Resource_Conflict_List@28
|
||||
CM_Reenumerate_DevNode@8
|
||||
CM_Reenumerate_DevNode_Ex@12
|
||||
;CM_Register_Device_Driver
|
||||
;CM_Register_Device_Driver_Ex
|
||||
;CM_Register_Device_InterfaceA
|
||||
;CM_Register_Device_InterfaceW
|
||||
;CM_Register_Device_Interface_ExA
|
||||
;CM_Register_Device_Interface_ExW
|
||||
;CM_Remove_SubTree
|
||||
;CM_Remove_SubTree_Ex
|
||||
;CM_Request_Eject_PC
|
||||
;CM_Request_Eject_PC_Ex
|
||||
;CM_Run_Detection
|
||||
;CM_Run_Detection_Ex
|
||||
;CM_Set_Class_Registry_PropertyA
|
||||
;CM_Set_Class_Registry_PropertyW
|
||||
;CM_Set_DevNode_Problem
|
||||
;CM_Set_DevNode_Problem_Ex
|
||||
;CM_Set_DevNode_Registry_PropertyA
|
||||
;CM_Set_DevNode_Registry_PropertyW
|
||||
;CM_Set_DevNode_Registry_Property_ExA
|
||||
;CM_Set_DevNode_Registry_Property_ExW
|
||||
;CM_Set_HW_Prof
|
||||
;CM_Set_HW_Prof_Ex
|
||||
;CM_Set_HW_Prof_FlagsA
|
||||
;CM_Set_HW_Prof_FlagsW
|
||||
;CM_Set_HW_Prof_Flags_ExA
|
||||
;CM_Set_HW_Prof_Flags_ExW
|
||||
;CM_Setup_DevNode
|
||||
;CM_Setup_DevNode_Ex
|
||||
;CM_Test_Range_Available
|
||||
;CM_Uninstall_DevNode
|
||||
;CM_Uninstall_DevNode_Ex
|
||||
;CM_Unregister_Device_InterfaceA
|
||||
;CM_Unregister_Device_InterfaceW
|
||||
;CM_Unregister_Device_Interface_ExA
|
||||
;CM_Unregister_Device_Interface_ExW
|
|
@ -1,9 +0,0 @@
|
|||
LIBRARY dxapi.sys
|
||||
EXPORTS
|
||||
;_DxApi@20
|
||||
;_DxApiGetVersion@0
|
||||
;_DxApiInitialize@32
|
||||
;_DxAutoflipUpdate@20
|
||||
;_DxEnableIRQ@8
|
||||
;_DxLoseObject@8
|
||||
;_DxUpdateCapture@12
|
|
@ -1,94 +0,0 @@
|
|||
LIBRARY hal.dll
|
||||
EXPORTS
|
||||
@ExAcquireFastMutex@4
|
||||
@ExReleaseFastMutex@4
|
||||
@ExTryToAcquireFastMutex@4
|
||||
;HalAcquireDisplayOwnership
|
||||
;HalAdjustResourceList
|
||||
;HalAllProcessorsStarted
|
||||
;HalAllocateAdapterChannel
|
||||
HalAllocateCommonBuffer@16
|
||||
;HalAllocateCrashDumpRegisters
|
||||
HalAssignSlotResources@32
|
||||
;HalBeginSystemInterrupt
|
||||
;HalCalibratePerformanceCounter
|
||||
;HalClearSoftwareInterrupt
|
||||
;HalDisableSystemInterrupt
|
||||
;HalDisplayString
|
||||
;HalEnableSystemInterrupt
|
||||
;HalEndSystemInterrupt
|
||||
;HalFlushCommonBuffer
|
||||
HalFreeCommonBuffer@20
|
||||
HalGetAdapter@8
|
||||
HalGetBusData@20
|
||||
HalGetBusDataByOffset@24
|
||||
;HalGetEnvironmentVariable
|
||||
HalGetInterruptVector@24
|
||||
;HalHandleNMI
|
||||
;HalInitSystem
|
||||
;HalInitializeProcessor
|
||||
;HalMakeBeep
|
||||
;HalProcessorIdle
|
||||
;HalQueryDisplayParameters
|
||||
;HalQueryRealTimeClock
|
||||
HalReadDmaCounter@4
|
||||
;HalReportResourceUsage
|
||||
;HalRequestIpi
|
||||
;HalRequestSoftwareInterrupt
|
||||
;HalReturnToFirmware
|
||||
HalSetBusData@20
|
||||
HalSetBusDataByOffset@24
|
||||
;HalSetDisplayParameters
|
||||
;HalSetEnvironmentVariable
|
||||
;HalSetProfileInterval
|
||||
;HalSetRealTimeClock
|
||||
;HalSetTimeIncrement
|
||||
;HalStartNextProcessor
|
||||
;HalStartProfileInterrupt
|
||||
;HalStopProfileInterrupt
|
||||
;HalSystemVectorDispatchEntry
|
||||
HalTranslateBusAddress@20
|
||||
;IoAssignDriveLetters
|
||||
IoFlushAdapterBuffers@24
|
||||
IoFreeAdapterChannel@4
|
||||
IoFreeMapRegisters@12
|
||||
IoMapTransfer@24
|
||||
IoReadPartitionTable@16
|
||||
IoSetPartitionInformation@16
|
||||
IoWritePartitionTable@20
|
||||
;KdComPortInUse DATA
|
||||
@KeAcquireInStackQueuedSpinLock@8
|
||||
;KeAcquireInStackQueuedSpinLockRaiseToSynch
|
||||
;KeAcquireQueuedSpinLock
|
||||
;KeAcquireQueuedSpinLockRaiseToSynch
|
||||
KeAcquireSpinLock@8
|
||||
;KeAcquireSpinLockRaiseToSynch
|
||||
;KeFlushWriteBuffer
|
||||
KeGetCurrentIrql@0
|
||||
KeLowerIrql@4
|
||||
KeQueryPerformanceCounter@4
|
||||
KeRaiseIrql@8
|
||||
KeRaiseIrqlToDpcLevel@0
|
||||
;KeRaiseIrqlToSynchLevel
|
||||
@KeReleaseInStackQueuedSpinLock@4
|
||||
;KeReleaseQueuedSpinLock
|
||||
KeReleaseSpinLock@8
|
||||
KeStallExecutionProcessor@4
|
||||
;KeTryToAcquireQueuedSpinLock
|
||||
;KeTryToAcquireQueuedSpinLockRaiseToSynch
|
||||
;KfAcquireSpinLock
|
||||
;KfLowerIrql
|
||||
;KfRaiseIrql
|
||||
;KfReleaseSpinLock
|
||||
READ_PORT_BUFFER_UCHAR@12
|
||||
READ_PORT_BUFFER_ULONG@12
|
||||
READ_PORT_BUFFER_USHORT@12
|
||||
READ_PORT_UCHAR@4
|
||||
READ_PORT_ULONG@4
|
||||
READ_PORT_USHORT@4
|
||||
WRITE_PORT_BUFFER_UCHAR@12
|
||||
WRITE_PORT_BUFFER_ULONG@12
|
||||
WRITE_PORT_BUFFER_USHORT@12
|
||||
WRITE_PORT_UCHAR@8
|
||||
WRITE_PORT_ULONG@8
|
||||
WRITE_PORT_USHORT@8
|
|
@ -1,47 +0,0 @@
|
|||
LIBRARY hid.dll
|
||||
EXPORTS
|
||||
;HidD_FlushQueue
|
||||
;HidD_FreePreparsedData
|
||||
;HidD_GetAttributes
|
||||
;HidD_GetConfiguration
|
||||
;HidD_GetFeature
|
||||
;HidD_GetHidGuid
|
||||
;HidD_GetIndexedString
|
||||
;HidD_GetInputReport
|
||||
;HidD_GetManufacturerString
|
||||
;HidD_GetMsGenreDescriptor
|
||||
;HidD_GetNumInputBuffers
|
||||
;HidD_GetPhysicalDescriptor
|
||||
;HidD_GetPreparsedData
|
||||
;HidD_GetProductString
|
||||
;HidD_GetSerialNumberString
|
||||
;HidD_Hello
|
||||
;HidD_SetConfiguration
|
||||
;HidD_SetFeature
|
||||
;HidD_SetNumInputBuffers
|
||||
;HidD_SetOutputReport
|
||||
;HidP_GetButtonCaps
|
||||
HidP_GetCaps@8
|
||||
HidP_GetData@24
|
||||
HidP_GetExtendedAttributes@20
|
||||
HidP_GetLinkCollectionNodes@12
|
||||
HidP_GetScaledUsageValue@32
|
||||
HidP_GetSpecificButtonCaps@28
|
||||
HidP_GetSpecificValueCaps@28
|
||||
HidP_GetUsageValue@32
|
||||
HidP_GetUsageValueArray@36
|
||||
HidP_GetUsages@32
|
||||
HidP_GetUsagesEx@28
|
||||
;HidP_GetValueCaps
|
||||
HidP_InitializeReportForID@20
|
||||
HidP_MaxDataListLength@8
|
||||
HidP_MaxUsageListLength@12
|
||||
HidP_SetData@24
|
||||
HidP_SetScaledUsageValue@32
|
||||
HidP_SetUsageValue@32
|
||||
HidP_SetUsageValueArray@36
|
||||
HidP_SetUsages@32
|
||||
HidP_TranslateUsagesToI8042ScanCodes@24
|
||||
HidP_UnsetUsages@32
|
||||
HidP_UsageListDifference@20
|
||||
;HidservInstaller
|
|
@ -1,32 +0,0 @@
|
|||
LIBRARY hidparse.sys
|
||||
EXPORTS
|
||||
;HidP_FreeCollectionDescription
|
||||
;HidP_GetButtonCaps
|
||||
HidP_GetCaps@8
|
||||
;HidP_GetCollectionDescription
|
||||
HidP_GetData@24
|
||||
HidP_GetExtendedAttributes@20
|
||||
HidP_GetLinkCollectionNodes@12
|
||||
HidP_GetScaledUsageValue@32
|
||||
HidP_GetSpecificButtonCaps@28
|
||||
HidP_GetSpecificValueCaps@28
|
||||
HidP_GetUsageValue@32
|
||||
HidP_GetUsageValueArray@36
|
||||
HidP_GetUsages@32
|
||||
HidP_GetUsagesEx@28
|
||||
;HidP_GetValueCaps
|
||||
HidP_InitializeReportForID@20
|
||||
HidP_MaxDataListLength@8
|
||||
HidP_MaxUsageListLength@12
|
||||
HidP_SetData@24
|
||||
HidP_SetScaledUsageValue@32
|
||||
HidP_SetUsageValue@32
|
||||
HidP_SetUsageValueArray@36
|
||||
HidP_SetUsages@32
|
||||
;HidP_SysPowerCaps
|
||||
;HidP_SysPowerEvent
|
||||
HidP_TranslateUsageAndPagesToI8042ScanCodes@24
|
||||
HidP_TranslateUsagesToI8042ScanCodes@24
|
||||
HidP_UnsetUsages@32
|
||||
HidP_UsageAndPageListDifference@20
|
||||
HidP_UsageListDifference@20
|
|
@ -1,7 +0,0 @@
|
|||
LIBRARY mcd.sys
|
||||
EXPORTS
|
||||
ChangerClassAllocatePool@8
|
||||
ChangerClassDebugPrint@8
|
||||
ChangerClassFreePool@4
|
||||
ChangerClassInitialize@12
|
||||
ChangerClassSendSrbSynchronous@20
|
|
@ -1,277 +0,0 @@
|
|||
LIBRARY ndis.sys
|
||||
EXPORTS
|
||||
;ArcFilterDprIndicateReceive
|
||||
;ArcFilterDprIndicateReceiveComplete
|
||||
;EthFilterDprIndicateReceive
|
||||
;EthFilterDprIndicateReceiveComplete
|
||||
;FddiFilterDprIndicateReceive
|
||||
;FddiFilterDprIndicateReceiveComplete
|
||||
NDIS_BUFFER_TO_SPAN_PAGES@4
|
||||
NdisAcquireReadWriteLock@12
|
||||
;NdisAcquireSpinLock
|
||||
NdisAdjustBufferLength@8
|
||||
NdisAllocateBuffer@20
|
||||
NdisAllocateBufferPool@12
|
||||
;NdisAllocateFromBlockPool
|
||||
NdisAllocateMemory@20
|
||||
NdisAllocateMemoryWithTag@12
|
||||
NdisAllocatePacket@12
|
||||
NdisAllocatePacketPool@16
|
||||
NdisAllocatePacketPoolEx@20
|
||||
;NdisAllocateSpinLock
|
||||
NdisAnsiStringToUnicodeString@8
|
||||
NdisBufferLength@4
|
||||
NdisBufferVirtualAddress@4
|
||||
;NdisCancelSendPackets
|
||||
;NdisCancelTimer
|
||||
NdisClAddParty@16
|
||||
NdisClCloseAddressFamily@4
|
||||
NdisClCloseCall@16
|
||||
NdisClDeregisterSap@4
|
||||
NdisClDropParty@12
|
||||
;NdisClGetProtocolVcContextFromTapiCallId
|
||||
NdisClIncomingCallComplete@12
|
||||
NdisClMakeCall@16
|
||||
NdisClModifyCallQoS@8
|
||||
NdisClOpenAddressFamily@24
|
||||
NdisClRegisterSap@16
|
||||
NdisCloseAdapter@8
|
||||
NdisCloseConfiguration@4
|
||||
;NdisCloseFile
|
||||
NdisCmActivateVc@8
|
||||
NdisCmAddPartyComplete@16
|
||||
NdisCmCloseAddressFamilyComplete@8
|
||||
NdisCmCloseCallComplete@12
|
||||
NdisCmDeactivateVc@4
|
||||
NdisCmDeregisterSapComplete@8
|
||||
NdisCmDispatchCallConnected@4
|
||||
NdisCmDispatchIncomingCall@12
|
||||
NdisCmDispatchIncomingCallQoSChange@8
|
||||
NdisCmDispatchIncomingCloseCall@16
|
||||
NdisCmDispatchIncomingDropParty@16
|
||||
NdisCmDropPartyComplete@8
|
||||
NdisCmMakeCallComplete@20
|
||||
NdisCmModifyCallQoSComplete@12
|
||||
NdisCmOpenAddressFamilyComplete@12
|
||||
NdisCmRegisterAddressFamily@16
|
||||
NdisCmRegisterSapComplete@12
|
||||
;NdisCoAssignInstanceName
|
||||
NdisCoCreateVc@16
|
||||
NdisCoDeleteVc@4
|
||||
;NdisCoGetTapiCallId
|
||||
NdisCoRequest@20
|
||||
NdisCoRequestComplete@20
|
||||
NdisCoSendPackets@12
|
||||
;NdisCompareAnsiString DATA
|
||||
;NdisCompareUnicodeString DATA
|
||||
NdisCompleteBindAdapter@12
|
||||
;NdisCompleteDmaTransfer
|
||||
NdisCompletePnPEvent@12
|
||||
NdisCompleteUnbindAdapter@8
|
||||
;NdisConvertStringToAtmAddress
|
||||
NdisCopyBuffer@24
|
||||
NdisCopyFromPacketToPacket@24
|
||||
;NdisCopyFromPacketToPacketSafe
|
||||
;NdisCreateBlockPool
|
||||
NdisDeregisterProtocol@8
|
||||
;NdisDestroyBlockPool
|
||||
;NdisDprAcquireSpinLock
|
||||
NdisDprAllocatePacket@12
|
||||
NdisDprAllocatePacketNonInterlocked@12
|
||||
NdisDprFreePacket@4
|
||||
NdisDprFreePacketNonInterlocked@4
|
||||
;NdisDprReleaseSpinLock
|
||||
;NdisEqualString DATA
|
||||
NdisFreeBuffer@4
|
||||
NdisFreeBufferPool@4
|
||||
NdisFreeMemory@12
|
||||
NdisFreePacket@4
|
||||
NdisFreePacketPool@4
|
||||
;NdisFreeSpinLock
|
||||
;NdisFreeToBlockPool
|
||||
;NdisGeneratePartialCancelId
|
||||
NdisGetBufferPhysicalArraySize@8
|
||||
NdisGetCurrentProcessorCounts@12
|
||||
NdisGetCurrentProcessorCpuUsage@4
|
||||
;NdisGetCurrentSystemTime
|
||||
NdisGetDriverHandle@8
|
||||
NdisGetFirstBufferFromPacket@20
|
||||
;NdisGetFirstBufferFromPacketSafe
|
||||
;NdisGetPacketCancelId
|
||||
;NdisGetPoolFromPacket
|
||||
NdisGetReceivedPacket@8
|
||||
;NdisGetRoutineAddress
|
||||
;NdisGetSharedDataAlignment
|
||||
NdisGetSystemUpTime@4
|
||||
;NdisGetVersion
|
||||
NdisIMAssociateMiniport@8
|
||||
NdisIMCancelInitializeDeviceInstance@8
|
||||
NdisIMCopySendCompletePerPacketInfo@8
|
||||
NdisIMCopySendPerPacketInfo@8
|
||||
NdisIMDeInitializeDeviceInstance@4
|
||||
NdisIMDeregisterLayeredMiniport@4
|
||||
NdisIMGetBindingContext@4
|
||||
;NdisIMGetCurrentPacketStack
|
||||
NdisIMGetDeviceContext@4
|
||||
;NdisIMInitializeDeviceInstance
|
||||
NdisIMInitializeDeviceInstanceEx@12
|
||||
;NdisIMNotifyPnPEvent
|
||||
;NdisIMQueueMiniportCallback
|
||||
NdisIMRegisterLayeredMiniport@16
|
||||
;NdisIMRevertBack
|
||||
;NdisIMSwitchToMiniport
|
||||
;NdisImmediateReadPciSlotInformation
|
||||
;NdisImmediateReadPortUchar
|
||||
;NdisImmediateReadPortUlong
|
||||
;NdisImmediateReadPortUshort
|
||||
NdisImmediateReadSharedMemory@16
|
||||
;NdisImmediateWritePciSlotInformation
|
||||
;NdisImmediateWritePortUchar
|
||||
;NdisImmediateWritePortUlong
|
||||
;NdisImmediateWritePortUshort
|
||||
NdisImmediateWriteSharedMemory@16
|
||||
;NdisInitAnsiString DATA
|
||||
;NdisInitUnicodeString DATA
|
||||
;NdisInitializeEvent
|
||||
NdisInitializeReadWriteLock@4
|
||||
;NdisInitializeString
|
||||
;NdisInitializeTimer
|
||||
NdisInitializeWrapper@16
|
||||
;NdisInterlockedAddLargeInterger DATA
|
||||
;NdisInterlockedAddUlong
|
||||
;NdisInterlockedDecrement
|
||||
;NdisInterlockedIncrement
|
||||
;NdisInterlockedInsertHeadList
|
||||
;NdisInterlockedInsertTailList
|
||||
;NdisInterlockedPopEntryList
|
||||
;NdisInterlockedPushEntryList
|
||||
;NdisInterlockedRemoveHeadList
|
||||
NdisMAllocateMapRegisters@20
|
||||
NdisMAllocateSharedMemory@20
|
||||
NdisMAllocateSharedMemoryAsync@16
|
||||
;NdisMCancelTimer
|
||||
NdisMCloseLog@4
|
||||
NdisMCmActivateVc@8
|
||||
NdisMCmCreateVc@16
|
||||
NdisMCmDeactivateVc@4
|
||||
NdisMCmDeleteVc@4
|
||||
NdisMCmRegisterAddressFamily@16
|
||||
NdisMCmRequest@16
|
||||
NdisMCoActivateVcComplete@12
|
||||
NdisMCoDeactivateVcComplete@8
|
||||
NdisMCoIndicateReceivePacket@12
|
||||
NdisMCoIndicateStatus@20
|
||||
NdisMCoReceiveComplete@4
|
||||
NdisMCoRequestComplete@12
|
||||
NdisMCoSendComplete@12
|
||||
;NdisMCompleteBufferPhysicalMapping
|
||||
NdisMCreateLog@12
|
||||
NdisMDeregisterAdapterShutdownHandler@4
|
||||
NdisMDeregisterDevice@4
|
||||
;NdisMDeregisterDmaChannel
|
||||
NdisMDeregisterInterrupt@4
|
||||
NdisMDeregisterIoPortRange@16
|
||||
NdisMFlushLog@4
|
||||
NdisMFreeMapRegisters@4
|
||||
NdisMFreeSharedMemory@24
|
||||
NdisMGetDeviceProperty@24
|
||||
;NdisMGetDmaAlignment
|
||||
;NdisMIndicateStatus
|
||||
;NdisMIndicateStatusComplete
|
||||
NdisMInitializeScatterGatherDma@12
|
||||
;NdisMInitializeTimer
|
||||
NdisMMapIoSpace@20
|
||||
;NdisMPciAssignResources
|
||||
NdisMPromoteMiniport@4
|
||||
NdisMQueryAdapterInstanceName@8
|
||||
NdisMQueryAdapterResources@16
|
||||
;NdisMQueryInformationComplete
|
||||
;NdisMReadDmaCounter
|
||||
NdisMRegisterAdapterShutdownHandler@12
|
||||
NdisMRegisterDevice@24
|
||||
;NdisMRegisterDmaChannel
|
||||
NdisMRegisterInterrupt@28
|
||||
NdisMRegisterIoPortRange@16
|
||||
NdisMRegisterMiniport@12
|
||||
NdisMRegisterUnloadHandler@8
|
||||
NdisMRemoveMiniport@4
|
||||
;NdisMResetComplete
|
||||
;NdisMSendComplete
|
||||
;NdisMSendResourcesAvailable
|
||||
;NdisMSetAttributes
|
||||
NdisMSetAttributesEx@20
|
||||
;NdisMSetInformationComplete
|
||||
NdisMSetMiniportSecondary@8
|
||||
;NdisMSetPeriodicTimer
|
||||
;NdisMSetTimer
|
||||
NdisMSleep@4
|
||||
;NdisMStartBufferPhysicalMapping
|
||||
NdisMSynchronizeWithInterrupt@12
|
||||
;NdisMTransferDataComplete
|
||||
NdisMUnmapIoSpace@12
|
||||
NdisMWanIndicateReceive@20
|
||||
NdisMWanIndicateReceiveComplete@4
|
||||
NdisMWanSendComplete@12
|
||||
NdisMWriteLogData@12
|
||||
;NdisMapFile
|
||||
;NdisMatchPdoWithPacket
|
||||
NdisOpenAdapter@44
|
||||
NdisOpenConfiguration@12
|
||||
NdisOpenConfigurationKeyByIndex@20
|
||||
NdisOpenConfigurationKeyByName@16
|
||||
;NdisOpenFile
|
||||
NdisOpenProtocolConfiguration@12
|
||||
;NdisOverrideBusNumber
|
||||
NdisPacketPoolUsage@4
|
||||
;NdisPacketSize
|
||||
NdisQueryAdapterInstanceName@8
|
||||
;NdisQueryBindInstanceName
|
||||
NdisQueryBuffer@12
|
||||
NdisQueryBufferOffset@12
|
||||
NdisQueryBufferSafe@16
|
||||
;NdisQueryMapRegisterCount
|
||||
;NdisQueryPendingIOCount
|
||||
;NdisReEnumerateProtocolBindings
|
||||
NdisReadConfiguration@20
|
||||
NdisReadEisaSlotInformation@16
|
||||
NdisReadEisaSlotInformationEx@20
|
||||
;NdisReadMcaPosInformation
|
||||
NdisReadNetworkAddress@16
|
||||
NdisReadPciSlotInformation@20
|
||||
NdisReadPcmciaAttributeMemory@16
|
||||
NdisRegisterProtocol@16
|
||||
;NdisRegisterTdiCallBack
|
||||
NdisReleaseReadWriteLock@8
|
||||
;NdisReleaseSpinLock
|
||||
NdisRequest@12
|
||||
NdisReset@8
|
||||
;NdisResetEvent
|
||||
NdisReturnPackets@8
|
||||
;NdisScheduleWorkItem
|
||||
NdisSend@12
|
||||
NdisSendPackets@12
|
||||
;NdisSetEvent
|
||||
;NdisSetPacketCancelId
|
||||
;NdisSetPacketPoolProtocolId
|
||||
;NdisSetPacketStatus
|
||||
;NdisSetProtocolFilter
|
||||
;NdisSetTimer
|
||||
;NdisSetTimerEx
|
||||
NdisSetupDmaTransfer@24
|
||||
;NdisSystemProcessorCount
|
||||
NdisTerminateWrapper@8
|
||||
NdisTransferData@28
|
||||
NdisUnchainBufferAtBack@8
|
||||
NdisUnchainBufferAtFront@8
|
||||
NdisUnicodeStringToAnsiString@8
|
||||
;NdisUnmapFile
|
||||
NdisUpcaseUnicodeString@8
|
||||
NdisUpdateSharedMemory@20
|
||||
;NdisWaitEvent
|
||||
NdisWriteConfiguration@16
|
||||
NdisWriteErrorLogEntry
|
||||
NdisWriteEventLogEntry@28
|
||||
NdisWritePciSlotInformation@20
|
||||
NdisWritePcmciaAttributeMemory@16
|
||||
;TrFilterDprIndicateReceive
|
||||
;TrFilterDprIndicateReceiveComplete
|
File diff suppressed because it is too large
Load diff
|
@ -1,49 +0,0 @@
|
|||
LIBRARY scsiport.sys
|
||||
EXPORTS
|
||||
DllInitialize@4
|
||||
ScsiDebugPrint
|
||||
ScsiPortCompleteRequest@20
|
||||
;ScsiPortConvertPhysicalAddressToUlong
|
||||
ScsiPortConvertUlongToPhysicalAddress@4
|
||||
ScsiPortFlushDma@4
|
||||
ScsiPortFreeDeviceBase@8
|
||||
ScsiPortGetBusData@24
|
||||
ScsiPortGetDeviceBase@24
|
||||
ScsiPortGetLogicalUnit@16
|
||||
ScsiPortGetPhysicalAddress@16
|
||||
ScsiPortGetSrb@20
|
||||
ScsiPortGetUncachedExtension@12
|
||||
ScsiPortGetVirtualAddress@8
|
||||
ScsiPortInitialize@16
|
||||
ScsiPortIoMapTransfer@16
|
||||
ScsiPortLogError@28
|
||||
ScsiPortMoveMemory@12
|
||||
ScsiPortNotification
|
||||
ScsiPortQuerySystemTime@4
|
||||
ScsiPortReadPortBufferUchar@12
|
||||
ScsiPortReadPortBufferUlong@12
|
||||
ScsiPortReadPortBufferUshort@12
|
||||
ScsiPortReadPortUchar@4
|
||||
ScsiPortReadPortUlong@4
|
||||
ScsiPortReadPortUshort@4
|
||||
ScsiPortReadRegisterBufferUchar@12
|
||||
ScsiPortReadRegisterBufferUlong@12
|
||||
ScsiPortReadRegisterBufferUshort@12
|
||||
ScsiPortReadRegisterUchar@4
|
||||
ScsiPortReadRegisterUlong@4
|
||||
ScsiPortReadRegisterUshort@4
|
||||
ScsiPortSetBusDataByOffset@28
|
||||
ScsiPortStallExecution@4
|
||||
ScsiPortValidateRange@24
|
||||
ScsiPortWritePortBufferUchar@12
|
||||
ScsiPortWritePortBufferUlong@12
|
||||
ScsiPortWritePortBufferUshort@12
|
||||
ScsiPortWritePortUchar@8
|
||||
ScsiPortWritePortUlong@8
|
||||
ScsiPortWritePortUshort@8
|
||||
ScsiPortWriteRegisterBufferUchar@12
|
||||
ScsiPortWriteRegisterBufferUlong@12
|
||||
ScsiPortWriteRegisterBufferUshort@12
|
||||
ScsiPortWriteRegisterUchar@8
|
||||
ScsiPortWriteRegisterUlong@8
|
||||
ScsiPortWriteRegisterUshort@8
|
|
@ -1,50 +0,0 @@
|
|||
LIBRARY tdi.sys
|
||||
EXPORTS
|
||||
;CTEAllocateString
|
||||
;CTEBlock
|
||||
;CTEInitEvent
|
||||
;CTEInitString
|
||||
;CTEInitTimer
|
||||
;CTEInitialize
|
||||
;CTELogEvent
|
||||
;CTEScheduleDelayedEvent
|
||||
;CTEScheduleEvent
|
||||
;CTESignal
|
||||
;CTEStartTimer
|
||||
;CTESystemUpTime
|
||||
TdiBuildNetbiosAddress@12
|
||||
TdiBuildNetbiosAddressEa@12
|
||||
TdiCopyBufferToMdl@24
|
||||
TdiCopyMdlChainToMdlChain@20
|
||||
TdiCopyMdlToBuffer@24
|
||||
TdiDefaultChainedRcvDatagramHandler@40
|
||||
TdiDefaultChainedRcvExpeditedHandler@28
|
||||
TdiDefaultChainedReceiveHandler@28
|
||||
TdiDefaultConnectHandler@36
|
||||
TdiDefaultDisconnectHandler@28
|
||||
TdiDefaultErrorHandler@8
|
||||
TdiDefaultRcvDatagramHandler@44
|
||||
TdiDefaultRcvExpeditedHandler@32
|
||||
TdiDefaultReceiveHandler@32
|
||||
TdiDefaultSendPossibleHandler@12
|
||||
TdiDeregisterAddressChangeHandler@4
|
||||
TdiDeregisterDeviceObject@4
|
||||
TdiDeregisterNetAddress@4
|
||||
;TdiDeregisterNotificationHandler
|
||||
TdiDeregisterPnPHandlers@4
|
||||
TdiDeregisterProvider@4
|
||||
TdiEnumerateAddresses@4
|
||||
TdiInitialize@0
|
||||
TdiMapUserRequest@12
|
||||
TdiMatchPdoWithChainedReceiveContext@8
|
||||
;TdiOpenNetbiosAddress
|
||||
TdiPnPPowerComplete@12
|
||||
TdiPnPPowerRequest@20
|
||||
TdiProviderReady@4
|
||||
TdiRegisterAddressChangeHandler@12
|
||||
TdiRegisterDeviceObject@8
|
||||
TdiRegisterNetAddress@16
|
||||
TdiRegisterNotificationHandler@12
|
||||
TdiRegisterPnPHandlers@12
|
||||
TdiRegisterProvider@8
|
||||
TdiReturnChainedReceives@8
|
|
@ -1,10 +0,0 @@
|
|||
LIBRARY usbcamd.sys
|
||||
EXPORTS
|
||||
DllUnload@0
|
||||
USBCAMD_AdapterReceivePacket@16
|
||||
USBCAMD_ControlVendorCommand@36
|
||||
;USBCAMD_Debug_LogEntry
|
||||
USBCAMD_DriverEntry@20
|
||||
USBCAMD_GetRegistryKeyValue@20
|
||||
USBCAMD_InitializeNewInterface@16
|
||||
USBCAMD_SelectAlternateInterface@8
|
|
@ -1,10 +0,0 @@
|
|||
LIBRARY usbcamd2.sys
|
||||
EXPORTS
|
||||
DllUnload@0
|
||||
USBCAMD_AdapterReceivePacket@16
|
||||
USBCAMD_ControlVendorCommand@36
|
||||
;USBCAMD_Debug_LogEntry
|
||||
USBCAMD_DriverEntry@20
|
||||
USBCAMD_GetRegistryKeyValue@20
|
||||
USBCAMD_InitializeNewInterface@16
|
||||
USBCAMD_SelectAlternateInterface@8
|
|
@ -1,115 +0,0 @@
|
|||
LIBRARY videoprt.sys
|
||||
EXPORTS
|
||||
VideoPortAcquireDeviceLock@4
|
||||
VideoPortAcquireSpinLock@12
|
||||
VideoPortAcquireSpinLockAtDpcLevel@8
|
||||
VideoPortAllocateBuffer@12
|
||||
VideoPortAllocateCommonBuffer@24
|
||||
VideoPortAllocateContiguousMemory@12
|
||||
VideoPortAllocatePool@16
|
||||
VideoPortAssociateEventsWithDmaHandle@16
|
||||
;VideoPortCheckForDeviceExistance
|
||||
VideoPortCheckForDeviceExistence@28
|
||||
VideoPortClearEvent@8
|
||||
VideoPortCompareMemory@12
|
||||
VideoPortCompleteDma@16
|
||||
VideoPortCreateEvent@16
|
||||
VideoPortCreateSecondaryDisplay@12
|
||||
VideoPortCreateSpinLock@8
|
||||
VideoPortDDCMonitorHelper@16
|
||||
VideoPortDebugPrint
|
||||
VideoPortDeleteEvent@8
|
||||
VideoPortDeleteSpinLock@8
|
||||
VideoPortDisableInterrupt@4
|
||||
VideoPortDoDma@12
|
||||
VideoPortEnableInterrupt@4
|
||||
VideoPortEnumerateChildren@8
|
||||
;VideoPortFlushRegistry
|
||||
VideoPortFreeCommonBuffer@20
|
||||
VideoPortFreeDeviceBase@8
|
||||
VideoPortFreePool@8
|
||||
VideoPortGetAccessRanges@32
|
||||
VideoPortGetAgpServices@8
|
||||
VideoPortGetAssociatedDeviceExtension@4
|
||||
VideoPortGetAssociatedDeviceID@4
|
||||
VideoPortGetBusData@24
|
||||
VideoPortGetBytesUsed@8
|
||||
VideoPortGetCommonBuffer@24
|
||||
VideoPortGetCurrentIrql@0
|
||||
VideoPortGetDeviceBase@16
|
||||
VideoPortGetDeviceData@16
|
||||
VideoPortGetDmaAdapter@8
|
||||
VideoPortGetDmaContext@8
|
||||
VideoPortGetMdl@8
|
||||
VideoPortGetRegistryParameters@20
|
||||
VideoPortGetRomImage@16
|
||||
VideoPortGetVersion@8
|
||||
VideoPortGetVgaStatus@8
|
||||
VideoPortInitialize@16
|
||||
VideoPortInt10@8
|
||||
@VideoPortInterlockedDecrement@4
|
||||
@VideoPortInterlockedExchange@8
|
||||
@VideoPortInterlockedIncrement@4
|
||||
VideoPortLockBuffer@16
|
||||
VideoPortLockPages@20
|
||||
VideoPortLogError@16
|
||||
VideoPortMapBankedMemory@36
|
||||
VideoPortMapDmaMemory@32
|
||||
VideoPortMapMemory@20
|
||||
VideoPortMoveMemory@12
|
||||
VideoPortPutDmaAdapter@8
|
||||
VideoPortQueryPerformanceCounter@8
|
||||
VideoPortQueryServices@12
|
||||
VideoPortQuerySystemTime@4
|
||||
VideoPortQueueDpc@12
|
||||
VideoPortReadPortBufferUchar@12
|
||||
VideoPortReadPortBufferUlong@12
|
||||
VideoPortReadPortBufferUshort@12
|
||||
VideoPortReadPortUchar@4
|
||||
VideoPortReadPortUlong@4
|
||||
VideoPortReadPortUshort@4
|
||||
VideoPortReadRegisterBufferUchar@12
|
||||
VideoPortReadRegisterBufferUlong@12
|
||||
VideoPortReadRegisterBufferUshort@12
|
||||
VideoPortReadRegisterUchar@4
|
||||
VideoPortReadRegisterUlong@4
|
||||
VideoPortReadRegisterUshort@4
|
||||
VideoPortReadStateEvent@8
|
||||
VideoPortReleaseBuffer@8
|
||||
VideoPortReleaseCommonBuffer@24
|
||||
VideoPortReleaseDeviceLock@4
|
||||
VideoPortReleaseSpinLock@12
|
||||
VideoPortReleaseSpinLockFromDpcLevel@8
|
||||
VideoPortScanRom@16
|
||||
VideoPortSetBusData@24
|
||||
VideoPortSetBytesUsed@12
|
||||
VideoPortSetDmaContext@12
|
||||
VideoPortSetEvent@8
|
||||
VideoPortSetRegistryParameters@16
|
||||
VideoPortSetTrappedEmulatorPorts@12
|
||||
VideoPortSignalDmaComplete@8
|
||||
VideoPortStallExecution@4
|
||||
VideoPortStartDma@32
|
||||
VideoPortStartTimer@4
|
||||
VideoPortStopTimer@4
|
||||
VideoPortSynchronizeExecution@16
|
||||
VideoPortUnlockBuffer@8
|
||||
VideoPortUnlockPages@8
|
||||
VideoPortUnmapDmaMemory@16
|
||||
VideoPortUnmapMemory@12
|
||||
VideoPortVerifyAccessRanges@12
|
||||
VideoPortWaitForSingleObject@12
|
||||
VideoPortWritePortBufferUchar@12
|
||||
VideoPortWritePortBufferUlong@12
|
||||
VideoPortWritePortBufferUshort@12
|
||||
VideoPortWritePortUchar@8
|
||||
VideoPortWritePortUlong@8
|
||||
VideoPortWritePortUshort@8
|
||||
VideoPortWriteRegisterBufferUchar@12
|
||||
VideoPortWriteRegisterBufferUlong@12
|
||||
VideoPortWriteRegisterBufferUshort@12
|
||||
VideoPortWriteRegisterUchar@8
|
||||
VideoPortWriteRegisterUlong@8
|
||||
VideoPortWriteRegisterUshort@8
|
||||
VideoPortZeroDeviceMemory@8
|
||||
VideoPortZeroMemory@8
|
|
@ -1,226 +0,0 @@
|
|||
LIBRARY win32k.sys
|
||||
EXPORTS
|
||||
BRUSHOBJ_hGetColorTransform@4
|
||||
BRUSHOBJ_pvAllocRbrush@8
|
||||
BRUSHOBJ_pvGetRbrush@4
|
||||
BRUSHOBJ_ulGetBrushColor@4
|
||||
CLIPOBJ_bEnum@12
|
||||
CLIPOBJ_cEnumStart@20
|
||||
CLIPOBJ_ppoGetPath@4
|
||||
EngAcquireSemaphore@4
|
||||
EngAllocMem@12
|
||||
EngAllocPrivateUserMem@12
|
||||
;EngAllocSectionMem
|
||||
EngAllocUserMem@8
|
||||
EngAlphaBlend@28
|
||||
EngAssociateSurface@12
|
||||
EngBitBlt@44
|
||||
EngCheckAbort@4
|
||||
EngClearEvent@4
|
||||
EngComputeGlyphSet@12
|
||||
EngControlSprites@8
|
||||
EngCopyBits@24
|
||||
EngCreateBitmap@20
|
||||
EngCreateClip@0
|
||||
EngCreateDeviceBitmap@12
|
||||
EngCreateDeviceSurface@12
|
||||
;EngCreateDriverObj
|
||||
EngCreateEvent@4
|
||||
EngCreatePalette@24
|
||||
EngCreatePath@0
|
||||
EngCreateSemaphore@0
|
||||
EngCreateWnd@20
|
||||
EngDebugBreak@0
|
||||
EngDebugPrint@12
|
||||
EngDeleteClip@4
|
||||
EngDeleteDriverObj@12
|
||||
EngDeleteEvent@4
|
||||
EngDeleteFile@4
|
||||
EngDeletePalette@4
|
||||
EngDeletePath@4
|
||||
EngDeleteSafeSemaphore@4
|
||||
EngDeleteSemaphore@4
|
||||
EngDeleteSurface@4
|
||||
EngDeleteWnd@4
|
||||
EngDeviceIoControl@28
|
||||
EngDitherColor@16
|
||||
;EngDxIoctl
|
||||
EngEnumForms@24
|
||||
EngEraseSurface@12
|
||||
;EngFileIoControl
|
||||
;EngFileWrite
|
||||
EngFillPath@28
|
||||
EngFindImageProcAddress@8
|
||||
EngFindResource@16
|
||||
EngFntCacheAlloc@8
|
||||
EngFntCacheFault@8
|
||||
EngFntCacheLookUp@8
|
||||
EngFreeMem@4
|
||||
EngFreeModule@4
|
||||
EngFreePrivateUserMem@8
|
||||
;EngFreeSectionMem
|
||||
EngFreeUserMem@4
|
||||
EngGetCurrentCodePage@8
|
||||
EngGetCurrentProcessId@0
|
||||
EngGetCurrentThreadId@0
|
||||
EngGetDriverName@4
|
||||
EngGetFileChangeTime@8
|
||||
EngGetFilePath@8
|
||||
EngGetForm@24
|
||||
EngGetLastError@0
|
||||
EngGetPrinter@20
|
||||
EngGetPrinterData@24
|
||||
EngGetPrinterDataFileName@4
|
||||
EngGetPrinterDriver@24
|
||||
EngGetProcessHandle@0
|
||||
;EngGetTickCount
|
||||
EngGetType1FontList@24
|
||||
EngGradientFill@40
|
||||
EngHangNotification@8
|
||||
EngInitializeSafeSemaphore@4
|
||||
EngIsSemaphoreOwned@4
|
||||
EngIsSemaphoreOwnedByCurrentThread@4
|
||||
EngLineTo@36
|
||||
EngLoadImage@4
|
||||
EngLoadModule@4
|
||||
EngLoadModuleForWrite@8
|
||||
EngLockDirectDrawSurface@4
|
||||
;EngLockDriverObj
|
||||
EngLockSurface@4
|
||||
EngLpkInstalled@0
|
||||
EngMapEvent@20
|
||||
EngMapFile@12
|
||||
EngMapFontFile@12
|
||||
EngMapFontFileFD@12
|
||||
EngMapModule@8
|
||||
;EngMapSection
|
||||
EngMarkBandingSurface@4
|
||||
EngModifySurface@32
|
||||
EngMovePointer@16
|
||||
EngMulDiv@12
|
||||
EngMultiByteToUnicodeN@20
|
||||
EngMultiByteToWideChar@20
|
||||
;EngNineGrid
|
||||
EngPaint@20
|
||||
EngPlgBlt@44
|
||||
EngProbeForRead@12
|
||||
EngProbeForReadAndWrite@12
|
||||
EngQueryDeviceAttribute@24
|
||||
EngQueryLocalTime@4
|
||||
EngQueryPalette@16
|
||||
EngQueryPerformanceCounter@4
|
||||
EngQueryPerformanceFrequency@4
|
||||
EngQuerySystemAttribute@8
|
||||
EngReadStateEvent@4
|
||||
EngReleaseSemaphore@4
|
||||
EngRestoreFloatingPointState@4
|
||||
EngSaveFloatingPointState@8
|
||||
EngSecureMem@8
|
||||
EngSetEvent@4
|
||||
EngSetLastError@4
|
||||
EngSetPointerShape@40
|
||||
EngSetPointerTag@20
|
||||
EngSetPrinterData@20
|
||||
EngSort@16
|
||||
EngStretchBlt@44
|
||||
EngStretchBltROP@52
|
||||
EngStrokeAndFillPath@40
|
||||
EngStrokePath@32
|
||||
EngTextOut@40
|
||||
EngTransparentBlt@32
|
||||
EngUnicodeToMultiByteN@20
|
||||
EngUnloadImage@4
|
||||
EngUnlockDirectDrawSurface@4
|
||||
EngUnlockDriverObj@4
|
||||
EngUnlockSurface@4
|
||||
EngUnmapEvent@4
|
||||
EngUnmapFile@4
|
||||
EngUnmapFontFile@4
|
||||
EngUnmapFontFileFD@4
|
||||
EngUnsecureMem@4
|
||||
EngWaitForSingleObject@8
|
||||
EngWideCharToMultiByte@20
|
||||
EngWritePrinter@16
|
||||
FLOATOBJ_Add@8
|
||||
FLOATOBJ_AddFloat@8
|
||||
;FLOATOBJ_AddFloatObj
|
||||
FLOATOBJ_AddLong@8
|
||||
FLOATOBJ_Div@8
|
||||
FLOATOBJ_DivFloat@8
|
||||
;FLOATOBJ_DivFloatObj
|
||||
FLOATOBJ_DivLong@8
|
||||
FLOATOBJ_Equal@8
|
||||
FLOATOBJ_EqualLong@8
|
||||
FLOATOBJ_GetFloat@4
|
||||
FLOATOBJ_GetLong@4
|
||||
FLOATOBJ_GreaterThan@8
|
||||
FLOATOBJ_GreaterThanLong@8
|
||||
FLOATOBJ_LessThan@8
|
||||
FLOATOBJ_LessThanLong@8
|
||||
FLOATOBJ_Mul@8
|
||||
FLOATOBJ_MulFloat@8
|
||||
;FLOATOBJ_MulFloatObj
|
||||
FLOATOBJ_MulLong@8
|
||||
FLOATOBJ_Neg@4
|
||||
FLOATOBJ_SetFloat@8
|
||||
FLOATOBJ_SetLong@8
|
||||
FLOATOBJ_Sub@8
|
||||
FLOATOBJ_SubFloat@8
|
||||
;FLOATOBJ_SubFloatObj
|
||||
FLOATOBJ_SubLong@8
|
||||
FONTOBJ_cGetAllGlyphHandles@8
|
||||
FONTOBJ_cGetGlyphs@20
|
||||
FONTOBJ_pQueryGlyphAttrs@8
|
||||
FONTOBJ_pfdg@4
|
||||
FONTOBJ_pifi@4
|
||||
FONTOBJ_pjOpenTypeTablePointer@12
|
||||
FONTOBJ_pvTrueTypeFontFile@8
|
||||
FONTOBJ_pwszFontFilePaths@8
|
||||
FONTOBJ_pxoGetXform@4
|
||||
FONTOBJ_vGetInfo@12
|
||||
HT_ComputeRGBGammaTable@24
|
||||
HT_Get8BPPFormatPalette@16
|
||||
HT_Get8BPPMaskPalette@24
|
||||
HeapVidMemAllocAligned@20
|
||||
PALOBJ_cGetColors@16
|
||||
PATHOBJ_bCloseFigure@4
|
||||
PATHOBJ_bEnum@8
|
||||
PATHOBJ_bEnumClipLines@12
|
||||
PATHOBJ_bMoveTo@8
|
||||
PATHOBJ_bPolyBezierTo@12
|
||||
PATHOBJ_bPolyLineTo@12
|
||||
PATHOBJ_vEnumStart@4
|
||||
PATHOBJ_vEnumStartClipLines@16
|
||||
PATHOBJ_vGetBounds@8
|
||||
;RtlAnsiCharToUnicodeChar
|
||||
;RtlMultiByteToUnicodeN
|
||||
;RtlRaiseException
|
||||
;RtlUnicodeToMultiByteN
|
||||
;RtlUnicodeToMultiByteSize
|
||||
;RtlUnwind
|
||||
RtlUpcaseUnicodeChar@4
|
||||
;RtlUpcaseUnicodeToMultiByteN
|
||||
STROBJ_bEnum@12
|
||||
STROBJ_bEnumPositionsOnly@12
|
||||
STROBJ_bGetAdvanceWidths@16
|
||||
STROBJ_dwGetCodePage@4
|
||||
STROBJ_fxBreakExtra@4
|
||||
STROBJ_fxCharacterExtra@4
|
||||
STROBJ_vEnumStart@4
|
||||
VidMemFree@8
|
||||
WNDOBJ_bEnum@12
|
||||
WNDOBJ_cEnumStart@16
|
||||
WNDOBJ_vSetConsumer@8
|
||||
XFORMOBJ_bApplyXform@20
|
||||
XFORMOBJ_iGetFloatObjXform@8
|
||||
XFORMOBJ_iGetXform@8
|
||||
XLATEOBJ_cGetPalette@16
|
||||
XLATEOBJ_hGetColorTransform@4
|
||||
XLATEOBJ_iXlate@8
|
||||
XLATEOBJ_piVector@4
|
||||
;_abnormal_termination
|
||||
;_except_handler2
|
||||
;_global_unwind2
|
||||
;_itoa
|
||||
;_itow
|
||||
;_local_unwind2
|
|
@ -1,28 +0,0 @@
|
|||
; from DirectX 6.1
|
||||
LIBRARY DDRAW.dll
|
||||
EXPORTS
|
||||
D3DParseUnknownCommand@8
|
||||
DDHAL32_VidMemAlloc@16
|
||||
DDHAL32_VidMemFree@12
|
||||
DDInternalLock@8
|
||||
DDInternalUnlock@4
|
||||
DSoundHelp@12
|
||||
DirectDrawCreate@12
|
||||
DirectDrawCreateClipper@12
|
||||
DirectDrawEnumerateA@8
|
||||
DirectDrawEnumerateExA@12
|
||||
DirectDrawEnumerateExW@12
|
||||
DirectDrawEnumerateW@8
|
||||
GetAliasedVidMem
|
||||
GetNextMipMap
|
||||
GetSurfaceFromDC@12
|
||||
HeapVidMemAllocAligned@20
|
||||
InternalLock
|
||||
InternalUnlock
|
||||
LateAllocateSurfaceMem@16
|
||||
VidMemAlloc@12
|
||||
VidMemAmountFree@4
|
||||
VidMemFini@4
|
||||
VidMemFree@8
|
||||
VidMemInit@20
|
||||
VidMemLargestFree@4
|
|
@ -1,8 +0,0 @@
|
|||
LIBRARY DHCPCSVC.DLL
|
||||
EXPORTS
|
||||
DhcpCApiCleanup@0
|
||||
DhcpCApiInitialize@4
|
||||
DhcpDeRegisterParamChange@12
|
||||
DhcpRegisterParamChange@28
|
||||
DhcpRemoveDNSRegistrations@0
|
||||
DhcpUndoRequestParams@16
|
File diff suppressed because it is too large
Load diff
|
@ -1,6 +0,0 @@
|
|||
; from DirectX 6.1
|
||||
LIBRARY DINPUT.dll
|
||||
EXPORTS
|
||||
DirectInputCreateA@16
|
||||
DirectInputCreateW@16
|
||||
DirectInputCreateEx@20
|
|
@ -1,5 +0,0 @@
|
|||
LIBRARY DLCAPI.DLL
|
||||
EXPORTS
|
||||
AcsLan@8
|
||||
DlcCallDriver@24
|
||||
NtAcsLan@16
|
|
@ -1,31 +0,0 @@
|
|||
LIBRARY DNSAPI.DLL
|
||||
EXPORTS
|
||||
DnsAcquireContextHandle_A@12
|
||||
DnsAcquireContextHandle_W@12
|
||||
DnsExtractRecordsFromMessage_UTF8@12
|
||||
DnsExtractRecordsFromMessage_W@12
|
||||
DnsModifyRecordsInSet_A@24
|
||||
DnsModifyRecordsInSet_UTF8@24
|
||||
DnsModifyRecordsInSet_W@24
|
||||
DnsNameCompare_A@8
|
||||
DnsNameCompare_W@8
|
||||
DnsQuery_A@24
|
||||
DnsQuery_UTF8@24
|
||||
DnsQuery_W@24
|
||||
DnsQueryConfig@24
|
||||
DnsRecordCompare@8
|
||||
DnsRecordCopyEx@12
|
||||
DnsRecordListFree@8
|
||||
DnsRecordSetCompare@16
|
||||
DnsRecordSetCopyEx@12
|
||||
DnsRecordSetDetach@4
|
||||
DnsReleaseContextHandle@4
|
||||
DnsReplaceRecordSetA@20
|
||||
DnsReplaceRecordSetUTF8@20
|
||||
DnsReplaceRecordSetW@20
|
||||
DnsValidateName_A@8
|
||||
DnsValidateName_UTF8@8
|
||||
DnsValidateName_W@8
|
||||
DnsWriteQuestionToBuffer_UTF8@24
|
||||
DnsWriteQuestionToBuffer_W@24
|
||||
|
|
@ -1,10 +0,0 @@
|
|||
; from DirectX 6.1
|
||||
LIBRARY DPLAYX.dll
|
||||
EXPORTS
|
||||
DirectPlayCreate@12
|
||||
DirectPlayEnumerate@8
|
||||
DirectPlayEnumerateA@8
|
||||
DirectPlayEnumerateW@8
|
||||
DirectPlayLobbyCreateA@20
|
||||
DirectPlayLobbyCreateW@20
|
||||
gdwDPlaySPRefCount
|
|
@ -1,18 +0,0 @@
|
|||
; from DirectX 6.1
|
||||
LIBRARY DSETUP.dll
|
||||
EXPORTS
|
||||
DirectXDeviceDriverSetupA@16
|
||||
DirectXDeviceDriverSetupW@16
|
||||
DirectXLoadString@12
|
||||
DirectXRegisterApplicationA@8
|
||||
DirectXRegisterApplicationW@8
|
||||
DirectXSetupA@12
|
||||
DirectXSetupCallback@20
|
||||
DirectXSetupGetFileVersion
|
||||
DirectXSetupGetVersion@8
|
||||
DirectXSetupIsEng@0
|
||||
DirectXSetupIsJapan@0
|
||||
DirectXSetupIsJapanNec@0
|
||||
DirectXSetupSetCallback@4
|
||||
DirectXSetupW@12
|
||||
DirectXUnRegisterApplication@8
|
|
@ -1,9 +0,0 @@
|
|||
; from DirectX 6.1
|
||||
LIBRARY DSOUND.dll
|
||||
EXPORTS
|
||||
DirectSoundCaptureCreate@12
|
||||
DirectSoundCaptureEnumerateA@8
|
||||
DirectSoundCaptureEnumerateW@8
|
||||
DirectSoundCreate@12
|
||||
DirectSoundEnumerateA@8
|
||||
DirectSoundEnumerateW@8
|
|
@ -1,460 +0,0 @@
|
|||
/*
|
||||
DXGUID.C
|
||||
|
||||
Author: Daniel Guerrero Miralles (daguer@geocities.com)
|
||||
Version: 1.0.0
|
||||
Date: April 27, 1999
|
||||
|
||||
ABSTRACT:
|
||||
Source code to generate a library with DirectX GUIDs. For DirectX 6.1
|
||||
and earlier versions.
|
||||
|
||||
LEGAL INFORMATION:
|
||||
This is PUBLIC DOMAIN source code. The source code in this file is
|
||||
provided "as is", without any warranty, including but not limited to,
|
||||
fitness for any particular purpose.
|
||||
|
||||
REMARKS:
|
||||
- This file may have more GUIDs than the original one. It was made by
|
||||
recollecting GUIDs defined in the DirectX header files.
|
||||
|
||||
TODO:
|
||||
Nothing.
|
||||
*/
|
||||
|
||||
#if defined(__LCC__) || defined(__GNUC__)
|
||||
#define INITGUID 1
|
||||
#include <windows.h>
|
||||
#else
|
||||
#include <basetyps.h>
|
||||
#endif
|
||||
|
||||
/////////////////////////////////////////////////////////////////////
|
||||
// File D3D.H:
|
||||
/////////////////////////////////////////////////////////////////////
|
||||
|
||||
DEFINE_GUID(IID_IDirect3D,0x3BBA0080,0x2421,0x11CF,0xA3,0x1A,0x00,0xAA,0x00,0xB9,0x33,0x56);
|
||||
DEFINE_GUID(IID_IDirect3D2,0x6aae1ec1,0x662a,0x11d0,0x88,0x9d,0x00,0xaa,0x00,0xbb,0xb7,0x6a);
|
||||
DEFINE_GUID(IID_IDirect3D3,0xbb223240,0xe72b,0x11d0,0xa9,0xb4,0x00,0xaa,0x00,0xc0,0x99,0x3e);
|
||||
DEFINE_GUID(IID_IDirect3DRampDevice,0xF2086B20,0x259F,0x11CF,0xA3,0x1A,0x00,0xAA,0x00,0xB9,0x33,0x56);
|
||||
DEFINE_GUID(IID_IDirect3DRGBDevice,0xA4665C60,0x2673,0x11CF,0xA3,0x1A,0x00,0xAA,0x00,0xB9,0x33,0x56);
|
||||
DEFINE_GUID(IID_IDirect3DHALDevice,0x84E63dE0,0x46AA,0x11CF,0x81,0x6F,0x00,0x00,0xC0,0x20,0x15,0x6E);
|
||||
DEFINE_GUID(IID_IDirect3DMMXDevice,0x881949a1,0xd6f3,0x11d0,0x89,0xab,0x00,0xa0,0xc9,0x05,0x41,0x29);
|
||||
DEFINE_GUID(IID_IDirect3DRefDevice,0x50936643,0x13e9,0x11d1,0x89,0xaa,0x0,0xa0,0xc9,0x5,0x41,0x29);
|
||||
DEFINE_GUID(IID_IDirect3DNullDevice,0x8767df22,0xbacc,0x11d1,0x89,0x69,0x0,0xa0,0xc9,0x6,0x29,0xa8);
|
||||
DEFINE_GUID(IID_IDirect3DDevice,0x64108800,0x957d,0X11d0,0x89,0xab,0x00,0xa0,0xc9,0x05,0x41,0x29);
|
||||
DEFINE_GUID(IID_IDirect3DDevice2,0x93281501,0x8cf8,0x11d0,0x89,0xab,0x0,0xa0,0xc9,0x5,0x41,0x29);
|
||||
DEFINE_GUID(IID_IDirect3DDevice3,0xb0ab3b60,0x33d7,0x11d1,0xa9,0x81,0x0,0xc0,0x4f,0xd7,0xb1,0x74);
|
||||
DEFINE_GUID(IID_IDirect3DTexture,0x2CDCD9E0,0x25A0,0x11CF,0xA3,0x1A,0x00,0xAA,0x00,0xB9,0x33,0x56);
|
||||
DEFINE_GUID(IID_IDirect3DTexture2,0x93281502,0x8cf8,0x11d0,0x89,0xab,0x0,0xa0,0xc9,0x5,0x41,0x29);
|
||||
DEFINE_GUID(IID_IDirect3DLight,0x4417C142,0x33AD,0x11CF,0x81,0x6F,0x00,0x00,0xC0,0x20,0x15,0x6E);
|
||||
DEFINE_GUID(IID_IDirect3DMaterial,0x4417C144,0x33AD,0x11CF,0x81,0x6F,0x00,0x00,0xC0,0x20,0x15,0x6E);
|
||||
DEFINE_GUID(IID_IDirect3DMaterial2,0x93281503,0x8cf8,0x11d0,0x89,0xab,0x0,0xa0,0xc9,0x5,0x41,0x29);
|
||||
DEFINE_GUID(IID_IDirect3DMaterial3,0xca9c46f4,0xd3c5,0x11d1,0xb7,0x5a,0x0,0x60,0x8,0x52,0xb3,0x12);
|
||||
DEFINE_GUID(IID_IDirect3DExecuteBuffer,0x4417C145,0x33AD,0x11CF,0x81,0x6F,0x00,0x00,0xC0,0x20,0x15,0x6E);
|
||||
DEFINE_GUID(IID_IDirect3DViewport,0x4417C146,0x33AD,0x11CF,0x81,0x6F,0x00,0x00,0xC0,0x20,0x15,0x6E);
|
||||
DEFINE_GUID(IID_IDirect3DViewport2,0x93281500,0x8cf8,0x11d0,0x89,0xab,0x0,0xa0,0xc9,0x5,0x41,0x29);
|
||||
DEFINE_GUID(IID_IDirect3DViewport3,0xb0ab3b61,0x33d7,0x11d1,0xa9,0x81,0x0,0xc0,0x4f,0xd7,0xb1,0x74);
|
||||
DEFINE_GUID(IID_IDirect3DVertexBuffer,0x7a503555,0x4a83,0x11d1,0xa5,0xdb,0x0,0xa0,0xc9,0x3,0x67,0xf8);
|
||||
|
||||
/////////////////////////////////////////////////////////////////////
|
||||
// File D3DRM.H:
|
||||
/////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
DEFINE_GUID(IID_IDirect3DRM,0x2bc49361,0x8327,0x11cf,0xac,0x4a,0x0,0x0,0xc0,0x38,0x25,0xa1);
|
||||
DEFINE_GUID(IID_IDirect3DRM2,0x4516ecc8,0x8f20,0x11d0,0x9b,0x6d,0x00,0x00,0xc0,0x78,0x1b,0xc3);
|
||||
DEFINE_GUID(IID_IDirect3DRM3,0x4516ec83,0x8f20,0x11d0,0x9b,0x6d,0x00,0x00,0xc0,0x78,0x1b,0xc3);
|
||||
DEFINE_GUID(CLSID_CDirect3DRM,0x4516ec41,0x8f20,0x11d0,0x9b,0x6d,0x00,0x00,0xc0,0x78,0x1b,0xc3);
|
||||
|
||||
/////////////////////////////////////////////////////////////////////
|
||||
// File D3DRMOBJ.H:
|
||||
/////////////////////////////////////////////////////////////////////
|
||||
|
||||
DEFINE_GUID(CLSID_CDirect3DRMDevice,0x4fa3568e,0x623f,0x11cf,0xac,0x4a,0x0,0x0,0xc0,0x38,0x25,0xa1);
|
||||
DEFINE_GUID(CLSID_CDirect3DRMViewport,0x4fa3568f,0x623f,0x11cf,0xac,0x4a,0x0,0x0,0xc0,0x38,0x25,0xa1);
|
||||
DEFINE_GUID(CLSID_CDirect3DRMFrame,0x4fa35690,0x623f,0x11cf,0xac,0x4a,0x0,0x0,0xc0,0x38,0x25,0xa1);
|
||||
DEFINE_GUID(CLSID_CDirect3DRMMesh,0x4fa35691,0x623f,0x11cf,0xac,0x4a,0x0,0x0,0xc0,0x38,0x25,0xa1);
|
||||
DEFINE_GUID(CLSID_CDirect3DRMMeshBuilder,0x4fa35692,0x623f,0x11cf,0xac,0x4a,0x0,0x0,0xc0,0x38,0x25,0xa1);
|
||||
DEFINE_GUID(CLSID_CDirect3DRMFace,0x4fa35693,0x623f,0x11cf,0xac,0x4a,0x0,0x0,0xc0,0x38,0x25,0xa1);
|
||||
DEFINE_GUID(CLSID_CDirect3DRMLight,0x4fa35694,0x623f,0x11cf,0xac,0x4a,0x0,0x0,0xc0,0x38,0x25,0xa1);
|
||||
DEFINE_GUID(CLSID_CDirect3DRMTexture,0x4fa35695,0x623f,0x11cf,0xac,0x4a,0x0,0x0,0xc0,0x38,0x25,0xa1);
|
||||
DEFINE_GUID(CLSID_CDirect3DRMWrap,0x4fa35696,0x623f,0x11cf,0xac,0x4a,0x0,0x0,0xc0,0x38,0x25,0xa1);
|
||||
DEFINE_GUID(CLSID_CDirect3DRMMaterial,0x4fa35697,0x623f,0x11cf,0xac,0x4a,0x0,0x0,0xc0,0x38,0x25,0xa1);
|
||||
DEFINE_GUID(CLSID_CDirect3DRMAnimation,0x4fa35698,0x623f,0x11cf,0xac,0x4a,0x0,0x0,0xc0,0x38,0x25,0xa1);
|
||||
DEFINE_GUID(CLSID_CDirect3DRMAnimationSet,0x4fa35699,0x623f,0x11cf,0xac,0x4a,0x0,0x0,0xc0,0x38,0x25,0xa1);
|
||||
DEFINE_GUID(CLSID_CDirect3DRMUserVisual,0x4fa3569a,0x623f,0x11cf,0xac,0x4a,0x0,0x0,0xc0,0x38,0x25,0xa1);
|
||||
DEFINE_GUID(CLSID_CDirect3DRMShadow,0x4fa3569b,0x623f,0x11cf,0xac,0x4a,0x0,0x0,0xc0,0x38,0x25,0xa1);
|
||||
DEFINE_GUID(CLSID_CDirect3DRMViewportInterpolator,0xde9eaa1,0x3b84,0x11d0,0x9b,0x6d,0x0,0x0,0xc0,0x78,0x1b,0xc3);
|
||||
DEFINE_GUID(CLSID_CDirect3DRMFrameInterpolator,0xde9eaa2,0x3b84,0x11d0,0x9b,0x6d,0x0,0x0,0xc0,0x78,0x1b,0xc3);
|
||||
DEFINE_GUID(CLSID_CDirect3DRMMeshInterpolator,0xde9eaa3,0x3b84,0x11d0,0x9b,0x6d,0x0,0x0,0xc0,0x78,0x1b,0xc3);
|
||||
DEFINE_GUID(CLSID_CDirect3DRMLightInterpolator,0xde9eaa6,0x3b84,0x11d0,0x9b,0x6d,0x0,0x0,0xc0,0x78,0x1b,0xc3);
|
||||
DEFINE_GUID(CLSID_CDirect3DRMMaterialInterpolator,0xde9eaa7,0x3b84,0x11d0,0x9b,0x6d,0x0,0x0,0xc0,0x78,0x1b,0xc3);
|
||||
DEFINE_GUID(CLSID_CDirect3DRMTextureInterpolator,0xde9eaa8,0x3b84,0x11d0,0x9b,0x6d,0x0,0x0,0xc0,0x78,0x1b,0xc3);
|
||||
DEFINE_GUID(CLSID_CDirect3DRMProgressiveMesh,0x4516ec40,0x8f20,0x11d0,0x9b,0x6d,0x00,0x00,0xc0,0x78,0x1b,0xc3);
|
||||
DEFINE_GUID(CLSID_CDirect3DRMClippedVisual,0x5434e72d,0x6d66,0x11d1,0xbb,0xb,0x0,0x0,0xf8,0x75,0x86,0x5a);
|
||||
DEFINE_GUID(IID_IDirect3DRMObject,0xeb16cb00,0xd271,0x11ce,0xac,0x48,0x0,0x0,0xc0,0x38,0x25,0xa1);
|
||||
DEFINE_GUID(IID_IDirect3DRMObject2,0x4516ec7c,0x8f20,0x11d0,0x9b,0x6d,0x00,0x00,0xc0,0x78,0x1b,0xc3);
|
||||
DEFINE_GUID(IID_IDirect3DRMDevice,0xe9e19280,0x6e05,0x11cf,0xac,0x4a,0x0,0x0,0xc0,0x38,0x25,0xa1);
|
||||
DEFINE_GUID(IID_IDirect3DRMDevice2,0x4516ec78,0x8f20,0x11d0,0x9b,0x6d,0x00,0x00,0xc0,0x78,0x1b,0xc3);
|
||||
DEFINE_GUID(IID_IDirect3DRMDevice3,0x549f498b,0xbfeb,0x11d1,0x8e,0xd8,0x0,0xa0,0xc9,0x67,0xa4,0x82);
|
||||
DEFINE_GUID(IID_IDirect3DRMViewport,0xeb16cb02,0xd271,0x11ce,0xac,0x48,0x0,0x0,0xc0,0x38,0x25,0xa1);
|
||||
DEFINE_GUID(IID_IDirect3DRMViewport2,0x4a1b1be6,0xbfed,0x11d1,0x8e,0xd8,0x0,0xa0,0xc9,0x67,0xa4,0x82);
|
||||
DEFINE_GUID(IID_IDirect3DRMFrame,0xeb16cb03,0xd271,0x11ce,0xac,0x48,0x0,0x0,0xc0,0x38,0x25,0xa1);
|
||||
DEFINE_GUID(IID_IDirect3DRMFrame2,0xc3dfbd60,0x3988,0x11d0,0x9e,0xc2,0x0,0x0,0xc0,0x29,0x1a,0xc3);
|
||||
DEFINE_GUID(IID_IDirect3DRMFrame3,0xff6b7f70,0xa40e,0x11d1,0x91,0xf9,0x0,0x0,0xf8,0x75,0x8e,0x66);
|
||||
DEFINE_GUID(IID_IDirect3DRMVisual,0xeb16cb04,0xd271,0x11ce,0xac,0x48,0x0,0x0,0xc0,0x38,0x25,0xa1);
|
||||
DEFINE_GUID(IID_IDirect3DRMMesh,0xa3a80d01,0x6e12,0x11cf,0xac,0x4a,0x0,0x0,0xc0,0x38,0x25,0xa1);
|
||||
DEFINE_GUID(IID_IDirect3DRMMeshBuilder,0xa3a80d02,0x6e12,0x11cf,0xac,0x4a,0x0,0x0,0xc0,0x38,0x25,0xa1);
|
||||
DEFINE_GUID(IID_IDirect3DRMMeshBuilder2,0x4516ec77,0x8f20,0x11d0,0x9b,0x6d,0x0,0x0,0xc0,0x78,0x1b,0xc3);
|
||||
DEFINE_GUID(IID_IDirect3DRMMeshBuilder3,0x4516ec82,0x8f20,0x11d0,0x9b,0x6d,0x00,0x00,0xc0,0x78,0x1b,0xc3);
|
||||
DEFINE_GUID(IID_IDirect3DRMFace,0xeb16cb07,0xd271,0x11ce,0xac,0x48,0x0,0x0,0xc0,0x38,0x25,0xa1);
|
||||
DEFINE_GUID(IID_IDirect3DRMFace2,0x4516ec81,0x8f20,0x11d0,0x9b,0x6d,0x00,0x00,0xc0,0x78,0x1b,0xc3);
|
||||
DEFINE_GUID(IID_IDirect3DRMLight,0xeb16cb08,0xd271,0x11ce,0xac,0x48,0x0,0x0,0xc0,0x38,0x25,0xa1);
|
||||
DEFINE_GUID(IID_IDirect3DRMTexture,0xeb16cb09,0xd271,0x11ce,0xac,0x48,0x0,0x0,0xc0,0x38,0x25,0xa1);
|
||||
DEFINE_GUID(IID_IDirect3DRMTexture2,0x120f30c0,0x1629,0x11d0,0x94,0x1c,0x0,0x80,0xc8,0xc,0xfa,0x7b);
|
||||
DEFINE_GUID(IID_IDirect3DRMTexture3,0xff6b7f73,0xa40e,0x11d1,0x91,0xf9,0x0,0x0,0xf8,0x75,0x8e,0x66);
|
||||
DEFINE_GUID(IID_IDirect3DRMWrap,0xeb16cb0a,0xd271,0x11ce,0xac,0x48,0x0,0x0,0xc0,0x38,0x25,0xa1);
|
||||
DEFINE_GUID(IID_IDirect3DRMMaterial,0xeb16cb0b,0xd271,0x11ce,0xac,0x48,0x0,0x0,0xc0,0x38,0x25,0xa1);
|
||||
DEFINE_GUID(IID_IDirect3DRMMaterial2,0xff6b7f75,0xa40e,0x11d1,0x91,0xf9,0x0,0x0,0xf8,0x75,0x8e,0x66);
|
||||
DEFINE_GUID(IID_IDirect3DRMAnimation,0xeb16cb0d,0xd271,0x11ce,0xac,0x48,0x0,0x0,0xc0,0x38,0x25,0xa1);
|
||||
DEFINE_GUID(IID_IDirect3DRMAnimation2,0xff6b7f77,0xa40e,0x11d1,0x91,0xf9,0x0,0x0,0xf8,0x75,0x8e,0x66);
|
||||
DEFINE_GUID(IID_IDirect3DRMAnimationSet,0xeb16cb0e,0xd271,0x11ce,0xac,0x48,0x0,0x0,0xc0,0x38,0x25,0xa1);
|
||||
DEFINE_GUID(IID_IDirect3DRMAnimationSet2,0xff6b7f79,0xa40e,0x11d1,0x91,0xf9,0x0,0x0,0xf8,0x75,0x8e,0x66);
|
||||
DEFINE_GUID(IID_IDirect3DRMObjectArray,0x242f6bc2,0x3849,0x11d0,0x9b,0x6d,0x0,0x0,0xc0,0x78,0x1b,0xc3);
|
||||
DEFINE_GUID(IID_IDirect3DRMDeviceArray,0xeb16cb10,0xd271,0x11ce,0xac,0x48,0x0,0x0,0xc0,0x38,0x25,0xa1);
|
||||
DEFINE_GUID(IID_IDirect3DRMViewportArray,0xeb16cb11,0xd271,0x11ce,0xac,0x48,0x0,0x0,0xc0,0x38,0x25,0xa1);
|
||||
DEFINE_GUID(IID_IDirect3DRMFrameArray,0xeb16cb12,0xd271,0x11ce,0xac,0x48,0x0,0x0,0xc0,0x38,0x25,0xa1);
|
||||
DEFINE_GUID(IID_IDirect3DRMVisualArray,0xeb16cb13,0xd271,0x11ce,0xac,0x48,0x0,0x0,0xc0,0x38,0x25,0xa1);
|
||||
DEFINE_GUID(IID_IDirect3DRMLightArray,0xeb16cb14,0xd271,0x11ce,0xac,0x48,0x0,0x0,0xc0,0x38,0x25,0xa1);
|
||||
DEFINE_GUID(IID_IDirect3DRMPickedArray,0xeb16cb16,0xd271,0x11ce,0xac,0x48,0x0,0x0,0xc0,0x38,0x25,0xa1);
|
||||
DEFINE_GUID(IID_IDirect3DRMFaceArray,0xeb16cb17,0xd271,0x11ce,0xac,0x48,0x0,0x0,0xc0,0x38,0x25,0xa1);
|
||||
DEFINE_GUID(IID_IDirect3DRMAnimationArray,0xd5f1cae0,0x4bd7,0x11d1,0xb9,0x74,0x0,0x60,0x8,0x3e,0x45,0xf3);
|
||||
DEFINE_GUID(IID_IDirect3DRMUserVisual,0x59163de0,0x6d43,0x11cf,0xac,0x4a,0x0,0x0,0xc0,0x38,0x25,0xa1);
|
||||
DEFINE_GUID(IID_IDirect3DRMShadow,0xaf359780,0x6ba3,0x11cf,0xac,0x4a,0x0,0x0,0xc0,0x38,0x25,0xa1);
|
||||
DEFINE_GUID(IID_IDirect3DRMShadow2,0x86b44e25,0x9c82,0x11d1,0xbb,0xb,0x0,0xa0,0xc9,0x81,0xa0,0xa6);
|
||||
DEFINE_GUID(IID_IDirect3DRMInterpolator,0x242f6bc1,0x3849,0x11d0,0x9b,0x6d,0x0,0x0,0xc0,0x78,0x1b,0xc3);
|
||||
DEFINE_GUID(IID_IDirect3DRMProgressiveMesh,0x4516ec79,0x8f20,0x11d0,0x9b,0x6d,0x0,0x0,0xc0,0x78,0x1b,0xc3);
|
||||
DEFINE_GUID(IID_IDirect3DRMPicked2Array,0x4516ec7b,0x8f20,0x11d0,0x9b,0x6d,0x0,0x0,0xc0,0x78,0x1b,0xc3);
|
||||
DEFINE_GUID(IID_IDirect3DRMClippedVisual,0x5434e733,0x6d66,0x11d1,0xbb,0xb,0x0,0x0,0xf8,0x75,0x86,0x5a);
|
||||
|
||||
/////////////////////////////////////////////////////////////////////
|
||||
// File D3DRMWIN.H:
|
||||
/////////////////////////////////////////////////////////////////////
|
||||
|
||||
DEFINE_GUID(IID_IDirect3DRMWinDevice,0xc5016cc0,0xd273,0x11ce,0xac,0x48,0x0,0x0,0xc0,0x38,0x25,0xa1);
|
||||
|
||||
/////////////////////////////////////////////////////////////////////
|
||||
// File DDRAW.H:
|
||||
/////////////////////////////////////////////////////////////////////
|
||||
|
||||
DEFINE_GUID(CLSID_DirectDraw,0xD7B70EE0,0x4340,0x11CF,0xB0,0x63,0x00,0x20,0xAF,0xC2,0xCD,0x35);
|
||||
DEFINE_GUID(CLSID_DirectDrawClipper,0x593817A0,0x7DB3,0x11CF,0xA2,0xDE,0x00,0xAA,0x00,0xb9,0x33,0x56);
|
||||
DEFINE_GUID(IID_IDirectDraw,0x6C14DB80,0xA733,0x11CE,0xA5,0x21,0x00,0x20,0xAF,0x0B,0xE5,0x60);
|
||||
DEFINE_GUID(IID_IDirectDraw2,0xB3A6F3E0,0x2B43,0x11CF,0xA2,0xDE,0x00,0xAA,0x00,0xB9,0x33,0x56);
|
||||
DEFINE_GUID(IID_IDirectDraw4,0x9c59509a,0x39bd,0x11d1,0x8c,0x4a,0x00,0xc0,0x4f,0xd9,0x30,0xc5);
|
||||
DEFINE_GUID(IID_IDirectDrawSurface,0x6C14DB81,0xA733,0x11CE,0xA5,0x21,0x00,0x20,0xAF,0x0B,0xE5,0x60);
|
||||
DEFINE_GUID(IID_IDirectDrawSurface2,0x57805885,0x6eec,0x11cf,0x94,0x41,0xa8,0x23,0x03,0xc1,0x0e,0x27);
|
||||
DEFINE_GUID(IID_IDirectDrawSurface3,0xDA044E00,0x69B2,0x11D0,0xA1,0xD5,0x00,0xAA,0x00,0xB8,0xDF,0xBB);
|
||||
DEFINE_GUID(IID_IDirectDrawSurface4,0x0B2B8630,0xAD35,0x11D0,0x8E,0xA6,0x00,0x60,0x97,0x97,0xEA,0x5B);
|
||||
DEFINE_GUID(IID_IDirectDrawPalette,0x6C14DB84,0xA733,0x11CE,0xA5,0x21,0x00,0x20,0xAF,0x0B,0xE5,0x60);
|
||||
DEFINE_GUID(IID_IDirectDrawClipper,0x6C14DB85,0xA733,0x11CE,0xA5,0x21,0x00,0x20,0xAF,0x0B,0xE5,0x60);
|
||||
DEFINE_GUID(IID_IDirectDrawColorControl,0x4B9F0EE0,0x0D7E,0x11D0,0x9B,0x06,0x00,0xA0,0xC9,0x03,0xA3,0xB8);
|
||||
DEFINE_GUID(IID_IDirectDrawGammaControl,0x69C11C3E,0xB46B,0x11D1,0xAD,0x7A,0x00,0xC0,0x4F,0xC2,0x9B,0x4E);
|
||||
|
||||
/////////////////////////////////////////////////////////////////////
|
||||
// File DINPUT.H:
|
||||
/////////////////////////////////////////////////////////////////////
|
||||
|
||||
DEFINE_GUID(CLSID_DirectInput,0x25E609E0,0xB259,0x11CF,0xBF,0xC7,0x44,0x45,0x53,0x54,0x00,0x00);
|
||||
DEFINE_GUID(CLSID_DirectInputDevice,0x25E609E1,0xB259,0x11CF,0xBF,0xC7,0x44,0x45,0x53,0x54,0x00,0x00);
|
||||
DEFINE_GUID(IID_IDirectInputA,0x89521360,0xAA8A,0x11CF,0xBF,0xC7,0x44,0x45,0x53,0x54,0x00,0x00);
|
||||
DEFINE_GUID(IID_IDirectInputW,0x89521361,0xAA8A,0x11CF,0xBF,0xC7,0x44,0x45,0x53,0x54,0x00,0x00);
|
||||
DEFINE_GUID(IID_IDirectInput2A,0x5944E662,0xAA8A,0x11CF,0xBF,0xC7,0x44,0x45,0x53,0x54,0x00,0x00);
|
||||
DEFINE_GUID(IID_IDirectInput2W,0x5944E663,0xAA8A,0x11CF,0xBF,0xC7,0x44,0x45,0x53,0x54,0x00,0x00);
|
||||
DEFINE_GUID(IID_IDirectInputDeviceA,0x5944E680,0xC92E,0x11CF,0xBF,0xC7,0x44,0x45,0x53,0x54,0x00,0x00);
|
||||
DEFINE_GUID(IID_IDirectInputDeviceW,0x5944E681,0xC92E,0x11CF,0xBF,0xC7,0x44,0x45,0x53,0x54,0x00,0x00);
|
||||
DEFINE_GUID(IID_IDirectInputDevice2A,0x5944E682,0xC92E,0x11CF,0xBF,0xC7,0x44,0x45,0x53,0x54,0x00,0x00);
|
||||
DEFINE_GUID(IID_IDirectInputDevice2W,0x5944E683,0xC92E,0x11CF,0xBF,0xC7,0x44,0x45,0x53,0x54,0x00,0x00);
|
||||
DEFINE_GUID(IID_IDirectInputEffect,0xE7E1F7C0,0x88D2,0x11D0,0x9A,0xD0,0x00,0xA0,0xC9,0xA0,0x6E,0x35);
|
||||
DEFINE_GUID(GUID_XAxis,0xA36D02E0,0xC9F3,0x11CF,0xBF,0xC7,0x44,0x45,0x53,0x54,0x00,0x00);
|
||||
DEFINE_GUID(GUID_YAxis,0xA36D02E1,0xC9F3,0x11CF,0xBF,0xC7,0x44,0x45,0x53,0x54,0x00,0x00);
|
||||
DEFINE_GUID(GUID_ZAxis,0xA36D02E2,0xC9F3,0x11CF,0xBF,0xC7,0x44,0x45,0x53,0x54,0x00,0x00);
|
||||
DEFINE_GUID(GUID_RxAxis,0xA36D02F4,0xC9F3,0x11CF,0xBF,0xC7,0x44,0x45,0x53,0x54,0x00,0x00);
|
||||
DEFINE_GUID(GUID_RyAxis,0xA36D02F5,0xC9F3,0x11CF,0xBF,0xC7,0x44,0x45,0x53,0x54,0x00,0x00);
|
||||
DEFINE_GUID(GUID_RzAxis,0xA36D02E3,0xC9F3,0x11CF,0xBF,0xC7,0x44,0x45,0x53,0x54,0x00,0x00);
|
||||
DEFINE_GUID(GUID_Slider,0xA36D02E4,0xC9F3,0x11CF,0xBF,0xC7,0x44,0x45,0x53,0x54,0x00,0x00);
|
||||
DEFINE_GUID(GUID_Button,0xA36D02F0,0xC9F3,0x11CF,0xBF,0xC7,0x44,0x45,0x53,0x54,0x00,0x00);
|
||||
DEFINE_GUID(GUID_Key,0x55728220,0xD33C,0x11CF,0xBF,0xC7,0x44,0x45,0x53,0x54,0x00,0x00);
|
||||
DEFINE_GUID(GUID_POV,0xA36D02F2,0xC9F3,0x11CF,0xBF,0xC7,0x44,0x45,0x53,0x54,0x00,0x00);
|
||||
DEFINE_GUID(GUID_Unknown,0xA36D02F3,0xC9F3,0x11CF,0xBF,0xC7,0x44,0x45,0x53,0x54,0x00,0x00);
|
||||
DEFINE_GUID(GUID_SysMouse,0x6F1D2B60,0xD5A0,0x11CF,0xBF,0xC7,0x44,0x45,0x53,0x54,0x00,0x00);
|
||||
DEFINE_GUID(GUID_SysKeyboard,0x6F1D2B61,0xD5A0,0x11CF,0xBF,0xC7,0x44,0x45,0x53,0x54,0x00,0x00);
|
||||
DEFINE_GUID(GUID_Joystick,0x6F1D2B70,0xD5A0,0x11CF,0xBF,0xC7,0x44,0x45,0x53,0x54,0x00,0x00);
|
||||
DEFINE_GUID(GUID_ConstantForce,0x13541C20,0x8E33,0x11D0,0x9A,0xD0,0x00,0xA0,0xC9,0xA0,0x6E,0x35);
|
||||
DEFINE_GUID(GUID_RampForce,0x13541C21,0x8E33,0x11D0,0x9A,0xD0,0x00,0xA0,0xC9,0xA0,0x6E,0x35);
|
||||
DEFINE_GUID(GUID_Square,0x13541C22,0x8E33,0x11D0,0x9A,0xD0,0x00,0xA0,0xC9,0xA0,0x6E,0x35);
|
||||
DEFINE_GUID(GUID_Sine,0x13541C23,0x8E33,0x11D0,0x9A,0xD0,0x00,0xA0,0xC9,0xA0,0x6E,0x35);
|
||||
DEFINE_GUID(GUID_Triangle,0x13541C24,0x8E33,0x11D0,0x9A,0xD0,0x00,0xA0,0xC9,0xA0,0x6E,0x35);
|
||||
DEFINE_GUID(GUID_SawtoothUp,0x13541C25,0x8E33,0x11D0,0x9A,0xD0,0x00,0xA0,0xC9,0xA0,0x6E,0x35);
|
||||
DEFINE_GUID(GUID_SawtoothDown,0x13541C26,0x8E33,0x11D0,0x9A,0xD0,0x00,0xA0,0xC9,0xA0,0x6E,0x35);
|
||||
DEFINE_GUID(GUID_Spring,0x13541C27,0x8E33,0x11D0,0x9A,0xD0,0x00,0xA0,0xC9,0xA0,0x6E,0x35);
|
||||
DEFINE_GUID(GUID_Damper,0x13541C28,0x8E33,0x11D0,0x9A,0xD0,0x00,0xA0,0xC9,0xA0,0x6E,0x35);
|
||||
DEFINE_GUID(GUID_Inertia,0x13541C29,0x8E33,0x11D0,0x9A,0xD0,0x00,0xA0,0xC9,0xA0,0x6E,0x35);
|
||||
DEFINE_GUID(GUID_Friction,0x13541C2A,0x8E33,0x11D0,0x9A,0xD0,0x00,0xA0,0xC9,0xA0,0x6E,0x35);
|
||||
DEFINE_GUID(GUID_CustomForce,0x13541C2B,0x8E33,0x11D0,0x9A,0xD0,0x00,0xA0,0xC9,0xA0,0x6E,0x35);
|
||||
|
||||
/////////////////////////////////////////////////////////////////////
|
||||
// File DMKSCTRL.H:
|
||||
/////////////////////////////////////////////////////////////////////
|
||||
|
||||
DEFINE_GUID(IID_IKsControl,0x28F54685,0x06FD,0x11D2,0xB2,0x7A,0x00,0xA0,0xC9,0x22,0x31,0x96);
|
||||
DEFINE_GUID(KSDATAFORMAT_SUBTYPE_MIDI,0x1D262760L,0xE957,0x11CF,0xA5,0xD6,0x28,0xDB,0x04,0xC1,0x00,0x00);
|
||||
DEFINE_GUID(KSDATAFORMAT_SUBTYPE_DIRECTMUSIC,0x1a82f8bc,0x3f8b,0x11d2,0xb7,0x74,0x00,0x60,0x08,0x33,0x16,0xc1);
|
||||
|
||||
/////////////////////////////////////////////////////////////////////
|
||||
// File DMUSICC.H:
|
||||
/////////////////////////////////////////////////////////////////////
|
||||
|
||||
DEFINE_GUID(IID_IReferenceClock,0x56a86897,0x0ad4,0x11ce,0xb0,0x3a,0x00,0x20,0xaf,0x0b,0xa7,0x70);
|
||||
DEFINE_GUID(CLSID_DirectMusic,0x636b9f10,0x0c7d,0x11d1,0x95,0xb2,0x00,0x20,0xaf,0xdc,0x74,0x21);
|
||||
DEFINE_GUID(CLSID_DirectMusicCollection,0x480ff4b0,0x28b2,0x11d1,0xbe,0xf7,0x0,0xc0,0x4f,0xbf,0x8f,0xef);
|
||||
DEFINE_GUID(CLSID_DirectMusicSynth,0x58C2B4D0,0x46E7,0x11D1,0x89,0xAC,0x00,0xA0,0xC9,0x05,0x41,0x29);
|
||||
DEFINE_GUID(IID_IDirectMusic,0x6536115a,0x7b2d,0x11d2,0xba,0x18,0x00,0x00,0xf8,0x75,0xac,0x12);
|
||||
DEFINE_GUID(IID_IDirectMusicBuffer,0xd2ac2878,0xb39b,0x11d1,0x87,0x4,0x0,0x60,0x8,0x93,0xb1,0xbd);
|
||||
DEFINE_GUID(IID_IDirectMusicPort,0x08f2d8c9,0x37c2,0x11d2,0xb9,0xf9,0x00,0x00,0xf8,0x75,0xac,0x12);
|
||||
DEFINE_GUID(IID_IDirectMusicThru,0xced153e7,0x3606,0x11d2,0xb9,0xf9,0x00,0x00,0xf8,0x75,0xac,0x12);
|
||||
DEFINE_GUID(IID_IDirectMusicPortDownload,0xd2ac287a,0xb39b,0x11d1,0x87,0x4,0x0,0x60,0x8,0x93,0xb1,0xbd);
|
||||
DEFINE_GUID(IID_IDirectMusicDownload,0xd2ac287b,0xb39b,0x11d1,0x87,0x4,0x0,0x60,0x8,0x93,0xb1,0xbd);
|
||||
DEFINE_GUID(IID_IDirectMusicCollection,0xd2ac287c,0xb39b,0x11d1,0x87,0x4,0x0,0x60,0x8,0x93,0xb1,0xbd);
|
||||
DEFINE_GUID(IID_IDirectMusicInstrument,0xd2ac287d,0xb39b,0x11d1,0x87,0x4,0x0,0x60,0x8,0x93,0xb1,0xbd);
|
||||
DEFINE_GUID(IID_IDirectMusicDownloadedInstrument,0xd2ac287e,0xb39b,0x11d1,0x87,0x4,0x0,0x60,0x8,0x93,0xb1,0xbd);
|
||||
DEFINE_GUID(GUID_DMUS_PROP_GM_Hardware,0x178f2f24,0xc364,0x11d1,0xa7,0x60,0x00,0x00,0xf8,0x75,0xac,0x12);
|
||||
DEFINE_GUID(GUID_DMUS_PROP_GS_Hardware,0x178f2f25,0xc364,0x11d1,0xa7,0x60,0x00,0x00,0xf8,0x75,0xac,0x12);
|
||||
DEFINE_GUID(GUID_DMUS_PROP_XG_Hardware,0x178f2f26,0xc364,0x11d1,0xa7,0x60,0x00,0x00,0xf8,0x75,0xac,0x12);
|
||||
DEFINE_GUID(GUID_DMUS_PROP_XG_Capable,0x6496aba1,0x61b0,0x11d2,0xaf,0xa6,0x0,0xaa,0x0,0x24,0xd8,0xb6);
|
||||
DEFINE_GUID(GUID_DMUS_PROP_GS_Capable,0x6496aba2,0x61b0,0x11d2,0xaf,0xa6,0x0,0xaa,0x0,0x24,0xd8,0xb6);
|
||||
DEFINE_GUID(GUID_DMUS_PROP_DLS1,0x178f2f27,0xc364,0x11d1,0xa7,0x60,0x00,0x00,0xf8,0x75,0xac,0x12);
|
||||
DEFINE_GUID(GUID_DMUS_PROP_SynthSink_DSOUND,0xaa97844,0xc877,0x11d1,0x87,0xc,0x0,0x60,0x8,0x93,0xb1,0xbd);
|
||||
DEFINE_GUID(GUID_DMUS_PROP_SynthSink_WAVE,0xaa97845,0xc877,0x11d1,0x87,0xc,0x0,0x60,0x8,0x93,0xb1,0xbd);
|
||||
DEFINE_GUID(GUID_DMUS_PROP_WriteLatency,0x268a0fa0,0x60f2,0x11d2,0xaf,0xa6,0x0,0xaa,0x0,0x24,0xd8,0xb6);
|
||||
DEFINE_GUID(GUID_DMUS_PROP_WritePeriod,0x268a0fa1,0x60f2,0x11d2,0xaf,0xa6,0x0,0xaa,0x0,0x24,0xd8,0xb6);
|
||||
DEFINE_GUID(GUID_DMUS_PROP_MemorySize,0x178f2f28,0xc364,0x11d1,0xa7,0x60,0x00,0x00,0xf8,0x75,0xac,0x12);
|
||||
DEFINE_GUID(GUID_DMUS_PROP_WavesReverb,0x4cb5622,0x32e5,0x11d2,0xaf,0xa6,0x0,0xaa,0x0,0x24,0xd8,0xb6);
|
||||
DEFINE_GUID(GUID_DMUS_PROP_Effects,0xcda8d611,0x684a,0x11d2,0x87,0x1e,0x0,0x60,0x8,0x93,0xb1,0xbd);
|
||||
DEFINE_GUID(GUID_DMUS_PROP_LegacyCaps,0xcfa7cdc2,0x00a1,0x11d2,0xaa,0xd5,0x00,0x00,0xf8,0x75,0xac,0x12);
|
||||
DEFINE_GUID(GUID_DMUS_PROP_Volume,0xfedfae25L,0xe46e,0x11d1,0xaa,0xce,0x00,0x00,0xf8,0x75,0xac,0x12);
|
||||
|
||||
/////////////////////////////////////////////////////////////////////
|
||||
// File DMUSICI.H:
|
||||
/////////////////////////////////////////////////////////////////////
|
||||
|
||||
DEFINE_GUID(CLSID_DirectMusicPerformance,0xd2ac2881,0xb39b,0x11d1,0x87,0x4,0x0,0x60,0x8,0x93,0xb1,0xbd);
|
||||
DEFINE_GUID(CLSID_DirectMusicSegment,0xd2ac2882,0xb39b,0x11d1,0x87,0x4,0x0,0x60,0x8,0x93,0xb1,0xbd);
|
||||
DEFINE_GUID(CLSID_DirectMusicSegmentState,0xd2ac2883,0xb39b,0x11d1,0x87,0x4,0x0,0x60,0x8,0x93,0xb1,0xbd);
|
||||
DEFINE_GUID(CLSID_DirectMusicGraph,0xd2ac2884,0xb39b,0x11d1,0x87,0x4,0x0,0x60,0x8,0x93,0xb1,0xbd);
|
||||
DEFINE_GUID(CLSID_DirectMusicTempoTrack,0xd2ac2885,0xb39b,0x11d1,0x87,0x4,0x0,0x60,0x8,0x93,0xb1,0xbd);
|
||||
DEFINE_GUID(CLSID_DirectMusicSeqTrack,0xd2ac2886,0xb39b,0x11d1,0x87,0x4,0x0,0x60,0x8,0x93,0xb1,0xbd);
|
||||
DEFINE_GUID(CLSID_DirectMusicSysExTrack,0xd2ac2887,0xb39b,0x11d1,0x87,0x4,0x0,0x60,0x8,0x93,0xb1,0xbd);
|
||||
DEFINE_GUID(CLSID_DirectMusicTimeSigTrack,0xd2ac2888,0xb39b,0x11d1,0x87,0x4,0x0,0x60,0x8,0x93,0xb1,0xbd);
|
||||
DEFINE_GUID(CLSID_DirectMusicStyle,0xd2ac288a,0xb39b,0x11d1,0x87,0x4,0x0,0x60,0x8,0x93,0xb1,0xbd);
|
||||
DEFINE_GUID(CLSID_DirectMusicChordTrack,0xd2ac288b,0xb39b,0x11d1,0x87,0x4,0x0,0x60,0x8,0x93,0xb1,0xbd);
|
||||
DEFINE_GUID(CLSID_DirectMusicCommandTrack,0xd2ac288c,0xb39b,0x11d1,0x87,0x4,0x0,0x60,0x8,0x93,0xb1,0xbd);
|
||||
DEFINE_GUID(CLSID_DirectMusicStyleTrack,0xd2ac288d,0xb39b,0x11d1,0x87,0x4,0x0,0x60,0x8,0x93,0xb1,0xbd);
|
||||
DEFINE_GUID(CLSID_DirectMusicMotifTrack,0xd2ac288e,0xb39b,0x11d1,0x87,0x4,0x0,0x60,0x8,0x93,0xb1,0xbd);
|
||||
DEFINE_GUID(CLSID_DirectMusicChordMap,0xd2ac288f,0xb39b,0x11d1,0x87,0x4,0x0,0x60,0x8,0x93,0xb1,0xbd);
|
||||
DEFINE_GUID(CLSID_DirectMusicComposer,0xd2ac2890,0xb39b,0x11d1,0x87,0x4,0x0,0x60,0x8,0x93,0xb1,0xbd);
|
||||
DEFINE_GUID(CLSID_DirectMusicSignPostTrack,0xf17e8672,0xc3b4,0x11d1,0x87,0xb,0x0,0x60,0x8,0x93,0xb1,0xbd);
|
||||
DEFINE_GUID(CLSID_DirectMusicLoader,0xd2ac2892,0xb39b,0x11d1,0x87,0x4,0x0,0x60,0x8,0x93,0xb1,0xbd);
|
||||
DEFINE_GUID(CLSID_DirectMusicBandTrack,0xd2ac2894,0xb39b,0x11d1,0x87,0x4,0x0,0x60,0x8,0x93,0xb1,0xbd);
|
||||
DEFINE_GUID(CLSID_DirectMusicBand,0x79ba9e00,0xb6ee,0x11d1,0x86,0xbe,0x0,0xc0,0x4f,0xbf,0x8f,0xef);
|
||||
DEFINE_GUID(CLSID_DirectMusicChordMapTrack,0xd2ac2896,0xb39b,0x11d1,0x87,0x4,0x0,0x60,0x8,0x93,0xb1,0xbd);
|
||||
DEFINE_GUID(CLSID_DirectMusicMuteTrack,0xd2ac2898,0xb39b,0x11d1,0x87,0x4,0x0,0x60,0x8,0x93,0xb1,0xbd);
|
||||
DEFINE_GUID(GUID_DirectMusicAllTypes,0xd2ac2893,0xb39b,0x11d1,0x87,0x4,0x0,0x60,0x8,0x93,0xb1,0xbd);
|
||||
DEFINE_GUID(GUID_NOTIFICATION_SEGMENT,0xd2ac2899,0xb39b,0x11d1,0x87,0x4,0x0,0x60,0x8,0x93,0xb1,0xbd);
|
||||
DEFINE_GUID(GUID_NOTIFICATION_PERFORMANCE,0x81f75bc5,0x4e5d,0x11d2,0xbc,0xc7,0x0,0xa0,0xc9,0x22,0xe6,0xeb);
|
||||
DEFINE_GUID(GUID_NOTIFICATION_MEASUREANDBEAT,0xd2ac289a,0xb39b,0x11d1,0x87,0x4,0x0,0x60,0x8,0x93,0xb1,0xbd);
|
||||
DEFINE_GUID(GUID_NOTIFICATION_CHORD,0xd2ac289b,0xb39b,0x11d1,0x87,0x4,0x0,0x60,0x8,0x93,0xb1,0xbd);
|
||||
DEFINE_GUID(GUID_NOTIFICATION_COMMAND,0xd2ac289c,0xb39b,0x11d1,0x87,0x4,0x0,0x60,0x8,0x93,0xb1,0xbd);
|
||||
DEFINE_GUID(GUID_CommandParam,0xd2ac289d,0xb39b,0x11d1,0x87,0x4,0x0,0x60,0x8,0x93,0xb1,0xbd);
|
||||
DEFINE_GUID(GUID_ChordParam,0xd2ac289e,0xb39b,0x11d1,0x87,0x4,0x0,0x60,0x8,0x93,0xb1,0xbd);
|
||||
DEFINE_GUID(GUID_RhythmParam,0xd2ac289f,0xb39b,0x11d1,0x87,0x4,0x0,0x60,0x8,0x93,0xb1,0xbd);
|
||||
DEFINE_GUID(GUID_IDirectMusicStyle,0xd2ac28a1,0xb39b,0x11d1,0x87,0x4,0x0,0x60,0x8,0x93,0xb1,0xbd);
|
||||
DEFINE_GUID(GUID_TimeSignature,0xd2ac28a4,0xb39b,0x11d1,0x87,0x4,0x0,0x60,0x8,0x93,0xb1,0xbd);
|
||||
DEFINE_GUID(GUID_TempoParam,0xd2ac28a5,0xb39b,0x11d1,0x87,0x4,0x0,0x60,0x8,0x93,0xb1,0xbd);
|
||||
DEFINE_GUID(GUID_IDirectMusicBand,0xd2ac28ac,0xb39b,0x11d1,0x87,0x4,0x0,0x60,0x8,0x93,0xb1,0xbd);
|
||||
DEFINE_GUID(GUID_IDirectMusicChordMap,0xd2ac28ad,0xb39b,0x11d1,0x87,0x4,0x0,0x60,0x8,0x93,0xb1,0xbd);
|
||||
DEFINE_GUID(GUID_MuteParam,0xd2ac28af,0xb39b,0x11d1,0x87,0x4,0x0,0x60,0x8,0x93,0xb1,0xbd);
|
||||
DEFINE_GUID(GUID_Download,0xd2ac28a7,0xb39b,0x11d1,0x87,0x4,0x0,0x60,0x8,0x93,0xb1,0xbd);
|
||||
DEFINE_GUID(GUID_Unload,0xd2ac28a8,0xb39b,0x11d1,0x87,0x4,0x0,0x60,0x8,0x93,0xb1,0xbd);
|
||||
DEFINE_GUID(GUID_ConnectToDLSCollection,0x1db1ae6b,0xe92e,0x11d1,0xa8,0xc5,0x0,0xc0,0x4f,0xa3,0x72,0x6e);
|
||||
DEFINE_GUID(GUID_Enable_Auto_Download,0xd2ac28a9,0xb39b,0x11d1,0x87,0x4,0x0,0x60,0x8,0x93,0xb1,0xbd);
|
||||
DEFINE_GUID(GUID_Disable_Auto_Download,0xd2ac28aa,0xb39b,0x11d1,0x87,0x4,0x0,0x60,0x8,0x93,0xb1,0xbd);
|
||||
DEFINE_GUID(GUID_Clear_All_Bands,0xd2ac28ab,0xb39b,0x11d1,0x87,0x4,0x0,0x60,0x8,0x93,0xb1,0xbd);
|
||||
DEFINE_GUID(GUID_StandardMIDIFile,0x6621075,0xe92e,0x11d1,0xa8,0xc5,0x0,0xc0,0x4f,0xa3,0x72,0x6e);
|
||||
DEFINE_GUID(GUID_DisableTimeSig,0x45fc707b,0x1db4,0x11d2,0xbc,0xac,0x0,0xa0,0xc9,0x22,0xe6,0xeb);
|
||||
DEFINE_GUID(GUID_EnableTimeSig,0x45fc707c,0x1db4,0x11d2,0xbc,0xac,0x0,0xa0,0xc9,0x22,0xe6,0xeb);
|
||||
DEFINE_GUID(GUID_DisableTempo,0x45fc707d,0x1db4,0x11d2,0xbc,0xac,0x0,0xa0,0xc9,0x22,0xe6,0xeb);
|
||||
DEFINE_GUID(GUID_EnableTempo,0x45fc707e,0x1db4,0x11d2,0xbc,0xac,0x0,0xa0,0xc9,0x22,0xe6,0xeb);
|
||||
DEFINE_GUID(GUID_PerfMasterTempo,0xd2ac28b0,0xb39b,0x11d1,0x87,0x4,0x0,0x60,0x8,0x93,0xb1,0xbd);
|
||||
DEFINE_GUID(GUID_PerfMasterVolume,0xd2ac28b1,0xb39b,0x11d1,0x87,0x4,0x0,0x60,0x8,0x93,0xb1,0xbd);
|
||||
DEFINE_GUID(GUID_PerfMasterGrooveLevel,0xd2ac28b2,0xb39b,0x11d1,0x87,0x4,0x0,0x60,0x8,0x93,0xb1,0xbd);
|
||||
DEFINE_GUID(GUID_PerfAutoDownload,0xfb09565b,0x3631,0x11d2,0xbc,0xb8,0x0,0xa0,0xc9,0x22,0xe6,0xeb);
|
||||
DEFINE_GUID(GUID_DefaultGMCollection,0xf17e8673,0xc3b4,0x11d1,0x87,0xb,0x0,0x60,0x8,0x93,0xb1,0xbd);
|
||||
DEFINE_GUID(IID_IDirectMusicLoader,0x2ffaaca2,0x5dca,0x11d2,0xaf,0xa6,0x0,0xaa,0x0,0x24,0xd8,0xb6);
|
||||
DEFINE_GUID(IID_IDirectMusicGetLoader,0x68a04844,0xd13d,0x11d1,0xaf,0xa6,0x0,0xaa,0x0,0x24,0xd8,0xb6);
|
||||
DEFINE_GUID(IID_IDirectMusicObject,0xd2ac28b5,0xb39b,0x11d1,0x87,0x4,0x0,0x60,0x8,0x93,0xb1,0xbd);
|
||||
DEFINE_GUID(IID_IDirectMusicSegment,0xf96029a2,0x4282,0x11d2,0x87,0x17,0x0,0x60,0x8,0x93,0xb1,0xbd);
|
||||
DEFINE_GUID(IID_IDirectMusicSegmentState,0xa3afdcc7,0xd3ee,0x11d1,0xbc,0x8d,0x0,0xa0,0xc9,0x22,0xe6,0xeb);
|
||||
DEFINE_GUID(IID_IDirectMusicTrack,0xf96029a1,0x4282,0x11d2,0x87,0x17,0x0,0x60,0x8,0x93,0xb1,0xbd);
|
||||
DEFINE_GUID(IID_IDirectMusicPerformance,0x7d43d03,0x6523,0x11d2,0x87,0x1d,0x0,0x60,0x8,0x93,0xb1,0xbd);
|
||||
DEFINE_GUID(IID_IDirectMusicTool,0xd2ac28ba,0xb39b,0x11d1,0x87,0x4,0x0,0x60,0x8,0x93,0xb1,0xbd);
|
||||
DEFINE_GUID(IID_IDirectMusicGraph,0x2befc277,0x5497,0x11d2,0xbc,0xcb,0x0,0xa0,0xc9,0x22,0xe6,0xeb);
|
||||
DEFINE_GUID(IID_IDirectMusicStyle,0xd2ac28bd,0xb39b,0x11d1,0x87,0x4,0x0,0x60,0x8,0x93,0xb1,0xbd);
|
||||
DEFINE_GUID(IID_IDirectMusicChordMap,0xd2ac28be,0xb39b,0x11d1,0x87,0x4,0x0,0x60,0x8,0x93,0xb1,0xbd);
|
||||
DEFINE_GUID(IID_IDirectMusicComposer,0xd2ac28bf,0xb39b,0x11d1,0x87,0x4,0x0,0x60,0x8,0x93,0xb1,0xbd);
|
||||
DEFINE_GUID(IID_IDirectMusicBand,0xd2ac28c0,0xb39b,0x11d1,0x87,0x4,0x0,0x60,0x8,0x93,0xb1,0xbd);
|
||||
|
||||
/////////////////////////////////////////////////////////////////////
|
||||
// File DPLAY.H:
|
||||
/////////////////////////////////////////////////////////////////////
|
||||
|
||||
DEFINE_GUID(IID_IDirectPlay2,0x2b74f7c0,0x9154,0x11cf,0xa9,0xcd,0x0,0xaa,0x0,0x68,0x86,0xe3);
|
||||
DEFINE_GUID(IID_IDirectPlay2A,0x9d460580,0xa822,0x11cf,0x96,0xc,0x0,0x80,0xc7,0x53,0x4e,0x82);
|
||||
DEFINE_GUID(IID_IDirectPlay3,0x133efe40,0x32dc,0x11d0,0x9c,0xfb,0x0,0xa0,0xc9,0xa,0x43,0xcb);
|
||||
DEFINE_GUID(IID_IDirectPlay3A,0x133efe41,0x32dc,0x11d0,0x9c,0xfb,0x0,0xa0,0xc9,0xa,0x43,0xcb);
|
||||
DEFINE_GUID(IID_IDirectPlay4,0xab1c530,0x4745,0x11d1,0xa7,0xa1,0x0,0x0,0xf8,0x3,0xab,0xfc);
|
||||
DEFINE_GUID(IID_IDirectPlay4A,0xab1c531,0x4745,0x11d1,0xa7,0xa1,0x0,0x0,0xf8,0x3,0xab,0xfc);
|
||||
DEFINE_GUID(CLSID_DirectPlay,0xd1eb6d20,0x8923,0x11d0,0x9d,0x97,0x0,0xa0,0xc9,0xa,0x43,0xcb);
|
||||
DEFINE_GUID(DPSPGUID_IPX,0x685bc400,0x9d2c,0x11cf,0xa9,0xcd,0x0,0xaa,0x0,0x68,0x86,0xe3);
|
||||
DEFINE_GUID(DPSPGUID_TCPIP,0x36E95EE0,0x8577,0x11cf,0x96,0xc,0x0,0x80,0xc7,0x53,0x4e,0x82);
|
||||
DEFINE_GUID(DPSPGUID_SERIAL,0xf1d6860,0x88d9,0x11cf,0x9c,0x4e,0x0,0xa0,0xc9,0x5,0x42,0x5e);
|
||||
DEFINE_GUID(DPSPGUID_MODEM,0x44eaa760,0xcb68,0x11cf,0x9c,0x4e,0x0,0xa0,0xc9,0x5,0x42,0x5e);
|
||||
DEFINE_GUID(IID_IDirectPlay,0x5454e9a0,0xdb65,0x11ce,0x92,0x1c,0x00,0xaa,0x00,0x6c,0x49,0x72);
|
||||
|
||||
/////////////////////////////////////////////////////////////////////
|
||||
// File DPLOBBY.H:
|
||||
/////////////////////////////////////////////////////////////////////
|
||||
|
||||
DEFINE_GUID(IID_IDirectPlayLobby,0xaf465c71,0x9588,0x11cf,0xa0,0x20,0x0,0xaa,0x0,0x61,0x57,0xac);
|
||||
DEFINE_GUID(IID_IDirectPlayLobbyA,0x26c66a70,0xb367,0x11cf,0xa0,0x24,0x0,0xaa,0x0,0x61,0x57,0xac);
|
||||
DEFINE_GUID(IID_IDirectPlayLobby2,0x194c220,0xa303,0x11d0,0x9c,0x4f,0x0,0xa0,0xc9,0x5,0x42,0x5e);
|
||||
DEFINE_GUID(IID_IDirectPlayLobby2A,0x1bb4af80,0xa303,0x11d0,0x9c,0x4f,0x0,0xa0,0xc9,0x5,0x42,0x5e);
|
||||
DEFINE_GUID(IID_IDirectPlayLobby3,0x2db72490,0x652c,0x11d1,0xa7,0xa8,0x0,0x0,0xf8,0x3,0xab,0xfc);
|
||||
DEFINE_GUID(IID_IDirectPlayLobby3A,0x2db72491,0x652c,0x11d1,0xa7,0xa8,0x0,0x0,0xf8,0x3,0xab,0xfc);
|
||||
DEFINE_GUID(CLSID_DirectPlayLobby,0x2fe8f810,0xb2a5,0x11d0,0xa7,0x87,0x0,0x0,0xf8,0x3,0xab,0xfc);
|
||||
DEFINE_GUID(DPLPROPERTY_MessagesSupported,0x762ccda1,0xd916,0x11d0,0xba,0x39,0x0,0xc0,0x4f,0xd7,0xed,0x67);
|
||||
DEFINE_GUID(DPLPROPERTY_LobbyGuid,0xf56920a0,0xd218,0x11d0,0xba,0x39,0x0,0xc0,0x4f,0xd7,0xed,0x67);
|
||||
DEFINE_GUID(DPLPROPERTY_PlayerGuid,0xb4319322,0xd20d,0x11d0,0xba,0x39,0x0,0xc0,0x4f,0xd7,0xed,0x67);
|
||||
DEFINE_GUID(DPLPROPERTY_PlayerScore,0x48784000,0xd219,0x11d0,0xba,0x39,0x0,0xc0,0x4f,0xd7,0xed,0x67);
|
||||
DEFINE_GUID(DPAID_TotalSize,0x1318f560,0x912c,0x11d0,0x9d,0xaa,0x0,0xa0,0xc9,0xa,0x43,0xcb);
|
||||
DEFINE_GUID(DPAID_ServiceProvider,0x7d916c0,0xe0af,0x11cf,0x9c,0x4e,0x0,0xa0,0xc9,0x5,0x42,0x5e);
|
||||
DEFINE_GUID(DPAID_LobbyProvider,0x59b95640,0x9667,0x11d0,0xa7,0x7d,0x0,0x0,0xf8,0x3,0xab,0xfc);
|
||||
DEFINE_GUID(DPAID_Phone,0x78ec89a0,0xe0af,0x11cf,0x9c,0x4e,0x0,0xa0,0xc9,0x5,0x42,0x5e);
|
||||
DEFINE_GUID(DPAID_PhoneW,0xba5a7a70,0x9dbf,0x11d0,0x9c,0xc1,0x0,0xa0,0xc9,0x5,0x42,0x5e);
|
||||
DEFINE_GUID(DPAID_Modem,0xf6dcc200,0xa2fe,0x11d0,0x9c,0x4f,0x0,0xa0,0xc9,0x5,0x42,0x5e);
|
||||
DEFINE_GUID(DPAID_ModemW,0x1fd92e0,0xa2ff,0x11d0,0x9c,0x4f,0x0,0xa0,0xc9,0x5,0x42,0x5e);
|
||||
DEFINE_GUID(DPAID_INet,0xc4a54da0,0xe0af,0x11cf,0x9c,0x4e,0x0,0xa0,0xc9,0x5,0x42,0x5e);
|
||||
DEFINE_GUID(DPAID_INetW,0xe63232a0,0x9dbf,0x11d0,0x9c,0xc1,0x0,0xa0,0xc9,0x5,0x42,0x5e);
|
||||
DEFINE_GUID(DPAID_INetPort,0xe4524541,0x8ea5,0x11d1,0x8a,0x96,0x0,0x60,0x97,0xb0,0x14,0x11);
|
||||
DEFINE_GUID(DPAID_ComPort,0xf2f0ce00,0xe0af,0x11cf,0x9c,0x4e,0x0,0xa0,0xc9,0x5,0x42,0x5e);
|
||||
|
||||
/////////////////////////////////////////////////////////////////////
|
||||
// File DSOUND.H:
|
||||
/////////////////////////////////////////////////////////////////////
|
||||
|
||||
DEFINE_GUID(CLSID_DirectSound,0x47d4d946,0x62e8,0x11cf,0x93,0xbc,0x44,0x45,0x53,0x54,0x0,0x0);
|
||||
DEFINE_GUID(CLSID_DirectSoundCapture,0xb0210780,0x89cd,0x11d0,0xaf,0x8,0x0,0xa0,0xc9,0x25,0xcd,0x16);
|
||||
DEFINE_GUID(IID_IDirectSound,0x279AFA83,0x4981,0x11CE,0xA5,0x21,0x00,0x20,0xAF,0x0B,0xE5,0x60);
|
||||
DEFINE_GUID(IID_IDirectSoundBuffer,0x279AFA85,0x4981,0x11CE,0xA5,0x21,0x00,0x20,0xAF,0x0B,0xE5,0x60);
|
||||
DEFINE_GUID(IID_IDirectSound3DListener,0x279AFA84,0x4981,0x11CE,0xA5,0x21,0x00,0x20,0xAF,0x0B,0xE5,0x60);
|
||||
DEFINE_GUID(IID_IDirectSound3DBuffer,0x279AFA86,0x4981,0x11CE,0xA5,0x21,0x00,0x20,0xAF,0x0B,0xE5,0x60);
|
||||
DEFINE_GUID(IID_IDirectSoundCapture,0xb0210781,0x89cd,0x11d0,0xaf,0x8,0x0,0xa0,0xc9,0x25,0xcd,0x16);
|
||||
DEFINE_GUID(IID_IDirectSoundCaptureBuffer,0xb0210782,0x89cd,0x11d0,0xaf,0x8,0x0,0xa0,0xc9,0x25,0xcd,0x16);
|
||||
DEFINE_GUID(IID_IDirectSoundNotify,0xb0210783,0x89cd,0x11d0,0xaf,0x8,0x0,0xa0,0xc9,0x25,0xcd,0x16);
|
||||
DEFINE_GUID(IID_IKsPropertySet,0x31efac30,0x515c,0x11d0,0xa9,0xaa,0x00,0xaa,0x00,0x61,0xbe,0x93);
|
||||
|
||||
/////////////////////////////////////////////////////////////////////
|
||||
// File DVP.H:
|
||||
/////////////////////////////////////////////////////////////////////
|
||||
|
||||
DEFINE_GUID(IID_IDDVideoPortContainer,0x6C142760,0xA733,0x11CE,0xA5,0x21,0x00,0x20,0xAF,0x0B,0xE5,0x60);
|
||||
DEFINE_GUID(IID_IDirectDrawVideoPort,0xB36D93E0,0x2B43,0x11CF,0xA2,0xDE,0x00,0xAA,0x00,0xB9,0x33,0x56);
|
||||
DEFINE_GUID(DDVPTYPE_E_HREFH_VREFH,0x54F39980L,0xDA60,0x11CF,0x9B,0x06,0x00,0xA0,0xC9,0x03,0xA3,0xB8);
|
||||
DEFINE_GUID(DDVPTYPE_E_HREFH_VREFL,0x92783220L,0xDA60,0x11CF,0x9B,0x06,0x00,0xA0,0xC9,0x03,0xA3,0xB8);
|
||||
DEFINE_GUID(DDVPTYPE_E_HREFL_VREFH,0xA07A02E0L,0xDA60,0x11CF,0x9B,0x06,0x00,0xA0,0xC9,0x03,0xA3,0xB8);
|
||||
DEFINE_GUID(DDVPTYPE_E_HREFL_VREFL,0xE09C77E0L,0xDA60,0x11CF,0x9B,0x06,0x00,0xA0,0xC9,0x03,0xA3,0xB8);
|
||||
DEFINE_GUID(DDVPTYPE_CCIR656,0xFCA326A0L,0xDA60,0x11CF,0x9B,0x06,0x00,0xA0,0xC9,0x03,0xA3,0xB8);
|
||||
DEFINE_GUID(DDVPTYPE_BROOKTREE,0x1352A560L,0xDA61,0x11CF,0x9B,0x06,0x00,0xA0,0xC9,0x03,0xA3,0xB8);
|
||||
DEFINE_GUID(DDVPTYPE_PHILIPS,0x332CF160L,0xDA61,0x11CF,0x9B,0x06,0x00,0xA0,0xC9,0x03,0xA3,0xB8);
|
||||
|
||||
/////////////////////////////////////////////////////////////////////
|
||||
// File DXFILE.H:
|
||||
/////////////////////////////////////////////////////////////////////
|
||||
|
||||
DEFINE_GUID(CLSID_CDirectXFile,0x4516ec43,0x8f20,0x11d0,0x9b,0x6d,0x00,0x00,0xc0,0x78,0x1b,0xc3);
|
||||
DEFINE_GUID(IID_IDirectXFile,0x3d82ab40,0x62da,0x11cf,0xab,0x39,0x0,0x20,0xaf,0x71,0xe4,0x33);
|
||||
DEFINE_GUID(IID_IDirectXFileEnumObject,0x3d82ab41,0x62da,0x11cf,0xab,0x39,0x0,0x20,0xaf,0x71,0xe4,0x33);
|
||||
DEFINE_GUID(IID_IDirectXFileSaveObject,0x3d82ab42,0x62da,0x11cf,0xab,0x39,0x0,0x20,0xaf,0x71,0xe4,0x33);
|
||||
DEFINE_GUID(IID_IDirectXFileObject,0x3d82ab43,0x62da,0x11cf,0xab,0x39,0x0,0x20,0xaf,0x71,0xe4,0x33);
|
||||
DEFINE_GUID(IID_IDirectXFileData,0x3d82ab44,0x62da,0x11cf,0xab,0x39,0x0,0x20,0xaf,0x71,0xe4,0x33);
|
||||
DEFINE_GUID(IID_IDirectXFileDataReference,0x3d82ab45,0x62da,0x11cf,0xab,0x39,0x0,0x20,0xaf,0x71,0xe4,0x33);
|
||||
DEFINE_GUID(IID_IDirectXFileBinary,0x3d82ab46,0x62da,0x11cf,0xab,0x39,0x0,0x20,0xaf,0x71,0xe4,0x33);
|
||||
DEFINE_GUID(TID_DXFILEHeader,0x3d82ab43,0x62da,0x11cf,0xab,0x39,0x0,0x20,0xaf,0x71,0xe4,0x33);
|
||||
|
||||
/////////////////////////////////////////////////////////////////////
|
||||
// File RMXFGUID.H:
|
||||
/////////////////////////////////////////////////////////////////////
|
||||
|
||||
DEFINE_GUID(TID_D3DRMInfo,0x2b957100,0x9e9a,0x11cf,0xab,0x39,0x0,0x20,0xaf,0x71,0xe4,0x33);
|
||||
DEFINE_GUID(TID_D3DRMMesh,0x3d82ab44,0x62da,0x11cf,0xab,0x39,0x0,0x20,0xaf,0x71,0xe4,0x33);
|
||||
DEFINE_GUID(TID_D3DRMVector,0x3d82ab5e,0x62da,0x11cf,0xab,0x39,0x0,0x20,0xaf,0x71,0xe4,0x33);
|
||||
DEFINE_GUID(TID_D3DRMMeshFace,0x3d82ab5f,0x62da,0x11cf,0xab,0x39,0x0,0x20,0xaf,0x71,0xe4,0x33);
|
||||
DEFINE_GUID(TID_D3DRMMaterial,0x3d82ab4d,0x62da,0x11cf,0xab,0x39,0x0,0x20,0xaf,0x71,0xe4,0x33);
|
||||
DEFINE_GUID(TID_D3DRMMaterialArray,0x35ff44e1,0x6c7c,0x11cf,0x8F,0x52,0x0,0x40,0x33,0x35,0x94,0xa3);
|
||||
DEFINE_GUID(TID_D3DRMFrame,0x3d82ab46,0x62da,0x11cf,0xab,0x39,0x0,0x20,0xaf,0x71,0xe4,0x33);
|
||||
DEFINE_GUID(TID_D3DRMFrameTransformMatrix,0xf6f23f41,0x7686,0x11cf,0x8f,0x52,0x0,0x40,0x33,0x35,0x94,0xa3);
|
||||
DEFINE_GUID(TID_D3DRMMeshMaterialList,0xf6f23f42,0x7686,0x11cf,0x8f,0x52,0x0,0x40,0x33,0x35,0x94,0xa3);
|
||||
DEFINE_GUID(TID_D3DRMMeshTextureCoords,0xf6f23f40,0x7686,0x11cf,0x8f,0x52,0x0,0x40,0x33,0x35,0x94,0xa3);
|
||||
DEFINE_GUID(TID_D3DRMMeshNormals,0xf6f23f43,0x7686,0x11cf,0x8f,0x52,0x0,0x40,0x33,0x35,0x94,0xa3);
|
||||
DEFINE_GUID(TID_D3DRMCoords2d,0xf6f23f44,0x7686,0x11cf,0x8f,0x52,0x0,0x40,0x33,0x35,0x94,0xa3);
|
||||
DEFINE_GUID(TID_D3DRMMatrix4x4,0xf6f23f45,0x7686,0x11cf,0x8f,0x52,0x0,0x40,0x33,0x35,0x94,0xa3);
|
||||
DEFINE_GUID(TID_D3DRMAnimation,0x3d82ab4f,0x62da,0x11cf,0xab,0x39,0x0,0x20,0xaf,0x71,0xe4,0x33);
|
||||
DEFINE_GUID(TID_D3DRMAnimationSet,0x3d82ab50,0x62da,0x11cf,0xab,0x39,0x0,0x20,0xaf,0x71,0xe4,0x33);
|
||||
DEFINE_GUID(TID_D3DRMAnimationKey,0x10dd46a8,0x775b,0x11cf,0x8f,0x52,0x0,0x40,0x33,0x35,0x94,0xA3);
|
||||
DEFINE_GUID(TID_D3DRMFloatKeys,0x10dd46a9,0x775b,0x11cf,0x8f,0x52,0x0,0x40,0x33,0x35,0x94,0xA3);
|
||||
DEFINE_GUID(TID_D3DRMMaterialAmbientColor,0x01411840,0x7786,0x11cf,0x8f,0x52,0x0,0x40,0x33,0x35,0x94,0xA3);
|
||||
DEFINE_GUID(TID_D3DRMMaterialDiffuseColor,0x01411841,0x7786,0x11cf,0x8f,0x52,0x0,0x40,0x33,0x35,0x94,0xA3);
|
||||
DEFINE_GUID(TID_D3DRMMaterialSpecularColor,0x01411842,0x7786,0x11cf,0x8f,0x52,0x0,0x40,0x33,0x35,0x94,0xA3);
|
||||
DEFINE_GUID(TID_D3DRMMaterialEmissiveColor,0xd3e16e80,0x7835,0x11cf,0x8f,0x52,0x0,0x40,0x33,0x35,0x94,0xa3);
|
||||
DEFINE_GUID(TID_D3DRMMaterialPower,0x01411843,0x7786,0x11cf,0x8f,0x52,0x0,0x40,0x33,0x35,0x94,0xA3);
|
||||
DEFINE_GUID(TID_D3DRMColorRGBA,0x35ff44e0,0x6c7c,0x11cf,0x8f,0x52,0x0,0x40,0x33,0x35,0x94,0xA3);
|
||||
DEFINE_GUID(TID_D3DRMColorRGB,0xd3e16e81,0x7835,0x11cf,0x8f,0x52,0x0,0x40,0x33,0x35,0x94,0xa3);
|
||||
DEFINE_GUID(TID_D3DRMGuid,0xa42790e0,0x7810,0x11cf,0x8f,0x52,0x0,0x40,0x33,0x35,0x94,0xa3);
|
||||
DEFINE_GUID(TID_D3DRMTextureFilename,0xa42790e1,0x7810,0x11cf,0x8f,0x52,0x0,0x40,0x33,0x35,0x94,0xa3);
|
||||
DEFINE_GUID(TID_D3DRMTextureReference,0xa42790e2,0x7810,0x11cf,0x8f,0x52,0x0,0x40,0x33,0x35,0x94,0xa3);
|
||||
DEFINE_GUID(TID_D3DRMIndexedColor,0x1630b820,0x7842,0x11cf,0x8f,0x52,0x0,0x40,0x33,0x35,0x94,0xa3);
|
||||
DEFINE_GUID(TID_D3DRMMeshVertexColors,0x1630b821,0x7842,0x11cf,0x8f,0x52,0x0,0x40,0x33,0x35,0x94,0xa3);
|
||||
DEFINE_GUID(TID_D3DRMMaterialWrap,0x4885ae60,0x78e8,0x11cf,0x8f,0x52,0x0,0x40,0x33,0x35,0x94,0xa3);
|
||||
DEFINE_GUID(TID_D3DRMBoolean,0x537da6a0,0xca37,0x11d0,0x94,0x1c,0x0,0x80,0xc8,0xc,0xfa,0x7b);
|
||||
DEFINE_GUID(TID_D3DRMMeshFaceWraps,0xed1ec5c0,0xc0a8,0x11d0,0x94,0x1c,0x0,0x80,0xc8,0xc,0xfa,0x7b);
|
||||
DEFINE_GUID(TID_D3DRMBoolean2d,0x4885ae63,0x78e8,0x11cf,0x8f,0x52,0x0,0x40,0x33,0x35,0x94,0xa3);
|
||||
DEFINE_GUID(TID_D3DRMTimedFloatKeys,0xf406b180,0x7b3b,0x11cf,0x8f,0x52,0x0,0x40,0x33,0x35,0x94,0xa3);
|
||||
DEFINE_GUID(TID_D3DRMAnimationOptions,0xe2bf56c0,0x840f,0x11cf,0x8f,0x52,0x0,0x40,0x33,0x35,0x94,0xa3);
|
||||
DEFINE_GUID(TID_D3DRMFramePosition,0xe2bf56c1,0x840f,0x11cf,0x8f,0x52,0x0,0x40,0x33,0x35,0x94,0xa3);
|
||||
DEFINE_GUID(TID_D3DRMFrameVelocity,0xe2bf56c2,0x840f,0x11cf,0x8f,0x52,0x0,0x40,0x33,0x35,0x94,0xa3);
|
||||
DEFINE_GUID(TID_D3DRMFrameRotation,0xe2bf56c3,0x840f,0x11cf,0x8f,0x52,0x0,0x40,0x33,0x35,0x94,0xa3);
|
||||
DEFINE_GUID(TID_D3DRMLight,0x3d82ab4a,0x62da,0x11cf,0xab,0x39,0x0,0x20,0xaf,0x71,0xe4,0x33);
|
||||
DEFINE_GUID(TID_D3DRMCamera,0x3d82ab51,0x62da,0x11cf,0xab,0x39,0x0,0x20,0xaf,0x71,0xe4,0x33);
|
||||
DEFINE_GUID(TID_D3DRMAppData,0xe5745280,0xb24f,0x11cf,0x9d,0xd5,0x0,0xaa,0x0,0xa7,0x1a,0x2f);
|
||||
DEFINE_GUID(TID_D3DRMLightUmbra,0xaed22740,0xb31f,0x11cf,0x9d,0xd5,0x0,0xaa,0x0,0xa7,0x1a,0x2f);
|
||||
DEFINE_GUID(TID_D3DRMLightRange,0xaed22742,0xb31f,0x11cf,0x9d,0xd5,0x0,0xaa,0x0,0xa7,0x1a,0x2f);
|
||||
DEFINE_GUID(TID_D3DRMLightPenumbra,0xaed22741,0xb31f,0x11cf,0x9d,0xd5,0x0,0xaa,0x0,0xa7,0x1a,0x2f);
|
||||
DEFINE_GUID(TID_D3DRMLightAttenuation,0xa8a98ba0,0xc5e5,0x11cf,0xb9,0x41,0x0,0x80,0xc8,0xc,0xfa,0x7b);
|
||||
DEFINE_GUID(TID_D3DRMInlineData,0x3a23eea0,0x94b1,0x11d0,0xab,0x39,0x0,0x20,0xaf,0x71,0xe4,0x33);
|
||||
DEFINE_GUID(TID_D3DRMUrl,0x3a23eea1,0x94b1,0x11d0,0xab,0x39,0x0,0x20,0xaf,0x71,0xe4,0x33);
|
||||
DEFINE_GUID(TID_D3DRMProgressiveMesh,0x8A63C360,0x997D,0x11d0,0x94,0x1C,0x0,0x80,0xC8,0x0C,0xFA,0x7B);
|
||||
DEFINE_GUID(TID_D3DRMExternalVisual,0x98116AA0,0xBDBA,0x11d1,0x82,0xC0,0x00,0xA0,0xC9,0x69,0x72,0x71);
|
||||
DEFINE_GUID(TID_D3DRMStringProperty,0x7f0f21e0,0xbfe1,0x11d1,0x82,0xc0,0x0,0xa0,0xc9,0x69,0x72,0x71);
|
||||
DEFINE_GUID(TID_D3DRMPropertyBag,0x7f0f21e1,0xbfe1,0x11d1,0x82,0xc0,0x0,0xa0,0xc9,0x69,0x72,0x71);
|
||||
DEFINE_GUID(TID_D3DRMRightHanded,0x7f5d5ea0,0xd53a,0x11d1,0x82,0xc0,0x0,0xa0,0xc9,0x69,0x72,0x71);
|
|
@ -1,5 +0,0 @@
|
|||
LIBRARY faultrep.DLL
|
||||
EXPORTS
|
||||
AddERExcludedApplicationA@4
|
||||
AddERExcludedApplicationW@4
|
||||
ReportFault@8
|
|
@ -1,342 +0,0 @@
|
|||
LIBRARY GDI32.dll
|
||||
EXPORTS
|
||||
AbortDoc@4
|
||||
AbortPath@4
|
||||
AddFontMemResourceEx@16
|
||||
AddFontResourceA@4
|
||||
AddFontResourceW@4
|
||||
AddFontResourceExA@12
|
||||
AddFontResourceExW@12
|
||||
AngleArc@24
|
||||
AnimatePalette@16
|
||||
Arc@36
|
||||
ArcTo@36
|
||||
BeginPath@4
|
||||
BitBlt@36
|
||||
CancelDC@4
|
||||
CheckColorsInGamut@16
|
||||
ChoosePixelFormat@8
|
||||
Chord@36
|
||||
CloseEnhMetaFile@4
|
||||
CloseFigure@4
|
||||
CloseMetaFile@4
|
||||
ColorMatchToTarget@12
|
||||
CombineRgn@16
|
||||
CombineTransform@12
|
||||
CopyEnhMetaFileA@8
|
||||
CopyEnhMetaFileW@8
|
||||
CopyMetaFileA@8
|
||||
CopyMetaFileW@8
|
||||
CreateBitmap@20
|
||||
CreateBitmapIndirect@4
|
||||
CreateBrushIndirect@4
|
||||
CreateColorSpaceA@4
|
||||
CreateColorSpaceW@4
|
||||
CreateCompatibleBitmap@12
|
||||
CreateCompatibleDC@4
|
||||
CreateDCA@16
|
||||
CreateDCW@16
|
||||
CreateDIBPatternBrush@8
|
||||
CreateDIBPatternBrushPt@8
|
||||
CreateDIBSection@24
|
||||
CreateDIBitmap@24
|
||||
CreateDiscardableBitmap@12
|
||||
CreateEllipticRgn@16
|
||||
CreateEllipticRgnIndirect@4
|
||||
CreateEnhMetaFileA@16
|
||||
CreateEnhMetaFileW@16
|
||||
CreateFontA@56
|
||||
CreateFontIndirectA@4
|
||||
CreateFontIndirectW@4
|
||||
CreateFontW@56
|
||||
CreateHalftonePalette@4
|
||||
CreateHatchBrush@8
|
||||
CreateICA@16
|
||||
CreateICW@16
|
||||
CreateMetaFileA@4
|
||||
CreateMetaFileW@4
|
||||
CreatePalette@4
|
||||
CreatePatternBrush@4
|
||||
CreatePen@12
|
||||
CreatePenIndirect@4
|
||||
CreatePolyPolygonRgn@16
|
||||
CreatePolygonRgn@12
|
||||
CreateRectRgn@16
|
||||
CreateRectRgnIndirect@4
|
||||
CreateRoundRectRgn@24
|
||||
CreateScalableFontResourceA@16
|
||||
CreateScalableFontResourceW@16
|
||||
CreateSolidBrush@4
|
||||
DPtoLP@12
|
||||
DeleteColorSpace@4
|
||||
DeleteDC@4
|
||||
DeleteEnhMetaFile@4
|
||||
DeleteMetaFile@4
|
||||
DeleteObject@4
|
||||
DescribePixelFormat@16
|
||||
DeviceCapabilitiesEx@24
|
||||
DeviceCapabilitiesExA@24
|
||||
DeviceCapabilitiesExW@24
|
||||
DrawEscape@16
|
||||
Ellipse@20
|
||||
EndDoc@4
|
||||
EndPage@4
|
||||
EndPath@4
|
||||
EnumEnhMetaFile@20
|
||||
EnumFontFamiliesA@16
|
||||
EnumFontFamiliesExA@20
|
||||
EnumFontFamiliesExW@20
|
||||
EnumFontFamiliesW@16
|
||||
EnumFontsA@16
|
||||
EnumFontsW@16
|
||||
EnumICMProfilesA@12
|
||||
EnumICMProfilesW@12
|
||||
EnumMetaFile@16
|
||||
EnumObjects@16
|
||||
EqualRgn@8
|
||||
Escape@20
|
||||
ExcludeClipRect@20
|
||||
ExtCreatePen@20
|
||||
ExtCreateRegion@12
|
||||
ExtEscape@24
|
||||
ExtFloodFill@20
|
||||
ExtSelectClipRgn@12
|
||||
ExtTextOutA@32
|
||||
ExtTextOutW@32
|
||||
FillPath@4
|
||||
FillRgn@12
|
||||
FixBrushOrgEx@16
|
||||
FlattenPath@4
|
||||
FloodFill@16
|
||||
FrameRgn@20
|
||||
GdiComment@12
|
||||
GdiFlush@0
|
||||
GdiGetBatchLimit@0
|
||||
GdiPlayDCScript@24
|
||||
GdiPlayJournal@20
|
||||
GdiPlayScript@28
|
||||
GdiSetBatchLimit@4
|
||||
GetArcDirection@4
|
||||
GetAspectRatioFilterEx@8
|
||||
GetBitmapBits@12
|
||||
GetBitmapDimensionEx@8
|
||||
GetBkColor@4
|
||||
GetBkMode@4
|
||||
GetBoundsRect@12
|
||||
GetBrushOrgEx@8
|
||||
GetCharABCWidthsA@16
|
||||
GetCharABCWidthsFloatA@16
|
||||
GetCharABCWidthsFloatW@16
|
||||
GetCharABCWidthsW@16
|
||||
GetCharWidth32A@16
|
||||
GetCharWidth32W@16
|
||||
GetCharWidthA@16
|
||||
GetCharWidthFloatA@16
|
||||
GetCharWidthFloatW@16
|
||||
GetCharWidthW@16
|
||||
GetCharacterPlacementA@24
|
||||
GetCharacterPlacementW@24
|
||||
GetClipBox@8
|
||||
GetClipRgn@8
|
||||
GetColorAdjustment@8
|
||||
GetColorSpace@4
|
||||
GetCurrentObject@8
|
||||
GetCurrentPositionEx@8
|
||||
GetDCOrgEx@8
|
||||
GetDIBColorTable@16
|
||||
GetDIBits@28
|
||||
GetDeviceCaps@8
|
||||
GetDeviceGammaRamp@8
|
||||
GetEnhMetaFileA@4
|
||||
GetEnhMetaFileBits@12
|
||||
GetEnhMetaFileDescriptionA@12
|
||||
GetEnhMetaFileDescriptionW@12
|
||||
GetEnhMetaFileHeader@12
|
||||
GetEnhMetaFilePaletteEntries@12
|
||||
GetEnhMetaFilePixelFormat@12
|
||||
GetEnhMetaFileW@4
|
||||
GetFontData@20
|
||||
GetFontLanguageInfo@4
|
||||
GetFontResourceInfo@16
|
||||
GetFontResourceInfoW@16
|
||||
GetGlyphOutline@28
|
||||
GetGlyphOutlineA@28
|
||||
GetGlyphOutlineW@28
|
||||
GetGlyphOutlineWow@28
|
||||
GetGraphicsMode@4
|
||||
GetICMProfileA@12
|
||||
GetICMProfileW@12
|
||||
GetKerningPairs@12
|
||||
GetKerningPairsA@12
|
||||
GetKerningPairsW@12
|
||||
GetLogColorSpaceA@12
|
||||
GetLogColorSpaceW@12
|
||||
GetMapMode@4
|
||||
GetMetaFileA@4
|
||||
GetMetaFileBitsEx@12
|
||||
GetMetaFileW@4
|
||||
GetMetaRgn@8
|
||||
GetMiterLimit@8
|
||||
GetNearestColor@8
|
||||
GetNearestPaletteIndex@8
|
||||
GetObjectA@12
|
||||
GetObjectType@4
|
||||
GetObjectW@12
|
||||
GetOutlineTextMetricsA@12
|
||||
GetOutlineTextMetricsW@12
|
||||
GetPaletteEntries@16
|
||||
GetPath@16
|
||||
GetPixel@12
|
||||
GetPixelFormat@4
|
||||
GetPolyFillMode@4
|
||||
GetROP2@4
|
||||
GetRandomRgn@12
|
||||
GetRasterizerCaps@8
|
||||
GetRegionData@12
|
||||
GetRelAbs@8
|
||||
GetRgnBox@8
|
||||
GetStockObject@4
|
||||
GetStretchBltMode@4
|
||||
GetSystemPaletteEntries@16
|
||||
GetSystemPaletteUse@4
|
||||
GetTextAlign@4
|
||||
GetTextCharacterExtra@4
|
||||
GetTextCharset@4
|
||||
GetTextCharsetInfo@12
|
||||
GetTextColor@4
|
||||
GetTextExtentExPointA@28
|
||||
GetTextExtentExPointW@28
|
||||
GetTextExtentPoint32A@16
|
||||
GetTextExtentPoint32W@16
|
||||
GetTextExtentPointA@16
|
||||
GetTextExtentPointW@16
|
||||
GetTextFaceA@12
|
||||
GetTextFaceW@12
|
||||
GetTextMetricsA@8
|
||||
GetTextMetricsW@8
|
||||
GetViewportExtEx@8
|
||||
GetViewportOrgEx@8
|
||||
GetWinMetaFileBits@20
|
||||
GetWindowExtEx@8
|
||||
GetWindowOrgEx@8
|
||||
GetWorldTransform@8
|
||||
IntersectClipRect@20
|
||||
InvertRgn@8
|
||||
LPtoDP@12
|
||||
LineDDA@24
|
||||
LineTo@12
|
||||
MaskBlt@48
|
||||
ModifyWorldTransform@12
|
||||
MoveToEx@16
|
||||
OffsetClipRgn@12
|
||||
OffsetRgn@12
|
||||
OffsetViewportOrgEx@16
|
||||
OffsetWindowOrgEx@16
|
||||
PaintRgn@8
|
||||
PatBlt@24
|
||||
PathToRegion@4
|
||||
Pie@36
|
||||
PlayEnhMetaFile@12
|
||||
PlayEnhMetaFileRecord@16
|
||||
PlayMetaFile@8
|
||||
PlayMetaFileRecord@16
|
||||
PlgBlt@40
|
||||
PolyBezier@12
|
||||
PolyBezierTo@12
|
||||
PolyDraw@16
|
||||
PolyPolygon@16
|
||||
PolyPolyline@16
|
||||
PolyTextOutA@12
|
||||
PolyTextOutW@12
|
||||
Polygon@12
|
||||
Polyline@12
|
||||
PolylineTo@12
|
||||
PtInRegion@12
|
||||
PtVisible@12
|
||||
RealizePalette@4
|
||||
RectInRegion@8
|
||||
RectVisible@8
|
||||
Rectangle@20
|
||||
RemoveFontMemResourceEx@4
|
||||
RemoveFontResourceA@4
|
||||
RemoveFontResourceW@4
|
||||
RemoveFontResourceExA@12
|
||||
RemoveFontResourceExW@12
|
||||
ResetDCA@8
|
||||
ResetDCW@8
|
||||
ResizePalette@8
|
||||
RestoreDC@8
|
||||
RoundRect@28
|
||||
SaveDC@4
|
||||
ScaleViewportExtEx@24
|
||||
ScaleWindowExtEx@24
|
||||
SelectBrushLocal@8
|
||||
SelectClipPath@8
|
||||
SelectClipRgn@8
|
||||
SelectFontLocal@8
|
||||
SelectObject@8
|
||||
SelectPalette@12
|
||||
SetAbortProc@8
|
||||
SetArcDirection@8
|
||||
SetBitmapBits@12
|
||||
SetBitmapDimensionEx@16
|
||||
SetBkColor@8
|
||||
SetBkMode@8
|
||||
SetBoundsRect@12
|
||||
SetBrushOrgEx@16
|
||||
SetColorAdjustment@8
|
||||
SetColorSpace@8
|
||||
SetDCBrushColor@8
|
||||
SetDCPenColor@8
|
||||
SetDIBColorTable@16
|
||||
SetDIBits@28
|
||||
SetDIBitsToDevice@48
|
||||
SetDeviceGammaRamp@8
|
||||
SetEnhMetaFileBits@8
|
||||
SetFontEnumeration@4
|
||||
SetGraphicsMode@8
|
||||
SetICMMode@8
|
||||
SetICMProfileA@8
|
||||
SetICMProfileW@8
|
||||
SetMapMode@8
|
||||
SetMapperFlags@8
|
||||
SetMetaFileBitsEx@8
|
||||
SetMetaRgn@4
|
||||
SetMiterLimit@12
|
||||
SetPaletteEntries@16
|
||||
SetPixel@16
|
||||
SetPixelFormat@12
|
||||
SetPixelV@16
|
||||
SetPolyFillMode@8
|
||||
SetROP2@8
|
||||
SetRectRgn@20
|
||||
SetRelAbs@8
|
||||
SetStretchBltMode@8
|
||||
SetSystemPaletteUse@8
|
||||
SetTextAlign@8
|
||||
SetTextCharacterExtra@8
|
||||
SetTextColor@8
|
||||
SetTextJustification@12
|
||||
SetViewportExtEx@16
|
||||
SetViewportOrgEx@16
|
||||
SetWinMetaFileBits@16
|
||||
SetWindowExtEx@16
|
||||
SetWindowOrgEx@16
|
||||
SetWorldTransform@8
|
||||
StartDocA@8
|
||||
StartDocW@8
|
||||
StartPage@4
|
||||
StretchBlt@44
|
||||
StretchDIBits@52
|
||||
StrokeAndFillPath@4
|
||||
StrokePath@4
|
||||
SwapBuffers@4
|
||||
TextOutA@20
|
||||
TextOutW@20
|
||||
TranslateCharsetInfo@12
|
||||
UnrealizeObject@4
|
||||
UpdateColors@4
|
||||
UpdateICMRegKeyA@16
|
||||
UpdateICMRegKeyW@16
|
||||
WidenPath@4
|
||||
gdiPlaySpoolStream@24
|
|
@ -1,173 +0,0 @@
|
|||
LIBRARY GLAUX.DLL
|
||||
EXPORTS
|
||||
AllocateMemory@4
|
||||
AllocateZeroedMemory@4
|
||||
CleanUp@0
|
||||
ComponentFromIndex@12
|
||||
CreateCIPalette@4
|
||||
CreateRGBPalette@4
|
||||
DelayPaletteRealization@0
|
||||
DestroyThisWindow@4
|
||||
FillRgbPaletteEntries@12
|
||||
FindBestPixelFormat@12
|
||||
FindExactPixelFormat@12
|
||||
FindPixelFormat@8
|
||||
FlushPalette@8
|
||||
ForceRedraw@4
|
||||
FreeMemory@4
|
||||
GetRegistrySysColors@8
|
||||
GrabStaticEntries@4
|
||||
IsPixelFormatValid@12
|
||||
PixelFormatDescriptorFromDc@8
|
||||
PrintMessage
|
||||
RealizePaletteNow@12
|
||||
ReleaseStaticEntries@4
|
||||
UpdateStaticMapping@4
|
||||
tkCloseWindow@0
|
||||
tkDisplayFunc@4
|
||||
tkErrorPopups@4
|
||||
tkExec@0
|
||||
tkExposeFunc@4
|
||||
tkGetColorMapSize@0
|
||||
tkGetDisplayMode@0
|
||||
tkGetDisplayModeID@0
|
||||
tkGetDisplayModePolicy@0
|
||||
tkGetHDC@0
|
||||
tkGetHRC@0
|
||||
tkGetHWND@0
|
||||
tkGetMouseLoc@8
|
||||
tkIdleFunc@4
|
||||
tkInitDisplayMode@4
|
||||
tkInitDisplayModeID@4
|
||||
tkInitDisplayModePolicy@4
|
||||
tkInitPosition@16
|
||||
tkInitWindow@4
|
||||
tkInitWindowAW@8
|
||||
tkKeyDownFunc@4
|
||||
tkMouseDownFunc@4
|
||||
tkMouseMoveFunc@4
|
||||
tkMouseUpFunc@4
|
||||
tkQuit@0
|
||||
tkReshapeFunc@4
|
||||
tkSetFogRamp@8
|
||||
tkSetGreyRamp@0
|
||||
tkSetOneColor@16
|
||||
tkSetRGBMap@8
|
||||
tkSwapBuffers@0
|
||||
tkWndProc@16
|
||||
RawImageClose@4
|
||||
RawImageGetData@8
|
||||
RawImageGetRow@16
|
||||
RawImageOpenAW@8
|
||||
tkRGBImageLoad@4
|
||||
tkRGBImageLoadAW@8
|
||||
tkCreateBitmapFont@4
|
||||
tkCreateFilledFont@4
|
||||
tkCreateOutlineFont@4
|
||||
tkCreateStrokeFont@4
|
||||
tkDrawStr@8
|
||||
DibNumColors@4
|
||||
tkDIBImageLoad@4
|
||||
tkDIBImageLoadAW@8
|
||||
m_popmatrix@0
|
||||
m_pushmatrix@0
|
||||
m_scale@24
|
||||
m_translate@24
|
||||
m_xformpt@16
|
||||
m_xformptonly@8
|
||||
add3@12
|
||||
copy3@8
|
||||
copymat3@8
|
||||
crossprod@12
|
||||
diff3@12
|
||||
dist3@8
|
||||
dot3@8
|
||||
error@4
|
||||
identifymat3@4
|
||||
length3@4
|
||||
normalize@4
|
||||
perpnorm@16
|
||||
samepoint@8
|
||||
scalarmult@16
|
||||
seterrorfunc@4
|
||||
xformvec3@12
|
||||
auxSolidTeapot@8
|
||||
auxWireTeapot@8
|
||||
solidTeapot@12
|
||||
wireTeapot@12
|
||||
auxSolidBox@24
|
||||
auxSolidCone@16
|
||||
auxSolidCube@8
|
||||
auxSolidCylinder@16
|
||||
auxSolidDodecahedron@8
|
||||
auxSolidIcosahedron@8
|
||||
auxSolidOctahedron@8
|
||||
auxSolidSphere@8
|
||||
auxSolidTetrahedron@8
|
||||
auxSolidTorus@16
|
||||
auxWireBox@24
|
||||
auxWireCone@16
|
||||
auxWireCube@8
|
||||
auxWireCylinder@16
|
||||
auxWireDodecahedron@8
|
||||
auxWireIcosahedron@8
|
||||
auxWireOctahedron@8
|
||||
auxWireSphere@8
|
||||
auxWireTetrahedron@8
|
||||
auxWireTorus@16
|
||||
compareParams@12
|
||||
dodecahedron@16
|
||||
doughnut@28
|
||||
drawbox@52
|
||||
drawtriangle@32
|
||||
findList@12
|
||||
icosahedron@16
|
||||
initdodec@0
|
||||
makeModelPtr@12
|
||||
octahedron@16
|
||||
pentagon@24
|
||||
recorditem@32
|
||||
subdivide@36
|
||||
tetrahedron@16
|
||||
auxDIBImageLoadA@4
|
||||
auxDIBImageLoadW@4
|
||||
auxRGBImageLoadA@4
|
||||
auxRGBImageLoadW@4
|
||||
auxCreateFont@0
|
||||
auxDrawStrA@4
|
||||
auxDrawStrAW@8
|
||||
auxDrawStrW@4
|
||||
DefaultHandleExpose@8
|
||||
DefaultHandleReshape@8
|
||||
KeyDown@8
|
||||
MouseDown@12
|
||||
MouseLoc@12
|
||||
MouseUp@12
|
||||
auxCloseWindow@0
|
||||
auxExposeFunc@4
|
||||
auxGetColorMapSize@0
|
||||
auxGetDisplayMode@0
|
||||
auxGetDisplayModeID@0
|
||||
auxGetDisplayModePolicy@0
|
||||
auxGetHDC@0
|
||||
auxGetHGLRC@0
|
||||
auxGetHWND@0
|
||||
auxGetMouseLoc@8
|
||||
auxIdleFunc@4
|
||||
auxInitDisplayMode@4
|
||||
auxInitDisplayModeID@4
|
||||
auxInitDisplayModePolicy@4
|
||||
auxInitPosition@16
|
||||
auxInitWindowA@4
|
||||
auxInitWindowAW@8
|
||||
auxInitWindowW@4
|
||||
auxKeyFunc@8
|
||||
auxMainLoop@4
|
||||
auxMouseFunc@12
|
||||
auxQuit@0
|
||||
auxReshapeFunc@4
|
||||
auxSetFogRamp@8
|
||||
auxSetGreyRamp@0
|
||||
auxSetOneColor@16
|
||||
auxSetRGBMap@8
|
||||
auxSwapBuffers@0
|
|
@ -1,54 +0,0 @@
|
|||
LIBRARY GLU32.DLL
|
||||
EXPORTS
|
||||
gluBeginCurve@4
|
||||
gluBeginPolygon@4
|
||||
gluBeginSurface@4
|
||||
gluBeginTrim@4
|
||||
gluBuild1DMipmaps@24
|
||||
gluBuild2DMipmaps@28
|
||||
gluCylinder@36
|
||||
gluDeleteNurbsRenderer@4
|
||||
gluDeleteQuadric@4
|
||||
gluDeleteTess@4
|
||||
gluDisk@28
|
||||
gluEndCurve@4
|
||||
gluEndPolygon@4
|
||||
gluEndSurface@4
|
||||
gluEndTrim@4
|
||||
gluErrorString@4
|
||||
gluErrorUnicodeStringEXT@4
|
||||
gluGetNurbsProperty@12
|
||||
gluGetString@4
|
||||
gluGetTessProperty@12
|
||||
gluLoadSamplingMatrices@16
|
||||
gluLookAt@72
|
||||
gluNewNurbsRenderer@0
|
||||
gluNewQuadric@0
|
||||
gluNewTess@0
|
||||
gluNextContour@8
|
||||
gluNurbsCallback@12
|
||||
gluNurbsCurve@28
|
||||
gluNurbsProperty@12
|
||||
gluNurbsSurface@44
|
||||
gluOrtho2D@32
|
||||
gluPartialDisk@44
|
||||
gluPerspective@32
|
||||
gluPickMatrix@36
|
||||
gluProject@48
|
||||
gluPwlCurve@20
|
||||
gluQuadricCallback@12
|
||||
gluQuadricDrawStyle@8
|
||||
gluQuadricNormals@8
|
||||
gluQuadricOrientation@8
|
||||
gluQuadricTexture@8
|
||||
gluScaleImage@36
|
||||
gluSphere@20
|
||||
gluTessBeginContour@4
|
||||
gluTessBeginPolygon@8
|
||||
gluTessCallback@12
|
||||
gluTessEndContour@4
|
||||
gluTessEndPolygon@4
|
||||
gluTessNormal@28
|
||||
gluTessProperty@16
|
||||
gluTessVertex@12
|
||||
gluUnProject@48
|
|
@ -1,116 +0,0 @@
|
|||
LIBRARY glut.dll
|
||||
EXPORTS
|
||||
glutAddMenuEntry@8
|
||||
glutAddSubMenu@8
|
||||
glutAttachMenu@4
|
||||
glutBitmapCharacter@8
|
||||
glutBitmapLength@8
|
||||
glutBitmapWidth@8
|
||||
glutButtonBoxFunc@4
|
||||
glutChangeToMenuEntry@12
|
||||
glutChangeToSubMenu@12
|
||||
glutCopyColormap@4
|
||||
glutCreateMenu@4
|
||||
glutCreateSubWindow@20
|
||||
glutCreateWindow@4
|
||||
glutDestroyMenu@4
|
||||
glutDestroyWindow@4
|
||||
glutDetachMenu@4
|
||||
glutDeviceGet@4
|
||||
glutDialsFunc@4
|
||||
glutDisplayFunc@4
|
||||
glutEnterGameMode@0
|
||||
glutEntryFunc@4
|
||||
glutEstablishOverlay@0
|
||||
glutExtensionSupported@4
|
||||
glutForceJoystickFunc@0
|
||||
glutFullScreen@0
|
||||
glutGameModeGet@4
|
||||
glutGameModeString@4
|
||||
glutGet@4
|
||||
glutGetColor@8
|
||||
glutGetMenu@0
|
||||
glutGetModifiers@0
|
||||
glutGetWindow@0
|
||||
glutHideOverlay@0
|
||||
glutHideWindow@0
|
||||
glutIconifyWindow@0
|
||||
glutIdleFunc@4
|
||||
glutIgnoreKeyRepeat@4
|
||||
glutInit@8
|
||||
glutInitDisplayMode@4
|
||||
glutInitDisplayString@4
|
||||
glutInitWindowPosition@8
|
||||
glutInitWindowSize@8
|
||||
glutJoystickFunc@8
|
||||
glutKeyboardFunc@4
|
||||
glutKeyboardUpFunc@4
|
||||
glutLayerGet@4
|
||||
glutLeaveGameMode@0
|
||||
glutMainLoop@0
|
||||
glutMenuStateFunc@4
|
||||
glutMenuStatusFunc@4
|
||||
glutMotionFunc@4
|
||||
glutMouseFunc@4
|
||||
glutOverlayDisplayFunc@4
|
||||
glutPassiveMotionFunc@4
|
||||
glutPopWindow@0
|
||||
glutPositionWindow@8
|
||||
glutPostOverlayRedisplay@0
|
||||
glutPostRedisplay@0
|
||||
glutPostWindowOverlayRedisplay@4
|
||||
glutPostWindowRedisplay@4
|
||||
glutPushWindow@0
|
||||
glutRemoveMenuItem@4
|
||||
glutRemoveOverlay@0
|
||||
glutReportErrors@0
|
||||
glutReshapeFunc@4
|
||||
glutReshapeWindow@8
|
||||
glutSetColor@16
|
||||
glutSetCursor@4
|
||||
glutSetIconTitle@4
|
||||
glutSetKeyRepeat@4
|
||||
glutSetMenu@4
|
||||
glutSetWindow@4
|
||||
glutSetWindowTitle@4
|
||||
glutSetupVideoResizing@0
|
||||
glutShowOverlay@0
|
||||
glutShowWindow@0
|
||||
glutSolidCone@24
|
||||
glutSolidCube@8
|
||||
glutSolidDodecahedron@0
|
||||
glutSolidIcosahedron@0
|
||||
glutSolidOctahedron@0
|
||||
glutSolidSphere@16
|
||||
glutSolidTeapot@8
|
||||
glutSolidTetrahedron@0
|
||||
glutSolidTorus@24
|
||||
glutSpaceballButtonFunc@4
|
||||
glutSpaceballMotionFunc@4
|
||||
glutSpaceballRotateFunc@4
|
||||
glutSpecialFunc@4
|
||||
glutSpecialUpFunc@4
|
||||
glutStopVideoResizing@0
|
||||
glutStrokeCharacter@8
|
||||
glutStrokeLength@8
|
||||
glutStrokeWidth@8
|
||||
glutSwapBuffers@0
|
||||
glutTabletButtonFunc@4
|
||||
glutTabletMotionFunc@4
|
||||
glutTimerFunc@12
|
||||
glutUseLayer@4
|
||||
glutVideoPan@16
|
||||
glutVideoResize@16
|
||||
glutVideoResizeGet@4
|
||||
glutVisibilityFunc@4
|
||||
glutWarpPointer@8
|
||||
glutWindowStatusFunc@4
|
||||
glutWireCone@24
|
||||
glutWireCube@8
|
||||
glutWireDodecahedron@0
|
||||
glutWireIcosahedron@0
|
||||
glutWireOctahedron@0
|
||||
glutWireSphere@16
|
||||
glutWireTeapot@8
|
||||
glutWireTetrahedron@0
|
||||
glutWireTorus@24
|
|
@ -1,116 +0,0 @@
|
|||
LIBRARY glut32.dll
|
||||
EXPORTS
|
||||
glutAddMenuEntry@8
|
||||
glutAddSubMenu@8
|
||||
glutAttachMenu@4
|
||||
glutBitmapCharacter@8
|
||||
glutBitmapLength@8
|
||||
glutBitmapWidth@8
|
||||
glutButtonBoxFunc@4
|
||||
glutChangeToMenuEntry@12
|
||||
glutChangeToSubMenu@12
|
||||
glutCopyColormap@4
|
||||
glutCreateMenu@4
|
||||
glutCreateSubWindow@20
|
||||
glutCreateWindow@4
|
||||
glutDestroyMenu@4
|
||||
glutDestroyWindow@4
|
||||
glutDetachMenu@4
|
||||
glutDeviceGet@4
|
||||
glutDialsFunc@4
|
||||
glutDisplayFunc@4
|
||||
glutEnterGameMode@0
|
||||
glutEntryFunc@4
|
||||
glutEstablishOverlay@0
|
||||
glutExtensionSupported@4
|
||||
glutForceJoystickFunc@0
|
||||
glutFullScreen@0
|
||||
glutGameModeGet@4
|
||||
glutGameModeString@4
|
||||
glutGet@4
|
||||
glutGetColor@8
|
||||
glutGetMenu@0
|
||||
glutGetModifiers@0
|
||||
glutGetWindow@0
|
||||
glutHideOverlay@0
|
||||
glutHideWindow@0
|
||||
glutIconifyWindow@0
|
||||
glutIdleFunc@4
|
||||
glutIgnoreKeyRepeat@4
|
||||
glutInit@8
|
||||
glutInitDisplayMode@4
|
||||
glutInitDisplayString@4
|
||||
glutInitWindowPosition@8
|
||||
glutInitWindowSize@8
|
||||
glutJoystickFunc@8
|
||||
glutKeyboardFunc@4
|
||||
glutKeyboardUpFunc@4
|
||||
glutLayerGet@4
|
||||
glutLeaveGameMode@0
|
||||
glutMainLoop@0
|
||||
glutMenuStateFunc@4
|
||||
glutMenuStatusFunc@4
|
||||
glutMotionFunc@4
|
||||
glutMouseFunc@4
|
||||
glutOverlayDisplayFunc@4
|
||||
glutPassiveMotionFunc@4
|
||||
glutPopWindow@0
|
||||
glutPositionWindow@8
|
||||
glutPostOverlayRedisplay@0
|
||||
glutPostRedisplay@0
|
||||
glutPostWindowOverlayRedisplay@4
|
||||
glutPostWindowRedisplay@4
|
||||
glutPushWindow@0
|
||||
glutRemoveMenuItem@4
|
||||
glutRemoveOverlay@0
|
||||
glutReportErrors@0
|
||||
glutReshapeFunc@4
|
||||
glutReshapeWindow@8
|
||||
glutSetColor@16
|
||||
glutSetCursor@4
|
||||
glutSetIconTitle@4
|
||||
glutSetKeyRepeat@4
|
||||
glutSetMenu@4
|
||||
glutSetWindow@4
|
||||
glutSetWindowTitle@4
|
||||
glutSetupVideoResizing@0
|
||||
glutShowOverlay@0
|
||||
glutShowWindow@0
|
||||
glutSolidCone@24
|
||||
glutSolidCube@8
|
||||
glutSolidDodecahedron@0
|
||||
glutSolidIcosahedron@0
|
||||
glutSolidOctahedron@0
|
||||
glutSolidSphere@16
|
||||
glutSolidTeapot@8
|
||||
glutSolidTetrahedron@0
|
||||
glutSolidTorus@24
|
||||
glutSpaceballButtonFunc@4
|
||||
glutSpaceballMotionFunc@4
|
||||
glutSpaceballRotateFunc@4
|
||||
glutSpecialFunc@4
|
||||
glutSpecialUpFunc@4
|
||||
glutStopVideoResizing@0
|
||||
glutStrokeCharacter@8
|
||||
glutStrokeLength@8
|
||||
glutStrokeWidth@8
|
||||
glutSwapBuffers@0
|
||||
glutTabletButtonFunc@4
|
||||
glutTabletMotionFunc@4
|
||||
glutTimerFunc@12
|
||||
glutUseLayer@4
|
||||
glutVideoPan@16
|
||||
glutVideoResize@16
|
||||
glutVideoResizeGet@4
|
||||
glutVisibilityFunc@4
|
||||
glutWarpPointer@8
|
||||
glutWindowStatusFunc@4
|
||||
glutWireCone@24
|
||||
glutWireCube@8
|
||||
glutWireDodecahedron@0
|
||||
glutWireIcosahedron@0
|
||||
glutWireOctahedron@0
|
||||
glutWireSphere@16
|
||||
glutWireTeapot@8
|
||||
glutWireTetrahedron@0
|
||||
glutWireTorus@24
|
|
@ -1,6 +0,0 @@
|
|||
LIBRARY igmpagnt.dll
|
||||
EXPORTS
|
||||
SnmpExtensionClose@0
|
||||
SnmpExtensionInit@12
|
||||
SnmpExtensionQuery@16
|
||||
SnmpExtensionTrap@20
|
|
@ -1,114 +0,0 @@
|
|||
LIBRARY IMAGEHLP.DLL
|
||||
EXPORTS
|
||||
BindImage@12
|
||||
BindImageEx@20
|
||||
CheckSumMappedFile@16
|
||||
CopyPdb@12
|
||||
EnumerateLoadedModules32@12
|
||||
EnumerateLoadedModules64@12
|
||||
EnumerateLoadedModules@12
|
||||
FindDebugInfoFile@12
|
||||
FindDebugInfoFileEx@20
|
||||
FindExecutableImage@12
|
||||
GetImageConfigInformation@8
|
||||
GetImageUnusedHeaderBytes@8
|
||||
GetTimestampForLoadedLibrary@4
|
||||
ImageAddCertificate@12
|
||||
ImageDirectoryEntryToData@16
|
||||
ImageDirectoryEntryToDataEx@20
|
||||
ImageEnumerateCertificates@20
|
||||
ImageGetCertificateData@16
|
||||
ImageGetCertificateHeader@12
|
||||
ImageGetDigestStream@16
|
||||
ImageLoad@8
|
||||
ImageNtHeader@4
|
||||
ImageRemoveCertificate@8
|
||||
ImageRvaToSection@12
|
||||
ImageRvaToVa@16
|
||||
ImageUnload@4
|
||||
ImagehlpApiVersion@0
|
||||
ImagehlpApiVersionEx@4
|
||||
MakeSureDirectoryPathExists@4
|
||||
MapAndLoad@20
|
||||
MapDebugInformation32@16
|
||||
MapDebugInformation64@20
|
||||
MapDebugInformation@16
|
||||
MapFileAndCheckSumA@12
|
||||
MapFileAndCheckSumW@12
|
||||
MarkImageAsRunFromSwap@8
|
||||
ReBaseImage@44
|
||||
RemovePrivateCvSymbolic@12
|
||||
RemovePrivateCvSymbolicEx@16
|
||||
RemoveRelocations@4
|
||||
SearchTreeForFile@12
|
||||
SetImageConfigInformation@8
|
||||
SplitSymbols@16
|
||||
StackWalk32@36
|
||||
StackWalk64@36
|
||||
StackWalk@36
|
||||
SymCleanup@4
|
||||
SymEnumerateModules32@12
|
||||
SymEnumerateModules64@12
|
||||
SymEnumerateModules@12
|
||||
SymEnumerateSymbols32@16
|
||||
SymEnumerateSymbols64@20
|
||||
SymEnumerateSymbols@16
|
||||
SymFunctionTableAccess32@8
|
||||
SymFunctionTableAccess64@12
|
||||
SymFunctionTableAccess@8
|
||||
SymGetLineFromAddr32@16
|
||||
SymGetLineFromAddr64@20
|
||||
SymGetLineFromAddr@16
|
||||
SymGetLineFromName32@24
|
||||
SymGetLineFromName64@24
|
||||
SymGetLineFromName@24
|
||||
SymGetLineNext32@8
|
||||
SymGetLineNext64@8
|
||||
SymGetLineNext@8
|
||||
SymGetLinePrev32@8
|
||||
SymGetLinePrev64@8
|
||||
SymGetLinePrev@8
|
||||
SymGetModuleBase32@8
|
||||
SymGetModuleBase64@12
|
||||
SymGetModuleBase@8
|
||||
SymGetModuleInfo32@12
|
||||
SymGetModuleInfo64@16
|
||||
SymGetModuleInfo@12
|
||||
SymGetOptions@0
|
||||
SymGetSearchPath@12
|
||||
SymGetSymFromAddr32@16
|
||||
SymGetSymFromAddr64@20
|
||||
SymGetSymFromAddr@16
|
||||
SymGetSymFromName32@12
|
||||
SymGetSymFromName64@12
|
||||
SymGetSymFromName@12
|
||||
SymGetSymNext32@8
|
||||
SymGetSymNext64@8
|
||||
SymGetSymNext@8
|
||||
SymGetSymPrev32@8
|
||||
SymGetSymPrev64@8
|
||||
SymGetSymPrev@8
|
||||
SymInitialize@12
|
||||
SymLoadModule32@24
|
||||
SymLoadModule64@28
|
||||
SymLoadModule@24
|
||||
SymMatchFileName@16
|
||||
SymRegisterCallback32@12
|
||||
SymRegisterCallback64@16
|
||||
SymRegisterCallback@12
|
||||
SymSetOptions@4
|
||||
SymSetSearchPath@8
|
||||
SymUnDName32@12
|
||||
SymUnDName64@12
|
||||
SymUnDName@12
|
||||
SymUnloadModule32@8
|
||||
SymUnloadModule64@12
|
||||
SymUnloadModule@8
|
||||
TouchFileTimes@8
|
||||
UnDecorateSymbolName@16
|
||||
UnMapAndLoad@4
|
||||
UnmapDebugInformation32@4
|
||||
UnmapDebugInformation64@4
|
||||
UnmapDebugInformation@4
|
||||
UpdateDebugInfoFile@16
|
||||
UpdateDebugInfoFileEx@20
|
|
@ -1,77 +0,0 @@
|
|||
LIBRARY IMM32.DLL
|
||||
EXPORTS
|
||||
ImmAssociateContext@8
|
||||
ImmConfigureIMEA@16
|
||||
ImmConfigureIMEW@16
|
||||
ImmCreateContext@0
|
||||
ImmCreateIMCC@4
|
||||
ImmCreateSoftKeyboard@16
|
||||
ImmDestroyContext@4
|
||||
ImmDestroyIMCC@4
|
||||
ImmDestroySoftKeyboard@4
|
||||
ImmEnumRegisterWordA@24
|
||||
ImmEnumRegisterWordW@24
|
||||
ImmEscapeA@16
|
||||
ImmEscapeW@16
|
||||
ImmGenerateMessage@4
|
||||
ImmGetCandidateListA@16
|
||||
ImmGetCandidateListCountA@8
|
||||
ImmGetCandidateListCountW@8
|
||||
ImmGetCandidateListW@16
|
||||
ImmGetCandidateWindow@12
|
||||
ImmGetCompositionFontA@8
|
||||
ImmGetCompositionFontW@8
|
||||
ImmGetCompositionStringA@16
|
||||
ImmGetCompositionStringW@16
|
||||
ImmGetCompositionWindow@8
|
||||
ImmGetContext@4
|
||||
ImmGetConversionListA@24
|
||||
ImmGetConversionListW@24
|
||||
ImmGetConversionStatus@12
|
||||
ImmGetDefaultIMEWnd@4
|
||||
ImmGetDescriptionA@12
|
||||
ImmGetDescriptionW@12
|
||||
ImmGetGuideLineA@16
|
||||
ImmGetGuideLineW@16
|
||||
ImmGetHotKey@16
|
||||
ImmGetIMCCLockCount@4
|
||||
ImmGetIMCCSize@4
|
||||
ImmGetIMCLockCount@4
|
||||
ImmGetIMEFileNameA@12
|
||||
ImmGetIMEFileNameW@12
|
||||
ImmGetImeMenuItemsA@24
|
||||
ImmGetImeMenuItemsW@24
|
||||
ImmGetOpenStatus@4
|
||||
ImmGetProperty@8
|
||||
ImmGetRegisterWordStyleA@12
|
||||
ImmGetRegisterWordStyleW@12
|
||||
ImmGetStatusWindowPos@8
|
||||
ImmGetVirtualKey@4
|
||||
ImmInstallIMEA@8
|
||||
ImmInstallIMEW@8
|
||||
ImmIsIME@4
|
||||
ImmIsUIMessageA@16
|
||||
ImmIsUIMessageW@16
|
||||
ImmLockIMC@4
|
||||
ImmLockIMCC@4
|
||||
ImmNotifyIME@16
|
||||
ImmReSizeIMCC@8
|
||||
ImmRegisterWordA@16
|
||||
ImmRegisterWordW@16
|
||||
ImmReleaseContext@8
|
||||
ImmSetCandidateWindow@8
|
||||
ImmSetCompositionFontA@8
|
||||
ImmSetCompositionFontW@8
|
||||
ImmSetCompositionStringA@24
|
||||
ImmSetCompositionStringW@24
|
||||
ImmSetCompositionWindow@8
|
||||
ImmSetConversionStatus@12
|
||||
ImmSetHotKey@16
|
||||
ImmSetOpenStatus@8
|
||||
ImmSetStatusWindowPos@8
|
||||
ImmShowSoftKeyboard@8
|
||||
ImmSimulateHotKey@8
|
||||
ImmUnlockIMC@4
|
||||
ImmUnlockIMCC@4
|
||||
ImmUnregisterWordA@16
|
||||
ImmUnregisterWordW@16
|
|
@ -1,45 +0,0 @@
|
|||
LIBRARY IPHLPAPI.DLL
|
||||
EXPORTS
|
||||
AddIPAddress@20
|
||||
CreateIpForwardEntry@4
|
||||
CreateIpNetEntry@4
|
||||
CreateProxyArpEntry@12
|
||||
DeleteIPAddress@4
|
||||
DeleteIpForwardEntry@4
|
||||
DeleteIpNetEntry@4
|
||||
DeleteProxyArpEntry@12
|
||||
EnableRouter@8
|
||||
FlushIpNetTable@4
|
||||
GetAdapterIndex@8
|
||||
GetAdaptersInfo@8
|
||||
GetBestInterface@8
|
||||
GetBestRoute@12
|
||||
GetFriendlyIfIndex@4
|
||||
GetIcmpStatistics@4
|
||||
GetIfEntry@4
|
||||
GetIfTable@12
|
||||
GetInterfaceInfo@8
|
||||
GetIpAddrTable@12
|
||||
GetIpForwardTable@12
|
||||
GetIpNetTable@12
|
||||
GetIpStatistics@4
|
||||
GetNetworkParams@8
|
||||
GetNumberOfInterfaces@4
|
||||
GetPerAdapterInfo@12
|
||||
GetRTTAndHopCount@16
|
||||
GetTcpStatistics@4
|
||||
GetTcpTable@12
|
||||
GetUdpStatistics@4
|
||||
GetUdpTable@12
|
||||
GetUniDirectionalAdapterInfo@8
|
||||
IpReleaseAddress@4
|
||||
IpRenewAddress@4
|
||||
SendARP@16
|
||||
SetAdapterIpAddress@20
|
||||
SetIfEntry@4
|
||||
SetIpForwardEntry@4
|
||||
SetIpNetEntry@4
|
||||
SetIpStatistics@4
|
||||
SetIpTTL@4
|
||||
SetTcpEntry@4
|
||||
UnenableRouter@8
|
|
@ -1,49 +0,0 @@
|
|||
/* extern (library) versions of inline functions defined in winnt.h */
|
||||
|
||||
#if defined(__GNUC__)
|
||||
|
||||
void* GetCurrentFiber(void)
|
||||
{
|
||||
void* ret;
|
||||
__asm__ volatile (
|
||||
"movl %%fs:0x10,%0"
|
||||
: "=r" (ret) /* allow use of reg eax,ebx,ecx,edx,esi,edi */
|
||||
);
|
||||
return ret;
|
||||
}
|
||||
|
||||
void* GetFiberData(void)
|
||||
{
|
||||
void* ret;
|
||||
__asm__ volatile (
|
||||
"movl %%fs:0x10,%0\n"
|
||||
"movl (%0),%0"
|
||||
: "=r" (ret) /* allow use of reg eax,ebx,ecx,edx,esi,edi */
|
||||
);
|
||||
return ret;
|
||||
}
|
||||
|
||||
#elif !defined (__WATCOMC__)
|
||||
|
||||
void* GetCurrentFiber(void)
|
||||
{
|
||||
void* res;
|
||||
_asm {
|
||||
mov eax, dword ptr fs:0x10
|
||||
mov res, eax
|
||||
};
|
||||
return res;
|
||||
}
|
||||
|
||||
void* GetFiberData(void)
|
||||
{
|
||||
void* res;
|
||||
_asm {
|
||||
mov eax, dword ptr fs:0x10
|
||||
mov eax, [eax]
|
||||
mov res, eax
|
||||
};
|
||||
return res;
|
||||
}
|
||||
|
||||
#endif /* __GNUC__ */
|
|
@ -1,868 +0,0 @@
|
|||
LIBRARY KERNEL32.dll
|
||||
EXPORTS
|
||||
ActivateActCtx@8
|
||||
AddAtomA@4
|
||||
AddAtomW@4
|
||||
AddConsoleAliasA@12
|
||||
AddConsoleAliasW@12
|
||||
AddLocalAlternateComputerNameA@8
|
||||
AddLocalAlternateComputerNameW@8
|
||||
AddRefActCtx@4
|
||||
AddVectoredExceptionHandler@8
|
||||
AllocConsole@0
|
||||
AllocateUserPhysicalPages@12
|
||||
AreFileApisANSI@0
|
||||
AssignProcessToJobObject@8
|
||||
AttachConsole@4
|
||||
BackupRead@28
|
||||
BackupSeek@24
|
||||
BackupWrite@28
|
||||
BaseAttachCompleteThunk@0
|
||||
Beep@8
|
||||
BeginUpdateResourceA@8
|
||||
BeginUpdateResourceW@8
|
||||
BuildCommDCBA@8
|
||||
BuildCommDCBAndTimeoutsA@12
|
||||
BuildCommDCBAndTimeoutsW@12
|
||||
BuildCommDCBW@8
|
||||
CallNamedPipeA@28
|
||||
CallNamedPipeW@28
|
||||
CancelDeviceWakeupRequest@4
|
||||
CancelIo@4
|
||||
CancelTimerQueueTimer@8
|
||||
CancelWaitableTimer@4
|
||||
ChangeTimerQueueTimer@16
|
||||
CheckNameLegalDOS8Dot3A@20
|
||||
CheckNameLegalDOS8Dot3W@20
|
||||
CheckRemoteDebuggerPresent@8
|
||||
ClearCommBreak@4
|
||||
ClearCommError@12
|
||||
CloseConsoleHandle@4
|
||||
CloseHandle@4
|
||||
CloseProfileUserMapping@0
|
||||
CmdBatNotification@4
|
||||
CommConfigDialogA@12
|
||||
CommConfigDialogW@12
|
||||
CompareFileTime@8
|
||||
CompareStringA@24
|
||||
CompareStringW@24
|
||||
ConnectNamedPipe@8
|
||||
ConsoleMenuControl@12
|
||||
ContinueDebugEvent@12
|
||||
ConvertDefaultLocale@4
|
||||
ConvertFiberToThread@0
|
||||
ConvertThreadToFiber@4
|
||||
ConvertToGlobalHandle@4
|
||||
CopyFileA@12
|
||||
CopyFileW@12
|
||||
CopyFileExA@24
|
||||
CopyFileExW@24
|
||||
CreateActCtxA@4
|
||||
CreateActCtxW@4
|
||||
CreateConsoleScreenBuffer@20
|
||||
CreateDirectoryA@8
|
||||
CreateDirectoryExA@12
|
||||
CreateDirectoryExW@12
|
||||
CreateDirectoryW@8
|
||||
CreateEventA@16
|
||||
CreateEventW@16
|
||||
CreateFiber@12
|
||||
CreateFiberEx@12
|
||||
CreateFileA@28
|
||||
CreateFileMappingA@24
|
||||
CreateFileMappingW@24
|
||||
CreateFileW@28
|
||||
CreateHardLinkA@12
|
||||
CreateHardLinkW@12
|
||||
CreateIoCompletionPort@16
|
||||
CreateJobObjectA@8
|
||||
CreateJobObjectW@8
|
||||
CreateMailslotA@16
|
||||
CreateMailslotW@16
|
||||
CreateMutexA@12
|
||||
CreateMutexW@12
|
||||
CreateNamedPipeA@32
|
||||
CreateNamedPipeW@32
|
||||
CreatePipe@16
|
||||
CreateProcessA@40
|
||||
CreateProcessW@40
|
||||
CreateRemoteThread@28
|
||||
CreateSemaphoreA@16
|
||||
CreateSemaphoreW@16
|
||||
CreateTapePartition@16
|
||||
CreateThread@24
|
||||
CreateTimerQueue@0
|
||||
CreateTimerQueueTimer@28
|
||||
CreateToolhelp32Snapshot@8
|
||||
CreateVirtualBuffer@12
|
||||
CreateWaitableTimerA@12
|
||||
CreateWaitableTimerW@12
|
||||
DeactivateActCtx@8
|
||||
DebugActiveProcess@4
|
||||
DebugActiveProcessStop@4
|
||||
DebugBreak@0
|
||||
DebugBreakProcess@4
|
||||
DebugSetProcessKillOnExit@4
|
||||
DefineDosDeviceA@12
|
||||
DefineDosDeviceW@12
|
||||
DeleteAtom@4
|
||||
DeleteCriticalSection@4
|
||||
DeleteFiber@4
|
||||
DeleteFileA@4
|
||||
DeleteFileW@4
|
||||
DeleteTimerQueue@4
|
||||
DeleteTimerQueueEx@8
|
||||
DeleteTimerQueueTimer@12
|
||||
DeleteVolumeMountPointA@4
|
||||
DeleteVolumeMountPointW@4
|
||||
DeviceIoControl@32
|
||||
DisableThreadLibraryCalls@4
|
||||
DisconnectNamedPipe@4
|
||||
DnsHostnameToComputerNameA@12
|
||||
DnsHostnameToComputerNameW@12
|
||||
DosDateTimeToFileTime@12
|
||||
DuplicateConsoleHandle@16
|
||||
DuplicateHandle@28
|
||||
EndUpdateResourceA@8
|
||||
EndUpdateResourceW@8
|
||||
EnterCriticalSection@4
|
||||
EnumCalendarInfoA@16
|
||||
EnumCalendarInfoW@16
|
||||
EnumCalendarInfoExA@16
|
||||
EnumCalendarInfoExW@16
|
||||
EnumDateFormatsA@12
|
||||
EnumDateFormatsW@12
|
||||
EnumDateFormatsExA@12
|
||||
EnumDateFormatsExW@12
|
||||
EnumLanguageGroupLocalesA@16
|
||||
EnumLanguageGroupLocalesW@16
|
||||
EnumResourceLanguagesA@20
|
||||
EnumResourceLanguagesW@20
|
||||
EnumResourceNamesA@16
|
||||
EnumResourceNamesW@16
|
||||
EnumResourceTypesA@12
|
||||
EnumResourceTypesW@12
|
||||
EnumSystemCodePagesA@8
|
||||
EnumSystemCodePagesW@8
|
||||
EnumSystemGeoID@12
|
||||
EnumSystemLanguageGroupsA@12
|
||||
EnumSystemLanguageGroupsW@12
|
||||
EnumSystemLocalesA@8
|
||||
EnumSystemLocalesW@8
|
||||
EnumTimeFormatsA@12
|
||||
EnumTimeFormatsW@12
|
||||
EnumUILanguagesA@12
|
||||
EnumUILanguagesW@12
|
||||
EraseTape@12
|
||||
EscapeCommFunction@8
|
||||
ExitProcess@4
|
||||
ExitThread@4
|
||||
ExitVDM@8
|
||||
ExpandEnvironmentStringsA@12
|
||||
ExpandEnvironmentStringsW@12
|
||||
ExpungeConsoleCommandHistoryA@4
|
||||
ExpungeConsoleCommandHistoryW@4
|
||||
ExtendVirtualBuffer@8
|
||||
FatalAppExitA@8
|
||||
FatalAppExitW@8
|
||||
FatalExit@4
|
||||
FileTimeToDosDateTime@12
|
||||
FileTimeToLocalFileTime@8
|
||||
FileTimeToSystemTime@8
|
||||
FillConsoleOutputAttribute@20
|
||||
FillConsoleOutputCharacterA@20
|
||||
FillConsoleOutputCharacterW@20
|
||||
FindActCtxSectionGuid@20
|
||||
FindActCtxSectionStringA@20
|
||||
FindActCtxSectionStringW@20
|
||||
FindAtomA@4
|
||||
FindAtomW@4
|
||||
FindClose@4
|
||||
FindCloseChangeNotification@4
|
||||
FindFirstChangeNotificationA@12
|
||||
FindFirstChangeNotificationW@12
|
||||
FindFirstFileA@8
|
||||
FindFirstFileW@8
|
||||
FindFirstFileExA@24
|
||||
FindFirstFileExW@24
|
||||
FindFirstVolumeA@8
|
||||
FindFirstVolumeW@8
|
||||
FindFirstVolumeMountPointA@12
|
||||
FindFirstVolumeMountPointW@12
|
||||
FindNextChangeNotification@4
|
||||
FindNextFileA@8
|
||||
FindNextFileW@8
|
||||
FindNextVolumeA@12
|
||||
FindNextVolumeW@12
|
||||
FindNextVolumeMountPointA@12
|
||||
FindNextVolumeMountPointW@12
|
||||
FindResourceA@12
|
||||
FindResourceExA@16
|
||||
FindResourceExW@16
|
||||
FindResourceW@12
|
||||
FindVolumeClose@4
|
||||
FindVolumeMountPointClose@4
|
||||
FlushConsoleInputBuffer@4
|
||||
FlushFileBuffers@4
|
||||
FlushInstructionCache@12
|
||||
FlushViewOfFile@8
|
||||
FoldStringA@20
|
||||
FoldStringW@20
|
||||
FormatMessageA@28
|
||||
FormatMessageW@28
|
||||
FreeConsole@0
|
||||
FreeEnvironmentStringsA@4
|
||||
FreeEnvironmentStringsW@4
|
||||
FreeLibrary@4
|
||||
FreeLibraryAndExitThread@8
|
||||
FreeResource@4
|
||||
FreeUserPhysicalPages@12
|
||||
FreeVirtualBuffer@4
|
||||
GenerateConsoleCtrlEvent@8
|
||||
GetACP@0
|
||||
GetAtomNameA@12
|
||||
GetAtomNameW@12
|
||||
GetBinaryType@8
|
||||
GetBinaryTypeA@8
|
||||
GetBinaryTypeW@8
|
||||
GetCPInfo@8
|
||||
GetCPInfoExA@12
|
||||
GetCPInfoExW@12
|
||||
GetCalendarInfoA@24
|
||||
GetCalendarInfoW@24
|
||||
GetCommConfig@12
|
||||
GetCommMask@8
|
||||
GetCommModemStatus@8
|
||||
GetCommProperties@8
|
||||
GetCommState@8
|
||||
GetCommTimeouts@8
|
||||
GetCommandLineA@0
|
||||
GetCommandLineW@0
|
||||
GetCompressedFileSizeA@8
|
||||
GetCompressedFileSizeW@8
|
||||
GetComputerNameA@8
|
||||
GetComputerNameW@8
|
||||
GetComputerNameExA@12
|
||||
GetComputerNameExW@12
|
||||
GetConsoleAliasA@16
|
||||
GetConsoleAliasExesA@8
|
||||
GetConsoleAliasExesLengthA@0
|
||||
GetConsoleAliasExesLengthW@0
|
||||
GetConsoleAliasExesW@8
|
||||
GetConsoleAliasW@16
|
||||
GetConsoleAliasesA@12
|
||||
GetConsoleAliasesLengthA@4
|
||||
GetConsoleAliasesLengthW@4
|
||||
GetConsoleAliasesW@12
|
||||
GetConsoleCP@0
|
||||
GetConsoleCommandHistoryA@12
|
||||
GetConsoleCommandHistoryLengthA@4
|
||||
GetConsoleCommandHistoryLengthW@4
|
||||
GetConsoleCommandHistoryW@12
|
||||
GetConsoleCursorInfo@8
|
||||
GetConsoleDisplayMode@4
|
||||
GetConsoleFontInfo@16
|
||||
GetConsoleFontSize@8
|
||||
GetConsoleHardwareState@12
|
||||
GetConsoleInputExeNameA@8
|
||||
GetConsoleInputExeNameW@8
|
||||
GetConsoleInputWaitHandle@0
|
||||
GetConsoleKeyboardLayoutNameA@4
|
||||
GetConsoleKeyboardLayoutNameW@4
|
||||
GetConsoleMode@8
|
||||
GetConsoleOutputCP@0
|
||||
GetConsoleScreenBufferInfo@8
|
||||
GetConsoleTitleA@8
|
||||
GetConsoleTitleW@8
|
||||
GetConsoleWindow@0
|
||||
GetCurrencyFormatA@24
|
||||
GetCurrencyFormatW@24
|
||||
GetCurrentActCtx@4
|
||||
GetCurrentConsoleFont@12
|
||||
GetCurrentDirectoryA@8
|
||||
GetCurrentDirectoryW@8
|
||||
GetCurrentProcess@0
|
||||
GetCurrentProcessId@0
|
||||
GetCurrentThread@0
|
||||
GetCurrentThreadId@0
|
||||
GetDateFormatA@24
|
||||
GetDateFormatW@24
|
||||
GetDefaultCommConfigA@12
|
||||
GetDefaultCommConfigW@12
|
||||
GetDevicePowerState@4
|
||||
GetDiskFreeSpaceA@20
|
||||
GetDiskFreeSpaceW@20
|
||||
GetDiskFreeSpaceExA@16
|
||||
GetDiskFreeSpaceExW@16
|
||||
GetDllDirectoryA@8
|
||||
GetDllDirectoryW@8
|
||||
GetDriveTypeA@4
|
||||
GetDriveTypeW@4
|
||||
GetErrorMode@0
|
||||
GetEnvironmentStrings@0
|
||||
GetEnvironmentStringsA@0
|
||||
GetEnvironmentStringsW@0
|
||||
GetEnvironmentVariableA@12
|
||||
GetEnvironmentVariableW@12
|
||||
GetExitCodeProcess@8
|
||||
GetExitCodeThread@8
|
||||
GetFileAttributesA@4
|
||||
GetFileAttributesW@4
|
||||
GetFileAttributesExA@12
|
||||
GetFileAttributesExW@12
|
||||
GetFileInformationByHandle@8
|
||||
GetFileSize@8
|
||||
GetFileSizeEx@8
|
||||
GetFileTime@16
|
||||
GetFileType@4
|
||||
GetFirmwareEnvironmentVariableA@16
|
||||
GetFirmwareEnvironmentVariableW@16
|
||||
GetFullPathNameA@16
|
||||
GetFullPathNameW@16
|
||||
GetGeoInfoA@20
|
||||
GetGeoInfoW@20
|
||||
GetHandleInformation@8
|
||||
GetLargestConsoleWindowSize@4
|
||||
GetLastError@0
|
||||
GetLocalTime@4
|
||||
GetLocaleInfoA@16
|
||||
GetLocaleInfoW@16
|
||||
GetLogicalDriveStringsA@8
|
||||
GetLogicalDriveStringsW@8
|
||||
GetLogicalDrives@0
|
||||
GetLongPathNameA@12
|
||||
GetLongPathNameW@12
|
||||
GetMailslotInfo@20
|
||||
GetModuleFileNameA@12
|
||||
GetModuleFileNameW@12
|
||||
GetModuleHandleA@4
|
||||
GetModuleHandleW@4
|
||||
GetModuleHandleExA@12
|
||||
GetModuleHandleExW@12
|
||||
GetNamedPipeHandleStateA@28
|
||||
GetNamedPipeHandleStateW@28
|
||||
GetNamedPipeInfo@20
|
||||
GetNativeSystemInfo@4
|
||||
GetNextVDMCommand@4
|
||||
GetNumberFormatA@24
|
||||
GetNumberFormatW@24
|
||||
GetNumberOfConsoleFonts@0
|
||||
GetNumberOfConsoleInputEvents@8
|
||||
GetNumberOfConsoleMouseButtons@4
|
||||
GetOEMCP@0
|
||||
GetOverlappedResult@16
|
||||
GetPriorityClass@4
|
||||
GetPrivateProfileIntA@16
|
||||
GetPrivateProfileIntW@16
|
||||
GetPrivateProfileSectionA@16
|
||||
GetPrivateProfileSectionNamesA@12
|
||||
GetPrivateProfileSectionNamesW@12
|
||||
GetPrivateProfileSectionW@16
|
||||
GetPrivateProfileStringA@24
|
||||
GetPrivateProfileStringW@24
|
||||
GetPrivateProfileStructA@20
|
||||
GetPrivateProfileStructW@20
|
||||
GetProcAddress@8
|
||||
GetProcessAffinityMask@12
|
||||
GetProcessHandleCount@8
|
||||
GetProcessHeap@0
|
||||
GetProcessHeaps@8
|
||||
GetProcessId@4
|
||||
GetProcessIoCounters@8
|
||||
GetProcessPriorityBoost@8
|
||||
GetProcessShutdownParameters@8
|
||||
GetProcessTimes@20
|
||||
GetProcessVersion@4
|
||||
GetProcessWorkingSetSize@12
|
||||
GetProductName@8
|
||||
GetProfileIntA@12
|
||||
GetProfileIntW@12
|
||||
GetProfileSectionA@12
|
||||
GetProfileSectionW@12
|
||||
GetProfileStringA@20
|
||||
GetProfileStringW@20
|
||||
GetQueuedCompletionStatus@20
|
||||
GetShortPathNameA@12
|
||||
GetShortPathNameW@12
|
||||
GetStartupInfoA@4
|
||||
GetStartupInfoW@4
|
||||
GetStdHandle@4
|
||||
GetStringTypeA@20
|
||||
GetStringTypeExA@20
|
||||
GetStringTypeExW@20
|
||||
GetStringTypeW@16
|
||||
GetSystemDefaultLCID@0
|
||||
GetSystemDefaultLangID@0
|
||||
GetSystemDefaultUILanguage@0
|
||||
GetSystemDirectoryA@8
|
||||
GetSystemDirectoryW@8
|
||||
GetSystemInfo@4
|
||||
GetSystemPowerStatus@4
|
||||
GetSystemRegistryQuota@8
|
||||
GetSystemTime@4
|
||||
GetSystemTimes@12
|
||||
GetSystemTimeAdjustment@12
|
||||
GetSystemTimeAsFileTime@4
|
||||
GetSystemWindowsDirectoryA@8
|
||||
GetSystemWindowsDirectoryW@8
|
||||
GetSystemWow64DirectoryA@8
|
||||
GetSystemWow64DirectoryW@8
|
||||
GetTapeParameters@16
|
||||
GetTapePosition@20
|
||||
GetTapeStatus@4
|
||||
GetTempFileNameA@16
|
||||
GetTempFileNameW@16
|
||||
GetTempPathA@8
|
||||
GetTempPathW@8
|
||||
GetThreadContext@8
|
||||
GetThreadIOPendingFlag@8
|
||||
GetThreadLocale@0
|
||||
GetThreadPriority@4
|
||||
GetThreadPriorityBoost@8
|
||||
GetThreadSelectorEntry@12
|
||||
GetThreadTimes@20
|
||||
GetTickCount@0
|
||||
GetTimeFormatA@24
|
||||
GetTimeFormatW@24
|
||||
GetTimeZoneInformation@4
|
||||
GetUserDefaultLCID@0
|
||||
GetUserDefaultLangID@0
|
||||
GetUserDefaultUILanguage@0
|
||||
GetUserGeoID@12
|
||||
GetVDMCurrentDirectories@8
|
||||
GetVersion@0
|
||||
GetVersionExA@4
|
||||
GetVersionExW@4
|
||||
GetVolumeInformationA@32
|
||||
GetVolumeInformationW@32
|
||||
GetVolumeNameForVolumeMountPointA@12
|
||||
GetVolumeNameForVolumeMountPointW@12
|
||||
GetVolumePathNameA@12
|
||||
GetVolumePathNameW@12
|
||||
GetVolumePathNamesForVolumeNameA@16
|
||||
GetVolumePathNamesForVolumeNameW@16
|
||||
GetWindowsDirectoryA@8
|
||||
GetWindowsDirectoryW@8
|
||||
GetWriteWatch@24
|
||||
GlobalAddAtomA@4
|
||||
GlobalAddAtomW@4
|
||||
GlobalAlloc@8
|
||||
GlobalCompact@4
|
||||
GlobalDeleteAtom@4
|
||||
GlobalFindAtomA@4
|
||||
GlobalFindAtomW@4
|
||||
GlobalFix@4
|
||||
GlobalFlags@4
|
||||
GlobalFree@4
|
||||
GlobalGetAtomNameA@12
|
||||
GlobalGetAtomNameW@12
|
||||
GlobalHandle@4
|
||||
GlobalLock@4
|
||||
GlobalMemoryStatus@4
|
||||
GlobalMemoryStatusEx@4
|
||||
GlobalMemoryStatusVlm@4
|
||||
GlobalReAlloc@12
|
||||
GlobalSize@4
|
||||
GlobalUnWire@4
|
||||
GlobalUnfix@4
|
||||
GlobalUnlock@4
|
||||
GlobalWire@4
|
||||
Heap32First@12
|
||||
Heap32ListFirst@8
|
||||
Heap32ListNext@8
|
||||
Heap32Next@4
|
||||
HeapAlloc@12
|
||||
HeapCompact@8
|
||||
HeapCreate@12
|
||||
HeapCreateTagsW@16
|
||||
HeapDestroy@4
|
||||
HeapExtend@16
|
||||
HeapFree@12
|
||||
HeapLock@4
|
||||
HeapQueryInformation@20
|
||||
HeapQueryTagW@20
|
||||
HeapReAlloc@16
|
||||
HeapSetInformation@16
|
||||
HeapSize@12
|
||||
HeapSummary@12
|
||||
HeapUnlock@4
|
||||
HeapUsage@20
|
||||
HeapValidate@12
|
||||
HeapWalk@8
|
||||
InitAtomTable@4
|
||||
InitializeCriticalSection@4
|
||||
InitializeCriticalSectionAndSpinCount@8
|
||||
InitializeSListHead@4
|
||||
InterlockedCompareExchange@12
|
||||
InterlockedDecrement@4
|
||||
InterlockedExchange@8
|
||||
InterlockedExchangeAdd@8
|
||||
InterlockedFlushSList@4
|
||||
InterlockedIncrement@4
|
||||
InterlockedPopEntrySList@4
|
||||
InterlockedPushEntrySList@8
|
||||
InvalidateConsoleDIBits@8
|
||||
IsBadCodePtr@4
|
||||
IsBadHugeReadPtr@8
|
||||
IsBadHugeWritePtr@8
|
||||
IsBadReadPtr@8
|
||||
IsBadStringPtrA@8
|
||||
IsBadStringPtrW@8
|
||||
IsBadWritePtr@8
|
||||
IsDBCSLeadByte@4
|
||||
IsDBCSLeadByteEx@8
|
||||
IsDebuggerPresent@0
|
||||
IsProcessInJob@12
|
||||
IsProcessorFeaturePresent@4
|
||||
IsSystemResumeAutomatic@0
|
||||
IsValidCodePage@4
|
||||
IsValidLanguageGroup@8
|
||||
IsValidLocale@8
|
||||
IsWow64Process@8
|
||||
LCMapStringA@24
|
||||
LCMapStringW@24
|
||||
LeaveCriticalSection@4
|
||||
LoadLibraryA@4
|
||||
LoadLibraryExA@12
|
||||
LoadLibraryExW@12
|
||||
LoadLibraryW@4
|
||||
LoadModule@8
|
||||
LoadResource@8
|
||||
LocalAlloc@8
|
||||
LocalCompact@4
|
||||
LocalFileTimeToFileTime@8
|
||||
LocalFlags@4
|
||||
LocalFree@4
|
||||
LocalHandle@4
|
||||
LocalLock@4
|
||||
LocalReAlloc@12
|
||||
LocalShrink@8
|
||||
LocalSize@4
|
||||
LocalUnlock@4
|
||||
LockFile@20
|
||||
LockFileEx@24
|
||||
LockResource@4
|
||||
MapUserPhysicalPages@12
|
||||
MapUserPhysicalPagesScatter@12
|
||||
MapViewOfFile@20
|
||||
MapViewOfFileEx@24
|
||||
MapViewOfFileVlm@28
|
||||
Module32First@8
|
||||
Module32FirstW@8
|
||||
Module32Next@8
|
||||
Module32NextW@8
|
||||
MoveFileA@8
|
||||
MoveFileW@8
|
||||
MoveFileExA@12
|
||||
MoveFileExW@12
|
||||
MoveFileWithProgressA@20
|
||||
MoveFileWithProgressW@20
|
||||
MulDiv@12
|
||||
MultiByteToWideChar@24
|
||||
OpenConsoleW@16
|
||||
OpenEventA@12
|
||||
OpenEventW@12
|
||||
OpenFile@12
|
||||
OpenFileMappingA@12
|
||||
OpenFileMappingW@12
|
||||
OpenJobObjectA@12
|
||||
OpenJobObjectW@12
|
||||
OpenMutexA@12
|
||||
OpenMutexW@12
|
||||
OpenProcess@12
|
||||
OpenProfileUserMapping@0
|
||||
OpenSemaphoreA@12
|
||||
OpenSemaphoreW@12
|
||||
OpenThread@12
|
||||
OpenWaitableTimerA@12
|
||||
OpenWaitableTimerW@12
|
||||
OutputDebugStringA@4
|
||||
OutputDebugStringW@4
|
||||
PeekConsoleInputA@16
|
||||
PeekConsoleInputW@16
|
||||
PeekNamedPipe@24
|
||||
PostQueuedCompletionStatus@16
|
||||
PrepareTape@12
|
||||
Process32First@8
|
||||
Process32FirstW@8
|
||||
Process32Next@8
|
||||
Process32NextW@8
|
||||
ProcessIdToSessionId@8
|
||||
PulseEvent@4
|
||||
PurgeComm@8
|
||||
QueryActCtxW@28
|
||||
QueryDosDeviceA@12
|
||||
QueryDosDeviceW@12
|
||||
QueryInformationJobObject@20
|
||||
QueryMemoryResourceNotification@8
|
||||
QueryPerformanceCounter@4
|
||||
QueryPerformanceFrequency@4
|
||||
QueryWin31IniFilesMappedToRegistry@16
|
||||
QueueUserAPC@12
|
||||
QueueUserWorkItem@12
|
||||
RaiseException@16
|
||||
ReadConsoleA@20
|
||||
ReadConsoleInputA@16
|
||||
ReadConsoleInputW@16
|
||||
ReadConsoleInputExA@20
|
||||
ReadConsoleInputExW@20
|
||||
ReadConsoleOutputA@20
|
||||
ReadConsoleOutputAttribute@20
|
||||
ReadConsoleOutputCharacterA@20
|
||||
ReadConsoleOutputCharacterW@20
|
||||
ReadConsoleOutputW@20
|
||||
ReadConsoleW@20
|
||||
ReadDirectoryChangesW@32
|
||||
ReadFile@20
|
||||
ReadFileEx@20
|
||||
ReadFileScatter@20
|
||||
ReadFileVlm@20
|
||||
ReadProcessMemory@20
|
||||
ReadProcessMemoryVlm@20
|
||||
RegisterConsoleVDM@44
|
||||
RegisterWaitForInputIdle@4
|
||||
RegisterWaitForSingleObject@16
|
||||
RegisterWowBaseHandlers@4
|
||||
RegisterWowExec@4
|
||||
ReleaseActCtx@4
|
||||
ReleaseMutex@4
|
||||
ReleaseSemaphore@12
|
||||
RemoveDirectoryA@4
|
||||
RemoveDirectoryW@4
|
||||
RemoveVectoredExceptionHandler@4
|
||||
ReplaceFile@24
|
||||
ReplaceFileA@24
|
||||
ReplaceFileW@24
|
||||
RequestWakeupLatency@4
|
||||
ResetEvent@4
|
||||
ResetWriteWatch@8
|
||||
RestoreLastError@4
|
||||
ResumeThread@4
|
||||
RtlFillMemory@12
|
||||
RtlMoveMemory@12
|
||||
RtlUnwind@16
|
||||
RtlZeroMemory@8
|
||||
ScrollConsoleScreenBufferA@20
|
||||
ScrollConsoleScreenBufferW@20
|
||||
SearchPathA@24
|
||||
SearchPathW@24
|
||||
SetCalendarInfoA@16
|
||||
SetCalendarInfoW@16
|
||||
SetCommBreak@4
|
||||
SetCommConfig@12
|
||||
SetCommMask@8
|
||||
SetCommState@8
|
||||
SetCommTimeouts@8
|
||||
SetComputerNameA@4
|
||||
SetComputerNameW@4
|
||||
SetComputerNameExA@8
|
||||
SetComputerNameExW@8
|
||||
SetConsoleActiveScreenBuffer@4
|
||||
SetConsoleCP@4
|
||||
SetConsoleCommandHistoryMode@4
|
||||
SetConsoleCtrlHandler@8
|
||||
SetConsoleCursor@8
|
||||
SetConsoleCursorInfo@8
|
||||
SetConsoleCursorPosition@8
|
||||
SetConsoleDisplayMode@12
|
||||
SetConsoleFont@8
|
||||
SetConsoleHardwareState@12
|
||||
SetConsoleIcon@4
|
||||
SetConsoleInputExeNameA@4
|
||||
SetConsoleInputExeNameW@4
|
||||
SetConsoleKeyShortcuts@16
|
||||
SetConsoleMaximumWindowSize@8
|
||||
SetConsoleMenuClose@4
|
||||
SetConsoleMode@8
|
||||
SetConsoleNumberOfCommandsA@8
|
||||
SetConsoleNumberOfCommandsW@8
|
||||
SetConsoleOutputCP@4
|
||||
SetConsolePalette@12
|
||||
SetConsoleScreenBufferSize@8
|
||||
SetConsoleTextAttribute@8
|
||||
SetConsoleTitleA@4
|
||||
SetConsoleTitleW@4
|
||||
SetConsoleWindowInfo@12
|
||||
SetCriticalSectionSpinCount@8
|
||||
SetCurrentDirectoryA@4
|
||||
SetCurrentDirectoryW@4
|
||||
SetDefaultCommConfigA@12
|
||||
SetDefaultCommConfigW@12
|
||||
SetDllDirectoryA@4
|
||||
SetDllDirectoryW@4
|
||||
SetEndOfFile@4
|
||||
SetEnvironmentVariableA@8
|
||||
SetEnvironmentVariableW@8
|
||||
SetErrorMode@4
|
||||
SetEvent@4
|
||||
SetFileApisToANSI@0
|
||||
SetFileApisToOEM@0
|
||||
SetFileAttributesA@8
|
||||
SetFileAttributesW@8
|
||||
SetFilePointer@16
|
||||
SetFilePointerEx@20
|
||||
SetFileShortNameA@8
|
||||
SetFileShortNameW@8
|
||||
SetFileTime@16
|
||||
SetFileValidData@12
|
||||
SetHandleCount@4
|
||||
SetHandleInformation@12
|
||||
SetInformationJobObject@16
|
||||
SetLastConsoleEventActive@0
|
||||
SetLastError@4
|
||||
SetLocalTime@4
|
||||
SetLocaleInfoA@12
|
||||
SetLocaleInfoW@12
|
||||
SetMailslotInfo@8
|
||||
SetNamedPipeHandleState@16
|
||||
SetPriorityClass@8
|
||||
SetProcessAffinityMask@8
|
||||
SetProcessPriorityBoost@8
|
||||
SetProcessShutdownParameters@8
|
||||
SetProcessWorkingSetSize@12
|
||||
SetStdHandle@8
|
||||
SetSystemPowerState@8
|
||||
SetSystemTime@4
|
||||
SetSystemTimeAdjustment@8
|
||||
SetTapeParameters@12
|
||||
SetTapePosition@24
|
||||
SetThreadAffinityMask@8
|
||||
SetThreadContext@8
|
||||
SetThreadExecutionState@4
|
||||
SetThreadIdealProcessor@8
|
||||
SetThreadLocale@4
|
||||
SetThreadPriority@8
|
||||
SetThreadPriorityBoost@8
|
||||
SetTimeZoneInformation@4
|
||||
SetTimerQueueTimer@24
|
||||
SetUnhandledExceptionFilter@4
|
||||
SetUserGeoID@4
|
||||
SetVDMCurrentDirectories@8
|
||||
SetVolumeLabelA@8
|
||||
SetVolumeLabelW@8
|
||||
SetVolumeMountPointA@8
|
||||
SetVolumeMountPointW@8
|
||||
SetWaitableTimer@24
|
||||
SetupComm@12
|
||||
ShowConsoleCursor@8
|
||||
SignalObjectAndWait@16
|
||||
SizeofResource@8
|
||||
Sleep@4
|
||||
SleepEx@8
|
||||
SuspendThread@4
|
||||
SwitchToFiber@4
|
||||
SwitchToThread@0
|
||||
SystemTimeToFileTime@8
|
||||
SystemTimeToTzSpecificLocalTime@12
|
||||
TerminateJobObject@8
|
||||
TerminateProcess@8
|
||||
TerminateThread@8
|
||||
Thread32First@8
|
||||
Thread32Next@8
|
||||
TlsAlloc@0
|
||||
TlsFree@4
|
||||
TlsGetValue@4
|
||||
TlsSetValue@8
|
||||
TransactNamedPipe@28
|
||||
TransmitCommChar@8
|
||||
TrimVirtualBuffer@4
|
||||
TryEnterCriticalSection@4
|
||||
UTRegister@28
|
||||
UTUnRegister@4
|
||||
UnhandledExceptionFilter@4
|
||||
UnlockFile@20
|
||||
UnlockFileEx@20
|
||||
UnmapViewOfFile@4
|
||||
UnmapViewOfFileVlm@4
|
||||
UnregisterWait@4
|
||||
UnregisterWaitEx@8
|
||||
UpdateResourceA@24
|
||||
UpdateResourceW@24
|
||||
VDMConsoleOperation@8
|
||||
VDMOperationStarted@4
|
||||
VerLanguageNameA@12
|
||||
VerLanguageNameW@12
|
||||
VerSetConditionMask@13
|
||||
VerifyConsoleIoHandle@4
|
||||
VerifyVersionInfoA@16
|
||||
VerifyVersionInfoW@16
|
||||
VirtualAlloc@16
|
||||
VirtualAllocEx@20
|
||||
VirtualAllocVlm@24
|
||||
VirtualBufferExceptionHandler@12
|
||||
VirtualFree@12
|
||||
VirtualFreeEx@16
|
||||
VirtualFreeVlm@20
|
||||
VirtualLock@8
|
||||
VirtualProtect@16
|
||||
VirtualProtectEx@20
|
||||
VirtualProtectVlm@24
|
||||
VirtualQuery@12
|
||||
VirtualQueryEx@16
|
||||
VirtualQueryVlm@16
|
||||
VirtualUnlock@8
|
||||
WaitCommEvent@12
|
||||
WaitForDebugEvent@8
|
||||
WaitForMultipleObjects@16
|
||||
WaitForMultipleObjectsEx@20
|
||||
WaitForSingleObject@8
|
||||
WaitForSingleObjectEx@12
|
||||
WaitNamedPipeA@8
|
||||
WaitNamedPipeW@8
|
||||
WideCharToMultiByte@32
|
||||
WinExec@8
|
||||
WriteConsoleA@20
|
||||
WriteConsoleInputA@16
|
||||
WriteConsoleInputVDMA@16
|
||||
WriteConsoleInputVDMW@16
|
||||
WriteConsoleInputW@16
|
||||
WriteConsoleOutputA@20
|
||||
WriteConsoleOutputAttribute@20
|
||||
WriteConsoleOutputCharacterA@20
|
||||
WriteConsoleOutputCharacterW@20
|
||||
WriteConsoleOutputW@20
|
||||
WriteConsoleW@20
|
||||
WriteFile@20
|
||||
WriteFileEx@20
|
||||
WriteFileGather@20
|
||||
WriteFileVlm@20
|
||||
WritePrivateProfileSectionA@12
|
||||
WritePrivateProfileSectionW@12
|
||||
WritePrivateProfileStringA@16
|
||||
WritePrivateProfileStringW@16
|
||||
WritePrivateProfileStructA@20
|
||||
WritePrivateProfileStructW@20
|
||||
WriteProcessMemory@20
|
||||
WriteProcessMemoryVlm@20
|
||||
WriteProfileSectionA@8
|
||||
WriteProfileSectionW@8
|
||||
WriteProfileStringA@12
|
||||
WriteProfileStringW@12
|
||||
WriteTapemark@16
|
||||
ZombifyActCtx@4
|
||||
_hread@12
|
||||
_hwrite@12
|
||||
_lclose@4
|
||||
_lcreat@8
|
||||
_llseek@12
|
||||
_lopen@8
|
||||
_lread@12
|
||||
_lwrite@12
|
||||
lstrcat@8
|
||||
lstrcatA@8
|
||||
lstrcatW@8
|
||||
lstrcmp@8
|
||||
lstrcmpA@8
|
||||
lstrcmpW@8
|
||||
lstrcmpi@8
|
||||
lstrcmpiA@8
|
||||
lstrcmpiW@8
|
||||
lstrcpy@8
|
||||
lstrcpyA@8
|
||||
lstrcpyW@8
|
||||
lstrcpyn@12
|
||||
lstrcpynA@12
|
||||
lstrcpynW@12
|
||||
lstrlen@4
|
||||
lstrlenA@4
|
||||
lstrlenW@4
|
|
@ -1,118 +0,0 @@
|
|||
/*
|
||||
largeint.c
|
||||
|
||||
Large (64 bits) integer arithmetics library
|
||||
|
||||
Written by Anders Norlander <anorland@hem2.passagen.se>
|
||||
|
||||
This file is part of a free library for the Win32 API.
|
||||
|
||||
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.
|
||||
|
||||
*/
|
||||
|
||||
#define __COMPILING_LARGEINT
|
||||
|
||||
#include <largeint.h>
|
||||
|
||||
__int64 WINAPI
|
||||
LargeIntegerAdd (__int64 i1, __int64 i2)
|
||||
{
|
||||
return i1 + i2;
|
||||
}
|
||||
|
||||
__int64 WINAPI
|
||||
LargeIntegerSubtract (__int64 i1, __int64 i2)
|
||||
{
|
||||
return i1 - i2;
|
||||
}
|
||||
|
||||
__int64 WINAPI
|
||||
LargeIntegerArithmeticShift (__int64 i, int n)
|
||||
{
|
||||
return i >> n;
|
||||
}
|
||||
|
||||
__int64 WINAPI
|
||||
LargeIntegerShiftLeft (__int64 i, int n)
|
||||
{
|
||||
return i << n;
|
||||
}
|
||||
|
||||
__int64 WINAPI
|
||||
LargeIntegerShiftRight (__int64 i, int n)
|
||||
{
|
||||
return i >> n;
|
||||
}
|
||||
|
||||
__int64 WINAPI
|
||||
LargeIntegerNegate (__int64 i)
|
||||
{
|
||||
return -i;
|
||||
}
|
||||
|
||||
__int64 WINAPI
|
||||
ConvertLongToLargeInteger (LONG l)
|
||||
{
|
||||
return (__int64) l;
|
||||
}
|
||||
|
||||
__int64 WINAPI
|
||||
ConvertUlongToLargeInteger (ULONG ul)
|
||||
{
|
||||
return _toi(_toui(ul));
|
||||
}
|
||||
|
||||
__int64 WINAPI
|
||||
EnlargedIntegerMultiply (LONG l1, LONG l2)
|
||||
{
|
||||
return _toi(l1) * _toi(l2);
|
||||
}
|
||||
|
||||
__int64 WINAPI
|
||||
EnlargedUnsignedMultiply (ULONG ul1, ULONG ul2)
|
||||
{
|
||||
return _toi(_toui(ul1) * _toui(ul2));
|
||||
}
|
||||
|
||||
__int64 WINAPI
|
||||
ExtendedIntegerMultiply (__int64 i, LONG l)
|
||||
{
|
||||
return i * _toi(l);
|
||||
}
|
||||
|
||||
__int64 WINAPI
|
||||
LargeIntegerMultiply (__int64 i1, __int64 i2)
|
||||
{
|
||||
return i1 * i2;
|
||||
}
|
||||
|
||||
__int64 WINAPI LargeIntegerDivide (__int64 i1, __int64 i2, __int64 *remainder)
|
||||
{
|
||||
if (remainder)
|
||||
*remainder = i1 % i2;
|
||||
return i1 / i2;
|
||||
}
|
||||
|
||||
ULONG WINAPI
|
||||
EnlargedUnsignedDivide (unsigned __int64 i1, ULONG i2, PULONG remainder)
|
||||
{
|
||||
if (remainder)
|
||||
*remainder = i1 % _toi(i2);
|
||||
return i1 / _toi(i2);
|
||||
}
|
||||
__int64 WINAPI
|
||||
ExtendedLargeIntegerDivide (__int64 i1, ULONG i2, PULONG remainder)
|
||||
{
|
||||
if (remainder)
|
||||
*remainder = i1 % _toi(i2);
|
||||
return i1 / _toi(i2);
|
||||
}
|
||||
|
||||
/* FIXME: what is this function supposed to do? */
|
||||
__int64 WINAPI ExtendedMagicDivide (__int64 i1, __int64 i2, int n)
|
||||
{
|
||||
return 0;
|
||||
}
|
|
@ -1,14 +0,0 @@
|
|||
LIBRARY LZ32.DLL
|
||||
EXPORTS
|
||||
CopyLZFile@8
|
||||
GetExpandedNameA@8
|
||||
GetExpandedNameW@8
|
||||
LZClose@4
|
||||
LZCopy@8
|
||||
LZDone@0
|
||||
LZInit@4
|
||||
LZOpenFileA@12
|
||||
LZOpenFileW@12
|
||||
LZRead@12
|
||||
LZSeek@12
|
||||
LZStart@0
|
|
@ -1,164 +0,0 @@
|
|||
LIBRARY MAPI32.DLL
|
||||
EXPORTS
|
||||
BuildDisplayTable@40
|
||||
CbOfEncoded@4
|
||||
CchOfEncoding@4
|
||||
ChangeIdleRoutine@28
|
||||
CloseIMsgSession@4
|
||||
CreateIProp@24
|
||||
CreateTable@36
|
||||
DeinitMapiUtil@0
|
||||
DeregisterIdleRoutine@4
|
||||
EnableIdleRoutine@8
|
||||
EncodeID@12
|
||||
FBadColumnSet@4
|
||||
FBadEntryList@4
|
||||
FBadProp@4
|
||||
FBadPropTag@4
|
||||
FBadRestriction@4
|
||||
FBadRglpNameID@8
|
||||
FBadRglpszA@8
|
||||
FBadRglpszW@8
|
||||
FBadRow@4
|
||||
FBadRowSet@4
|
||||
FBadSortOrderSet@4
|
||||
FBinFromHex@8
|
||||
FDecodeID@12
|
||||
FEqualNames@8
|
||||
FPropCompareProp@12
|
||||
FPropContainsProp@12
|
||||
FPropExists@8
|
||||
FreePadrlist@4
|
||||
FreeProws@4
|
||||
FtAdcFt@20
|
||||
FtAddFt@16
|
||||
FtDivFtBogus@20
|
||||
FtMulDw@12
|
||||
FtMulDwDw@8
|
||||
FtNegFt@8
|
||||
FtSubFt@16
|
||||
FtgRegisterIdleRoutine@20
|
||||
GetAttribIMsgOnIStg@12
|
||||
GetTnefStreamCodepage
|
||||
GetTnefStreamCodepage@12
|
||||
HexFromBin@12
|
||||
HrAddColumns@16
|
||||
HrAddColumnsEx@20
|
||||
HrAllocAdviseSink@12
|
||||
HrComposeEID@28
|
||||
HrComposeMsgID@24
|
||||
HrDecomposeEID@28
|
||||
HrDecomposeMsgID@24
|
||||
HrDispatchNotifications@4
|
||||
HrEntryIDFromSz@12
|
||||
HrGetOneProp@12
|
||||
HrIStorageFromStream@16
|
||||
HrQueryAllRows@24
|
||||
HrSetOneProp@8
|
||||
HrSzFromEntryID@12
|
||||
HrThisThreadAdviseSink@8
|
||||
HrValidateIPMSubtree@20
|
||||
HrValidateParameters@8
|
||||
InstallFilterHook@4
|
||||
IsBadBoundedStringPtr@8
|
||||
LAUNCHWIZARD
|
||||
LPropCompareProp@8
|
||||
LaunchWizard@20
|
||||
LpValFindProp@12
|
||||
MAPI_NSCP_SynchronizeClient@8
|
||||
MAPIAddress@44
|
||||
MAPIAdminProfiles
|
||||
MAPIAdminProfiles@8
|
||||
MAPIAllocateBuffer
|
||||
MAPIAllocateBuffer@8
|
||||
MAPIAllocateMore
|
||||
MAPIAllocateMore@12
|
||||
MAPIDeinitIdle@0
|
||||
MAPIDeleteMail@20
|
||||
MAPIDetails@20
|
||||
MAPIFindNext@28
|
||||
MAPIFreeBuffer
|
||||
MAPIFreeBuffer@4
|
||||
MAPIGetDefaultMalloc@0
|
||||
MAPIGetNetscapeVersion@0
|
||||
MAPIInitIdle@4
|
||||
MAPIInitialize
|
||||
MAPIInitialize@4
|
||||
MAPILogoff@16
|
||||
MAPILogon@24
|
||||
MAPILogonEx
|
||||
MAPILogonEx@20
|
||||
MAPIOpenFormMgr
|
||||
MAPIOpenFormMgr@8
|
||||
MAPIOpenLocalFormContainer
|
||||
MAPIOpenLocalFormContainer@4
|
||||
MAPIReadMail@24
|
||||
MAPIResolveName@24
|
||||
MAPISaveMail@24
|
||||
MAPISendDocuments@20
|
||||
MAPISendMail
|
||||
MAPISendMail@20
|
||||
MAPIUninitialize
|
||||
MAPIUninitialize@0
|
||||
MNLS_CompareStringW@24
|
||||
MNLS_IsBadStringPtrW@8
|
||||
MNLS_MultiByteToWideChar@24
|
||||
MNLS_WideCharToMultiByte@32
|
||||
MNLS_lstrcmpW@8
|
||||
MNLS_lstrcpyW@8
|
||||
MNLS_lstrlenW@4
|
||||
MapStorageSCode@4
|
||||
OpenIMsgOnIStg@44
|
||||
OpenIMsgSession@12
|
||||
OpenStreamOnFile
|
||||
OpenStreamOnFile@24
|
||||
OpenTnefStream
|
||||
OpenTnefStream@28
|
||||
OpenTnefStreamEx
|
||||
OpenTnefStreamEx@32
|
||||
PRProviderInit
|
||||
PpropFindProp@12
|
||||
PropCopyMore@16
|
||||
RTFSync
|
||||
RTFSync@12
|
||||
ScBinFromHexBounded@12
|
||||
ScCopyNotifications@16
|
||||
ScCopyProps@16
|
||||
ScCountNotifications@12
|
||||
ScCountProps@12
|
||||
ScCreateConversationIndex@16
|
||||
ScDupPropset@16
|
||||
ScGenerateMuid@4
|
||||
ScInitMapiUtil@4
|
||||
ScLocalPathFromUNC@12
|
||||
ScMAPIXFromCMC
|
||||
ScMAPIXFromSMAPI
|
||||
ScRelocNotifications@20
|
||||
ScRelocProps@20
|
||||
ScSplEntry
|
||||
ScUNCFromLocalPath@12
|
||||
SetAttribIMsgOnIStg@16
|
||||
SwapPlong@8
|
||||
SwapPword@8
|
||||
SzFindCh@8
|
||||
SzFindLastCh@8
|
||||
SzFindSz@8
|
||||
UFromSz@4
|
||||
UNKOBJ_COFree@8
|
||||
UNKOBJ_Free@8
|
||||
UNKOBJ_FreeRows@8
|
||||
UNKOBJ_ScAllocate@12
|
||||
UNKOBJ_ScAllocateMore@16
|
||||
UNKOBJ_ScCOAllocate@12
|
||||
UNKOBJ_ScCOReallocate@12
|
||||
UNKOBJ_ScSzFromIdsAlloc@20
|
||||
UlAddRef@4
|
||||
UlFromSzHex@4
|
||||
UlPropSize@4
|
||||
UlRelease@4
|
||||
WrapCompressedRTFStream
|
||||
WrapCompressedRTFStream@12
|
||||
WrapProgress@20
|
||||
WrapStoreEntryID@24
|
||||
__CPPValidateParameters@8
|
||||
__ValidateParameters@8
|
|
@ -1,12 +0,0 @@
|
|||
LIBRARY MFCUIA32.DLL
|
||||
EXPORTS
|
||||
OleUIAddVerbMenu@36
|
||||
OleUIBusy@4
|
||||
OleUICanConvertOrActivateAs@12
|
||||
OleUIChangeIcon@4
|
||||
OleUIConvert@4
|
||||
OleUIEditLinks@4
|
||||
OleUIInsertObject@4
|
||||
OleUIPasteSpecial@4
|
||||
OleUIPromptUser
|
||||
OleUIUpdateLinks@16
|
|
@ -1,14 +0,0 @@
|
|||
LIBRARY MGMTAPI.DLL
|
||||
EXPORTS
|
||||
SnmpMgrClose@4
|
||||
SnmpMgrCtl@28
|
||||
SnmpMgrGetTrap@24
|
||||
SnmpMgrGetTrapEx@32
|
||||
;SnmpMgrMIB2Disk@8
|
||||
SnmpMgrOidToStr@8
|
||||
SnmpMgrOpen@16
|
||||
SnmpMgrRequest@20
|
||||
SnmpMgrStrToOid@8
|
||||
SnmpMgrTrapListen@4
|
||||
serverTrapThread@4
|
||||
;dbginit@8
|
|
@ -1,72 +0,0 @@
|
|||
LIBRARY MPR.DLL
|
||||
EXPORTS
|
||||
MultinetGetConnectionPerformanceA@8
|
||||
MultinetGetConnectionPerformanceW@8
|
||||
RestoreConnectionA0@8
|
||||
WNetAddConnection2A@16
|
||||
WNetAddConnection2W@16
|
||||
WNetAddConnection3A@20
|
||||
WNetAddConnection3W@20
|
||||
WNetAddConnectionA@12
|
||||
WNetAddConnectionW@12
|
||||
WNetCancelConnection2A@12
|
||||
WNetCancelConnection2W@12
|
||||
WNetCancelConnectionA@8
|
||||
WNetCancelConnectionW@8
|
||||
WNetClearConnections@4
|
||||
WNetCloseEnum@4
|
||||
WNetConnectionDialog1A@4
|
||||
WNetConnectionDialog1W@4
|
||||
WNetConnectionDialog2@16
|
||||
WNetConnectionDialog@8
|
||||
WNetDirectoryNotifyA@12
|
||||
WNetDirectoryNotifyW@12
|
||||
WNetDisconnectDialog1A@4
|
||||
WNetDisconnectDialog1W@4
|
||||
WNetDisconnectDialog2@16
|
||||
WNetDisconnectDialog@8
|
||||
WNetEnumResourceA@16
|
||||
WNetEnumResourceW@16
|
||||
WNetFMXEditPerm@12
|
||||
WNetFMXGetPermCaps@4
|
||||
WNetFMXGetPermHelp@24
|
||||
WNetFormatNetworkNameA@24
|
||||
WNetFormatNetworkNameW@24
|
||||
WNetGetConnection2A@12
|
||||
WNetGetConnection2W@12
|
||||
WNetGetConnectionA@12
|
||||
WNetGetConnectionW@12
|
||||
WNetGetDirectoryTypeA@12
|
||||
WNetGetDirectoryTypeW@12
|
||||
WNetGetFormatNameProc@4
|
||||
WNetGetLastErrorA@20
|
||||
WNetGetLastErrorW@20
|
||||
WNetGetNetworkInformationA@8
|
||||
WNetGetNetworkInformationW@8
|
||||
WNetGetPropertyTextA@24
|
||||
WNetGetPropertyTextW@24
|
||||
WNetGetProviderNameA@12
|
||||
WNetGetProviderNameW@12
|
||||
WNetGetResourceInformationA@16
|
||||
WNetGetResourceInformationW@16
|
||||
WNetGetResourceParentA@12
|
||||
WNetGetResourceParentW@12
|
||||
WNetGetSearchDialog@4
|
||||
WNetGetUniversalNameA@16
|
||||
WNetGetUniversalNameW@16
|
||||
WNetGetUserA@12
|
||||
WNetGetUserW@12
|
||||
WNetLogonNotify@36
|
||||
WNetOpenEnumA@20
|
||||
WNetOpenEnumW@20
|
||||
WNetPasswordChangeNotify@32
|
||||
WNetPropertyDialogA@20
|
||||
WNetPropertyDialogW@20
|
||||
WNetRestoreConnection@8
|
||||
WNetSetConnectionA@12
|
||||
WNetSetConnectionW@12
|
||||
WNetSetLastErrorA@12
|
||||
WNetSetLastErrorW@12
|
||||
WNetSupportGlobalEnum@4
|
||||
WNetUseConnectionA@32
|
||||
WNetUseConnectionW@32
|
|
@ -1,46 +0,0 @@
|
|||
LIBRARY MSACM32.DLL
|
||||
EXPORTS
|
||||
XRegThunkEntry@36
|
||||
acmDriverAddA@20
|
||||
acmDriverAddW@20
|
||||
acmDriverClose@8
|
||||
acmDriverDetailsA@12
|
||||
acmDriverDetailsW@12
|
||||
acmDriverEnum@12
|
||||
acmDriverID@12
|
||||
acmDriverMessage@16
|
||||
acmDriverOpen@12
|
||||
acmDriverPriority@12
|
||||
acmDriverRemove@8
|
||||
acmFilterChooseA@4
|
||||
acmFilterChooseW@4
|
||||
acmFilterDetailsA@12
|
||||
acmFilterDetailsW@12
|
||||
acmFilterEnumA@20
|
||||
acmFilterEnumW@20
|
||||
acmFilterTagDetailsA@12
|
||||
acmFilterTagDetailsW@12
|
||||
acmFilterTagEnumA@20
|
||||
acmFilterTagEnumW@20
|
||||
acmFormatChooseA@4
|
||||
acmFormatChooseW@4
|
||||
acmFormatDetailsA@12
|
||||
acmFormatDetailsW@12
|
||||
acmFormatEnumA@20
|
||||
acmFormatEnumW@20
|
||||
acmFormatSuggest@20
|
||||
acmFormatTagDetailsA@12
|
||||
acmFormatTagDetailsW@12
|
||||
acmFormatTagEnumA@20
|
||||
acmFormatTagEnumW@20
|
||||
acmGetVersion@0
|
||||
acmMessage32@24
|
||||
acmMetrics@12
|
||||
acmStreamClose@8
|
||||
acmStreamConvert@12
|
||||
acmStreamMessage@16
|
||||
acmStreamOpen@32
|
||||
acmStreamPrepareHeader@12
|
||||
acmStreamReset@8
|
||||
acmStreamSize@16
|
||||
acmStreamUnprepareHeader@12
|
|
@ -1,145 +0,0 @@
|
|||
/* mshtml-uuid.c */
|
||||
/* Generate GUIDs for MSHTML interfaces */
|
||||
|
||||
#define INITGUID
|
||||
#include <basetyps.h>
|
||||
DEFINE_GUID(IID_IHTMLDocument,0x626fc520,0xa41e,0x11cf,0xa7,0x31,0x0,0xa0,0xc9,0x8,0x26,0x37);
|
||||
DEFINE_GUID(IID_IHTMLDocument2,0x332c4425,0x26cb,0x11d0,0xb4,0x83,0x0,0xc0,0x4f,0xd9,0x1,0x19);
|
||||
DEFINE_GUID(IID_IHTMLElement,0x3050f1ff,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0xb);
|
||||
DEFINE_GUID(IID_IHTMLSelectionObject,0x3050f25a,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0xb);
|
||||
DEFINE_GUID(IID_IHTMLTxtRange,0x3050f220,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLImgElement,0x3050f240,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLBodyElement,0x3050f1d8,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLFontElement,0x3050f1d9,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLAnchorElement,0x3050f1da,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLUListElement,0x3050f1dd,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLOListElement,0x3050f1de,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLLIElement,0x3050f1e0,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLBRElement,0x3050f1f0,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLDListElement,0x3050f1f1,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLDDElement,0x3050f1f2,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLDTElement,0x3050f1f3,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLHRElement,0x3050f1f4,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLParaElement,0x3050f1f5,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLHeaderElement,0x3050f1f6,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLFormElement,0x3050f1f7,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLDivElement,0x3050f200,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLBaseFontElement,0x3050f202,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLMetaElement,0x3050f203,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLBaseElement,0x3050f204,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLLinkElement,0x3050f205,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLIsIndexElement,0x3050f206,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLNextIdElement,0x3050f207,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLBlockElement,0x3050f208,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLUnknownElement,0x3050f209,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLPhraseElement,0x3050f20a,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLCommentElement,0x3050f20c,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLListElement,0x3050f20e,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLOptionElement,0x3050f211,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLDivPosition,0x3050f212,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLDialog,0x3050f216,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLTextElement,0x3050f218,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLTable,0x3050f21e,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLElementCollection,0x3050f21f,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLTextContainer,0x3050f230,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLTableCol,0x3050f23a,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLTableSection,0x3050f23b,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLTableRow,0x3050f23c,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLTableCell,0x3050f23d,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLSelectElement,0x3050f244,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLObjectElement,0x3050f24f,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLStyle,0x3050f25e,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLEmbedElement,0x3050f25f,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLAreaElement,0x3050f265,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLMapElement,0x3050f266,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLScriptElement,0x3050f28b,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLControlRange,0x3050f29c,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLInputHiddenElement,0x3050f2a4,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLInputTextElement,0x3050f2a6,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLTextAreaElement,0x3050f2aa,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLInputFileElement,0x3050f2ad,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLInputButtonElement,0x3050f2b2,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLMarqueeElement,0x3050f2b5,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLButtonElement,0x3050f2bb,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLOptionButtonElement,0x3050f2bc,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLInputImage,0x3050f2c2,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLStyleSheet,0x3050f2e3,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLStyleSheetRulesCollection,0x3050f2e5,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLTableCaption,0x3050f2eb,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLFrameBase,0x3050f311,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLFrameElement,0x3050f313,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLIFrameElement,0x3050f315,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLFrameSetElement,0x3050f319,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLTitleElement,0x3050f322,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLLabelElement,0x3050f32a,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLEventObj,0x3050f32d,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLStyleSheetRule,0x3050f357,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLScreen,0x3050f35c,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLBGsound,0x3050f369,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLStyleElement,0x3050f375,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLFontNamesCollection,0x3050f376,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLFontSizesCollection,0x3050f377,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLOptionsHolder,0x3050f378,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLStyleSheetsCollection,0x3050f37e,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLAreasCollection,0x3050f383,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLNoShowElement,0x3050f38a,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLOptionElementFactory,0x3050f38c,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLImageElementFactory,0x3050f38e,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLRuleStyle,0x3050f3cf,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLStyleFontFace,0x3050f3d5,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLCurrentStyle,0x3050f3db,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLSpanFlow,0x3050f3e5,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLFieldSetElement,0x3050f3e7,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLLegendElement,0x3050f3ea,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLFiltersCollection,0x3050f3ee,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLDatabinding,0x3050f3f2,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLSpanElement,0x3050f3f3,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLMimeTypesCollection,0x3050f3fc,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLPluginsCollection,0x3050f3fd,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLOpsProfile,0x3050f401,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLTextRangeMetrics,0x3050f40b,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLTableRowMetrics,0x3050f413,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLElement2,0x3050f434,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLDocument3,0x3050f485,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLEventObj2,0x3050f48b,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLUserDataOM,0x3050f48f,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLTableRow2,0x3050f4a1,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLStyle2,0x3050f4a2,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLRect,0x3050f4a3,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLRectCollection,0x3050f4a4,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLTextRangeMetrics2,0x3050f4a6,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLRuleStyle2,0x3050f4ac,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLTable2,0x3050f4ad,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLWindow3,0x3050f4ae,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLDOMAttribute,0x3050f4b0,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLDOMTextNode,0x3050f4b1,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLDataTransfer,0x3050f4b3,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLGenericElement,0x3050f4b7,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLPersistDataOM,0x3050f4c0,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLAttributeCollection,0x3050f4c3,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLPersistData,0x3050f4c5,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLObjectElement2,0x3050f4cd,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLBookmarkCollection,0x3050f4ce,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLUniqueName,0x3050f4d0,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLLinkElement2,0x3050f4e5,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLIFrameElement2,0x3050f4e6,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLControlElement,0x3050f4e9,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLFormElement2,0x3050f4f6,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLDOMChildrenCollection,0x3050f5ab,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLBodyElement2,0x3050f5c5,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLFrameSetElement2,0x3050f5c6,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLTableSection2,0x3050f5c7,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLAppBehavior2,0x3050f5c9,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLAppBehavior,0x3050f5ca,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLInputElement,0x3050f5d2,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLDOMNode,0x3050f5da,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLDialog2,0x3050f5e0,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLUrnCollection,0x3050f5e2,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLModelessInit,0x3050f5e4,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLDocumentFragment,0x3050f5e5,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLAreasCollection2,0x3050f5ec,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLSelectElement2,0x3050f5ed,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLElementCollection2,0x3050f5ee,0x98b5,0x11cf,0xbb,0x82,0x0,0xaa,0x0,0xbd,0xce,0x0b);
|
||||
DEFINE_GUID(IID_IHTMLFramesCollection2,0x332c4426,0x26cb,0x11d0,0xb4,0x83,0x0,0xc0,0x4f,0xd9,0x01,0x19);
|
||||
DEFINE_GUID(IID_IHTMLWindow2,0x332c4427,0x26cb,0x11d0,0xb4,0x83,0x0,0xc0,0x4f,0xd9,0x01,0x19);
|
||||
DEFINE_GUID(IID_IHTMLLocation,0x163bb1e0,0x6e00,0x11cf,0x83,0x7a,0x48,0xdc,0x04,0xc1,0x0,0x0);
|
|
@ -1,5 +0,0 @@
|
|||
LIBRARY MSIMG32.DLL
|
||||
EXPORTS
|
||||
AlphaBlend@44
|
||||
GradientFill@24
|
||||
TransparentBlt@44
|
|
@ -1,71 +0,0 @@
|
|||
;Submitted by: Danny Smith <danny_r_smith_2001@yahoo.co.nz>
|
||||
;Only the C functions are listed. Most of these have been commented out since
|
||||
;I don't know what they are and can't test them. Some look like data exports
|
||||
;for C++ math functions (E.G.: _Xbig).
|
||||
LIBRARY MSVCP60.DLL
|
||||
EXPORTS
|
||||
;_Cosh
|
||||
;_Denorm
|
||||
;_Dnorm
|
||||
;_Dscale
|
||||
;_Dtest
|
||||
;_Eps
|
||||
;_Exp
|
||||
;_FCosh
|
||||
;_FDenorm
|
||||
;_FDnorm
|
||||
;_FDscale
|
||||
;_FDtest
|
||||
;_FEps
|
||||
;_FExp
|
||||
;_FInf
|
||||
;_FNan
|
||||
;_FRteps
|
||||
;_FSinh
|
||||
;_FSnan
|
||||
;_FXbig
|
||||
;_Getcoll
|
||||
;_Getctype
|
||||
;_Getcvt
|
||||
;_Hugeval
|
||||
;_Inf
|
||||
;_LCosh
|
||||
;_LDenorm
|
||||
;_LDscale
|
||||
;_LDtest
|
||||
;_LEps
|
||||
;_LExp
|
||||
;_LInf
|
||||
;_LNan
|
||||
;_LPoly
|
||||
;_LRteps
|
||||
;_LSinh
|
||||
;_LSnan
|
||||
;_LXbig
|
||||
;_Mbrtowc
|
||||
;_Nan
|
||||
;_Poly
|
||||
;_Rteps
|
||||
;_Sinh
|
||||
;_Snan
|
||||
;_Stod
|
||||
;_Stof
|
||||
;_Stold
|
||||
;_Strcoll
|
||||
;_Strxfrm
|
||||
;_Tolower
|
||||
;_Toupper
|
||||
;_Wcrtomb
|
||||
;__Wcrtomb_lk
|
||||
;_Xbig
|
||||
|
||||
btowc
|
||||
mbrlen
|
||||
mbrtowc
|
||||
mbsrtowcs
|
||||
towctrans
|
||||
wcrtomb
|
||||
wcsrtombs
|
||||
wctob
|
||||
wctrans
|
||||
wctype
|
|
@ -1,49 +0,0 @@
|
|||
LIBRARY MSVFW32.DLL
|
||||
EXPORTS
|
||||
VideoForWindowsVersion@0
|
||||
StretchDIB@48
|
||||
MCIWndRegisterClass
|
||||
MCIWndCreateW
|
||||
MCIWndCreateA
|
||||
MCIWndCreate
|
||||
ICSeqCompressFrameStart@8
|
||||
ICSeqCompressFrameEnd@4
|
||||
ICSeqCompressFrame@20
|
||||
ICSendMessage@16
|
||||
ICRemove@12
|
||||
ICOpenFunction@16
|
||||
ICOpen@12
|
||||
ICMThunk32@20
|
||||
ICLocate@20
|
||||
ICInstall@20
|
||||
ICInfo@12
|
||||
ICImageDecompress@20
|
||||
ICImageCompress@28
|
||||
ICGetInfo@12
|
||||
ICGetDisplayFormat@24
|
||||
ICDrawBegin
|
||||
ICDraw
|
||||
ICDecompress
|
||||
ICCompressorFree@4
|
||||
ICCompressorChoose@24
|
||||
ICCompress
|
||||
ICClose@4
|
||||
GetSaveFileNamePreviewW@4
|
||||
GetSaveFileNamePreviewA@4
|
||||
GetOpenFileNamePreviewW@4
|
||||
GetOpenFileNamePreviewA@4
|
||||
GetOpenFileNamePreview@4
|
||||
DrawDibTime@8
|
||||
DrawDibStop@4
|
||||
DrawDibStart@8
|
||||
DrawDibSetPalette@8
|
||||
DrawDibRealize@12
|
||||
DrawDibProfileDisplay@4
|
||||
DrawDibOpen@0
|
||||
DrawDibGetPalette@4
|
||||
DrawDibGetBuffer@16
|
||||
DrawDibEnd@4
|
||||
DrawDibDraw@52
|
||||
DrawDibClose@4
|
||||
DrawDibChangePalette@16
|
||||
DrawDibBegin@32
|
|
@ -1,28 +0,0 @@
|
|||
LIBRARY MSWSOCK.DLL
|
||||
EXPORTS
|
||||
AcceptEx@32
|
||||
EnumProtocolsA@12
|
||||
EnumProtocolsW@12
|
||||
GetAcceptExSockaddrs@32
|
||||
GetAddressByNameA@40
|
||||
GetAddressByNameW@40
|
||||
GetNameByTypeA@12
|
||||
GetNameByTypeW@12
|
||||
GetServiceA@28
|
||||
GetServiceW@28
|
||||
GetTypeByNameA@8
|
||||
GetTypeByNameW@8
|
||||
MigrateWinsockConfiguration@12
|
||||
NPLoadNameSpaces@12
|
||||
SetServiceA@24
|
||||
SetServiceW@24
|
||||
TransmitFile@28
|
||||
WSARecvEx@16
|
||||
dn_expand@20
|
||||
getnetbyname@4
|
||||
inet_network@4
|
||||
rcmd@24
|
||||
rexec@24
|
||||
rresvport@4
|
||||
s_perror@8
|
||||
sethostname@8
|
|
@ -1,30 +0,0 @@
|
|||
LIBRARY NDDEAPI.DLL
|
||||
EXPORTS
|
||||
NDdeGetErrorStringA@12
|
||||
NDdeGetErrorStringW@12
|
||||
NDdeGetShareSecurityA@24
|
||||
NDdeGetShareSecurityW@24
|
||||
NDdeGetTrustedShareA@20
|
||||
NDdeGetTrustedShareW@20
|
||||
NDdeIsValidAppTopicListA@4
|
||||
NDdeIsValidAppTopicListW@4
|
||||
NDdeIsValidShareNameA@4
|
||||
NDdeIsValidShareNameW@4
|
||||
NDdeSetShareSecurityA@16
|
||||
NDdeSetShareSecurityW@16
|
||||
NDdeSetTrustedShareA@12
|
||||
NDdeSetTrustedShareW@12
|
||||
NDdeShareAddA@20
|
||||
NDdeShareAddW@20
|
||||
NDdeShareDelA@12
|
||||
NDdeShareDelW@12
|
||||
NDdeShareEnumA@24
|
||||
NDdeShareEnumW@24
|
||||
NDdeShareGetInfoA@28
|
||||
NDdeShareGetInfoW@28
|
||||
NDdeShareSetInfoA@24
|
||||
NDdeShareSetInfoW@24
|
||||
NDdeSpecialCommandA@24
|
||||
NDdeSpecialCommandW@24
|
||||
NDdeTrustedShareEnumA@24
|
||||
NDdeTrustedShareEnumW@24
|
|
@ -1,247 +0,0 @@
|
|||
LIBRARY NETAPI32.DLL
|
||||
EXPORTS
|
||||
I_BrowserDebugCall@12
|
||||
I_BrowserDebugTrace@8
|
||||
I_BrowserQueryOtherDomains@16
|
||||
I_BrowserQueryStatistics@8
|
||||
I_BrowserResetNetlogonState@4
|
||||
I_BrowserResetStatistics@4
|
||||
I_BrowserServerEnum@44
|
||||
I_BrowserSetNetlogonState@16
|
||||
I_NetAccountDeltas@48
|
||||
I_NetAccountSync@48
|
||||
I_NetDatabaseDeltas@32
|
||||
I_NetDatabaseRedo@28
|
||||
I_NetDatabaseSync2@36
|
||||
I_NetDatabaseSync@32
|
||||
I_NetGetDCList@16
|
||||
I_NetListCanonicalize@36
|
||||
I_NetListTraverse@12
|
||||
I_NetLogonControl2@20
|
||||
I_NetLogonControl@16
|
||||
I_NetLogonSamLogoff@24
|
||||
I_NetLogonSamLogon@36
|
||||
I_NetLogonUasLogoff@12
|
||||
I_NetLogonUasLogon@12
|
||||
I_NetNameCanonicalize@24
|
||||
I_NetNameCompare@20
|
||||
I_NetNameValidate@16
|
||||
I_NetPathCanonicalize@28
|
||||
I_NetPathCompare@20
|
||||
I_NetPathType@16
|
||||
I_NetServerAuthenticate2@28
|
||||
I_NetServerAuthenticate@24
|
||||
I_NetServerPasswordSet@28
|
||||
I_NetServerReqChallenge@16
|
||||
I_NetServerSetServiceBits@16
|
||||
NetAlertRaise@12
|
||||
NetAlertRaiseEx@16
|
||||
NetApiBufferAllocate@8
|
||||
NetApiBufferFree@4
|
||||
NetApiBufferReallocate@12
|
||||
NetApiBufferSize@8
|
||||
NetAuditClear@12
|
||||
NetAuditRead@44
|
||||
NetAuditWrite@20
|
||||
NetBrowserStatisticsGet@12
|
||||
NetConfigGet@16
|
||||
NetConfigGetAll@12
|
||||
NetConfigSet@28
|
||||
NetConnectionEnum@32
|
||||
NetErrorLogClear@12
|
||||
NetErrorLogRead@44
|
||||
NetErrorLogWrite@32
|
||||
NetFileClose@8
|
||||
NetFileEnum@36
|
||||
NetFileGetInfo@16
|
||||
NetGetAnyDCName@12
|
||||
NetGetDCName@12
|
||||
NetGetDisplayInformationIndex@16
|
||||
NetGroupAdd@16
|
||||
NetGroupAddUser@12
|
||||
NetGroupDel@8
|
||||
NetGroupDelUser@12
|
||||
NetGroupEnum@28
|
||||
NetGroupGetInfo@16
|
||||
NetGroupGetUsers@32
|
||||
NetGroupSetInfo@20
|
||||
NetGroupSetUsers@20
|
||||
NetLocalGroupAdd@16
|
||||
NetLocalGroupAddMember@12
|
||||
NetLocalGroupAddMembers@20
|
||||
NetLocalGroupDel@8
|
||||
NetLocalGroupDelMember@12
|
||||
NetLocalGroupDelMembers@20
|
||||
NetLocalGroupEnum@28
|
||||
NetLocalGroupGetInfo@16
|
||||
NetLocalGroupGetMembers@32
|
||||
NetLocalGroupSetInfo@20
|
||||
NetLocalGroupSetMembers@20
|
||||
NetMessageBufferSend@20
|
||||
NetMessageNameAdd@8
|
||||
NetMessageNameDel@8
|
||||
NetMessageNameEnum@28
|
||||
NetMessageNameGetInfo@16
|
||||
NetQueryDisplayInformation@28
|
||||
NetRemoteComputerSupports@12
|
||||
NetRemoteTOD@8
|
||||
NetReplExportDirAdd@16
|
||||
NetReplExportDirDel@8
|
||||
NetReplExportDirEnum@28
|
||||
NetReplExportDirGetInfo@16
|
||||
NetReplExportDirLock@8
|
||||
NetReplExportDirSetInfo@20
|
||||
NetReplExportDirUnlock@12
|
||||
NetReplGetInfo@12
|
||||
NetReplImportDirAdd@16
|
||||
NetReplImportDirDel@8
|
||||
NetReplImportDirEnum@28
|
||||
NetReplImportDirGetInfo@16
|
||||
NetReplImportDirLock@8
|
||||
NetReplImportDirUnlock@12
|
||||
NetReplSetInfo@16
|
||||
NetRplAdapterAdd@16
|
||||
NetRplAdapterDel@8
|
||||
NetRplAdapterEnum@28
|
||||
NetRplBootAdd@16
|
||||
NetRplBootDel@12
|
||||
NetRplBootEnum@28
|
||||
NetRplClose@4
|
||||
NetRplConfigAdd@16
|
||||
NetRplConfigDel@8
|
||||
NetRplConfigEnum@32
|
||||
NetRplGetInfo@12
|
||||
NetRplOpen@8
|
||||
NetRplProfileAdd@16
|
||||
NetRplProfileClone@16
|
||||
NetRplProfileDel@8
|
||||
NetRplProfileEnum@32
|
||||
NetRplProfileGetInfo@16
|
||||
NetRplProfileSetInfo@20
|
||||
NetRplSetInfo@16
|
||||
NetRplSetSecurity@16
|
||||
NetRplVendorAdd@16
|
||||
NetRplVendorDel@8
|
||||
NetRplVendorEnum@28
|
||||
NetRplWkstaAdd@16
|
||||
NetRplWkstaClone@24
|
||||
NetRplWkstaDel@8
|
||||
NetRplWkstaEnum@32
|
||||
NetRplWkstaGetInfo@16
|
||||
NetRplWkstaSetInfo@20
|
||||
NetScheduleJobAdd@12
|
||||
NetScheduleJobDel@12
|
||||
NetScheduleJobEnum@24
|
||||
NetScheduleJobGetInfo@12
|
||||
NetServerDiskEnum@28
|
||||
NetServerEnum@36
|
||||
NetServerGetInfo@12
|
||||
NetServerSetInfo@16
|
||||
NetServerTransportAdd@12
|
||||
NetServerTransportDel@12
|
||||
NetServerTransportEnum@28
|
||||
NetServiceControl@20
|
||||
NetServiceEnum@28
|
||||
NetServiceGetInfo@16
|
||||
NetServiceInstall@20
|
||||
NetSessionDel@12
|
||||
NetSessionEnum@36
|
||||
NetSessionGetInfo@20
|
||||
NetShareAdd@16
|
||||
NetShareCheck@12
|
||||
NetShareDel@12
|
||||
NetShareDelSticky@12
|
||||
NetShareEnum@28
|
||||
NetShareEnumSticky@28
|
||||
NetShareGetInfo@16
|
||||
NetShareSetInfo@20
|
||||
NetStatisticsGet@20
|
||||
NetUseAdd@16
|
||||
NetUseDel@12
|
||||
NetUseEnum@28
|
||||
NetUseGetInfo@16
|
||||
NetUserAdd@16
|
||||
NetUserChangePassword@16
|
||||
NetUserDel@8
|
||||
NetUserEnum@32
|
||||
NetUserGetGroups@28
|
||||
NetUserGetInfo@16
|
||||
NetUserGetLocalGroups@32
|
||||
NetUserModalsGet@12
|
||||
NetUserModalsSet@16
|
||||
NetUserSetGroups@20
|
||||
NetUserSetInfo@20
|
||||
NetWkstaGetInfo@12
|
||||
NetWkstaSetInfo@16
|
||||
NetWkstaTransportAdd@16
|
||||
NetWkstaTransportDel@12
|
||||
NetWkstaTransportEnum@28
|
||||
NetWkstaUserEnum@28
|
||||
NetWkstaUserGetInfo@12
|
||||
NetWkstaUserSetInfo@16
|
||||
NetapipBufferAllocate@8
|
||||
Netbios@4
|
||||
NetpAccessCheckAndAudit@20
|
||||
NetpAllocConfigName@16
|
||||
NetpAllocStrFromWStr@4
|
||||
NetpAllocWStrFromStr@4
|
||||
NetpAllocWStrFromWStr@4
|
||||
NetpApiStatusToNtStatus@4
|
||||
NetpAssertFailed@16
|
||||
NetpCloseConfigData@4
|
||||
NetpCopyStringToBuffer@20
|
||||
NetpCreateSecurityObject@24
|
||||
NetpDbgDisplayServerInfo@8
|
||||
NetpDbgPrint
|
||||
NetpDeleteSecurityObject@4
|
||||
NetpGetComputerName@4
|
||||
NetpGetConfigBool@16
|
||||
NetpGetConfigDword@16
|
||||
NetpGetConfigTStrArray@12
|
||||
NetpGetConfigValue@12
|
||||
NetpGetDomainName@4
|
||||
NetpGetFileSecurity@16
|
||||
NetpGetPrivilege@8
|
||||
NetpHexDump@8
|
||||
NetpInitOemString@8
|
||||
NetpIsRemote@16
|
||||
NetpIsUncComputerNameValid@4
|
||||
NetpLocalTimeZoneOffset@0
|
||||
NetpLogonPutUnicodeString@12
|
||||
NetpNetBiosAddName@12
|
||||
NetpNetBiosCall@16
|
||||
NetpNetBiosDelName@8
|
||||
NetpNetBiosGetAdapterNumbers@8
|
||||
NetpNetBiosHangup@8
|
||||
NetpNetBiosReceive@24
|
||||
NetpNetBiosReset@4
|
||||
NetpNetBiosSend@16
|
||||
NetpNetBiosStatusToApiStatus@4
|
||||
NetpNtStatusToApiStatus@4
|
||||
NetpOpenConfigData@16
|
||||
NetpPackString@12
|
||||
NetpReleasePrivilege@0
|
||||
NetpSetConfigBool@12
|
||||
NetpSetConfigDword@12
|
||||
NetpSetConfigTStrArray@12
|
||||
NetpSetFileSecurity@12
|
||||
NetpSmbCheck@20
|
||||
NetpStringToNetBiosName@16
|
||||
NetpTStrArrayEntryCount@4
|
||||
NetpwNameCanonicalize@20
|
||||
NetpwNameCompare@16
|
||||
NetpwNameValidate@12
|
||||
NetpwPathCanonicalize@24
|
||||
NetpwPathCompare@16
|
||||
NetpwPathType@12
|
||||
NlBindingAddServerToCache@4
|
||||
NlBindingRemoveServerFromCache@4
|
||||
RxNetAccessAdd@16
|
||||
RxNetAccessDel@8
|
||||
RxNetAccessEnum@36
|
||||
RxNetAccessGetInfo@16
|
||||
RxNetAccessGetUserPerms@16
|
||||
RxNetAccessSetInfo@20
|
||||
RxNetServerEnum@40
|
||||
RxNetUserPasswordSet@16
|
||||
RxRemoteApi
|
File diff suppressed because it is too large
Load diff
|
@ -1,185 +0,0 @@
|
|||
LIBRARY ODBC32.dll
|
||||
EXPORTS
|
||||
CloseODBCPerfData@0
|
||||
CollectODBCPerfData@16
|
||||
CursorLibLockDbc@8
|
||||
CursorLibLockDesc@8
|
||||
CursorLibLockStmt@8
|
||||
CursorLibTransact@12
|
||||
LockHandle@12
|
||||
MpHeapAlloc
|
||||
MpHeapCompact
|
||||
MpHeapCreate
|
||||
MpHeapDestroy
|
||||
MpHeapFree
|
||||
MpHeapReAlloc
|
||||
MpHeapSize
|
||||
MpHeapValidate
|
||||
ODBCGetTryWaitValue@0
|
||||
ODBCInternalConnectW@36
|
||||
ODBCQualifyFileDSNW@4
|
||||
ODBCSetTryWaitValue@4
|
||||
ODBCSharedPerfMon
|
||||
ODBCSharedTraceFlag
|
||||
ODBCSharedVSFlag
|
||||
OpenODBCPerfData@4
|
||||
PostComponentError@4
|
||||
PostODBCComponentError@4
|
||||
PostODBCError@16
|
||||
SQLAllocConnect@8
|
||||
SQLAllocEnv@4
|
||||
SQLAllocHandle@12
|
||||
SQLAllocHandleStd@12
|
||||
SQLAllocStmt@8
|
||||
SQLBindCol@24
|
||||
SQLBindParam@32
|
||||
SQLBindParameter@40
|
||||
SQLBrowseConnect@24
|
||||
SQLBrowseConnectA@24
|
||||
SQLBrowseConnectW@24
|
||||
SQLBulkOperations@8
|
||||
SQLCancel@4
|
||||
SQLCloseCursor@4
|
||||
SQLColAttribute@28
|
||||
SQLColAttributeA@28
|
||||
SQLColAttributeW@28
|
||||
SQLColAttributes@28
|
||||
SQLColAttributesA@28
|
||||
SQLColAttributesW@28
|
||||
SQLColumnPrivileges@36
|
||||
SQLColumnPrivilegesA@36
|
||||
SQLColumnPrivilegesW@36
|
||||
SQLColumns@36
|
||||
SQLColumnsA@36
|
||||
SQLColumnsW@36
|
||||
SQLConnect@28
|
||||
SQLConnectA@28
|
||||
SQLConnectW@28
|
||||
SQLCopyDesc@8
|
||||
SQLDataSources@32
|
||||
SQLDataSourcesA@32
|
||||
SQLDataSourcesW@32
|
||||
SQLDescribeCol@36
|
||||
SQLDescribeColA@36
|
||||
SQLDescribeColW@36
|
||||
SQLDescribeParam@24
|
||||
SQLDisconnect@4
|
||||
SQLDriverConnect@32
|
||||
SQLDriverConnectA@32
|
||||
SQLDriverConnectW@32
|
||||
SQLDrivers@32
|
||||
SQLDriversA@32
|
||||
SQLDriversW@32
|
||||
SQLEndTran@12
|
||||
SQLError@32
|
||||
SQLErrorA@32
|
||||
SQLErrorW@32
|
||||
SQLExecDirect@12
|
||||
SQLExecDirectA@12
|
||||
SQLExecDirectW@12
|
||||
SQLExecute@4
|
||||
SQLExtendedFetch@20
|
||||
SQLFetch@4
|
||||
SQLFetchScroll@12
|
||||
SQLForeignKeys@52
|
||||
SQLForeignKeysA@52
|
||||
SQLForeignKeysW@52
|
||||
SQLFreeConnect@4
|
||||
SQLFreeEnv@4
|
||||
SQLFreeHandle@8
|
||||
SQLFreeStmt@8
|
||||
SQLGetConnectAttr@20
|
||||
SQLGetConnectAttrA@20
|
||||
SQLGetConnectAttrW@20
|
||||
SQLGetConnectOption@12
|
||||
SQLGetConnectOptionA@12
|
||||
SQLGetConnectOptionW@12
|
||||
SQLGetCursorName@16
|
||||
SQLGetCursorNameA@16
|
||||
SQLGetCursorNameW@16
|
||||
SQLGetData@24
|
||||
SQLGetDescField@24
|
||||
SQLGetDescFieldA@24
|
||||
SQLGetDescFieldW@24
|
||||
SQLGetDescRec@44
|
||||
SQLGetDescRecA@44
|
||||
SQLGetDescRecW@44
|
||||
SQLGetDiagField@28
|
||||
SQLGetDiagFieldA@28
|
||||
SQLGetDiagFieldW@28
|
||||
SQLGetDiagRec@32
|
||||
SQLGetDiagRecA@32
|
||||
SQLGetDiagRecW@32
|
||||
SQLGetEnvAttr@20
|
||||
SQLGetFunctions@12
|
||||
SQLGetInfo@20
|
||||
SQLGetInfoA@20
|
||||
SQLGetInfoW@20
|
||||
SQLGetStmtAttr@20
|
||||
SQLGetStmtAttrA@20
|
||||
SQLGetStmtAttrW@20
|
||||
SQLGetStmtOption@12
|
||||
SQLGetTypeInfo@8
|
||||
SQLGetTypeInfoA@8
|
||||
SQLGetTypeInfoW@8
|
||||
SQLMoreResults@4
|
||||
SQLNativeSql@24
|
||||
SQLNativeSqlA@24
|
||||
SQLNativeSqlW@24
|
||||
SQLNumParams@8
|
||||
SQLNumResultCols@8
|
||||
SQLParamData@8
|
||||
SQLParamOptions@12
|
||||
SQLPrepare@12
|
||||
SQLPrepareA@12
|
||||
SQLPrepareW@12
|
||||
SQLPrimaryKeys@28
|
||||
SQLPrimaryKeysA@28
|
||||
SQLPrimaryKeysW@28
|
||||
SQLProcedureColumns@36
|
||||
SQLProcedureColumnsA@36
|
||||
SQLProcedureColumnsW@36
|
||||
SQLProcedures@28
|
||||
SQLProceduresA@28
|
||||
SQLProceduresW@28
|
||||
SQLPutData@12
|
||||
SQLRowCount@8
|
||||
SQLSetConnectAttr@16
|
||||
SQLSetConnectAttrA@16
|
||||
SQLSetConnectAttrW@16
|
||||
SQLSetConnectOption@12
|
||||
SQLSetConnectOptionA@12
|
||||
SQLSetConnectOptionW@12
|
||||
SQLSetCursorName@12
|
||||
SQLSetCursorNameA@12
|
||||
SQLSetCursorNameW@12
|
||||
SQLSetDescField@20
|
||||
SQLSetDescFieldA@20
|
||||
SQLSetDescFieldW@20
|
||||
SQLSetDescRec@40
|
||||
SQLSetEnvAttr@16
|
||||
SQLSetParam@32
|
||||
SQLSetPos@16
|
||||
SQLSetScrollOptions@16
|
||||
SQLSetStmtAttr@16
|
||||
SQLSetStmtAttrA@16
|
||||
SQLSetStmtAttrW@16
|
||||
SQLSetStmtOption@12
|
||||
SQLSpecialColumns@40
|
||||
SQLSpecialColumnsA@40
|
||||
SQLSpecialColumnsW@40
|
||||
SQLStatistics@36
|
||||
SQLStatisticsA@36
|
||||
SQLStatisticsW@36
|
||||
SQLTablePrivileges@28
|
||||
SQLTablePrivilegesA@28
|
||||
SQLTablePrivilegesW@28
|
||||
SQLTables@36
|
||||
SQLTablesA@36
|
||||
SQLTablesW@36
|
||||
SQLTransact@12
|
||||
SearchStatusCode@8
|
||||
VFreeErrors@4
|
||||
VRetrieveDriverErrorsRowCol@24
|
||||
ValidateErrorQueue@8
|
||||
g_hHeapMalloc
|
|
@ -1,54 +0,0 @@
|
|||
LIBRARY ODBCCP32.dll
|
||||
EXPORTS
|
||||
SQLConfigDataSource@16
|
||||
SQLConfigDataSourceW@16
|
||||
SQLConfigDriver@28
|
||||
SQLConfigDriverW@28
|
||||
SQLCreateDataSource@8
|
||||
SQLCreateDataSourceW@8
|
||||
SQLGetAvailableDrivers@16
|
||||
SQLGetAvailableDriversW@16
|
||||
SQLGetConfigMode@4
|
||||
SQLGetInstalledDrivers@12
|
||||
SQLGetInstalledDriversW@12
|
||||
SQLGetPrivateProfileString@24
|
||||
SQLGetPrivateProfileStringW@24
|
||||
SQLGetTranslator@32
|
||||
SQLGetTranslatorW@32
|
||||
SQLInstallDriver@20
|
||||
SQLInstallDriverEx@28
|
||||
SQLInstallDriverExW@28
|
||||
SQLInstallDriverManager@12
|
||||
SQLInstallDriverManagerW@12
|
||||
SQLInstallDriverW@20
|
||||
SQLInstallODBC@16
|
||||
SQLInstallODBCW@16
|
||||
SQLInstallTranslator@32
|
||||
SQLInstallTranslatorEx@28
|
||||
SQLInstallTranslatorExW@28
|
||||
SQLInstallTranslatorW@32
|
||||
SQLInstallerError@20
|
||||
SQLInstallerErrorW@20
|
||||
SQLManageDataSources@4
|
||||
SQLPostInstallerError@8
|
||||
SQLPostInstallerErrorW@8
|
||||
SQLReadFileDSN@24
|
||||
SQLReadFileDSNW@24
|
||||
SQLRemoveDSNFromIni@4
|
||||
SQLRemoveDSNFromIniW@4
|
||||
SQLRemoveDefaultDataSource@0
|
||||
SQLRemoveDriver@12
|
||||
SQLRemoveDriverManager@4
|
||||
SQLRemoveDriverW@12
|
||||
SQLRemoveTranslator@8
|
||||
SQLRemoveTranslatorW@8
|
||||
SQLSetConfigMode@4
|
||||
SQLValidDSN@4
|
||||
SQLValidDSNW@4
|
||||
SQLWriteDSNToIni@8
|
||||
SQLWriteDSNToIniW@8
|
||||
SQLWriteFileDSN@16
|
||||
SQLWriteFileDSNW@16
|
||||
SQLWritePrivateProfileString@16
|
||||
SQLWritePrivateProfileStringW@16
|
||||
ODBC___GetSetupProc@4
|
|
@ -1,253 +0,0 @@
|
|||
LIBRARY OLE32.dll
|
||||
EXPORTS
|
||||
BindMoniker@16
|
||||
CLIPFORMAT_UserFree@8
|
||||
CLIPFORMAT_UserMarshal@12
|
||||
CLIPFORMAT_UserSize@12
|
||||
CLIPFORMAT_UserUnmarshal@12
|
||||
CLSIDFromProgID@8
|
||||
CLSIDFromString@8
|
||||
CoAddRefServerProcess@0
|
||||
CoBuildVersion@0
|
||||
CoCopyProxy@8
|
||||
CoCreateFreeThreadedMarshaler@8
|
||||
CoCreateGuid@4
|
||||
CoCreateInstance@20
|
||||
CoCreateInstanceEx@24
|
||||
CoDisconnectObject@8
|
||||
CoDosDateTimeToFileTime@12
|
||||
CoFileTimeNow@4
|
||||
CoFileTimeToDosDateTime@12
|
||||
CoFreeAllLibraries@0
|
||||
CoFreeLibrary@4
|
||||
CoFreeUnusedLibraries@0
|
||||
CoGetCallContext@8
|
||||
CoGetCallerTID@4
|
||||
CoGetClassObject@20
|
||||
CoGetCurrentLogicalThreadId@4
|
||||
CoGetCurrentProcess@0
|
||||
CoGetInstanceFromFile@32
|
||||
CoGetInstanceFromIStorage@28
|
||||
CoGetInterfaceAndReleaseStream@12
|
||||
CoGetMalloc@8
|
||||
CoGetMarshalSizeMax@24
|
||||
CoGetObject@16
|
||||
CoGetPSClsid@8
|
||||
CoGetStandardMarshal@24
|
||||
CoGetState@4
|
||||
CoGetTreatAsClass@8
|
||||
CoImpersonateClient@0
|
||||
CoInitialize@4
|
||||
CoInitializeEx@8
|
||||
CoInitializeSecurity@36
|
||||
CoInitializeWOW@8
|
||||
CoIsHandlerConnected@4
|
||||
CoIsOle1Class@4
|
||||
CoLoadLibrary@8
|
||||
CoLockObjectExternal@12
|
||||
CoMarshalHresult@8
|
||||
CoMarshalInterThreadInterfaceInStream@12
|
||||
CoMarshalInterface@24
|
||||
CoQueryAuthenticationServices@8
|
||||
CoQueryClientBlanket@28
|
||||
CoQueryProxyBlanket@32
|
||||
CoQueryReleaseObject@4
|
||||
CoRegisterChannelHook@8
|
||||
CoRegisterClassObject@20
|
||||
CoRegisterMallocSpy@4
|
||||
CoRegisterMessageFilter@8
|
||||
CoRegisterPSClsid@8
|
||||
CoRegisterSurrogate@4
|
||||
CoReleaseMarshalData@4
|
||||
CoReleaseServerProcess@0
|
||||
CoResumeClassObjects@0
|
||||
CoRevertToSelf@0
|
||||
CoRevokeClassObject@4
|
||||
CoRevokeMallocSpy@0
|
||||
CoSetProxyBlanket@32
|
||||
CoSetState@4
|
||||
CoSuspendClassObjects@0
|
||||
CoSwitchCallContext@8
|
||||
CoTaskMemAlloc@4
|
||||
CoTaskMemFree@4
|
||||
CoTaskMemRealloc@8
|
||||
CoTreatAsClass@8
|
||||
CoUninitialize@0
|
||||
CoUnloadingWOW@4
|
||||
CoUnmarshalHresult@8
|
||||
CoUnmarshalInterface@12
|
||||
CreateAntiMoniker@4
|
||||
CreateBindCtx@8
|
||||
CreateClassMoniker@8
|
||||
CreateDataAdviseHolder@4
|
||||
CreateDataCache@16
|
||||
CreateFileMoniker@8
|
||||
CreateGenericComposite@12
|
||||
CreateILockBytesOnHGlobal@12
|
||||
CreateItemMoniker@12
|
||||
CreateOleAdviseHolder@4
|
||||
CreatePointerMoniker@8
|
||||
CreateStreamOnHGlobal@12
|
||||
DllDebugObjectRPCHook@8
|
||||
DllGetClassObjectWOW@12
|
||||
DoDragDrop@16
|
||||
EnableHookObject@8
|
||||
FreePropVariantArray@8
|
||||
GetClassFile@8
|
||||
GetConvertStg@4
|
||||
GetDocumentBitStg@4
|
||||
GetHGlobalFromILockBytes@8
|
||||
GetHGlobalFromStream@8
|
||||
GetHookInterface@4
|
||||
GetRunningObjectTable@8
|
||||
HACCEL_UserFree@8
|
||||
HACCEL_UserMarshal@12
|
||||
HACCEL_UserSize@12
|
||||
HACCEL_UserUnmarshal@12
|
||||
HBITMAP_UserFree@8
|
||||
HBITMAP_UserMarshal@12
|
||||
HBITMAP_UserSize@12
|
||||
HBITMAP_UserUnmarshal@12
|
||||
HBRUSH_UserFree@8
|
||||
HBRUSH_UserMarshal@12
|
||||
HBRUSH_UserSize@12
|
||||
HBRUSH_UserUnmarshal@12
|
||||
HENHMETAFILE_UserFree@8
|
||||
HENHMETAFILE_UserMarshal@12
|
||||
HENHMETAFILE_UserSize@12
|
||||
HENHMETAFILE_UserUnmarshal@12
|
||||
HGLOBAL_UserFree@8
|
||||
HGLOBAL_UserMarshal@12
|
||||
HGLOBAL_UserSize@12
|
||||
HGLOBAL_UserUnmarshal@12
|
||||
HMENU_UserFree@8
|
||||
HMENU_UserMarshal@12
|
||||
HMENU_UserSize@12
|
||||
HMENU_UserUnmarshal@12
|
||||
HMETAFILEPICT_UserFree@8
|
||||
HMETAFILEPICT_UserMarshal@12
|
||||
HMETAFILEPICT_UserSize@12
|
||||
HMETAFILEPICT_UserUnmarshal@12
|
||||
HMETAFILE_UserFree@8
|
||||
HMETAFILE_UserMarshal@12
|
||||
HMETAFILE_UserSize@12
|
||||
HMETAFILE_UserUnmarshal@12
|
||||
HPALETTE_UserFree@8
|
||||
HPALETTE_UserMarshal@12
|
||||
HPALETTE_UserSize@12
|
||||
HPALETTE_UserUnmarshal@12
|
||||
HWND_UserFree@8
|
||||
HWND_UserMarshal@12
|
||||
HWND_UserSize@12
|
||||
HWND_UserUnmarshal@12
|
||||
IIDFromString@8
|
||||
IsAccelerator@16
|
||||
IsEqualGUID@8
|
||||
IsValidIid@4
|
||||
IsValidInterface@4
|
||||
IsValidPtrIn@8
|
||||
IsValidPtrOut@8
|
||||
MkParseDisplayName@16
|
||||
MonikerCommonPrefixWith@12
|
||||
MonikerRelativePathTo@16
|
||||
OleBuildVersion@0
|
||||
OleConvertIStorageToOLESTREAM@8
|
||||
OleConvertIStorageToOLESTREAMEx@28
|
||||
OleConvertOLESTREAMToIStorage@12
|
||||
OleConvertOLESTREAMToIStorageEx@28
|
||||
OleCreate@28
|
||||
OleCreateDefaultHandler@16
|
||||
OleCreateEmbeddingHelper@24
|
||||
OleCreateEx@48
|
||||
OleCreateFromData@28
|
||||
OleCreateFromDataEx@48
|
||||
OleCreateFromFile@32
|
||||
OleCreateFromFileEx@52
|
||||
OleCreateLink@28
|
||||
OleCreateLinkEx@48
|
||||
OleCreateLinkFromData@28
|
||||
OleCreateLinkFromDataEx@48
|
||||
OleCreateLinkToFile@28
|
||||
OleCreateLinkToFileEx@48
|
||||
OleCreateMenuDescriptor@8
|
||||
OleCreateStaticFromData@28
|
||||
OleDestroyMenuDescriptor@4
|
||||
OleDoAutoConvert@8
|
||||
OleDraw@16
|
||||
OleDuplicateData@12
|
||||
OleFlushClipboard@0
|
||||
OleGetAutoConvert@8
|
||||
OleGetClipboard@4
|
||||
OleGetIconOfClass@12
|
||||
OleGetIconOfFile@8
|
||||
OleInitialize@4
|
||||
OleInitializeWOW@8
|
||||
OleIsCurrentClipboard@4
|
||||
OleIsRunning@4
|
||||
OleLoad@16
|
||||
OleLoadFromStream@12
|
||||
OleLockRunning@12
|
||||
OleMetafilePictFromIconAndLabel@16
|
||||
OleNoteObjectVisible@8
|
||||
OleQueryCreateFromData@4
|
||||
OleQueryLinkFromData@4
|
||||
OleRegEnumFormatEtc@12
|
||||
OleRegEnumVerbs@8
|
||||
OleRegGetMiscStatus@12
|
||||
OleRegGetUserType@12
|
||||
OleRun@4
|
||||
OleSave@12
|
||||
OleSaveToStream@8
|
||||
OleSetAutoConvert@8
|
||||
OleSetClipboard@4
|
||||
OleSetContainedObject@8
|
||||
OleSetMenuDescriptor@20
|
||||
OleTranslateAccelerator@12
|
||||
OleUninitialize@0
|
||||
OpenOrCreateStream@12
|
||||
ProgIDFromCLSID@8
|
||||
PropSysAllocString@4
|
||||
PropSysFreeString@4
|
||||
PropVariantClear@4
|
||||
PropVariantCopy@8
|
||||
ReadClassStg@8
|
||||
ReadClassStm@8
|
||||
ReadFmtUserTypeStg@12
|
||||
ReadOleStg@24
|
||||
ReadStringStream@8
|
||||
RegisterDragDrop@8
|
||||
ReleaseStgMedium@4
|
||||
RevokeDragDrop@4
|
||||
SNB_UserFree@8
|
||||
SNB_UserMarshal@12
|
||||
SNB_UserSize@12
|
||||
SNB_UserUnmarshal@12
|
||||
STGMEDIUM_UserFree@8
|
||||
STGMEDIUM_UserMarshal@12
|
||||
STGMEDIUM_UserSize@12
|
||||
STGMEDIUM_UserUnmarshal@12
|
||||
SetConvertStg@8
|
||||
SetDocumentBitStg@8
|
||||
StgCreateDocfile@16
|
||||
StgCreateDocfileOnILockBytes@16
|
||||
StgGetIFillLockBytesOnFile@8
|
||||
StgGetIFillLockBytesOnILockBytes@8
|
||||
StgIsStorageFile@4
|
||||
StgIsStorageILockBytes@4
|
||||
StgOpenAsyncDocfileOnIFillLockBytes@16
|
||||
StgOpenStorage@24
|
||||
StgOpenStorageOnILockBytes@24
|
||||
StgSetTimes@16
|
||||
StringFromCLSID@8
|
||||
StringFromGUID2@12
|
||||
StringFromIID@8
|
||||
UpdateDCOMSettings@0
|
||||
UtConvertDvtd16toDvtd32@12
|
||||
UtConvertDvtd32toDvtd16@12
|
||||
UtGetDvtd16Info@8
|
||||
UtGetDvtd32Info@8
|
||||
WriteClassStg@8
|
||||
WriteClassStm@8
|
||||
WriteFmtUserTypeStg@12
|
||||
WriteOleStg@16
|
||||
WriteStringStream@8
|
|
@ -1,17 +0,0 @@
|
|||
LIBRARY Oleacc.dll
|
||||
EXPORTS
|
||||
AccessibleChildren@20
|
||||
AccessibleObjectFromEvent@20
|
||||
AccessibleObjectFromPoint@16
|
||||
AccessibleObjectFromWindow@16
|
||||
CreateStdAccessibleObject@16
|
||||
CreateStdAccessibleProxyA@20
|
||||
CreateStdAccessibleProxyW@20
|
||||
GetOleaccVersionInfo@8
|
||||
GetRoleTextA@12
|
||||
GetRoleTextW@12
|
||||
GetStateTextA@12
|
||||
GetStateTextW@12
|
||||
LresultFromObject@12
|
||||
ObjectFromLresult@16
|
||||
WindowFromAccessibleObject@8
|
|
@ -1,355 +0,0 @@
|
|||
LIBRARY OLEAUT32.DLL
|
||||
EXPORTS
|
||||
BSTR_UserFree@8
|
||||
BSTR_UserMarshal@12
|
||||
BSTR_UserSize@12
|
||||
BSTR_UserUnmarshal@12
|
||||
BstrFromVector@8
|
||||
ClearCustData@4
|
||||
CreateDispTypeInfo@12
|
||||
CreateErrorInfo@4
|
||||
CreateStdDispatch@16
|
||||
CreateTypeLib@12
|
||||
CreateTypeLib2@12
|
||||
DispCallFunc@32
|
||||
DispGetIDsOfNames@16
|
||||
DispGetParam@20
|
||||
DispInvoke@32
|
||||
DosDateTimeToVariantTime@12
|
||||
GetActiveObject@12
|
||||
GetAltMonthNames@8
|
||||
GetErrorInfo@8
|
||||
GetRecordInfoFromGuids@24
|
||||
GetRecordInfoFromTypeInfo@8
|
||||
LHashValOfNameSys@12
|
||||
LHashValOfNameSysA@12
|
||||
LoadRegTypeLib@20
|
||||
LoadTypeLib@8
|
||||
LoadTypeLibEx@12
|
||||
LPSAFEARRAY_Marshal@16
|
||||
LPSAFEARRAY_Size@16
|
||||
LPSAFEARRAY_Unmarshal@16
|
||||
LPSAFEARRAY_UserFree@8
|
||||
LPSAFEARRAY_UserMarshal@12
|
||||
LPSAFEARRAY_UserSize@12
|
||||
LPSAFEARRAY_UserUnmarshal@12
|
||||
OaBuildVersion@0
|
||||
OleCreateFontIndirect@12
|
||||
OleCreatePictureIndirect@16
|
||||
OleCreatePropertyFrame@44
|
||||
OleCreatePropertyFrameIndirect@4
|
||||
OleIconToCursor@8
|
||||
OleLoadPicture@20
|
||||
OleLoadPictureEx@32
|
||||
OleLoadPictureFile@20
|
||||
OleLoadPictureFileEx@32
|
||||
OleLoadPicturePath@24
|
||||
OleSavePictureFile@8
|
||||
OleTranslateColor@12
|
||||
QueryPathOfRegTypeLib@20
|
||||
RegisterActiveObject@16
|
||||
RegisterTypeLib@12
|
||||
RevokeActiveObject@8
|
||||
SafeArrayAccessData@8
|
||||
SafeArrayAllocData@4
|
||||
SafeArrayAllocDescriptor@8
|
||||
SafeArrayAllocDescriptorEx@12
|
||||
SafeArrayCopy@8
|
||||
SafeArrayCopyData@8
|
||||
SafeArrayCreate@12
|
||||
SafeArrayCreateEx@16
|
||||
SafeArrayCreateVector@12
|
||||
SafeArrayCreateVectorEx@16
|
||||
SafeArrayDestroy@4
|
||||
SafeArrayDestroyData@4
|
||||
SafeArrayDestroyDescriptor@4
|
||||
SafeArrayGetDim@4
|
||||
SafeArrayGetElement@12
|
||||
SafeArrayGetElemsize@4
|
||||
SafeArrayGetIID@8
|
||||
SafeArrayGetLBound@12
|
||||
SafeArrayGetRecordInfo@8
|
||||
SafeArrayGetUBound@12
|
||||
SafeArrayGetVartype@8
|
||||
SafeArrayLock@4
|
||||
SafeArrayPtrOfIndex@12
|
||||
SafeArrayPutElement@12
|
||||
SafeArrayRedim@8
|
||||
SafeArraySetIID@8
|
||||
SafeArraySetRecordInfo@8
|
||||
SafeArrayUnaccessData@4
|
||||
SafeArrayUnlock@4
|
||||
SetErrorInfo@8
|
||||
SysAllocString@4
|
||||
SysAllocStringByteLen@8
|
||||
SysAllocStringLen@8
|
||||
SysFreeString@4
|
||||
SysReAllocString@8
|
||||
SysReAllocStringLen@12
|
||||
SysStringByteLen@4
|
||||
SysStringLen@4
|
||||
SystemTimeToVariantTime@8
|
||||
UnRegisterTypeLib@20
|
||||
UserBSTR_free_inst@4
|
||||
UserBSTR_free_local@4
|
||||
UserBSTR_from_local@8
|
||||
UserBSTR_to_local@8
|
||||
UserEXCEPINFO_free_inst@4
|
||||
UserEXCEPINFO_free_local@4
|
||||
UserEXCEPINFO_from_local@8
|
||||
UserEXCEPINFO_to_local@8
|
||||
UserHWND_free_inst@4
|
||||
UserHWND_free_local@4
|
||||
UserHWND_from_local@8
|
||||
UserHWND_to_local@8
|
||||
UserMSG_free_inst@4
|
||||
UserMSG_free_local@4
|
||||
UserMSG_from_local@8
|
||||
UserMSG_to_local@8
|
||||
UserVARIANT_free_inst@4
|
||||
UserVARIANT_free_local@4
|
||||
UserVARIANT_from_local@8
|
||||
UserVARIANT_to_local@8
|
||||
VarAbs@8
|
||||
VarAdd@12
|
||||
VarAnd@12
|
||||
VarBoolFromCy@12
|
||||
VarBoolFromDate@12
|
||||
VarBoolFromDec@8
|
||||
VarBoolFromDisp@12
|
||||
VarBoolFromI1@8
|
||||
VarBoolFromI2@8
|
||||
VarBoolFromI4@8
|
||||
VarBoolFromR4@8
|
||||
VarBoolFromR8@12
|
||||
VarBoolFromStr@16
|
||||
VarBoolFromUI1@8
|
||||
VarBoolFromUI2@8
|
||||
VarBoolFromUI4@8
|
||||
VarBstrCat@12
|
||||
VarBstrCmp@16
|
||||
VarBstrFromBool@16
|
||||
VarBstrFromCy@20
|
||||
VarBstrFromDate@20
|
||||
VarBstrFromDec@16
|
||||
VarBstrFromDisp@16
|
||||
VarBstrFromI1@16
|
||||
VarBstrFromI2@16
|
||||
VarBstrFromI4@16
|
||||
VarBstrFromR4@16
|
||||
VarBstrFromR8@20
|
||||
VarBstrFromUI1@16
|
||||
VarBstrFromUI2@16
|
||||
VarBstrFromUI4@16
|
||||
VarCat@12
|
||||
VarCmp@16
|
||||
VarCyAbs@12
|
||||
VarCyAdd@20
|
||||
VarCyCmp@16
|
||||
VarCyCmpR8@16
|
||||
VarCyFix@12
|
||||
VarCyFromBool@8
|
||||
VarCyFromDate@12
|
||||
VarCyFromDec@8
|
||||
VarCyFromDisp@12
|
||||
VarCyFromI1@8
|
||||
VarCyFromI2@8
|
||||
VarCyFromI4@8
|
||||
VarCyFromR4@8
|
||||
VarCyFromR8@12
|
||||
VarCyFromStr@16
|
||||
VarCyFromUI1@8
|
||||
VarCyFromUI2@8
|
||||
VarCyFromUI4@8
|
||||
VarCyInt@12
|
||||
VarCyMul@20
|
||||
VarCyMulI4@16
|
||||
VarCyNeg@12
|
||||
VarCyRound@16
|
||||
VarCySub@20
|
||||
VarDateFromBool@8
|
||||
VarDateFromCy@12
|
||||
VarDateFromDec@8
|
||||
VarDateFromDisp@12
|
||||
VarDateFromI1@8
|
||||
VarDateFromI2@8
|
||||
VarDateFromI4@8
|
||||
VarDateFromR4@8
|
||||
VarDateFromR8@12
|
||||
VarDateFromStr@16
|
||||
VarDateFromUdate@12
|
||||
VarDateFromUdateEx@16
|
||||
VarDateFromUI1@8
|
||||
VarDateFromUI2@8
|
||||
VarDateFromUI4@8
|
||||
VarDecAbs@8
|
||||
VarDecAdd@12
|
||||
VarDecCmp@8
|
||||
VarDecCmpR8@12
|
||||
VarDecDiv@12
|
||||
VarDecFix@8
|
||||
VarDecFromBool@8
|
||||
VarDecFromCy@12
|
||||
VarDecFromDate@12
|
||||
VarDecFromDisp@12
|
||||
VarDecFromI1@8
|
||||
VarDecFromI2@8
|
||||
VarDecFromI4@8
|
||||
VarDecFromR4@8
|
||||
VarDecFromR8@12
|
||||
VarDecFromStr@16
|
||||
VarDecFromUI1@8
|
||||
VarDecFromUI2@8
|
||||
VarDecFromUI4@8
|
||||
VarDecInt@8
|
||||
VarDecMul@12
|
||||
VarDecNeg@8
|
||||
VarDecRound@12
|
||||
VarDecSub@12
|
||||
VarDiv@12
|
||||
VarEqv@12
|
||||
VarFix@8
|
||||
VarFormat@24
|
||||
VarFormatCurrency@28
|
||||
VarFormatDateTime@16
|
||||
VarFormatFromTokens@24
|
||||
VarFormatNumber@28
|
||||
VarFormatPercent@28
|
||||
VarI1FromBool@8
|
||||
VarI1FromCy@12
|
||||
VarI1FromDate@12
|
||||
VarI1FromDec@8
|
||||
VarI1FromDisp@12
|
||||
VarI1FromI2@8
|
||||
VarI1FromI4@8
|
||||
VarI1FromR4@8
|
||||
VarI1FromR8@12
|
||||
VarI1FromStr@16
|
||||
VarI1FromUI1@8
|
||||
VarI1FromUI2@8
|
||||
VarI1FromUI4@8
|
||||
VarI2FromBool@8
|
||||
VarI2FromCy@12
|
||||
VarI2FromDate@12
|
||||
VarI2FromDec@8
|
||||
VarI2FromDisp@12
|
||||
VarI2FromI1@8
|
||||
VarI2FromI4@8
|
||||
VarI2FromR4@8
|
||||
VarI2FromR8@12
|
||||
VarI2FromStr@16
|
||||
VarI2FromUI1@8
|
||||
VarI2FromUI2@8
|
||||
VarI2FromUI4@8
|
||||
VarI4FromBool@8
|
||||
VarI4FromCy@12
|
||||
VarI4FromDate@12
|
||||
VarI4FromDec@8
|
||||
VarI4FromDisp@12
|
||||
VarI4FromI1@8
|
||||
VarI4FromI2@8
|
||||
VarI4FromR4@8
|
||||
VarI4FromR8@12
|
||||
VarI4FromStr@16
|
||||
VarI4FromUI1@8
|
||||
VarI4FromUI2@8
|
||||
VarI4FromUI4@8
|
||||
VARIANT_UserFree@8
|
||||
VARIANT_UserMarshal@12
|
||||
VARIANT_UserSize@12
|
||||
VARIANT_UserUnmarshal@12
|
||||
VariantChangeType@16
|
||||
VariantChangeTypeEx@20
|
||||
VariantClear@4
|
||||
VariantCopy@8
|
||||
VariantCopyInd@8
|
||||
VariantInit@4
|
||||
VariantTimeToDosDateTime@16
|
||||
VariantTimeToSystemTime@12
|
||||
VarIdiv@12
|
||||
VarImp@12
|
||||
VarInt@8
|
||||
VarMod@12
|
||||
VarMonthName@16
|
||||
VarMul@12
|
||||
VarNeg@8
|
||||
VarNot@8
|
||||
VarNumFromParseNum@16
|
||||
VarOr@12
|
||||
VarParseNumFromStr@20
|
||||
VarPow@12
|
||||
VarR4CmpR8@12
|
||||
VarR4FromBool@8
|
||||
VarR4FromCy@12
|
||||
VarR4FromDate@12
|
||||
VarR4FromDec@8
|
||||
VarR4FromDisp@12
|
||||
VarR4FromI1@8
|
||||
VarR4FromI2@8
|
||||
VarR4FromI4@8
|
||||
VarR4FromR8@12
|
||||
VarR4FromStr@16
|
||||
VarR4FromUI1@8
|
||||
VarR4FromUI2@8
|
||||
VarR4FromUI4@8
|
||||
VarR8FromBool@8
|
||||
VarR8FromCy@12
|
||||
VarR8FromDate@12
|
||||
VarR8FromDec@8
|
||||
VarR8FromDisp@12
|
||||
VarR8FromI1@8
|
||||
VarR8FromI2@8
|
||||
VarR8FromI4@8
|
||||
VarR8FromR4@8
|
||||
VarR8FromStr@16
|
||||
VarR8FromUI1@8
|
||||
VarR8FromUI2@8
|
||||
VarR8FromUI4@8
|
||||
VarR8Pow@20
|
||||
VarR8Round@16
|
||||
VarRound@12
|
||||
VarSub@12
|
||||
VarTokenizeFormatString@28
|
||||
VarUdateFromDate@16
|
||||
VarUI1FromBool@8
|
||||
VarUI1FromCy@12
|
||||
VarUI1FromDate@12
|
||||
VarUI1FromDec@8
|
||||
VarUI1FromDisp@12
|
||||
VarUI1FromI1@8
|
||||
VarUI1FromI2@8
|
||||
VarUI1FromI4@8
|
||||
VarUI1FromR4@8
|
||||
VarUI1FromR8@12
|
||||
VarUI1FromStr@16
|
||||
VarUI1FromUI2@8
|
||||
VarUI1FromUI4@8
|
||||
VarUI2FromBool@8
|
||||
VarUI2FromCy@12
|
||||
VarUI2FromDate@12
|
||||
VarUI2FromDec@8
|
||||
VarUI2FromDisp@12
|
||||
VarUI2FromI1@8
|
||||
VarUI2FromI2@8
|
||||
VarUI2FromI4@8
|
||||
VarUI2FromR4@8
|
||||
VarUI2FromR8@12
|
||||
VarUI2FromStr@16
|
||||
VarUI2FromUI1@8
|
||||
VarUI2FromUI4@8
|
||||
VarUI4FromBool@8
|
||||
VarUI4FromCy@12
|
||||
VarUI4FromDate@12
|
||||
VarUI4FromDec@8
|
||||
VarUI4FromDisp@12
|
||||
VarUI4FromI1@8
|
||||
VarUI4FromI2@8
|
||||
VarUI4FromI4@8
|
||||
VarUI4FromR4@8
|
||||
VarUI4FromR8@12
|
||||
VarUI4FromStr@16
|
||||
VarUI4FromUI1@8
|
||||
VarUI4FromUI2@8
|
||||
VarWeekdayName@20
|
||||
VarXor@12
|
||||
VectorFromBstr@8
|
|
@ -1,57 +0,0 @@
|
|||
LIBRARY OLECLI32.DLL
|
||||
EXPORTS
|
||||
OleActivate@24
|
||||
OleClone@20
|
||||
OleClose@4
|
||||
OleCopyFromLink@24
|
||||
OleCopyToClipboard@4
|
||||
OleCreate@32
|
||||
OleCreateFromClip@28
|
||||
OleCreateFromFile@36
|
||||
OleCreateFromTemplate@32
|
||||
OleCreateInvisible@36
|
||||
OleCreateLinkFromClip@28
|
||||
OleCreateLinkFromFile@40
|
||||
OleDelete@4
|
||||
OleDraw@20
|
||||
OleEnumFormats@8
|
||||
OleEnumObjects@8
|
||||
OleEqual@8
|
||||
OleExecute@12
|
||||
OleGetData@12
|
||||
OleGetLinkUpdateOptions@8
|
||||
OleIsDcMeta@4
|
||||
OleLoadFromStream@24
|
||||
OleLockServer@8
|
||||
OleObjectConvert@24
|
||||
OleQueryBounds@8
|
||||
OleQueryClientVersion@0
|
||||
OleQueryCreateFromClip@12
|
||||
OleQueryLinkFromClip@12
|
||||
OleQueryName@12
|
||||
OleQueryOpen@4
|
||||
OleQueryOutOfDate@4
|
||||
OleQueryProtocol@8
|
||||
OleQueryReleaseError@4
|
||||
OleQueryReleaseMethod@4
|
||||
OleQueryReleaseStatus@4
|
||||
OleQuerySize@8
|
||||
OleQueryType@8
|
||||
OleReconnect@4
|
||||
OleRegisterClientDoc@16
|
||||
OleRelease@4
|
||||
OleRename@8
|
||||
OleRenameClientDoc@8
|
||||
OleRequestData@8
|
||||
OleRevertClientDoc@4
|
||||
OleRevokeClientDoc@4
|
||||
OleSaveToStream@8
|
||||
OleSavedClientDoc@4
|
||||
OleSetBounds@8
|
||||
OleSetColorScheme@8
|
||||
OleSetData@12
|
||||
OleSetHostNames@12
|
||||
OleSetLinkUpdateOptions@8
|
||||
OleSetTargetDevice@8
|
||||
OleUnlockServer@4
|
||||
OleUpdate@4
|
|
@ -1,25 +0,0 @@
|
|||
LIBRARY OLEDLG.DLL
|
||||
EXPORTS
|
||||
OleUIAddVerbMenuA@36
|
||||
OleUIAddVerbMenuW@36
|
||||
OleUIBusyA@4
|
||||
OleUIBusyW@4
|
||||
OleUICanConvertOrActivateAs@12
|
||||
OleUIChangeIconA@4
|
||||
OleUIChangeIconW@4
|
||||
OleUIChangeSourceA@4
|
||||
OleUIChangeSourceW@4
|
||||
OleUIConvertA@4
|
||||
OleUIConvertW@4
|
||||
OleUIEditLinksA@4
|
||||
OleUIEditLinksW@4
|
||||
OleUIInsertObjectA@4
|
||||
OleUIInsertObjectW@4
|
||||
OleUIObjectPropertiesA@4
|
||||
OleUIObjectPropertiesW@4
|
||||
OleUIPasteSpecialA@4
|
||||
OleUIPasteSpecialW@4
|
||||
OleUIPromptUserA
|
||||
OleUIPromptUserW
|
||||
OleUIUpdateLinksA@16
|
||||
OleUIUpdateLinksW@16
|
|
@ -1,9 +0,0 @@
|
|||
LIBRARY OLEPRO32.DLL
|
||||
EXPORTS
|
||||
OleCreateFontIndirect@12
|
||||
OleCreatePictureIndirect@16
|
||||
OleCreatePropertyFrame@44
|
||||
OleCreatePropertyFrameIndirect@4
|
||||
OleIconToCursor@8
|
||||
OleLoadPicture@20
|
||||
OleTranslateColor@12
|
|
@ -1,13 +0,0 @@
|
|||
LIBRARY OLESVR32.DLL
|
||||
EXPORTS
|
||||
OleBlockServer@4
|
||||
OleQueryServerVersion@0
|
||||
OleRegisterServer@20
|
||||
OleRegisterServerDoc@16
|
||||
OleRenameServerDoc@8
|
||||
OleRevertServerDoc@4
|
||||
OleRevokeObject@4
|
||||
OleRevokeServer@4
|
||||
OleRevokeServerDoc@4
|
||||
OleSavedServerDoc@4
|
||||
OleUnblockServer@8
|
|
@ -1,369 +0,0 @@
|
|||
LIBRARY OPENGL32.DLL
|
||||
EXPORTS
|
||||
GlmfBeginGlsBlock@4
|
||||
GlmfCloseMetaFile@4
|
||||
GlmfEndGlsBlock@4
|
||||
GlmfEndPlayback@4
|
||||
GlmfInitPlayback@12
|
||||
GlmfPlayGlsRecord@16
|
||||
glAccum@8
|
||||
glAlphaFunc@8
|
||||
glAreTexturesResident@12
|
||||
glArrayElement@4
|
||||
glBegin@4
|
||||
glBindTexture@8
|
||||
glBitmap@28
|
||||
glBlendFunc@8
|
||||
glCallList@4
|
||||
glCallLists@12
|
||||
glClear@4
|
||||
glClearAccum@16
|
||||
glClearColor@16
|
||||
glClearDepth@8
|
||||
glClearIndex@4
|
||||
glClearStencil@4
|
||||
glClipPlane@8
|
||||
glColor3b@12
|
||||
glColor3bv@4
|
||||
glColor3d@24
|
||||
glColor3dv@4
|
||||
glColor3f@12
|
||||
glColor3fv@4
|
||||
glColor3i@12
|
||||
glColor3iv@4
|
||||
glColor3s@12
|
||||
glColor3sv@4
|
||||
glColor3ub@12
|
||||
glColor3ubv@4
|
||||
glColor3ui@12
|
||||
glColor3uiv@4
|
||||
glColor3us@12
|
||||
glColor3usv@4
|
||||
glColor4b@16
|
||||
glColor4bv@4
|
||||
glColor4d@32
|
||||
glColor4dv@4
|
||||
glColor4f@16
|
||||
glColor4fv@4
|
||||
glColor4i@16
|
||||
glColor4iv@4
|
||||
glColor4s@16
|
||||
glColor4sv@4
|
||||
glColor4ub@16
|
||||
glColor4ubv@4
|
||||
glColor4ui@16
|
||||
glColor4uiv@4
|
||||
glColor4us@16
|
||||
glColor4usv@4
|
||||
glColorMask@16
|
||||
glColorMaterial@8
|
||||
glColorPointer@16
|
||||
glCopyPixels@20
|
||||
glCopyTexImage1D@28
|
||||
glCopyTexImage2D@32
|
||||
glCopyTexSubImage1D@24
|
||||
glCopyTexSubImage2D@32
|
||||
glCullFace@4
|
||||
glDebugEntry@8
|
||||
glDeleteLists@8
|
||||
glDeleteTextures@8
|
||||
glDepthFunc@4
|
||||
glDepthMask@4
|
||||
glDepthRange@16
|
||||
glDisable@4
|
||||
glDisableClientState@4
|
||||
glDrawArrays@12
|
||||
glDrawBuffer@4
|
||||
glDrawElements@16
|
||||
glDrawPixels@20
|
||||
glEdgeFlag@4
|
||||
glEdgeFlagPointer@8
|
||||
glEdgeFlagv@4
|
||||
glEnable@4
|
||||
glEnableClientState@4
|
||||
glEnd@0
|
||||
glEndList@0
|
||||
glEvalCoord1d@8
|
||||
glEvalCoord1dv@4
|
||||
glEvalCoord1f@4
|
||||
glEvalCoord1fv@4
|
||||
glEvalCoord2d@16
|
||||
glEvalCoord2dv@4
|
||||
glEvalCoord2f@8
|
||||
glEvalCoord2fv@4
|
||||
glEvalMesh1@12
|
||||
glEvalMesh2@20
|
||||
glEvalPoint1@4
|
||||
glEvalPoint2@8
|
||||
glFeedbackBuffer@12
|
||||
glFinish@0
|
||||
glFlush@0
|
||||
glFogf@8
|
||||
glFogfv@8
|
||||
glFogi@8
|
||||
glFogiv@8
|
||||
glFrontFace@4
|
||||
glFrustum@48
|
||||
glGenLists@4
|
||||
glGenTextures@8
|
||||
glGetBooleanv@8
|
||||
glGetClipPlane@8
|
||||
glGetDoublev@8
|
||||
glGetError@0
|
||||
glGetFloatv@8
|
||||
glGetIntegerv@8
|
||||
glGetLightfv@12
|
||||
glGetLightiv@12
|
||||
glGetMapdv@12
|
||||
glGetMapfv@12
|
||||
glGetMapiv@12
|
||||
glGetMaterialfv@12
|
||||
glGetMaterialiv@12
|
||||
glGetPixelMapfv@8
|
||||
glGetPixelMapuiv@8
|
||||
glGetPixelMapusv@8
|
||||
glGetPointerv@8
|
||||
glGetPolygonStipple@4
|
||||
glGetString@4
|
||||
glGetTexEnvfv@12
|
||||
glGetTexEnviv@12
|
||||
glGetTexGendv@12
|
||||
glGetTexGenfv@12
|
||||
glGetTexGeniv@12
|
||||
glGetTexImage@20
|
||||
glGetTexLevelParameterfv@16
|
||||
glGetTexLevelParameteriv@16
|
||||
glGetTexParameterfv@12
|
||||
glGetTexParameteriv@12
|
||||
glHint@8
|
||||
glIndexMask@4
|
||||
glIndexPointer@12
|
||||
glIndexd@8
|
||||
glIndexdv@4
|
||||
glIndexf@4
|
||||
glIndexfv@4
|
||||
glIndexi@4
|
||||
glIndexiv@4
|
||||
glIndexs@4
|
||||
glIndexsv@4
|
||||
glIndexub@4
|
||||
glIndexubv@4
|
||||
glInitNames@0
|
||||
glInterleavedArrays@12
|
||||
glIsEnabled@4
|
||||
glIsList@4
|
||||
glIsTexture@4
|
||||
glLightModelf@8
|
||||
glLightModelfv@8
|
||||
glLightModeli@8
|
||||
glLightModeliv@8
|
||||
glLightf@12
|
||||
glLightfv@12
|
||||
glLighti@12
|
||||
glLightiv@12
|
||||
glLineStipple@8
|
||||
glLineWidth@4
|
||||
glListBase@4
|
||||
glLoadIdentity@0
|
||||
glLoadMatrixd@4
|
||||
glLoadMatrixf@4
|
||||
glLoadName@4
|
||||
glLogicOp@4
|
||||
glMap1d@32
|
||||
glMap1f@24
|
||||
glMap2d@56
|
||||
glMap2f@40
|
||||
glMapGrid1d@20
|
||||
glMapGrid1f@12
|
||||
glMapGrid2d@40
|
||||
glMapGrid2f@24
|
||||
glMaterialf@12
|
||||
glMaterialfv@12
|
||||
glMateriali@12
|
||||
glMaterialiv@12
|
||||
glMatrixMode@4
|
||||
glMultMatrixd@4
|
||||
glMultMatrixf@4
|
||||
glNewList@8
|
||||
glNormal3b@12
|
||||
glNormal3bv@4
|
||||
glNormal3d@24
|
||||
glNormal3dv@4
|
||||
glNormal3f@12
|
||||
glNormal3fv@4
|
||||
glNormal3i@12
|
||||
glNormal3iv@4
|
||||
glNormal3s@12
|
||||
glNormal3sv@4
|
||||
glNormalPointer@12
|
||||
glOrtho@48
|
||||
glPassThrough@4
|
||||
glPixelMapfv@12
|
||||
glPixelMapuiv@12
|
||||
glPixelMapusv@12
|
||||
glPixelStoref@8
|
||||
glPixelStorei@8
|
||||
glPixelTransferf@8
|
||||
glPixelTransferi@8
|
||||
glPixelZoom@8
|
||||
glPointSize@4
|
||||
glPolygonMode@8
|
||||
glPolygonOffset@8
|
||||
glPolygonStipple@4
|
||||
glPopAttrib@0
|
||||
glPopClientAttrib@0
|
||||
glPopMatrix@0
|
||||
glPopName@0
|
||||
glPrioritizeTextures@12
|
||||
glPushAttrib@4
|
||||
glPushClientAttrib@4
|
||||
glPushMatrix@0
|
||||
glPushName@4
|
||||
glRasterPos2d@16
|
||||
glRasterPos2dv@4
|
||||
glRasterPos2f@8
|
||||
glRasterPos2fv@4
|
||||
glRasterPos2i@8
|
||||
glRasterPos2iv@4
|
||||
glRasterPos2s@8
|
||||
glRasterPos2sv@4
|
||||
glRasterPos3d@24
|
||||
glRasterPos3dv@4
|
||||
glRasterPos3f@12
|
||||
glRasterPos3fv@4
|
||||
glRasterPos3i@12
|
||||
glRasterPos3iv@4
|
||||
glRasterPos3s@12
|
||||
glRasterPos3sv@4
|
||||
glRasterPos4d@32
|
||||
glRasterPos4dv@4
|
||||
glRasterPos4f@16
|
||||
glRasterPos4fv@4
|
||||
glRasterPos4i@16
|
||||
glRasterPos4iv@4
|
||||
glRasterPos4s@16
|
||||
glRasterPos4sv@4
|
||||
glReadBuffer@4
|
||||
glReadPixels@28
|
||||
glRectd@32
|
||||
glRectdv@8
|
||||
glRectf@16
|
||||
glRectfv@8
|
||||
glRecti@16
|
||||
glRectiv@8
|
||||
glRects@16
|
||||
glRectsv@8
|
||||
glRenderMode@4
|
||||
glRotated@32
|
||||
glRotatef@16
|
||||
glScaled@24
|
||||
glScalef@12
|
||||
glScissor@16
|
||||
glSelectBuffer@8
|
||||
glShadeModel@4
|
||||
glStencilFunc@12
|
||||
glStencilMask@4
|
||||
glStencilOp@12
|
||||
glTexCoord1d@8
|
||||
glTexCoord1dv@4
|
||||
glTexCoord1f@4
|
||||
glTexCoord1fv@4
|
||||
glTexCoord1i@4
|
||||
glTexCoord1iv@4
|
||||
glTexCoord1s@4
|
||||
glTexCoord1sv@4
|
||||
glTexCoord2d@16
|
||||
glTexCoord2dv@4
|
||||
glTexCoord2f@8
|
||||
glTexCoord2fv@4
|
||||
glTexCoord2i@8
|
||||
glTexCoord2iv@4
|
||||
glTexCoord2s@8
|
||||
glTexCoord2sv@4
|
||||
glTexCoord3d@24
|
||||
glTexCoord3dv@4
|
||||
glTexCoord3f@12
|
||||
glTexCoord3fv@4
|
||||
glTexCoord3i@12
|
||||
glTexCoord3iv@4
|
||||
glTexCoord3s@12
|
||||
glTexCoord3sv@4
|
||||
glTexCoord4d@32
|
||||
glTexCoord4dv@4
|
||||
glTexCoord4f@16
|
||||
glTexCoord4fv@4
|
||||
glTexCoord4i@16
|
||||
glTexCoord4iv@4
|
||||
glTexCoord4s@16
|
||||
glTexCoord4sv@4
|
||||
glTexCoordPointer@16
|
||||
glTexEnvf@12
|
||||
glTexEnvfv@12
|
||||
glTexEnvi@12
|
||||
glTexEnviv@12
|
||||
glTexGend@16
|
||||
glTexGendv@12
|
||||
glTexGenf@12
|
||||
glTexGenfv@12
|
||||
glTexGeni@12
|
||||
glTexGeniv@12
|
||||
glTexImage1D@32
|
||||
glTexImage2D@36
|
||||
glTexParameterf@12
|
||||
glTexParameterfv@12
|
||||
glTexParameteri@12
|
||||
glTexParameteriv@12
|
||||
glTexSubImage1D@28
|
||||
glTexSubImage2D@36
|
||||
glTranslated@24
|
||||
glTranslatef@12
|
||||
glVertex2d@16
|
||||
glVertex2dv@4
|
||||
glVertex2f@8
|
||||
glVertex2fv@4
|
||||
glVertex2i@8
|
||||
glVertex2iv@4
|
||||
glVertex2s@8
|
||||
glVertex2sv@4
|
||||
glVertex3d@24
|
||||
glVertex3dv@4
|
||||
glVertex3f@12
|
||||
glVertex3fv@4
|
||||
glVertex3i@12
|
||||
glVertex3iv@4
|
||||
glVertex3s@12
|
||||
glVertex3sv@4
|
||||
glVertex4d@32
|
||||
glVertex4dv@4
|
||||
glVertex4f@16
|
||||
glVertex4fv@4
|
||||
glVertex4i@16
|
||||
glVertex4iv@4
|
||||
glVertex4s@16
|
||||
glVertex4sv@4
|
||||
glVertexPointer@16
|
||||
glViewport@16
|
||||
wglChoosePixelFormat@8
|
||||
wglCopyContext@12
|
||||
wglCreateContext@4
|
||||
wglCreateLayerContext@8
|
||||
wglDeleteContext@4
|
||||
wglDescribeLayerPlane@20
|
||||
wglDescribePixelFormat@16
|
||||
wglGetCurrentContext@0
|
||||
wglGetCurrentDC@0
|
||||
wglGetDefaultProcAddress@4
|
||||
wglGetLayerPaletteEntries@20
|
||||
wglGetPixelFormat@4
|
||||
wglGetProcAddress@4
|
||||
wglMakeCurrent@8
|
||||
wglRealizeLayerPalette@12
|
||||
wglSetLayerPaletteEntries@20
|
||||
wglSetPixelFormat@12
|
||||
wglShareLists@8
|
||||
wglSwapBuffers@4
|
||||
wglSwapLayerBuffers@8
|
||||
wglUseFontBitmapsA@16
|
||||
wglUseFontBitmapsW@16
|
||||
wglUseFontOutlinesA@32
|
||||
wglUseFontOutlinesW@32
|
|
@ -1,101 +0,0 @@
|
|||
LIBRARY PENWIN32.DLL
|
||||
EXPORTS
|
||||
AddInksetInterval@8
|
||||
AddPenDataHRC@8
|
||||
AddPenInputHRC@20
|
||||
AddPointsPenData@16
|
||||
AddWordsHWL@12
|
||||
BoundingRectFromPoints@12
|
||||
CharacterToSymbol@12
|
||||
CompressPenData@12
|
||||
ConfigHREC@16
|
||||
CorrectWriting@24
|
||||
CreateCompatibleHRC@8
|
||||
CreateHWL@16
|
||||
CreateInkset@4
|
||||
CreateInksetHRCRESULT@12
|
||||
CreatePenDataEx@16
|
||||
CreatePenDataHRC@4
|
||||
CreatePenDataRegion@8
|
||||
DPtoTP@8
|
||||
DestroyHRC@4
|
||||
DestroyHRCRESULT@4
|
||||
DestroyHWL@4
|
||||
DestroyInkset@4
|
||||
DestroyPenData@4
|
||||
DoDefaultPenInput@8
|
||||
DrawPenDataEx@40
|
||||
DuplicatePenData@8
|
||||
EnableGestureSetHRC@12
|
||||
EnableSystemDictionaryHRC@8
|
||||
EndPenInputHRC@4
|
||||
ExtractPenDataPoints@28
|
||||
ExtractPenDataStrokes@20
|
||||
GetAlphabetHRC@12
|
||||
GetAlphabetPriorityHRC@12
|
||||
GetAlternateWordsHRCRESULT@20
|
||||
GetBoxMappingHRCRESULT@16
|
||||
GetBoxResultsHRC@24
|
||||
GetGuideHRC@12
|
||||
GetHRECFromHRC@4
|
||||
GetHotspotsHRCRESULT@16
|
||||
GetInksetInterval@12
|
||||
GetInksetIntervalCount@4
|
||||
GetInternationalHRC@20
|
||||
GetMaxResultsHRC@4
|
||||
GetPenAppFlags@0
|
||||
GetPenAsyncState@4
|
||||
GetPenDataAttributes@12
|
||||
GetPenDataInfo@16
|
||||
GetPenInput@24
|
||||
GetPenMiscInfo@8
|
||||
GetPointsFromPenData@20
|
||||
GetResultsHRC@16
|
||||
GetStrokeAttributes@16
|
||||
GetStrokeTableAttributes@16
|
||||
GetSymbolCountHRCRESULT@4
|
||||
GetSymbolsHRCRESULT@16
|
||||
GetVersionPenWin@0
|
||||
GetWordlistCoercionHRC@4
|
||||
GetWordlistHRC@8
|
||||
HitTestPenData@20
|
||||
InsertPenData@12
|
||||
InsertPenDataPoints@24
|
||||
InsertPenDataStroke@20
|
||||
InstallRecognizer@4
|
||||
IsPenEvent@8
|
||||
MetricScalePenData@8
|
||||
OffsetPenData@12
|
||||
PeekPenInput@20
|
||||
PenDataFromBuffer@20
|
||||
PenDataToBuffer@16
|
||||
ProcessHRC@8
|
||||
ReadHWL@8
|
||||
RedisplayPenData@24
|
||||
RemovePenDataStrokes@12
|
||||
ResizePenData@8
|
||||
SetAlphabetHRC@12
|
||||
SetAlphabetPriorityHRC@12
|
||||
SetBoxAlphabetHRC@12
|
||||
SetGuideHRC@12
|
||||
SetInternationalHRC@20
|
||||
SetMaxResultsHRC@8
|
||||
SetPenAppFlags@8
|
||||
SetPenMiscInfo@8
|
||||
SetResultsHookHREC@8
|
||||
SetStrokeAttributes@16
|
||||
SetStrokeTableAttributes@16
|
||||
SetWordlistCoercionHRC@8
|
||||
SetWordlistHRC@8
|
||||
StartInking@12
|
||||
StartPenInput@16
|
||||
StopInking@4
|
||||
StopPenInput@12
|
||||
SymbolToCharacter@16
|
||||
TPtoDP@8
|
||||
TargetPoints@20
|
||||
TrainHREC@20
|
||||
TrimPenData@12
|
||||
UnhookResultsHookHREC@8
|
||||
UninstallRecognizer@4
|
||||
WriteHWL@8
|
|
@ -1,36 +0,0 @@
|
|||
LIBRARY PKPD32.DLL
|
||||
EXPORTS
|
||||
AddInksetInterval@8
|
||||
AddPointsPenData@16
|
||||
BoundingRectFromPoints@12
|
||||
CompressPenData@12
|
||||
CreateInkset@4
|
||||
CreatePenDataEx@16
|
||||
CreatePenDataRegion@8
|
||||
DestroyInkset@4
|
||||
DestroyPenData@4
|
||||
DrawPenDataEx@40
|
||||
DuplicatePenData@8
|
||||
ExtractPenDataPoints@28
|
||||
ExtractPenDataStrokes@20
|
||||
GetInksetInterval@12
|
||||
GetInksetIntervalCount@4
|
||||
GetPenDataAttributes@12
|
||||
GetPenDataInfo@16
|
||||
GetPointsFromPenData@20
|
||||
GetStrokeAttributes@16
|
||||
GetStrokeTableAttributes@16
|
||||
HitTestPenData@20
|
||||
InsertPenData@12
|
||||
InsertPenDataPoints@24
|
||||
InsertPenDataStroke@20
|
||||
MetricScalePenData@8
|
||||
OffsetPenData@12
|
||||
PenDataFromBuffer@20
|
||||
PenDataToBuffer@16
|
||||
RedisplayPenData@24
|
||||
RemovePenDataStrokes@12
|
||||
ResizePenData@8
|
||||
SetStrokeAttributes@16
|
||||
SetStrokeTableAttributes@16
|
||||
TrimPenData@12
|
|
@ -1,25 +0,0 @@
|
|||
LIBRARY POWRPROF.dll
|
||||
EXPORTS
|
||||
CallNtPowerInformation@20
|
||||
CanUserWritePwrScheme@0
|
||||
DeletePwrScheme@4
|
||||
EnumPwrSchemes@8
|
||||
GetActivePwrScheme@4
|
||||
GetCurrentPowerPolicies@8
|
||||
GetPwrCapabilities@4
|
||||
GetPwrDiskSpindownRange@8
|
||||
IsAdminOverrideActive@4
|
||||
IsPwrHibernateAllowed@0
|
||||
IsPwrShutdownAllowed@0
|
||||
IsPwrSuspendAllowed@0
|
||||
LoadCurrentPwrScheme@16
|
||||
MergeLegacyPwrScheme@16
|
||||
ReadGlobalPwrPolicy@4
|
||||
ReadProcessorPwrScheme@8
|
||||
ReadPwrScheme@8
|
||||
SetActivePwrScheme@12
|
||||
SetSuspendState@12
|
||||
ValidatePowerPolicies@8
|
||||
WriteGlobalPwrPolicy@4
|
||||
WriteProcessorPwrScheme@8
|
||||
WritePwrScheme@16
|
|
@ -1,21 +0,0 @@
|
|||
LIBRARY PSAPI.DLL
|
||||
EXPORTS
|
||||
EmptyWorkingSet@4
|
||||
EnumDeviceDrivers@12
|
||||
EnumProcesses@12
|
||||
EnumProcessModules@16
|
||||
GetDeviceDriverBaseNameA@12
|
||||
GetDeviceDriverBaseNameW@12
|
||||
GetDeviceDriverFileNameA@12
|
||||
GetDeviceDriverFileNameW@12
|
||||
GetMappedFileNameA@16
|
||||
GetMappedFileNameW@16
|
||||
GetModuleBaseNameA@16
|
||||
GetModuleBaseNameW@16
|
||||
GetModuleFileNameExA@16
|
||||
GetModuleFileNameExW@16
|
||||
GetModuleInformation@16
|
||||
GetProcessMemoryInfo@12
|
||||
GetWsChanges@12
|
||||
InitializeProcessForWsWatch@4
|
||||
QueryWorkingSet@12
|
|
@ -1,84 +0,0 @@
|
|||
LIBRARY RAPI.DLL
|
||||
EXPORTS
|
||||
CeCheckPassword@4
|
||||
CeCloseHandle@4
|
||||
CeCopyFile@12
|
||||
CeCreateDatabase@16
|
||||
CeCreateDirectory@8
|
||||
CeCreateFile@28
|
||||
CeCreateProcess@40
|
||||
CeDeleteDatabase@4
|
||||
CeDeleteFile@4
|
||||
CeDeleteRecord@8
|
||||
CeFindAllDatabases@16
|
||||
CeFindAllFiles@16
|
||||
CeFindClose@4
|
||||
CeFindFirstDatabase@4
|
||||
CeFindFirstFile@8
|
||||
CeFindNextDatabase@4
|
||||
CeFindNextFile@8
|
||||
CeGetClassName@12
|
||||
CeGetDesktopDeviceCaps@4
|
||||
CeGetFileAttributes@4
|
||||
CeGetFileSize@8
|
||||
CeGetFileTime@16
|
||||
CeGetLastError@0
|
||||
CeGetSpecialFolderPath@12
|
||||
CeGetStoreInformation@4
|
||||
CeGetSystemInfo@4
|
||||
CeGetSystemMetrics@4
|
||||
CeGetSystemPowerStatusEx@8
|
||||
CeGetTempPath@8
|
||||
CeGetVersionEx@4
|
||||
CeGetWindow@8
|
||||
CeGetWindowLong@8
|
||||
CeGetWindowText@12
|
||||
CeGlobalMemoryStatus@4
|
||||
CeMoveFile@8
|
||||
CeOidGetInfo@8
|
||||
CeOpenDatabase@20
|
||||
CeRapiFreeBuffer@4
|
||||
CeRapiGetError@0
|
||||
CeRapiInit@0
|
||||
CeRapiInitEx@4
|
||||
CeRapiInvoke@32
|
||||
CeRapiUninit@0
|
||||
CeReadFile@20
|
||||
CeReadRecordProps@24
|
||||
CeRegCloseKey@4
|
||||
CeRegCreateKeyEx@36
|
||||
CeRegDeleteKey@8
|
||||
CeRegDeleteValue@8
|
||||
CeRegEnumKeyEx@32
|
||||
CeRegEnumValue@32
|
||||
CeRegOpenKeyEx@20
|
||||
CeRegQueryInfoKey@48
|
||||
CeRegQueryValueEx@24
|
||||
CeRegSetValueEx@24
|
||||
CeRemoveDirectory@4
|
||||
CeSHCreateShortcut@8
|
||||
CeSHGetShortcutTarget@12
|
||||
CeSeekDatabase@16
|
||||
CeSetDatabaseInfo@8
|
||||
CeSetEndOfFile@4
|
||||
CeSetFileAttributes@8
|
||||
CeSetFilePointer@16
|
||||
CeSetFileTime@16
|
||||
CeWriteFile@20
|
||||
CeWriteRecordProps@16
|
||||
GetRapiError@0
|
||||
RAPI_EXP_10@4
|
||||
RAPI_EXP_11@8
|
||||
RAPI_EXP_12@4
|
||||
RAPI_EXP_13@0
|
||||
RAPI_EXP_14@4
|
||||
RAPI_EXP_15@4
|
||||
RAPI_EXP_16@0
|
||||
RAPI_EXP_17@8
|
||||
RAPI_EXP_18@8
|
||||
RAPI_EXP_19@12
|
||||
RAPI_EXP_20@4
|
||||
RAPI_EXP_21@8
|
||||
RAPI_EXP_22@8
|
||||
RAPI_EXP_23@12
|
||||
RapiFreeBuffer@4
|
|
@ -1,146 +0,0 @@
|
|||
LIBRARY RASAPI32.DLL
|
||||
EXPORTS
|
||||
DDMGetPhonebookInfo@32
|
||||
DwCloneEntry@12
|
||||
DwDeleteSubEntry@12
|
||||
DwEnumEntriesForAllUsers@12
|
||||
DwEnumEntryDetails@16
|
||||
FreeSharedAccessApplication@4
|
||||
FreeSharedAccessServer@4
|
||||
RasAutoDialSharedConnection@0
|
||||
RasAutodialAddressToNetwork@12
|
||||
RasAutodialEntryToNetwork@12
|
||||
RasClearConnectionStatistics@4
|
||||
RasClearLinkStatistics@8
|
||||
RasConnectionNotificationA@12
|
||||
RasConnectionNotificationW@12
|
||||
RasCreatePhonebookEntryA@8
|
||||
RasCreatePhonebookEntryW@8
|
||||
RasDeleteEntryA@8
|
||||
RasDeleteEntryW@8
|
||||
RasDialA@24
|
||||
RasDialW@24
|
||||
RasDialWow@20
|
||||
RasEditPhonebookEntryA@12
|
||||
RasEditPhonebookEntryW@12
|
||||
RasEnumAutodialAddressesA@12
|
||||
RasEnumAutodialAddressesW@12
|
||||
RasEnumConnectionsA@12
|
||||
RasEnumConnectionsW@12
|
||||
RasEnumConnectionsWow@12
|
||||
RasEnumDevicesA@12
|
||||
RasEnumDevicesW@12
|
||||
RasEnumEntriesA@20
|
||||
RasEnumEntriesW@20
|
||||
RasEnumEntriesWow@20
|
||||
RasFreeEapUserIdentityA@4
|
||||
RasFreeEapUserIdentityW@4
|
||||
RasFreeLanConnTable@8
|
||||
RasFreeSharedAccessSettings@4
|
||||
RasGetAutodialAddressA@20
|
||||
RasGetAutodialAddressW@20
|
||||
RasGetAutodialEnableA@8
|
||||
RasGetAutodialEnableW@8
|
||||
RasGetAutodialParamA@12
|
||||
RasGetAutodialParamW@12
|
||||
RasGetConnectResponse@8
|
||||
RasGetConnectStatusA@8
|
||||
RasGetConnectStatusW@8
|
||||
RasGetConnectStatusWow@8
|
||||
RasGetConnectionStatistics@8
|
||||
RasGetCountryInfoA@8
|
||||
RasGetCountryInfoW@8
|
||||
RasGetCredentialsA@12
|
||||
RasGetCredentialsW@12
|
||||
RasGetCustomAuthDataA@16
|
||||
RasGetCustomAuthDataW@16
|
||||
RasGetEapUserDataA@20
|
||||
RasGetEapUserDataW@20
|
||||
RasGetEapUserIdentityA@20
|
||||
RasGetEapUserIdentityW@20
|
||||
RasGetEntryDialParamsA@12
|
||||
RasGetEntryDialParamsW@12
|
||||
RasGetEntryHrasconnA@12
|
||||
RasGetEntryHrasconnW@12
|
||||
RasGetEntryPropertiesA@24
|
||||
RasGetEntryPropertiesW@24
|
||||
RasGetErrorStringA@12
|
||||
RasGetErrorStringW@12
|
||||
RasGetErrorStringWow@12
|
||||
RasGetHport@4
|
||||
RasGetLinkStatistics@12
|
||||
RasGetProjectionInfoA@16
|
||||
RasGetProjectionInfoW@16
|
||||
RasGetSubEntryHandleA@12
|
||||
RasGetSubEntryHandleW@12
|
||||
RasGetSubEntryPropertiesA@28
|
||||
RasGetSubEntryPropertiesW@28
|
||||
RasHangUpA@4
|
||||
RasHangUpW@4
|
||||
RasHangUpWow@4
|
||||
RasInvokeEapUI@16
|
||||
RasIsRouterConnection@4
|
||||
RasIsSharedConnection@8
|
||||
RasLoadSharedAccessSettings@4
|
||||
RasNameFromSharedConnection@8
|
||||
RasQueryLanConnTable@12
|
||||
RasQueryRedialOnLinkFailure@12
|
||||
RasQuerySharedAutoDial@4
|
||||
RasQuerySharedConnection@4
|
||||
RasQuerySharedConnectionCredentials@8
|
||||
RasQuerySharedPrivateLan@4
|
||||
RasQuerySharedPrivateLanAddress@4
|
||||
RasRenameEntryA@12
|
||||
RasRenameEntryW@12
|
||||
RasSaveSharedAccessSettings@4
|
||||
RasSetAutodialAddressA@20
|
||||
RasSetAutodialAddressW@20
|
||||
RasSetAutodialEnableA@8
|
||||
RasSetAutodialEnableW@8
|
||||
RasSetAutodialParamA@12
|
||||
RasSetAutodialParamW@12
|
||||
RasSetCredentialsA@16
|
||||
RasSetCredentialsW@16
|
||||
RasSetCustomAuthDataA@16
|
||||
RasSetCustomAuthDataW@16
|
||||
RasSetEapUserDataA@20
|
||||
RasSetEapUserDataW@20
|
||||
RasSetEntryDialParamsA@12
|
||||
RasSetEntryDialParamsW@12
|
||||
RasSetEntryPropertiesA@24
|
||||
RasSetEntryPropertiesW@24
|
||||
RasSetOldPassword@8
|
||||
RasSetSharedAutoDial@4
|
||||
RasSetSharedConnectionCredentials@8
|
||||
RasSetSubEntryPropertiesA@28
|
||||
RasSetSubEntryPropertiesW@28
|
||||
RasShareConnection@8
|
||||
RasUnshareConnection@4
|
||||
RasValidateEntryNameA@8
|
||||
RasValidateEntryNameW@8
|
||||
RasfileClose@4
|
||||
RasfileDeleteLine@4
|
||||
RasfileFindFirstLine@12
|
||||
RasfileFindLastLine@12
|
||||
RasfileFindMarkedLine@8
|
||||
RasfileFindNextKeyLine@12
|
||||
RasfileFindNextLine@12
|
||||
RasfileFindPrevLine@12
|
||||
RasfileFindSectionLine@12
|
||||
RasfileGetKeyValueFields@12
|
||||
RasfileGetLine@4
|
||||
RasfileGetLineMark@4
|
||||
RasfileGetLineText@8
|
||||
RasfileGetLineType@4
|
||||
RasfileGetSectionName@8
|
||||
RasfileInsertLine@12
|
||||
RasfileLoad@16
|
||||
RasfileLoadInfo@8
|
||||
RasfilePutKeyValueFields@12
|
||||
RasfilePutLineMark@8
|
||||
RasfilePutLineText@8
|
||||
RasfilePutSectionName@8
|
||||
RasfileWrite@8
|
||||
SharedAccessResponseListToString@8
|
||||
SharedAccessResponseStringToList@12
|
||||
UnInitializeRAS@0
|
|
@ -1,8 +0,0 @@
|
|||
LIBRARY RASDLG.DLL
|
||||
EXPORTS
|
||||
RasDialDlgA@16
|
||||
RasDialDlgW@16
|
||||
RasEntryDlgA@12
|
||||
RasEntryDlgW@12
|
||||
RasPhonebookDlgA@12
|
||||
RasPhonebookDlgW@12
|
|
@ -1,6 +0,0 @@
|
|||
#include <windows.h>
|
||||
|
||||
STRINGTABLE
|
||||
{
|
||||
100 "Dummy string"
|
||||
}
|
|
@ -1,26 +0,0 @@
|
|||
LIBRARY RPCDCE4.dll
|
||||
EXPORTS
|
||||
DceErrorInqTextA@8
|
||||
DceErrorInqTextW@8
|
||||
MIDL_user_allocate@4
|
||||
MIDL_user_free@4
|
||||
RpcBindingToStringBindingA@8
|
||||
RpcBindingToStringBindingW@8
|
||||
RpcMgmtEpEltInqBegin@24
|
||||
RpcMgmtEpEltInqDone@4
|
||||
RpcMgmtEpEltInqNextA@20
|
||||
RpcMgmtEpEltInqNextW@20
|
||||
RpcMgmtEpUnregister@16
|
||||
RpcMgmtInqIfIds@8
|
||||
RpcMgmtInqServerPrincNameA@12
|
||||
RpcMgmtInqServerPrincNameW@12
|
||||
RpcMgmtInqStats@8
|
||||
RpcMgmtIsServerListening@4
|
||||
RpcMgmtSetAuthorizationFn@4
|
||||
RpcMgmtStopServerListening@4
|
||||
RpcServerListen@12
|
||||
UuidCompare@12
|
||||
UuidCreateNil@4
|
||||
UuidEqual@12
|
||||
UuidHash@8
|
||||
UuidIsNil@8
|
|
@ -1,60 +0,0 @@
|
|||
LIBRARY RPCNS4.dll
|
||||
EXPORTS
|
||||
I_GetDefaultEntrySyntax@0
|
||||
I_RpcNsGetBuffer@4
|
||||
I_RpcNsRaiseException@8
|
||||
I_RpcNsSendReceive@8
|
||||
I_RpcReBindBuffer@4
|
||||
RpcIfIdVectorFree@4
|
||||
RpcNsBindingExportA@20
|
||||
RpcNsBindingExportW@20
|
||||
RpcNsBindingImportBeginA@20
|
||||
RpcNsBindingImportBeginW@20
|
||||
RpcNsBindingImportDone@4
|
||||
RpcNsBindingImportNext@8
|
||||
RpcNsBindingLookupBeginA@24
|
||||
RpcNsBindingLookupBeginW@24
|
||||
RpcNsBindingLookupDone@4
|
||||
RpcNsBindingLookupNext@8
|
||||
RpcNsBindingSelect@8
|
||||
RpcNsBindingUnexportA@16
|
||||
RpcNsBindingUnexportW@16
|
||||
RpcNsEntryExpandNameA@12
|
||||
RpcNsEntryExpandNameW@12
|
||||
RpcNsEntryObjectInqBeginA@12
|
||||
RpcNsEntryObjectInqBeginW@12
|
||||
RpcNsEntryObjectInqDone@4
|
||||
RpcNsEntryObjectInqNext@8
|
||||
RpcNsGroupDeleteA@8
|
||||
RpcNsGroupDeleteW@8
|
||||
RpcNsGroupMbrAddA@16
|
||||
RpcNsGroupMbrAddW@16
|
||||
RpcNsGroupMbrInqBeginA@16
|
||||
RpcNsGroupMbrInqBeginW@16
|
||||
RpcNsGroupMbrInqDone@4
|
||||
RpcNsGroupMbrInqNextA@8
|
||||
RpcNsGroupMbrInqNextW@8
|
||||
RpcNsGroupMbrRemoveA@16
|
||||
RpcNsGroupMbrRemoveW@16
|
||||
RpcNsMgmtBindingUnexportA@20
|
||||
RpcNsMgmtBindingUnexportW@20
|
||||
RpcNsMgmtEntryCreateA@8
|
||||
RpcNsMgmtEntryCreateW@8
|
||||
RpcNsMgmtEntryDeleteA@8
|
||||
RpcNsMgmtEntryDeleteW@8
|
||||
RpcNsMgmtEntryInqIfIdsA@12
|
||||
RpcNsMgmtEntryInqIfIdsW@12
|
||||
RpcNsMgmtHandleSetExpAge@8
|
||||
RpcNsMgmtInqExpAge@4
|
||||
RpcNsMgmtSetExpAge@4
|
||||
RpcNsProfileDeleteA@8
|
||||
RpcNsProfileDeleteW@8
|
||||
RpcNsProfileEltAddA@28
|
||||
RpcNsProfileEltAddW@28
|
||||
RpcNsProfileEltInqBeginA@32
|
||||
RpcNsProfileEltInqBeginW@32
|
||||
RpcNsProfileEltInqDone@4
|
||||
RpcNsProfileEltInqNextA@20
|
||||
RpcNsProfileEltInqNextW@20
|
||||
RpcNsProfileEltRemoveA@20
|
||||
RpcNsProfileEltRemoveW@20
|
|
@ -1,373 +0,0 @@
|
|||
LIBRARY RPCRT4.dll
|
||||
EXPORTS
|
||||
CStdStubBuffer_AddRef@4
|
||||
CStdStubBuffer_Connect@8
|
||||
CStdStubBuffer_CountRefs@4
|
||||
CStdStubBuffer_DebugServerQueryInterface@8
|
||||
CStdStubBuffer_DebugServerRelease@8
|
||||
CStdStubBuffer_Disconnect@4
|
||||
CStdStubBuffer_Invoke@12
|
||||
CStdStubBuffer_IsIIDSupported@8
|
||||
CStdStubBuffer_QueryInterface@12
|
||||
DceErrorInqTextA@8
|
||||
DceErrorInqTextW@8
|
||||
IUnknown_AddRef_Proxy@4
|
||||
IUnknown_QueryInterface_Proxy@12
|
||||
IUnknown_Release_Proxy@4
|
||||
I_RpcAllocate@4
|
||||
I_RpcBindingCopy@8
|
||||
I_RpcBindingInqDynamicEndpoint@8
|
||||
I_RpcBindingInqTransportType@8
|
||||
I_RpcBindingIsClientLocal@8
|
||||
I_RpcClearMutex@4
|
||||
I_RpcConnectionInqSockBuffSize2@4
|
||||
I_RpcConnectionInqSockBuffSize@8
|
||||
I_RpcConnectionSetSockBuffSize@8
|
||||
I_RpcDeleteMutex@4
|
||||
I_RpcFree@4
|
||||
I_RpcFreeBuffer@4
|
||||
I_RpcGetAssociationContext@4
|
||||
_imp__I_RpcGetAssociationContext@4
|
||||
I_RpcGetBuffer@4
|
||||
I_RpcGetCurrentCallHandle@0
|
||||
I_RpcIOAlerted@4
|
||||
I_RpcIfInqTransferSyntaxes@16
|
||||
I_RpcMapWin32Status@4
|
||||
I_RpcMonitorAssociation@12
|
||||
I_RpcNsBindingSetEntryName@12
|
||||
I_RpcParseSecurity@8
|
||||
I_RpcPauseExecution@4
|
||||
I_RpcRequestMutex@4
|
||||
I_RpcSendReceive@4
|
||||
I_RpcServerRegisterForwardFunction@4
|
||||
I_RpcSetAssociationContext@4
|
||||
_imp__I_RpcSetAssociationContext@4
|
||||
I_RpcSsDontSerializeContext@0
|
||||
_imp__I_RpcSsDontSerializeContext@0
|
||||
I_RpcStopMonitorAssociation@4
|
||||
I_RpcTransClientMaxFrag@4
|
||||
I_RpcTransClientReallocBuffer@16
|
||||
I_RpcTransServerFindConnection@8
|
||||
I_RpcTransServerFreeBuffer@8
|
||||
I_RpcTransServerMaxFrag@4
|
||||
I_RpcTransServerNewConnection@12
|
||||
I_RpcTransServerProtectThread@0
|
||||
I_RpcTransServerReallocBuffer@16
|
||||
I_RpcTransServerReceiveDirectReady@4
|
||||
I_RpcTransServerUnprotectThread@4
|
||||
I_UuidCreate@4
|
||||
MIDL_wchar_strcpy@8
|
||||
MIDL_wchar_strlen@4
|
||||
MesBufferHandleReset@24
|
||||
MesDecodeBufferHandleCreate@12
|
||||
MesDecodeIncrementalHandleCreate@12
|
||||
MesEncodeDynBufferHandleCreate@12
|
||||
MesEncodeFixedBufferHandleCreate@16
|
||||
MesEncodeIncrementalHandleCreate@16
|
||||
MesHandleFree@4
|
||||
MesIncrementalHandleReset@24
|
||||
MesInqProcEncodingId@12
|
||||
NDRCContextBinding@4
|
||||
_imp__NDRCContextBinding@4
|
||||
NDRCContextMarshall@8
|
||||
_imp__NDRCContextMarshall@8
|
||||
NDRCContextUnmarshall@16
|
||||
_imp__NDRCContextUnmarshall@16
|
||||
NDRSContextMarshall@12
|
||||
_imp__NDRSContextMarshall@12
|
||||
NDRSContextUnmarshall@8
|
||||
_imp__NDRSContextUnmarshall@8
|
||||
NDRcopy@12
|
||||
NdrAllocate@8
|
||||
NdrByteCountPointerBufferSize@12
|
||||
NdrByteCountPointerFree@12
|
||||
NdrByteCountPointerMarshall@12
|
||||
NdrByteCountPointerUnmarshall@16
|
||||
NdrCStdStubBuffer2_Release@8
|
||||
NdrCStdStubBuffer_Release@8
|
||||
NdrClearOutParameters@12
|
||||
NdrClientCall
|
||||
NdrClientContextMarshall@12
|
||||
_imp__NdrClientContextMarshall@12
|
||||
NdrClientContextUnmarshall@12
|
||||
_imp__NdrClientContextUnmarshall@12
|
||||
NdrClientInitialize@16
|
||||
NdrClientInitializeNew@16
|
||||
NdrComplexArrayBufferSize@12
|
||||
NdrComplexArrayFree@12
|
||||
NdrComplexArrayMarshall@12
|
||||
NdrComplexArrayMemorySize@8
|
||||
NdrComplexArrayUnmarshall@16
|
||||
NdrComplexStructBufferSize@12
|
||||
NdrComplexStructFree@12
|
||||
NdrComplexStructMarshall@12
|
||||
NdrComplexStructMemorySize@8
|
||||
NdrComplexStructUnmarshall@16
|
||||
NdrConformantArrayBufferSize@12
|
||||
NdrConformantArrayFree@12
|
||||
NdrConformantArrayMarshall@12
|
||||
NdrConformantArrayMemorySize@8
|
||||
NdrConformantArrayUnmarshall@16
|
||||
NdrConformantStringBufferSize@12
|
||||
NdrConformantStringMarshall@12
|
||||
NdrConformantStringMemorySize@8
|
||||
NdrConformantStringUnmarshall@16
|
||||
NdrConformantStructBufferSize@12
|
||||
NdrConformantStructFree@12
|
||||
NdrConformantStructMarshall@12
|
||||
NdrConformantStructMemorySize@8
|
||||
NdrConformantStructUnmarshall@16
|
||||
NdrConformantVaryingArrayBufferSize@12
|
||||
NdrConformantVaryingArrayFree@12
|
||||
NdrConformantVaryingArrayMarshall@12
|
||||
NdrConformantVaryingArrayMemorySize@8
|
||||
NdrConformantVaryingArrayUnmarshall@16
|
||||
NdrConformantVaryingStructBufferSize@12
|
||||
NdrConformantVaryingStructFree@12
|
||||
NdrConformantVaryingStructMarshall@12
|
||||
NdrConformantVaryingStructMemorySize@8
|
||||
NdrConformantVaryingStructUnmarshall@16
|
||||
NdrContextHandleSize@12
|
||||
_imp__NdrContextHandleSize@12
|
||||
NdrConvert@8
|
||||
NdrDllCanUnloadNow@4
|
||||
NdrDllGetClassObject@24
|
||||
NdrDllRegisterProxy@12
|
||||
NdrDllUnregisterProxy@12
|
||||
NdrEncapsulatedUnionBufferSize@12
|
||||
NdrEncapsulatedUnionFree@12
|
||||
NdrEncapsulatedUnionMarshall@12
|
||||
NdrEncapsulatedUnionMemorySize@8
|
||||
NdrEncapsulatedUnionUnmarshall@16
|
||||
NdrFixedArrayBufferSize@12
|
||||
NdrFixedArrayFree@12
|
||||
NdrFixedArrayMarshall@12
|
||||
NdrFixedArrayMemorySize@8
|
||||
NdrFixedArrayUnmarshall@16
|
||||
NdrFreeBuffer@4
|
||||
NdrFullPointerFree@8
|
||||
NdrFullPointerInsertRefId@12
|
||||
NdrFullPointerQueryPointer@16
|
||||
NdrFullPointerQueryRefId@16
|
||||
NdrFullPointerXlatFree@4
|
||||
NdrFullPointerXlatInit@8
|
||||
NdrGetBuffer@12
|
||||
NdrHardStructBufferSize@12
|
||||
NdrHardStructFree@12
|
||||
NdrHardStructMarshall@12
|
||||
NdrHardStructMemorySize@8
|
||||
NdrHardStructUnmarshall@16
|
||||
NdrInterfacePointerBufferSize@12
|
||||
NdrInterfacePointerFree@12
|
||||
NdrInterfacePointerMarshall@12
|
||||
NdrInterfacePointerMemorySize@8
|
||||
NdrInterfacePointerUnmarshall@16
|
||||
NdrMapCommAndFaultStatus@16
|
||||
NdrMesProcEncodeDecode
|
||||
NdrMesSimpleTypeAlignSize@4
|
||||
NdrMesSimpleTypeDecode@12
|
||||
NdrMesSimpleTypeEncode@16
|
||||
NdrMesTypeAlignSize@16
|
||||
NdrMesTypeDecode@16
|
||||
NdrMesTypeEncode@16
|
||||
NdrNonConformantStringBufferSize@12
|
||||
NdrNonConformantStringMarshall@12
|
||||
NdrNonConformantStringMemorySize@8
|
||||
NdrNonConformantStringUnmarshall@16
|
||||
NdrNonEncapsulatedUnionBufferSize@12
|
||||
NdrNonEncapsulatedUnionFree@12
|
||||
NdrNonEncapsulatedUnionMarshall@12
|
||||
NdrNonEncapsulatedUnionMemorySize@8
|
||||
NdrNonEncapsulatedUnionUnmarshall@16
|
||||
NdrNsGetBuffer@12
|
||||
NdrNsSendReceive@12
|
||||
NdrOleAllocate@4
|
||||
NdrOleFree@4
|
||||
NdrPointerBufferSize@12
|
||||
NdrPointerFree@12
|
||||
NdrPointerMarshall@12
|
||||
NdrPointerMemorySize@8
|
||||
NdrPointerUnmarshall@16
|
||||
NdrProxyErrorHandler@4
|
||||
NdrProxyFreeBuffer@8
|
||||
NdrProxyGetBuffer@8
|
||||
NdrProxyInitialize@20
|
||||
NdrProxySendReceive@8
|
||||
NdrRpcSmClientAllocate@4
|
||||
NdrRpcSmClientFree@4
|
||||
NdrRpcSmSetClientToOsf@4
|
||||
NdrRpcSsDefaultAllocate@4
|
||||
NdrRpcSsDefaultFree@4
|
||||
NdrRpcSsDisableAllocate@4
|
||||
NdrRpcSsEnableAllocate@4
|
||||
NdrSendReceive@8
|
||||
NdrServerCall@4
|
||||
NdrServerContextMarshall@12
|
||||
_imp__NdrServerContextMarshall@12
|
||||
NdrServerContextUnmarshall@4
|
||||
_imp__NdrServerContextUnmarshall@4
|
||||
NdrServerInitialize@12
|
||||
NdrServerInitializeMarshall@8
|
||||
NdrServerInitializeNew@12
|
||||
NdrServerInitializeUnmarshall@12
|
||||
NdrServerMarshall@16
|
||||
NdrServerUnmarshall@24
|
||||
NdrSimpleStructBufferSize@12
|
||||
NdrSimpleStructFree@12
|
||||
NdrSimpleStructMarshall@12
|
||||
NdrSimpleStructMemorySize@8
|
||||
NdrSimpleStructUnmarshall@16
|
||||
NdrSimpleTypeMarshall@12
|
||||
NdrSimpleTypeUnmarshall@12
|
||||
NdrStubCall@16
|
||||
NdrStubForwardingFunction@16
|
||||
NdrStubGetBuffer@12
|
||||
NdrStubInitialize@16
|
||||
NdrStubInitializeMarshall@12
|
||||
NdrVaryingArrayBufferSize@12
|
||||
NdrVaryingArrayFree@12
|
||||
NdrVaryingArrayMarshall@12
|
||||
NdrVaryingArrayMemorySize@8
|
||||
NdrVaryingArrayUnmarshall@16
|
||||
NdrXmitOrRepAsBufferSize@12
|
||||
NdrXmitOrRepAsFree@12
|
||||
NdrXmitOrRepAsMarshall@12
|
||||
NdrXmitOrRepAsMemorySize@8
|
||||
NdrXmitOrRepAsUnmarshall@16
|
||||
RpcBindingCopy@8
|
||||
RpcBindingFree@4
|
||||
RpcBindingFromStringBindingA@8
|
||||
RpcBindingFromStringBindingW@8
|
||||
RpcBindingInqAuthClientA@24
|
||||
RpcBindingInqAuthClientW@24
|
||||
RpcBindingInqAuthInfoA@24
|
||||
RpcBindingInqAuthInfoW@24
|
||||
RpcBindingInqObject@8
|
||||
RpcBindingReset@4
|
||||
RpcBindingServerFromClient@8
|
||||
RpcBindingSetAuthInfoA@24
|
||||
RpcBindingSetAuthInfoW@24
|
||||
RpcBindingSetObject@8
|
||||
RpcBindingToStringBindingA@8
|
||||
RpcBindingToStringBindingW@8
|
||||
RpcBindingVectorFree@4
|
||||
RpcCancelThread@4
|
||||
RpcEpRegisterA@16
|
||||
RpcEpRegisterNoReplaceA@16
|
||||
RpcEpRegisterNoReplaceW@16
|
||||
RpcEpRegisterW@16
|
||||
RpcEpResolveBinding@8
|
||||
RpcEpUnregister@12
|
||||
RpcIfIdVectorFree@4
|
||||
RpcIfInqId@8
|
||||
RpcImpersonateClient@4
|
||||
RpcMgmtEnableIdleCleanup@0
|
||||
RpcMgmtEpEltInqBegin@24
|
||||
RpcMgmtEpEltInqDone@4
|
||||
RpcMgmtEpEltInqNextA@20
|
||||
RpcMgmtEpEltInqNextW@20
|
||||
RpcMgmtEpUnregister@16
|
||||
RpcMgmtInqComTimeout@8
|
||||
RpcMgmtInqDefaultProtectLevel@8
|
||||
RpcMgmtInqIfIds@8
|
||||
RpcMgmtInqServerPrincNameA@12
|
||||
RpcMgmtInqServerPrincNameW@12
|
||||
RpcMgmtInqStats@8
|
||||
RpcMgmtIsServerListening@4
|
||||
RpcMgmtSetAuthorizationFn@4
|
||||
RpcMgmtSetCancelTimeout@4
|
||||
RpcMgmtSetComTimeout@8
|
||||
RpcMgmtSetServerStackSize@4
|
||||
RpcMgmtStatsVectorFree@4
|
||||
RpcMgmtStopServerListening@4
|
||||
RpcMgmtWaitServerListen@0
|
||||
RpcNetworkInqProtseqsA@4
|
||||
RpcNetworkInqProtseqsW@4
|
||||
RpcNetworkIsProtseqValidA@4
|
||||
RpcNetworkIsProtseqValidW@4
|
||||
RpcNsBindingInqEntryNameA@12
|
||||
RpcNsBindingInqEntryNameW@12
|
||||
RpcObjectInqType@8
|
||||
RpcObjectSetInqFn@4
|
||||
RpcObjectSetType@8
|
||||
RpcProtseqVectorFreeA@4
|
||||
RpcProtseqVectorFreeW@4
|
||||
RpcRaiseException@4
|
||||
RpcRevertToSelf@0
|
||||
RpcServerInqBindings@4
|
||||
RpcServerInqDefaultPrincNameA@8
|
||||
RpcServerInqDefaultPrincNameW@8
|
||||
RpcServerInqIf@12
|
||||
RpcServerListen@12
|
||||
RpcServerRegisterAuthInfoA@16
|
||||
RpcServerRegisterAuthInfoW@16
|
||||
RpcServerRegisterIf@12
|
||||
RpcServerUnregisterIf@12
|
||||
RpcServerUseAllProtseqs@8
|
||||
RpcServerUseAllProtseqsIf@12
|
||||
RpcServerUseProtseqA@12
|
||||
RpcServerUseProtseqEpA@16
|
||||
RpcServerUseProtseqEpW@16
|
||||
RpcServerUseProtseqIfA@16
|
||||
RpcServerUseProtseqIfW@16
|
||||
RpcServerUseProtseqW@12
|
||||
RpcSmAllocate@8
|
||||
RpcSmClientFree@4
|
||||
RpcSmDestroyClientContext@4
|
||||
_imp__RpcSmDestroyClientContext@4
|
||||
RpcSmDisableAllocate@0
|
||||
RpcSmEnableAllocate@0
|
||||
RpcSmFree@4
|
||||
RpcSmGetThreadHandle@4
|
||||
RpcSmSetClientAllocFree@8
|
||||
RpcSmSetThreadHandle@4
|
||||
RpcSmSwapClientAllocFree@16
|
||||
RpcSsAllocate@4
|
||||
RpcSsDestroyClientContext@4
|
||||
_imp__RpcSsDestroyClientContext@4
|
||||
RpcSsDisableAllocate@0
|
||||
RpcSsEnableAllocate@0
|
||||
RpcSsFree@4
|
||||
RpcSsGetThreadHandle@0
|
||||
RpcSsSetClientAllocFree@8
|
||||
RpcSsSetThreadHandle@4
|
||||
RpcSsSwapClientAllocFree@16
|
||||
RpcStringBindingComposeA@24
|
||||
RpcStringBindingComposeW@24
|
||||
RpcStringBindingParseA@24
|
||||
RpcStringBindingParseW@24
|
||||
RpcStringFreeA@4
|
||||
RpcStringFreeW@4
|
||||
RpcTestCancel@0
|
||||
TowerConstruct@24
|
||||
TowerExplode@24
|
||||
UuidCompare@12
|
||||
UuidCreate@4
|
||||
UuidCreateNil@4
|
||||
UuidCreateSequential@4
|
||||
UuidEqual@12
|
||||
UuidFromStringA@8
|
||||
UuidFromStringW@8
|
||||
UuidHash@8
|
||||
UuidIsNil@8
|
||||
UuidToStringA@8
|
||||
UuidToStringW@8
|
||||
char_array_from_ndr@16
|
||||
char_from_ndr@8
|
||||
data_from_ndr@16
|
||||
data_into_ndr@16
|
||||
data_size_ndr@16
|
||||
double_array_from_ndr@16
|
||||
double_from_ndr@8
|
||||
enum_from_ndr@8
|
||||
float_array_from_ndr@16
|
||||
float_from_ndr@8
|
||||
long_array_from_ndr@16
|
||||
long_from_ndr@8
|
||||
long_from_ndr_temp@12
|
||||
short_array_from_ndr@16
|
||||
short_from_ndr@8
|
||||
short_from_ndr_temp@12
|
||||
tree_into_ndr@16
|
||||
tree_peek_ndr@16
|
||||
tree_size_ndr@16
|
|
@ -1,407 +0,0 @@
|
|||
/*
|
||||
Screen saver library by Anders Norlander <anorland@hem2.passagen.se>
|
||||
|
||||
This library is (hopefully) compatible with Microsoft's
|
||||
screen saver library.
|
||||
|
||||
This is public domain software.
|
||||
|
||||
*/
|
||||
#include <windows.h>
|
||||
#include <scrnsave.h>
|
||||
#include <regstr.h>
|
||||
|
||||
/* screen saver window class */
|
||||
#define CLASS_SCRNSAVE TEXT("WindowsScreenSaverClass")
|
||||
|
||||
/* globals */
|
||||
HWND hMainWindow = NULL;
|
||||
BOOL fChildPreview = FALSE;
|
||||
HINSTANCE hMainInstance;
|
||||
TCHAR szName[TITLEBARNAMELEN];
|
||||
TCHAR szAppName[APPNAMEBUFFERLEN];
|
||||
TCHAR szIniFile[MAXFILELEN];
|
||||
TCHAR szScreenSaver[22];
|
||||
TCHAR szHelpFile[MAXFILELEN];
|
||||
TCHAR szNoHelpMemory[BUFFLEN];
|
||||
UINT MyHelpMessage;
|
||||
|
||||
/* local house keeping */
|
||||
static HINSTANCE hPwdLib = NULL;
|
||||
static POINT pt_orig;
|
||||
static BOOL checking_pwd = FALSE;
|
||||
static BOOL closing = FALSE;
|
||||
static BOOL w95 = FALSE;
|
||||
|
||||
typedef BOOL (WINAPI *VERIFYPWDPROC)(HWND);
|
||||
typedef DWORD (WINAPI *CHPWDPROC)(LPCTSTR, HWND, DWORD, PVOID);
|
||||
static VERIFYPWDPROC VerifyScreenSavePwd = NULL;
|
||||
|
||||
/* function names */
|
||||
#define szVerifyPassword "VerifyScreenSavePwd"
|
||||
|
||||
#ifdef UNICODE
|
||||
#define szPwdChangePassword "PwdChangePasswordW"
|
||||
#else
|
||||
#define szPwdChangePassword "PwdChangePasswordA"
|
||||
#endif
|
||||
|
||||
static void TerminateScreenSaver(HWND hWnd);
|
||||
static BOOL RegisterClasses(void);
|
||||
static LRESULT WINAPI SysScreenSaverProc(HWND,UINT,WPARAM,LPARAM);
|
||||
static int LaunchScreenSaver(HWND hParent);
|
||||
static void LaunchConfig(void);
|
||||
|
||||
static int ISSPACE(char c)
|
||||
{
|
||||
return (c == ' ' || c == '\t');
|
||||
}
|
||||
|
||||
#define ISNUM(c) ((c) >= '0' && c <= '9')
|
||||
static unsigned long
|
||||
_toul(const char *s)
|
||||
{
|
||||
unsigned long res;
|
||||
unsigned long n;
|
||||
const char *p;
|
||||
for (p = s; *p; p++)
|
||||
if (!ISNUM(*p)) break;
|
||||
p--;
|
||||
res = 0;
|
||||
for (n = 1; p >= s; p--, n *= 10)
|
||||
res += (*p - '0') * n;
|
||||
return res;
|
||||
}
|
||||
|
||||
/* screen saver entry point */
|
||||
int APIENTRY WinMain(HINSTANCE hInst, HINSTANCE hPrevInst,
|
||||
LPSTR CmdLine, int nCmdShow)
|
||||
{
|
||||
LPSTR p;
|
||||
OSVERSIONINFO vi;
|
||||
|
||||
/* initialize */
|
||||
hMainInstance = hInst;
|
||||
|
||||
vi.dwOSVersionInfoSize = sizeof(vi);
|
||||
GetVersionEx(&vi);
|
||||
/* check if we are going to check for passwords */
|
||||
if (vi.dwPlatformId == VER_PLATFORM_WIN32_WINDOWS)
|
||||
{
|
||||
HKEY hKey;
|
||||
/* we are using windows 95 */
|
||||
w95 = TRUE;
|
||||
if (RegOpenKey(HKEY_CURRENT_USER, REGSTR_PATH_SCREENSAVE ,&hKey) ==
|
||||
ERROR_SUCCESS)
|
||||
{
|
||||
DWORD check_pwd;
|
||||
DWORD size = sizeof(DWORD);
|
||||
DWORD type;
|
||||
LONG res;
|
||||
res = RegQueryValueEx(hKey, REGSTR_VALUE_USESCRPASSWORD,
|
||||
NULL, &type, (PBYTE) &check_pwd, &size);
|
||||
if (check_pwd && res == ERROR_SUCCESS)
|
||||
{
|
||||
hPwdLib = LoadLibrary(TEXT("PASSWORD.CPL"));
|
||||
if (hPwdLib)
|
||||
VerifyScreenSavePwd = GetProcAddress(hPwdLib, szVerifyPassword);
|
||||
}
|
||||
RegCloseKey(hKey);
|
||||
}
|
||||
}
|
||||
|
||||
/* parse arguments */
|
||||
for (p = CmdLine; *p; p++)
|
||||
{
|
||||
switch (*p)
|
||||
{
|
||||
case 'S':
|
||||
case 's':
|
||||
/* start screen saver */
|
||||
return LaunchScreenSaver(NULL);
|
||||
|
||||
case 'P':
|
||||
case 'p':
|
||||
{
|
||||
/* start screen saver in preview window */
|
||||
HWND hParent;
|
||||
fChildPreview = TRUE;
|
||||
while (ISSPACE(*++p));
|
||||
hParent = (HWND) _toul(p);
|
||||
if (hParent && IsWindow(hParent))
|
||||
return LaunchScreenSaver(hParent);
|
||||
}
|
||||
return 0;
|
||||
|
||||
case 'C':
|
||||
case 'c':
|
||||
/* display configure dialog */
|
||||
LaunchConfig();
|
||||
return 0;
|
||||
|
||||
case 'A':
|
||||
case 'a':
|
||||
{
|
||||
/* change screen saver password */
|
||||
HWND hParent;
|
||||
while (ISSPACE(*++p));
|
||||
hParent = (HWND) _toul(p);
|
||||
if (!hParent || !IsWindow(hParent))
|
||||
hParent = GetForegroundWindow();
|
||||
ScreenSaverChangePassword(hParent);
|
||||
}
|
||||
return 0;
|
||||
|
||||
case '-':
|
||||
case '/':
|
||||
case ' ':
|
||||
default:
|
||||
break;
|
||||
}
|
||||
}
|
||||
LaunchConfig();
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void LaunchConfig(void)
|
||||
{
|
||||
/* FIXME: should this be called */
|
||||
RegisterDialogClasses(hMainInstance);
|
||||
/* display configure dialog */
|
||||
DialogBox(hMainInstance, MAKEINTRESOURCE(DLG_SCRNSAVECONFIGURE),
|
||||
GetForegroundWindow(), (DLGPROC) ScreenSaverConfigureDialog);
|
||||
}
|
||||
|
||||
|
||||
static int LaunchScreenSaver(HWND hParent)
|
||||
{
|
||||
BOOL foo;
|
||||
UINT style;
|
||||
RECT rc;
|
||||
MSG msg;
|
||||
|
||||
/* don't allow other tasks to get into the foreground */
|
||||
if (w95 && !fChildPreview)
|
||||
SystemParametersInfo(SPI_SCREENSAVERRUNNING, TRUE, &foo, 0);
|
||||
|
||||
msg.wParam = 0;
|
||||
|
||||
/* register classes, both user defined and classes used by screen saver
|
||||
library */
|
||||
if (!RegisterClasses())
|
||||
{
|
||||
MessageBox(NULL, TEXT("RegisterClasses() failed"), NULL, MB_ICONHAND);
|
||||
goto restore;
|
||||
}
|
||||
|
||||
/* a slightly different approach needs to be used when displaying
|
||||
in a preview window */
|
||||
if (hParent)
|
||||
{
|
||||
style = WS_CHILD;
|
||||
GetClientRect(hParent, &rc);
|
||||
}
|
||||
else
|
||||
{
|
||||
style = WS_POPUP;
|
||||
rc.right = GetSystemMetrics(SM_CXSCREEN);
|
||||
rc.bottom = GetSystemMetrics(SM_CYSCREEN);
|
||||
style |= WS_VISIBLE;
|
||||
}
|
||||
|
||||
/* create main screen saver window */
|
||||
hMainWindow = CreateWindowEx(hParent ? 0 : WS_EX_TOPMOST, CLASS_SCRNSAVE,
|
||||
TEXT("SCREENSAVER"), style,
|
||||
0, 0, rc.right, rc.bottom, hParent, NULL,
|
||||
hMainInstance, NULL);
|
||||
|
||||
/* display window and start pumping messages */
|
||||
if (hMainWindow)
|
||||
{
|
||||
UpdateWindow(hMainWindow);
|
||||
ShowWindow(hMainWindow, SW_SHOW);
|
||||
|
||||
while (GetMessage(&msg, NULL, 0, 0) == TRUE)
|
||||
{
|
||||
TranslateMessage(&msg);
|
||||
DispatchMessage(&msg);
|
||||
}
|
||||
}
|
||||
|
||||
restore:
|
||||
/* restore system */
|
||||
if (w95 && !fChildPreview)
|
||||
SystemParametersInfo(SPI_SCREENSAVERRUNNING, FALSE, &foo, 0);
|
||||
FreeLibrary(hPwdLib);
|
||||
return msg.wParam;
|
||||
}
|
||||
|
||||
/* this function takes care of *must* do tasks, like terminating
|
||||
screen saver */
|
||||
static LRESULT WINAPI SysScreenSaverProc(HWND hWnd, UINT msg,
|
||||
WPARAM wParam, LPARAM lParam)
|
||||
{
|
||||
switch (msg)
|
||||
{
|
||||
case WM_CREATE:
|
||||
if (!fChildPreview)
|
||||
SetCursor(NULL);
|
||||
/* mouse is not supposed to move from this position */
|
||||
GetCursorPos(&pt_orig);
|
||||
break;
|
||||
case WM_DESTROY:
|
||||
PostQuitMessage(0);
|
||||
break;
|
||||
case WM_TIMER:
|
||||
if (closing)
|
||||
return 0;
|
||||
break;
|
||||
case WM_PAINT:
|
||||
if (closing)
|
||||
return DefWindowProc(hWnd, msg, wParam, lParam);
|
||||
break;
|
||||
case WM_SYSCOMMAND:
|
||||
if (!fChildPreview)
|
||||
switch (wParam)
|
||||
{
|
||||
case SC_CLOSE:
|
||||
case SC_SCREENSAVE:
|
||||
case SC_NEXTWINDOW:
|
||||
case SC_PREVWINDOW:
|
||||
return FALSE;
|
||||
}
|
||||
break;
|
||||
case WM_MOUSEMOVE:
|
||||
case WM_LBUTTONDOWN:
|
||||
case WM_RBUTTONDOWN:
|
||||
case WM_MBUTTONDOWN:
|
||||
case WM_KEYDOWN:
|
||||
case WM_SYSKEYDOWN:
|
||||
case WM_NCACTIVATE:
|
||||
case WM_ACTIVATE:
|
||||
case WM_ACTIVATEAPP:
|
||||
if (closing)
|
||||
return DefWindowProc(hWnd, msg, wParam, lParam);
|
||||
break;
|
||||
}
|
||||
return ScreenSaverProc(hWnd, msg, wParam, lParam);
|
||||
}
|
||||
|
||||
LONG WINAPI DefScreenSaverProc(HWND hWnd, UINT msg,
|
||||
WPARAM wParam, LPARAM lParam)
|
||||
{
|
||||
/* don't do any special processing when in preview mode */
|
||||
if (fChildPreview || closing)
|
||||
return DefWindowProc(hWnd, msg, wParam, lParam);
|
||||
|
||||
switch (msg)
|
||||
{
|
||||
case WM_CLOSE:
|
||||
TerminateScreenSaver(hWnd);
|
||||
/* do NOT pass this to DefWindowProc; it will terminate even if
|
||||
an invalid password was given.
|
||||
*/
|
||||
return 0;
|
||||
case SCRM_VERIFYPW:
|
||||
/* verify password or return TRUE if password checking is turned off */
|
||||
if (VerifyScreenSavePwd)
|
||||
return VerifyScreenSavePwd(hWnd);
|
||||
else
|
||||
return TRUE;
|
||||
case WM_SETCURSOR:
|
||||
if (checking_pwd)
|
||||
break;
|
||||
SetCursor(NULL);
|
||||
return TRUE;
|
||||
case WM_NCACTIVATE:
|
||||
case WM_ACTIVATE:
|
||||
case WM_ACTIVATEAPP:
|
||||
if (wParam != FALSE)
|
||||
break;
|
||||
case WM_MOUSEMOVE:
|
||||
{
|
||||
POINT pt;
|
||||
GetCursorPos(&pt);
|
||||
if (pt.x == pt_orig.x && pt.y == pt_orig.y)
|
||||
break;
|
||||
}
|
||||
case WM_LBUTTONDOWN:
|
||||
case WM_RBUTTONDOWN:
|
||||
case WM_MBUTTONDOWN:
|
||||
case WM_KEYDOWN:
|
||||
case WM_SYSKEYDOWN:
|
||||
/* try to terminate screen saver */
|
||||
if (!checking_pwd)
|
||||
PostMessage(hWnd, WM_CLOSE, 0, 0);
|
||||
break;
|
||||
}
|
||||
return DefWindowProc(hWnd, msg, wParam, lParam);
|
||||
}
|
||||
|
||||
static void TerminateScreenSaver(HWND hWnd)
|
||||
{
|
||||
/* don't allow recursion */
|
||||
if (checking_pwd || closing)
|
||||
return;
|
||||
|
||||
/* verify password */
|
||||
if (VerifyScreenSavePwd)
|
||||
{
|
||||
checking_pwd = TRUE;
|
||||
closing = SendMessage(hWnd, SCRM_VERIFYPW, 0, 0);
|
||||
checking_pwd = FALSE;
|
||||
}
|
||||
else
|
||||
closing = TRUE;
|
||||
|
||||
/* are we closing? */
|
||||
if (closing)
|
||||
{
|
||||
DestroyWindow(hWnd);
|
||||
}
|
||||
else
|
||||
GetCursorPos(&pt_orig); /* if not: get new mouse position */
|
||||
}
|
||||
|
||||
/*
|
||||
Register screen saver window class and call user
|
||||
supplied hook.
|
||||
*/
|
||||
static BOOL RegisterClasses(void)
|
||||
{
|
||||
WNDCLASS cls;
|
||||
|
||||
cls.hCursor = NULL;
|
||||
cls.hIcon = LoadIcon(hMainInstance, MAKEINTATOM(ID_APP));
|
||||
cls.lpszMenuName = NULL;
|
||||
cls.lpszClassName = CLASS_SCRNSAVE;
|
||||
cls.hbrBackground = GetStockObject(BLACK_BRUSH);
|
||||
cls.hInstance = hMainInstance;
|
||||
cls.style = CS_VREDRAW | CS_HREDRAW | CS_SAVEBITS | CS_PARENTDC;
|
||||
cls.lpfnWndProc = (WNDPROC) SysScreenSaverProc;
|
||||
cls.cbWndExtra = 0;
|
||||
cls.cbClsExtra = 0;
|
||||
|
||||
if (!RegisterClass(&cls))
|
||||
return FALSE;
|
||||
|
||||
return RegisterDialogClasses(hMainInstance);
|
||||
}
|
||||
|
||||
void WINAPI ScreenSaverChangePassword(HWND hParent)
|
||||
{
|
||||
/* load Master Password Router (MPR) */
|
||||
HINSTANCE hMpr = LoadLibrary(TEXT("MPR.DLL"));
|
||||
|
||||
if (hMpr)
|
||||
{
|
||||
CHPWDPROC ChangePassword;
|
||||
ChangePassword = (CHPWDPROC) GetProcAddress(hMpr, szPwdChangePassword);
|
||||
|
||||
/* change password for screen saver provider */
|
||||
if (ChangePassword)
|
||||
ChangePassword(TEXT("SCRSAVE"), hParent, 0, NULL);
|
||||
|
||||
FreeLibrary(hMpr);
|
||||
}
|
||||
}
|
|
@ -1,39 +0,0 @@
|
|||
LIBRARY SECUR32.dll
|
||||
EXPORTS
|
||||
AcceptSecurityContext@36
|
||||
AcquireCredentialsHandleA@36
|
||||
AcquireCredentialsHandleW@36
|
||||
ApplyControlTokenA@8
|
||||
ApplyControlTokenW@8
|
||||
CompleteAuthToken@8
|
||||
DecryptMessage@16
|
||||
DeleteSecurityContext@4
|
||||
EncryptMessage@16
|
||||
EnumerateSecurityPackagesA@8
|
||||
EnumerateSecurityPackagesW@8
|
||||
FreeContextBuffer@4
|
||||
FreeCredentialsHandle@4
|
||||
GetComputerObjectNameA@12
|
||||
GetComputerObjectNameW@12
|
||||
GetUserNameExA@12
|
||||
GetUserNameExW@12
|
||||
ImpersonateSecurityContext@4
|
||||
InitializeSecurityContextA@48
|
||||
InitializeSecurityContextW@48
|
||||
LsaCallAuthenticationPackage@28
|
||||
LsaDeregisterLogonProcess@4
|
||||
LsaFreeReturnBuffer@4
|
||||
LsaLogonUser@56
|
||||
LsaLookupAuthenticationPackage@12
|
||||
LsaRegisterLogonProcess@12
|
||||
MakeSignature@16
|
||||
QueryContextAttributesA@12
|
||||
QueryContextAttributesW@12
|
||||
QueryCredentialsAttributesA@12
|
||||
QueryCredentialsAttributesW@12
|
||||
QuerySecurityPackageInfoA@8
|
||||
QuerySecurityPackageInfoW@8
|
||||
RevertSecurityContext@4
|
||||
TranslateNameA@20
|
||||
TranslateNameW@20
|
||||
VerifySignature@16
|
|
@ -1,379 +0,0 @@
|
|||
LIBRARY setupapi.dll
|
||||
EXPORTS
|
||||
AcquireSCMLock@8
|
||||
AddMiniIconToList@8
|
||||
AddTagToGroupOrderListEntry@12
|
||||
AppendStringToMultiSz@24
|
||||
AssertFail@12
|
||||
CM_Request_Device_EjectA@20
|
||||
CM_Request_Device_EjectW@20
|
||||
CM_Request_Device_Eject_ExA@24
|
||||
CM_Request_Device_Eject_ExW@24
|
||||
CaptureAndConvertAnsiArg@8
|
||||
CaptureStringArg@8
|
||||
CenterWindowRelativeToParent@4
|
||||
ConcatenatePaths@16
|
||||
DelayedMove@8
|
||||
DelimStringToMultiSz@12
|
||||
DestroyTextFileReadBuffer@4
|
||||
DoInstallActionWithParams@24
|
||||
DoesUserHavePrivilege@4
|
||||
DuplicateString@4
|
||||
EnablePrivilege@8
|
||||
ExtensionPropSheetPageProc@12
|
||||
FileExists@8
|
||||
FreeStringArray@8
|
||||
GetCurrentDriverSigningPolicy@4
|
||||
GetSetFileTimestamp@20
|
||||
GetVersionInfoFromImage@12
|
||||
HandleFailedVerification@40
|
||||
InfIsFromOemLocation@8
|
||||
InstallCatalog@12
|
||||
InstallHinfSection@16
|
||||
InstallHinfSectionA@16
|
||||
InstallHinfSectionW@16
|
||||
InstallStop@4
|
||||
InstallStopEx@12
|
||||
IsUserAdmin@0
|
||||
LookUpStringInTable@12
|
||||
MemoryInitialize@4
|
||||
MultiByteToUnicode@8
|
||||
MultiSzFromSearchControl@16
|
||||
MyFree@4
|
||||
MyGetFileTitle@4
|
||||
MyMalloc@4
|
||||
MyRealloc@8
|
||||
OpenAndMapFileForRead@20
|
||||
OutOfMemory@4
|
||||
QueryMultiSzValueToArray@24
|
||||
QueryRegistryValue@20
|
||||
ReadAsciiOrUnicodeTextFile@8
|
||||
RegistryDelnode@8
|
||||
RetreiveFileSecurity@8
|
||||
RetrieveServiceConfig@8
|
||||
SearchForInfFile@24
|
||||
SetArrayToMultiSzValue@20
|
||||
SetupAddInstallSectionToDiskSpaceListA@24
|
||||
SetupAddInstallSectionToDiskSpaceListW@24
|
||||
SetupAddSectionToDiskSpaceListA@28
|
||||
SetupAddSectionToDiskSpaceListW@28
|
||||
SetupAddToDiskSpaceListA@28
|
||||
SetupAddToDiskSpaceListW@28
|
||||
SetupAddToSourceListA@8
|
||||
SetupAddToSourceListW@8
|
||||
SetupAdjustDiskSpaceListA@24
|
||||
SetupAdjustDiskSpaceListW@24
|
||||
SetupBackupErrorA@24
|
||||
SetupBackupErrorW@24
|
||||
SetupCancelTemporarySourceList@0
|
||||
SetupCloseFileQueue@4
|
||||
SetupCloseInfFile@4
|
||||
SetupCloseLog@0
|
||||
SetupCommitFileQueue@16
|
||||
SetupCommitFileQueueA@16
|
||||
SetupCommitFileQueueW@16
|
||||
SetupCopyErrorA@44
|
||||
SetupCopyErrorW@44
|
||||
SetupCopyOEMInfA@32
|
||||
SetupCopyOEMInfW@32
|
||||
SetupCreateDiskSpaceListA@12
|
||||
SetupCreateDiskSpaceListW@12
|
||||
SetupDecompressOrCopyFileA@12
|
||||
SetupDecompressOrCopyFileW@12
|
||||
SetupDefaultQueueCallback@16
|
||||
SetupDefaultQueueCallbackA@16
|
||||
SetupDefaultQueueCallbackW@16
|
||||
SetupDeleteErrorA@20
|
||||
SetupDeleteErrorW@20
|
||||
SetupDestroyDiskSpaceList@4
|
||||
SetupDiAskForOEMDisk@8
|
||||
SetupDiBuildClassInfoList@16
|
||||
SetupDiBuildClassInfoListExA@24
|
||||
SetupDiBuildClassInfoListExW@24
|
||||
SetupDiBuildDriverInfoList@12
|
||||
SetupDiCallClassInstaller@12
|
||||
SetupDiCancelDriverInfoSearch@4
|
||||
SetupDiChangeState@8
|
||||
SetupDiClassGuidsFromNameA@16
|
||||
SetupDiClassGuidsFromNameExA@24
|
||||
SetupDiClassGuidsFromNameExW@24
|
||||
SetupDiClassGuidsFromNameW@16
|
||||
SetupDiClassNameFromGuidA@16
|
||||
SetupDiClassNameFromGuidExA@24
|
||||
SetupDiClassNameFromGuidExW@24
|
||||
SetupDiClassNameFromGuidW@16
|
||||
SetupDiCreateDevRegKeyA@28
|
||||
SetupDiCreateDevRegKeyW@28
|
||||
SetupDiCreateDeviceInfoA@28
|
||||
SetupDiCreateDeviceInfoList@8
|
||||
SetupDiCreateDeviceInfoListExA@16
|
||||
SetupDiCreateDeviceInfoListExW@16
|
||||
SetupDiCreateDeviceInfoW@28
|
||||
SetupDiCreateDeviceInterfaceA@24
|
||||
SetupDiCreateDeviceInterfaceRegKeyA@24
|
||||
SetupDiCreateDeviceInterfaceRegKeyW@24
|
||||
SetupDiCreateDeviceInterfaceW@24
|
||||
SetupDiDeleteDevRegKey@20
|
||||
SetupDiDeleteDeviceInfo@8
|
||||
SetupDiDeleteDeviceInterfaceData@8
|
||||
SetupDiDeleteDeviceInterfaceRegKey@12
|
||||
SetupDiDestroyClassImageList@4
|
||||
SetupDiDestroyDeviceInfoList@4
|
||||
SetupDiDestroyDriverInfoList@12
|
||||
SetupDiDrawMiniIcon@28
|
||||
SetupDiEnumDeviceInfo@12
|
||||
SetupDiEnumDeviceInterfaces@20
|
||||
SetupDiEnumDriverInfoA@20
|
||||
SetupDiEnumDriverInfoW@20
|
||||
SetupDiGetActualSectionToInstallA@24
|
||||
SetupDiGetActualSectionToInstallW@24
|
||||
SetupDiGetClassBitmapIndex@8
|
||||
SetupDiGetClassDescriptionA@16
|
||||
SetupDiGetClassDescriptionExA@24
|
||||
SetupDiGetClassDescriptionExW@24
|
||||
SetupDiGetClassDescriptionW@16
|
||||
SetupDiGetClassDevPropertySheetsA@24
|
||||
SetupDiGetClassDevPropertySheetsW@24
|
||||
SetupDiGetClassDevsA@16
|
||||
SetupDiGetClassDevsExA@28
|
||||
SetupDiGetClassDevsExW@28
|
||||
SetupDiGetClassDevsW@16
|
||||
SetupDiGetClassImageIndex@12
|
||||
SetupDiGetClassImageList@4
|
||||
SetupDiGetClassImageListExA@12
|
||||
SetupDiGetClassImageListExW@12
|
||||
SetupDiGetClassInstallParamsA@20
|
||||
SetupDiGetClassInstallParamsW@20
|
||||
SetupDiGetDeviceInfoListClass@8
|
||||
SetupDiGetDeviceInfoListDetailA@8
|
||||
SetupDiGetDeviceInfoListDetailW@8
|
||||
SetupDiGetDeviceInstallParamsA@12
|
||||
SetupDiGetDeviceInstallParamsW@12
|
||||
SetupDiGetDeviceInstanceIdA@20
|
||||
SetupDiGetDeviceInstanceIdW@20
|
||||
SetupDiGetDeviceInterfaceAlias@16
|
||||
SetupDiGetDeviceInterfaceDetailA@24
|
||||
SetupDiGetDeviceInterfaceDetailW@24
|
||||
SetupDiGetDeviceRegistryPropertyA@28
|
||||
SetupDiGetDeviceRegistryPropertyW@28
|
||||
SetupDiGetDriverInfoDetailA@24
|
||||
SetupDiGetDriverInfoDetailW@24
|
||||
SetupDiGetDriverInstallParamsA@16
|
||||
SetupDiGetDriverInstallParamsW@16
|
||||
SetupDiGetHwProfileFriendlyNameA@16
|
||||
SetupDiGetHwProfileFriendlyNameExA@24
|
||||
SetupDiGetHwProfileFriendlyNameExW@24
|
||||
SetupDiGetHwProfileFriendlyNameW@16
|
||||
SetupDiGetHwProfileList@16
|
||||
SetupDiGetHwProfileListExA@24
|
||||
SetupDiGetHwProfileListExW@24
|
||||
SetupDiGetINFClassA@20
|
||||
SetupDiGetINFClassW@20
|
||||
SetupDiGetSelectedDevice@8
|
||||
SetupDiGetSelectedDriverA@12
|
||||
SetupDiGetSelectedDriverW@12
|
||||
SetupDiGetWizardPage@20
|
||||
SetupDiInstallClassA@16
|
||||
SetupDiInstallClassExA@28
|
||||
SetupDiInstallClassExW@28
|
||||
SetupDiInstallClassW@16
|
||||
SetupDiInstallDevice@8
|
||||
SetupDiInstallDeviceInterfaces@8
|
||||
SetupDiInstallDriverFiles@8
|
||||
SetupDiLoadClassIcon@12
|
||||
SetupDiMoveDuplicateDevice@8
|
||||
SetupDiOpenClassRegKey@8
|
||||
SetupDiOpenClassRegKeyExA@20
|
||||
SetupDiOpenClassRegKeyExW@20
|
||||
SetupDiOpenDevRegKey@24
|
||||
SetupDiOpenDeviceInfoA@20
|
||||
SetupDiOpenDeviceInfoW@20
|
||||
SetupDiOpenDeviceInterfaceA@16
|
||||
SetupDiOpenDeviceInterfaceRegKey@16
|
||||
SetupDiOpenDeviceInterfaceW@16
|
||||
SetupDiRegisterCoDeviceInstallers@8
|
||||
SetupDiRegisterDeviceInfo@24
|
||||
SetupDiRemoveDevice@8
|
||||
SetupDiRemoveDeviceInterface@8
|
||||
SetupDiSelectBestCompatDrv@8
|
||||
SetupDiSelectDevice@8
|
||||
SetupDiSelectOEMDrv@12
|
||||
SetupDiSetClassInstallParamsA@16
|
||||
SetupDiSetClassInstallParamsW@16
|
||||
SetupDiSetDeviceInstallParamsA@12
|
||||
SetupDiSetDeviceInstallParamsW@12
|
||||
SetupDiSetDeviceRegistryPropertyA@20
|
||||
SetupDiSetDeviceRegistryPropertyW@20
|
||||
SetupDiSetDriverInstallParamsA@16
|
||||
SetupDiSetDriverInstallParamsW@16
|
||||
SetupDiSetSelectedDevice@8
|
||||
SetupDiSetSelectedDriverA@12
|
||||
SetupDiSetSelectedDriverW@12
|
||||
SetupDiUnremoveDevice@8
|
||||
SetupDuplicateDiskSpaceListA@16
|
||||
SetupDuplicateDiskSpaceListW@16
|
||||
SetupFindFirstLineA@16
|
||||
SetupFindFirstLineW@16
|
||||
SetupFindNextLine@8
|
||||
SetupFindNextMatchLineA@12
|
||||
SetupFindNextMatchLineW@12
|
||||
SetupFreeSourceListA@8
|
||||
SetupFreeSourceListW@8
|
||||
SetupGetBackupInformationA@8
|
||||
SetupGetBackupInformationW@8
|
||||
SetupGetBinaryField@20
|
||||
SetupGetFieldCount@4
|
||||
SetupGetFileCompressionInfoA@20
|
||||
SetupGetFileCompressionInfoW@20
|
||||
SetupGetInfFileListA@20
|
||||
SetupGetInfFileListW@20
|
||||
SetupGetInfInformationA@20
|
||||
SetupGetInfInformationW@20
|
||||
SetupGetInfSections@16
|
||||
SetupGetIntField@12
|
||||
SetupGetLineByIndexA@16
|
||||
SetupGetLineByIndexW@16
|
||||
SetupGetLineCountA@8
|
||||
SetupGetLineCountW@8
|
||||
SetupGetLineTextA@28
|
||||
SetupGetLineTextW@28
|
||||
SetupGetMultiSzFieldA@20
|
||||
SetupGetMultiSzFieldW@20
|
||||
SetupGetSourceFileLocationA@28
|
||||
SetupGetSourceFileLocationW@28
|
||||
SetupGetSourceFileSizeA@24
|
||||
SetupGetSourceFileSizeW@24
|
||||
SetupGetSourceInfoA@24
|
||||
SetupGetSourceInfoW@24
|
||||
SetupGetStringFieldA@20
|
||||
SetupGetStringFieldW@20
|
||||
SetupGetTargetPathA@24
|
||||
SetupGetTargetPathW@24
|
||||
SetupInitDefaultQueueCallback@4
|
||||
SetupInitDefaultQueueCallbackEx@20
|
||||
SetupInitializeFileLogA@8
|
||||
SetupInitializeFileLogW@8
|
||||
SetupInstallFileA@32
|
||||
SetupInstallFileExA@36
|
||||
SetupInstallFileExW@36
|
||||
SetupInstallFileW@32
|
||||
SetupInstallFilesFromInfSectionA@24
|
||||
SetupInstallFilesFromInfSectionW@24
|
||||
SetupInstallFromInfSectionA@44
|
||||
SetupInstallFromInfSectionW@44
|
||||
SetupInstallServicesFromInfSectionA@12
|
||||
SetupInstallServicesFromInfSectionExA@28
|
||||
SetupInstallServicesFromInfSectionExW@28
|
||||
SetupInstallServicesFromInfSectionW@12
|
||||
SetupIterateCabinetA@16
|
||||
SetupIterateCabinetW@16
|
||||
SetupLogErrorA@8
|
||||
SetupLogErrorW@8
|
||||
SetupLogFileA@36
|
||||
SetupLogFileW@36
|
||||
SetupOpenAppendInfFileA@12
|
||||
SetupOpenAppendInfFileW@12
|
||||
SetupOpenFileQueue@0
|
||||
SetupOpenInfFileA@16
|
||||
SetupOpenInfFileW@16
|
||||
SetupOpenLog@4
|
||||
SetupOpenMasterInf@0
|
||||
SetupPromptForDiskA@40
|
||||
SetupPromptForDiskW@40
|
||||
SetupPromptReboot@12
|
||||
SetupQueryDrivesInDiskSpaceListA@16
|
||||
SetupQueryDrivesInDiskSpaceListW@16
|
||||
SetupQueryFileLogA@28
|
||||
SetupQueryFileLogW@28
|
||||
SetupQueryInfFileInformationA@20
|
||||
SetupQueryInfFileInformationW@20
|
||||
SetupQueryInfOriginalFileInformationA@16
|
||||
SetupQueryInfOriginalFileInformationW@16
|
||||
SetupQueryInfVersionInformationA@24
|
||||
SetupQueryInfVersionInformationW@24
|
||||
SetupQuerySourceListA@12
|
||||
SetupQuerySourceListW@12
|
||||
SetupQuerySpaceRequiredOnDriveA@20
|
||||
SetupQuerySpaceRequiredOnDriveW@20
|
||||
SetupQueueCopyA@36
|
||||
SetupQueueCopyIndirectA@4
|
||||
SetupQueueCopyIndirectW@4
|
||||
SetupQueueCopySectionA@24
|
||||
SetupQueueCopySectionW@24
|
||||
SetupQueueCopyW@36
|
||||
SetupQueueDefaultCopyA@24
|
||||
SetupQueueDefaultCopyW@24
|
||||
SetupQueueDeleteA@12
|
||||
SetupQueueDeleteSectionA@16
|
||||
SetupQueueDeleteSectionW@16
|
||||
SetupQueueDeleteW@12
|
||||
SetupQueueRenameA@20
|
||||
SetupQueueRenameSectionA@16
|
||||
SetupQueueRenameSectionW@16
|
||||
SetupQueueRenameW@20
|
||||
SetupRemoveFileLogEntryA@12
|
||||
SetupRemoveFileLogEntryW@12
|
||||
SetupRemoveFromDiskSpaceListA@20
|
||||
SetupRemoveFromDiskSpaceListW@20
|
||||
SetupRemoveFromSourceListA@8
|
||||
SetupRemoveFromSourceListW@8
|
||||
SetupRemoveInstallSectionFromDiskSpaceListA@24
|
||||
SetupRemoveInstallSectionFromDiskSpaceListW@24
|
||||
SetupRemoveSectionFromDiskSpaceListA@28
|
||||
SetupRemoveSectionFromDiskSpaceListW@28
|
||||
SetupRenameErrorA@24
|
||||
SetupRenameErrorW@24
|
||||
SetupScanFileQueue@24
|
||||
SetupScanFileQueueA@24
|
||||
SetupScanFileQueueW@24
|
||||
SetupSetDirectoryIdA@12
|
||||
SetupSetDirectoryIdExA@24
|
||||
SetupSetDirectoryIdExW@24
|
||||
SetupSetDirectoryIdW@12
|
||||
SetupSetFileQueueAlternatePlatformA@12
|
||||
SetupSetFileQueueAlternatePlatformW@12
|
||||
SetupSetPlatformPathOverrideA@4
|
||||
SetupSetPlatformPathOverrideW@4
|
||||
SetupSetSourceListA@12
|
||||
SetupSetSourceListW@12
|
||||
SetupTermDefaultQueueCallback@4
|
||||
SetupTerminateFileLog@4
|
||||
ShouldDeviceBeExcluded@12
|
||||
StampFileSecurity@8
|
||||
StringTableAddString@12
|
||||
StringTableAddStringEx@20
|
||||
StringTableDestroy@4
|
||||
StringTableDuplicate@4
|
||||
StringTableEnum@20
|
||||
StringTableGetExtraData@16
|
||||
StringTableInitialize@0
|
||||
StringTableInitializeEx@8
|
||||
StringTableLookUpString@12
|
||||
StringTableLookUpStringEx@20
|
||||
StringTableSetExtraData@16
|
||||
StringTableStringFromId@8
|
||||
StringTableStringFromIdEx@16
|
||||
StringTableTrim@4
|
||||
TakeOwnershipOfFile@4
|
||||
UnicodeToMultiByte@8
|
||||
UnmapAndCloseFile@12
|
||||
VerifyCatalogFile@4
|
||||
VerifyFile@48
|
||||
pSetupAccessRunOnceNodeList@0
|
||||
pSetupDestroyRunOnceNodeList@0
|
||||
pSetupDiGetDeviceInfoContext@12
|
||||
pSetupDiSetDeviceInfoContext@12
|
||||
pSetupDirectoryIdToPath@20
|
||||
pSetupGetField@8
|
||||
pSetupGetGlobalFlags@0
|
||||
pSetupGetOsLoaderDriveAndPath@16
|
||||
pSetupGetQueueFlags@4
|
||||
pSetupGetVersionDatum@8
|
||||
pSetupGuidFromString@8
|
||||
pSetupIsGuidNull@4
|
||||
pSetupMakeSurePathExists@4
|
||||
pSetupSetGlobalFlags@4
|
||||
pSetupSetQueueFlags@8
|
||||
pSetupSetSystemSourcePath@8
|
||||
pSetupStringFromGuid@12
|
||||
pSetupVerifyQueuedCatalogs@4
|
|
@ -1,62 +0,0 @@
|
|||
#define INITGUID
|
||||
#include <basetyps.h>
|
||||
#include <shlguid.h>
|
||||
|
||||
DEFINE_SHLGUID(CLSID_ShellDesktop,0x00021400L,0,0);
|
||||
DEFINE_SHLGUID(CLSID_ShellLink,0x00021401L,0,0);
|
||||
DEFINE_SHLGUID(FMTID_Intshcut,0x000214A0L,0,0);
|
||||
DEFINE_SHLGUID(FMTID_InternetSite,0x000214A1L,0,0);
|
||||
DEFINE_SHLGUID(CGID_Explorer,0x000214D0L,0,0);
|
||||
DEFINE_SHLGUID(CGID_ShellDocView,0x000214D1L,0,0);
|
||||
DEFINE_SHLGUID(CGID_ShellServiceObject,0x000214D2L,0,0);
|
||||
DEFINE_SHLGUID(IID_INewShortcutHookA,0x000214E1L,0,0);
|
||||
DEFINE_SHLGUID(IID_IShellBrowser,0x000214E2L,0,0);
|
||||
DEFINE_SHLGUID(IID_IShellView,0x000214E3L,0,0);
|
||||
DEFINE_SHLGUID(IID_IContextMenu,0x000214E4L,0,0);
|
||||
DEFINE_SHLGUID(IID_IQueryInfo,0x00021500L,0,0);
|
||||
DEFINE_SHLGUID(IID_IShellIcon,0x000214E5L,0,0);
|
||||
DEFINE_SHLGUID(IID_IShellFolder,0x000214E6L,0,0);
|
||||
DEFINE_SHLGUID(IID_IShellExtInit,0x000214E8L,0,0);
|
||||
DEFINE_SHLGUID(IID_IShellPropSheetExt,0x000214E9L,0,0);
|
||||
DEFINE_SHLGUID(IID_IPersistFolder,0x000214EAL,0,0);
|
||||
DEFINE_SHLGUID(IID_IExtractIconA,0x000214EBL,0,0);
|
||||
DEFINE_SHLGUID(IID_IShellLinkA,0x000214EEL,0,0);
|
||||
DEFINE_SHLGUID(IID_IShellCopyHookA,0x000214EFL,0,0);
|
||||
DEFINE_SHLGUID(IID_IFileViewerA,0x000214F0L,0,0);
|
||||
DEFINE_SHLGUID(IID_ICommDlgBrowser,0x000214F1L,0,0);
|
||||
DEFINE_SHLGUID(IID_IEnumIDList,0x000214F2L,0,0);
|
||||
DEFINE_SHLGUID(IID_IFileViewerSite,0x000214F3L,0,0);
|
||||
DEFINE_SHLGUID(IID_IContextMenu2,0x000214F4L,0,0);
|
||||
DEFINE_SHLGUID(IID_IShellExecuteHookA,0x000214F5L,0,0);
|
||||
DEFINE_SHLGUID(IID_IPropSheetPage,0x000214F6L,0,0);
|
||||
DEFINE_SHLGUID(IID_INewShortcutHookW,0x000214F7L,0,0);
|
||||
DEFINE_SHLGUID(IID_IFileViewerW,0x000214F8L,0,0);
|
||||
DEFINE_SHLGUID(IID_IShellLinkW,0x000214F9L,0,0);
|
||||
DEFINE_SHLGUID(IID_IExtractIconW,0x000214FAL,0,0);
|
||||
DEFINE_SHLGUID(IID_IShellExecuteHookW,0x000214FBL,0,0);
|
||||
DEFINE_SHLGUID(IID_IShellCopyHookW,0x000214FCL,0,0);
|
||||
DEFINE_GUID(IID_IShellView2,0x88E39E80L,0x3578,0x11CF,0xAE,0x69,0x08,0x00,0x2B,0x2E,0x12,0x62);
|
||||
DEFINE_GUID(IID_IShellFolder2,0x93F2F68C,0x1D1B,0x11D3,0xA3,0x0E,0x00,0xC0,0x4F,0x79,0xAB,0xD1);
|
||||
DEFINE_GUID(IID_IPersistFolder2,0x1AC3D9F0,0x175C,0x11D1,0x95,0xBE,0x00,0x60,0x97,0x97,0xEA,0x4F);
|
||||
DEFINE_GUID(IID_IPersistFolder3,0xCEF04FDF,0xFE72,0x11D2,0x87,0xA5,0x00,0xC0,0x4F,0x68,0x37,0xCF);
|
||||
DEFINE_GUID(IID_IFileSystemBindData,0x1E18D10,0x4D8B,0x11D2,0x85,0x5D,0x00,0x60,0x08,0x05,0x93,0x67);
|
||||
DEFINE_GUID(LIBID_SHDocVw,0xEAB22AC0,0x30C1,0x11CF,0xA7,0xEB,0x00,0x00,0xC0,0x5B,0xAE,0x0B);
|
||||
DEFINE_GUID(IID_IShellExplorer,0xEAB22AC1,0x30C1,0x11CF,0xA7,0xEB,0x00,0x00,0xC0,0x5B,0xAE,0x0B);
|
||||
DEFINE_GUID(DIID_DShellExplorerEvents,0xEAB22AC2,0x30C1,0x11CF,0xA7,0xEB,0x00,0x00,0xC0,0x5B,0xAE,0x0B);
|
||||
DEFINE_GUID(CLSID_ShellExplorer,0xEAB22AC3,0x30C1,0x11CF,0xA7,0xEB,0x00,0x00,0xC0,0x5B,0xAE,0x0B);
|
||||
DEFINE_GUID(IID_ISHItemOC,0xEAB22AC4,0x30C1,0x11CF,0xA7,0xEB,0x00,0x00,0xC0,0x5B,0xAE,0x0B);
|
||||
DEFINE_GUID(DIID_DSHItemOCEvents,0xEAB22AC5,0x30C1,0x11CF,0xA7,0xEB,0x00,0x00,0xC0,0x5B,0xAE,0x0B);
|
||||
DEFINE_GUID(CLSID_SHItemOC,0xEAB22AC6,0x30C1,0x11CF,0xA7,0xEB,0x00,0x00,0xC0,0x5B,0xAE,0x0B);
|
||||
DEFINE_GUID(IID_DHyperLink,0x0002DF07,0x0000,0x0000,0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x46);
|
||||
DEFINE_GUID(IID_DIExplorer,0x0002DF05,0x0000,0x0000,0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x46);
|
||||
DEFINE_GUID(DIID_DExplorerEvents,0x0002DF06,0x0000,0x0000,0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x46);
|
||||
DEFINE_GUID(CLSID_InternetExplorer,0x0002DF01,0x0000,0x0000,0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x46);
|
||||
DEFINE_GUID(CLSID_StdHyperLink,0x0002DF09,0x0000,0x0000,0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x46);
|
||||
DEFINE_GUID(CLSID_FileTypes,0xB091E540,0x83E3,0x11CF,0xA7,0x13,0x00,0x20,0xAF,0xD7,0x97,0x62);
|
||||
DEFINE_GUID(CLSID_InternetShortcut,0xFBF23B40L,0xE3F0,0x101B,0x84,0x88,0x00,0xAA,0x00,0x3E,0x56,0xF8);
|
||||
DEFINE_GUID(IID_IUniformResourceLocator,0xFBF23B80L,0xE3F0,0x101B,0x84,0x88,0x00,0xAA,0x00,0x3E,0x56,0xF8);
|
||||
DEFINE_GUID(CLSID_DragDropHelper,0x4657278AL,0x411B,0x11D2,0x83,0x9A,0x0,0xC0,0x4F,0xD9,0x18,0xD0);
|
||||
DEFINE_GUID(IID_IDropTargetHelper,0x4657278BL,0x411B,0x11D2,0x83,0x9A,0x0,0xC0,0x4F,0xD9,0x18,0xD0);
|
||||
DEFINE_GUID(IID_IDragSourceHelper,0xDE5BF786L,0x477A,0x11D2,0x83,0x9D,0x0,0xC0,0x4F,0xD9,0x18,0xD0);
|
||||
DEFINE_GUID(IID_IColumnProvider,0xE8025004,0x1C42,0x11D2,0xBE,0x2C,0x0,0xA0,0xC9,0xA8,0x3D,0xA1);
|
||||
DEFINE_GUID(IID_IShellIconOverlayIdentifier,0x0C6C4200L,0xC589,0x11D0,0x99,0x9A,0x00,0xC0,0x4F,0xD6,0x55,0xE1);
|
|
@ -1,183 +0,0 @@
|
|||
LIBRARY SHELL32.DLL
|
||||
EXPORTS
|
||||
WOWShellExecute@28
|
||||
StrStrW@8
|
||||
StrStrIW@8
|
||||
StrStrIA@8
|
||||
StrStrA@8
|
||||
StrRStrW@12
|
||||
StrRStrIW@12
|
||||
StrRStrIA@12
|
||||
StrRStrA@12
|
||||
StrRChrW@12
|
||||
StrRChrIW@12
|
||||
StrRChrIA@12
|
||||
StrRChrA@12
|
||||
StrNCpyW@12
|
||||
StrNCpyA@12
|
||||
StrNCmpW@12
|
||||
StrNCmpIW@12
|
||||
StrNCmpIA@12
|
||||
StrNCmpA@12
|
||||
StrCpyNW@12
|
||||
StrCpyNA@12
|
||||
StrCmpNW@12
|
||||
StrCmpNIW@12
|
||||
StrCmpNIA@12
|
||||
StrCmpNA@12
|
||||
StrChrW@8
|
||||
StrChrIW@8
|
||||
StrChrIA@8
|
||||
StrChrA@8
|
||||
SHUpdateRecycleBinIcon@0
|
||||
SHSetUnreadMailCountW@12
|
||||
SHSetLocalizedName@12
|
||||
SHQueryRecycleBinW@8
|
||||
SHQueryRecycleBinA@8
|
||||
SHPathPrepareForWriteW@16
|
||||
SHPathPrepareForWriteA@16
|
||||
SHParseDisplayName@20
|
||||
SHOpenFolderAndSelectItems@16
|
||||
SHLoadNonloadedIconOverlayIdentifiers@0
|
||||
SHLoadInProc@4
|
||||
SHIsFileAvailableOffline@8
|
||||
SHInvokePrinterCommandW@20
|
||||
SHInvokePrinterCommandA@20
|
||||
SHHelpShortcuts_RunDLL@16
|
||||
SHGetUnreadMailCountW@24
|
||||
SHGetSpecialFolderPathW@16
|
||||
SHGetSpecialFolderPathA@16
|
||||
SHGetSpecialFolderLocation@12
|
||||
SHGetSetSettings@12
|
||||
SHGetSettings@8
|
||||
SHGetPathFromIDListW@8
|
||||
SHGetPathFromIDListA@8
|
||||
SHGetPathFromIDList@8
|
||||
SHGetNewLinkInfoW@20
|
||||
SHGetNewLinkInfoA@20
|
||||
SHGetNewLinkInfo@20
|
||||
SHGetMalloc@4
|
||||
SHGetInstanceExplorer@4
|
||||
SHGetIconOverlayIndexW@8
|
||||
SHGetIconOverlayIndexA@8
|
||||
SHGetFolderPathAndSubDirW@24
|
||||
SHGetFolderPathAndSubDirA@24
|
||||
; SHGetFolder is in shell32.dll on W2K up,
|
||||
; but in redistributable shfolder.dll for earlier OS versions.
|
||||
SHGetFolderPathW@20
|
||||
SHGetFolderPathA@20
|
||||
SHGetFolderLocation@20
|
||||
SHGetFileInfoW@20
|
||||
SHGetFileInfoA@20
|
||||
SHGetFileInfo@20
|
||||
SHGetDiskFreeSpaceExW@16
|
||||
SHGetDiskFreeSpaceExA@16
|
||||
SHGetDiskFreeSpaceA@16
|
||||
SHGetDesktopFolder@4
|
||||
SHGetDataFromIDListW@20
|
||||
SHGetDataFromIDListA@20
|
||||
SHFreeNameMappings@4
|
||||
SHFormatDrive@16
|
||||
SHFileOperationW@4
|
||||
SHFileOperationA@4
|
||||
SHFileOperation@4
|
||||
SHExtractIconsW@32
|
||||
SheShortenPathW@8
|
||||
SheShortenPathA@8
|
||||
SheSetCurDrive@4
|
||||
SheRemoveQuotesW@4
|
||||
SheRemoveQuotesA@4
|
||||
SHEnumerateUnreadMailAccountsW@16
|
||||
SHEmptyRecycleBinW@12
|
||||
SHEmptyRecycleBinA@12
|
||||
ShellHookProc@12
|
||||
ShellExecuteW@24
|
||||
ShellExecuteExW@4
|
||||
ShellExecuteExA@4
|
||||
ShellExecuteEx@4
|
||||
ShellExecuteA@24
|
||||
ShellAboutW@16
|
||||
ShellAboutA@16
|
||||
Shell_NotifyIconW@8
|
||||
Shell_NotifyIconA@8
|
||||
Shell_NotifyIcon@8
|
||||
SheGetPathOffsetW@4
|
||||
SheGetDirW@8
|
||||
SheGetDirExW@12
|
||||
SheGetDirA@8
|
||||
SheGetCurDrive@0
|
||||
SheFullPathW@12
|
||||
SheFullPathA@12
|
||||
SheConvertPathW@12
|
||||
SheChangeDirW@4
|
||||
SheChangeDirExW@4
|
||||
SheChangeDirExA@4
|
||||
SheChangeDirA@4
|
||||
SHCreateShellItem@16
|
||||
SHCreateQueryCancelAutoPlayMoniker@4
|
||||
SHCreateProcessAsUserW@4
|
||||
SHCreateDirectoryExW@12
|
||||
SHCreateDirectoryExA@12
|
||||
SHCoCreateInstance@20
|
||||
SHChangeNotify@16
|
||||
SHBrowseForFolderW@4
|
||||
SHBrowseForFolderA@4
|
||||
SHBrowseForFolder@4
|
||||
SHBindToParent@16
|
||||
SHAppBarMessage@8
|
||||
SHAddToRecentDocs@8
|
||||
RegisterShellHook@8
|
||||
RegenerateUserEnvironment@8
|
||||
RealShellExecuteW@40
|
||||
RealShellExecuteExW@44
|
||||
RealShellExecuteExA@44
|
||||
RealShellExecuteA@40
|
||||
PrintersGetCommand_RunDLL@16
|
||||
OpenAs_RunDLL@16
|
||||
InternalExtractIconListW@12
|
||||
InternalExtractIconListA@12
|
||||
FreeIconList@8
|
||||
FindExeDlgProc@16
|
||||
FindExecutableW@12
|
||||
FindExecutableA@12
|
||||
ExtractVersionResource16W@8
|
||||
ExtractIconW@12
|
||||
ExtractIconResInfoW@20
|
||||
ExtractIconResInfoA@20
|
||||
ExtractIconExW@20
|
||||
ExtractIconExA@20
|
||||
ExtractIconEx@20
|
||||
ExtractIconA@12
|
||||
ExtractAssociatedIconW@12
|
||||
ExtractAssociatedIconExW@16
|
||||
ExtractAssociatedIconExA@16
|
||||
ExtractAssociatedIconA@12
|
||||
DuplicateIcon@8
|
||||
DragQueryPoint@8
|
||||
DragQueryFileW@16
|
||||
DragQueryFileAorW@24
|
||||
DragQueryFileA@16
|
||||
DragQueryFile@16
|
||||
DragFinish@4
|
||||
DragAcceptFiles@8
|
||||
DoEnvironmentSubstW@8
|
||||
DoEnvironmentSubstA@8
|
||||
Control_RunDLL@16
|
||||
Control_FillCache_RunDLL@16
|
||||
CommandLineToArgvW@8
|
||||
CheckEscapesW@8
|
||||
CheckEscapesA@8
|
||||
ILAppendID@12
|
||||
ILClone@4
|
||||
ILCloneFirst@4
|
||||
ILCombine@8
|
||||
ILFindChild@8
|
||||
ILFindLastID@4
|
||||
ILFree@4
|
||||
ILGetNext@4
|
||||
ILGetSize@4
|
||||
ILIsEqual@8
|
||||
ILIsParent@12
|
||||
ILLoadFromStream@8
|
||||
ILRemoveLastID@4
|
||||
ILSaveToStream@8
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue