home *** CD-ROM | disk | FTP | other *** search
/ Phoenix Heaven Sunny 2 / APPARE2.BIN / oh_towns / art2 / src.lzh / YSETUP.C < prev    next >
Text File  |  1995-06-18  |  1KB  |  59 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.  
  9. int    idSetupWin = -1 ;
  10. int    idSetupOkBtn = -1 ;
  11. int    idSetupCancelBtn = -1 ;
  12. int    idSetupNizimiSBar = -1 ;
  13. int    idSetupKosuriSBar = -1 ;
  14.  
  15. /*    initDataZSETUP:idSetupOkBtn:MJ_DBUTTONL40の呼び出し関数    */
  16. int    SetupOkBtnProc(kobj, messId, argc, pev, trigger)
  17. int        kobj ;
  18. int        messId ;
  19. int        argc ;
  20. EVENT    *pev ;
  21. int        trigger ;
  22. {
  23.     return NOERR ;
  24. }
  25.  
  26. /*    initDataZSETUP:idSetupCancelBtn:MJ_DBUTTONL40の呼び出し関数    */
  27. int    SetupCancelBtnProc(kobj, messId, argc, pev, trigger)
  28. int        kobj ;
  29. int        messId ;
  30. int        argc ;
  31. EVENT    *pev ;
  32. int        trigger ;
  33. {
  34.     return NOERR ;
  35. }
  36.  
  37. /*    initDataZSETUP:idSetupNizimiSBar:MJ_SCRLL40の呼び出し関数    */
  38. int    SetupNizimiSBarProc(kobj, messId, argc, pev, trigger)
  39. int        kobj ;
  40. int        messId ;
  41. int        argc ;
  42. EVENT    *pev ;
  43. int        trigger ;
  44. {
  45.     return NOERR ;
  46. }
  47.  
  48. /*    initDataZSETUP:idSetupKosuriSBar:MJ_SCRLL40の呼び出し関数    */
  49. int    SetupKosuriSBarProc(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.