InstallShield自定义对话框内容分析
InstallShield自定义对话框内容分析
//===========================================================================
// 文件:winsysdll.h
// 描述:定义系统动态库的函数原型
//
// 更新:
// 2004/02/06
//===========================================================================
#ifndef __WINSYSDLL_H__
#define __WINSYSDLL_H__
//----------------------------------------------------
// Prototype user32 DLL functions used in project.
//----------------------------------------------------
//----------------------------------------------------
// Prototype ocbccp32 DLL functions used in project.
//----------------------------------------------------
#ifndef ODBC_ADD_DSN
#define ODBC_ADD_DSN 1
#endif
#ifndef ODBC_CONFIG_DSN
#define ODBC_CONFIG_DSN 2
#endif
#ifndef ODBC_ADD_SYS_DSN
#define ODBC_ADD_SYS_DSN 4
#endif
#ifndef ODBC_CONFIG_SYS_DSN
#define ODBC_CONFIG_SYS_DSN 5
#endif
#ifndef ODBC_INSTALL_COMPLETE
#define ODBC_INSTALL_COMPLETE 2
#endif
#ifndef ODBC_INSTALL_DEIVER
#define ODBC_INSTALL_DEIVER 1
#endif
#ifndef SQL_MAX_MESAGE_LENGTH
#define SQL_MAX_MESSAGE_LENGTH 512
#endif
#ifndef SQL_SUCCESS_WITH_INFO
#define SQL_SUCCESS_WITH_INFO 1
#endif
#ifndef SQL_NO_DATA
#define SQL_NO_DATA 100
#endif
#ifndef SQL_ERROR
#define SQL_ERROR -1
#endif
prototype BOOL ODBCCP32.SQLConfigDataSource(HWND, SHORT, BYVAL STRING, BYVAL STRING);
prototype BOOL ODBCCP32.SQLValidDSN(BYVAL STRING);
prototype BOOL ODBCCP32.SQLInstallerError(SHORT, POINTER, BYREF STRING, SHORT, POINTER);
#endif // __WINSYSDLL_H__