LLDB.ModuleSpecList.GetModuleSpecifications C# (CSharp) Method

GetModuleSpecifications() public static method

public static GetModuleSpecifications ( string path ) : LLDB.ModuleSpecList
path string
return LLDB.ModuleSpecList
        public static LLDB.ModuleSpecList GetModuleSpecifications(string path)
        {
            var arg0 = Marshal.StringToHGlobalAnsi(path);
            var __ret = new LLDB.ModuleSpecList.Internal();
            Internal.GetModuleSpecifications_0(new IntPtr(&__ret), arg0);
            Marshal.FreeHGlobal(arg0);
            return LLDB.ModuleSpecList.__CreateInstance(__ret);
        }