Help me again please is giving error

09/18/2014 22:02 GemeosBSVIP#1
Well, I tried to play the C ++ new source that you gave me, is even more giving error


Source

Code:
if(strcmp(cHWID2, cHWID) == 0){
				MessageBoxA(0,"HWID Checked","",0);
				printf("Hardware ID check passed.\n");
			}else{
				HGLOBAL hText;
				char *pText;
				hText = GlobalAlloc(GMEM_DDESHARE|GMEM_MOVEABLE, 100);
				pText = (char*)GlobalLock(hText);
				strcpy(pText, hwProfileInfo.szHwProfileGuid);
				GlobalUnlock(hText);
 
				OpenClipboard(NULL);
				EmptyClipboard();
				SetClipboardData(CF_TEXT, hText);
				CloseClipboard();
				MessageBoxA(0, TEXT("HWID detection failed !!!\n HWID copyied to Clipboard! \n Bye"),"Information",0);

			}

Error Imagem [Only registered and activated users can see links. Click Here To Register...]
09/18/2014 22:06 snow#2
Compare this snippet with the one you posted before. And please refrain from creating new threads about this code, further discussions should be posted here: [Only registered and activated users can see links. Click Here To Register...]

#closed