home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgLangD.iso / Java++ / SHAREDIDE / BIN / AUTOEXP.DAT next >
Text File  |  1996-11-13  |  4KB  |  112 lines

  1. ; AutoExp.Dat - templates for automaticially expanding data
  2. ; Copyright(c) 1997 Microsoft Corporation. All Rights Reserved.
  3. ;---------------------------------------------------------------
  4. ;
  5. ; While debugging, Data Tips and items in the Watch and Variable
  6. ; windows are automatically expanded to show their most important
  7. ; elements. The expansion follows the format given by the rules
  8. ; in this file. You can add rules for your types or change the
  9. ; predefined rules.
  10. ;
  11. ; For good examples, read the rules in this file.
  12. ;
  13. ; An AutoExpand rule is a line with the name of a type, an equals 
  14. ; sign, and text with replaceable parts in angle brackets. The 
  15. ; part in angle brackets names a member of the type and an 
  16. ; optional Watch format specifier.
  17. ;
  18. ; AutoExpand rules use the following syntax. The equals sign (=), 
  19. ; angle brackets (<>), and comma are taken literally. Square
  20. ; brackets ([]) indicate optional items.
  21. ;
  22. ; type=[text]<member[,format]>...
  23. ;
  24. ; type      Name of the type.
  25. ;
  26. ; text      Any text.Usually the name of the member to display, 
  27. ;           or a shorthand name for the member.
  28. ;
  29. ; member    Name of a member to display.
  30. ;
  31. ; format    Watch format specifier. One of the following:
  32. ;
  33. ;   Letter  Description                 Sample         Display
  34. ;   ------  --------------------------  ------------   -------------
  35. ;   d,i     Signed decimal integer      0xF000F065,d   -268373915
  36. ;   u       Unsigned decimal integer    0x0065,u       101
  37. ;   o       Unsigned octal integer      0xF065,o       0170145
  38. ;   x,X     Hexadecimal integer         61541,X        0X0000F065
  39. ;   l,h     long or short prefix for    00406042,hx    0x0c22
  40. ;             d, i, u, o, x, X
  41. ;   f       Signed floating-point       3./2.,f        1.500000
  42. ;   e       Signed scientific-notation  3./2.,e        1.500000e+000
  43. ;   g       Shorter of e and f          3./2.,g        1.5
  44. ;   c       Single character            0x0065,c       'e'
  45. ;   s       Zero-terminated string      0x0012fde8,s   "Hello world"
  46. ;   su      Unicode string              0x007200c4,su  "Hello world"
  47. ;
  48. ; The special format <,t> specifies the name of the most-derived 
  49. ; type of the object. This is especially useful with pointers or
  50. ; references to a base class.
  51. ;
  52. ; If there is no rule for a class, the base classes are checked for
  53. ; a matching rule.
  54. ;
  55. ; -------
  56. ; Unicode
  57. ; -------
  58. ;
  59. ; If your application is built for Unicode, you'll want Unicode 
  60. ; strings to automatically expand as text, rather than arrays of 
  61. ; unsigned short.  To automatically display Unicode strings as 
  62. ; text, set DisplayUnicode=1 in the [Unicode] section below.
  63. ;
  64. ;---------------------------------------------------------------
  65. [AutoExpand]
  66.  
  67. ; from windef.h
  68. tagPOINT =x=<x> y=<y>
  69. tagRECT =top=<top> bottom=<bottom> left=<left> right=<right>
  70.  
  71. ; from winuser.h
  72. tagMSG =msg=<message,x> wp=<wParam,x> lp=<lParam,x>
  73.  
  74. ; from afxwin.h
  75. CDC =hDC=<m_hDC> attrib=<m_hAttribDC>
  76. CPaintDC =<,t> hWnd=<m_hWnd>
  77. CPoint =x=<x> y=<y>
  78. CRect =top=<top> bottom=<bottom> left=<left> right=<right>
  79. CSize =cx=<cx> cy=<cy>
  80. CWnd =<,t> hWnd=<m_hWnd>
  81. CWinApp =<,t> <m_pszAppName,s>
  82. CWinThread =<,t> h=<m_hThread> proc=<m_pfnThreadProc>
  83.  
  84. ; from afxcoll.h
  85. CPtrList =cnt=<m_nCount>
  86.  
  87. ; from afxstat_.h
  88. CProcessLocalObject =<,t>
  89. CThreadLocalObject =<,t>
  90.  
  91. ; from afx.h
  92. CArchiveException =cause=<m_cause>
  93. CFile =hFile=<m_hFile> name=<m_strFileName.m_pchData,s>
  94. CFileException =cause=<m_cause> OS Error=m_lOsError
  95. CMemFile =pos=<m_nPosition> size=<m_nFileSize>
  96. CObject =<,t>
  97. CRuntimeClass =<m_lpszClassName,s>
  98. CStdioFile =FILE*=<m_pStream> name=<m_strFilename.m_pchData,s>
  99. CString =<m_pchData,s>
  100. CTimeSpan =time=<m_time>
  101. CTime =time=<m_time>
  102.  
  103. ; from afxcoll.h
  104. CByteArray =count=<m_nCount>
  105. CStringList =count=<m_nCount>
  106. ; same for all CXXXArray classes
  107. ; same for CXXXList
  108. ; same for CMapXXToXX
  109.  
  110. [Unicode]
  111. DisplayUnicode=0
  112.