Subversion Repositories Kolibri OS

Rev

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

Rev Author Line No. Line
8796 turbocat 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
 
9558 turbocat 8
#ifndef __KOS__INPUTBOX__H________
9
#define __KOS__INPUTBOX__H________
8796 turbocat 10
 
9558 turbocat 11
#define cdecl   __attribute__ ((cdecl))
12
#define stdcall __attribute__ ((stdcall))
8796 turbocat 13
 
9558 turbocat 14
extern unsigned stdcall (*InputBox)(void* Buffer, char* Caption, char* Prompt, char* Default,
8796 turbocat 15
                                    unsigned long Flags, unsigned long BufferSize, void* RedrawProc);
16
 
9558 turbocat 17
#endif // __KOS__INPUTBOX__H________