Hi
I would like to access the DeleteFile WINAPI system call within my C Code. When checking the Windows File Management functions it outlines me just the C++ Syntax:
C++
BOOL WINAPI DeleteFile(
__in LPCTSTR lpFileName
);
What I would like to know is how I can use this function within pure C code? I have never done anything with the winapi yet, do I just need to include winapi.h to get it work?