Support refactoring (#518)

* cmake/install-share.py: update reference to a new support package.

* support: add signsrch signatures and ordinals.

* support: refactoring.

* support: more refactoring.

* support: add a new yara compilation script.

* support: implement the new YRA compilation script.

* support/yara_patterns/tools/macho: make rule names unique.

* support: refactor YARA rules management.

* Revert "support/yara_patterns/tools/macho: make rule names unique."

This reverts commit 3dee41c6b5.

* deps/yaracpp: allow usage of a local YaraCpp directory.

* cpdetect/compiler_detector: use namespaces for YARA rules.

This prevents YARA errors caused by YARA rule ID conflicts.

* travis+appveyor: no not compile YARA rules in CI services.

* CMakeLists.txt: do not compile YARA rules by default.

This is just to check this option in TeamCity service. This commit will
be reverted later.

* Revert "CMakeLists.txt: do not compile YARA rules by default."

This reverts commit 260c9319b4.

* CHANGELOG.md: https://github.com/avast-tl/retdec-support/issues/3 entry

Fix https://github.com/avast-tl/retdec-support/issues/3
This commit is contained in:
Peter Matula 2019-03-18 10:08:11 +01:00 committed by GitHub
parent ebdecf19d9
commit 301f4e6470
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1418 changed files with 445465 additions and 206 deletions

View File

@ -18,7 +18,7 @@ install:
before_build:
- cmd: mkdir build
- cmd: cd build
- cmd: cmake -DCMAKE_CXX_FLAGS_RELEASE="/Od -DNDEBUG" -G"%CMAKE_GENERATOR%" -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX="install" -DRETDEC_TESTS=ON -DRETDEC_DEV_TOOLS=ON ..
- cmd: cmake -DCMAKE_CXX_FLAGS_RELEASE="/Od -DNDEBUG" -G"%CMAKE_GENERATOR%" -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX="install" -DRETDEC_TESTS=ON -DRETDEC_DEV_TOOLS=ON -DRETDEC_COMPILE_YARA=OFF ..
build_script:
- cmd: cmake --build . --config Release --target install -- -m

1
.gitignore vendored
View File

@ -1 +1,2 @@
/build*/
/Debug/

View File

@ -56,7 +56,7 @@ script:
- mkdir build && cd build
# We use "-O0" to speed up the build.
# "-O0" causes segfaults in LLVM if we do not use "-DNDEBUG" as well.
- cmake -DCMAKE_CXX_FLAGS_RELEASE="-O0 -DNDEBUG" -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX="$(pwd)/install" -DRETDEC_TESTS=ON -DRETDEC_DEV_TOOLS=ON ..
- cmake -DCMAKE_CXX_FLAGS_RELEASE="-O0 -DNDEBUG" -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX="$(pwd)/install" -DRETDEC_TESTS=ON -DRETDEC_DEV_TOOLS=ON -DRETDEC_COMPILE_YARA=OFF ..
- time make install -j $NPROC
# Check that install is movable and that it does not need the build directory.
- mv install ../retdec-install

View File

@ -6,6 +6,7 @@
* New Feature: Added presentation of imported types and TypeRef hashes for .NET binaries ([#363](https://github.com/avast-tl/retdec/issues/363), [#364](https://github.com/avast-tl/retdec/issues/364), [#428](https://github.com/avast-tl/retdec/issues/428)).
* New Feature: Added presentation of metadata from binaries written in Visual Basic and detection of P-code ([#138](https://github.com/avast-tl/retdec/issues/138), [#440](https://github.com/avast-tl/retdec/pull/440)).
* New Feature: Added computation and presentation of icon hashes for exact and also similarity matching in PE files ([#339](https://github.com/avast-tl/retdec/issues/339)).
* Enhancement: Distribute YARA rules in a text form in the RetDec support package ([retdec-support #3](https://github.com/avast-tl/retdec-support/issues/3)).
* Enhancement: Update YARA to version 3.8.1 ([#218](https://github.com/avast-tl/retdec/issues/218)).
* Enhancement: Make `--generate-log` option of `retdec-decompiler.py` work on macOS ([#383](https://github.com/avast-tl/retdec/issues/383), [#450](https://github.com/avast-tl/retdec/pull/450)).
* Enhancement: Replace recursion with iterative implementation in x87 FPU analysis in `retdec-bin2llvmir` ([#450](https://github.com/avast-tl/retdec/pull/450)).

View File

@ -12,6 +12,7 @@ option(RETDEC_DOC "Build public API documentation (requires Doxygen)." OFF)
option(RETDEC_TESTS "Build tests." OFF)
option(RETDEC_DEV_TOOLS "Build dev tools." OFF)
option(RETDEC_FORCE_OPENSSL_BUILD "Force OpenSSL build." OFF)
option(RETDEC_COMPILE_YARA "Compile YARA rules at installation." ON)
set(CMAKE_CXX_STANDARD 14)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
@ -94,7 +95,6 @@ elseif(CMAKE_CXX_COMPILER_ID STREQUAL "GNU" OR
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-unused-parameter")
endif()
include(${CMAKE_CURRENT_SOURCE_DIR}/cmake/install-external.cmake)
include(${CMAKE_CURRENT_SOURCE_DIR}/cmake/utils.cmake)
add_subdirectory(deps)
@ -103,6 +103,7 @@ if(RETDEC_DOC)
endif()
add_subdirectory(scripts)
add_subdirectory(src)
add_subdirectory(support)
if(RETDEC_TESTS)
add_subdirectory(tests)
endif()

View File

@ -246,6 +246,7 @@ You can pass the following additional parameters to `cmake`:
* `-DRETDEC_TESTS=ON` to build with tests (disabled by default).
* `-DRETDEC_DEV_TOOLS=ON` to build with development tools (disabled by default).
* `-DRETDEC_FORCE_OPENSSL_BUILD=ON` to force OpenSSL build even if it is installed in the system (disabled by default).
* `-DRETDEC_COMPILE_YARA=OFF` to disable YARA rules compilation at installation step (enabled by default).
* `-DCMAKE_BUILD_TYPE=Debug` to build with debugging information, which is useful during development. By default, the project is built in the `Release` mode. This has no effect on Windows, but the same thing can be achieved by running `cmake --build .` with the `--config Debug` parameter.
* `-DCMAKE_PROGRAM_PATH=<path>` to use Perl at `<path>` (probably useful only on Windows).

View File

@ -1,10 +0,0 @@
install(CODE "
execute_process(
# -u = unbuffered -> print debug messages right away.
COMMAND \"${PYTHON_EXECUTABLE}\" -u \"${CMAKE_SOURCE_DIR}/cmake/install-share.py\" \"${CMAKE_INSTALL_PREFIX}\"
RESULT_VARIABLE INSTALL_SHARE_RES
)
if(INSTALL_SHARE_RES)
message(FATAL_ERROR \"RetDec share directory installation FAILED\")
endif()
")

View File

@ -7,26 +7,57 @@ if(CMAKE_CXX_COMPILER)
set(CMAKE_CXX_COMPILER_OPTION "-DCMAKE_CXX_COMPILER=${CMAKE_CXX_COMPILER}")
endif()
ExternalProject_Add(yaracpp-project
URL https://github.com/avast-tl/yaracpp/archive/d3098245cfafe06f30995e7fbf0b4c60767cb817.zip
URL_HASH SHA256=5d730a053ae6bfdd3a323fc03ac716b6d8cbc040b7e2f3bddce0b8687e8d1f2b
DOWNLOAD_NAME yaracpp.zip
CMAKE_ARGS
# This does not work on MSVC, but may be useful on Linux.
-DCMAKE_BUILD_TYPE=Release
# Force the use of the same compiler as used to build the top-level
# project. Otherwise, the external project may pick up a different
# compiler, which may result in link errors.
"${CMAKE_C_COMPILER_OPTION}"
"${CMAKE_CXX_COMPILER_OPTION}"
# Disable the update step.
UPDATE_COMMAND ""
# Disable the install step.
INSTALL_COMMAND ""
LOG_DOWNLOAD ON
LOG_CONFIGURE ON
LOG_BUILD ON
)
if(YARACPP_LOCAL_DIR)
message(STATUS "YaraCpp: using local YaraCpp directory.")
ExternalProject_Add(yaracpp-project
DOWNLOAD_COMMAND ""
SOURCE_DIR "${YARACPP_LOCAL_DIR}"
CMAKE_ARGS
# This does not work on MSVC, but may be useful on Linux.
-DCMAKE_BUILD_TYPE=Release
# Force the use of the same compiler as used to build the top-level
# project. Otherwise, the external project may pick up a different
# compiler, which may result in link errors.
"${CMAKE_C_COMPILER_OPTION}"
"${CMAKE_CXX_COMPILER_OPTION}"
# Disable the update step.
UPDATE_COMMAND ""
# Disable the install step.
INSTALL_COMMAND ""
)
force_configure_step(yaracpp-project)
else()
message(STATUS "YaraCpp: using remote YaraCpp revision.")
ExternalProject_Add(yaracpp-project
URL https://github.com/avast-tl/yaracpp/archive/1ba9a78e0a46260a77c5a34a141ecaab66298192.zip
URL_HASH SHA256=c0db4047fb3510466946c9d662f2d98202f2c51c683c099e068e01b90a19e919
DOWNLOAD_NAME yaracpp.zip
CMAKE_ARGS
# This does not work on MSVC, but may be useful on Linux.
-DCMAKE_BUILD_TYPE=Release
# Force the use of the same compiler as used to build the top-level
# project. Otherwise, the external project may pick up a different
# compiler, which may result in link errors.
"${CMAKE_C_COMPILER_OPTION}"
"${CMAKE_CXX_COMPILER_OPTION}"
# Disable the update step.
UPDATE_COMMAND ""
# Disable the install step.
INSTALL_COMMAND ""
LOG_DOWNLOAD ON
LOG_CONFIGURE ON
LOG_BUILD ON
)
endif()
check_if_variable_changed(YARACPP_LOCAL_DIR CHANGED)
if(CHANGED)
ExternalProject_Get_Property(yaracpp-project binary_dir)
message(STATUS "YaraCpp: path to YaraCpp directory changed -> cleaning CMake files in ${binary_dir}.")
clean_cmake_files(${binary_dir})
endif()
ExternalProject_Get_Property(yaracpp-project source_dir)
ExternalProject_Get_Property(yaracpp-project binary_dir)
@ -52,18 +83,6 @@ else()
set(YARAC_PATH ${YARA_DIR}/yarac)
endif()
# Compile YARA rules for tools detection.
set(YARA_COMPILE_PY ${CMAKE_SOURCE_DIR}/support/yara_patterns/tools/compile-yara.py)
install(CODE "
execute_process(
COMMAND \"${PYTHON_EXECUTABLE}\" -u \"${YARA_COMPILE_PY}\" \"${YARAC_PATH}\" \"${CMAKE_SOURCE_DIR}\" \"${CMAKE_INSTALL_PREFIX}\"
RESULT_VARIABLE COMPILE_YARA_RES
)
if(COMPILE_YARA_RES)
message(FATAL_ERROR \"YARA tool signatures compilation FAILED\")
endif()
")
# Add libraries.
add_library(yaracpp INTERFACE)
add_dependencies(yaracpp yaracpp-project)
@ -73,3 +92,6 @@ target_link_libraries(yaracpp INTERFACE debug ${binary_dir}/src/${DEBUG_DIR}
target_link_libraries(yaracpp INTERFACE debug ${YARA_LIBRARY_DIR}/${YARA_LIBRARY_NAME}${CMAKE_STATIC_LIBRARY_SUFFIX})
target_link_libraries(yaracpp INTERFACE optimized ${binary_dir}/src/${RELEASE_DIR}${CMAKE_STATIC_LIBRARY_PREFIX}yaracpp${CMAKE_STATIC_LIBRARY_SUFFIX})
target_link_libraries(yaracpp INTERFACE optimized ${YARA_LIBRARY_DIR}/${YARA_LIBRARY_NAME}${CMAKE_STATIC_LIBRARY_SUFFIX})
# Install yarac application - we may need it to compile YARA files.
install(PROGRAMS "${YARAC_PATH}" DESTINATION bin RENAME "retdec-yarac${CMAKE_EXECUTABLE_SUFFIX}")

View File

@ -43,6 +43,11 @@ class CompilerDetector : private retdec::utils::NonCopyable
ReturnCode getAllCompilers();
/// @}
protected:
void populateInternalPaths(
const retdec::utils::FilesystemPath& dir,
bool recursive = false);
protected:
ToolInformation &toolInfo; ///< results - detected tools
retdec::fileformat::Architecture targetArchitecture; ///< target architecture of input file

View File

@ -24,7 +24,8 @@ const std::size_t EP_BYTES_SIZE = 50;
const std::set<std::string> EXTERNAL_DATABASE_SUFFIXES =
{
".yar",
".yara"
".yara",
".yarac"
};
const std::string YARA_RULES_PATH = "../share/retdec/support/generic/yara_patterns/tools/";

View File

@ -157,9 +157,12 @@ BIN2LLVMIR_PARAMS = [
# Paths to tools.
FILEINFO = os.path.join(INSTALL_BIN_DIR, 'retdec-fileinfo')
FILEINFO_EXTERNAL_YARA_PRIMARY_CRYPTO_DATABASES = [os.path.join(INSTALL_SHARE_YARA_DIR, 'signsrch', 'signsrch.yara')]
FILEINFO_EXTERNAL_YARA_PRIMARY_CRYPTO_DATABASES = [
os.path.join(INSTALL_SHARE_YARA_DIR, 'signsrch', 'signsrch.yara'),
os.path.join(INSTALL_SHARE_YARA_DIR, 'signsrch', 'signsrch.yarac')]
FILEINFO_EXTERNAL_YARA_EXTRA_CRYPTO_DATABASES = [
os.path.join(INSTALL_SHARE_YARA_DIR, 'signsrch', 'signsrch_regex.yara')]
os.path.join(INSTALL_SHARE_YARA_DIR, 'signsrch', 'signsrch_regex.yara'),
os.path.join(INSTALL_SHARE_YARA_DIR, 'signsrch', 'signsrch_regex.yarac')]
AR = os.path.join(INSTALL_BIN_DIR, 'retdec-ar-extractor')
BIN2PAT = os.path.join(INSTALL_BIN_DIR, 'retdec-bin2pat')

View File

@ -393,7 +393,7 @@ class Decompiler:
for sigfile in self.args.static_code_sigfile:
# User provided signature file.
if not os.path.isfile(sigfile):
utils.print_error('Invalid .yara file \'%s\'' % sigfile)
utils.print_error('Invalid YARA file \'%s\'' % sigfile)
return False
if self.args.selected_ranges:

View File

@ -25,7 +25,7 @@ enum errcode_t
const std::string TYPES_SUFFIX = ".json";
const std::string ABI_SUFFIX = ".json";
const std::set<std::string> SIGNATURE_SUFFIXES = {".yar", ".yara"};
const std::set<std::string> SIGNATURE_SUFFIXES = {".yar", ".yara", ".yarac"};
bool hasEnding(const std::string &str, const std::set<std::string> &suffixes)
{

View File

@ -291,6 +291,37 @@ void CompilerDetector::removeUnusedCompilers()
}
}
/**
* Add all YARA files from the given @p dir to internal paths member.
*/
void CompilerDetector::populateInternalPaths(
const retdec::utils::FilesystemPath& dir,
bool recursive)
{
if (!dir.isDirectory())
{
return;
}
for (const auto *subpath : dir)
{
if (subpath->isFile()
&& std::any_of(externalSuffixes.begin(), externalSuffixes.end(),
[&] (const auto &suffix)
{
return endsWith(subpath->getPath(), suffix);
}
))
{
internalPaths.push_back(subpath->getPath());
}
else if (recursive && subpath->isDirectory())
{
populateInternalPaths(*subpath);
}
}
}
/**
* Try detect used compiler (or packer) based on heuristics
*/
@ -311,16 +342,20 @@ ReturnCode CompilerDetector::getAllSignatures()
YaraDetector yara;
// Add internal paths.
unsigned iCntr = 0;
for (const auto &ruleFile : internalPaths)
{
yara.addRuleFile(ruleFile);
std::string nameSpace = "internal_" + std::to_string(iCntr++);
yara.addRuleFile(ruleFile, nameSpace);
}
unsigned eCntr = 0;
if (cpParams.external && getExternalDatabases())
{
for (const auto &item : externalDatabase)
{
yara.addRuleFile(item);
std::string nameSpace = "external_" + std::to_string(eCntr++);
yara.addRuleFile(item, nameSpace);
}
}

View File

@ -30,37 +30,37 @@ ElfCompiler::ElfCompiler(
switch(targetArchitecture)
{
case Architecture::X86:
path.append("x86.yarac");
path.append("x86");
break;
case Architecture::X86_64:
path.append("x64.yarac");
path.append("x64");
break;
case Architecture::ARM:
if (bitWidth == 32) {
path.append("arm.yarac");
path.append("arm");
}
else {
path.append("arm64.yarac");
path.append("arm64");
}
break;
case Architecture::MIPS:
if (bitWidth == 32) {
path.append("mips.yarac");
path.append("mips");
}
else {
path.append("mips64.yarac");
path.append("mips64");
}
break;
case Architecture::POWERPC:
if (bitWidth == 32) {
path.append("ppc.yarac");
path.append("ppc");
}
else {
path.append("ppc64.yarac");
path.append("ppc64");
}
break;
@ -68,9 +68,7 @@ ElfCompiler::ElfCompiler(
break;
}
if (path.isFile()) {
internalPaths.emplace_back(path.getPath());
}
populateInternalPaths(path);
}
} // namespace cpdetect

View File

@ -29,30 +29,24 @@ MachOCompiler::MachOCompiler(
if (parser.isFatBinary())
{
for (auto it = path.begin(), end = path.end(); it != end; it++)
{
if (it->isFile())
{
internalPaths.emplace_back(it->getPath());
}
}
populateInternalPaths(path, true);
}
else
{
switch(targetArchitecture)
{
case Architecture::X86:
path.append("x86.yarac");
path.append("x86");
break;
case Architecture::X86_64:
path.append("x64.yarac");
path.append("x64");
break;
case Architecture::ARM:
if (bitWidth == 32)
{
path.append("arm.yarac");
path.append("arm");
}
else
{
@ -63,11 +57,11 @@ MachOCompiler::MachOCompiler(
case Architecture::POWERPC:
if (bitWidth == 32)
{
path.append("ppc.yarac");
path.append("ppc");
}
else
{
path.append("ppc64.yarac");
path.append("ppc64");
}
break;
@ -75,10 +69,7 @@ MachOCompiler::MachOCompiler(
break;
}
if (path.isFile())
{
internalPaths.emplace_back(path.getPath());
}
populateInternalPaths(path);
}
}

View File

@ -30,17 +30,17 @@ PeCompiler::PeCompiler(
switch(targetArchitecture)
{
case Architecture::X86:
path.append("x86.yarac");
path.append("x86");
break;
case Architecture::X86_64:
path.append("x64.yarac");
path.append("x64");
break;
case Architecture::ARM:
if (bitWidth == 32)
{
path.append("arm.yarac");
path.append("arm");
}
else
{
@ -52,10 +52,7 @@ PeCompiler::PeCompiler(
break;
}
if (path.isFile())
{
internalPaths.emplace_back(path.getPath());
}
populateInternalPaths(path);
}
} // namespace cpdetect

View File

@ -34,51 +34,51 @@ RawDataCompiler::RawDataCompiler(
switch(targetArchitecture)
{
case Architecture::X86:
pathPe.append("x86.yarac");
pathElf.append("x86.yarac");
pathMacho.append("x86.yarac");
pathPe.append("x86");
pathElf.append("x86c");
pathMacho.append("x86");
break;
case Architecture::X86_64:
pathPe.append("x64.yarac");
pathElf.append("x64.yarac");
pathMacho.append("x64.yarac");
pathPe.append("x64");
pathElf.append("x64");
pathMacho.append("x64");
break;
case Architecture::ARM:
if (bitWidth == 32)
{
pathPe.append("arm.yarac");
pathElf.append("arm.yarac");
pathMacho.append("arm.yarac");
pathPe.append("arm");
pathElf.append("arm");
pathMacho.append("arm");
}
else
{
pathElf.append("arm64.yarac");
pathElf.append("arm64");
}
break;
case Architecture::POWERPC:
if (bitWidth == 32)
{
pathElf.append("ppc.yarac");
pathMacho.append("ppc.yarac");
pathElf.append("ppc");
pathMacho.append("ppc");
}
else
{
pathElf.append("ppc64.yarac");
pathMacho.append("ppc64.yarac");
pathElf.append("ppc64");
pathMacho.append("ppc64");
}
break;
case Architecture::MIPS:
if (bitWidth == 32)
{
pathElf.append("mips.yarac");
pathElf.append("mips");
}
else
{
pathElf.append("mips64.yarac");
pathElf.append("mips64");
}
break;
@ -86,18 +86,9 @@ RawDataCompiler::RawDataCompiler(
break;
}
if (pathPe.isFile())
{
internalPaths.emplace_back(pathPe.getPath());
}
if (pathElf.isFile())
{
internalPaths.emplace_back(pathElf.getPath());
}
if (pathMacho.isFile())
{
internalPaths.emplace_back(pathMacho.getPath());
}
populateInternalPaths(pathPe);
populateInternalPaths(pathElf);
populateInternalPaths(pathMacho);
}
} // namespace cpdetect

62
support/CMakeLists.txt Normal file
View File

@ -0,0 +1,62 @@
# All installation commands for retdec support are in this single CMake file:
# 1. CMake guarantees the processing order of install rules within the same
# CMakeLists.txt file
# 2. Listing all the steps one by one in a single place is more clear for
# developers.
set(CMAKE_INSTALL_MESSAGE LAZY)
set(SUPPORT_TARGET_DIR "${CMAKE_INSTALL_PREFIX}/share/retdec/support")
# Clean support target directory if YARA compilation flag changed.
#
check_if_variable_changed(RETDEC_COMPILE_YARA CHANGED)
if(CHANGED)
message(STATUS "Support: YARA rules compilation flag changed -> cleaning RetDec support.")
FILE(REMOVE_RECURSE "${SUPPORT_TARGET_DIR}")
endif()
# Get and install external support package from the retdec-support repository.
# This step may erase the entire target support directory, so it needs to go
# first.
#
install(CODE "
execute_process(
# -u = unbuffered -> print debug messages right away.
COMMAND \"${PYTHON_EXECUTABLE}\" -u \"${CMAKE_SOURCE_DIR}/support/install-share.py\" \"${CMAKE_INSTALL_PREFIX}\"
RESULT_VARIABLE INSTALL_SHARE_RES
)
if(INSTALL_SHARE_RES)
message(FATAL_ERROR \"RetDec share directory installation FAILED\")
endif()
")
# Install ordinal number databases.
#
install(DIRECTORY ordinals/arm/ DESTINATION "${SUPPORT_TARGET_DIR}/arm/ords")
install(DIRECTORY ordinals/x86/ DESTINATION "${SUPPORT_TARGET_DIR}/x86/ords")
# Install yara patterns.
#
# Nothing - these are installed by the following Python script.
# Install YARA rules for tools detection.
#
set(YARAC_PATH "${CMAKE_INSTALL_PREFIX}/bin/retdec-yarac${CMAKE_EXECUTABLE_SUFFIX}")
set(YARA_INSTALL_PY "${CMAKE_SOURCE_DIR}/support/install-yara.py")
install(CODE "
execute_process(
COMMAND \"${PYTHON_EXECUTABLE}\" -u \"${YARA_INSTALL_PY}\"
\"${YARAC_PATH}\"
\"${SUPPORT_TARGET_DIR}\"
\"${CMAKE_SOURCE_DIR}/support/yara_patterns\"
${RETDEC_COMPILE_YARA}
RESULT_VARIABLE INSTALL_YARA_RES
)
if(INSTALL_YARA_RES)
message(FATAL_ERROR \"YARA tool signatures installation FAILED\")
endif()
")
# Is this necessary?
set(CMAKE_INSTALL_MESSAGE ALWAYS)

View File

@ -16,8 +16,8 @@ import urllib.request
version_filename = 'version.txt'
arch_suffix = 'tar.xz'
sha256hash_ref = '7a5b06ecbe97e7c90e733b74284bdce3c577af60916eddd219b42d26b5b274b0'
version = '2019-03-03'
sha256hash_ref = '629351609bca0f4b8edbd4e53789192305256aeb908e953f5546e121a911d54e'
version = '2019-03-08'
arch_name = 'retdec-support' + '_' + version + '.' + arch_suffix

97
support/install-yara.py Normal file
View File

@ -0,0 +1,97 @@
#!/usr/bin/env python3
"""Install all the *.yara files.
Usage: install-yara.py yarac-path install-path yara-patterns-path compile
yarac-path Path to the yarac binary to use for YARA rules compilation.
install-path Path to the installation directory where to place the results.
yara-patterns-path Path to the source YARA patterns directory from where to copy (and compile) YARA rules.
compile Flag (0|1, ON|OFF, True|False) determining if the YARA rules are to be compiled.
"""
import fnmatch
import pathlib
import os
import shutil
import subprocess
import sys
def print_help():
print('Usage: %s yarac-path install-path yara-patterns-path compile' % sys.argv[0])
def get_arguments():
if len(sys.argv) != 5:
print_help()
sys.exit(1)
return sys.argv[1], sys.argv[2], sys.argv[3], (sys.argv[4] == '1' or sys.argv[4].lower() == 'true' or sys.argv[4].lower() == 'on')
def print_arguments(yarac, install_dir, yara_patterns_dir, compile):
""" Debugging function.
"""
print('===> yarac path :', yarac)
print('===> install path :', install_dir)
print('===> yara patterns path :', yara_patterns_dir)
print('===> compile flag :', compile)
def copy_yara_patterns(yara_patterns_dir, install_dir):
""" Copy *.yara files from the given source YARA patterns directory
to the given installation directory.
File is copied only if it is newer (timestamp) than already existing
*.yara[c] file in the installation directory, or if such file does not
exist.
"""
for root, dirnames, filenames in os.walk(yara_patterns_dir):
for filename in fnmatch.filter(filenames, '*.yara'):
input = os.path.join(root, filename)
input_suffix = os.path.relpath(input, yara_patterns_dir)
output = os.path.join(install_dir, 'generic', 'yara_patterns', input_suffix)
output_c = str(pathlib.Path(output).with_suffix('.yarac'))
if ((not os.path.isfile(output) and not os.path.isfile(output_c))
or (os.path.isfile(output) and os.path.getmtime(output) < os.path.getmtime(input))
or (os.path.isfile(output_c) and os.path.getmtime(output_c) < os.path.getmtime(input))):
print('-- Installing:', output)
os.makedirs(os.path.dirname(output), exist_ok=True)
shutil.copy(input, output)
def compile_yara(yarac, install_dir):
""" Compile all *.yara files in the given installation directory using the
provided YARAC program into *.yarac files.
Remove the source *.yara files.
"""
inputs = []
for root, dirnames, filenames in os.walk(install_dir):
for filename in fnmatch.filter(filenames, '*.yara'):
inputs.append(os.path.join(root, filename))
for i in inputs:
fn = pathlib.Path(i)
o = fn.with_suffix('.yarac')
print('-- Compiling:', i)
cmd = [yarac, '-w'] + [i] + [str(o)]
ret = subprocess.call(cmd)
if ret != 0:
print('Error: yarac failed during compilation of file ', path)
exit(1)
os.remove(i)
def main():
yarac, install_dir, yara_patterns_dir, compile = get_arguments()
copy_yara_patterns(yara_patterns_dir, install_dir)
if compile:
compile_yara(yarac, install_dir)
sys.exit(0)
if __name__ == '__main__':
main()

View File

@ -0,0 +1,2 @@

View File

@ -0,0 +1,30 @@
1 CloseAddressBook
2 OpenAddressBook
3 CreateAddressBook
4 RecountCards
5 SetColumnProperties
6 GetSortOrder
7 SetSortOrder
8 GetMask
9 SetMask
10 GetAddressCardOid
11 GetAddressCardIndex
12 OpenAddressCard
13 GetAddressCardProperties
14 GetMatchingEntry
15 GetMatchingEntryEx
16 AddAddressCard
17 DeleteAddressCard
18 ModifyAddressCard
19 FreeAddressCard
20 GetNumberOfAddressCards
21 FindFirstEntry
22 GetPropertyDataStruct
23 InitializeExtended
24 GetDefaultFields
25 GetSortOrderFromProperty
26 GetFieldFromProperty
27 PimCategListBlob
28 PimCategParseBlob
29 ConstructStoreFileAs
30 GetAddrstorInst

View File

@ -0,0 +1,44 @@
9 AtlceDispatchCall
10 AtlAdvise
11 AtlUnadvise
15 AtlModuleGetClassObject
16 AtlModuleInit
18 AtlModuleRegisterServer
19 AtlModuleRegisterTypeLib
21 AtlModuleTerm
22 AtlModuleUnregisterServer
23 AtlModuleUpdateRegistryFromResourceD
25 AtlSetErrorInfo
26 AtlCreateTargetDC
27 AtlHiMetricToPixel
28 AtlPixelToHiMetric
30 AtlComPtrAssign
31 AtlComQIPtrAssign
32 AtlInternalQueryInterface
34 AtlGetVersion
35 AtlAxDialogBoxW
37 AtlAxCreateDialogW
39 AtlAxCreateControl
40 AtlAxCreateControlEx
41 AtlAxAttachControl
42 AtlAxWinInit
43 AtlModuleAddCreateWndData
44 AtlModuleExtractCreateWndData
45 AtlModuleRegisterWndClassInfoW
47 AtlAxGetControl
48 AtlAxGetHost
50 AtlIPersistStreamInit_Load
51 AtlIPersistStreamInit_Save
52 AtlIPersistPropertyBag_Load
53 AtlIPersistPropertyBag_Save
54 AtlGetObjectSourceInterface
55 AtlModuleUnRegisterTypeLib
56 AtlModuleLoadTypeLib
57 AtlModuleUnregisterServerEx
58 AtlModuleAddTermFunc
59 ?wce_ATL_OleLoadFromStream@ATL@@YAJPAUIStream@@ABU_GUID@@PAPAX@Z
60 ?wce_ATL_OleSaveToStream@ATL@@YAJPAUIPersistStream@@PAUIStream@@@Z
61 ?wce_ATL_CLSIDFromProgID@ATL@@YAJPBGPAU_GUID@@@Z
62 ?wce_ATL_ProgIDFromCLSID@ATL@@YAJABU_GUID@@PAPAG@Z
63 ?wce_ATL_MulDiv@ATL@@YAHHHH@Z
64 ?wce_ATL_CreateStreamOnHGlobal@ATL@@YAJPAXHPAPAUIStream@@@Z

View File

@ -0,0 +1,478 @@
1 ?HBITMAPFromImage@@YAPAUHBITMAP__@@PAUIImage@@KPAUtagBITMAPINFO@@@Z
2 SHGetAppKeyAssoc
3 SHSetAppKeyWndAssoc
4 SHSipInfo
5 IsPhoneAppWindow
7 DrawShapeColor
8 SHImListPopup
9 SHInitExtraControls
10 SHCloseApps
11 GetRegisteredAppInfo
12 SetRegisteredAppInfo
13 FreeRegisteredAppInfo
14 Shell_HeapCreate
15 Shell_Alloc
16 Shell_Free
17 Shell_AllocString
18 Shell_CatStrAlloc
19 Shell_LoadStringAlloc
20 Shell_RegAllocString
21 SHSipPreference
22 SHAppNotifyDone
23 ?PathFindExtension@@YAPAGPBG@Z
24 PathAddBackslash
25 PathRemoveBackslash
26 PathCombine
27 PathFindFileName
28 PathIsRelative
29 ComboEditAutoComplete
30 SHHandleSipChange
31 SHHandleActivate
32 SHMessageBox
33 SHForceBaseState
34 SHCreateMenuBar
35 SHCreateWorkerWindow
36 SHCommandBar_GetCommandBarByID
37 SHCommandBar_EnableCommand
38 SHCommandBar_GetClientRect
39 SHInputDialog
40 SHRecognizeGesture
41 SHCreateContextMenu
42 PathRemoveBlanks
43 SHCreateMainWindow
44 EditSubProc
45 ComboSubProc
46 ComboBoxEditSubProc
47 SubClassThisWindow
48 SHCheckForContextMenu
49 SHEnableEditMenu
50 SHRunCpl
51 StrStrI
52 CancelSIPUp
53 SHCreateSystemFont
54 SHFillRectClr
55 SHColorDisplay
56 SHInitDialog
57 SHTrackPopupMenu
58 SHDrawUnderline
59 SHSetWindowBits
62 IsSANMessage
63 ?MinPowerOff@@YAHXZ
64 SHLoadImageResource
65 SHFullScreen
66 ?SHMenuBar_GetMenu@@YAPAUHMENU__@@PAUHWND__@@H@Z
67 SHShowContextMenu
68 SHAnimationSequenceIsAnimating
69 SHDoneButton
70 LFHeightForPoint
71 SHFontMgrCreate
72 SHFontMgrManageFonts
73 SHFontMgrDestroy
74 SHCreateMenuBarInternal
75 SHLoadImageFile
76 SHHdrGrpSepLineDraw
79 SHSignalDone
80 SHNewProfileObj
81 SHEndProfileObj
82 SHRunFontManager
83 SHHandleWMSettingChange
84 SHHandleWMActivate
85 SHStartIfNeeded
86 SHClearStartedBit
87 SHStartProfile
88 SHSetNavBarText
89 SHLoadFormattedImageFile
90 SHGetAutoRunPath
91 SHLoadMenuPopup
92 IsFullScreenWindow
93 SHStartAndBlock
94 SHIsPreRapierApp
95 SHSavePWWarning
96 SHGetDeviceFeatureLevel
97 SHSendBackToFocusWindow
98 SHEnumPropSheetHandlers
99 SHForceBaseStateEx
100 SHLoadContextMenuExtensions
101 SHInvokeContextMenuCommand
102 SHFreeContextMenuExtensions
103 SHBoxEx
104 SHBox
105 SHTextBox
106 PhoneGetCallPropertyBag
107 PhoneGetCallProperties
108 SHCreateNewItem
109 SHDocManagerCreate
110 SHDocManagerRegister
111 SHDocManagerQuery
112 SHDocManagerDestroy
113 SHChangeNotifyRegister
114 SHChangeNotifyDeregister
115 SHChangeNotifyFree
116 PathIsPrefix
117 SHAnimateRects
118 SHScanBuffer
119 SHScanFile
120 SHFreeScanners
121 SHLock
122 SHUnlock
123 SHIsLocked
124 SHWriteLockState
125 SHClearLockState
128 SHGetEmergencyCallList
129 SHInvalidateScreen
130 SHBoldFontAllowed
131 SHSetForegroundLastActivePopup
132 SHFindForegroundMenuBar
133 SHGetKOBits
134 SHSetKOBits
135 SHOnFullScreenAppActivate
136 SHDrawUnderlineColor
137 GetProtocol
138 SHMakeCall
139 DrawFocusRectColor
140 ADChgTaskList
141 ADTaskInfo
142 ADRegisterCallback
143 AssociateNoteWithCall
144 SHGetTimeFormat
145 ?GetStandardFont@@YAJW4eFontID@@PAPAUHFONT__@@@Z
146 ?ClearFontManager@@YAXXZ
147 ?OnSettingChange@@YAHIJ@Z
148 ?GetAppMetric@@YAHW4_enAppMetricID@@@Z
149 SHInitPresetMessages
150 SHReleasePresetMessages
151 SHRunPresetMessagesEdit
152 SHPopulatePresetMessageMenu
153 SHGetPresetMessage
154 SHSetPresetMessage
155 SHNotificationAdd
156 SHNotificationUpdate
157 SHNotificationRemove
158 SHAnimateListviewOpen
159 PhoneShowCallLog
160 PathFindNextComponent
161 SHSetBubbleRegion
162 SHPaintBubbleFrame
163 SHGetPowerOnTime
164 SHCreateCOleWindow
165 SHNotifyAppsOnDock
166 ?CreateBackgroundSpec@@YAJPAPAVIBackgroundSpec@@@Z
167 SHGetMessageBoxIcon
168 SHFadeImage
169 SHSetAsWatermark
170 SHSetSimToolkitMenu
171 SHToolkitQueryShell
172 SHGetNavBarItemRect
173 SHNotificationGetData
174 SHSameWindowProcesses
175 SHPreProcessLogFont
176 SHRegSetValueEx
177 SHGetStyleBkColor
178 SHGetStyleColor
179 SHGetStyleFont
180 NotifyAppsOnEvent
181 SHInsertPresetMessage
182 SHHandleHotkey
183 SHNavigateBack
184 SHSetBack
185 SHSetProp
186 SHGetProp
187 SHRemoveProp
188 SHFindMenuBar
189 ?SHDrawGradientBubbleTitle@@YAXPAUtagGRADIENTTITLEINFO@@@Z
190 CreateImageCache
191 DrawAlignedIcon
192 SHEnableRadio
193 SHKeyToVerb
194 SHProcessVerb
195 SHNotifyAppsOnHeadset
196 TZFindOpen
197 TZFindNext
198 TZGetData
199 TZFindClose
201 SHEscapeBubbleHtml
202 SHOriginalClassNameFromATL
203 SHEscapeAccelerators
204 SHGetSimToolkitMenu
205 SHSoundManGetDisplayNameList
206 SHSoundManGetFileName
207 SHSoundManGetDisplayName
208 SHNotifyAppsOnCallConnect
209 SHFindPreviousInstance
210 SHNotifyAppsOnCarkit
211 SHNotifyAppsOnSpeakerPhone
212 SHFindPreviousInstanceEx
213 SHGetLastActiveWindow
214 SHNotifyAppsOnIncomingCall
215 SHRegGetHLMDWValue
216 SHLoadSKFromReg
217 SHGetSystemDefaultLCID
218 SHGetFontHeight
219 SHGetUiInfo
220 SHGradientInit
221 SHGradientDeInit
222 SHGradientDraw
223 SHCopyBitmap
224 SHGetCarrierBrandingFlag
225 SHGetCarrierBranding
226 DoEditContextMenu
227 SHOnVoiceMailCountChange
228 SHLoadMenuExtensions
229 SHQueryMenuExtensions
230 SHLoadFileContextMenuExtensions
231 SHSetInputContext
232 SHGetInputContext
233 SHDrawBranding
234 SHDrawClippedText
235 SHMakeValidFilename
236 VerifyTrust
237 DisplayNotRunnableAppDialog
238 SHOnMissedCallCountChange
239 SHRunSafeApplet
240 SHUnEscapeAccelerators
241 LoadStringEtcOver
242 SHGetLocaleInfo
243 SHLucySendMsg
244 SHLucyGetTestMode
245 SHResizeDialogProc
246 ?Dbg_DumpMenu@@YAXPBGPAUHMENU__@@@Z
247 ?Dbg_DumpGUID@@YAXPAGABU_GUID@@@Z
248 ?Dbg_MaskToMneStr@@YAPAGIPAG@Z
249 GetMenuItemCountEM
250 GetMenuItemIDEM
251 GetMenuStateEM
252 InsertMenuItemEM
253 RegOpenKeyEM
254 RegQueryValueEM
255 CreateFontVariant
256 SHGUIDFromStringW
257 IUnknown_Set
258 IUnknown_SetOwner
259 IUnknown_GetObjectOfPDP
260 InitializeKH
261 TranslateMessageKH
262 SetKeyHoldableKH
263 Shell_MergeMenus
264 Shell_UnMergeMenus
266 SHFixMenuIndex
267 SHGetMenuItemData
268 SHSetMenuItemData
269 SHOnSAN_NOTIFY
270 SHCleanMenu
271 GetNextSpan
272 GetAppHWND
273 ClearAppHWND
274 SetForegroundApp
275 SHSubclassWindow
276 SHDialogAutoClose
277 SHSendShellMessage
278 SHGetShellWindow
279 HomeHideOwnedWindows
280 SHMapCallerPtrArray
281 SHGetMetric
282 SHGetScreenOrientation
283 SHFindMenuBarInternal
284 SHStretchBitmap
285 SHGetBitmapLogPixels
286 HIDPI_ImageList_LoadImage
287 HIDPI_ImageList_ReplaceIcon
288 SHBorderRectangle
289 SHBorderPolyline
290 SHStretchBltBitmap
291 SHStretchBltBitmapEx
292 SHGetDPISpecificRegKey
293 SHRectangle
294 SHPolyline
295 SHIsPreOzoneUpdate
296 SetWindowPosOnRotate
297 SHRCMLDialogProc
298 SHSetDisplayRotation
299 SHGetDisplayRotation
300 SHSetStretchMode
301 SetDialogAutoScrollBar
302 LoadHTML
304 SHRegGetHKCUDWValue
305 SHGetLandscapeRotationSettings
306 SHCopyIcon
307 SHStretchIcon
308 SHSkipDialogInitialFocus
309 SHTranslateKeyToPhoneKeyEx
310 DPI_LoadLibraryRes
311 DPI_LoadImageFile
312 SHGetUIMetrics
313 SHLoadFontFromResource
314 SHSipMightBlockUI
315 DelMRUString
316 CreateMRUListA
317 CreateMRUListW
318 FreeMRUList
319 AddMRUStringA
320 AddMRUStringW
321 FindMRUStringA
322 FindMRUStringW
323 EnumMRUListA
324 EnumMRUListW
325 AddMRUData
326 FindMRUData
327 PopulateComboWithMRU
328 PopulateMenuWithMRU
329 SHDeleteTodayWallpaper
330 DPI_ExtractIconEx
331 SHDrawTextOverImage
332 SHEnableSoftkey
333 RegistryGetDWORD
334 RegistryGetString
335 RegistrySetDWORD
336 RegistrySetString
337 RegistryTestExchangeDWORD
338 RegistryNotifyApp
339 RegistryNotifyWindow
340 RegistryNotifyMsgQueue
341 RegistryCloseNotification
342 RegistryStopNotification
343 RegistryBatchNotification
344 RegistryNotifyCallback
345 SHGetLegacySupportWindow
346 SHReleaseLegacySupportWindow
347 IsModulePreWinCE421
348 SHInitDialerClass
349 SHAppendAutorunPath
350 FileDrmIsDRM
351 FileDrmCreateFile
352 FileDrmCreateForwardableContent
353 FileDrmNotifyEnable
354 FileDrmNotifyDisable
355 FileDrmShowLicenseInfo
356 FileDrmHandleError
357 FileDrmRenewRights
358 FileDrmGetMetric
359 FileDrmVerifyRights
360 FileDrmCommitRights
361 FileDrmDeleteFile
362 FileDrmStoreContent
363 ?IsScreenRotationSupported@@YAHXZ
364 QueryPolicy
365 ?SKDrawGradientBackgroundEx@@YAXPAUHDC__@@UtagRECT@@HHHH@Z
366 CheckPhoneFeatureLevel
367 SHLoadHelperObject
368 SHDrawMultipleGradientBackground
369 SHGetGradientColor
370 SHDrawMultipleGradient
371 SHUpdateSysColors
372 ActiveSyncStart
373 ActiveSyncStop
374 SHVerifyBackgroundImageRights
375 SHAnimationSequenceInit
376 SHAnimationSequenceFree
377 SHAnimationSequenceLaunch
378 SHAnimationSequenceHandleTimer
379 SHAnimationSequenceHalt
380 OnDefTalkButton
381 PopulateAndLaunchDialer
382 SHUpdateBaseHue
383 SHDrawIconEx
384 SHDrawIcon
385 SHDrawIconColor
386 FileDrmVerifyRightsEx
387 SndGetSoundDirectoriesList
388 SndGetSoundFileList
389 SndSetSound
390 SndGetSound
391 LoadStringEtcOverNoCache
392 SHCameraCapture
393 SHVerifyEventSoundRights
394 SHTranslateKeyToPhoneKey
395 ?SndSetSoundI@@YAJW4tagSND_EVENT@@PBUtagSNDFILEINFO@@HK@Z
396 CheckSmsUiEnabled
397 CheckBeamingSupported
398 SHDeviceLockAndPrompt
399 PHGetCurrentCarrierData
400 SHCheckWirelessManagerEnabled
401 SHLaunchWirelessManager
402 ?SHColorHSBToRGB@@YAJKPAK@Z
403 ?SHColorRGBToHSB@@YAJKPAK@Z
404 SHIdleTimerResetEx
405 SHSetPowerTimeoutForLock
406 LoadKeyMap
407 UnloadKeyMap
408 PHGetCurrentVoIPServiceData
409 ?GetVoIPPhoneNumber@@YAJPAGH@Z
410 ?GetVoIPVoiceMailNumber@@YAJPAGH@Z
411 SndPlaySync
412 SndOpen
413 SndPlayAsync
414 SndStop
415 SndClose
416 ?GetHTMLInputValue@@YAPAGPBG0@Z
417 ?SHThemeColor@@YAJKPAK@Z
418 SHDrawVerticalGradient
419 LoadLangMap
420 UnloadLangMap
421 AuthResetSetup
422 AuthResetRequest
423 RegistryDeleteValue
424 AuthResetGetValue
425 SndGetWaitHandle
426 SHSetImeMode
427 SHGetImeMode
428 SHSubclassRemove
429 LoadDeviceLockTimeout
430 IsAuthenticationRequired
431 SHGetSupportedSimContactsFields
432 ?OpenOverrideColorRegKey@@YAPAUHKEY__@@XZ
1000 SHTurnScreenOn
1003 SHSetSoftKey
1004 SHShowSoftKeys
1005 UIHGetTextToStruct
1006 UIHSetTextFromStruct
1007 UIHLimitTextControls
1008 UIHSetHWNDToStruct
2000 SHVoiceTagTrain
2001 SHVoiceTagRecognize
2002 SHVoiceTagPlayback
2003 SHVoiceTagDelete
2004 ?SHGetStartMRU@@YAJPAPAVIStartMRU@@@Z
2005 ?SHStartMRUHookProc@@YAXPBU_SHELLEXECUTEINFO@@@Z
2006 SHIdleTimerReset
2007 ?SHCreateBannerDisplay@@YAJPAPAVIBannerDisplay@@@Z
2008 SHOnPluginDataChange
2009 ?RegisterBackgroundControl@@YAJPAUHINSTANCE__@@@Z
2010 ?AMIgnoreMetricChanges@@YAXXZ
2011 ExitWindowsEx
2012 ?STHStreamBackgroundSpec@@YAJKPAUIStream@@PAXJPAI@Z
2013 SHEnumFiles
2014 SHGetSoundFileList
2015 ?Vibrate@@YAJKPBUVIBRATENOTE@@HK@Z
2016 ?VibrateStop@@YAJXZ
2017 ?VibrateGetDeviceCaps@@YAHW4VIBRATEDEVICECAPS@@@Z
2018 SHShowSimToolkitUI
2019 VerifyFileTrust
2020 SHEnumFolders
2021 DMProcessConfigXML
2022 SHRefreshStartMenu
2023 SHGetDeviceStateInfo
2024 ?SystemStatusDisplay_Create@@YAJKKHPAPAX@Z
2025 ?SystemStatusDisplay_Destroy@@YAJPAX@Z
2026 ?SystemStatusDisplay_SetAppType@@YAJPAXW4_SSDAPPTYPE@@PAIPAPBK@Z
2027 ?SystemStatusDisplay_GetWidth@@YAJPAXIPBU_CEPROPVAL@@PAH@Z
2028 ?SystemStatusDisplay_Draw@@YAJPAXPAUHDC__@@PBUtagRECT@@IPBU_CEPROPVAL@@K@Z
2029 ?SystemStatusDisplay_LoadIconCache@@YAJPAXIPBU_CEPROPVAL@@K@Z
2030 ?SystemStatusDisplay_ColorChange@@YAJPAXKK@Z
2031 ?SystemStatusDisplay_GetBlinkRequirements@@YAJPAXIPBU_CEPROPVAL@@PAH@Z
2032 SHCHGetCOLORREF
2033 SHCHSetColorFromAttribute
2034 SHCHSetColorFromString
2035 SHImeOnKeyPress
2037 SHImeGetClearMessage
2038 SHImeSetModeIcon
2039 SHImeSetCustomInputIcons
2040 ?SystemStatusDisplay_SetCustomInputIcons@@YAJPAXPAUHBITMAP__@@@Z
2042 GetOpenFileNameEx
2043 SHGetSaveFileName
2044 CalendarNewAppointment
2045 ContactsNewContact
2046 ?SignalStartupThread@@YAJXZ
2047 SHSetInputModeIconFromKeyboard
2050 ?InvokeSettings@@YAJPAUHWND__@@W4InvokeSettingsEnum@@@Z
2052 GetSIMTKIdleModeText
3000 ?GetSHCompatibility@@YAKXZ

View File

@ -0,0 +1,10 @@
1 BTL_Init
2 BTL_Deinit
3 BTL_Open
4 BTL_Close
5 BTL_Read
6 BTL_Write
7 BTL_Seek
8 BTL_IOControl
9 BTL_PowerUp
10 BTL_PowerDown

View File

@ -0,0 +1,23 @@
1 BthSetMode
2 BthGetMode
3 BthSetLocalName
4 BthInitiateBonding
5 BthAnswerBondingReq
6 GetDeviceByName
7 GetDeviceByAddr
8 GetDeviceList
9 DoInquiry
10 BthGetCachedHardwareStatus
11 BthDeviceChanged
12 CancelInquiry
13 BthSuppressRetry
14 ?BthInitializeVCOM@@YAJXZ
15 ?BthModifyVCOMPort@@YAJPAUBTH_VCOM_PORT@@W4BTH_VCOM_MODIFY_TYPE@@@Z
16 OnBthDeviceAdded
17 OnBthDeviceRemoved
18 ?AlterA2DPConnection@@YAJHPB_K@Z
19 GetA2DPConnectionState
20 ?ProcessShellBthutilSDPMessage@@YAJIJ@Z
21 IsBluetoothVisibleAllowed
22 ?SetAsPreferredA2DPHeadset@@YAJPB_K@Z
23 BthSetModeInternal

View File

@ -0,0 +1,58 @@
1 CalibrateStallCounter
2 HalAllocateCommonBuffer
3 HalFreeCommonBuffer
4 HalGetBusDataByOffset
5 HalSetBusDataByOffset
6 HalTranslateBusAddress
7 HalTranslateSystemAddress
8 MmMapIoSpace
9 MmUnmapIoSpace
10 READ_PORT_BUFFER_UCHAR
11 READ_PORT_BUFFER_ULONG
12 READ_PORT_BUFFER_USHORT
13 READ_PORT_UCHAR
14 READ_PORT_ULONG
15 READ_PORT_USHORT
16 READ_REGISTER_BUFFER_UCHAR
17 READ_REGISTER_BUFFER_ULONG
18 READ_REGISTER_BUFFER_USHORT
19 READ_REGISTER_UCHAR
20 READ_REGISTER_ULONG
21 READ_REGISTER_USHORT
22 StallExecution
23 TransBusAddrToStatic
24 TransBusAddrToVirtual
25 WRITE_PORT_BUFFER_UCHAR
26 WRITE_PORT_BUFFER_ULONG
27 WRITE_PORT_BUFFER_USHORT
28 WRITE_PORT_UCHAR
29 WRITE_PORT_ULONG
30 WRITE_PORT_USHORT
31 WRITE_REGISTER_BUFFER_UCHAR
32 WRITE_REGISTER_BUFFER_ULONG
33 WRITE_REGISTER_BUFFER_USHORT
34 WRITE_REGISTER_UCHAR
35 WRITE_REGISTER_ULONG
36 WRITE_REGISTER_USHORT
37 CreateBusAccessHandle
38 CloseBusAccessHandle
39 SetDevicePowerState
40 GetDevicePowerState
41 TranslateBusAddr
42 TranslateSystemAddr
43 SetDeviceConfigurationData
44 GetDeviceConfigurationData
45 GetParentDeviceInfo
46 GetChildDeviceRemoveState
47 GetBusNamePrefix
48 BusTransBusAddrToVirtual
49 BusTransBusAddrToStatic
50 BusIoControl
51 DDKPwr_Initialize
52 DDKPwr_Deinitialize
53 DDKPwr_RequestLevel
54 DDKPwr_ReleaseLevel
55 DDKPwr_GetDeviceLevel
56 DDKPwr_SetDeviceLevel
57 BusChildIoControl
101 GetDeviceRegistryParams

View File

@ -0,0 +1,112 @@
1 SimInitialize
2 SimDeinitialize
3 SimGetDevCaps
4 SimReadPhonebookEntry
5 SimGetPhonebookStatus
6 SimWritePhonebookEntry
7 SimDeletePhonebookEntry
8 SimGetPhoneLockedState
9 SimUnlockPhone
10 SimGetLockingStatus
11 SimSetLockingStatus
12 SimChangeLockingPassword
13 SimGetSmsStorageStatus
14 SimReadMessage
15 SimWriteMessage
16 SimDeleteMessage
17 SimReadRecord
18 SimWriteRecord
19 SimGetRecordInfo
20 ?SimReadRILMessage@@YAJPAXKKPAUrilmessageinfo_tag@@@Z
21 ?SimGetIMSI@@YAJPAXPAGPAK@Z
40 lineGetCallBarringCaps
41 lineGetCallBarringState
42 lineGetCallWaitingCaps
43 lineGetCallWaitingState
44 lineGetCurrentHSCSDStatus
45 lineGetCurrentOperator
46 lineGetEquipmentState
47 lineGetGeneralInfo
48 lineGetGPRSClass
49 lineGetHSCSDCaps
50 lineGetHSCSDState
51 lineGetMuteState
52 lineGetNumberCalls
53 lineGetOperatorStatus
54 lineGetRadioPresence
55 lineGetRegisterStatus
56 lineGetSendCallerIDState
57 lineGetUSSD
58 lineRegister
59 lineSendUSSD
60 lineSetCallBarringPassword
61 lineSetCallBarringState
62 lineSetCallWaitingState
63 lineSetEquipmentState
64 lineSetGPRSClass
65 lineSetHSCSDState
66 lineSetMuteState
67 lineSetPreferredOperator
68 lineSetSendCallerIDState
69 lineUnregister
70 lineGetCurrentAddressID
71 lineSetCurrentAddressID
75 lineGetCurrentSystemType
76 lineGetOperatorStatusEx
77 lineRegisterEx
78 lineSetPreferredOperatorEx
79 lineGetCurrentOperatorEx
100 lineManageCalls
110 tapiRequestMakeCallW
120 ConnMgrEstablishConnection
121 ConnMgrConnectionStatus
122 ConnMgrReleaseConnection
123 ConnMgrSetConnectionPriority
124 ConnMgrProviderMessage
125 ConnMgrEnumDestinations
126 ConnMgrRegisterScheduledConnection
127 ConnMgrUnregisterScheduledConnection
128 ConnMgrMapURL
129 ConnMgrApiReadyEvent
130 ConnMgrEstablishConnectionSync
131 ConnMgrQueryDetailedStatus
132 ConnMgrRegisterForStatusChangeNotification
133 ConnMgrMapConRef
150 SetRadioState
160 ExecuteDialString
161 ValidateAPIPermission
162 CfgUtilCreateCharacteristic
163 CfgUtilCreateParm
164 ?XMLHGetBstrVarFromAttr@@YAJPAUIXMLDOMNode@@PBGPAUtagVARIANT@@@Z
165 ?XMLHGetStringAttributeVal@@YAJPAUIXMLDOMNode@@PBG1PAGI@Z
166 ?XMLHGetIntAttributeVal@@YAJPAUIXMLDOMNode@@PBGHPAH@Z
167 ?XMLHGetBooleanAttributeVal@@YAJPAUIXMLDOMNode@@PBGHPAH@Z
168 ?XMLHGetTranslatedAttributeVal@@YAJPAUIXMLDOMNode@@PBGKPAKZZ
169 ?XMLHGetCommaSeperatedIntAttributeVal@@YAJPAUIXMLDOMNode@@PBGHZZ
170 ?XMLHGetRectAttributeVal@@YAJPAUIXMLDOMNode@@PBGPBUtagRECT@@PAU2@@Z
171 ?XMLHGetCOLORREFAttributeVal@@YAJPAUIXMLDOMNode@@PBGKPAKHPAH@Z
172 ?XMLHGetElementText@@YAJPAUIXMLDOMNode@@PBGPAGI@Z
173 ?XMLHGetSearchElementText@@YAJPAUIXMLDOMNode@@PBG1PAGI@Z
174 ?XMLHSkipXMLProlog@@YAJPAGPAPAG@Z
175 ?XMLHGetCLSIDAttributeVal@@YAJPAUIXMLDOMNode@@PBGPAU_GUID@@@Z
176 ?XMLHGetIDValueList@@YAJPAUIXMLDOMNodeList@@QBUNameIDMapElem@@HP6AJPAUIXMLDOMNode@@PAX@ZPAPAH5PAH@Z
177 ?XMLHChangeTagName@@YAJPAUIXMLDOMElement@@PBGPAPAUIXMLDOMNode@@@Z
178 ?XMLHDeleteNodeListFromDoc@@YAJPAUIXMLDOMNodeList@@@Z
179 ?XMLHDeleteNodeFromDoc@@YAJPAUIXMLDOMNode@@@Z
180 ?XMLHDeleteAttributesWithExclusions@@YAJPAUIXMLDOMNode@@IZZ
183 ?XMLHGetOwnerDoc@@YAJPAUIXMLDOMNode@@PAPAUIXMLDOMDocument@@@Z
184 ?XMLHCreateChildElement@@YAJPAUIXMLDOMNode@@PBGPAUIXMLDOMDocument@@PAPAUIXMLDOMElement@@@Z
185 ?XMLHSetTextAttribute@@YAJPAUIXMLDOMElement@@PBG1@Z
186 ?XMLHInsertChildNodeByPosition@@YAJPAUIXMLDOMNode@@0JPAPAU1@@Z
187 ?XMLHGetParentPosition@@YAJPAUIXMLDOMNode@@PAJ@Z
188 ?XMLHPrintNode@@YAJPAUIXMLDOMNode@@H@Z
189 ?XMLHChangeTagNameEx@@YAJPAUIXMLDOMElement@@PBGPAPAUIXMLDOMNode@@PAPAU1@@Z
190 ?IsAlwaysOnConnection@@YAHPBGH@Z
191 ?IsSuspendResumeConnection@@YAHPBGH@Z
192 SimGetPhonebookCapabilities
193 SimReadPhonebookEntries
194 SimWritePhonebookEntryEx
195 SimWritePhonebookTag
196 SimReadPhonebookTag
197 UseDTPTForProcess
198 ?IsSuspendResumeCacheExpiresConnection@@YAHPBGH@Z

View File

@ -0,0 +1,77 @@
5 SHSetSystemEUDCFont
6 DoDragDrop
7 RegisterDragDrop
8 RevokeDragDrop
9 SHGetDesktopFolder
10 SHGetSpecialFolderLocation
11 SHGetPathFromIDList
12 SHGetMalloc
13 DLL_SHGetFileInfo
14 SHFileOperationW
15 SHLoadDIBitmapBrush
16 SHLoadDIBitmap
17 SHCreateShortcut
18 SHGetShortcutTarget
19 SHAddToRecentDocs
20 SHRegQuerySZ
21 SHRegQuerySZEx
22 SHFlushCache
23 SHRemoveFontResource
24 ?DLL_SHRemoveFontResource@@YAHPBGI@Z
25 SHIsFileOperationRestricted
26 PathIsValidFileName
27 PathIsValidPath
28 PathRemoveBlanks
29 PathRemoveTrailingSlashes
30 PathFindExtension
31 PathFindFileName
32 PathStripPath
33 PathCompactSlashes
34 PathCompactPath
35 PathIsDirectory
36 PathGetAssociation
37 PathIsExe
38 PathIsLink
39 PathIsExtension
40 PathMakePretty
41 PathFileExists
42 PathRemoveExtension
43 PathRemoveFileSpec
44 PathRemoveArgs
45 PathGetArgs
46 PathRemoveQuotesAndArgs
47 PathRemoveQuotes
48 PathMatchSpec
49 PathMakeUniqueName
50 PathIsGUID
51 PathIsRemovableDevice
52 PathIsRestricted
53 Host_ShowFileError
54 Host_FindBigDaddy
55 Host_MaxWindow
56 Host_OpenPositionDB
57 Host_CheckStack
58 Host_MessageBox
59 Host_Exec
60 Host_ShortcutGetArgs
61 Host_ShortcutRemoveArgs
62 ILIsFileSystemPidl
63 ILIsNameSpacePidl
64 ILIsGUIDPidl
65 ILIsPidl
66 ILFree
67 ILConcatenate
68 ILCopy
69 ILIsRemovableDevice
70 ILRealPathFromPidl
71 ILGetFileSystemPidlData
74 SHIsRestrictedProcess
75 SHGetDocumentsFolder
76 ?DLL_SHGetSpecialFolderPath@@YAHPAUHWND__@@PAGHH@Z
77 SHGetCEString
78 SHUnpackDirID
79 SHIsFileOperationRestrictedEx
80 SHCanonicalizePath
81 ?PathIsRestrictedEx@@YAHPBGH@Z
82 SHCenterWindow
83 PathFindRootDevice

View File

@ -0,0 +1,83 @@
1 InitCommonControls
2 InitCommonControlsEx
3 CommandBar_Create
4 CommandBar_Show
5 CommandBar_AddBitmap
6 CommandBar_InsertComboBox
7 CommandBar_InsertControl
8 CommandBar_InsertMenubar
9 CommandBar_GetMenu
10 CommandBar_AddAdornments
11 CommandBar_GetItemWindow
12 CommandBar_Height
13 IsCommandBarMessage
14 CreateUpDownControl
15 ?CreateToolbar@@YAPAUHWND__@@PAU1@KIHPAUHINSTANCE__@@IPBU_TBBUTTON@@H@Z
16 CreateToolbarEx
17 CreateStatusWindowW
18 PropertySheetW
19 CreatePropertySheetPageW
20 DestroyPropertySheetPage
21 ?DrawStatusTextW@@YAXPAUHDC__@@PBUtagRECT@@PBGI@Z
22 InvertRect
23 ?DSA_Create@@YAPAU_DSA@@HH@Z
24 ?DSA_Destroy@@YAHPAU_DSA@@@Z
25 ?DSA_GetItem@@YAHPAU_DSA@@HPAX@Z
26 ?DSA_GetItemPtr@@YAPAXPAU_DSA@@H@Z
27 ?DSA_InsertItem@@YAHPAU_DSA@@HPAX@Z
28 ?DSA_SetItem@@YAHPAU_DSA@@HPAX@Z
29 ?DSA_DeleteItem@@YAHPAU_DSA@@H@Z
30 ?DSA_DeleteAllItems@@YAHPAU_DSA@@@Z
31 ?DPA_Destroy@@YAHPAU_DPA@@@Z
32 ?DPA_GetPtr@@YAPAXPAU_DPA@@H@Z
33 Str_SetPtrW
34 StrToIntW
35 CenterWindow
36 CommandBands_Create
37 CommandBands_AddBands
38 CommandBands_GetCommandBar
39 CommandBands_AddAdornments
40 CommandBands_Show
41 CommandBands_GetRestoreInformation
42 CommandBar_InsertMenubarEx
43 CommandBar_DrawMenuBar
44 CommandBar_AlignAdornments
45 ?DSA_Search@@YAHPAU_DSA@@PAXHP6AH11J@ZJI@Z
46 ?DSA_Clone@@YAPAU_DSA@@PAU1@0@Z
47 ?DSA_DestroyCallback@@YAXPAU_DSA@@P6AHPAX1@Z1@Z
48 ?DSA_EnumCallback@@YAXPAU_DSA@@P6AHPAX1@Z1@Z
49 DoReaderMode
50 ?DPA_Create@@YAPAU_DPA@@H@Z
51 ?DPA_InsertPtr@@YAHPAU_DPA@@HPAX@Z
52 ?DPA_Sort@@YAHPAU_DPA@@P6AHPAX1J@ZJ@Z
53 ?DPA_SetPtr@@YAHPAU_DPA@@HPAX@Z
54 ?DPA_Grow@@YAHPAU_DPA@@H@Z
55 IsCapEditAvailable
56 ?DPA_DestroyCallback@@YAXPAU_DPA@@P6AHPAX1@Z1@Z
57 ?DSA_Sort@@YAHPAU_DSA@@P6AHPAX1J@ZJ@Z
58 ?DSA_SetRange@@YAHPAU_DSA@@HHPAX@Z
59 ?DPA_Search@@YAHPAU_DPA@@PAXHP6AH11J@ZJI@Z
60 ?DPA_DeletePtr@@YAPAXPAU_DPA@@H@Z
61 ?DPA_DeleteAllPtrs@@YAHPAU_DPA@@@Z
62 ?DPA_GetPtrIndex@@YAHPAU_DPA@@PAX@Z
63 CreateMRUListA
64 CreateMRUListW
65 FreeMRUList
66 AddMRUStringA
67 AddMRUStringW
68 DelMRUString
69 FindMRUStringA
70 FindMRUStringW
71 EnumMRUListA
72 EnumMRUListW
73 AddMRUData
74 FindMRUData
75 PopulateComboWithMRU
76 PopulateMenuWithMRU
77 SHGetSysColor
78 SHGetSystemMetrics
79 SHDrawGradient
80 SHCreateDefaultGradient
81 SHDrawText
82 SHSetSysColors
83 SHSetSystemMetrics

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1 @@
1 InitHTMLControl

View File

@ -0,0 +1,4 @@
1 DecompressImageIndirect
2 GetHalftonePalette
3 Get332Palette
4 GetTransparentColor

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,7 @@
110 IsConvertINetStringAvailable
111 ConvertINetString
112 ConvertINetUnicodeToMultiByte
113 ConvertINetMultiByteToUnicode
114 ?ConvertINetReset@@YAJXZ
121 LcidToRfc1766W
123 Rfc1766ToLcidW

View File

@ -0,0 +1,67 @@
1 MailError
2 MailErrorMsg
3 MailOpen
4 MailOpenNotify
5 MailPutFolder
6 MailGetFolderName
7 MailGetFolderId
8 MailPut
9 MailPutAttachment
10 MailGet
11 MailGetAttachment
12 MailRequestAttachment
13 MailGetSvcId
14 MailFirst
15 MailNext
16 MailUpdate
17 MailDelete
18 MailDeleteAttachment
19 MailFree
20 MailClose
21 MailHeaderLen
22 MailLocalAttachmentLen
23 MailGetField
24 MailSetField
25 MailSetAttachmentOptions
26 MailRegOpenKeyExW
27 MailRegEnumKeyExW
28 MailRegCloseKey
29 MailSetSort
30 MailGetSort
31 ?MailGetHeadRecordOid@@YAHPAXPAK@Z
32 ?MailSetMessageId@@YAHPAXK@Z
33 ?MailCheckFolder@@YAHKK@Z
34 ?MailGetFolderCounts@@YAHKPAK000@Z
35 MailPutFolderEx
36 MailGetFolderNameEx
37 MailGetFolderIdEx
38 MailPutEx
39 MailGetEx
40 MailGetSvcIdEx
41 MailFirstEx
42 MailNextEx
43 MailUpdateEx
44 MailGetFirstSubFolder
45 MailGetNextSubFolder
46 MailFreeIterator
47 MailGetParent
48 MailPutFolderInfo
49 MailGetFolderInfo
50 MailFreeFolderInfo
51 MailGetSpecialFolderId
52 MailGetFolderIdFromSvcId
53 ?MailFindObjects@@YAHPAU_CEGUID@@KPAKPAPAKPAH3I@Z
54 MailOpenNotifyEx
55 MailFreeNotification
56 MailReadNonIPMProperties
57 MailWriteNonIPMProperties
211 ?MailPrMoveAttachments@@YAHPAXHPAG1P6AXXZ@Z
212 ?MailPrCreateNewAttDirectoryInRAM@@YAHXZ
213 ?MailPrCardHasOurAttachments@@YAHPAG@Z
214 ?MailPrGetStoresOnCard@@YAHPAGPAXH@Z
215 ?MailPrGetStoreSize@@YAHPAK@Z
216 ?MailPrOpenDatabase@@YAPAXKKK@Z
217 MailPrEnumInstalledCards
218 ?MailPrGetDBInfo@@YAHKPAU_CEOIDINFO@@@Z
219 ?MailPrEnumStorageCards@@YAXP6AHPAGKPAX@Z1@Z
220 ?MailPrLocateCardWithOurAttachments@@YAHXZ

View File

@ -0,0 +1,44 @@
1 Proj_Enum
2 Proj_Free
3 Proj_FillCB
4 Proj_CenterWindow
5 EnumProjects
6 EnumProjectsFiles
7 FindFirstFlashCard
8 FindNextFlashCard
9 FindFirstProjectFile
10 FindNextProjectFile
11 Options_ColumnsDlgDialogProc
12 Options_ColumnsPSDialogProc
13 Proj_GetDllData
14 FileOpen_Run
15 File_IsValid
16 File_FormatTime
17 File_FormatSize
18 Format_AddCommas
19 GetMyDocumentFolder
20 Proj_PositionSip
21 EnumProjectsEx
22 EnumProjectsFilesEx
23 PA_SetDataPathname
24 PA_SetDataFD
25 PA_SetDataRaw
26 PA_GetPath
27 PA_GetProj
28 PA_GetFile
29 PA_GetLocation
30 PA_GetFileSize
31 PA_GetFileWriteTime
32 PA_DeleteFile
33 PathToProjectName
34 Proj_CompactFlashPresent
35 Proj_CompactFlashReady
36 GetRootPath
37 GetOutlookSyncFolder
38 GetSpecialFolder
39 PathContainsMyDocuments
40 AddStoragesToCombo
41 PathToProjectNameEx
42 PA_GetPathType
43 File_GetHeader
44 File_FormatSeconds

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,10 @@
1 PhoneOpenCallLog
2 PhoneGetCallLogEntry
3 PhoneCloseCallLog
4 PhoneSeekCallLog
5 PhoneMakeCall
6 PhoneAddSpeedDial
7 PhoneShowCallLog
8 PhoneSendDTMFStart
9 PhoneSendDTMFStop
10 PhoneIsEmergencyNumber

View File

@ -0,0 +1,90 @@
5 ?GetOidFromRef@@YAJPBUItemRef@@PAK@Z
6 ShowCallHistorySummaryCard
7 ShowCallHistoryByCallerCard
8 SetContactType
9 IsSimContact
10 FindMatchingContact
11 GetItemIndexFromOid
12 ChooseContact
13 ShowContactSummaryCard
14 FixEmptyNameFields
15 GetCachedProperties
16 ShowAttendeesDialog
17 ?SingleNumberSim@@YAHXZ
18 NewContactHelper
23 ?GetTypedItem@@YA_NPAUIDispatch@@PAHPAPAU1@@Z
26 ?ITask_GetRecurrencePattern@@YAJPAUITask@@PAPAUIRecurrencePattern@@@Z
28 ?IAppointment_get_Recipients@@YAJPAUIAppointment@@PAPAUIRecipients@@@Z
29 ?IRecipient_get_Address@@YAJPAUIRecipient@@PAPAG@Z
30 ?IRecipient_get_Name@@YAJPAUIRecipient@@PAPAG@Z
31 ?IRecipient_put_Address@@YAJPAUIRecipient@@PBG@Z
32 ?IRecipients_Add@@YAJPAUIRecipients@@PBGPAPAUIRecipient2@@@Z
33 ?IItem_show_Dialog@@YAJPAUIDispatch@@@Z
35 ?IItem_get_DatePropertyFromPropId@@YAJPAUIPOutlookApp2@@PAUIDispatch@@KPAK2@Z
36 ?IItem_put_DatePropertyFromPropId@@YAJPAUIPOutlookApp2@@PAUIDispatch@@KKK@Z
37 ?PocketOutlook_IsFailure@@YAHJ@Z
38 ?PocketOutlook_ReleaseCOMPtr@@YAKPAUIUnknown@@@Z
39 ?IItem_get_StringPropertyFromPropId@@YAJPAUIPOutlookApp2@@PAUIDispatch@@KPAPAXPAPAG@Z
40 ?IPOutlookItemCollection_GetIndexFromOid@@YAJPAUIPOutlookItemCollection@@KPAK@Z
41 ?IItem_put_StringPropertyFromPropId@@YAJPAUIPOutlookApp2@@PAUIDispatch@@KPBG@Z
42 ?GetItemType@@YA_NPAUIDispatch@@PAH@Z
43 ?IAppointment_Cancel@@YAJPAUIAppointment@@@Z
44 ?IAppointment_ClearRecurrencePattern@@YAJPAUIAppointment@@@Z
46 ?IItem_get_Int4PropertyFromPropId@@YAJPAUIPOutlookApp2@@PAUIDispatch@@KPAJ@Z
47 ?IItem_put_Int4PropertyFromPropId@@YAJPAUIPOutlookApp2@@PAUIDispatch@@KJ@Z
48 ?IItem_get_BoolPropertyFromPropId@@YAJPAUIPOutlookApp2@@PAUIDispatch@@KPAF@Z
49 ?IItem_put_BoolPropertyFromPropId@@YAJPAUIPOutlookApp2@@PAUIDispatch@@KF@Z
50 ?IItem_Copy@@YAJPAUIDispatch@@PAPAUIItem@@@Z
51 ?IItem_Delete@@YAJPAUIDispatch@@@Z
52 ?IItem_Save@@YAJPAUIDispatch@@@Z
53 ?IItem_get_Oid@@YAJPAUIDispatch@@PAJ@Z
54 ?IContact_get_Picture@@YAJPAUIDispatch@@PAPADPAH@Z
55 ?IContact_put_Picture@@YAJPAUIDispatch@@PBDH@Z
56 ?IContact_release_Picture_buffer@@YAJPAPAD@Z
57 PIMStoreFreeModules
60 ?IFolder_get_Items@@YAJPAUIFolder@@PAPAUIPOutlookItemCollection@@@Z
61 ?IRecurrencePattern_GetOccurrence@@YAJPAUIRecurrencePattern@@PANPAPAUIAppointment@@@Z
62 ?IPOutlookApp_SysFreeString@@YAJPAUIPOutlookApp@@PAG@Z
63 ?IPOutlookItemCollection_Add@@YAJPAUIPOutlookItemCollection@@PAPAUIDispatch@@@Z
64 ?IPOutlookItemCollection_Find@@YAJPAUIPOutlookItemCollection@@PBGPAPAUIDispatch@@@Z
65 ?IPOutlookItemCollection_FindNext@@YAJPAUIPOutlookItemCollection@@PAPAUIDispatch@@@Z
66 ?IPOutlookItemCollection_Item@@YAJPAUIPOutlookItemCollection@@HPAPAUIDispatch@@@Z
67 ?IPOutlookItemCollection_Remove@@YAJPAUIPOutlookItemCollection@@H@Z
68 ?IPOutlookItemCollection_Restrict@@YAJPAUIPOutlookItemCollection@@PBGPAPAU1@@Z
69 ?IPOutlookItemCollection_Sort@@YAJPAUIPOutlookItemCollection@@PBGF@Z
70 ?IPOutlookItemCollection_get_Count@@YAJPAUIPOutlookItemCollection@@PAH@Z
72 ?IPOutlookApp_CreateAppointment@@YAJPAUIPOutlookApp@@PAPAUIAppointment@@@Z
73 ?IAppointment_GetRecurrencePattern@@YAJPAUIAppointment@@PAPAUIRecurrencePattern@@@Z
75 ?IAppointment_Send@@YAJPAUIAppointment@@@Z
78 ?IPOutlookApp_Create@@YAJPAPAUIPOutlookApp@@@Z
79 ?IPOutlookApp_CreateContact@@YAJPAUIPOutlookApp@@PAPAUIContact@@@Z
80 ?IPOutlookApp_CreateTask@@YAJPAUIPOutlookApp@@PAPAUITask@@@Z
81 ?IPOutlookApp_GetDefaultFolder@@YAJPAUIPOutlookApp@@HPAPAUIFolder@@@Z
82 ?IPOutlookApp_GetItemFromOid@@YAJPAUIPOutlookApp@@JPAPAUIDispatch@@@Z
83 ?IPOutlookApp_HeapFree@@YAHPAU_CEPROPVAL@@@Z
84 ?IPOutlookApp_Logoff@@YAJPAUIPOutlookApp@@@Z
85 ?IPOutlookApp_Logon@@YAJPAUIPOutlookApp@@J@Z
86 ?IRecipients_Item@@YAJPAUIRecipients@@HPAPAUIRecipient2@@@Z
87 ?IRecipients_Remove@@YAJPAUIRecipients@@H@Z
88 ?IRecipients_get_Count@@YAJPAUIRecipients@@PAH@Z
89 ?ITask_SkipRecurrence@@YAJPAUITask@@@Z
91 ?ITask_ClearRecurrencePattern@@YAJPAUITask@@@Z
92 ?CheckPropertyExists@@YAJPAUIPOutlookApp2@@PBGPAH@Z
93 ?AddCustomProperty@@YAJPAUIPOutlookApp2@@PBGHHPAH@Z
94 ?IItem_put_Int16PropertyFromPropId@@YAJPAUIPOutlookApp2@@PAUIDispatch@@KF@Z
95 ?IItem_put_UInt32PropertyFromPropId@@YAJPAUIPOutlookApp2@@PAUIDispatch@@KK@Z
96 ?IItem_put_UInt16PropertyFromPropId@@YAJPAUIPOutlookApp2@@PAUIDispatch@@KG@Z
97 ?IItem_put_DoublePropertyFromPropId@@YAJPAUIPOutlookApp2@@PAUIDispatch@@KPAN@Z
98 ?IItem_put_BlobPropertyFromPropId@@YAJPAUIPOutlookApp2@@PAUIDispatch@@KHPAE@Z
99 ?GetCustomProperty@@YAJPAUIPOutlookApp2@@PAUIDispatch@@KPAPAX2@Z
100 ?GetBulkRead@@YAJPAUIPOutlookApp2@@PAUIDispatch@@PAPAXPAK2G@Z
101 ?IRecipient2_get_Type@@YAJPAUIRecipient2@@PAW4OlRecipientType@@@Z
102 ?IRecipient2_put_Type@@YAJPAUIRecipient2@@W4OlRecipientType@@@Z
103 ?IRecipient2_get_Status@@YAJPAUIRecipient2@@PAW4OlRecipientStatus@@@Z
104 ?IRecipient2_put_Status@@YAJPAUIRecipient2@@W4OlRecipientStatus@@@Z
105 ?LocalFileTimeToUTCFileTime@@YAJKKPAK0@Z
106 ?UTCFileTimeToLocalFileTime@@YAJKKPAK0@Z
107 ?PhonebookImportFromSim@@YAJPAUIPOutlookApp2@@PAXK@Z
108 ?PhonebookSimEntryChanged@@YAJPAUIPOutlookApp2@@PAXKH@Z
109 GetContactsWithoutSIMRestriction
110 ?PhonebookPurgeSimContactsFromPoom@@YAJPAUIPOutlookApp2@@@Z

View File

@ -0,0 +1,2 @@
1 ?PndtBus_GetCmd@@YAJEKPAUtagCmdMapping@@@Z
2 ?PndtBus_GetAppInfoFromAppID@@YAJEPAG00@Z

View File

@ -0,0 +1,7 @@
1 PushRouter_Close
2 PushRouter_GetMessage
3 PushRouter_Open
4 PushRouter_RegisterClient
6 PushRouter_SubmitPush
7 PushRouter_UnRegisterClient
8 PushRouter_FreeMessage

View File

@ -0,0 +1,132 @@
1 RIL_Initialize
2 RIL_InitializeEmergency
3 RIL_Deinitialize
4 RIL_EnableNotifications
5 RIL_DisableNotifications
6 RIL_GetSerialPortHandle
7 RIL_GetSerialPortStatistics
8 RIL_GetSubscriberNumbers
9 RIL_GetOperatorList
10 RIL_GetPreferredOperatorList
11 RIL_AddPreferredOperator
12 RIL_RemovePreferredOperator
13 RIL_GetCurrentOperator
14 RIL_RegisterOnNetwork
15 RIL_UnregisterFromNetwork
16 RIL_GetRegistrationStatus
18 RIL_GetCallerIdSettings
19 RIL_SetCallerIdStatus
20 RIL_GetHideIdSettings
21 RIL_SetHideIdStatus
22 RIL_GetDialedIdSettings
23 RIL_SetDialedIdStatus
24 RIL_GetClosedGroupSettings
25 RIL_SetClosedGroupSettings
26 RIL_GetCallForwardingSettings
27 RIL_AddCallForwarding
28 RIL_RemoveCallForwarding
29 RIL_SetCallForwardingStatus
30 RIL_GetCallWaitingSettings
31 RIL_SetCallWaitingStatus
32 RIL_SendSupServiceData
33 RIL_CancelSupServiceDataSession
34 RIL_Dial
35 RIL_Answer
36 RIL_Hangup
37 RIL_SendDTMF
38 RIL_SetDTMFMonitoring
41 RIL_GetCallList
42 RIL_ManageCalls
43 RIL_TransferCall
44 RIL_GetLineStatus
45 RIL_GetAudioGain
46 RIL_SetAudioGain
47 RIL_GetAudioDevices
48 RIL_SetAudioDevices
49 RIL_GetAudioMuting
50 RIL_SetAudioMuting
51 RIL_GetHSCSDOptions
52 RIL_SetHSCSDOptions
53 RIL_GetHSCSDCallSettings
54 RIL_GetDataCompression
55 RIL_SetDataCompression
56 RIL_GetErrorCorrection
57 RIL_SetErrorCorrection
58 RIL_GetBearerServiceOptions
59 RIL_SetBearerServiceOptions
60 RIL_GetRLPOptions
61 RIL_SetRLPOptions
62 RIL_GetMsgServiceOptions
63 RIL_SetMsgServiceOptions
64 RIL_GetMsgConfig
65 RIL_SetMsgConfig
69 RIL_ReadMsg
70 RIL_DeleteMsg
71 RIL_WriteMsg
72 RIL_SendMsg
73 RIL_SendStoredMsg
74 RIL_SendMsgAcknowledgement
75 RIL_GetUserIdentity
76 RIL_GetPhoneLockedState
77 RIL_UnlockPhone
78 RIL_GetLockingStatus
79 RIL_SetLockingStatus
80 RIL_ChangeLockingPassword
81 RIL_GetCallBarringStatus
82 RIL_SetCallBarringStatus
83 RIL_ChangeCallBarringPassword
84 RIL_GetEquipmentInfo
85 RIL_GetEquipmentState
86 RIL_SetEquipmentState
87 RIL_GetPhonebookOptions
88 RIL_SetPhonebookOptions
89 RIL_ReadPhonebookEntries
90 RIL_WritePhonebookEntry
91 RIL_DeletePhonebookEntry
93 RIL_SendSimCmd
94 RIL_SendRestrictedSimCmd
95 RIL_GetSimRecordStatus
96 RIL_GetSimToolkitProfile
97 RIL_SetSimToolkitProfile
98 RIL_SendSimToolkitEnvelopeCmd
99 RIL_FetchSimToolkitCmd
100 RIL_SendSimToolkitCmdResponse
101 RIL_TerminateSimToolkitSession
102 RIL_GetCostInfo
103 RIL_SetCostInfo
104 RIL_GetSignalQuality
105 RIL_GetCellTowerInfo
106 RIL_DevSpecific
107 RIL_GetDevCaps
108 RIL_GetHideConnectedIdSettings
109 RIL_SetHideConnectedIdStatus
110 RIL_GetCCBSStatus
111 RIL_ClearCCBSRegistration
112 RIL_GetSystemTime
113 RIL_GetGPRSContextList
114 RIL_SetGPRSContext
115 RIL_DeleteGPRSContext
116 RIL_GetRequestedQualityOfServiceList
117 RIL_SetRequestedQualityOfService
118 RIL_DeleteRequestedQualityOfService
119 RIL_GetMinimumQualityOfServiceList
120 RIL_SetMinimumQualityOfService
121 RIL_DeleteMinimumQualityOfService
122 RIL_SetGPRSAttached
123 RIL_GetGPRSAttached
124 RIL_SetGPRSContextActivated
125 RIL_GetGPRSContextActivatedList
126 RIL_EnterGPRSDataMode
127 RIL_GetGPRSAddress
128 RIL_GPRSAnswer
129 RIL_GetGPRSRegistrationStatus
130 RIL_GetGPRSClass
131 RIL_SetGPRSClass
132 RIL_GetMOSMSService
133 RIL_SetMOSMSService
134 RIL_GetRadioPresence
135 RIL_GetDriverVersion
136 RIL_GetCellBroadcastMsgConfig
137 RIL_SetCellBroadcastMsgConfig
138 RIL_GetCurrentAddressId
139 RIL_SetCurrentAddressId

View File

@ -0,0 +1 @@
20 SmsReceiveAllMessagesFromSIM

View File

@ -0,0 +1,6 @@
1 SzNextName
2 SzNormalizeEmailList
3 CharSetToCodePage
4 GetCodePageDescription
5 ConformToRFC1522
6 EncodeFileName

View File

@ -0,0 +1,10 @@
10 ReadFromURLFile
11 ReadFromURLFileEx
12 WriteURLFile
13 ?PieLoadRegistrySettings@@YAXXZ
14 ?IsOnline@@YAHXZ
15 ?IsNetcardInstalled@@YAHXZ
16 ?StartUp@@YAJXZ
17 ?ShutDown@@YAJXZ
19 ?PieLoadCSSSettings@@YAHXZ
20 WriteURLFileEx

View File

@ -0,0 +1 @@
112 IsProfilesEnabled

View File

@ -0,0 +1 @@
10 AddPhoneBookEntry

View File

@ -0,0 +1,14 @@
12 WSPStartUp
13 WSPShutDown
14 WSPOpenUrl
15 WSPGetData
16 WSPSetGateway
17 WSPFreeBuffer
18 WBXMLToTextXML
19 WSPGetMIMEType
20 WSPDecodeHeaders
21 WSPSetUserAgent
22 WSPAbortTransaction
24 WBXMLToTextXMLGeneric
25 WSPSetUserProfile
26 WSPWaitForWapStartup

View File

@ -0,0 +1 @@
1 Bus1394RegisterPortDriver

View File

@ -0,0 +1 @@
1 ServiceMain

View File

@ -0,0 +1 @@
1 InitHelperDll

View File

@ -0,0 +1,8 @@
1 EditAuditInfo
2 EditOwnerInfo
3 EditPermissionInfo
4 _DllMain@12
5 FMExtensionProcW
6 SedDiscretionaryAclEditor
7 SedSystemAclEditor
8 SedTakeOwnership

View File

@ -0,0 +1,4 @@
1 CreateSecurityPage
2 EditSecurity
3 EditSecurityAdvanced
16 IID_ISecurityInformation

View File

@ -0,0 +1,31 @@
3 ADsGetObject
4 ADsBuildEnumerator
5 ADsFreeEnumerator
6 ADsEnumerateNext
7 ADsBuildVarArrayStr
8 ADsBuildVarArrayInt
9 ADsOpenObject
10 DllCanUnloadNow
11 DllGetClassObject
12 ADsSetLastError
13 ADsGetLastError
14 AllocADsMem
15 FreeADsMem
16 ReallocADsMem
17 AllocADsStr
18 FreeADsStr
19 ReallocADsStr
20 ADsEncodeBinaryData
21 PropVariantToAdsType
22 AdsTypeToPropVariant
23 AdsFreeAdsValues
24 ADsDecodeBinaryData
25 AdsTypeToPropVariant2
26 PropVariantToAdsType2
27 ConvertSecDescriptorToVariant
28 ConvertSecurityDescriptorToSecDes
29 BinarySDToSecurityDescriptor
30 SecurityDescriptorToBinarySD
31 ConvertTrusteeToSid
32 DllRegisterServer
33 DllUnregisterServer

View File

@ -0,0 +1,5 @@
3 GetProxyDllInfo
4 DllCanUnloadNow
5 DllGetClassObject
6 DllRegisterServer
7 DllUnregisterServer

View File

@ -0,0 +1,19 @@
12 DllMain
13 IsAdmDirty
14 ResetAdmDirtyFlag
15 AdmClose
16 AdmFinishedA
17 AdmFinishedW
18 AdmInitA
19 AdmInitW
20 AdmResetA
21 AdmResetW
22 AdmSaveData
23 CheckDuplicateKeysA
24 CheckDuplicateKeysW
25 CreateAdmUiA
26 CreateAdmUiW
27 GetAdmCategoriesA
28 GetAdmCategoriesW
29 GetFontInfoA
30 GetFontInfoW

View File

@ -0,0 +1,40 @@
1 CreateSocketPort
2 DeleteSocketPort
3 FwBindFwInterfaceToAdapter
4 FwConnectionRequestFailed
5 FwCreateInterface
6 FwDeleteInterface
7 FwDisableFwInterface
8 FwEnableFwInterface
9 FwGetInterface
10 FwGetNotificationResult
11 FwGetStaticNetbiosNames
12 FwIsStarted
13 FwNotifyConnectionRequest
14 FwSetInterface
15 FwSetStaticNetbiosNames
16 FwStart
17 FwStop
18 FwUnbindFwInterfaceFromAdapter
19 FwUpdateConfig
20 FwUpdateRouteTable
21 GetAdapterNameFromMacAddrW
22 GetAdapterNameW
23 GetFilters
24 IpxAdjustIoCompletionParams
25 IpxCreateAdapterConfigurationPort
26 IpxDeleteAdapterConfigurationPort
27 IpxDoesRouteExist
28 IpxGetAdapterConfig
29 IpxGetAdapterList
30 IpxGetOverlappedResult
31 IpxGetQueuedAdapterConfigurationStatus
32 IpxGetQueuedCompletionStatus
33 IpxPostQueuedCompletionStatus
34 IpxRecvPacket
35 IpxSendPacket
36 IpxWanCreateAdapterConfigurationPort
37 IpxWanQueryInactivityTimer
38 IpxWanSetAdapterConfiguration
39 ServiceMain
40 SetFilters

View File

@ -0,0 +1,2 @@
1 DllCanUnloadNow
2 DllGetClassObject

View File

@ -0,0 +1,173 @@
1 ??0CLexer@@QAE@XZ
2 ??1CLexer@@QAE@XZ
3 ADsAbandonSearch
4 ADsCloseSearchHandle
5 ADsWriteClassDefinition
6 ADsWriteClassDefinition
7 ADsCreateDSObject
8 ADsCreateDSObjectExt
9 ADsDeleteClassDefinition
10 ADsDeleteClassDefinition
11 ADsDeleteDSObject
12 ADsEnumAttributes
13 ADsEnumClasses
14 ADsExecuteSearch
15 ADsFreeColumn
16 ADsGetColumn
17 ADsGetFirstRow
18 ADsGetNextColumnName
19 ADsGetNextRow
20 ADsGetObjectAttributes
21 ADsGetPreviousRow
22 ADsHelperGetCurrentRowMessage
23 ADsObject
24 ADsSetObjectAttributes
25 ADsSetSearchPreference
26 ADsWriteClassDefinition
27 ADsWriteClassDefinition
28 AdsTypeToLdapTypeCopyConstruct
29 AdsTypeToLdapTypeCopyDNWithBinary
30 AdsTypeToLdapTypeCopyDNWithString
31 AdsTypeToLdapTypeCopyGeneralizedTime
32 AdsTypeToLdapTypeCopyTime
33 BerBvFree
34 BerEncodingQuotaControl
35 BuildADsParentPath
36 BuildADsParentPathFromObjectInfo2
37 BuildADsParentPathFromObjectInfo
38 BuildADsPathFromLDAPPath2
39 BuildADsPathFromLDAPPath
40 BuildADsPathFromParent
41 BuildLDAPPathFromADsPath2
42 BuildLDAPPathFromADsPath
43 ChangeSeparator
44 Component
45 ConvertSidToString
46 ConvertSidToU2Trustee
47 ConvertU2TrusteeToSid
48 FindEntryInSearchTable
49 FindSearchTableIndex
50 FreeObjectInfo
51 GetDefaultServer
52 GetDisplayName
53 GetDomainDNSNameForDomain
54 GetLDAPTypeName
55 ?GetNextToken@CLexer@@QAEJPAGPAK@Z
56 GetSyntaxOfAttribute
57 InitObjectInfo
58 ?InitializePath@CLexer@@QAEJPAG@Z
59 IsGCNamespace
60 LdapAddExtS
61 LdapAddS
62 LdapAttributeFree
63 LdapCacheAddRef
64 LdapCloseObject
65 LdapCompareExt
66 LdapControlFree
67 LdapControlsFree
68 LdapCountEntries
69 LdapCrackUserDNtoNTLMUser2
70 LdapCrackUserDNtoNTLMUser
71 LdapCreatePageControl
72 LdapDeleteExtS
73 LdapDeleteS
74 LdapFirstAttribute
75 LdapFirstEntry
76 LdapGetDn
77 LdapGetNextPageS
78 LdapGetSchemaObjectCount
79 LdapGetSubSchemaSubEntryPath
80 LdapGetSyntaxIdOfAttribute
81 LdapGetSyntaxOfAttributeOnServer
82 LdapGetValues
83 LdapGetValuesLen
84 LdapInitializeSearchPreferences
85 LdapIsClassNameValidOnServer
86 LdapMakeSchemaCacheObsolete
87 LdapMemFree
88 LdapModDnS
89 LdapModifyExtS
90 LdapModifyS
91 LdapMsgFree
92 LdapNextAttribute
93 LdapNextEntry
94 LdapOpenObject2
95 LdapOpenObject
96 LdapParsePageControl
97 LdapParseResult
98 LdapReadAttribute2
99 LdapReadAttribute
100 LdapReadAttributeFast
101 LdapRenameExtS
102 LdapResult
103 LdapSearch
104 LdapSearchAbandonPage
105 LdapSearchExtS
106 LdapSearchInitPage
107 LdapSearchS
108 LdapSearchST
109 LdapTypeBinaryToString
110 LdapTypeCopyConstruct
111 LdapTypeFreeLdapModList
112 LdapTypeFreeLdapModObject
113 LdapTypeFreeLdapObjects
114 LdapTypeToAdsTypeDNWithBinary
115 LdapTypeToAdsTypeDNWithString
116 LdapTypeToAdsTypeGeneralizedTime
117 LdapTypeToAdsTypeUTCTime
118 LdapValueFree
119 LdapValueFreeLen
120 LdapcKeepHandleAround
121 LdapcSetStickyServer
122 PathName
123 ReadPagingSupportedAttr
124 ReadSecurityDescriptorControlType
125 ReadServerSupportsIsADControl
126 SchemaAddRef
127 SchemaClose
128 SchemaGetClassInfo
129 SchemaGetClassInfoByIndex
130 SchemaGetObjectCount
131 SchemaGetPropertyInfo
132 SchemaGetPropertyInfoByIndex
133 SchemaGetStringsFromStringTable
134 SchemaGetSyntaxOfAttribute
135 SchemaIsClassAContainer
136 SchemaOpen
137 ?SetAtDisabler@CLexer@@QAEXH@Z
138 ?SetExclaimnationDisabler@CLexer@@QAEXH@Z
139 ?SetFSlashDisabler@CLexer@@QAEXH@Z
140 SortAndRemoveDuplicateOIDs
141 UnMarshallLDAPToLDAPSynID
142 intcmp
143 ADSIAbandonSearch
144 ADSICloseDSObject
145 ADSICloseSearchHandle
146 ADSICreateDSObject
147 ADSIDeleteDSObject
148 ADSIExecuteSearch
149 ADSIFreeColumn
150 ADSIGetColumn
151 ADSIGetFirstRow
152 ADSIGetNextColumnName
153 ADSIGetNextRow
154 ADSIGetObjectAttributes
155 ADSIGetPreviousRow
156 ADSIModifyRdn
157 ADSIOpenDSObject
158 ADSISetObjectAttributes
159 ADSISetSearchPreference
160 ADsDecodeBinaryData
161 ADsEncodeBinaryData
162 ADsGetLastError
163 ADsSetLastError
164 AdsTypeFreeAdsObjects
165 AllocADsMem
166 AllocADsStr
167 FreeADsMem
168 FreeADsStr
169 LdapTypeToAdsTypeCopyConstruct
170 MapADSTypeToLDAPType
171 MapLDAPTypeToADSType
172 ReallocADsMem
173 ReallocADsStr

View File

@ -0,0 +1,2 @@
1 DllCanUnloadNow
2 DllGetClassObject

View File

@ -0,0 +1,2 @@
1 DllCanUnloadNow
2 DllGetClassObject

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,32 @@
1 AddDelBackupEntry
2 AdvInstallFile
3 CloseINFEngine
4 DelNode
5 DelNodeRunDLL32
6 DllMain
7 DoInfInstall
8 ExecuteCab
9 ExtractFiles
10 FileSaveMarkNotExist
11 FileSaveRestore
12 FileSaveRestoreOnINF
13 GetVersionFromFile
14 GetVersionFromFileEx
15 IsNTAdmin
16 LaunchINFSection
17 LaunchINFSectionEx
18 NeedReboot
19 NeedRebootInit
20 OpenINFEngine
21 RebootCheckOnInstall
22 RegInstall
23 RegRestoreAll
24 RegSaveRestore
25 RegSaveRestoreOnINF
26 RegisterOCX
27 RunSetupCommand
28 SetPerUserSecValues
29 TranslateInfString
30 TranslateInfStringEx
31 UserInstStubWrapper
32 UserUnInstStubWrapper

View File

@ -0,0 +1 @@
1 ServiceMain

View File

@ -0,0 +1 @@
1 ServiceEntry

View File

@ -0,0 +1,6 @@
1 UPSCancelWait
2 UPSGetState
3 UPSInit
4 UPSStop
5 UPSTurnOff
6 UPSWaitForStateChange

View File

@ -0,0 +1 @@
1 ApiDllEntry

View File

@ -0,0 +1,158 @@
1 AllowPermLayer
2 ApphelpCheckExe
3 ApphelpCheckIME
4 ApphelpCheckInstallShieldPackage
5 ApphelpCheckMsiPackage
6 ApphelpCheckRunApp
7 ApphelpCheckShellObject
8 ApphelpFixMsiPackage
9 ApphelpFixMsiPackageExe
10 ApphelpFreeFileAttributes
11 ApphelpGetFileAttributes
12 ApphelpGetNTVDMInfo
13 ApphelpGetShimDebugLevel
14 ApphelpQueryModuleData
15 ApphelpReleaseExe
16 ApphelpShowDialog
17 ApphelpShowUI
18 ApphelpUpdateCacheEntry
19 GetPermLayers
20 SdbBeginWriteListTag
21 SdbBuildCompatEnvVariables
22 SdbCloseApphelpInformation
23 SdbCloseDatabase
24 SdbCloseDatabaseWrite
25 SdbCloseLocalDatabase
26 SdbCommitIndexes
27 SdbCreateDatabase
28 SdbCreateHelpCenterURL
29 SdbCreateMsiTransformFile
30 SdbDeclareIndex
31 SdbDeletePermLayerKeys
32 SdbEndWriteListTag
33 SdbEnumMsiTransforms
34 SdbEscapeApphelpURL
35 SdbFindCustomActionForPackage
36 SdbFindFirstDWORDIndexedTag
37 SdbFindFirstGUIDIndexedTag
38 SdbFindFirstMsiPackage
39 SdbFindFirstMsiPackage_Str
40 SdbFindFirstNamedTag
41 SdbFindFirstStringIndexedTag
42 SdbFindFirstTag
43 SdbFindFirstTagRef
44 SdbFindMsiPackageByID
45 SdbFindNextDWORDIndexedTag
46 SdbFindNextGUIDIndexedTag
47 SdbFindNextMsiPackage
48 SdbFindNextStringIndexedTag
49 SdbFindNextTag
50 SdbFindNextTagRef
51 SdbFormatAttribute
52 SdbFreeDatabaseInformation
53 SdbFreeFileAttributes
54 SdbFreeFileInfo
55 SdbFreeFlagInfo
56 SdbGUIDFromString
57 SdbGUIDToString
58 SdbGetAppCompatDataSize
59 SdbGetAppPatchDir
60 SdbGetBinaryTagData
61 SdbGetDatabaseGUID
62 SdbGetDatabaseID
63 SdbGetDatabaseInformation
64 SdbGetDatabaseInformationByName
65 SdbGetDatabaseMatch
66 SdbGetDatabaseVersion
67 SdbGetDllPath
68 SdbGetEntryFlags
69 SdbGetFileAttributes
70 SdbGetFileInfo
71 SdbGetFirstChild
72 SdbGetImageType
73 SdbGetIndex
74 SdbGetItemFromItemRef
75 SdbGetLayerName
76 SdbGetLayerTagRef
77 SdbGetLocalPDB
78 SdbGetMatchingExe
79 SdbGetMsiPackageInformation
80 SdbGetNamedLayer
81 SdbGetNextChild
82 SdbGetNthUserSdb
83 SdbGetPDBFromGUID
84 SdbGetPermLayerKeys
85 SdbGetShowDebugInfoOption
86 SdbGetShowDebugInfoOptionValue
87 SdbGetStandardDatabaseGUID
88 SdbGetStringTagPtr
89 SdbGetTagDataSize
90 SdbGetTagFromTagID
91 SdbGrabMatchingInfo
92 SdbGrabMatchingInfoEx
93 SdbInitDatabase
94 SdbInitDatabaseEx
95 SdbIsNullGUID
96 SdbIsTagrefFromLocalDB
97 SdbIsTagrefFromMainDB
98 SdbMakeIndexKeyFromString
99 SdbOpenApphelpDetailsDatabase
100 SdbOpenApphelpDetailsDatabaseSP
101 SdbOpenApphelpInformation
102 SdbOpenApphelpInformationByID
103 SdbOpenDatabase
104 SdbOpenLocalDatabase
105 SdbPackAppCompatData
106 SdbQueryApphelpInformation
107 SdbQueryData
108 SdbQueryDataEx
109 SdbQueryDataExTagID
110 SdbQueryFlagInfo
111 SdbQueryFlagMask
112 SdbReadApphelpData
113 SdbReadApphelpDetailsData
114 SdbReadBYTETag
115 SdbReadBYTETagRef
116 SdbReadBinaryTag
117 SdbReadDWORDTag
118 SdbReadDWORDTagRef
119 SdbReadEntryInformation
120 SdbReadMsiTransformInfo
121 SdbReadPatchBits
122 SdbReadQWORDTag
123 SdbReadQWORDTagRef
124 SdbReadStringTag
125 SdbReadStringTagRef
126 SdbReadWORDTag
127 SdbReadWORDTagRef
128 SdbRegisterDatabase
129 SdbRegisterDatabaseEx
130 SdbReleaseDatabase
131 SdbReleaseMatchingExe
132 SdbResolveDatabase
133 SdbSetApphelpDebugParameters
134 SdbSetEntryFlags
135 SdbSetImageType
136 SdbSetPermLayerKeys
137 SdbShowApphelpDialog
138 SdbStartIndexing
139 SdbStopIndexing
140 SdbTagIDToTagRef
141 SdbTagRefToTagID
142 SdbTagToString
143 SdbUnpackAppCompatData
144 SdbUnregisterDatabase
145 SdbWriteBYTETag
146 SdbWriteBinaryTag
147 SdbWriteBinaryTagFromFile
148 SdbWriteDWORDTag
149 SdbWriteNULLTag
150 SdbWriteQWORDTag
151 SdbWriteStringRefTag
152 SdbWriteStringTag
153 SdbWriteStringTagDirect
154 SdbWriteWORDTag
155 SetPermLayers
156 ShimDbgPrint
157 ShimDumpCache
158 ShimFlushCache

View File

@ -0,0 +1,17 @@
1 CsSetOptions
2 CsCreateClassStore
3 CsEnumApps
4 CsGetAppCategories
5 CsGetClassAccess
6 CsGetClassStore
7 CsGetClassStorePath
8 CsRegisterAppCategory
9 CsServerGetClassStore
10 CsUnregisterAppCategory
11 GenerateGroupPolicy
12 IID_IClassAdmin
13 ProcessGroupPolicyObjectsEx
14 ReleaseAppCategoryInfoList
15 ReleasePackageDetail
16 ReleasePackageInfo
17 ServiceMain

View File

@ -0,0 +1,5 @@
1 DllCanUnloadNow
2 DllGetClassObject
3 DllRegisterServer
4 DllUnregisterServer
5 GenerateScript

View File

@ -0,0 +1,9 @@
1 MySIPRemoveSignedDataMsg
2 MySIPCreateIndirectData
3 MySIPGetSignedDataMsg
4 MySIPPutSignedDataMsg
5 MySIPRemoveSignedDataMsg
6 MySIPVerifyIndirectData
7 _DllMain@12
8 DllRegisterServer
9 DllUnregisterServer

View File

@ -0,0 +1,2 @@
1 DllCanUnloadNow
2 FilterCreateInstance

View File

@ -0,0 +1,3 @@
1 OpenAtkPerformanceData
2 CollectAtkPerformanceData
3 CloseAtkPerformanceData

View File

@ -0,0 +1,51 @@
10 AtlAdvise
11 AtlUnadvise
12 AtlFreeMarshalStream
13 AtlMarshalPtrInProc
14 AtlUnmarshalPtr
15 AtlModuleGetClassObject
16 AtlModuleInit
17 AtlModuleRegisterClassObjects
18 AtlModuleRegisterServer
19 AtlModuleRegisterTypeLib
20 AtlModuleRevokeClassObjects
21 AtlModuleTerm
22 AtlModuleUnregisterServer
23 AtlModuleUpdateRegistryFromResourceD
24 AtlWaitWithMessageLoop
25 AtlSetErrorInfo
26 AtlCreateTargetDC
27 AtlHiMetricToPixel
28 AtlPixelToHiMetric
29 AtlDevModeW2A
30 AtlComPtrAssign
31 AtlComQIPtrAssign
32 AtlInternalQueryInterface
33 DllCanUnloadNow
34 AtlGetVersion
35 AtlAxDialogBoxW
36 AtlAxDialogBoxA
37 AtlAxCreateDialogW
38 AtlAxCreateDialogA
39 AtlAxCreateControl
40 AtlAxCreateControlEx
41 AtlAxAttachControl
42 AtlAxWinInit
43 AtlModuleAddCreateWndData
44 AtlModuleExtractCreateWndData
45 AtlModuleRegisterWndClassInfoW
46 AtlModuleRegisterWndClassInfoA
47 AtlAxGetControl
48 AtlAxGetHost
49 AtlRegisterClassCategoriesHelper
50 AtlIPersistStreamInit_Load
51 AtlIPersistStreamInit_Save
52 AtlIPersistPropertyBag_Load
53 AtlIPersistPropertyBag_Save
54 AtlGetObjectSourceInterface
55 AtlModuleUnRegisterTypeLib
56 AtlModuleLoadTypeLib
57 AtlModuleUnregisterServerEx
58 AtlModuleAddTermFunc
59 AtlSetErrorInfo2
60 AtlIPersistStreamInit_GetSizeMax

View File

@ -0,0 +1,53 @@
10 AtlAdvise
11 AtlUnadvise
12 AtlFreeMarshalStream
13 AtlMarshalPtrInProc
14 AtlUnmarshalPtr
15 AtlComModuleGetClassObject
17 AtlComModuleRegisterClassObjects
18 AtlComModuleRegisterServer
19 AtlRegisterTypeLib
20 AtlComModuleRevokeClassObjects
22 AtlComModuleUnregisterServer
23 AtlUpdateRegistryFromResourceD
24 AtlWaitWithMessageLoop
25 AtlSetErrorInfo
26 AtlCreateTargetDC
27 AtlHiMetricToPixel
28 AtlPixelToHiMetric
29 AtlDevModeW2A
30 AtlComPtrAssign
31 AtlComQIPtrAssign
32 AtlInternalQueryInterface
34 AtlGetVersion
35 AtlAxDialogBoxW
36 AtlAxDialogBoxA
37 AtlAxCreateDialogW
38 AtlAxCreateDialogA
39 AtlAxCreateControl
40 AtlAxCreateControlEx
41 AtlAxAttachControl
42 AtlAxWinInit
43 AtlWinModuleAddCreateWndData
44 AtlWinModuleExtractCreateWndData
45 AtlWinModuleRegisterWndClassInfoW
46 AtlWinModuleRegisterWndClassInfoA
47 AtlAxGetControl
48 AtlAxGetHost
49 AtlRegisterClassCategoriesHelper
50 AtlIPersistStreamInit_Load
51 AtlIPersistStreamInit_Save
52 AtlIPersistPropertyBag_Load
53 AtlIPersistPropertyBag_Save
54 AtlGetObjectSourceInterface
55 AtlUnRegisterTypeLib
56 AtlLoadTypeLib
58 AtlModuleAddTermFunc
59 AtlAxCreateControlLic
60 AtlAxCreateControlLicEx
61 AtlCreateRegistrar
62 AtlWinModuleRegisterClassExW
63 AtlWinModuleRegisterClassExA
64 AtlCallTermFunc
65 AtlWinModuleInit
66 AtlWinModuleTerm

View File

@ -0,0 +1,53 @@
10 AtlAdvise
11 AtlUnadvise
12 AtlFreeMarshalStream
13 AtlMarshalPtrInProc
14 AtlUnmarshalPtr
15 AtlComModuleGetClassObject
17 AtlComModuleRegisterClassObjects
18 AtlComModuleRegisterServer
19 AtlRegisterTypeLib
20 AtlComModuleRevokeClassObjects
22 AtlComModuleUnregisterServer
23 AtlUpdateRegistryFromResourceD
24 AtlWaitWithMessageLoop
25 AtlSetErrorInfo
26 AtlCreateTargetDC
27 AtlHiMetricToPixel
28 AtlPixelToHiMetric
29 AtlDevModeW2A
30 AtlComPtrAssign
31 AtlComQIPtrAssign
32 AtlInternalQueryInterface
34 AtlGetVersion
35 AtlAxDialogBoxW
36 AtlAxDialogBoxA
37 AtlAxCreateDialogW
38 AtlAxCreateDialogA
39 AtlAxCreateControl
40 AtlAxCreateControlEx
41 AtlAxAttachControl
42 AtlAxWinInit
43 AtlWinModuleAddCreateWndData
44 AtlWinModuleExtractCreateWndData
45 AtlWinModuleRegisterWndClassInfoW
46 AtlWinModuleRegisterWndClassInfoA
47 AtlAxGetControl
48 AtlAxGetHost
49 AtlRegisterClassCategoriesHelper
50 AtlIPersistStreamInit_Load
51 AtlIPersistStreamInit_Save
52 AtlIPersistPropertyBag_Load
53 AtlIPersistPropertyBag_Save
54 AtlGetObjectSourceInterface
55 AtlUnRegisterTypeLib
56 AtlLoadTypeLib
58 AtlModuleAddTermFunc
59 AtlAxCreateControlLic
60 AtlAxCreateControlLicEx
61 AtlCreateRegistrar
62 AtlWinModuleRegisterClassExW
63 AtlWinModuleRegisterClassExA
64 AtlCallTermFunc
65 AtlWinModuleInit
66 AtlWinModuleTerm

View File

@ -0,0 +1,4 @@
1 DllCanUnloadNow
2 DllGetClassObject
3 DllRegisterServer
4 DllUnregisterServer

View File

@ -0,0 +1,26 @@
1 _CDefFolderMenu_MergeMenu@16
2 _CIDLData_CreateFromIDArray@16
3 _ConnectToConnectionPoint@24
4 DllCanUnloadNow
5 DllGetClassObject
6 DllRegisterServer
7 DllUnregisterServer
8 _GUIDFromStringW@8
9 _GetUIVersion@0
10 _IUnknown_AtomicRelease@4
11 _IUnknown_GetWindow@8
12 _IUnknown_QueryService@16
13 _IUnknown_Set@8
14 _IUnknown_SetSite@8
15 _IsOS@4
16 _ParseURLW@8
17 _SHUnicodeToAnsi@12
18 _SHCoCreateInstanceAC@20
19 _SHFormatDateTimeW@16
20 _SHGetMenuFromID@8
21 _SHGetObjectCompatFlags@8
22 _SHInvokeCommandOnContextMenu@20
23 _SHInvokeCommandsOnContextMenu@24
24 _SHLoadRegUIStringW@16
25 _SHStringFromGUIDW@12
26 _SHUnicodeToAnsi@12

View File

@ -0,0 +1,2 @@
1 ServiceMain
2 SvchostPushServiceGlobals

View File

@ -0,0 +1,7 @@
1 DriverProc
2 auxMessage
3 midMessage
4 modMessage
5 mxdMessage
6 widMessage
7 wodMessage

View File

@ -0,0 +1,31 @@
1 ___EXPORTEDSTUB
10 NWGETNWADVERSION
3001 NWADOPEN
3002 NWADCLOSE
3003 NWADGETSTATUS
3004 NWADLOGIN
3005 NWADINITLEVELTWOPASSWORD
3006 NWADCHANGEPASSWORD
3007 NWADCHECKACCESS
3008 NWADCHECKLEVELTWOACCESS
3009 NWADGETFLAGS
3010 NWADDISABLE
3011 NWADENABLE
3012 NWADISOBJECTAUDITED
3013 NWADCHANGEOBJECTPROPERTY
3014 NWADREADBITMAP
3015 NWADREADCONFIGHEADER
3016 NWADREADRECORD
3017 NWADOPENRECORDFILE
3018 NWADCLOSERECORDFILE
3019 NWADLOGOUT
3020 NWADRESETFILE
3021 NWADWRITEBITMAP
3022 NWADWRITECONFIGHEADER
3023 NWADCLOSEOLDFILE
3024 NWADDELETEFILE
3025 NWADGETFILELIST
3026 NWADDELETEOLDFILE
3027 NWADSETPASSWORD
3028 NWADRESTARTVOLUMEAUDITING
3029 NWADAPPENDEXTERNALRECORDS

View File

@ -0,0 +1,30 @@
10 NWGetNWADVersion
3001 NWADOpen
3002 NWADClose
3003 NWADGetStatus
3004 NWADLogin
3005 NWADInitLevelTwoPassword
3006 NWADChangePassword
3007 NWADCheckAccess
3008 NWADCheckLevelTwoAccess
3009 NWADGetFlags
3010 NWADDisable
3011 NWADEnable
3012 NWADIsObjectAudited
3013 NWADChangeObjectProperty
3014 NWADReadBitMap
3015 NWADReadConfigHeader
3016 NWADReadRecord
3017 NWADOpenRecordFile
3018 NWADCloseRecordFile
3019 NWADLogout
3020 NWADResetFile
3021 NWADWriteBitMap
3022 NWADWriteConfigHeader
3023 NWADCloseOldFile
3024 NWADDeleteFile
3025 NWADGetFileList
3026 NWADDeleteOldFile
3027 NWADSetPassword
3028 NWADRestartVolumeAuditing
3029 NWADAppendExternalRecords

View File

@ -0,0 +1,41 @@
1 AuthzAccessCheck
2 AuthzAddSidsToContext
3 AuthzCachedAccessCheck
4 AuthzEnumerateSecurityEventSources
5 AuthzFreeAuditEvent
6 AuthzFreeContext
7 AuthzFreeHandle
8 AuthzFreeResourceManager
9 AuthzGetInformationFromContext
10 AuthzInitializeContextFromAuthzContext
11 AuthzInitializeContextFromSid
12 AuthzInitializeContextFromToken
13 AuthzInitializeObjectAccessAuditEvent
14 AuthzInitializeObjectAccessAuditEvent2
15 AuthzInitializeResourceManager
16 AuthzInstallSecurityEventSource
17 AuthzOpenObjectAudit
18 AuthzRegisterSecurityEventSource
19 AuthzReportSecurityEvent
20 AuthzReportSecurityEventFromParams
21 AuthzUninstallSecurityEventSource
22 AuthzUnregisterSecurityEventSource
23 AuthziAllocateAuditParams
24 AuthziFreeAuditEventType
25 AuthziFreeAuditParams
26 AuthziFreeAuditQueue
27 AuthziInitializeAuditEvent
28 AuthziInitializeAuditEventType
29 AuthziInitializeAuditParams
30 AuthziInitializeAuditParamsFromArray
31 AuthziInitializeAuditParamsWithRM
32 AuthziInitializeAuditQueue
33 AuthziInitializeContextFromSid
34 AuthziLogAuditEvent
35 AuthziModifyAuditEvent2
36 AuthziModifyAuditEvent
37 AuthziModifyAuditEventType
38 AuthziModifyAuditQueue
39 AuthziQueryAuditPolicy
40 AuthziSetAuditPolicy
41 AuthziSourceAudit

View File

@ -0,0 +1,7 @@
1 AddEmailToAutoComplete
2 AutoDiscoverAndOpenEmail
3 DllCanUnloadNow
4 DllGetClassObject
5 DllInstall
6 DllRegisterServer
7 DllUnregisterServer

View File

@ -0,0 +1,5 @@
1 WEP
2 CAPCREATECAPTUREWINDOW
3 CAPGETDRIVERDESCRIPTION
4 ___EXPORTEDSTUB
5 CAPWNDPROC

View File

@ -0,0 +1,6 @@
1 AppCleanup
2 capCreateCaptureWindowA
3 capCreateCaptureWindowW
4 capGetDriverDescriptionA
5 capGetDriverDescriptionW
6 videoThunk32

View File

@ -0,0 +1,76 @@
1 AVIBuildFilterA
2 AVIBuildFilterA
3 AVIBuildFilterW
4 AVIClearClipboard
5 AVIStreamAddRef
6 AVIFileCreateStreamW
7 AVIFileCreateStreamA
8 AVIFileCreateStreamW
9 AVIFileEndRecord
10 AVIFileExit
11 AVIFileGetStream
12 AVIFileInfoA
13 AVIFileInfoA
14 AVIFileInfoW
15 AVIFileInit
16 AVIFileOpenA
17 AVIFileOpenA
18 AVIFileOpenW
19 AVIStreamSetFormat
20 AVIStreamRelease
21 AVIStreamReadFormat
22 AVIGetFromClipboard
23 AVIMakeCompressedStream
24 AVIMakeFileFromStreams
25 AVIMakeStreamFromClipboard
26 AVIPutFileOnClipboard
27 AVISaveA
28 AVISaveA
29 AVISaveOptions
30 AVISaveOptionsFree
31 AVISaveVA
32 AVISaveVA
33 AVISaveVW
34 AVISaveW
35 AVIStreamAddRef
36 AVIStreamBeginStreaming
37 AVIStreamCreate
38 AVIStreamEndStreaming
39 AVIStreamFindSample
40 AVIStreamGetFrame
41 AVIStreamGetFrameClose
42 AVIStreamGetFrameOpen
43 AVIStreamInfoA
44 AVIStreamInfoA
45 AVIStreamInfoW
46 AVIStreamLength
47 AVIStreamOpenFromFileA
48 AVIStreamOpenFromFileA
49 AVIStreamOpenFromFileW
50 AVIStreamRead
51 AVIStreamReadData
52 AVIStreamReadFormat
53 AVIStreamRelease
54 AVIStreamSampleToTime
55 AVIStreamSetFormat
56 AVIStreamStart
57 AVIStreamTimeToSample
58 AVIStreamWrite
59 AVIStreamWriteData
60 CreateEditableStream
61 DllCanUnloadNow
62 DllGetClassObject
63 EditStreamClone
64 EditStreamCopy
65 EditStreamCut
66 EditStreamPaste
67 EditStreamSetInfoA
68 EditStreamSetInfoA
69 EditStreamSetInfoW
70 EditStreamSetNameA
71 EditStreamSetNameA
72 EditStreamSetNameW
73 IID_IAVIEditStream
74 IID_IAVIFile
75 IID_IAVIStream
76 IID_IGetFrame

View File

@ -0,0 +1,59 @@
1 WEP
2 DLLGETCLASSOBJECT
3 DLLCANUNLOADNOW
4 ___EXPORTEDSTUB
10 _IID_IAVISTREAM
11 _IID_IAVIFILE
12 _IID_IAVIEDITSTREAM
13 _IID_IGETFRAME
14 _CLSID_AVISIMPLEUNMARSHAL
100 AVIFILEINIT
101 AVIFILEEXIT
102 AVIFILEOPEN
103 AVISTREAMOPENFROMFILE
104 AVISTREAMCREATE
105 AVIMAKECOMPRESSEDSTREAM
106 AVIMAKEFILEFROMSTREAMS
107 AVIMAKESTREAMFROMCLIPBOARD
110 AVISTREAMGETFRAME
111 AVISTREAMGETFRAMECLOSE
112 AVISTREAMGETFRAMEOPEN
120 _AVISAVE
121 AVISAVEV
122 AVISAVEOPTIONS
123 AVIBUILDFILTER
124 AVISAVEOPTIONSFREE
130 AVISTREAMSTART
131 AVISTREAMLENGTH
132 AVISTREAMTIMETOSAMPLE
133 AVISTREAMSAMPLETOTIME
140 AVIFILEADDREF
141 AVIFILERELEASE
142 AVIFILEINFO
143 AVIFILEGETSTREAM
144 AVIFILECREATESTREAM
146 AVIFILEWRITEDATA
147 AVIFILEREADDATA
148 AVIFILEENDRECORD
160 AVISTREAMADDREF
161 AVISTREAMRELEASE
162 AVISTREAMINFO
163 AVISTREAMFINDSAMPLE
164 AVISTREAMREADFORMAT
165 AVISTREAMREADDATA
166 AVISTREAMWRITEDATA
167 AVISTREAMREAD
168 AVISTREAMWRITE
169 AVISTREAMSETFORMAT
180 EDITSTREAMCOPY
181 EDITSTREAMCUT
182 EDITSTREAMPASTE
184 CREATEEDITABLESTREAM
185 AVIPUTFILEONCLIPBOARD
187 AVIGETFROMCLIPBOARD
188 AVICLEARCLIPBOARD
190 EDITSTREAMCLONE
191 EDITSTREAMSETNAME
192 EDITSTREAMSETINFO
200 AVISTREAMBEGINSTREAMING
201 AVISTREAMENDSTREAMING

View File

@ -0,0 +1,3 @@
1 WEP
2 AWEMANAGER
3 ___EXPORTEDSTUB

View File

@ -0,0 +1,4 @@
2 AWEManager
3 AWEGetObject32
4 AWESetObject16
5 AWEGetObject16

View File

@ -0,0 +1,96 @@
1 ??0ByteArray@@QAE@ABV0@@Z
2 ??0ByteArray@@QAE@H@Z
3 ??0NETCardMarshaller@@QAE@KGPADIG@Z
4 ??0NETCardMarshaller@@QAE@PADG0IG@Z
5 ??0UIntArray@@QAE@ABV0@@Z
6 ??0UIntArray@@QAE@H@Z
7 ??0UIntArray@@QAE@ABV0@@Z
8 ??0UIntArray@@QAE@H@Z
9 ??0UShortArray@@QAE@ABV0@@Z
10 ??0UShortArray@@QAE@H@Z
11 ??1UShortArray@@QAE@XZ
12 ??1NETCardMarshaller@@QAE@XZ
13 ??1UShortArray@@QAE@XZ
14 ??1UShortArray@@QAE@XZ
15 ??1UShortArray@@QAE@XZ
16 ??4UShortArray@@QAEAAV0@ABV0@@Z
17 ??4NETCardMarshaller@@QAEAAV0@ABV0@@Z
18 ??4UShortArray@@QAEAAV0@ABV0@@Z
19 ??4UShortArray@@QAEAAV0@ABV0@@Z
20 ??4UShortArray@@QAEAAV0@ABV0@@Z
21 ??HByteArray@@QAEAAV0@AAPAD@Z
22 ??HByteArray@@QAEAAV0@AAV0@@Z
23 ??HByteArray@@QAEAAV0@AAVUIntArray@@@Z
24 ??HByteArray@@QAEAAV0@AAVUShortArray@@@Z
25 ??HByteArray@@QAEAAV0@E@Z
26 ??HByteArray@@QAEAAV0@G@Z
27 ??HByteArray@@QAEAAV0@I@Z
28 ??HUIntArray@@QAEAAV0@AAV0@@Z
29 ??HUIntArray@@QAEAAV0@I@Z
30 ??HUShortArray@@QAEAAV0@AAV0@@Z
31 ??HUShortArray@@QAEAAV0@G@Z
32 ??HUShortArray@@QAEAAV0@I@Z
33 ??YByteArray@@QAEAAV0@AAPAD@Z
34 ??YByteArray@@QAEAAV0@AAV0@@Z
35 ??YByteArray@@QAEAAV0@AAVUIntArray@@@Z
36 ??YByteArray@@QAEAAV0@AAVUShortArray@@@Z
37 ??YByteArray@@QAEAAV0@E@Z
38 ??YByteArray@@QAEAAV0@G@Z
39 ??YByteArray@@QAEAAV0@I@Z
40 ??YUIntArray@@QAEAAV0@AAV0@@Z
41 ??YUIntArray@@QAEAAV0@I@Z
42 ??YUShortArray@@QAEAAV0@AAV0@@Z
43 ??YUShortArray@@QAEAAV0@G@Z
44 ??YUShortArray@@QAEAAV0@I@Z
45 CardAcquireContext
46 CardAuthenticateChallenge
47 CardAuthenticatePin
48 CardChangeAuthenticator
49 CardConstructDHAgreement
50 CardCreateContainer
51 CardCreateDirectory
52 CardCreateFile
53 CardDeauthenticate
54 CardDeleteContainer
55 CardDeleteContext
56 CardDeleteDirectory
57 CardDeleteFile
58 CardEnumFiles
59 CardGetChallenge
60 CardGetContainerInfo
61 CardGetFileInfo
62 CardQueryCapabilities
63 CardQueryFreeSpace
64 CardQueryKeySizes
65 CardRSADecrypt
66 CardReadFile
67 CardSignData
68 CardUnblockPin
69 CardWriteFile
70 DllInitialize
71 ?Invoke@NETCardMarshaller@@QAAXHZZ
72 ?ReadByteAt@ByteArray@@QAEEI@Z
73 ?ReadUIntAt@ByteArray@@QAEII@Z
74 ?ReadUIntAt@UIntArray@@QAEII@Z
75 ?ReadUIntAt@UShortArray@@QAEII@Z
76 ?ReadUShortAt@ByteArray@@QAEGI@Z
77 ?ReadUShortAt@UShortArray@@QAEGI@Z
78 ?getBuffer@UShortArray@@QAEPAGXZ
79 ?getBuffer@UShortArray@@QAEPAGXZ
80 ?getBuffer@UShortArray@@QAEPAGXZ
81 ?getLength@UShortArray@@QAEIXZ
82 ?getLength@UShortArray@@QAEIXZ
83 ?getLength@UShortArray@@QAEIXZ
84 ?getLength@UShortArray@@QAEIXZ
85 ?getPCSC@NETCardMarshaller@@QAE?AVPCSC@@XZ
86 ?getStringAt@StringArray@@QAEPADI@Z
87 ?isNull@UShortArray@@QAEHXZ
88 ?isNull@UShortArray@@QAEHXZ
89 ?isNull@UShortArray@@QAEHXZ
90 ?isNull@UShortArray@@QAEHXZ
91 ?setBuffer@ByteArray@@QAEXPAE@Z
92 ?setBuffer@UIntArray@@QAEXPAI@Z
93 ?setBuffer@UShortArray@@QAEXPAG@Z
94 ?setStringAt@StringArray@@QAEXIPAD@Z
95 DllRegisterServer
96 DllUnregisterServer

View File

@ -0,0 +1,44 @@
1 AzAddPropertyItem
2 AzApplicationClose
3 AzApplicationCreate
4 AzApplicationDelete
5 AzApplicationEnum
6 AzApplicationOpen
7 AzAuthorizationStoreDelete
8 AzCloseHandle
9 AzContextAccessCheck
10 AzContextGetAssignedScopesPage
11 AzContextGetRoles
12 AzFreeMemory
13 AzGetProperty
14 AzGroupCreate
15 AzGroupDelete
16 AzGroupEnum
17 AzGroupOpen
18 AzInitialize
19 AzInitializeContextFromName
20 AzInitializeContextFromToken
21 AzOperationCreate
22 AzOperationDelete
23 AzOperationEnum
24 AzOperationOpen
25 AzRemovePropertyItem
26 AzRoleCreate
27 AzRoleDelete
28 AzRoleEnum
29 AzRoleOpen
30 AzScopeCreate
31 AzScopeDelete
32 AzScopeEnum
33 AzScopeOpen
34 AzSetProperty
35 AzSubmit
36 AzTaskCreate
37 AzTaskDelete
38 AzTaskEnum
39 AzTaskOpen
40 AzUpdateCache
41 DllCanUnloadNow
42 DllGetClassObject
43 DllRegisterServer
44 DllUnregisterServer

View File

@ -0,0 +1,4 @@
1 DllCanUnloadNow
2 DllGetClassObject
3 DllRegisterServer
4 DllUnregisterServer

View File

@ -0,0 +1,29 @@
1 CPAcquireContext
2 CPAcquireContextW
3 CPCreateHash
4 CPDecrypt
5 CPDeriveKey
6 CPDestroyHash
7 CPDestroyKey
8 CPDuplicateHash
9 CPDuplicateKey
10 CPEncrypt
11 CPExportKey
12 CPGenKey
13 CPGenRandom
14 CPGetHashParam
15 CPGetKeyParam
16 CPGetProvParam
17 CPGetUserKey
18 CPHashData
19 CPHashSessionKey
20 CPImportKey
21 CPReleaseContext
22 CPSetHashParam
23 CPSetKeyParam
24 CPSetProvParam
25 CPSignHash
26 CPVerifySignature
27 DllMain
28 DllRegisterServer
29 DllUnregisterServer

View File

@ -0,0 +1,4 @@
1 BaseSetProcessCreateNotify
2 BaseSrvNlsLogon
3 BaseSrvNlsUpdateRegistryCache
4 ServerDllInitialization

View File

@ -0,0 +1,5 @@
1 BatMeterCapabilities
2 CreateBatMeter
3 DestroyBatMeter
4 PowerCapabilities
5 UpdateBatMeter

View File

@ -0,0 +1,6 @@
1 BatteryClassInitializeDevice
2 BatteryClassIoctl
3 BatteryClassQueryWmiDataBlock
4 BatteryClassStatusNotify
5 BatteryClassSystemControl
6 BatteryClassUnload

View File

@ -0,0 +1,25 @@
1 BdaCheckChanges
2 BdaCommitChanges
3 BdaCreateFilterFactory
4 BdaCreateFilterFactoryEx
5 BdaCreatePin
6 BdaCreateTopology
7 BdaDeletePin
8 BdaFilterFactoryUpdateCacheData
9 BdaGetChangeState
10 BdaInitFilter
11 BdaMethodCreatePin
12 BdaMethodCreateTopology
13 BdaMethodDeletePin
14 BdaPropertyGetControllingPinId
15 BdaPropertyGetPinControl
16 BdaPropertyNodeDescriptors
17 BdaPropertyNodeEvents
18 BdaPropertyNodeMethods
19 BdaPropertyNodeProperties
20 BdaPropertyNodeTypes
21 BdaPropertyPinTypes
22 BdaPropertyTemplateConnections
23 BdaStartChanges
24 BdaUninitFilter
25 BdaValidateNodeProperty

Some files were not shown because too many files have changed in this diff Show More