aboutsummaryrefslogtreecommitdiff
path: root/cmake (unfollow)
Commit message (Expand)AuthorFilesLines
2025-04-28Replace CRT's strlen() and memcpy() by open coded variantsPali Rohár1-9/+8
2025-04-28Replace CRT's malloc() and free() by WinAPI's LocalAlloc() and LocalFree() in...Pali Rohár1-6/+23
2025-04-28Fix includesPali Rohár1-3/+3
2025-04-28Do not cast between function pointer and data pointer when not requiredPali Rohár1-4/+4
2025-04-28Fix compile warning: comparison of integer expressions of different signednes...Pali Rohár1-1/+1
2025-04-28Fix compile warning C4244: '=' : conversion from 'int' to 'char', possible lo...Pali Rohár1-1/+1
2025-04-28Fix test compile error C2065: 'errno' : undeclared identifierPali Rohár1-0/+1
2025-04-28Fix C++ compile error C2065: '_ReturnAddress' : undeclared identifierPali Rohár1-1/+6
2025-04-28Fix C++ compile error C2065: '_alloca' : undeclared identifierPali Rohár1-0/+4
2025-04-28Fix gcc compile errors in C++ modePali Rohár1-2/+2
2025-04-28Fix is_valid_address() functionPali Rohár1-1/+1
2025-04-28Consistently always use GetModuleHandleA() to reduce number of importsPali Rohár1-5/+5
2025-04-28Store kernel32.dll handle into kernel32 variablePali Rohár1-4/+5
2025-04-28Add proper guards for platform codePali Rohár2-4/+13
2025-04-28Style fixesPali Rohár1-16/+16
2025-04-28Fix dlclose() for dlopen(NULL, ...)Pali Rohár1-0/+4
2025-03-04Bump policy_max in cmake_minimum_required to 3.10traversaro-patch-2Silvio Traversaro1-1/+1
2023-07-03Add missing check that section index in get_image_section() is validPali Rohár1-1/+1
2023-05-25Add some contributorstraversaro-patch-1Silvio Traversaro1-1/+2
2023-05-25Cleanup README and add CODEOWNERS fileSilvio Traversaro2-12/+21
2023-05-21Fix compilation with the first NT SDKPali Rohár1-0/+13
2023-05-21Fix compilation with old MSVC compilerPali Rohár1-0/+12
2023-05-21Fix compilation with older SDKPali Rohár1-7/+7
2022-12-27Add Windows ARM64 supportGH Cao2-2/+71
2022-12-01Fix CMake include directive when using wrappers like meson.Angelo Haller1-1/+4
2022-03-11Replace magic numbers by sdk macros in get_image_section()Pali Rohár1-2/+8
2021-12-21Prefer usage of thread-safe function SetThreadErrorMode() instead of process-...Pali Rohár1-4/+33
2021-12-21Try to avoid compile warning: cast between incompatible function types from â...Pali Rohár1-3/+3
2021-04-27CMake: Bumpr versionxantares1-1/+1
2021-04-27cmake: use CROSSCOMPILING_EMULATORMichel Zou4-25/+9
2021-04-09dladdr: const void *addrMichel Zou2-10/+10
2021-02-03Fix noinline for older compiler versions (e.g. Visual Studio 6.0)Pali Rohár1-1/+11
2021-02-03Define ULONG_PTR for older SDKPali Rohár1-0/+5
2021-02-03Fix MSVC 14.00 compile warning: warning C4244: '=' : conversion from 'ULONG_P...Pali Rohár1-1/+1
2021-02-03Add helper function MyGetModuleHandleFromAddress()Pali Rohár1-7/+57
2021-02-03Fix helper function MyEnumProcessModules()Pali Rohár1-7/+32
2021-02-03Avoid calling SetLastError() and GetLastError() internallyPali Rohár1-22/+17
2021-02-03Move hCurrentProc variable to scope where is usedPali Rohár1-2/+3
2021-02-03Fix some style issuesPali Rohár2-14/+14
2021-01-29Remove duplicate checks for NULL pointersPali Rohár1-4/+1
2021-01-29Remove code for finding symbol name in import tablePali Rohár1-53/+6
2021-01-27Function dladdr() now retrieve symbol name and symbol address from both expor...Pali Rohár4-43/+97
2021-01-17CI: Add static building for cmakeRalf Habacker2-23/+70
2021-01-17cmake: add support to build test-dladdr on unix like osRalf Habacker2-12/+22
2021-01-17Add function dladdr() and associated test application test-dladdrRalf Habacker6-9/+439
2020-12-22Add cmake build support to travis CIRalf Habacker1-0/+11
2020-12-13Rewrite function save_err_ptr_str() to not use sprintf()Pali Rohár1-6/+13
2020-12-13Add _CRT_SECURE_NO_WARNINGS for test.c to disable MSVC deprecation warningsPali Rohár1-0/+1
2020-12-12ci-build.sh: Move install_prefix to cmake place where it is usedPali Rohár1-3/+1
2020-12-12Run Travis tests also under i586-mingw32msvc-gcc compilerPali Rohár1-0/+13