ich möchte in c++ über createFile ein com Port ansprechen. das ganze funktioniert perfekt mit folgendem code:
TCHAR *pcCommPort = TEXT("COM6");
mhRS = CreateFile( pcCommPort,
GENERIC_READ | GENERIC_WRITE,
0, // must be opened with exclusive-access
NULL, // default security attributes
OPEN_EXISTING, // must use OPEN_EXISTING
FILE_ATTRIBUTE_NORMAL,
NULL // hTemplate must be NULL for comm devices
);
jetzt will ich aber das COM6 nicht hartcodiert haben. dazu hab ich das ganze in eine methode gepackt und als parameter kommt als short 6 herein. ich schaffe es nicht COM6 daraus zu machen. weiß jemand wie das geht?