Subversion Repositories filter_foundry

Compare Revisions

Regard whitespace Rev 427 → Rev 430

/trunk/ff.h
66,8 → 66,8
PARM_T parm;
#ifdef _WIN32
HWND hWndMainDlg;
HMODULE pluginDllModule;
DWORD pluginDllSliderMessageId;
HMODULE pluginDllModule;
#endif /* _WIN32 */
} globals_t;
 
89,7 → 89,7
#define DBG(x) {}
//#define DEBUG
 
struct InternalState {
typedef struct InternalState_ {
Boolean bak_obfusc;
Boolean bak_standalone;
Boolean bak_parmloaded;
96,7 → 96,7
char* bak_expr[4];
uint8_t bak_slider[8];
PARM_T bak_parm;
};
} InternalState;
 
// from main.c
unsigned long get_parm_hash(PARM_T *parm);
106,8 → 106,8
OSErr DoContinue (FilterRecordPtr epb);
void DoFinish (FilterRecordPtr epb);
void RequestNext (FilterRecordPtr epb,long);
struct InternalState saveInternalState();
void restoreInternalState(struct InternalState state);
InternalState saveInternalState();
void restoreInternalState(InternalState state);
 
// from read.c
Boolean readparams_afs_pff(Handle h,char **reason);