13 lines
235 B
C#
13 lines
235 B
C#
|
|
namespace Pilz.Win32.Mapped;
|
|
|
|
|
|
/// <summary>
|
|
/// Two constants extracted from the FileInfoFlags, the only that are
|
|
/// meaningfull for the user of this class.
|
|
/// </summary>
|
|
public enum SystemIconSize : int
|
|
{
|
|
Large,
|
|
Small
|
|
} |