IObjectWithAppUserModelId.cs 379 B

123456789101112131415
  1. using System;
  2. using System.Runtime.InteropServices;
  3. namespace Standard;
  4. [Guid("36db0196-9665-46d1-9ba7-d3709eecf9ed")]
  5. [InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
  6. [ComImport]
  7. internal interface IObjectWithAppUserModelId
  8. {
  9. void SetAppID([MarshalAs(UnmanagedType.LPWStr)] string pszAppID);
  10. [return: MarshalAs(UnmanagedType.LPWStr)]
  11. string GetAppID();
  12. }