Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Watcom C/C++ User's Guide - the "zg" option is similar to the "v" option except that function http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
The "zg" option is similar to the "v" option except that function
declarations will be output to the "DEF" file using base types (i.e.,
typedefs are reduced to their base type).
Example:

     typedef unsigned int UINT;
     UINT f( UINT x )
      {
         return( x + 1 );
      }

If you use the "v" option, the output will be:


     extern UINT f(UINT );

If you use the "zg" option, the output will be:


     extern unsigned int f(unsigned int );

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson