GDexpi | CodeGuru

GDexpi

The addin for visual studio is like the preprocessor in C++. The difference is that you can select which commands that are going to be replaced by the macro you have selected. A typical scenario could be: You are going to write a class member function. The function without code in it should look like […]

Written By
CodeGuru Staff
CodeGuru Staff
Oct 31, 1998
2 minute read
CodeGuru content and product recommendations are editorially independent. We may make money when you click on links to our partners. Learn More

The addin for visual studio is like the preprocessor in C++. The difference is that you can select which commands that are going
to be replaced by the macro you have selected.

A typical scenario could be:

  • You are going to write a class member function.
  • The function without code in it should look like
    //***********************
    /*TYPE:
    PURPOSE:
    RETURN: */
    void CMyClass::Function(
        int iValue, //
        LPCTSTR pszText //
        )
    {
        // Place code here
    }
     
  • I think that this is (the format for the function certainly differs) is something that you type very often. But with the
    GDexpi addin you can create a macro with parameters and then select it for expansion. It is easy to write a macro in VB for
    VC and add it for the header. But if you are going to create a macro that writes the whole function it becomes more work for
    you. But with the GDexpi this is a very easy task.
  • We create the macro for the function in a file that later should be read by the GDexpi.
    #define[escape] function( ret, class, name, p1, p2, p3, p4, p5, p6, p7 )
    #start
    //*************************************************************************************************n
    /*TYPE:  n
    PURPOSE: n
    RETURN:  */n
    #if( ret )[ret ] #elseif(ret =! 123)[void ]class::name(n
    #if( p1 ) [   p1, //n]
    #if( p2 ) [   p2, //n]
    #if( p3 ) [   p3, //n]
    #if( p4 ) [   p4, //n]
    #if( p5 ) [   p5, //n]
    #if( p6 ) [   p6, //n]
    #if( p7 ) [   p7, //n]
       )n
    {n
    #if( ret = HRESULT )[   HRESULT hrReturn;n   hrReturn = S_OK;n]
    #elseif( ret =* p )[   ret p##ret;n]
    #if( ret = HRESULT )[   return hrReturn;n]
    #elseif( ret =* p )[   return NULL;]
    }n
    #end
     

    The macro at first might look a little strange. For example there are more parameters than our function should have.
    But the reason for this is that the macro should be more general. A function could have more that two parameters as you know…..

    In the macro text there is also a “#if( p1 ) [ p1, //n]”. This a way of telling if the parameter for the value has got a
    value then the text between the brackets should be typed in tha macro. You can leave out parameters if you like.

  • Know we are going to use our macro in VC for creating the function. Type “function( void, CMyClass, Function, “int iValue”,
    “LPCTSTR pszText” )” in a window in VC and select the text. Press command button (installed when you add GDexpi to Visual Studio)
    and the macro is expanded to the function header that you defied in macro text.
    Feature…..

    You don’t have to write parantheses or commas. This will produce same result ” function( void CMyClass Function “int iValue”
    “LPCTSTR pszText” ” . Also if this is the only text on current row you don’t have to select the text for making it possible for the
    GDexpi to parse macro.

Know you probably can figure out what the GDexpi is all about. Skip typing that is done often. Things like ASSERT ( ….. ),
class bodies, HTML !!!! (very usefull), SQL queries and, iterating through lists and a lot more can be more fun to code if you
don’t have to type so much.

If you have forgotten the format of a macro then just type “?function” and select it. GDexpi will then type the whole macro
for you, and your task is only to replace parameters with more suitably values.

Download GDexpi – 40 KB

CodeGuru Logo

CodeGuru covers topics related to Microsoft-related software development, mobile development, database management, and web application programming. In addition to tutorials and how-tos that teach programmers how to code in Microsoft-related languages and frameworks like C# and .Net, we also publish articles on software development tools, the latest in developer news, and advice for project managers. Cloud services such as Microsoft Azure and database options including SQL Server and MSSQL are also frequently covered.

Property of TechnologyAdvice. © 2026 TechnologyAdvice. All Rights Reserved

Advertiser Disclosure: Some of the products that appear on this site are from companies from which TechnologyAdvice receives compensation. This compensation may impact how and where products appear on this site including, for example, the order in which they appear. TechnologyAdvice does not include all companies or all types of products available in the marketplace.