You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
448 B
21 lines
448 B
#ifndef _FAX_CONFIG_WIZARD_EXPORT_H_
|
|
#define _FAX_CONFIG_WIZARD_EXPORT_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
// Functions in FaxCfgWz.c
|
|
BOOL FaxConfigWizard(BOOL bExplicitLaunch, LPBOOL lpbAbort);
|
|
|
|
typedef BOOL (*FAX_CONFIG_WIZARD)(BOOL, LPBOOL);
|
|
|
|
#define FAX_CONFIG_WIZARD_PROC "FaxConfigWizard"
|
|
|
|
#define FAX_CONFIG_WIZARD_DLL TEXT("FxsCfgWz.dll")
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // _FAX_CONFIG_WIZARD_EXPORT_H_
|