GRGSIBERIA / EAWebKit

The project EAWebKit.
https://sites.google.com/site/eawebkitwiki/
17 stars 5 forks source link

cannot be compiled in vs2010 #1

Open xebecnan opened 11 years ago

xebecnan commented 11 years ago

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'

GRGSIBERIA commented 11 years ago

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

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