Code Monkey home page Code Monkey logo

Comments (3)

dahall avatar dahall commented on August 28, 2024

Here is how you can use that method with exact memory allocation (correction from 30-06-2019 to leave memory intact as the structures use trailing memory to store strings and other pointer variables):

public SafeNativeArray<AUTHZ_SOURCE_SCHEMA_REGISTRATION> AuthzEnumerateSecurityEventSources()
{
   var len = 0U;
   AuthzEnumerateSecurityEventSources(0, IntPtr.Zero, out var cnt, ref len);
   Assert.That(len, Is.Not.Zero);
   var mem = Marshal.AllocHGlobal((int)len);
   if (!AuthzEnumerateSecurityEventSources(0, (IntPtr)mem, out cnt, ref len))
   {
      Marshal.FreeHGlobal(mem);
      Win32Error.ThrowLastError();
   }
   return new SafeNativeArray<AUTHZ_SOURCE_SCHEMA_REGISTRATION>(mem, len, true, 0, (int)cnt, true);
}

from vanara.

dahall avatar dahall commented on August 28, 2024

Had to change the code on my last comment and add some code to the SafeNativeArray class to truly support this scenario. Full code will be included in next release.

from vanara.

dahall avatar dahall commented on August 28, 2024

In the next release you'll find an overload to AuthzEnumerateSecurityEventSources that returns a list of SafeAUTHZ_SOURCE_SCHEMA_REGISTRATION classes. Should dramatically simplify its use, which after a day of digging, I found was a little complicated with all the required memory allocations.

from vanara.

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.