~ubuntu-branches/ubuntu/lucid/mtasc/lucid

« back to all changes in this revision

Viewing changes to ocaml/swflib/swf.ml

  • Committer: Bazaar Package Importer
  • Author(s): Paul Wise
  • Date: 2007-05-23 19:17:16 UTC
  • mto: (2.1.1 gutsy)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20070523191716-lpvac307yorewp3g
Tags: upstream-1.13
ImportĀ upstreamĀ versionĀ 1.13

Show diffs side-by-side

added added

removed removed

Lines of Context:
304
304
type shape_line_style = {
305
305
        sls_width : int;
306
306
        sls_color : color;
307
 
        sls_unk : int option;
 
307
        sls_flags : int option;
 
308
        sls_fill : shape_fill_style option;
308
309
}
309
310
 
310
311
type shape_new_styles = {
449
450
        btr_depth : int;
450
451
        btr_mpos : matrix;
451
452
        btr_color : color_transform_alpha option;
 
453
        btr_filters : filter list option;
452
454
}
453
455
 
454
456
type button_action = {
496
498
        edt_outlines : bool;
497
499
}
498
500
 
 
501
type f9class = {
 
502
        mutable f9_cid : int option;
 
503
        f9_classname : string;
 
504
}
 
505
 
 
506
type sandbox =
 
507
        | SBLocal
 
508
        | SBNetwork
 
509
        | SBUnknown of int
 
510
 
499
511
type tag_data =
500
512
        | TEnd
501
513
        | TShowFrame
529
541
        | TDoInitAction of do_init_action
530
542
        | TVideoStream of unknown
531
543
        | TVideoFrame of unknown
532
 
        | TFlash8 of unknown
 
544
        | TSandbox of sandbox
533
545
        | TPlaceObject3 of place_object
534
546
        | TFontGlyphs of font_glyphs
535
547
        | TTextInfo of unknown
536
548
        | TFont3 of font3
 
549
        | TF9Classes of f9class list
 
550
        | TActionScript3 of (int * string) option * As3.as3_tag
537
551
        | TShape4 of shape
538
552
        | TShape5 of int * string
 
553
        | TF9Scene of string
539
554
        | TUnknown of int * unknown
540
555
 
541
556
and tag = {