home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #1 / monster.zip / monster / MATH / VISSIM.ZIP / CUSTDLG.H < prev    next >
Text File  |  1994-02-10  |  744b  |  32 lines

  1. /* type definitions */
  2.  
  3. typedef struct _temp_struct {
  4.     int iInfMethod;
  5.     int iDefuzMethod;
  6. } TEMP_STRUCT;
  7.  
  8.  
  9. /* resource values */
  10.  
  11. #define INF_MAX_MIN        1
  12. #define INF_SUM_PRODUCT        2
  13. #define INF_BOUNDED_SUM        3
  14. #define DEFUZ_YAGERS        1
  15. #define DEFUZ_CENTER_GRAVITY    2
  16. #define DEFUZ_MAX_HEIGHT    3
  17.  
  18. #define IDD_MINMAX                  105
  19. #define IDD_SUMPROD                 106
  20. #define IDD_BOUNDSUMPROD            107
  21. #define IDD_YAGER                   108
  22. #define IDD_CENTER                  109
  23. #define IDD_MAXHEIGHT               110
  24.  
  25. #define IDD_FIRST_INFERENCE        (IDD_MINMAX - 1)
  26. #define IDD_FIRST_DEFUZ            (IDD_YAGER - 1)
  27.  
  28. /* function prototypes */
  29.  
  30. BOOL FAR PASCAL CustomDlgProc(HWND, UINT, WPARAM, LPARAM);
  31.  
  32.