EAWebKit icon indicating copy to clipboard operation
EAWebKit copied to clipboard

cannot be compiled in vs2010

Open xebecnan opened this issue 11 years ago • 1 comments

I tried to compile it from "Project\VC2010\EAWebKit_VC2010.sln" in vs2010, but ends up with lots of errors. For example: 'char16_t' redefinition; different basic types 'OutputDebugStringW' : cannot convert parameter 1 from 'char [2049]' to 'LPCWSTR' 'GetProcAddress' : cannot convert parameter 2 from 'const wchar_t [13]' to 'LPCSTR'

xebecnan avatar Mar 08 '13 09:03 xebecnan

You gave parameters is the character literal. Your sources gave you an answer :)

HINT: Long Pointer Const Wide STRing : typedef LPCWSTR const wchar_t_; Long Point Const STRing : typedef LPCSTR const char_;

GRGSIBERIA avatar Mar 08 '13 15:03 GRGSIBERIA