home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 11 / FM Towns Free Software Collection 11.iso / t_os / tool / ein / fvi / fvimsg / gur / msgfunc.c next >
Encoding:
C/C++ Source or Header  |  1995-09-22  |  2.9 KB  |  128 lines

  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <string.h>
  4. #include <winb.h>
  5. #include <te.h>
  6. #include <fntb.h>
  7. #include <gui.h>
  8. #include <egb.h>
  9. #include <guidbg.h>
  10.  
  11. int    MSG_winId = -1 ;
  12. int    MSG_drvSelBtnId[6] = -1 ;
  13. int    MSG_redrawId[2] = -1 ;
  14. int    MSG_selectForceId[2] = -1 ;
  15. int    MSG_activateId[2] = -1 ;
  16. int    MSG_forceRedrawTextId = -1 ;
  17. int    MSG_forceRedrawBtnId[2] = -1 ;
  18. int    MSG_ifRedrawTextId = -1 ;
  19. int    MSG_ifRedrawBtnId = -1 ;
  20.  
  21. /*    initDataMSGSET:MSG_winId:MJ_WINDOWL40の呼び出し関数    */
  22. int    MSG_winFunc(kobj, messId, argc, pev, trigger)
  23. int        kobj ;
  24. int        messId ;
  25. int        argc ;
  26. EVENT    *pev ;
  27. int        trigger ;
  28. {
  29.     return NOERR ;
  30. }
  31.  
  32. /*    initDataMSGSET:MSG_drvSelBtnId[1]:MJ_ICONL40の呼び出し関数    */
  33. /*    initDataMSGSET:MSG_drvSelBtnId[2]:MJ_ICONL40の呼び出し関数    */
  34. /*    initDataMSGSET:MSG_drvSelBtnId[3]:MJ_ICONL40の呼び出し関数    */
  35. /*    initDataMSGSET:MSG_drvSelBtnId[4]:MJ_ICONL40の呼び出し関数    */
  36. /*    initDataMSGSET:MSG_drvSelBtnId[5]:MJ_ICONL40の呼び出し関数    */
  37. int    MSG_sendDriveFunc(kobj, messId, argc, pev, trigger)
  38. int        kobj ;
  39. int        messId ;
  40. int        argc ;
  41. EVENT    *pev ;
  42. int        trigger ;
  43. {
  44.     return NOERR ;
  45. }
  46.  
  47. /*    initDataMSGSET:MSG_redrawId[0]:MJ_DBUTTONL40の呼び出し関数    */
  48. /*    initDataMSGSET:MSG_redrawId[1]:MJ_DBUTTONL40の呼び出し関数    */
  49. int    MSG_redrawFunc(kobj, messId, argc, pev, trigger)
  50. int        kobj ;
  51. int        messId ;
  52. int        argc ;
  53. EVENT    *pev ;
  54. int        trigger ;
  55. {
  56.     return NOERR ;
  57. }
  58.  
  59. /*    initDataMSGSET:MSG_selectForceId[0]:MJ_TICONL40の呼び出し関数    */
  60. /*    initDataMSGSET:MSG_selectForceId[1]:MJ_TICONL40の呼び出し関数    */
  61. int    MSG_selectForceFunc(kobj, messId, argc, pev, trigger)
  62. int        kobj ;
  63. int        messId ;
  64. int        argc ;
  65. EVENT    *pev ;
  66. int        trigger ;
  67. {
  68.     return NOERR ;
  69. }
  70.  
  71. /*    initDataMSGSET:MSG_activateId[0]:MJ_DBUTTONL40の呼び出し関数    */
  72. /*    initDataMSGSET:MSG_activateId[1]:MJ_DBUTTONL40の呼び出し関数    */
  73. int    MSG_activeFunc(kobj, messId, argc, pev, trigger)
  74. int        kobj ;
  75. int        messId ;
  76. int        argc ;
  77. EVENT    *pev ;
  78. int        trigger ;
  79. {
  80.     return NOERR ;
  81. }
  82.  
  83. /*    initDataMSGSET:MSG_forceRedrawTextId:MJ_TEXTL40の呼び出し関数    */
  84. int    MSG_forceRedrawTextFunc(kobj, messId, argc, pev, trigger)
  85. int        kobj ;
  86. int        messId ;
  87. int        argc ;
  88. EVENT    *pev ;
  89. int        trigger ;
  90. {
  91.     return NOERR ;
  92. }
  93.  
  94. /*    initDataMSGSET:MSG_forceRedrawBtnId[0]:MJ_DBUTTONL40の呼び出し関数    */
  95. /*    initDataMSGSET:MSG_forceRedrawBtnId[1]:MJ_DBUTTONL40の呼び出し関数    */
  96. int    MSG_forceRedrawFunc(kobj, messId, argc, pev, trigger)
  97. int        kobj ;
  98. int        messId ;
  99. int        argc ;
  100. EVENT    *pev ;
  101. int        trigger ;
  102. {
  103.     return NOERR ;
  104. }
  105.  
  106. /*    initDataMSGSET:MSG_ifRedrawTextId:MJ_TEXTL40の呼び出し関数    */
  107. int    MSG_ifRedrawTextFunc(kobj, messId, argc, pev, trigger)
  108. int        kobj ;
  109. int        messId ;
  110. int        argc ;
  111. EVENT    *pev ;
  112. int        trigger ;
  113. {
  114.     return NOERR ;
  115. }
  116.  
  117. /*    initDataMSGSET:MSG_ifRedrawBtnId:MJ_DBUTTONL40の呼び出し関数    */
  118. int    MSG_ifRedrawFunc(kobj, messId, argc, pev, trigger)
  119. int        kobj ;
  120. int        messId ;
  121. int        argc ;
  122. EVENT    *pev ;
  123. int        trigger ;
  124. {
  125.     return NOERR ;
  126. }
  127.  
  128.