aboutsummaryrefslogtreecommitdiff
path: root/src/dlfcn.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* 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 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-281-2/+6
* Style fixesPali Rohár2025-04-281-16/+16
* Fix dlclose() for dlopen(NULL, ...)Pali Rohár2025-04-281-0/+4
* Add missing check that section index in get_image_section() is validPali Rohár2023-07-031-1/+1
* 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
* Add Windows ARM64 supportGH Cao2022-12-271-2/+62
* Replace magic numbers by sdk macros in get_image_section()Pali Rohár2022-03-111-2/+8
* 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
* dladdr: const void *addrMichel Zou2021-04-091-9/+9
* 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
* Fix helper function MyEnumProcessModules()Pali Rohár2021-02-031-7/+32
* Avoid calling SetLastError() and GetLastError() internallyPali Rohár2021-02-031-22/+17
* Move hCurrentProc variable to scope where is usedPali Rohár2021-02-031-2/+3
* Fix some style issuesPali Rohár2021-02-031-10/+10
* Remove duplicate checks for NULL pointersPali Rohár2021-01-291-4/+1
* Remove code for finding symbol name in import tablePali Rohár2021-01-291-53/+6
* Function dladdr() now retrieve symbol name and symbol address from both expor...Pali Rohár2021-01-271-26/+80
* Add function dladdr() and associated test application test-dladdrRalf Habacker2021-01-171-2/+212
* Rewrite function save_err_ptr_str() to not use sprintf()Pali Rohár2020-12-131-6/+13
* Move cmake targets into sub directoriesRalf Habacker2020-09-141-0/+478