Git Product home page Git Product logo

Comments (5)

waylaa avatar waylaa commented on July 18, 2024

Shouldn't every method that includes out parameters generate SafeHandle derived types?

from cswin32.

AArnott avatar AArnott commented on July 18, 2024

Probably. But I'm not sure I understand the question. Already our SafeHandle overloads return derived types and accept the base type. The out parameter signatures should follow the return type precedent by producing the derived type.

from cswin32.

waylaa avatar waylaa commented on July 18, 2024

One method coming from the top of my head that does not contain SafeHandle derivative types is GetBuffer from IAudioCaptureClient, with the method being like this:

unsafe void GetBuffer(byte** ppData, out uint pNumFramesToRead, out uint pdwFlags, [Optional] ulong* pu64DevicePosition, [Optional] ulong* pu64QPCPosition);

and its extension method:

internal static unsafe void GetBuffer(this winmdroot.Media.Audio.IAudioCaptureClient @this, out byte* ppData, out uint pNumFramesToRead, out uint pdwFlags, ulong* pu64DevicePosition, ulong* pu64QPCPosition)
{
    fixed (byte** ppDataLocal = &ppData)
    {
        @this.GetBuffer(ppDataLocal, out pNumFramesToRead, out pdwFlags, pu64DevicePosition, pu64QPCPosition);
    }
}

Couldn't the extension method be like this instead? (pu64DevicePosition and pu64QPCPosition can stay as pointers too)

internal static void GetBuffer(this winmdroot.Media.Audio.IAudioCaptureClient @this, out SafeHandle ppData, out uint pNumFramesToRead, out uint pdwFlags, in ulong pu64DevicePosition, in ulong pu64QPCPosition)

from cswin32.

AArnott avatar AArnott commented on July 18, 2024

No.

I'm afraid we can't turn byte** parameter types into SafeHandle, as that requires a strongly-typed struct (or typedef in C) so that the metadata can describe what method can be used to release the native resource.

I also don't understand why you would define the last two parameters as in ulong instead of out ulong, considering the direction of data flow as documented for the method.

from cswin32.

waylaa avatar waylaa commented on July 18, 2024

I understand. Although it is unfortunate not being able to have SafeHandle there.

I also don't understand why you would define the last two parameters as in ulong instead of out ulong, considering the direction of data flow as documented for the method.

Oops! My bad. I wrote that comment late at evening before going to sleep haha.

from cswin32.

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.