2021-06-10 16:53:38 +02:00
|
|
|
/*
|
|
|
|
This is wrapper for Inputbox.obj sys library
|
|
|
|
https://board.kolibrios.org/viewtopic.php?f=24&t=3767&sid=fd2ca95b24eec430db0c61d977f5d8ba#p71585
|
|
|
|
|
|
|
|
Adapted for TCC's dynamic API by Magomed Kostoev, 2020
|
|
|
|
*/
|
|
|
|
|
2022-01-12 19:09:37 +01:00
|
|
|
#ifndef KOLIBRI_INPUTBOX_H
|
|
|
|
#define KOLIBRI_INPUTBOX_H
|
2021-06-10 16:53:38 +02:00
|
|
|
|
2022-01-12 19:09:37 +01:00
|
|
|
#include <stddef.h>
|
2021-06-10 16:53:38 +02:00
|
|
|
|
2022-01-12 19:09:37 +01:00
|
|
|
extern unsigned __stdcall (*InputBox)(void* Buffer, char* Caption, char* Prompt, char* Default,
|
2021-06-10 16:53:38 +02:00
|
|
|
unsigned long Flags, unsigned long BufferSize, void* RedrawProc);
|
|
|
|
|
2022-01-12 19:09:37 +01:00
|
|
|
#endif // KOLIBRI_INPUTBOX_H
|