Subversion Repositories filter_foundry

Rev

Rev 378 | Rev 466 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 378 Rev 390
Line 32... Line 32...
32
        String         author
32
        String         author
33
        String         copyright
33
        String         copyright
34
        String[5]      channels           // I (Intro), R, G, B, A
34
        String[5]      channels           // I (Intro), R, G, B, A
35
        SliderInfo[8]  sliders            // Slider names prefix: {C} = Checkbox, {S} or none = Slider
35
        SliderInfo[8]  sliders            // Slider names prefix: {C} = Checkbox, {S} or none = Slider
36
        int32_t        gradientIndex
36
        int32_t        gradientIndex
37
        int32_t        bitmapInfoSize
37
        int32_t        bitmapInfoSize     // new in FFX 1.2
38
        byte*          bitmapInfo         // Data: human readable file size (numeric string), 2x NUL, JPG data
38
        BitmapInfo     bitmapInfo         // new in FFX 1.2
39
        int32_t        numPresets         // new in FFX 1.1
39
        int32_t        numPresets         // new in FFX 1.1
40
        Preset[]       presets            // new in FFX 1.1
40
        Preset[]       presets            // new in FFX 1.1
41
    }
41
    }
42
    
42
    
-
 
43
    BitmapInfo = {
-
 
44
        char[]         szFilesize         // human readable file size (numeric string) with NUL terminator
-
 
45
        char[]         szUnknown          // Always 1 NUL character?
-
 
46
        char[]         jpgData
-
 
47
    }
-
 
48
    
43
    String = {
49
    String = {
44
        int32_t        length
50
        int32_t        length
45
        char[]         value
51
        char[]         value
46
    }
52
    }
47
    
53