home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / C / Samples / CSAPE32.ARJ / INCLUDE / OAKAUX.H < prev    next >
Text File  |  1990-09-24  |  978b  |  49 lines

  1. /*
  2.     oakaux.h
  3.  
  4.     % Contains list of oakland alloc aux message values
  5.  
  6.     OWL 1.2
  7.     Copyright (c) 1990 by Oakland Group, Inc.
  8.     ALL RIGHTS RESERVED.
  9.  
  10.     Revision History:
  11.     -----------------
  12.      9/24/90 jmd    added range for vuwin and WINA_GO, WINA_SHADOW
  13. */
  14.  
  15. /* aux message values ranges
  16.  *
  17.  *        OBJ           0 -  499
  18.  *        WIN           500 -  999
  19.  *        SED         1000 - 1250
  20.  *        VUWIN     1251 - 1499
  21.  *        SPD     1500 - 1999
  22.  *        CSPOT    2000 - 2499
  23.  *        LNF        2500 - 2999
  24.  *        DATAD    3000 - 3499
  25.  *        USER    10000+    (use AUX_USER(n) macro)
  26.  */
  27.  
  28.  
  29. #define    AUX_USER(n)        (10000 + (n))
  30.  
  31.  
  32. /* OBJ messages */
  33. #define    AUX_NOMSG            0            /* dummy value */
  34. #define AUX_START            1
  35. #define AUX_END                2
  36. #define AUX_GETVALUE        3              /* for C-cell */
  37.  
  38.  
  39. /* window auxiliary messages */
  40. #define    WINA_STARTGO        500
  41. #define    WINA_ENDGO            501
  42. #define WINA_MOVE            502
  43. #define WINA_RESIZE            503
  44. #define WINA_BORDERCLICK    504
  45. #define WINA_PAINT            505
  46. #define WINA_SHADOW            506
  47. #define    WINA_GO                507
  48.  
  49.