Delete comments

This commit is contained in:
jvazquez-r7 2015-09-03 13:33:40 -05:00
parent 697a6cd335
commit 6e857568e0
No known key found for this signature in database
GPG Key ID: 38D99152B9352D83
2 changed files with 0 additions and 5 deletions

View File

@ -118,10 +118,6 @@ VOID ExploiterDoFengShui() {
SecureZeroMemory(&windowClass, sizeof(WNDCLASSEXA));
wsprintfA(winClass, winClassFmt, i);
wsprintfA(winTitle, winTitleFmt, i);
//int winTitleWSize = MultiByteToWideChar(CP_UTF8, 0, winTitle, -1, NULL, 0);
//LPWSTR winTitleW = (LPWSTR)malloc(winTitleWSize * 2);
//memset(winTitleW, 0, winTitleWSize * 2);
//MultiByteToWideChar(CP_UTF8, 0, winTitle, -1, winTitleW, winTitleWSize);
windowClass.cbSize = sizeof(WNDCLASSEXA);
windowClass.style = CS_HREDRAW | CS_VREDRAW;

View File

@ -1,6 +1,5 @@
#ifndef FONTDATA_H
#define FONTDATA_H
#include <Windows.h>
extern const UCHAR fontData[785196];
#endif