View Single Post
  #7  
Old 09-04-2013, 04:59
altef_4's Avatar
altef_4 altef_4 is offline
Registered User
 
Join Date: Mar 2012
Location: Ukraine
Posts: 361
Thanks: 248
Thanked 1,022 Times in 239 Posts
altef_4 is on a distinguished road
Quote:
Originally Posted by adiga View Post
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

Last edited by altef_4; 09-04-2013 at 05:03.
Reply With Quote
The Following 4 Users Say Thank You to altef_4 For This Useful Post:
adiga (21-04-2013), F0NT3 (06-05-2013), Kurutucu (09-04-2013), papas (24-10-2016)