how do we call a windows function in c?
lets say the "Sleep" function, which is a Kernel function. am i right in thinking this function is in kernel32.dll?
anyway, in VB this is very easy. we put the name and/or path to the dll containing our function and as long as we call the function by its proper name and pass it proper arguments, all is well. i have no clue how to do this in c. do i need the "#import" tag?
it would be very appreciated if someone could provide a very small example.