1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
/*
* CameraOperation.cs
*
* Author(s):
* Ewen Cheslack-Postava <echeslack@gmail.com>
* Larry Ewing <lewing@novell.com>
* Stephane Delcroix <stephane@delcroix.org>
*
* Copyright (c) 2005-2009 Novell, Inc.
*
* This is open source software. See COPYING for details.
*/
using System;
namespace GPhoto2
{
[Flags]
public enum CameraOperation {
None = 0,
CaptureImage = 1 << 0,
CaptureVideo = 1 << 1,
CaptureAudio = 1 << 2,
CapturePreview = 1 << 3,
Config = 1 << 4,
}
}
|