# SHGetIDListFromObject

```csharp
[DllImport("shell32.dll")]
public static extern int SHGetIDListFromObject(
   object punk,
   out IntPtr ppidl
);
```

Microsoft documentation: [Link](https://docs.microsoft.com/en-us/windows/win32/api/shobjidl_core/nf-shobjidl_core-shgetidlistfromobject)
