Quoting john chung : > What changes are you doing to Tera Term ? Anything that we can use? >=20 > John Well, the Tera Term macro language will not accept CTRL characters (0x00 = -=20 0x1F) except for 0x09 (Tab) and another one I can't remember right now. I= would=20 like for it to recognize at least a few CTRL characters and be able to ac= t on=20 them without printing or echoing them. If you download the source code for version 2.3 (google Tera Term for a=20 download site near you) and look in folder Source/ttmacro/ttmparse.c, you= will=20 find the part where it parses out the CTRL characters. I think I can figu= re out=20 how to get it to recognize CTRL characters. For you terminal experts, is there a reason Tera Term excludes these char= acters=20 from the Macro language. Are they used in terminal communications? Should= I use=20 characters above 0x7E instead and make them not print or echo instead? Thanks BOOL GetIdentifier(PCHAR Name) { int i; BYTE b; memset(Name,0,MaxNameLen); b =3D GetFirstChar(); if (b=3D=3D0) return FALSE; // Check first character of identifier if (((b<'A') || (b>'Z')) && (b!=3D'_') && ((b<'a') || (b>'z'))) { LinePtr--; return FALSE; } Name[0] =3D b; i =3D 1; if (LinePtr=3D'0') && (b<=3D'9') || (b>=3D'A') && (b<=3D'Z') || (b>=3D'_') || (b>=3D'a') && (b<=3D'z') ) ) { if (i=20 >=20 >=20 > John Pearson wrote: >=20 > >I want to make a couple small changes to some Windows C/C++ source cod= e > (Tera > >Term source code). > > > >Does MicroSoft offer any free compiler or anything that I can do this > with. > > > >Or better yet, would anyone be able to compile it for me. > > > >Thanks for any help. > > > >John > > > >-- > >http://www.piclist.com hint: PICList Posts must start with ONE topic: > >[PIC]:,[SX]:,[AVR]: ->uP ONLY! [EE]:,[OT]: ->Other [BUY]:,[AD]: ->Ads > > > > > > >=20 > -- > http://www.piclist.com hint: PICList Posts must start with ONE topic: > [PIC]:,[SX]:,[AVR]: ->uP ONLY! [EE]:,[OT]: ->Other [BUY]:,[AD]: ->Ads >=20 -- http://www.piclist.com hint: PICList Posts must start with ONE topic: [PIC]:,[SX]:,[AVR]: ->uP ONLY! [EE]:,[OT]: ->Other [BUY]:,[AD]: ->Ads