Quote:
Originally Posted by adiga
hi Friends
help me pliz i have some Problem
i have thes error
compiler error
file: ISDone.iss
Line 91:
Column: 94
UnKnown identifier 'PAnsiChar'
|
i think you use ansi version of inno setup, then in
[code] section find
type and add this
Code:
#ifdef UNICODE
PChar = PAnsiChar;
#else
PAnsiChar = PChar;
#endif
or just rename PAnsiChar to PChar in line with error