Subversion Repositories filter_foundry

Rev

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

Rev 476 Rev 477
Line 54... Line 54...
54
        TEXT_FILETYPE = 'TEXT',
54
        TEXT_FILETYPE = 'TEXT',
55
        SIG_SIMPLETEXT = 'ttxt',
55
        SIG_SIMPLETEXT = 'ttxt',
56
        PS_FILTER_FILETYPE = '8BFM'
56
        PS_FILTER_FILETYPE = '8BFM'
57
};
57
};
58
 
58
 
-
 
59
typedef struct none_slider_info_ {
-
 
60
        BOOL initialized;
-
 
61
} none_slider_info;
-
 
62
 
-
 
63
typedef struct comctl_slider_info_ {
-
 
64
        BOOL initialized;
-
 
65
        HMODULE hLib;
-
 
66
} comctl_slider_info;
-
 
67
 
-
 
68
typedef struct plugin_dll_slider_info_ {
-
 
69
        BOOL initialized;
-
 
70
        HMODULE hLib;
-
 
71
        DWORD messageId;
-
 
72
} plugin_dll_slider_info;
-
 
73
 
59
typedef struct globals_t_ {
74
typedef struct globals_t_ {
60
        Boolean standalone;
75
        Boolean standalone;
61
        Boolean parmloaded; // this means that the filter is loaded, but without PARM (title, author, etc.)
76
        Boolean parmloaded; // this means that the filter is loaded, but without PARM (title, author, etc.)
62
        Boolean obfusc;
77
        Boolean obfusc;
63
        PARM_T parm;
78
        PARM_T parm;
64
        #ifdef _WIN32
79
        #ifdef _WIN32
65
        HWND hWndMainDlg;
80
        HWND hWndMainDlg;
66
        HMODULE libComctl32;
-
 
67
        HMODULE libPluginDll;
81
        none_slider_info noneSliderInfo;
68
        BOOL pluginDllSliderInitialized;
82
        comctl_slider_info comctlSliderInfo;
69
        DWORD pluginDllSliderMessageId;
83
        plugin_dll_slider_info pluginDllSliderInfo;
70
#endif /* _WIN32 */
84
#endif /* _WIN32 */
71
} globals_t;
85
} globals_t;
72
 
86
 
73
extern globals_t *gdata;
87
extern globals_t *gdata;
74
 
88