Subversion Repositories Kolibri OS

Rev

Rev 9811 | 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 KOLIBRI_INPUTBOX_H
  9. #define KOLIBRI_INPUTBOX_H
  10.  
  11. #include <stddef.h>
  12.  
  13. DLLAPI unsigned __stdcall InputBox(void* Buffer, char* Caption, char* Prompt, char* Default,
  14.                                     unsigned long Flags, unsigned long BufferSize, void* RedrawProc);
  15.  
  16. #endif // KOLIBRI_INPUTBOX_H
  17.