Hi George, Interesting idea, but that kind of redirection isn't presently possible.
Mono has some logic on mapping p/invoke calls (using .config files even for dlls) but AFAIK it is just to point to some other native library and function entry-point, still doing the marshaling of things as needed for the native platform. Just extending it to allow mapping to managed implementations would still put the burden of creating the mapping .config files/sections for porting devs, or packagers. A middle ground solution would be to either hardcode the mapping inside the runtime (a magic xml file, for instance), or allow for some "exporting" configuration section on .config (or some managed API) to add the mapping by the API providing assembly, but this latest suggestion seems risky, security-wise, because it could allow any assembly to "sequestrate" some native API, even more as full CAS and trust-management isn't working on Mono Discussion on risks, benefits, and also code contributions to test the premises are all welcome. :) On 3/9/07, George Giolfan <[EMAIL PROTECTED]> wrote: > If you mean implementing such functions in native code > is wrong, I completely agree. I was suggesting we > could implement Win32 functions (those that do not > have managed equivalents) in managed code and have > Mono call them when it encounters a P/Invoke (I am > under the impression that this is possible). This way > we wouldn't need to change every program we want to > port. There are already methods in XplatUI very > similar to the caret Win32 functions. > > --- Rafael Teixeira <[EMAIL PROTECTED]> wrote: > > > Having a libuser32.so, and possibly others, to > > enable all that > > p/invoking seems a bit too much for me. > > > > We should strive to keep all we can in managed-land, > > where things are > > naturally more portable. > > > > Just my thinking on the subject, > > > > > > > ____________________________________________________________________________________ > Don't get soaked. Take a quick peek at the forecast > with the Yahoo! Search weather shortcut. > http://tools.search.yahoo.com/shortcuts/#loc_weather > _______________________________________________ > Mono-winforms-list maillist - [email protected] > http://lists.ximian.com/mailman/listinfo/mono-winforms-list > -- Rafael "Monoman" Teixeira --------------------------------------- "The reasonable man adapts himself to the world; the unreasonable one persists in trying to adapt the world to himself. Therefore all progress depends on the unreasonable man." George Bernard Shaw _______________________________________________ Mono-winforms-list maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-winforms-list
