Esempio n. 1
0
        public static bool GetIcon(this ExternalToolConfiguration This, string Source, string Destination)
        {
            var Args = new GetFileIconParameters()
            {
                Source_File = Source,
                Dest_File   = Destination
            };

            return(This.GetIcon(Args));
        }
Esempio n. 2
0
 public static bool SetIcon(this ExternalToolConfiguration This, SetFileIconParameters Args)
 {
     return(This.Run(Args));
 }