aboutsummaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Merge pull request #118 from dlfcn-win32/variousimprovements2025HEADmasterSilvio Traversaro2025-05-034-53/+91
|\
| * Do not install test filevariousimprovements2025Pali Rohár2025-04-281-2/+0
| * Replace CRT's strlen() and memcpy() by open coded variantsPali Rohár2025-04-281-9/+8
| * Replace CRT's malloc() and free() by WinAPI's LocalAlloc() and LocalFree() in...Pali Rohár2025-04-281-6/+23
| * Fix includesPali Rohár2025-04-281-3/+3
| * Do not cast between function pointer and data pointer when not requiredPali Rohár2025-04-281-4/+4
| * Fix compile warning: comparison of integer expressions of different signednes...Pali Rohár2025-04-281-1/+1
| * Fix compile warning C4244: '=' : conversion from 'int' to 'char', possible lo...Pali Rohár2025-04-281-1/+1
| * Fix test compile error C2065: 'errno' : undeclared identifierPali Rohár2025-04-281-0/+1
| * Fix C++ compile error C2065: '_ReturnAddress' : undeclared identifierPali Rohár2025-04-281-1/+6
| * Fix C++ compile error C2065: '_alloca' : undeclared identifierPali Rohár2025-04-281-0/+4
| * Fix gcc compile errors in C++ modePali Rohár2025-04-281-2/+2
| * Fix is_valid_address() functionPali Rohár2025-04-281-1/+1
| * Consistently always use GetModuleHandleA() to reduce number of importsPali Rohár2025-04-281-5/+5
| * Store kernel32.dll handle into kernel32 variablePali Rohár2025-04-281-4/+5
| * Add proper guards for platform codePali Rohár2025-04-282-4/+13
| * Style fixesPali Rohár2025-04-281-16/+16
| * Fix dlclose() for dlopen(NULL, ...)Pali Rohár2025-04-281-0/+4
|/
* Merge pull request #117 from dlfcn-win32/traversaro-patch-2v1.4.2Silvio Traversaro2025-03-041-1/+1
|\
| * Bump policy_max in cmake_minimum_required to 3.10traversaro-patch-2Silvio Traversaro2025-03-041-1/+1
|/
* Merge pull request #110 from dlfcn-win32/traversaro-patch-1Silvio Traversaro2023-07-301-1/+2
|\
| * Add some contributorstraversaro-patch-1Silvio Traversaro2023-05-251-1/+2
* | Merge pull request #111 from pali/masterv1.4.1Silvio Traversaro2023-07-041-1/+1
|\ \ | |/ |/|
| * Add missing check that section index in get_image_section() is validPali Rohár2023-07-031-1/+1
|/
* Merge pull request #109 from dlfcn-win32/updatecontribv1.4.0Silvio Traversaro2023-05-252-12/+21
|\
| * Cleanup README and add CODEOWNERS fileSilvio Traversaro2023-05-252-12/+21
|/
* Merge pull request #108 from pali/masterSilvio Traversaro2023-05-251-7/+32
|\
| * Fix compilation with the first NT SDKPali Rohár2023-05-211-0/+13
| * Fix compilation with old MSVC compilerPali Rohár2023-05-211-0/+12
| * Fix compilation with older SDKPali Rohár2023-05-211-7/+7
|/
* Merge pull request #107 from driver1998/arm64Silvio Traversaro2022-12-282-2/+71
|\
| * Add Windows ARM64 supportGH Cao2022-12-272-2/+71
|/
* Merge pull request #106 from szanni/cmake-fix-wrapper-includeSilvio Traversaro2022-12-021-1/+4
|\
| * Fix CMake include directive when using wrappers like meson.Angelo Haller2022-12-011-1/+4
|/
* Merge pull request #103 from pali/masterv1.3.1Silvio Traversaro2022-04-081-2/+8
|\
| * Replace magic numbers by sdk macros in get_image_section()Pali Rohár2022-03-111-2/+8
|/
* Merge pull request #102 from pali/masterSilvio Traversaro2022-01-051-7/+36
|\
| * Prefer usage of thread-safe function SetThreadErrorMode() instead of process-...Pali Rohár2021-12-211-4/+33
| * Try to avoid compile warning: cast between incompatible function types from â...Pali Rohár2021-12-211-3/+3
|/
* Merge pull request #99 from xantares/wineSilvio Traversaro2021-04-294-25/+9
|\
| * cmake: use CROSSCOMPILING_EMULATORMichel Zou2021-04-274-25/+9
* | Merge pull request #96 from xantares/patch-2Silvio Traversaro2021-04-281-1/+1
|\ \ | |/ |/|
| * CMake: Bumpr versionxantares2021-04-271-1/+1
|/
* Merge pull request #98 from xantares/constSilvio Traversaro2021-04-112-10/+10
|\
| * dladdr: const void *addrMichel Zou2021-04-092-10/+10
|/
* Merge pull request #95 from pali/masterv1.3.0Silvio Traversaro2021-02-242-54/+140
|\
| * Fix noinline for older compiler versions (e.g. Visual Studio 6.0)Pali Rohár2021-02-031-1/+11
| * Define ULONG_PTR for older SDKPali Rohár2021-02-031-0/+5
| * Fix MSVC 14.00 compile warning: warning C4244: '=' : conversion from 'ULONG_P...Pali Rohár2021-02-031-1/+1
| * Add helper function MyGetModuleHandleFromAddress()Pali Rohár2021-02-031-7/+57