MFC Classes List
-
Hi, I'm compiling Keywords to add to my XEmacs Syntax Highlighting... I added all the win32 basic types and am now wanting to add MFC Class names (like CTreeCtrl), however even google doesn't seem to know where to find a simple list of all classes... I don't really feel like copy and pasting, I prefer scripting the operation,....
does anyone know where to find a complete list that is copy-able? -- Arjen
-
Hi, I'm compiling Keywords to add to my XEmacs Syntax Highlighting... I added all the win32 basic types and am now wanting to add MFC Class names (like CTreeCtrl), however even google doesn't seem to know where to find a simple list of all classes... I don't really feel like copy and pasting, I prefer scripting the operation,....
does anyone know where to find a complete list that is copy-able? -- Arjen
Perl will do that in a pinch. :)
foreach $a ( <C:\\msdev6\\vc98\\mfc\\include\\*.h> )
{
open HEADER, $a or die $!;while ( <HEADER> )
{
print "$1\n" if /^class (\w+)/;
}close HEADER;
}--Mike-- http://home.inreach.com/mdunn/ You are the weakest link, GOODBYE!