Subversion Repositories Kolibri OS

Rev

Rev 9552 | Rev 9620 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  1. /*
  2.     This is wrapper for Inputbox.obj sys library
  3.     https://board.kolibrios.org/viewtopic.php?f=24&t=3767&sid=fd2ca95b24eec430db0c61d977f5d8ba#p71585
  4.  
  5.     Adapted for TCC's dynamic API by Magomed Kostoev, 2020
  6. */
  7.  
  8. #ifndef __KOS__INPUTBOX__H________
  9. #define __KOS__INPUTBOX__H________
  10.  
  11. #define cdecl   __attribute__ ((cdecl))
  12. #define stdcall __attribute__ ((stdcall))
  13.  
  14. extern unsigned stdcall (*InputBox)(void* Buffer, char* Caption, char* Prompt, char* Default,
  15.                                     unsigned long Flags, unsigned long BufferSize, void* RedrawProc);
  16.  
  17. #endif // __KOS__INPUTBOX__H________
  18.