ide: Fixed assist++ issues

git-svn-id: svn://ultimatepp.org/upp/trunk@8952 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2015-09-20 16:43:43 +00:00
parent 5dd1b4936b
commit 9ff668bdd2
10 changed files with 71 additions and 23 deletions

View file

@ -30,7 +30,8 @@ String GetStdDefs()
h = Split(ignore, ';');
for(int i = 0; i < h.GetCount(); i++)
defs << "#define " << h[i] << "\n";
defs << "#define NULL NULL";
defs << "#define NULL NULL\n";
defs << "#define DrawText DrawText\n"; // DrawTextA/DrawTextW fiasco...
return defs;
}