morgen leute
na schoen , jetz hab ich ein
Handle :
Code:
#include <windows.h>
#include <stdio.h>
HANDLE hFile;
hFile = CreateFile(TEXT("myfile.txt"), // file to create
GENERIC_WRITE, // open for writing
0, // do not share
NULL, // default security
CREATE_ALWAYS, // overwrite existing
FILE_ATTRIBUTE_NORMAL | // normal file
FILE_FLAG_OVERLAPPED, // asynchronous I/O
NULL); // no attr. template
if (hFile == INVALID_HANDLE_VALUE)
{
printf("Could not open file (error %d)\n", GetLastError());
return 0;
}
aber wie lese ich daraus 1 oder mehrere bytes? es wird in der funktion doch nirgendwo eine indexposition uebergeben bzw. abgefragt ? die funktion muss ich doch bestimmt wie eine
API Konvertieren(headerkonvertierung) oder ?