home *** CD-ROM | disk | FTP | other *** search
/ Windows 95 v2.4 Fix / W95-v2.4fix.iso / ACADWIN / ADS / CPP / MFCADS / MFCLIST / RESOURCE.H < prev   
Encoding:
C/C++ Source or Header  |  1995-02-08  |  2.1 KB  |  61 lines

  1. /* 
  2.     RESOURCE.H -
  3.     
  4.     This file:
  5.  
  6.         Defines constants used in MFCLIST.
  7.  
  8.     (C) Copyright 1988-1994 by Autodesk, Inc.
  9.  
  10.     This program is copyrighted by Autodesk, Inc. and is  licensed
  11.     to you under the following conditions.  You may not distribute
  12.     or  publish the source code of this program in any form.   You
  13.     may  incorporate this code in object form in derivative  works
  14.     provided  such  derivative  works  are  (i.) are  designed and
  15.     intended  to  work  solely  with  Autodesk, Inc. products, and
  16.     (ii.)  contain  Autodesk's  copyright  notice  "(C)  Copyright
  17.     1988-1994 by Autodesk, Inc."
  18.  
  19.     AUTODESK  PROVIDES THIS PROGRAM "AS IS" AND WITH  ALL  FAULTS.
  20.     AUTODESK  SPECIFICALLY DISCLAIMS ANY IMPLIED WARRANTY OF  MER-
  21.     CHANTABILITY OR FITNESS FOR A PARTICULAR USE.  AUTODESK,  INC.
  22.     DOES  NOT  WARRANT THAT THE OPERATION OF THE PROGRAM  WILL  BE
  23.     UNINTERRUPTED OR ERROR FREE.
  24.  
  25. */
  26. #ifndef RESOURCE_H
  27. #define RESOURCE_H
  28.  
  29. #include <windows.h>
  30.  
  31. #define IDHELP                      1038
  32.  
  33. #define DIALOG_2                    2
  34. #define ARC_DIALOG                    104
  35. #define POINT_DIALOG                103
  36. #define DIALOG_1                    1
  37.  
  38. #define LINE_DIALOG                 100
  39. #define CIRCLE_DIALOG                101
  40.  
  41. #define DIALOG_CONTROL              500
  42.  
  43. #define IDC_PUSHBUTTON_NEXT         DIALOG_CONTROL + 1
  44. #define IDC_ENTITY_NAME             IDC_PUSHBUTTON_NEXT + 1
  45.  
  46. #define IDC_LINE_DIALOG_CONTROL     IDC_ENTITY_NAME + 1
  47. #define IDC_EDIT_P_X                IDC_LINE_DIALOG_CONTROL
  48. #define IDC_EDIT_P_Y                IDC_EDIT_P_X + 1
  49. #define IDC_EDIT_P_Z                IDC_EDIT_P_Y + 1
  50. #define IDC_EDIT_S_X                IDC_EDIT_P_Z + 1
  51. #define IDC_EDIT_S_Y                IDC_EDIT_S_X + 1
  52. #define IDC_EDIT_S_Z                IDC_EDIT_S_Y + 1
  53.  
  54. #define IDC_CIRCLE_DIALOG_CONTROL   IDC_LINE_DIALOG_CONTROL + 10
  55. #define IDC_CENTER_X                IDC_CIRCLE_DIALOG_CONTROL + 1
  56. #define IDC_CENTER_Y                IDC_CENTER_X + 1
  57. #define IDC_CENTER_Z                IDC_CENTER_Y + 1
  58. #define IDC_RADIUS                  IDC_CENTER_Z + 1
  59.  
  60. #endif
  61.