Giter Club home page Giter Club logo

Comments (5)

pali avatar pali commented on May 30, 2024 1

@CaffeMrDe Well, if I understand correctly, you are trying to wrap system malloc() function (more precisely malloc() from msvcrt.dl) via dlsym+RTLD_NEXT like on linux/ELF systems. The problem is that dlsym() implementation in dlfcn-win32 project internally uses malloc() function, so you are not able to resolve malloc symbol via dlsym+RTLD_NEXT. I do not think that on Windows it is possible to write RTLD_NEXT support without dynamic allocation.

@traversaro GetProcAddress() does not support RTLD_NEXT flag. And I'm not aware of any Win32 API function which could provide RTLD_NEXT-like feature. This is really unique for dlfcn-win32 and in past I was in doubt if something like this is even possible to implement on Windows (but it is - we have it).

from dlfcn-win32.

traversaro avatar traversaro commented on May 30, 2024

Hello @CaffeMrDe, I am not sure how to address your problem. To debug further, did you check if this works correctly if you use directly Win32 APIs like GetProcAddress without passing via dlfcn-win32 ?

Anyhow, I marked the issue as help wanted so if anyone from the community knows how to solve this problem or has any pinput, they are welcome to comment!

from dlfcn-win32.

traversaro avatar traversaro commented on May 30, 2024

Thanks @pali !

from dlfcn-win32.

pali avatar pali commented on May 30, 2024

@CaffeMrDe As a simple "hack", you can replace malloc() in dlfcn-win32 project by some other dynamic allocator. For example by LocalAlloc() from WinAPI/kernel32.dll (and free() by LocalFree()). Then you should be able to wrap msvcrt.dll's malloc(), but you cannot wrap kernel32.dll's LocalAlloc().

from dlfcn-win32.

CaffeMrDe avatar CaffeMrDe commented on May 30, 2024

Okay, I see what you mean! Thank you for your help!

from dlfcn-win32.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.