RadASM 2.2.0.1 with C/C++ package
Get it here:
http://radasm.visualassembler.com/Upload/RadASM2201.zip
Whats new:
- Find should now work with any locale (upper/lower case problem)
- Fixed a disabled menu item problem in AlexMenu addin.
- Added support for C/C++ (VC6) See included readme.txt file
KetilO
Nice! I like to see the C/C++ support.. ;)
Thanks Tommy
New upload.
- Added support for F2 - Find Declare
Since I am not a C programmer I could need help completing the cppType.api file.
KetilO
Hi all
New upload.
- Added Collapse addin (Saves collapsed states to project file). Activate with addin manager.
KetilO
Thanks, addin works perfectly :thumbu
I wish to see RadAsm supports structure member listing in the future. :thumbu
:toothy RadAsm is able to use cpp. Could i configure RadAsm to use GCC ? :green
Anyway :cheekygreen:
setting the dialog font to Tahoma,8 is causing the hyperlink in the Help > About dialog to be chopped on the left :(
Hi BiMode
Currently the cpp parser does not handle locals at all. Global structures are working.
KetilO
Hi ernest33
Thanks
KetilO
Hi shantanu_gadgil
Use the language option to magnify the dialogs a little.
KetilO
Hi all
New upload.
- Improved variable parsing
char szFileName[MAX_PATH]="",szLine[]="Ln: %d Char: %d",szBuff[512]="",szTst[10]="abc";
ULONG Var1,Var2,Var3;
- Added typedef parsing
typedef LNG(ULONG);
LNG MyVar1,MyVar2;
- Added description on how to enable cpp template creation in ReadMe.txt
- Changed the way the linker commandline includes libraries.
KetilO
hi all!
to KetilO: could you show me how to add this option to link command line "/SECTION:.bss,s"
when i add this , Radasm converts it to "/SECTION:.bss s" , so the linker ignore it . Thank you.
Hi secmask
There is a trick. Type "/SECTION:.bss|s" instead. RadASM will replace pipe symbol with a comma.
KetilO
Hi all
New upload:
- Fixed bugs in CppParse.dll
- Added C++ console example.
- Updated Cpp.ini (Enviroment paths (RC.EXE), Project types and CodeMacro)
- Included CppParse source (masm)
- Included Collapse sourct (masm)
KetilO
Hi all
New upload
- Fixed small collapse bug in RAEdit
- Fixed caret movement problem in RAEdit when DBCS font (Chinese).
- Fixed delete char problem in RAEdit when DBCS font (Chinese).
KetilO
Hi all
New upload:
- The correct CppParse.dll (Previous was the debug version)
- Fixed a bug in dialog editor that could cause RadASM to GPF.
- Updated Russian language file.
KetilO
Wow ;)
This means i will be able to drop VC6 IDE soon ;)
:U
Hi BogdanOntanu
Shure, if you ..
#define WIN32_LEAN_AND_MEAN
and stay away from ActiveX an classes. :green2
KetilO
Hi all
New upload
- Fixed several problems in the AlexMenu addin.
KetilO
Hi all
New upload
- The CppParser now support locals and structure code complete.
KetilO
ketilO,
thats cool!
how about adding a auto convert '.' to '->' when accesing to a structure variale who is a pointer ?
like
MYSTRUCT* mys;
when typing: 'mys.myvar'
RadASM should convert it to
'mys->myvar'
regards,
-Wizzra
Thanks wizzra
New upload.
Unfortunatly RadASM's wordlist does not know if a var is a pointer.
I made a few changes and you will get code complete on things like:
mys->myvar; and lnr=((HESELCHANGE *)lParam)->line;
KetilO
well,
on '.' rad should check if the var is declaired with the prefix '*' (but also not vars such as ** and *** and so on.. :) )