forked from KolibriOS/kolibrios
1ed1f3a5b1
- headers update (now used true functions with attributes instead of pointers) - fixed some samples kos_mbedtls: microtar: changes for compatible to latest version tcc and the libc.obj headers git-svn-id: svn://kolibrios.org@9812 a494cfbc-eb01-0410-851d-a64ba20cac60
17 lines
535 B
C
17 lines
535 B
C
/*
|
|
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
|
|
*/
|
|
|
|
#ifndef KOLIBRI_INPUTBOX_H
|
|
#define KOLIBRI_INPUTBOX_H
|
|
|
|
#include <stddef.h>
|
|
|
|
DLLAPI unsigned __stdcall InputBox(void* Buffer, char* Caption, char* Prompt, char* Default,
|
|
unsigned long Flags, unsigned long BufferSize, void* RedrawProc);
|
|
|
|
#endif // KOLIBRI_INPUTBOX_H
|