home *** CD-ROM | disk | FTP | other *** search
/ Phoenix Heaven Sunny 2 / APPARE2.BIN / oh_towns / art2 / src.lzh / NEWMSG.C < prev    next >
C/C++ Source or Header  |  1995-06-17  |  1KB  |  51 lines

  1. #define    MODULE_NEWMSG
  2.  
  3. #include <stdio.h>
  4. #include <stdlib.h>
  5. #include <string.h>
  6. #include <winb.h>
  7. #include <te.h>
  8. #include <fntb.h>
  9. #include <gui.h>
  10. #include "newmsg.h"
  11.  
  12. char    MT_SETATR[] = "SetAttribute";
  13. int        MM_SETATR = -1;
  14. char    MT_GETATR[] = "GetAttribute";
  15. int        MM_GETATR = -1;
  16. char    MT_SETFRAME[] = "SetFrameTextMessage";
  17. int        MM_SETFRAME = -1;
  18. char    MT_GETFRAME[] = "GetFrame";
  19. int        MM_GETFRAME = -1;
  20. char    MT_SETCOLOR[] = "SetColor";
  21. int        MM_SETCOLOR = -1;
  22. char    MT_SETDISPATR[] = "SetDisplayAttribute";
  23. int        MM_SETDISPATR = -1;
  24. char    MT_GETDISPATR[] = "GetDisplayAttribute";
  25. int        MM_GETDISPATR = -1;
  26. char    MT_SETRESIZEMINMAX[] = "SetResizeMinMax";
  27. int        MM_SETRESIZEMINMAX = -1;
  28.  
  29. char    MT_VSCROLL[] = "VerticalScroll";
  30. int        MM_VSCROLL = -1;
  31. char    MT_HSCROLL[] = "HorizontalScroll";
  32. int        MM_HSCROLL = -1;
  33. char    MT_SETHSCROLL[] = "SetHorizontalScrollBar";
  34. int        MM_SETHSCROLL = -1;
  35. char    MT_SETVSCROLL[] = "SetVerticalScrollBar";
  36. int        MM_SETVSCROLL = -1;
  37. char    MT_SETHSCROLLRANGE[] = "SetHorizontalScrollBarRange";
  38. int        MM_SETHSCROLLRANGE = -1;
  39. char    MT_SETVSCROLLRANGE[] = "SetVerticalScrollBarRange";
  40. int        MM_SETVSCROLLRANGE = -1;
  41. char    MT_GETHSCROLL[] = "GetHorizontalScrollBar";
  42. int        MM_GETHSCROLL = -1;
  43. char    MT_GETVSCROLL[] = "GetVerticalScrollBar";
  44. int        MM_GETVSCROLL = -1;
  45.  
  46. char    MT_SETDATA[] = "SetData";
  47. int        MM_SETDATA = -1;
  48. char    MT_GETDATA[] = "GetData";
  49. int        MM_GETDATA = -1;
  50.  
  51.