mirror of
https://github.com/youssefnoob003/SindriKit
synced 2026-07-07 21:57:09 +00:00
39 lines
1.4 KiB
INI
39 lines
1.4 KiB
INI
# =============================================================================
|
|
# SindriKit Hash Manifest
|
|
# =============================================================================
|
|
# This file is the single source of truth for all compile-time string hashes.
|
|
# The build system runs scripts/generate_hashes.py against it at build time and
|
|
# produces include/generated/sindri_hashes.h.
|
|
#
|
|
# FORMAT
|
|
# ------
|
|
# Group API names under a [module::<dll_name>] section header.
|
|
# The build system automatically generates a hash for both the module name
|
|
# itself and every API listed beneath it.
|
|
#
|
|
# Standalone strings that do not belong to any module (e.g. registry key
|
|
# names, object paths) go under [extras]. No module hash is generated for
|
|
# that section.
|
|
#
|
|
# Lines beginning with # are comments and are ignored by the parser.
|
|
# Blank lines are ignored.
|
|
#
|
|
# ADDING A NEW DOMAIN
|
|
# -------------------
|
|
# Add a new [module::<dll_name>] section for the target DLL and list the
|
|
# APIs your domain implementation calls. One build regenerates everything.
|
|
# =============================================================================
|
|
|
|
|
|
# -- ntdll.dll ----------------------------------------------------------------
|
|
# Syscall targets resolved via Hell's / Halo's / Tartarus' / VelesReek Gate.
|
|
# Also provides LdrLoadDll for the native module loader.
|
|
[module::ntdll.dll]
|
|
NtAllocateVirtualMemory
|
|
NtProtectVirtualMemory
|
|
NtFreeVirtualMemory
|
|
NtOpenSection
|
|
NtMapViewOfSection
|
|
NtClose
|
|
LdrLoadDll
|