10 lines
364 B
Haxe
10 lines
364 B
Haxe
package flash.media;
|
|
|
|
extern class CameraRoll extends flash.events.EventDispatcher {
|
|
function new() : Void;
|
|
function addBitmapData(bitmapData : flash.display.BitmapData) : Void;
|
|
function browseForImage(?value : CameraRollBrowseOptions) : Void;
|
|
static var supportsAddBitmapData(default,never) : Bool;
|
|
static var supportsBrowseForImage(default,never) : Bool;
|
|
}
|