Required header <conio.h> of C-library
-
hi, do someone know witch DLL file can contains all nio functions? like this one:
int _kbhit( void ); //Checks the console for keyboard input.
i want to import this function in my c# application. thank u in advance!LIBC.LIB Single thread static library, retail version LIBCMT.LIB Multithread static library, retail version MSVCRT.LIB Import library for MSVCRT.DLL, retail version anyways i belive in C# there must be something similar to kbhit.
MSN Messenger. prakashnadar@msn.com
-
LIBC.LIB Single thread static library, retail version LIBCMT.LIB Multithread static library, retail version MSVCRT.LIB Import library for MSVCRT.DLL, retail version anyways i belive in C# there must be something similar to kbhit.
MSN Messenger. prakashnadar@msn.com
-
hi, thank u for ur replay. i've found this in msvcr71.dll too. i do not think so. everything u have in c# is Console class. best regards!
oOomen wrote: i've found this in msvcr71.dll too you will need msvcr71.lib to use that dll.
MSN Messenger. prakashnadar@msn.com
-
oOomen wrote: i've found this in msvcr71.dll too you will need msvcr71.lib to use that dll.
MSN Messenger. prakashnadar@msn.com
-
Mr.Prakash wrote: you will need msvcr71.lib to use that dll. mMmm... i just know this way!
[System.Runtime.InteropServices.DllImport("msvcr71.dll")] static extern int _kbhit(); public bool KeyboardHit { get { return System.Convert.ToBoolean(_kbhit()); } }
Oh ok, you know the best how to import it in the C# application, coz i dont know anything about C# atleast for now. :-)
MSN Messenger. prakashnadar@msn.com