One of the great things about gcc and in particular its C/C++ preprocessor is various extensions that it has. In this post I would like to briefly describe three of them. One allows to turn C/C++ token into a string. Here token is anything that you can pass as an argument to a macro. Second allows you […]
Tags:
C++,
concatenation,
debug macro,
define,
expression,
macro,
macros with variable number of arguments,
preprocessor,
string,
stringification,
stringify,
token,
tricks,
variadic macros 3 Comments |
Read the rest of this entry »
Posted on August 21, 2008, 1:40 pm, by Alexander Sandler, under
Resources.
This page presents IDA macros I’ve written. Load PE/COFF symbols Introduction Download Installation and use Same script but in a standalone version Load PE/COFF symbolsBACK TO TOC IntroductionBACK TO TOC It appears that when IDA parses symbols of Windows applications compiled with gcc (cygwin), it does not load symbol names properly. I.e. instead of real […]
Posted on January 25, 2008, 10:14 pm, by Alexander Sandler, under
Resources.
Many years ago I started working with an editor named Visual SlickEdit. At a time it was the most advanced editor for software development. Despite years have passed, I believe it is still one of the best editors available for programmers. Among its advantages is exceptionally powerful macro language. Many people don’t know this but […]