summaryrefslogtreecommitdiffstats
path: root/third_party/wtl/readme.htm
blob: f48f77b28d93807c4ae72eb294723aa3048fee9e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
<html>

<head>
<meta http-equiv="Content-Language" content="en-us">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Windows Template Library</title>
<style type="text/css">
.style1 {
	font-family: Arial;
	font-weight: bold;
	font-size: x-small;
}
.style2 {
	font-family: Arial;
	font-size: x-small;
}
.style3 {
	text-align: right;
}
</style>
</head>

<body>

<table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" id="AutoNumber3">
  <tr>
    <td class="style3">
	<p style="text-align: left"><font face="Arial"><b>Windows Template Library - WTL Version 8.0</b></font><font face="Arial" size="2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
	(build 7161) 6/10/07</font></td>
  </tr>
  <tr>
    <td><hr></td>
  </tr>
  <tr>
    <td><font face="Arial" size="2">Copyright &#169; 2007 Microsoft Corporation.
All rights reserved.</font></td>
  </tr>
  <tr>
    <td>&nbsp;</td>
  </tr>
  <tr>
    <td><font face="Arial" size="2">This file is a part of the Windows Template 
	Library.<br>
	The use and distribution terms for this software are covered by the<br>
	Microsoft Permissive License (Ms-PL) which can be found in the file<br>
	Ms-PL.txt at the root of this distribution.</font></td>
  </tr>
  <tr>
    <td><hr></td>
  </tr>
</table>

<p style=margin:0in>&nbsp;</p>

<p style=margin:0in>&nbsp;</p>

<p style=margin:0in><font face="Arial" size="2">Welcome to the Windows Template Library, version 
8.0. This document contains the following topics:</font></p>
<p style=margin:0in>&nbsp;</p>
<ul style="margin-top:0in;margin-bottom:0in">
	<li><font face="Arial" size="2"><a href="#Introduction">Introduction</a></font></li>
	<li><font face="Arial" size="2"><a href="#Features And Installation">Features 
  And Installation</a></font></li>
	<li><font face="Arial" size="2"><a href="#Packing List">Packing List</a></font></li>
	<li><font face="Arial" size="2"><a href="#Class Overview">Class Overview</a></font></li>
	<li><font face="Arial" size="2"><a href="#ATL/WTL AppWizard">ATL/WTL AppWizard</a></font></li>
	<li><a href="#Support for Windows CE"><font face="Arial" size="2">S</font></a><font face="Arial" size="2"><a href="#Support for Windows CE">upport 
  for Windows CE</a></font></li>
	<li><font face="Arial" size="2">
	<a href="#Support for Visual C++ 2005 Express">Support for Visual C++ 2005 
	Express</a></font></li>
	<li><font face="Arial" size="2"><a href="#Notes">Notes</a></font></li>
	<li><font face="Arial" size="2"><a href="#Changes Between WTL 8.0 And 7.5">Changes Between WTL 
	8.0 And 7.5</a></font></li>
	<li><font face="Arial" size="2"><a href="#Changes Between WTL 7.5 And 7.1">Changes Between WTL 7.5 And 7.1</a></font></li>
	<li><font face="Arial" size="2"><a href="#Changes Between WTL 7.1 And 7.0">Changes Between WTL 
  7.1 And 7.0</a></font></li>
	<li><font face="Arial" size="2"><a href="#Changes Between WTL 7.0 And 3.1">Changes Between WTL 
  7.0 And 3.1</a></font></li>
	<li><font face="Arial" size="2"><a href="#Changes Between WTL 3.1 And 3.0">Changes Between WTL 3.1 And 3.0</a></font></li>
</ul>
<p style=margin:0in>&nbsp;</p>
<p style=margin:0in>&nbsp;</p>
<p style=margin:0in><font face="Arial">
<b><a name="Introduction"></a>Introduction</b></font></p>
<p style=margin:0in>&nbsp;</p>
<p style=margin:0in><font face="Arial" size="2">Windows Template Library, or WTL, is a set of 
classes that extend ATL to support more complex user interfaces for either 
applications or various UI components, while maintaining the big advantage of 
ATL - small and fast code. WTL classes were designed to be the best and the 
easiest way to implement rich Win32 based UI for ATL based applications, 
servers, components, and controls.</font></p>
<p style=margin:0in>&nbsp;</p>
<p style=margin:0in><font face="Arial" size="2">WTL provides support for implementing 
many 
user interface elements, from frame and popup windows, to MDI, standard and 
common controls, common dialogs, property sheets and pages, GDI objects, UI 
updating, scrollable windows, splitter windows, command bars, etc. The WTL 
classes are mostly templated and use minimal instance data and inline functions. 
They were not designed as a framework, so they do not force a particular 
application model, and can accommodate any. The classes do not use hooks or 
thread local storage, so they have no restrictions that those techniques impose. 
They also have no inter-dependencies and can be freely mixed with straight SDK 
code. In summary, WTL delivers very small and efficient code, very close in size 
and speed to SDK programs, while presenting a more logical, object oriented 
model to a programmer.</font></p>
<p style=margin:0in>&nbsp;</p>
<p style=margin:0in>&nbsp;</p>
<p style=margin:0in><font face="Arial">
<b><a name="Features And Installation"></a>Features And Installation</b></font></p>
<p style=margin:0in>&nbsp;</p>
<p style=margin:0in><font face="Arial" size="2">This is the sixth public release 
of WTL, after WTL 3.0, 3.1, 7.0, 7.1, and 7.5. It is also the second release of WTL 
under the open license, enabling developers from the WTL community to 
contribute to the library.</font></p>
<p style=margin:0in>&nbsp;</p>
<p style=margin:0in><font face="Arial" size="2">WTL classes can be used with either VC++ 6.0 and ATL 3.0, VC++ .NET 
2002 and ATL 7.0, VC++ .NET 2003 and ATL 7.1, VC++ 2005 with ATL 8.0, or EVC++ 4.0 or 3.0 with ATL for 
Windows CE. AppWizard for VC++ .NET 2002 and 2003, and Visual C++ 2005 is 
included.</font></p>
<p style=margin:0in>&nbsp;</p>
<p style=margin:0in><font face="Arial" size="2">The WTL classes are provided in 
header files located in the include directory. The only header files that must 
be included is atlapp.h, while others can be used when needed. The name of the 
file doesn't mean that you have to create an application, just that 
atlapp.h contains base definitions required for WTL projects.</font></p>
<p style=margin:0in>&nbsp;</p>
<p style=margin:0in><font face="Arial" size="2">To install WTL, just copy the whole directory 
structure, or unpack the archive file, to the location of your choice. Please be sure to
<b>add the WTL\include 
directory</b> to the list of include directories in VC++, so that the compiler 
can find them when you include them in your projects..</font></p>
<p style=margin:0in>&nbsp;</p>
<p style=margin:0in><font face="Arial" size="2">Setup programs for the AppWizard are provided. After executing the setup scripts, ATL/WTL AppWizard will appear in the list of AppWizards when you select File.New.Project 
in VC++ IDE. The file AppWiz\setup70.js is the setup script for VC++ .NET 2002, AppWiz\setup71.js is for VC++ 
.NET 2003, and AppWiz\setup80.js is for VC++ 2005. AppWizCE\setup80.js is setup 
script for VC++ 2005 SmartDevice projects.</font></p>
<p style=margin:0in>&nbsp;</p>
<p style=margin:0in><font face="Arial" size="2">To manually install AppWizard 
for VC++ .NET 2002/2003, copy all WTLAppWiz.* files from AppWiz\Files to VC++ .NET 
projects directory, %VC7DIR%\Vc7\vcprojects, where %VC7DIR% is the directory 
where VC++ .NET 2002/2003 is installed. After that,&nbsp;open WTLAppWiz.vsz and modify the 
like that contains ABSOLUTE_PATH to contain %WTLDIR%\AppWiz\Files, where 
%WTLDIR% is the directory where WTL files are.</font></p>
<p style=margin:0in>&nbsp;</p>
<p style=margin:0in><font face="Arial" size="2">Platform support and 
requirements:</font></p>
<p style=margin:0in>&nbsp;</p>
<p style=margin:0in><font face="Arial" size="2">&nbsp;&nbsp;&nbsp; Compiler/IDE/ATL:</font></p>
<p style=margin:0in><font face="Arial" size="2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
Visual C++ 6.0&nbsp;&nbsp; (ATL 3.0)</font></p>
<p style=margin:0in><font face="Arial" size="2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
Visual C++.NET 2002&nbsp;&nbsp; (ATL 7.0)</font></p>
<p style=margin:0in><font face="Arial" size="2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
Visual C++.NET 2003&nbsp;&nbsp; (ATL 7.1)</font></p>
<p style=margin:0in><font face="Arial" size="2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
Visual C++ 2005&nbsp;&nbsp; (ATL 8.0)</font></p>
<p style=margin:0in>&nbsp;</p>
<p style=margin:0in><font face="Arial" size="2">&nbsp;&nbsp;&nbsp; SDK 
(optional):</font></p>
<p style=margin:0in><font face="Arial" size="2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
Any Platform SDK from January 2000 release up to the latest Windows SDK</font></p>
<p style=margin:0in>&nbsp;</p>
<p style=margin:0in><font face="Arial" size="2">&nbsp;&nbsp;&nbsp; Windows CE 
development:</font></p>
<p style=margin:0in><font face="Arial" size="2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
eMbedded Visual C++ 3.0 - Pocket PC, Pocket PC 2002</font></p>
<p style=margin:0in><font face="Arial" size="2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
eMbedded Visual C++ 4.0 - STANDARDSDK_410, Pocket PC 2003, Smartphone 2003,
</font></p>
<p style=margin:0in><font face="Arial" size="2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
STANDARDSDK_500, Pocket PC 2003 SE, Smartphone 2003 SE</font></p>
<p style=margin:0in><font face="Arial" size="2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
Visual C++ 2005 - Pocket PC 2003 SE, Smartphone 2003 SE, STANDARDSDK_500,</font></p>
<p style=margin:0in><span class="style2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
</span><font face="Arial" size="2">Windows Mobile 5.0 (Pocket PC and Smartphone),<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
Windows Mobile 6.0 (Standard and Professional)</font></p>
<p style=margin:0in>&nbsp;</p>
<p style=margin:0in>&nbsp;</p>
<p style=margin:0in><font face="Arial">
<b><a name="Packing List"></a>Packing List</b></font></p>
<p style=margin:0in>&nbsp;</p>
<table border="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="497" id="AutoNumber2">
  <tr>
    <td width="136"><font face="Arial" size="2">File Name</font><font face="Arial">:</font></td>
    <td width="358"><font face="Arial" size="2">Description:</font></td>
  </tr>
  <tr>
    <td width="494" colspan="2"><hr></td>
  </tr>
  <tr>
    <td width="136"><font face="Arial" size="2">readme.htm</font></td>
    <td width="358"><font face="Arial" size="2">this file</font></td>
  </tr>
  <tr>
    <td width="136"><font face="Arial" size="2">Ms-PL.txt</font></td>
    <td width="358"><font face="Arial" size="2">license</font></td>
  </tr>
  <tr>
    <td width="494" colspan="2">&nbsp;</td>
  </tr>
  <tr>
    <td width="494" colspan="2"><font face="Arial" size="2">include\</font></td>
  </tr>
  <tr>
    <td width="136"><font face="Arial" size="2">&nbsp;&nbsp;&nbsp; atlapp.h</font></td>
    <td width="358"><font face="Arial" size="2">message loop, interfaces, 
    general app stuff</font></td>
  </tr>
  <tr>
    <td width="136"><font face="Arial" size="2">&nbsp;&nbsp;&nbsp; atlcrack.h</font></td>
    <td width="358"><font face="Arial" size="2">message cracker macros</font></td>
  </tr>
  <tr>
    <td width="136"><font face="Arial" size="2">&nbsp;&nbsp;&nbsp; atlctrls.h</font></td>
    <td width="358"><font face="Arial" size="2">standard and common control 
    classes</font></td>
  </tr>
  <tr>
    <td width="136"><font face="Arial" size="2">&nbsp;&nbsp;&nbsp; atlctrlw.h</font></td>
    <td width="358"><font face="Arial" size="2">command bar class</font></td>
  </tr>
  <tr>
    <td width="136"><font face="Arial" size="2">&nbsp;&nbsp;&nbsp; atlctrlx.h</font></td>
    <td width="358"><font face="Arial" size="2">bitmap button, check list view, 
    and other controls</font></td>
  </tr>
  <tr>
    <td width="136"><font face="Arial" size="2">&nbsp;&nbsp;&nbsp; atlddx.h</font></td>
    <td width="358"><font face="Arial" size="2">data exchange for dialogs and 
    windows</font></td>
  </tr>
  <tr>
    <td width="136"><font face="Arial" size="2">&nbsp;&nbsp;&nbsp; atldlgs.h</font></td>
    <td width="358"><font face="Arial" size="2">common dialog classes, property 
    sheet and page classes</font></td>
  </tr>
  <tr>
    <td width="136"><font face="Arial" size="2">&nbsp;&nbsp;&nbsp; atlfind.h</font></td>
    <td width="358"><font face="Arial" size="2">Find/Replace support for Edit 
	and RichEdit</font></td>
  </tr>
  <tr>
    <td width="136"><font face="Arial" size="2">&nbsp;&nbsp;&nbsp; atlframe.h</font></td>
    <td width="358"><font face="Arial" size="2">frame window classes, MDI, 
    update UI classes</font></td>
  </tr>
  <tr>
    <td width="136"><font face="Arial" size="2">&nbsp;&nbsp;&nbsp; atlgdi.h</font></td>
    <td width="358"><font face="Arial" size="2">DC classes, GDI object classes</font></td>
  </tr>
  <tr>
    <td width="136"><font face="Arial" size="2">&nbsp;&nbsp;&nbsp; atlmisc.h</font></td>
    <td width="358"><font face="Arial" size="2">WTL ports of CPoint, CRect, 
    CSize, CString, etc.</font></td>
  </tr>
  <tr>
    <td width="136"><font face="Arial" size="2">&nbsp;&nbsp;&nbsp; atlprint.h</font></td>
    <td width="358"><font face="Arial" size="2">printing and print preview</font></td>
  </tr>
  <tr>
    <td width="136"><font face="Arial" size="2">&nbsp;&nbsp;&nbsp; atlres.h</font></td>
    <td width="358"><font face="Arial" size="2">standard resource IDs</font></td>
  </tr>
  <tr>
    <td width="136"><font face="Arial" size="2">&nbsp;&nbsp;&nbsp; atlresce.h</font></td>
    <td width="358"><font face="Arial" size="2">standard resource IDs for 
    Windows CE</font></td>
  </tr>
  <tr>
    <td width="136"><font face="Arial" size="2">&nbsp;&nbsp;&nbsp; atlscrl.h</font></td>
    <td width="358"><font face="Arial" size="2">scrollable windows</font></td>
  </tr>
  <tr>
    <td width="136"><font face="Arial" size="2">&nbsp;&nbsp;&nbsp; atlsplit.h</font></td>
    <td width="358"><font face="Arial" size="2">splitter windows</font></td>
  </tr>
  <tr>
    <td width="136"><font face="Arial" size="2">&nbsp;&nbsp;&nbsp; atltheme.h</font></td>
    <td width="358"><font face="Arial" size="2">Windows XP theme classes</font></td>
  </tr>
  <tr>
    <td width="136"><font face="Arial" size="2">&nbsp;&nbsp;&nbsp; atluser.h</font></td>
    <td width="358"><font face="Arial" size="2">menu class, USER object classes</font></td>
  </tr>
  <tr>
    <td width="136"><font face="Arial" size="2">&nbsp;&nbsp;&nbsp; atlwince.h</font></td>
    <td width="358"><font face="Arial" size="2">specific support for Windows CE 
	Mobile platforms</font></td>
  </tr>
  <tr>
    <td width="136"><font face="Arial" size="2">&nbsp;&nbsp;&nbsp; atlwinx.h</font></td>
    <td width="358"><font face="Arial" size="2">extensions of ATL windowing 
    support</font></td>
  </tr>
  <tr>
    <td width="494" colspan="2">&nbsp;</td>
  </tr>
  <tr>
    <td width="494" colspan="2"><font face="Arial" size="2">Samples\</font></td>
  </tr>
  <tr>
    <td width="136"><font face="Arial" size="2">&nbsp;&nbsp;&nbsp; Aero\...</font></td>
    <td width="358"><font face="Arial" size="2">Vista Aero glass showcase</font></td>
  </tr>
  <tr>
    <td width="136"><font face="Arial" size="2">&nbsp;&nbsp;&nbsp; Alpha\...</font></td>
    <td width="358"><font face="Arial" size="2">Windows XP 32-bit (alpha) 
    toolbar images</font></td>
  </tr>
  <tr>
    <td width="136"><font face="Arial" size="2">&nbsp;&nbsp;&nbsp; BmpView\...</font></td>
    <td width="358"><font face="Arial" size="2">bitmap file view sample</font></td>
  </tr>
  <tr>
    <td width="136"><font face="Arial" size="2">&nbsp;&nbsp;&nbsp; GuidGen\...</font></td>
    <td width="358"><font face="Arial" size="2">WTL version of the GuidGen 
    sample</font></td>
  </tr>
	<tr>
    <td width="136"><font face="Arial" size="2">&nbsp;&nbsp;&nbsp; ImageView\...</font></td>
    <td width="358"><font face="Arial" size="2">Full-featured PPC frame-view 
	application</font></td>
  </tr>
	<tr>
    <td width="136"><font face="Arial" size="2">&nbsp;&nbsp;&nbsp; MDIDocVw\...</font></td>
    <td width="358"><font face="Arial" size="2">WTL version of the MDI sample</font></td>
  </tr>
	<tr>
    <td width="136"><font face="Arial" size="2">&nbsp;&nbsp;&nbsp; MiniPie\...</font></td>
    <td width="358" class="style2">p<font size="2">ort of the SDK sample for 
	Mobile devices</font></td>
  </tr>
	<tr>
    <td width="136"><font face="Arial" size="2">&nbsp;&nbsp;&nbsp; MTPad\...</font></td>
    <td width="358"><font face="Arial" size="2">multithreaded notepad sample</font></td>
  </tr>
  <tr>
    <td width="136"><font face="Arial" size="2">&nbsp;&nbsp;&nbsp; SPControls\...</font></td>
    <td width="358"><font face="Arial" size="2">Barebone SmartPhone dialog 
	application</font></td>
  </tr>
  <tr>
    <td width="136"><font face="Arial" size="2">&nbsp;&nbsp;&nbsp; TabBrowser\...</font></td>
    <td width="358"><font face="Arial" size="2">Web browser using TabView</font></td>
  </tr>
  <tr>
    <td width="136"><font face="Arial" size="2">&nbsp;&nbsp;&nbsp; Wizard97Test\...</font></td>
    <td width="358"><font face="Arial" size="2">Wizard97 showcase 
    sample</font></td>
  </tr>
  <tr>
    <td width="136"><font face="Arial" size="2">&nbsp;&nbsp;&nbsp; WTLExplorer\...</font></td>
    <td width="358"><font face="Arial" size="2">Explorer-like application 
    sample</font></td>
  </tr>
  <tr>
    <td width="494" colspan="2">&nbsp;</td>
  </tr>
	<tr>
    <td width="494" colspan="2"><font face="Arial" size="2">AppWiz\</font></td>
  </tr>
	<tr>
    <td width="136"><font face="Arial" size="2">&nbsp;&nbsp;&nbsp; setup70.js</font></td>
    <td width="358"><font face="Arial" size="2">AppWizard setup program for VC++ 
    .NET 2002</font></td>
  </tr>
	<tr>
    <td width="136"><font face="Arial" size="2">&nbsp;&nbsp;&nbsp; setup71.js</font></td>
    <td width="358"><font face="Arial" size="2">AppWizard setup program for VC++ 
    .NET 2003</font></td>
  </tr>
	<tr>
    <td width="136"><font face="Arial" size="2">&nbsp;&nbsp;&nbsp; setup80.js</font></td>
    <td width="358"><font face="Arial" size="2">AppWizard setup program for VC++ 
    2005</font></td>
  </tr>
	<tr>
    <td width="136"><font face="Arial" size="2">&nbsp;&nbsp;&nbsp; setup80x.js</font></td>
    <td width="358"><font face="Arial" size="2">AppWizard setup program for VC++ 
    2005 Express</font></td>
  </tr>
	<tr>
    <td width="136"><font face="Arial" size="2">&nbsp;&nbsp;&nbsp; Files\...</font></td>
    <td width="358"><font face="Arial" size="2">WTL AppWizard for VC++ .NET 2002 and 
    2003 files</font></td>
  </tr>
  <tr>
    <td width="494" colspan="2">&nbsp;</td>
  </tr>
	<tr>
    <td width="494" colspan="2"><font face="Arial" size="2">AppWizCE\</font></td>
  </tr>
	<tr>
    <td width="136"><font face="Arial" size="2">&nbsp;&nbsp;&nbsp; setup80.js</font></td>
    <td width="358"><font face="Arial" size="2">AppWizard setup program for VC++ 
    2005</font></td>
  </tr>
	<tr>
    <td width="136"><font face="Arial" size="2">&nbsp;&nbsp;&nbsp; Files\...</font></td>
    <td width="358"><font face="Arial" size="2">WTL AppWizard for VC++ 2005 files</font></td>
  </tr>
  <tr>
    <td width="494" colspan="2">&nbsp;</td>
  </tr>
  <tr>
    <td width="494" colspan="2"><font face="Arial" size="2">AppWizMobile\</font></td>
  </tr>
  <tr>
    <td width="136"><font face="Arial" size="2">&nbsp;&nbsp;&nbsp; setup80.js</font></td>
    <td width="358"><font face="Arial" size="2">AppWizard Mobile setup program for VC++ 
    2005</font></td>
  </tr>
  <tr>
    <td width="136"><font face="Arial" size="2">&nbsp;&nbsp;&nbsp; Files\...</font></td>
    <td width="358"><font face="Arial" size="2">WTL AppWizard Mobile for VC++ 2005 files</font></td>
  </tr>
  </table>
<p style=margin:0in>&nbsp;</p>
<p style=margin:0in>&nbsp;</p>
<p style=margin:0in><font face="Arial">
<b><a name="Class Overview"></a>Class Overview</b></font></p>
<p style=margin:0in>&nbsp;</p>
<table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" id="AutoNumber4">
  <tr>
    <td><font face="Arial" size="2">usage:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    </font></td>
    <td><font face="Arial" size="2"><b>mi base</b></font></td>
    <td>&nbsp;&nbsp; -</td>
    <td><font face="Arial" size="2">&nbsp;&nbsp; a base class (multiple 
    inheritance)</font></td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td><font face="Arial" size="2"><b>client</b></font></td>
    <td>&nbsp;&nbsp; -</td>
    <td><font face="Arial" size="2">&nbsp;&nbsp; wrapper class for a handle</font></td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td><font face="Arial" size="2"><b>as-is</b></font></td>
    <td>&nbsp;&nbsp; -</td>
    <td><font face="Arial" size="2">&nbsp;&nbsp; to be used directly</font></td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td><font face="Arial" size="2"><b>impl</b></font></td>
    <td>&nbsp;&nbsp; -</td>
    <td><font face="Arial" size="2">&nbsp;&nbsp; implements a window (has 
    WindowProc) or other support</font></td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td><font face="Arial" size="2"><b>helper</b></font></td>
    <td>&nbsp;&nbsp; -</td>
    <td><font face="Arial" size="2">&nbsp;&nbsp; a helper class</font></td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td><font face="Arial" size="2"><b>base</b></font></td>
    <td>&nbsp;&nbsp; -</td>
    <td><font face="Arial" size="2">&nbsp;&nbsp; implementation base class</font></td>
  </tr>
</table>
<p style=margin:0in>&nbsp;</p>
<table border="1" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" id="AutoNumber1" width="600">
  <tr>
    <td width="220"><b><font face="Arial" size="2">class name:</font></b></td>
    <td width="114"><b><font face="Arial" size="2">usage:</font></b></td>
    <td width="253"><b><font face="Arial" size="2">description:</font></b></td>
  </tr>
  <tr>
    <td colspan="3" width="593"><font size="2" face="Arial"><br>App/module support</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CAppModule</font></b></td>
    <td width="115"><font face="Arial" size="2">as-is</font></td>
    <td width="255"><font face="Arial" size="2">app support, CComModule derived</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CServerAppModule</font></b></td>
    <td width="115"><font face="Arial" size="2">as-is</font></td>
    <td width="255"><font face="Arial" size="2">module for COM servers</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CMessageLoop</font></b></td>
    <td width="115"><font face="Arial" size="2">as-is</font></td>
    <td width="255"><font face="Arial" size="2">message loop</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CMessageFilter</font></b></td>
    <td width="115"><font face="Arial" size="2">mi base</font></td>
    <td width="255"><font face="Arial" size="2">message filter interface</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CIdleHandler</font></b></td>
    <td width="115"><font face="Arial" size="2">mi base</font></td>
    <td width="255"><font face="Arial" size="2">idle time handler interface</font></td>
  </tr>
  <tr>
    <td colspan="3" width="593"><font face="Arial" size="2"><br>Frame windows</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CFrameWindowImplBase</font></b></td>
    <td width="115"><font face="Arial" size="2">base</font></td>
    <td width="255"><font face="Arial" size="2">&nbsp;</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CFrameWindowImpl</font></b></td>
    <td width="115"><font face="Arial" size="2">impl</font></td>
    <td width="255"><font face="Arial" size="2">frame window support</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">COwnerDraw</font></b></td>
    <td width="115"><font face="Arial" size="2">impl mi base</font></td>
    <td width="255"><font face="Arial" size="2">owner-draw msg map and handlers</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CDialogResize</font>
    </b></td>
    <td width="115"><font face="Arial" size="2">impl mi base</font></td>
    <td width="255"><font face="Arial" size="2">support for resizing dialogs</font></td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CDoubleBufferImpl</font>
    </b></td>
    <td width="115"><font face="Arial" size="2">impl mi</font></td>
    <td width="255"><font face="Arial" size="2">double-buffer painting support</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CDoubleBufferWindowImpl</font>
    </b></td>
    <td width="115"><font face="Arial" size="2">impl</font></td>
    <td width="255"><font face="Arial" size="2">double-buffer painting window</font></td>
  </tr>
  <tr>
    <td colspan="3" width="593"><font face="Arial" size="2"><br>MDI windows</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CMDIWindow</font></b></td>
    <td width="115"><font face="Arial" size="2">client</font></td>
    <td width="255"><font face="Arial" size="2">MDI methods</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CMDIFrameWindowImpl</font></b></td>
    <td width="115"><font face="Arial" size="2">impl</font></td>
    <td width="255"><font face="Arial" size="2">MDI frame window</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CMDIChildWindowImpl</font></b></td>
    <td width="115"><font face="Arial" size="2">impl</font></td>
    <td width="255"><font face="Arial" size="2">MDI child window</font></td>
  </tr>
  <tr>
    <td colspan="3" width="593"><font face="Arial" size="2"><br>Update UI</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CUpdateUIBase</font></b></td>
    <td width="115"><font face="Arial" size="2">base</font></td>
    <td width="255"><font face="Arial" size="2">&nbsp;</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CUpdateUI</font></b></td>
    <td width="115"><font face="Arial" size="2">mi base class</font></td>
    <td width="255"><font face="Arial" size="2">provides support for UI update</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CDynamicUpdateUI</font></b></td>
    <td width="115"><font face="Arial" size="2">mi base class</font></td>
    <td width="255"><font face="Arial" size="2">provides dynamic support for UI update</font></td>
  </tr>
  <tr>
    <td colspan="3" width="593"><font face="Arial" size="2"><br>Standard controls</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CStatic</font></b></td>
    <td width="115"><font face="Arial" size="2">client</font></td>
    <td width="255"><font face="Arial" size="2">static ctrl</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CButton</font></b></td>
    <td width="115"><font face="Arial" size="2">client</font></td>
    <td width="255"><font face="Arial" size="2">button ctrl</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CListBox</font></b></td>
    <td width="115"><font face="Arial" size="2">client</font></td>
    <td width="255"><font face="Arial" size="2">list box ctrl</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CComboBox</font></b></td>
    <td width="115"><font face="Arial" size="2">client</font></td>
    <td width="255"><font face="Arial" size="2">combo box ctrl</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CEdit</font></b></td>
    <td width="115"><font face="Arial" size="2">client</font></td>
    <td width="255"><font face="Arial" size="2">edit ctrl</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CEditCommands</font></b></td>
    <td width="115"><font face="Arial" size="2">mi</font></td>
    <td width="255"><font face="Arial" size="2">standard edit command support</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CScrollBar</font></b></td>
    <td width="115"><font face="Arial" size="2">client</font></td>
    <td width="255"><font face="Arial" size="2">scroll bar ctrl</font></td>
  </tr>
  <tr>
    <td colspan="3" width="593"><font face="Arial" size="2"><br>Common controls</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CImageList</font></b></td>
    <td width="115"><font face="Arial" size="2">client</font></td>
    <td width="255"><font face="Arial" size="2">image list</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CListViewCtrl</font></b></td>
    <td width="115"><font face="Arial" size="2">client</font></td>
    <td width="255"><font face="Arial" size="2">list view ctrl</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CTreeViewCtrl</font></b></td>
    <td width="115"><font face="Arial" size="2">client</font></td>
    <td width="255"><font face="Arial" size="2">tree view ctrl</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CTreeItem</font></b></td>
    <td width="115"><font face="Arial" size="2">helper</font></td>
    <td width="255"><font face="Arial" size="2">&nbsp;</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CTreeViewCtrlEx</font></b></td>
    <td width="115"><font face="Arial" size="2">client</font></td>
    <td width="255"><font face="Arial" size="2">uses CTreeItem</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CHeaderCtrl</font></b></td>
    <td width="115"><font face="Arial" size="2">client</font></td>
    <td width="255"><font face="Arial" size="2">header bar ctrl</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CToolBarCtrl</font></b></td>
    <td width="115"><font face="Arial" size="2">client</font></td>
    <td width="255"><font face="Arial" size="2">toolbar ctrl</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CStatusBarCtrl</font></b></td>
    <td width="115"><font face="Arial" size="2">client</font></td>
    <td width="255"><font face="Arial" size="2">status bar ctrl</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CTabCtrl</font></b></td>
    <td width="115"><font face="Arial" size="2">client</font></td>
    <td width="255"><font face="Arial" size="2">tab ctrl</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CToolTipCtrl</font></b></td>
    <td width="115"><font face="Arial" size="2">client</font></td>
    <td width="255"><font face="Arial" size="2">tool tip ctrl</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CToolInfo</font></b></td>
    <td width="115"><font face="Arial" size="2">helper</font></td>
    <td width="255"><font face="Arial" size="2">&nbsp;</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CTrackBarCtrl</font></b></td>
    <td width="115"><font face="Arial" size="2">client</font></td>
    <td width="255"><font face="Arial" size="2">trackbar ctrl</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CUpDownCtrl</font></b></td>
    <td width="115"><font face="Arial" size="2">client</font></td>
    <td width="255"><font face="Arial" size="2">up-down ctrl</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CProgressBarCtrl</font></b></td>
    <td width="115"><font face="Arial" size="2">client</font></td>
    <td width="255"><font face="Arial" size="2">progress bar ctrl</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CHotKeyCtrl</font></b></td>
    <td width="115"><font face="Arial" size="2">client</font></td>
    <td width="255"><font face="Arial" size="2">hot key ctrl</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CAnimateCtrl</font></b></td>
    <td width="115"><font face="Arial" size="2">client</font></td>
    <td width="255"><font face="Arial" size="2">animation ctrl</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CRichEditCtrl</font></b></td>
    <td width="115"><font face="Arial" size="2">client</font></td>
    <td width="255"><font face="Arial" size="2">rich edit ctrl</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CRichEditCommands</font></b></td>
    <td width="115"><font face="Arial" size="2">mi</font></td>
    <td width="255"><font face="Arial" size="2">std rich edit commands support</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CDragListBox</font></b></td>
    <td width="115"><font face="Arial" size="2">client</font></td>
    <td width="255"><font face="Arial" size="2">drag list box</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CDragListNotifyImpl</font></b></td>
    <td width="115"><font face="Arial" size="2">impl mi class</font></td>
    <td width="255"><font face="Arial" size="2">support for notifications</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CReBarCtrl</font></b></td>
    <td width="115"><font face="Arial" size="2">client</font></td>
    <td width="255"><font face="Arial" size="2">rebar ctrl</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CComboBoxEx</font></b></td>
    <td width="115"><font face="Arial" size="2">client</font></td>
    <td width="255"><font face="Arial" size="2">extended combo box</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CDateTimePickerCtrl</font></b></td>
    <td width="115"><font face="Arial" size="2">client</font></td>
    <td width="255"><font face="Arial" size="2">date-time ctrl</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CFlatScrollBarImpl</font></b></td>
    <td width="115"><font face="Arial" size="2">mi impl</font></td>
    <td width="255"><font face="Arial" size="2">flat scroll bars support</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CFlatScrollBar</font></b></td>
    <td width="115"><font face="Arial" size="2">as-is</font></td>
    <td width="255"><font face="Arial" size="2">flat scroll bars support</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CIPAddressCtrl</font></b></td>
    <td width="115"><font face="Arial" size="2">client</font></td>
    <td width="255"><font face="Arial" size="2">IP address ctrl</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CMonthCalendarCtrl</font></b></td>
    <td width="115"><font face="Arial" size="2">client</font></td>
    <td width="255"><font face="Arial" size="2">month calendar ctrl</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CCustomDraw</font></b></td>
    <td width="115"><font face="Arial" size="2">impl mi class</font></td>
    <td width="255"><font face="Arial" size="2">custom draw handling support</font></td>
  </tr>
  <tr>
    <td colspan="3" width="593"><font face="Arial" size="2"><br>Windows CE controls</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CCECommandBarCtrl</font></b></td>
    <td width="115"><font face="Arial" size="2">client</font></td>
    <td width="255"><font face="Arial" size="2">command bar ctrl</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CCECommandBandsCtrl</font></b></td>
    <td width="115"><font face="Arial" size="2">client</font></td>
    <td width="255"><font face="Arial" size="2">command bands ctrl</font></td>
  </tr>
  <tr>
    <td colspan="3" width="593"><font face="Arial" size="2"><br>Property sheet &amp; page</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CPropertySheetWindow</font></b></td>
    <td width="115"><font face="Arial" size="2">client</font></td>
    <td width="255"><font face="Arial" size="2">&nbsp;</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CPropertySheetImpl</font></b></td>
    <td width="115"><font face="Arial" size="2">impl</font></td>
    <td width="255"><font face="Arial" size="2">property sheet </font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CPropertySheet</font></b></td>
    <td width="115"><font face="Arial" size="2">as-is</font></td>
    <td width="255"><font face="Arial" size="2">&nbsp;</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CPropertyPageWindow</font></b></td>
    <td width="115"><font face="Arial" size="2">client</font></td>
    <td width="255"><font face="Arial" size="2">&nbsp;</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CPropertyPageImpl</font></b></td>
    <td width="115"><font face="Arial" size="2">impl</font></td>
    <td width="255"><font face="Arial" size="2">property page</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CPropertyPage</font></b></td>
    <td width="115"><font face="Arial" size="2">as-is</font></td>
    <td width="255"><font face="Arial" size="2">&nbsp;</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CAxPropertyPageImpl</font></b></td>
    <td width="115"><font face="Arial" size="2">impl</font></td>
    <td width="255"><font face="Arial" size="2">property page with ActiveX</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CAxPropertyPage</font></b></td>
    <td width="115"><font face="Arial" size="2">as-is</font></td>
    <td width="255"><font face="Arial" size="2">&nbsp;</font></td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CWizard97SheetWindow</font></b></td>
    <td width="115"><font face="Arial" size="2">client</font></td>
    <td width="255"><font face="Arial" size="2">&nbsp;</font></td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CWizard97SheetImpl</font></b></td>
    <td width="115"><font face="Arial" size="2">impl</font></td>
    <td width="255"><font face="Arial" size="2">Wizard97 property sheet</font></td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CWizard97Sheet</font></b></td>
    <td width="115"><font face="Arial" size="2">as-is</font></td>
    <td width="255"><font face="Arial" size="2">&nbsp;</font></td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CWizard97PageWindow</font></b></td>
    <td width="115"><font face="Arial" size="2">client</font></td>
    <td width="255"><font face="Arial" size="2">&nbsp;</font></td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CWizard97PageImpl</font></b></td>
    <td width="115"><font face="Arial" size="2">impl</font></td>
    <td width="255"><font face="Arial" size="2">Wizard97 property page</font></td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CWizard97ExteriorPageImpl</font></b></td>
    <td width="115"><font face="Arial" size="2">impl</font></td>
    <td width="255"><font face="Arial" size="2">Wizard97 exterior page</font></td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CWizard97InteriorPageImpl</font></b></td>
    <td width="115"><font face="Arial" size="2">impl</font></td>
    <td width="255"><font face="Arial" size="2">Wizard97 interior page</font></td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CAeroWizardFrameWindow</font></b></td>
    <td width="115"><font face="Arial" size="2">client</font></td>
    <td width="255"><font face="Arial" size="2">&nbsp;</font></td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CAeroWizardFrameImpl</font></b></td>
    <td width="115"><font face="Arial" size="2">impl</font></td>
    <td width="255"><font face="Arial" size="2">Aero Wizard frame</font></td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CAeroWizardFrame</font></b></td>
    <td width="115"><font face="Arial" size="2">as-is</font></td>
    <td width="255"><font face="Arial" size="2">&nbsp;</font></td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CAeroWizardPageWindow</font></b></td>
    <td width="115"><font face="Arial" size="2">client</font></td>
    <td width="255"><font face="Arial" size="2">&nbsp;</font></td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CAeroWizardPageImpl</font></b></td>
    <td width="115"><font face="Arial" size="2">impl</font></td>
    <td width="255"><font face="Arial" size="2">Aero Wizard page</font></td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CAeroWizardPage</font></b></td>
    <td width="115"><font face="Arial" size="2">as-is</font></td>
    <td width="255"><font face="Arial" size="2">&nbsp;</font></td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CAeroWizardAxPageImpl</font></b></td>
    <td width="115"><font face="Arial" size="2">impl</font></td>
    <td width="255"><font face="Arial" size="2">Aero Wizard page with ActiveX</font></td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CAeroWizardAxPage</font></b></td>
    <td width="115"><font face="Arial" size="2">as-is</font></td>
    <td width="255"><font face="Arial" size="2">&nbsp;</font></td>
  </tr>
  <tr>
    <td colspan="3" width="593"><font face="Arial" size="2"><br>Common dialogs</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CFileDialogImpl</font></b></td>
    <td width="115"><font face="Arial" size="2">impl</font></td>
    <td width="255"><font face="Arial" size="2">GetOpenFileName/GetSaveFileName</font></td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CFileDialog</font></b></td>
    <td width="115"><font face="Arial" size="2">as-is</font></td>
    <td width="255"><font face="Arial" size="2">&nbsp;</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CMultiFileDialogImpl</font></b></td>
    <td width="115"><font face="Arial" size="2">impl</font></td>
    <td width="255"><font face="Arial" size="2">Multi-select GetOpenFileName</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CMultiFileDialog</font></b></td>
    <td width="115"><font face="Arial" size="2">as-is</font></td>
    <td width="255"><font face="Arial" size="2">&nbsp;</font></td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CShellFileDialogImpl</font></b></td>
    <td width="115"><font face="Arial" size="2">base</font></td>
    <td width="255"><font face="Arial" size="2">&nbsp;</font></td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CShellFileOpenDialogImpl</font></b></td>
    <td width="115"><font face="Arial" size="2">impl</font></td>
    <td width="255"><font face="Arial" size="2">Shell File Open dialog</font></td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CShellFileOpenDialog</font></b></td>
    <td width="115"><font face="Arial" size="2">as-is</font></td>
    <td width="255"><font face="Arial" size="2">&nbsp;</font></td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CShellFileSaveDialogImpl</font></b></td>
    <td width="115"><font face="Arial" size="2">impl</font></td>
    <td width="255"><font face="Arial" size="2">Shell File Save dialog</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CShellFileSaveDialog</font></b></td>
    <td width="115"><font face="Arial" size="2">as-is</font></td>
    <td width="255"><font face="Arial" size="2">&nbsp;</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CFolderDialogImpl</font></b></td>
    <td width="115"><font face="Arial" size="2">impl</font></td>
    <td width="255"><font face="Arial" size="2">directory picker</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CFolderDialog</font></b></td>
    <td width="115"><font face="Arial" size="2">as-is</font></td>
    <td width="255"><font face="Arial" size="2">&nbsp;</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CFontDialogImpl</font></b></td>
    <td width="115"><font face="Arial" size="2">impl</font></td>
    <td width="255"><font face="Arial" size="2">ChooseFont common dialog</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CFontDialog</font></b></td>
    <td width="115"><font face="Arial" size="2">as-is</font></td>
    <td width="255"><font face="Arial" size="2">&nbsp;</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CRichEditFontDialogImpl</font></b></td>
    <td width="115"><font face="Arial" size="2">impl</font></td>
    <td width="255"><font face="Arial" size="2">ChooseFont for rich edit</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CRichEditFontDialog</font></b></td>
    <td width="115"><font face="Arial" size="2">as-is</font></td>
    <td width="255"><font face="Arial" size="2">&nbsp;</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CColorDialogImpl</font></b></td>
    <td width="115"><font face="Arial" size="2">impl</font></td>
    <td width="255"><font face="Arial" size="2">ChooseColor common dialog</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CColorDialog</font></b></td>
    <td width="115"><font face="Arial" size="2">as-is</font></td>
    <td width="255"><font face="Arial" size="2">&nbsp;</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CPrintDialogImpl</font></b></td>
    <td width="115"><font face="Arial" size="2">impl</font></td>
    <td width="255"><font face="Arial" size="2">PrintDlg common dialog</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CPrintDialog</font></b></td>
    <td width="115"><font face="Arial" size="2">as-is</font></td>
    <td width="255"><font face="Arial" size="2">&nbsp;</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CPrintDialogExImpl</font></b></td>
    <td width="115"><font face="Arial" size="2">impl</font></td>
    <td width="255"><font face="Arial" size="2">new Win2000 print dialog</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CPrintDialogEx</font></b></td>
    <td width="115"><font face="Arial" size="2">as-is</font></td>
    <td width="255"><font face="Arial" size="2">&nbsp;</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CPageSetupDialogImpl</font></b></td>
    <td width="115"><font face="Arial" size="2">impl</font></td>
    <td width="255"><font face="Arial" size="2">PageSetupDlg common dialog</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CPageSetupDialog</font></b></td>
    <td width="115"><font face="Arial" size="2">as-is</font></td>
    <td width="255"><font face="Arial" size="2">&nbsp;</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CFindReplaceDialogImpl</font></b></td>
    <td width="115"><font face="Arial" size="2">impl</font></td>
    <td width="255"><font face="Arial" size="2">FindText/ReplaceText</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CFindReplaceDialog</font></b></td>
    <td width="115"><font face="Arial" size="2">as-is</font></td>
    <td width="255"><font face="Arial" size="2">&nbsp;</font></td>
  </tr>
  <tr>
    <td colspan="3" width="593"><font face="Arial" size="2"><br>User support</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CMenu</font></b></td>
    <td width="115"><font face="Arial" size="2">client</font></td>
    <td width="255"><font face="Arial" size="2">menu support</font></td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CMenuItemInfo</font></b></td>
    <td width="115"><font face="Arial" size="2">as-is</font></td>
    <td width="255"><font face="Arial" size="2">MENUITEMINFO wrapper</font></td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CAccelerator</font></b></td>
    <td width="115"><font face="Arial" size="2">client</font></td>
    <td width="255"><font face="Arial" size="2">accelerator table</font></td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CIcon</font></b></td>
    <td width="115"><font face="Arial" size="2">client</font></td>
    <td width="255"><font face="Arial" size="2">icon object</font></td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CCursor</font></b></td>
    <td width="115"><font face="Arial" size="2">client</font></td>
    <td width="255"><font face="Arial" size="2">cursor object</font></td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CResource</font></b></td>
    <td width="115"><font face="Arial" size="2">client</font></td>
    <td width="255"><font face="Arial" size="2">generic resource object</font></td>
  </tr>
  <tr>
    <td colspan="3" width="593"><font face="Arial" size="2"><br>GDI support</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CDC</font></b></td>
    <td width="115"><font face="Arial" size="2">client</font></td>
    <td width="255"><font face="Arial" size="2">DC support</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CPaintDC</font></b></td>
    <td width="115"><font face="Arial" size="2">client</font></td>
    <td width="255"><font face="Arial" size="2">for handling WM_PAINT</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CClientDC</font></b></td>
    <td width="115"><font face="Arial" size="2">client</font></td>
    <td width="255"><font face="Arial" size="2">for GetDC</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CWindowDC</font></b></td>
    <td width="115"><font face="Arial" size="2">client</font></td>
    <td width="255"><font face="Arial" size="2">for GetWindowDC</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CMemoryDC</font></b></td>
    <td width="115"><font face="Arial" size="2">client</font></td>
    <td width="255"><font face="Arial" size="2">in-memory DC</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CPen</font></b></td>
    <td width="115"><font face="Arial" size="2">client</font></td>
    <td width="255"><font face="Arial" size="2">GDI pen object</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CBrush</font></b></td>
    <td width="115"><font face="Arial" size="2">client</font></td>
    <td width="255"><font face="Arial" size="2">GDI brush object</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CLogFont</font></b></td>
    <td width="115"><font face="Arial" size="2">as-is</font></td>
    <td width="255"><font face="Arial" size="2">LOGFONT wrapper</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CFont</font></b></td>
    <td width="115"><font face="Arial" size="2">client</font></td>
    <td width="255"><font face="Arial" size="2">GDI font object</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CBitmap</font></b></td>
    <td width="115"><font face="Arial" size="2">client</font></td>
    <td width="255"><font face="Arial" size="2">GDI bitmap object</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CPalette</font></b></td>
    <td width="115"><font face="Arial" size="2">client</font></td>
    <td width="255"><font face="Arial" size="2">GDI palette object</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CRgn</font></b></td>
    <td width="115"><font face="Arial" size="2">client</font></td>
    <td width="255"><font face="Arial" size="2">GDI region object</font></td>
  </tr>
  <tr>
    <td colspan="3" width="593"><font face="Arial" size="2"><br>Enhanced controls</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CCommandBarCtrlImpl</font></b></td>
    <td width="115"><font face="Arial" size="2">impl</font></td>
    <td width="255"><font face="Arial" size="2">command bar</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CCommandBarCtrl</font></b></td>
    <td width="115"><font face="Arial" size="2">as-is</font></td>
    <td width="255"><font face="Arial" size="2">&nbsp;</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CBitmapButtonImpl</font></b></td>
    <td width="115"><font face="Arial" size="2">impl</font></td>
    <td width="255"><font face="Arial" size="2">bitmap button</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CBitmapButton</font></b></td>
    <td width="115"><font face="Arial" size="2">as-is</font></td>
    <td width="255"><font face="Arial" size="2">&nbsp;</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CCheckListViewCtrlImpl</font></b></td>
    <td width="115"><font face="Arial" size="2">impl</font></td>
    <td width="255"><font face="Arial" size="2">check list box</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CCheckListViewCtrl</font></b></td>
    <td width="115"><font face="Arial" size="2">as-is</font></td>
    <td width="255"><font face="Arial" size="2">&nbsp;</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CHyperLinkImpl</font></b></td>
    <td width="115"><font face="Arial" size="2">impl</font></td>
    <td width="255"><font face="Arial" size="2">hyper link control</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CHyperLink</font></b></td>
    <td width="115"><font face="Arial" size="2">as-is</font></td>
    <td width="255"><font face="Arial" size="2">&nbsp;</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CWaitCursor</font></b></td>
    <td width="115"><font face="Arial" size="2">as-is</font></td>
    <td width="255"><font face="Arial" size="2">wait cursor</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CCustomWaitCursor</font></b></td>
    <td width="115"><font face="Arial" size="2">as-is</font></td>
    <td width="255"><font face="Arial" size="2">custom and animated wait cursor</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CMultiPaneStatusBarCtrlImpl</font></b></td>
    <td width="115"><font face="Arial" size="2">impl</font></td>
    <td width="255"><font face="Arial" size="2">status bar with multiple panes</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CMultiPaneStatusBarCtrl</font></b></td>
    <td width="115"><font face="Arial" size="2">as-is</font></td>
    <td width="255"><font face="Arial" size="2">&nbsp;</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CPaneContainerImpl</font></b></td>
    <td width="115"><font face="Arial" size="2">impl</font></td>
    <td width="255"><font face="Arial" size="2">pane window container</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CPaneContainer</font></b></td>
    <td width="115"><font face="Arial" size="2">as-is</font></td>
    <td width="255"><font face="Arial" size="2">&nbsp;</font></td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CSortListViewImpl</font></b></td>
    <td width="115"><font face="Arial" size="2">impl</font></td>
    <td width="255"><font face="Arial" size="2">sorting list view control</font></td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CSortListViewCtrlImpl</font></b></td>
    <td width="115"><font face="Arial" size="2">impl</font></td>
    <td width="255"><font face="Arial" size="2">&nbsp;</font></td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CSortListViewCtrl</font></b></td>
    <td width="115"><font face="Arial" size="2">as-is</font></td>
    <td width="255"><font face="Arial" size="2">&nbsp;</font></td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CTabViewImpl;</font></b></td>
    <td width="115"><font face="Arial" size="2">impl</font></td>
    <td width="255"><font face="Arial" size="2">tab view window</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CTabView</font></b></td>
    <td width="115"><font face="Arial" size="2">as-is</font></td>
    <td width="255"><font face="Arial" size="2">&nbsp;</font></td>
  </tr>
  <tr>
    <td colspan="3" width="593"><font face="Arial" size="2"><br>Scrolling window support</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CScrollImpl</font></b></td>
    <td width="115"><font face="Arial" size="2">impl mi</font></td>
    <td width="255"><font face="Arial" size="2">scrolling support</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CScrollWindowImpl</font></b></td>
    <td width="115"><font face="Arial" size="2">impl</font></td>
    <td width="255"><font face="Arial" size="2">scrollable window</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CMapScrollImpl</font></b></td>
    <td width="115"><font face="Arial" size="2">impl mi</font></td>
    <td width="255"><font face="Arial" size="2">scrolling support with map modes</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CMapScrollWindowImpl</font></b></td>
    <td width="115"><font face="Arial" size="2">impl</font></td>
    <td width="255"><font face="Arial" size="2">scrollable window with map modes</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CZoomScrollImpl</font></b></td>
    <td width="115"><font face="Arial" size="2">impl mi</font></td>
    <td width="255"><font face="Arial" size="2">zooming support</font></td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CZoomScrollWindowImpl</font></b></td>
    <td width="115"><font face="Arial" size="2">impl</font></td>
    <td width="255"><font face="Arial" size="2">zooming window</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CScrollContainerImpl</font></b></td>
    <td width="115"><font face="Arial" size="2">impl</font></td>
    <td width="255"><font face="Arial" size="2">scroll container window</font></td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CScrollContainer</font></b></td>
    <td width="115"><font face="Arial" size="2">as-is</font></td>
    <td width="255"><font face="Arial" size="2">&nbsp;</font></td>
  </tr>
  <tr>
    <td colspan="3" width="593"><font face="Arial" size="2"><br>Splitter window support</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CSplitterImpl</font></b></td>
    <td width="115"><font face="Arial" size="2">impl mi</font></td>
    <td width="255"><font face="Arial" size="2">splitter support</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CSplitterWindowImpl</font></b></td>
    <td width="115"><font face="Arial" size="2">impl</font></td>
    <td width="255"><font face="Arial" size="2">splitter window</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CSplitterWindow</font></b></td>
    <td width="115"><font face="Arial" size="2">as-is</font></td>
    <td width="255"><font face="Arial" size="2">&nbsp;</font></td>
  </tr>
  <tr>
    <td colspan="3" width="593"><font face="Arial" size="2"><br>Theming support</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CTheme</font></b></td>
    <td width="115"><font face="Arial" size="2">client</font></td>
    <td width="255"><font face="Arial" size="2">Windows XP theme</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CThemeImpl</font></b></td>
    <td width="115"><font face="Arial" size="2">impl</font></td>
    <td width="255"><font face="Arial" size="2">theming support for a window</font></td>
  </tr>
  <tr>
    <td colspan="3" width="593"><font face="Arial" size="2"><br>Buffered paint and animation support</font></td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CBufferedPaint</font></b></td>
    <td width="115"><font face="Arial" size="2">as-is</font></td>
    <td width="255"><font face="Arial" size="2">buffered paint</font></td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CBufferedPaintImpl</font></b></td>
    <td width="115"><font face="Arial" size="2">impl mi</font></td>
    <td width="255"><font face="Arial" size="2">buffered paint support</font></td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CBufferedPaintWindowImpl</font></b></td>
    <td width="115"><font face="Arial" size="2">impl</font></td>
    <td width="255"><font face="Arial" size="2">window with buffered paint</font></td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CBufferedAnimation</font></b></td>
    <td width="115"><font face="Arial" size="2">as-is</font></td>
    <td width="255" class="style2">b<font size="2">uffered animation</font></td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CBufferedAnimationImpl</font></b></td>
    <td width="115"><font face="Arial" size="2">impl mi</font></td>
    <td width="255"><font face="Arial" size="2">buffered animation support</font></td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CBufferedAnimationWindowImpl</font></b></td>
    <td width="115"><font face="Arial" size="2">impl</font></td>
    <td width="255"><font face="Arial" size="2">window with buffered animation</font></td>
  </tr>
  <tr>
    <td colspan="3" width="593"><font face="Arial" size="2"><br>Edit and RichEdit Find/Replace support</font></td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CEditFindReplaceImplBase</font></b></td>
    <td width="115"><font face="Arial" size="2">base</font></td>
    <td width="255" class="style2">&nbsp;</td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CEditFindReplaceImpl</font></b></td>
    <td width="115"><font face="Arial" size="2">mi</font></td>
    <td width="255"><font face="Arial" size="2">Edit Find/Replace support</font></td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CRichEditFindReplaceImpl</font></b></td>
    <td width="115"><font face="Arial" size="2">mi</font></td>
    <td width="255" class="style2"><font face="Arial" size="2">RichEdit Find/Replace support</font></td>
  </tr>
  <tr>
    <td colspan="3" width="593"><font face="Arial" size="2"><br>Printing support</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CPrinterInfo</font></b></td>
    <td width="115"><font face="Arial" size="2">as-is</font></td>
    <td width="255"><font face="Arial" size="2">print info support</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CPrinter</font></b></td>
    <td width="115"><font face="Arial" size="2">client</font></td>
    <td width="255"><font face="Arial" size="2">printer handle wrapper</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CDevMode</font></b></td>
    <td width="115"><font face="Arial" size="2">client</font></td>
    <td width="255"><font face="Arial" size="2">DEVMODE wrapper</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CPrinterDC</font></b></td>
    <td width="115"><font face="Arial" size="2">client</font></td>
    <td width="255"><font face="Arial" size="2">printing DC support</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CPrintJobInfo</font></b></td>
    <td width="115"><font face="Arial" size="2">client</font></td>
    <td width="255"><font face="Arial" size="2">print job info</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CPrintJob</font></b></td>
    <td width="115"><font face="Arial" size="2">client</font></td>
    <td width="255"><font face="Arial" size="2">print job support</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CPrintPreview</font></b></td>
    <td width="115"><font face="Arial" size="2">mi</font></td>
    <td width="255"><font face="Arial" size="2">print preview support</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CPrintPreviewWindowImpl</font></b></td>
    <td width="115"><font face="Arial" size="2">impl</font></td>
    <td width="255"><font face="Arial" size="2">print preview window</font></td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CPrintPreviewWindow</font></b></td>
    <td width="115"><font face="Arial" size="2">as-is</font></td>
    <td width="255"><font face="Arial" size="2">&nbsp;</font></td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CZoomPrintPreviewWindowImpl</font></b></td>
    <td width="115"><font face="Arial" size="2">impl</font></td>
    <td width="255"><font face="Arial" size="2">zooming print preview window</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CZoomPrintPreviewWindow</font></b></td>
    <td width="115"><font face="Arial" size="2">as-is</font></td>
    <td width="255"><font face="Arial" size="2">&nbsp;</font></td>
  </tr>
  <tr>
    <td colspan="3" width="593"><font face="Arial" size="2"><br>Miscellaneous</font></td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CSize</font></b></td>
    <td width="115"><font face="Arial" size="2">as-is</font></td>
    <td width="255"><font face="Arial" size="2">WTL port of MFC's CSize</font></td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CPoint</font></b></td>
    <td width="115"><font face="Arial" size="2">as-is</font></td>
    <td width="255"><font face="Arial" size="2">WTL port of MFC's CPoint</font></td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CRect</font></b></td>
    <td width="115"><font face="Arial" size="2">as-is</font></td>
    <td width="255"><font face="Arial" size="2">WTL port of MFC's CRect</font></td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CString</font></b></td>
    <td width="115"><font face="Arial" size="2">as-is</font></td>
    <td width="255"><font face="Arial" size="2">WTL port of MFC's CString</font></td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CWinDataExchange</font></b></td>
    <td width="115"><font face="Arial" size="2">mi</font></td>
    <td width="255"><font face="Arial" size="2">data exchange for controls</font></td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CRecentDocumentList</font></b></td>
    <td width="115"><font face="Arial" size="2">mi or as-is</font></td>
    <td width="255"><font face="Arial" size="2">support for MRU list</font></td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CFindFile</font></b></td>
    <td width="115"><font face="Arial" size="2">as-is</font></td>
    <td width="255"><font face="Arial" size="2">file search support</font></td>
  </tr>
  <tr>
    <td colspan="3" width="593"><font face="Arial" size="2"><br>In-memory dialog</font></td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CMemDlgTemplate</font></b></td>
    <td width="115"><font face="Arial" size="2">as-is</font></td>
    <td width="255"><font face="Arial" size="2">In-memory dialog template</font></td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CIndirectDialogImpl</font></b></td>
    <td width="115"><font face="Arial" size="2">impl</font></td>
    <td width="255"><font face="Arial" size="2">In-memory dialog class</font></td>
  </tr>
  <tr>
    <td colspan="3" width="593"><font face="Arial" size="2"><br>Task dialog</font></td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CTaskDialogImpl</font></b></td>
    <td width="115"><font face="Arial" size="2">impl</font></td>
    <td width="255"><font face="Arial" size="2">Task Dialog in Vista</font></td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CTaskDialog</font></b></td>
    <td width="115"><font face="Arial" size="2">as-is</font></td>
    <td width="255"><font face="Arial" size="2">&nbsp;</font></td>
  </tr>
  <tr>
    <td colspan="3" width="593"><font face="Arial" size="2"><br>Windows CE support</font></td>
  </tr>
  <tr>
    <td width="221"><b><font face="Arial" size="2">CStdDialogBase</font></b></td>
    <td width="115"><font face="Arial" size="2">base</font></td>
    <td width="255"><font face="Arial" size="2">standard dialog base class</font></td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CStdDialogImpl</font></b></td>
    <td width="115"><font face="Arial" size="2">impl</font></td>
    <td width="255"><font face="Arial" size="2">standard dialog implementation</font></td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CStdSimpleDialog</font></b></td>
    <td width="115"><font face="Arial" size="2">as-is</font></td>
    <td width="255"><font face="Arial" size="2">standard simple dialog</font></td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CStdDialogResizeBase</font></b></td>
    <td width="115"><font face="Arial" size="2">base</font></td>
    <td width="255"><font face="Arial" size="2">orientation aware standard dialog base class</font></td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CStdDialogResizeImpl</font></b></td>
    <td width="115"><font face="Arial" size="2">impl</font></td>
    <td width="255"><font face="Arial" size="2">orientation aware standard dialog implementation</font></td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CStdSimpleDialogResizeImpl</font></b></td>
    <td width="115"><font face="Arial" size="2">impl</font></td>
    <td width="255"><font face="Arial" size="2">standard resizing simple dialog implementation</font></td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CStdOrientedDialogBase</font></b></td>
    <td width="115"><font face="Arial" size="2">base</font></td>
    <td width="255"><font face="Arial" size="2">oriented dialog base class</font></td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CStdOrientedDialogImpl</font></b></td>
    <td width="115"><font face="Arial" size="2">impl</font></td>
    <td width="255"><font face="Arial" size="2">oriented dialog implementation</font></td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CStdSimpleOrientedDialog</font></b></td>
    <td width="115"><font face="Arial" size="2">as-is</font></td>
    <td width="255"><font face="Arial" size="2">standard simple oriented dialog</font></td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CAppInfoBase</font></b></td>
    <td width="115"><font face="Arial" size="2">base</font></td>
    <td width="255"><font face="Arial" size="2">application state save/restore to registry</font></td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CAppInfoT</font></b></td>
    <td width="115"><font face="Arial" size="2">impl</font></td>
    <td width="255"><font face="Arial" size="2">CAppInfoBase constructed from a CAppWindow&lt;T&gt;</font></td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CAppWindow&lt;&gt;</font></b></td>
    <td width="115"><font face="Arial" size="2">mi</font></td>
    <td width="255"><font face="Arial" size="2">PPC/SmartPhone well-behaved application window class</font></td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CAppDialog</font></b></td>
    <td width="115"><font face="Arial" size="2">mi</font></td>
    <td width="255"><font face="Arial" size="2">PPC/SmartPhone well-behaved application non-modal dialog class</font></td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CAppStdDialogImpl</font></b></td>
    <td width="115"><font face="Arial" size="2">impl</font></td>
    <td width="255"><font face="Arial" size="2">PPC/SmartPhone implementation of non-modal standard dialog application</font></td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CFullScreenFrame</font></b></td>
    <td width="115"><font face="Arial" size="2">impl</font></td>
    <td width="255"><font face="Arial" size="2">Full screen frame class</font></td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CZoomScrollImpl</font></b></td>
    <td width="115"><font face="Arial" size="2">mi</font></td>
    <td width="255"><font face="Arial" size="2">WinCE zooming implementation</font></td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CHtmlCtrl</font></b></td>
    <td width="115"><font face="Arial" size="2">client</font></td>
    <td width="255"><font face="Arial" size="2">HTML control</font></td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CRichInkCtrl</font></b></td>
    <td width="115"><font face="Arial" size="2">client</font></td>
    <td width="255"><font face="Arial" size="2">RichInk control</font></td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CInkXCtrl</font></b></td>
    <td width="115"><font face="Arial" size="2">client</font></td>
    <td width="255"><font face="Arial" size="2">InkX control</font></td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CVoiceRecorderCtrl</font></b></td>
    <td width="115"><font face="Arial" size="2">client</font></td>
    <td width="255"><font face="Arial" size="2">VoiceRecorder control</font></td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CDocListCtrl</font></b></td>
    <td width="115"><font face="Arial" size="2">client</font></td>
    <td width="255"><font face="Arial" size="2">DocList control</font></td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CCapEdit</font></b></td>
    <td width="115"><font face="Arial" size="2">client</font></td>
    <td width="255"><font face="Arial" size="2">CapEdit control</font></td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CTTStatic</font></b></td>
    <td width="115"><font face="Arial" size="2">client</font></td>
    <td width="255"><font face="Arial" size="2">TT Static control</font></td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CTTButton</font></b></td>
    <td width="115"><font face="Arial" size="2">client</font></td>
    <td width="255"><font face="Arial" size="2">TT Button control</font></td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CSpinCtrl</font></b></td>
    <td width="115"><font face="Arial" size="2">client</font></td>
    <td width="255"><font face="Arial" size="2">Spin control</font></td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CSpinListBox</font></b></td>
    <td width="115"><font face="Arial" size="2">client</font></td>
    <td width="255"><font face="Arial" size="2">Spin List Box control</font></td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CExpandListBox</font></b></td>
    <td width="115"><font face="Arial" size="2">client</font></td>
    <td width="255"><font face="Arial" size="2">Expand List Box control</font></td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CExpandEdit</font></b></td>
    <td width="115"><font face="Arial" size="2">client</font></td>
    <td width="255"><font face="Arial" size="2">Expand Edit control</font></td>
  </tr>
	<tr>
    <td width="221"><b><font face="Arial" size="2">CExpandCapEdit</font></b></td>
    <td width="115"><font face="Arial" size="2">client</font></td>
    <td width="255"><font face="Arial" size="2">Expand CapEdit control</font></td>
  </tr>
</table>
<p style=margin:0in>&nbsp;</p>
<p style=margin:0in>&nbsp;</p>
<p style=margin:0in><font face="Arial">
<b><a name="ATL/WTL AppWizard"></a>ATL/WTL AppWizard</b></font></p>
<p style=margin:0in>&nbsp;</p>
<p style=margin:0in><font face="Arial" size="2">ATL/WTL AppWizard generates starting code for a 
WTL application. It has options to create code for different application types and features.</font></p>
<p style=margin:0in>&nbsp;</p>
<p style=margin:0in><font face="Arial" size="2">You can choose the following options:</font></p>
<ul style='margin-top:0in;margin-bottom:0in'>
  <li><font face="Arial" size="2">Application type (SDI, multi thread SDI, MDI, 
  TabView, Explorer, dialog based)</font></li>
  <li><font face="Arial" size="2">Support for hosting ActiveX controls</font></li>
  <li><font face="Arial" size="2">COM server support</font></li>
  <li><font face="Arial" size="2">Class implementation in .CPP files</font></li>
  <li><font face="Arial" size="2">Common Control manifest</font></li>
	<li class="style2">U<font size="2">nicode character set</font></li>
  <li><font face="Arial" size="2">Toolbar, rebar, command bar, status bar</font></li>
  <li><font face="Arial" size="2">View window, and it's type (generic, dialog 
  based form, or a list box, edit, list view, tree view, rich edit based, HTML 
  page, scroll window)</font></li>
  <li><font face="Arial" size="2">For dialog based apps or a form based view 
  window - support for hosting ActiveX controls in the dialog</font></li>
</ul>
<p style=margin:0in>&nbsp;</p>
<p style=margin:0in><font face="Arial" size="2">ATL/WTL AppWizard supports VC++ 
.NET 2002 and 2003,and VC++ 2005.</font></p>
<p style=margin:0in>&nbsp;</p>
<p style=margin:0in>&nbsp;</p>
<p style=margin:0in><b><font face="Arial">
<a name="Support for Windows CE"></a>Support for 
Windows CE</font></b></p>
<p style=margin:0in>&nbsp;</p>
<p style=margin:0in><font face="Arial" size="2">WTL now fully supports building 
projects for the Windows CE platforms. This initial support for Windows CE was implemented primarily for 
eMbedded Visual C++ 4.0 with Pocket PC 2003 and 
SmartPhone 2003 SDKs. However, it can be used with other versions and 
configurations. For instance, Standard SDK 4.1 or 5.0 is supported as well. Considerable effort was made to provide the best Windows CE support, 
however, there might be some limitations because different platforms provide different 
programming support. SmartDevice projects with Visual Studio 2005 are also 
supported, and it also includes an AppWizard for VS2005.</font></p>
<p style=margin:0in>&nbsp;</p>
<p style=margin:0in><font face="Arial" size="2">The support for Windows CE was 
not designed to port projects for the desktop version of Windows as-is to the 
Windows CE platforms, but to allow use of the same library, WTL, for both 
desktop Windows and Windows CE. Applications for Windows CE are often designed 
in a different way, and they use different platform services. WTL depends on the 
version of ATL provided with each Windows CE platform, and supports controls and 
services that are appropriate and supported for each Windows CE platform.</font></p>
<p style=margin:0in>&nbsp;</p>
<p style=margin:0in>&nbsp;</p>
<p style=margin:0in><b><font face="Arial">
<a name="Support for Visual C++ 2005 Express"></a>Support for 
Visual C++ 2005 Express</font></b></p>
<p style=margin:0in>&nbsp;</p>
<p style=margin:0in><font face="Arial" size="2">WTL 8.0 supports using Visual 
C++ Express Edition to build projects. Since Visual C++ 2005 Express ships without ATL, you have 
to use a version of ATL that ships with the Platform SDK.</font></p>
<p style=margin:0in>&nbsp;</p>
<p style=margin:0in><font face="Arial" size="2">The WTL App Wizard can be 
installed by running AppWiz\setup80x.js program. The App Wizard generates code 
in the stdafx.h file that allows use of ATL3 from the Platform SDK. That code is 
used if WTL_USE_SDK_ATL3 is defined, so you can comment the line in stdafx.h 
that defines WTL_USE_SDK_ATL3 to use the project with different versions of 
Visual C++ or ATL.</font></p>
<p style=margin:0in>&nbsp;</p>
<p style=margin:0in><font face="Arial" size="2">Note that Release builds will 
generate some warnings, since ATL3 from Platform SDK is an old version of ATL 
which doesn't quite match the newer compiler and CRT files. You can ignore those 
warnings, as they do not indicate any real problems with the code.</font></p>
<p style=margin:0in>&nbsp;</p>
<p style=margin:0in>&nbsp;</p>
<p style=margin:0in><b><font face="Arial">
<a name="Notes"></a>Notes</font></b></p>
<p style=margin:0in>&nbsp;</p>
<p style=margin:0in><font face="Arial" size="2"><b>~</b>&nbsp;&nbsp;&nbsp; WTL provides 
several classes that are also present in ATL 7.0 and 7.1. The classes are: <b>
CSize</b>, <b>CPoint</b>, <b>CRect</b>, and <b>CString</b> in atlmisc.h. 
While their existence will not cause any problems, their usage might. You should 
qualify the class you want to use with a namespace to resolve ambiguity, either 
ATL or WTL namespace, depending on which implementation you want to use. 
Alternatively, you can conditionally exclude WTL implementations, by defining 
preprocessor symbol <b>_WTL_NO_WTYPES</b> for CSize, CPoint, and CRect; and <b>_WTL_NO_CSTRING</b> 
for CString.</font></p>
<p style=margin:0in>&nbsp;</p>
<p style=margin:0in><font face="Arial" size="2"><b>~</b>&nbsp;&nbsp;&nbsp; If 
you use WTL 8.0 with VC++ 6.0/ATL 3.0 and define _ATL_STATIC_REGISTRY, you'll 
get errors referring to the ambiguous symbol ATL. This is caused by a bug in ATL 
3.0 - in atlbase.h, the file statreg.h is included inside of the ATL namespace, 
and it contains another namespace ATL declaration. Because of that, the compiler 
cannot decide between ATL:: and ATL::ATL:: namespaces. The solution is either to 
fix the atlbase.h, or to surround atlbase.h include declaration with following 
statements:</font></p>
<p style=margin:0in>&nbsp;</p>
<p style=margin:0in><font face="Arial" size="2"><b>&nbsp;&nbsp;&nbsp; #define 
ATL&nbsp;&nbsp; ATLFIX</b></font></p>
<p style=margin:0in><font face="Arial" size="2">&nbsp;&nbsp;&nbsp; #include &lt;atlapp.h&gt;</font></p>
<p style=margin:0in><font face="Arial" size="2">
<b>&nbsp;&nbsp;&nbsp; #undef ATL</b></font></p>
<p style=margin:0in><font face="Arial" size="2">
<b>&nbsp;&nbsp;&nbsp; namespace ATL = ::ATLFIX;</b></font></p>
<p style=margin:0in>&nbsp;</p>
<p style=margin:0in><font face="Arial" size="2"><b>~</b>&nbsp;&nbsp;&nbsp; 
Windows XP allows applications to use Common Controls version 6, which supports 
only Unicode applications. While WTL allows creation of Ansi applications that 
use Common Controls 6, that should be used only for test programs and is not 
recommended or supported for released projects. If you want to use Common 
Controls 6, build your application as Unicode.</font></p>
<p style=margin:0in>&nbsp;</p>
<p style=margin:0in><font face="Arial" size="2"><b>~</b>&nbsp;&nbsp;&nbsp; 
If you build your app that hosts ActiveX controls 
with VC++ 7.x, you can see this assert failing:<br>
<span class="style2"><strong><br>
&nbsp;&nbsp;&nbsp; !InlineIsEqualGUID(*m_plibid, GUID_NULL) &amp;&amp; &quot;Did you forget 
to pass the LIBID to CComModule::Init?&quot;<br>
<br>
</strong></span>There are two ways to fix this:</font></p>
<ul>
	<li>
	<p style=margin:0in><span class="style2">In the main .CPP file of your 
	project, replace the line<br>
	<strong>&nbsp;&nbsp;&nbsp; hRes = _Module.Init(NULL, hInstance);<br>
	</strong>with this one<br>
	<strong>&nbsp;&nbsp;&nbsp; hRes = _Module.Init(NULL, hInstance, &amp;LIBID_ATLLib);<br>
&nbsp;</strong></span></p>
	</li>
	<li>
	<p style=margin:0in><span class="style2">Compile you project with _ATL_DLL 
	defined (dynamic link to ATL)</span></p>
	</li>
</ul>
<p style=margin:0in><font face="Arial" size="2"><b>~</b>&nbsp;&nbsp;&nbsp; 
Several of the sample programs included with WTL were extended to support 
building for Windows CE. These samples are not specially redesigned for Windows 
CE, but just modified to allow you to compile and run them on the Windows CE 
platforms. The samples are: BmpView, GuidGen, and MTPad.</font></p>
<p style=margin:0in>&nbsp;</p>
<p style=margin:0in><font face="Arial" size="2"><b>~</b>&nbsp;&nbsp;&nbsp; WTL 
supports building projects with EVC++ 3.0 only for Pocket PC and Pocket PC 2002 
platforms, as other platforms don't provide minimum support for ATL or other 
required libraries.</font></p>
<p style=margin:0in>&nbsp;</p>
<p style=margin:0in><font face="Arial" size="2"><b>~</b>&nbsp;&nbsp;&nbsp; The 
old AppWizards for VC++ 6.0 and eVC++ 4.0/3.0 are not included in this version 
of WTL because they cannot be a part of an Open Source project. They are still 
available in the previous release, WTL 7.1.</font></p>
<p style=margin:0in>&nbsp;</p>
<p style=margin:0in>&nbsp;</p>
<p style=margin:0in><b><font face="Arial">
<a name="Changes Between WTL 8.0 And 7.5"></a>Changes Between WTL 8.0 And 7.5</font></b></p>
<p style=margin:0in>&nbsp;</p>
  <p style=margin:0in><font face="Arial" size="2">New and improved:</font></p>
<blockquote style='margin-top:0in;margin-bottom:0in'>
  <p style=margin:0in><font face="Arial" size="2">RunTimeHelper functions for 
	correct struct sizes on different versions of Windows<br>ModuleHelper functions for uniform support of ATL3 and ATL7 module classes<br>SecureHelper functions for support of secure and non-secure run-time 
	functions<br>Support for new Vista features:</font></p>
	<ul style='margin-top:0in;margin-bottom:0in'>
		<li>
		<p style=margin:0in><font face="Arial" size="2">Support for new messages for common controls, dialogs, etc.</font></p>
		</li>
		<li>
		<p style=margin:0in><font face="Arial" size="2">Support for TaskDialog</font></p>
		</li>
		<li>
		<p style=margin:0in><font face="Arial" size="2">New Shell file dialogs (IFileOpenDialog and IFileSaveDialog)</font></p>
		</li>
		<li>
		<p style=margin:0in><font face="Arial" size="2">New Aero Wizard support classes</font></p>
		</li>
		<li>
		<p style=margin:0in><font face="Arial" size="2">New classes for Buffered Paint and Buffered Animation</font></p>
		</li>
	</ul>
	<p style=margin:0in><font face="Arial" size="2">New TabView classes<br>New dialog class that uses in-memory dialog templates<br>New CMultiFileDialogImpl and CMultiFileDialog classes that support 
	multi-select file dialogs<br>Added message cracker handler prototypes for all handlers<br>Replaced use of _alloca with CTempBuffer everywhere (and added CTempBuffer 
	version for ATL3)<br>New classes for find/replace support for Edit or RichEdit<br>New class CFileDialogEx that supports GetOpenFileNameEx for Windows Mobile 5<br>
	New features for the App Wizard:</font></p>
	<ul style='margin-top:0in;margin-bottom:0in'>
		<li>
		<p style=margin:0in><font face="Arial" size="2">New default version values</font></p>
		</li>
		<li>
		<p style=margin:0in><font face="Arial" size="2">Unicode build option</font></p>
		</li>
		<li>
		<p style=margin:0in><font face="Arial" size="2">Support for TabView applications</font></p>
		</li>
		<li>
		<p style=margin:0in><font face="Arial" size="2">Support for Explorer applications</font></p>
		</li>
	</ul>
	<p style=margin:0in><font face="Arial" size="2">Updates for the desktop App Wizard:</font></p>
	<ul style='margin-top:0in;margin-bottom:0in'>
		<li>
		<p style=margin:0in><font face="Arial" size="2">Added calls to set font for views based on controls that use font</font></p>
		</li>
		<li>
		<p style=margin:0in><font face="Arial" size="2">Added scroll window as another view type</font></p>
		</li>
	</ul>
	<p style=margin:0in><font face="Arial" size="2">Support for VC2005 Express:</font></p>
	<ul style='margin-top:0in;margin-bottom:0in'>
		<li>
		<p style=margin:0in><font face="Arial" size="2">Setup for VS2005x</font></p>
		</li>
		<li>
		<p style=margin:0in><font face="Arial" size="2">Changes in default.js to take into account that VC2005x does not have a 
	resource editor</font></p></li>
		<li>
		<p style=margin:0in><font face="Arial" size="2">Generated code allows use of ATL3 from the Platform SDK</font></p>
		</li>
	</ul>
	<p style=margin:0in><font face="Arial" size="2">New AppWizard for Mobile 2003 and 2005 platforms<br>
	New samples:</font></p>
	<ul style='margin-top:0in;margin-bottom:0in'>
		<li>
		<p style=margin:0in><font face="Arial" size="2">Aero - demonstrates the 
		Vista Glass UI</font></p></li>
		<li>
		<p style=margin:0in><font face="Arial" size="2">MiniPie - Windows Mobile 2005 PPC and Smartphone sample</font></p>
		</li>
		<li>
		<p style=margin:0in><font face="Arial" size="2">TabBrowser - a web browser using TabView class</font></p>
		</li>
	</ul>
	<p style=margin:0in><font face="Arial" size="2">MTPad sample updated to show usage of CRichEditFindReplaceImpl and 
	CEditCommands/CRichEditComma</font></p>
</blockquote>
  <p style=margin:0in>&nbsp;</p>
<p style=margin:0in><font face="Arial" size="2">Fixes and enhancements:</font></p>
  <blockquote style='margin-top:0in;margin-bottom:0in'>
  <p style=margin:0in><font face="Arial" size="2">Command Bar:</font></p>
	<ul style='margin-top:0in;margin-bottom:0in'>
	<li>
	<p style=margin:0in><font face="Arial" size="2">Added support for menu items 
	with bitmaps on Vista</font></p></li>
	<li>
	<p style=margin:0in><font face="Arial" size="2">Fix: Keyboard cues shown 
	even if the window is disabled</font></p></li>
	</ul>
	<p style=margin:0in>&nbsp;</p>
	<p style=margin:0in><font face="Arial" size="2">CFolderDialog:</font></p>
	<ul style='margin-top:0in;margin-bottom:0in'>
	<li>
	<p style=margin:0in><font face="Arial" size="2">Added support for PIDLs in 
	addition to the file path</font></p></li>
	<li>
	<p style=margin:0in><font face="Arial" size="2">Replaced use of SHGetMalloc 
	with CoTaskMemFree</font></p></li>
	</ul>
	<p style=margin:0in>&nbsp;</p>
	<p style=margin:0in><font face="Arial" size="2">Scroll Windows:</font></p>
	<ul style='margin-top:0in;margin-bottom:0in'>
	<li>
	<p style=margin:0in><font face="Arial" size="2">Fix: CZoomScrollImpl - some 
	methods should be overridable</font></p></li>
	<li>
	<p style=margin:0in><font face="Arial" size="2">Added support for 
	WM_MOUSEHWHEEL in CScrollImpl</font></p></li>
	</ul>
	<p style=margin:0in>&nbsp;</p>
	<p style=margin:0in><font face="Arial" size="2">App Wizard:</font></p>
	<ul style='margin-top:0in;margin-bottom:0in'>
	<li>
	<p style=margin:0in><font face="Arial" size="2">Fix: AppWizard fails to add 
	files if C:\Temp does not exist</font></p></li>
	<li>
	<p style=margin:0in><font face="Arial" size="2">Fix: App Wizard generates 
	security warning when loaded</font></p></li>
	<li>
	<p style=margin:0in><font face="Arial" size="2">Fix: App Wizard generates 
	level 4 warning for modal dlg project</font></p></li>
	<li>
	<p style=margin:0in><font face="Arial" size="2">Fix: App Wizard setupXX.js 
	scripts silently fail on Vista</font></p></li>
	<li>
	<p style=margin:0in><font face="Arial" size="2">Fix: Added code to 
	unregister message filer and idle processing</font></p></li>
	<li>
	<p style=margin:0in><font face="Arial" size="2">Fix: Added WS_CLIPSIBLINGS 
	to dialog forms to avoid rebar drawing problems</font></p></li>
	</ul>
	<p style=margin:0in>&nbsp;</p>
	<p style=margin:0in><font face="Arial" size="2">App Wizard CE:</font></p>
	<ul style='margin-top:0in;margin-bottom:0in'>
	<li>
	<p style=margin:0in><font face="Arial" size="2">Fix: App Wizard CE should 
	not have rich edit as a view option</font></p></li>
	<li>
	<p style=margin:0in><font face="Arial" size="2">Fix: App Wizard CE generates 
	level 4 warnings for single instance apps</font></p></li>
	<li>
	<p style=margin:0in><font face="Arial" size="2">Added support for Windows 
	Mobile 6 SDKs</font></p></li>
	</ul>
	<p style=margin:0in>&nbsp;</p>
	<p style=margin:0in><font face="Arial" size="2">Cracked Handlers:</font></p>
	<ul style='margin-top:0in;margin-bottom:0in'>
	<li>
	<p style=margin:0in><font face="Arial" size="2">Fix: Corrected MSG_WM_TIMER 
	and handler prototype, removed unused argument (breaking change)</font></p>
	</li>
	<li>
	<p style=margin:0in><font face="Arial" size="2">Fix: atlcrack.h does not 
	support WTL namespace</font></p></li>
	</ul>
	<p style=margin:0in>&nbsp;</p>
	<p style=margin:0in><font face="Arial" size="2">CDialogResize:</font></p>
	<ul style='margin-top:0in;margin-bottom:0in'>
	<li>
	<p style=margin:0in><font face="Arial" size="2">Added SetIcon(NULL, FALSE) 
	for CDialogResize to remove the generic icon for resizable dialogs</font></p>
	</li>
	<li>
	<p style=margin:0in><font face="Arial" size="2">Fix: Enabled size/move for 
	both X and Y</font></p></li>
	<li>
	<p style=margin:0in><font face="Arial" size="2">Added center flags for 
	controls</font></p></li>
	</ul>
	<p style=margin:0in>&nbsp;</p>
	<p style=margin:0in><font face="Arial" size="2">CFrameWindowImpl:</font></p>
	<ul style='margin-top:0in;margin-bottom:0in'>
	<li>
	<p style=margin:0in><font face="Arial" size="2">Fix: Const issue with title 
	argument of AddSimpleReBarBand</font></p></li>
	<li>
	<p style=margin:0in><font face="Arial" size="2">Fix: DECLARE_FRAME_WND_CLASS 
	definition missing WTL namespace</font></p></li>
	</ul>
	<p style=margin:0in>&nbsp;</p>
	<p style=margin:0in><font face="Arial" size="2">Windows CE:</font></p>
	<ul style='margin-top:0in;margin-bottom:0in'>
	<li>
	<p style=margin:0in><font face="Arial" size="2">Fix: Some symbols not 
	defined for CE 4.0</font></p></li>
	<li>
	<p style=margin:0in><font face="Arial" size="2">Fix: Incorrect WinCE 
	exclusions</font></p></li>
	<li>
	<p style=margin:0in><font face="Arial" size="2">Fix: Pocket PC - assert 
	after navigating a CHyperLink</font></p></li>
	<li>
	<p style=margin:0in><font face="Arial" size="2">Fix: Property sheet with 
	listview on WM5.0 causes stack overflow</font></p></li>
	<li>
	<p style=margin:0in><font face="Arial" size="2">Fix: CFindFile::GetFilePath() 
	fails on diskless root requests</font></p></li>
	<li>
	<p style=margin:0in><font face="Arial" size="2">Fix: VS 2005 dialog editor 
	bug - DS_FIXEDSYS used but not defined</font></p></li>
	<li>
	<p style=margin:0in><font face="Arial" size="2">Fix: Windows Mobile 2005 
	compatibility issues</font></p></li>
	<li>
	<p style=margin:0in><font face="Arial" size="2">Fix: CFullScreenFrame on 
	Smartphone 20003</font></p></li>
	<li>
	<p style=margin:0in><font face="Arial" size="2">Fix: SmartPhone back key 
	handling in CAppWindow</font></p></li>
	<li>
	<p style=margin:0in><font face="Arial" size="2">Added orientation aware 
	support to CAppStdDialogImpl</font></p></li>
	<li>
	<p style=margin:0in><font face="Arial" size="2">Added CAxDialogImpl base for 
	CStdDialogImpl, CStdDialogResizeImpl and CStdOrientedDialogImpl</font></p>
	</li>
	<li>
	<p style=margin:0in><font face="Arial" size="2">Added various CStdDialogxxx 
	enhancements</font></p></li>
	<li>
	<p style=margin:0in><font face="Arial" size="2">Fix: CStdDialogBase does not 
	scale dialog title on VGA</font></p></li>
	<li>
	<p style=margin:0in><font face="Arial" size="2">Fix: DIBINFO16 triggers code 
	analysis warning</font></p></li>
	<li>
	<p style=margin:0in><font face="Arial" size="2">Added LPCTSTR 
	AtlLoadString(UINT uID) - CE only overload</font></p></li>
	<li>
	<p style=margin:0in><font face="Arial" size="2">Added imaging draw support 
	to CZoomScrollImpl</font></p></li>
	<li>
	<p style=margin:0in><font face="Arial" size="2">Added CBottomTabViewImpl and 
	CBottomTabView classes for PPC</font></p></li>
	</ul>
	<p style=margin:0in>&nbsp;</p>
	<p style=margin:0in><font face="Arial" size="2">CFindFile:</font></p>
	<ul style='margin-top:0in;margin-bottom:0in'>
	<li>
	<p style=margin:0in><font face="Arial" size="2">Fix: CFindFile class uses 
	CRT functions</font></p></li>
	<li>
	<p style=margin:0in><font face="Arial" size="2">Fix: FindFile() uses lstrcpy 
	without checking length</font></p></li>
	</ul>
	<p style=margin:0in>&nbsp;</p>
	<p style=margin:0in><font face="Arial" size="2">General:</font></p>
	<ul style='margin-top:0in;margin-bottom:0in'>
	<li>
	<p style=margin:0in><font face="Arial" size="2">Fix: Adding ReBar bands 
	fails with new Windows SDK</font></p></li>
	<li>
	<p style=margin:0in><font face="Arial" size="2">Added support for relative 
	include paths</font></p></li>
	<li>
	<p style=margin:0in><font face="Arial" size="2">Fix: Using std::min and 
	std::max</font></p></li>
	<li>
	<p style=margin:0in><font face="Arial" size="2">Fix: Problems using WTL with 
	MFC</font></p></li>
	<li>
	<p style=margin:0in><font face="Arial" size="2">Improved support for Secure 
	CRT</font></p></li>
	<li>
	<p style=margin:0in><font face="Arial" size="2">Changed implementation of 
	CSize, CPoint, CRect, and CString to be inside class definitions</font></p>
	</li>
	<li>
	<p style=margin:0in><font face="Arial" size="2">atltheme.h: Corrected method 
	signatures for differences in uxtheme.h versions</font></p></li>
	<li>
	<p style=margin:0in><font face="Arial" size="2">Replaced malloc/free with 
	new/delete where appropriate</font></p></li>
	</ul>
	<p style=margin:0in>&nbsp;</p>
	<p style=margin:0in><font face="Arial" size="2">Misc:</font></p>
	<ul style='margin-top:0in;margin-bottom:0in'>
	<li>
	<p style=margin:0in><font face="Arial" size="2">Fix: CString::FormatV can 
	cause GPF with Unicode strings</font></p></li>
	<li>
	<p style=margin:0in><font face="Arial" size="2">CHyperLink: Added handler 
	for WM_SIZE</font></p></li>
	<li>
	<p style=margin:0in><font face="Arial" size="2">Fix: CTheme needs 
	constructor from HTHEME handle</font></p></li>
	<li>
	<p style=margin:0in><font face="Arial" size="2">Added Add* methods to 
	several control classes in atlctrls.h to augment Insert* methods</font></p>
	</li>
	<li>
	<p style=margin:0in><font face="Arial" size="2">Fix: Incorrect casting in 
	CRichEditCtrl::GetLine()</font></p></li>
	<li>
	<p style=margin:0in><font face="Arial" size="2">Fix: 
	CTreeViewCtrl::GetItemState changed to return only state-bits as specified 
	by mask</font></p></li>
	<li>
	<p style=margin:0in><font face="Arial" size="2">Fix: CBitmapButton::DoPaint 
	- wrong button image</font></p></li>
	<li>
	<p style=margin:0in><font face="Arial" size="2">Added another variant of 
	CDCT::Drawtext with LPTSTR argument that allows text change</font></p></li>
	<li>
	<p style=margin:0in><font face="Arial" size="2">Fix: 
	CRecentDocumentListBase::AddToList() uses lstrcpy</font></p></li>
	<li>
	<p style=margin:0in><font face="Arial" size="2">Fix: AtlLoadString(uID, 
	lpBuffer, nBufferMax) has unnecessary code</font></p></li>
	<li>
	<p style=margin:0in><font face="Arial" size="2">Fix: CCursor::LoadOEMCursor 
	asserts on IDC_HAND</font></p></li>
	<li>
	<p style=margin:0in><font face="Arial" size="2">Fix: Memory leak when using 
	CRT functions while printing</font></p></li>
	<li>
	<p style=margin:0in><font face="Arial" size="2">Fix: Undefined CString 
	namespace</font></p></li>
	<li>
	<p style=margin:0in><font face="Arial" size="2">CPaneContainer: Added border 
	styles</font></p></li>
	<li>
	<p style=margin:0in><font face="Arial" size="2">CSplitterImpl: Added 
	SetSplitterPosPct, and changed App Wizard code to use it</font></p></li>
	</ul>
  </blockquote>
	<p style=margin:0in>&nbsp;</p>
	<p style=margin:0in>&nbsp;</p>
<p style=margin:0in><b><font face="Arial">
<a name="Changes Between WTL 7.5 And 7.1"></a>Changes Between WTL 7.5 And 7.1</font></b></p>
<p style=margin:0in>&nbsp;</p>
  <p style=margin:0in><font face="Arial" size="2">New and improved:</font></p>
<blockquote style='margin-top:0in;margin-bottom:0in'>
  <p style=margin:0in><font face="Arial" size="2">VS2005 Compatibility: 
	Added support for Visual Studio 2005 - both desktop and Windows CE<br>
	Classes for icons, cursors, accelerator tables<br>
	CSortListViewImpl, CSortListViewCtrlImpl, and CSortListViewCtrl classes<br>
	Impl classes for Wizard 97 style wizards: CWizard97Sheet, 
	CWizard97Page, CWizard97ExteriorPage, CWizard97InteriorPage<br>
	CMemoryDC and CDoubleBufferWindowImpl classes<br>
	Windows CE specific classes in new header, atlwince.h<br>
	CScrollContainer class<br>
	CZoomScrollImpl and CZoomScrollWindowImpl classes<br>
	CZoomPrintPreviewWindowImpl and CZoomPrintPreviewWindow classes<br>
	Global functions: AtlGetBitmapResourceInfo, 
	AtlGetBitmapResourceBitsPerPixel<br>
	New REFLECT_* macros to enable selective reflection of messages<br>
	App Wizard: Added App Wizard for VS2005<br>
	App Wizard: Added App Wizard for Windows CE for VS2005<br>
	New samples: WTLExplorer, ImageView, SPControls<br>
&nbsp;</font></p>
</blockquote>
  <p style=margin:0in><font face="Arial" size="2">Fixes and enhancements:</font></p>
  <blockquote style='margin-top:0in;margin-bottom:0in'>
  <p style=margin:0in><font face="Arial" size="2">Command Bar:</font></p>
	<ul style='margin-top:0in;margin-bottom:0in'>
		<li>
		<p style=margin:0in><font face="Arial" size="2">DrawBitmapDisabled() 
		doesn't work correctly on Longhorn</font></p></li>
		<li>
		<p style=margin:0in><font face="Arial" size="2">Submenu size not correct if 
	command bar is off-screen</font></p></li>
		<li>
		<p style=margin:0in><font face="Arial" size="2">Added handler for 
	WM_SETTINGCHANGE to improve theme color changes</font></p></li>
		<li>
		<p style=margin:0in><font face="Arial" size="2">Better support for 
	8/16/24-bit images</font></p></li>
		<li>
		<p style=margin:0in><font face="Arial" size="2">Command Bar with 2 Levels of 
	submenus remains active</font></p></li>
		<li>
		<p style=margin:0in><font face="Arial" size="2">Hook procedure fails to call 
	next hook</font></p></li>
		<li>
		<p style=margin:0in><font face="Arial" size="2">OnDestroy() should not 
	decrement hook use if AttachToWindow() is used</font></p></li>
	</ul>
	<p style=margin:0in>&nbsp;</p>
	<p style=margin:0in><font face="Arial" size="2">MDI Command Bar:</font></p>
	<ul style='margin-top:0in;margin-bottom:0in'>
		<li>
		<p style=margin:0in><font face="Arial" size="2">Grows bigger if you 
		switch between two maximized MDI child window types</font></p></li>
		<li>
		<p style=margin:0in><font face="Arial" size="2">Move all hook messages 
		processing to a separate function and use pT</font></p></li>
		<li>
		<p style=margin:0in><font face="Arial" size="2">MDI icon &amp; buttons should 
	have themed background</font></p></li>
		<li>
		<p style=margin:0in><font face="Arial" size="2">Should make MDI buttons gray 
	when inactive<br>&nbsp;</font></p></li>
	</ul>
	<p style=margin:0in><font face="Arial" size="2">CString:</font></p>
	<ul style='margin-top:0in;margin-bottom:0in'>
		<li>
		<p style=margin:0in><font face="Arial" size="2">Helper functions not 
		overloaded properly</font></p></li>
		<li>
		<p style=margin:0in><font face="Arial" size="2">Some return types are 
		'const CString&amp;' and could be just 'CString&amp;'</font></p></li>
		<li>
		<p style=margin:0in><font face="Arial" size="2">FormatV() passes size in 
	characters to _alloca, should be in bytes</font></p></li>
		<li>
		<p style=margin:0in><font face="Arial" size="2">Fixed stack corruption in 
	FormatV()</font></p></li>
		<li>
		<p style=margin:0in><font face="Arial" size="2">Improved boundaries checking 
	for integer overflows/underflows<br>&nbsp;</font></p></li>
	</ul>
	<p style=margin:0in><font face="Arial" size="2">CScrollImpl:</font></p>
	<ul style='margin-top:0in;margin-bottom:0in'>
		<li>
		<p style=margin:0in><font face="Arial" size="2">Scroll bars problem when 
		changing range</font></p></li>
		<li>
		<p style=margin:0in><font face="Arial" size="2">SetScrollOffset() doesn't 
	move child windows</font></p></li>
		<li>
		<p style=margin:0in><font face="Arial" size="2">Range and thumb drawing 
	problems</font></p></li>
		<li>
		<p style=margin:0in><font face="Arial" size="2">Possible overflow in 
	OnMouseWheel()</font></p></li>
		<li>
		<p style=margin:0in><font face="Arial" size="2">Support for 
	SIF_DISABLENOSCROLL</font></p></li>
		<li>
		<p style=margin:0in><font face="Arial" size="2">Added ScrollToView methods</font></p>
		</li>
	</ul>
	<p style=margin:0in>&nbsp;</p>
	<p style=margin:0in><font face="Arial" size="2">CMapScrollImpl:</font></p>
	<ul style='margin-top:0in;margin-bottom:0in'>
		<li>
		<p style=margin:0in><font face="Arial" size="2">SetScrollSize() incorrectly 
	inverts xMin and xMax</font></p></li>
		<li>
		<p style=margin:0in><font face="Arial" size="2">SetScrollSize() uses bRedraw 
	= NULL</font></p></li>
	</ul>
	<p style=margin:0in>&nbsp;</p>
	<p style=margin:0in><font face="Arial" size="2">CTheme:</font></p>
	<ul style='margin-top:0in;margin-bottom:0in'>
		<li>
		<p style=margin:0in><font face="Arial" size="2">GetThemeFont() bad parameter 
	ordering</font></p></li>
		<li>
		<p style=margin:0in><font face="Arial" size="2">Uses LOGFONT and TEXTMETRIC 
	incorrectly (SDK header problem)</font></p></li>
	</ul>
	<p style=margin:0in>&nbsp;</p>
	<p style=margin:0in><font face="Arial" size="2">CFrameWindowImpl:</font></p>
	<ul style='margin-top:0in;margin-bottom:0in'>
		<li>
		<p style=margin:0in><font face="Arial" size="2">Improved sizing for Windows 
	CE</font></p></li>
		<li>
		<p style=margin:0in><font face="Arial" size="2">CreateSimpleToolBarCtrl() 
	should handle 24-bit bitmaps</font></p></li>
		<li>
		<p style=margin:0in><font face="Arial" size="2">Changed WinCE 
	CCECommandBarCtrl typedef and added a PPC CMenuBarCtrl</font></p></li>
		<li>
		<p style=margin:0in><font face="Arial" size="2">UpdatesBarPosition() doesn't 
	take Windows CE command bar into account</font></p></li>
	</ul>
	<p style=margin:0in>&nbsp;</p>
	<p style=margin:0in><font face="Arial" size="2">CDialogResize:</font></p>
	<ul style='margin-top:0in;margin-bottom:0in'>
		<li>
		<p style=margin:0in><font face="Arial" size="2">Enabled use for Windows CE</font></p>
		</li>
		<li>
		<p style=margin:0in><font face="Arial" size="2">Add WS_EX_DLGMODALFRAME to 
	prevent empty icon</font></p></li>
	</ul>
	<p style=margin:0in>&nbsp;</p>
	<p style=margin:0in><font face="Arial" size="2">CReBarCtrl:</font></p>
	<ul style='margin-top:0in;margin-bottom:0in'>
		<li>
		<p style=margin:0in><font face="Arial" size="2">Background not painted when 
	resized</font></p></li>
		<li>
		<p style=margin:0in><font face="Arial" size="2">Fixed typo in LockBands()</font></p>
		</li>
		<li>
		<p style=margin:0in><font face="Arial" size="2">MaximizeBand needs BOOL 
	fIdeal argument</font></p></li>
	</ul>
	<p style=margin:0in>&nbsp;</p>
	<p style=margin:0in><font face="Arial" size="2">CRichEdit:</font></p>
	<ul style='margin-top:0in;margin-bottom:0in'>
		<li>
		<p style=margin:0in><font face="Arial" size="2">GetSelText() should 
		support UNICODE strings</font></p>
		</li>
		<li>
		<p style=margin:0in><font face="Arial" size="2">GetSelText() uses lpstr instead of lpstrText</font></p></li>
	</ul>
  <p style=margin:0in>&nbsp;</p>
	<p style=margin:0in><font face="Arial" size="2">CHyperLink:</font></p>
	<ul style='margin-top:0in;margin-bottom:0in'>
		<li>
		<p style=margin:0in><font face="Arial" size="2">Added _xttoi() helper to 
	avoid CRT in _ATL_MIN_CRT</font></p></li>
		<li>
		<p style=margin:0in><font face="Arial" size="2">Fixed resource leak by 
	destroying tooltip window<br>&nbsp;</font></p></li>
	</ul>
	<p style=margin:0in><font face="Arial" size="2">CPropertySheetImpl:</font></p>
	<ul style='margin-top:0in;margin-bottom:0in'>
		<li>
		<p style=margin:0in><font face="Arial" size="2">Improved support for Windows 
	CE</font></p></li>
		<li>
		<p style=margin:0in><font face="Arial" size="2">Sheet without title 
	generates a memory fault on Windows CE</font></p></li>
	</ul>
	<p style=margin:0in>&nbsp;</p>
	<p style=margin:0in><font face="Arial" size="2">CFolderDialog:</font></p>
	<ul style='margin-top:0in;margin-bottom:0in'>
		<li>
		<p style=margin:0in><font face="Arial" size="2">Add a way to set an initial 
	folder</font></p></li>
		<li>
		<p style=margin:0in><font face="Arial" size="2">Uses BFFM_IUNKNOWN which is 
	not always defined</font></p></li>
	</ul>
	<p style=margin:0in>&nbsp;</p>
	<p style=margin:0in><font face="Arial" size="2">Update UI:</font></p>
	<ul style='margin-top:0in;margin-bottom:0in'>
		<li>
		<p style=margin:0in><font face="Arial" size="2">Add support to 
		dynamically add UpdateUI elements</font></p></li>
		<li>
		<p style=margin:0in><font face="Arial" size="2">UIUpdateMenuBarElement() 
		should use EnableMenu() instead of SetMenuItemInfo() for Windows CE</font></p>
		</li>
	</ul>
	<p style=margin:0in>&nbsp;</p>
	<p style=margin:0in><font face="Arial" size="2">CDC:</font></p>
	<ul style='margin-top:0in;margin-bottom:0in'>
		<li>
		<p style=margin:0in><font face="Arial" size="2">FillSolidRect() should 
		restore background color</font></p></li>
		<li>
		<p style=margin:0in><font face="Arial" size="2">GetClipRgn() method 
		missing</font></p></li>
	</ul>
	<p style=margin:0in>&nbsp;</p>
	<p style=margin:0in><font face="Arial" size="2">Printing:</font></p>
	<ul style='margin-top:0in;margin-bottom:0in'>
		<li>
		<p style=margin:0in><font face="Arial" size="2">
		CPrinter::CreatePrinterDC() and CreatePrinterIC() members should be 
		const</font></p></li>
		<li>
		<p style=margin:0in><font face="Arial" size="2">CDevMode::CopyToHDEVMODE() is missing a call to GlobalUnlock()</font></p>
		</li>
	</ul>
  <p style=margin:0in>&nbsp;</p>
	<p style=margin:0in><font face="Arial" size="2">AppWizard:</font></p>
	<ul style='margin-top:0in;margin-bottom:0in'>
		<li>
		<p style=margin:0in><font face="Arial" size="2">Use WTL subfolder to 
		create WTL category for VC7.x and VC8</font></p></li>
		<li>
		<p style=margin:0in><font face="Arial" size="2">Rename files from 
		WTLApp7x to WTLAppWiz, and add VS2005 setup file</font></p></li>
		<li>
		<p style=margin:0in><font face="Arial" size="2">Fixed setup 
		for x64</font></p></li>
	</ul>
  <p style=margin:0in>&nbsp;</p>
	<p style=margin:0in><font face="Arial" size="2">General:</font></p>
	<ul style='margin-top:0in;margin-bottom:0in'>
		<li>
		<p style=margin:0in><font face="Arial" size="2">Redefinition of _MAX_FNAME 
		with Dinkumware Standard C++ Library on Windows CE</font></p></li>
		<li>
		<p style=margin:0in><font face="Arial" size="2">Added ATLVERIFY macro 
		for ATL3</font></p></li>
		<li>
		<p style=margin:0in><font face="Arial" size="2">Support warning level 4</font></p>
		</li>
		<li>
		<p style=margin:0in><font face="Arial" size="2">Missing methods 
		CToolBarCtrl::SetButtonInfo, InsertButton, CTabCtrl::SetItem, 
		CComboBoxEx::InsertItem, SetItem</font></p></li>
		<li>
		<p style=margin:0in><font face="Arial" size="2">Missing support for 
		WM_PRINTCLIENT</font></p></li>
		<li>
		<p style=margin:0in><font face="Arial" size="2">Removed usage of IsBad* 
		functions</font></p></li>
		<li>
		<p style=margin:0in><font face="Arial" size="2">Fixed various compiler 
		warnings</font></p></li>
		<li>
		<p style=margin:0in><font face="Arial" size="2">TCHAR bugs in various 
		files</font></p></li>
		<li>
		<p style=margin:0in><font face="Arial" size="2">Improved Windows CE support and changes for Visual Studio 2005</font></p></li>
	</ul>
	<p style=margin:0in>&nbsp;</p>
	<p style=margin:0in><font face="Arial" size="2">Misc:</font></p>
	<ul style='margin-top:0in;margin-bottom:0in'>
		<li>
		<p style=margin:0in><font face="Arial" size="2">CMDIChildWindowImpl: 
		HMENU should be destroyed in OnDestroy()</font></p>
		</li>
		<li>
		<p style=margin:0in><font face="Arial" size="2">CStatic: Should use 
		STM_SETIMAGE instead of STM_SETICON for SetIcon() on Windows CE</font></p>
		</li>
		<li>
		<p style=margin:0in><font face="Arial" size="2">CButton: GetButtonStyle() 
		uses wrong mask</font></p></li>
		<li>
		<p style=margin:0in><font face="Arial" size="2">CImageList: Made 
		Duplicate() method const</font></p></li>
		<li>
		<p style=margin:0in><font face="Arial" size="2">CListViewCtrl: Made 
		SubItemHitTest() method const</font></p></li>
		<li>
		<p style=margin:0in><font face="Arial" size="2">CTreeViewCtrl: GetItem() 
		and SetItem() incorrectly restricted to _WIN32_IE &gt;= 0x0500</font></p>
		</li>
		<li>
		<p style=margin:0in><font face="Arial" size="2">CMonthCalendarCtrl: 
		GetMonthRange() should be GetMaxTodayWidth()</font></p></li>
		<li>
		<p style=margin:0in><font face="Arial" size="2">CDateTimePickerCtrl: 
		SetFormat() should have const argument</font></p></li>
		<li>
		<p style=margin:0in><font face="Arial" size="2">CBitmapButtonImpl: Fixed 
		resource leak by destroying tooltip window</font></p></li>
		<li>
		<p style=margin:0in><font face="Arial" size="2">
		CMultiPaneStatusBarCtrlImpl: Cannot handle wide panes without resource 
		strings</font></p></li>
		<li>
		<p style=margin:0in><font face="Arial" size="2">CCheckListViewCtrlImpl: 
		Call CheckSelectedItems() through pT</font></p></li>
		<li>
		<p style=margin:0in><font face="Arial" size="2">CPaneContainerImpl: 
		SetPaneContainerExtendedStyle() should use pT to call CalcSize()</font></p></li>
		<li>
		<p style=margin:0in><font face="Arial" size="2">CFindFile: Enabled for 
		Windows CE</font></p></li>
		<li>
		<p style=margin:0in><font face="Arial" size="2">CPropertyPageImpl: Added 
		handlers for callback messages</font></p></li>
		<li>
		<p style=margin:0in><font face="Arial" size="2">atlcrack.h: Added return 
		value for MSG_WM_APPCOMMAND</font></p></li>
		<li>
		<p style=margin:0in><font face="Arial" size="2">CMenu: New method variants: AppendMenu, InsterMenu, ModifyMenu</font></p></li>
		<li>
		<p style=margin:0in><font face="Arial" size="2">CFont: Added arguments 
		for bold and italic to CreatePointFont()</font></p></li>
		<li>
		<p style=margin:0in><font face="Arial" size="2">CSize: Added scalar 
		operators for WTL::CSize and ATL::CSize</font></p></li>
		<li>
		<p style=margin:0in><font face="Arial" size="2">CRecentDocumentList: 
		Allow changing the &quot;DocumentCount&quot; and &quot;Document%i&quot; registry values 
		strings</font></p></li>
		<li>
		<p style=margin:0in><font face="Arial" size="2">CSplitterWindowImpl: 
		Enabled use for Windows CE</font></p></li>
	</ul>
  </blockquote>
<p style=margin:0in><br>
&nbsp;</p>
<p style=margin:0in><b><font face="Arial">
<a name="Changes Between WTL 7.1 And 7.0"></a>Changes Between WTL 7.1 And 7.0</font></b></p>
<p style=margin:0in>&nbsp;</p>
  <p style=margin:0in><font face="Arial" size="2">New and improved:</font></p>
<blockquote style='margin-top:0in;margin-bottom:0in'>
  <p style=margin:0in><font face="Arial" size="2">VC7 Compatibility: Support for 
  ATL7 Module classes and critical sections and AppWizard setup for VC++ 7.1</font></p>
  <p style=margin:0in><font face="Arial" size="2">Windows CE Support: Full 
  compatibility with Windows CE platforms and AppWizard for eMbedded Visual C++</font></p>
  <p style=margin:0in><font face="Arial" size="2">Namespace Support: Automatic 
  &quot;using ATL&quot; (ATL7 only) or &quot;using WTL&quot; can now be turned off</font></p>
  <p style=margin:0in><font face="Arial" size="2">CHyperLink New Features: not 
  underlined, underlined when hover, command button, link tags</font></p>
  <p style=margin:0in><font face="Arial" size="2">CCustomWaitCursor class 
  supports custom and animated wait cursors</font></p>
  <p style=margin:0in><font face="Arial" size="2">AtlCreateBoldFont() for 
  creating bold version of an existing font</font></p>
</blockquote>
  <p style=margin:0in>&nbsp;</p>
  <p style=margin:0in><font face="Arial" size="2">Fixes and enhancements:</font></p>
  <blockquote style='margin-top:0in;margin-bottom:0in'>
  <p style=margin:0in><font face="Arial" size="2">CFrameWindowImpl:</font></p>
  <ul style='margin-top:0in;margin-bottom:0in'>
    <li>
  <p style=margin:0in><font face="Arial" size="2">CreateSimpleToolBarCtrl() - 
  remove dead code, improve error checking, add a global function that uses it</font></p>
    </li>
    <li>
  <p style=margin:0in><font face="Arial" size="2">Fix - PrepareChevronMenu() fails to 
  get toolbar strings for Unicode</font></p>
    </li>
    <li>
  <p style=margin:0in><font face="Arial" size="2">CFrameWindowImplBase::Create() 
  - improve ASSERT not to use m_hWnd if creation fails</font></p>
    </li>
    <li>
  <p style=margin:0in><font face="Arial" size="2">Fix - CFrameWndClassInfo::Register - 
  should use %p formatting only for _WIN32_WINNT &gt;= 0x0500 or for _WIN64</font></p>
    </li>
    <li>
  <p style=margin:0in><font face="Arial" size="2">Fix - Chevron menus not positioned 
  correctly with RTL</font></p>
    </li>
    <li>
  <p style=margin:0in><font face="Arial" size="2">Fix - CMDIChildWindowImpl: Problems 
  creating maximized child windows and handling focus</font></p>
    </li>
    <li>
  <p style=margin:0in><font face="Arial" size="2">Fix - CMDIChildWindowImpl: Should 
  activate on WM_MOUSEACTIVATE</font></p>
    </li>
  </ul>
  <p style=margin:0in>&nbsp;</p>
  <p style=margin:0in><font face="Arial" size="2">UpdateUI:</font></p>
  <ul style='margin-top:0in;margin-bottom:0in'>
    <li>
  <p style=margin:0in><font face="Arial" size="2">Fix - Incorrectly clears default 
  item from the system menu in MDI apps</font></p>
    </li>
    <li>
  <p style=margin:0in><font face="Arial" size="2">Added UISetCheck with bool 
  instead of int for the check state</font></p>
    </li>
  </ul>
  <p style=margin:0in>&nbsp;</p>
  <p style=margin:0in><font face="Arial" size="2">DDX:</font></p>
  <ul style='margin-top:0in;margin-bottom:0in'>
    <li>
  <p style=margin:0in><font face="Arial" size="2">Fix - Doesn't provide a way to 
  change floating point precision</font></p>
    </li>
    <li>
  <p style=margin:0in><font face="Arial" size="2">Added DDX_CONTROL_HANDLE for 
  non-CWindowImpl objects</font></p>
    </li>
    <li>
  <p style=margin:0in><font face="Arial" size="2">Added DDX_Check variant with 
  bool instead of int for the check state</font></p>
    </li>
  </ul>
  <p style=margin:0in>&nbsp;</p>
  <p style=margin:0in><font face="Arial" size="2">Command Bar:</font></p>
  <ul style='margin-top:0in;margin-bottom:0in'>
    <li>
  <p style=margin:0in><font face="Arial" size="2">Fix - OnDrawItem() and OnMeasureItem() 
  don't do a good check for owner-draw menu items</font></p>
    </li>
    <li>
  <p style=margin:0in><font face="Arial" size="2">Fix - Disabled 32-bit images not 
  painted correctly in 3D menu mode</font></p>
    </li>
    <li>
  <p style=margin:0in><font face="Arial" size="2">Fix - Popup menus not positioned 
  correctly with RTL</font></p>
    </li>
    <li>
  <p style=margin:0in><font face="Arial" size="2">Fix - Uses GCL_HICONSM instead of 
  GCLP_HICONSM with GetClassLongPtr()</font></p>
    </li>
  </ul>
  <p style=margin:0in>&nbsp;</p>
  <p style=margin:0in><font face="Arial" size="2">MDI Command Bar:</font></p>
  <ul style='margin-top:0in;margin-bottom:0in'>
    <li>
  <p style=margin:0in><font face="Arial" size="2">Fix - Doesn't refresh icon if MDI 
  children are different</font></p>
    </li>
    <li>
  <p style=margin:0in><font face="Arial" size="2">OnAllHookMessages() - improve 
  code to handle MDI child window class icon</font></p>
    </li>
    <li>
  <p style=margin:0in><font face="Arial" size="2">Fix - OnNcLButtonDown() uses 
  TPM_VERPOSANIMATION without checking Windows version</font></p>
    </li>
    <li>
  <p style=margin:0in><font face="Arial" size="2">Fix - Maximized MDI buttons in wrong 
  place for RTL</font></p>
    </li>
    <li>
  <p style=margin:0in><font face="Arial" size="2">Should adjust cxIdeal for 
  rebar bands for IE4</font></p>
    </li>
    <li>
  <p style=margin:0in><font face="Arial" size="2">Add support for different 
  top-level menu widths by handling ideal size for rebar bands</font></p>
    </li>
  </ul>
  <p style=margin:0in>&nbsp;</p>
  <p style=margin:0in><font face="Arial" size="2">AppWizard:</font></p>
  <ul style='margin-top:0in;margin-bottom:0in'>
    <li>
  <p style=margin:0in><font face="Arial" size="2">Fix - Doesn't support MSDI 
  application as a COM Server</font></p>
    </li>
    <li>
  <p style=margin:0in><font face="Arial" size="2">Fix - MDI with Form View - stack 
  overflow closing maximized MDI child windows</font></p>
    </li>
    <li>
  <p style=margin:0in><font face="Arial" size="2">Fix - Generates VERSION resource 
  name 'test1' regardless of the project name</font></p>
    </li>
    <li>
  <p style=margin:0in><font face="Arial" size="2">Fix - Dialog project with control 
  hosting doesn't derive a dialog from CAxDialogImpl</font></p>
    </li>
    <li>
  <p style=margin:0in><font face="Arial" size="2">Fix - COM Server doesn't register 
  type library</font></p>
    </li>
    <li>
  <p style=margin:0in><font face="Arial" size="2">Fix - COM Server doesn't register 
  AppID properly</font></p>
    </li>
  </ul>
  <p style=margin:0in>&nbsp;</p>
  <p style=margin:0in><font face="Arial" size="2">CTreeViewCtrl:</font></p>
  <ul style='margin-top:0in;margin-bottom:0in'>
    <li>
  <p style=margin:0in><font face="Arial" size="2">Fix - GetItemData() needs better 
  return value</font></p>
    </li>
    <li>
  <p style=margin:0in><font face="Arial" size="2">Fix - GetItemState() should use 
  TVM_GETITEMSTATE instead of TVM_GETITEM for IE5</font></p>
    </li>
    <li>
  <p style=margin:0in><font face="Arial" size="2">GetItem() and SetItem() - 
  added 
  new variants that use TVITEMEX</font></p>
    </li>
    <li>
  <p style=margin:0in><font face="Arial" size="2">Fix - SortChildren() should add 
  recurse flag argument</font></p>
    </li>
    <li>
  <p style=margin:0in><font face="Arial" size="2">Fix - CTreeItem doesn't support 
  CTreeViewCtrlExT that has different TBase than CWindow</font></p>
    </li>
  </ul>
  <p style=margin:0in>&nbsp;</p>
  <p style=margin:0in><font face="Arial" size="2">CThemeImpl:</font></p>
  <ul style='margin-top:0in;margin-bottom:0in'>
    <li>
  <p style=margin:0in><font face="Arial" size="2">Fix - Uses scalar delete instead of 
  the vector one</font></p>
    </li>
    <li>
  <p style=margin:0in><font face="Arial" size="2">Fix - EnableThemeDialogTexture() 
  argument is BOOL instead of DWORD</font></p>
    </li>
  </ul>
  <p style=margin:0in>&nbsp;</p>
  <p style=margin:0in><font face="Arial" size="2">CFolderDialog:</font></p>
  <ul style='margin-top:0in;margin-bottom:0in'>
    <li>
  <p style=margin:0in><font face="Arial" size="2">Fix - EnableOK() passes wrong 
  arguments to BFFM_ENABLEOK</font></p>
    </li>
    <li>
  <p style=margin:0in><font face="Arial" size="2">Fix - Always clears m_hWnd, which 
  causes problem for nested messages</font></p>
    </li>
  </ul>
  <p style=margin:0in>&nbsp;</p>
  <p style=margin:0in><font face="Arial" size="2">CDialogResize:</font></p>
  <ul style='margin-top:0in;margin-bottom:0in'>
    <li>
  <p style=margin:0in><font face="Arial" size="2">Fix - DlgResize_Init() forces dialog 
  to be visible by using SetRedraw()</font></p>
    </li>
    <li>
  <p style=margin:0in><font face="Arial" size="2">Forcing WS_THICKFRAME is not 
  enough to make dialog resizable</font></p>
    </li>
    <li>
  <p style=margin:0in><font face="Arial" size="2">Min track size should be used 
  for child dialogs as well</font></p>
    </li>
    <li>
  <p style=margin:0in><font face="Arial" size="2">Fix - DlgResize_PositionControl() 
  incorrectly checks return value from MapWindowPoints()</font></p>
    </li>
  </ul>
  <p style=margin:0in>&nbsp;</p>
  <p style=margin:0in><font face="Arial" size="2">CAppModule:</font></p>
  <ul style='margin-top:0in;margin-bottom:0in'>
    <li>
  <p style=margin:0in><font face="Arial" size="2">Fix - CAppModule methods not 
  thread-safe</font></p>
    </li>
    <li>
  <p style=margin:0in><font face="Arial" size="2">Fix - AddSettingChangeNotify() 
  unusable in multithreaded apps because of delayed initialization</font></p>
    </li>
  </ul>
  <p style=margin:0in>&nbsp;</p>
  <p style=margin:0in><font face="Arial" size="2">CString:</font></p>
  <ul style='margin-top:0in;margin-bottom:0in'>
    <li>
  <p style=margin:0in><font face="Arial" size="2">Fix - Delete() doesn't allow 
  deleting more than the length of the string</font></p>
    </li>
    <li>
  <p style=margin:0in><font face="Arial" size="2">Fix - Append() can cause buffer 
  overrun</font></p>
    </li>
    <li>
  <p style=margin:0in><font face="Arial" size="2">Fix - MakeReverse() can cause an 
  infinite loop</font></p>
    </li>
    <li>
  <p style=margin:0in><font face="Arial" size="2">Fix - _cstrstr() unnecessarily 
  inefficient</font></p>
    </li>
    <li>
  <p style=margin:0in><font face="Arial" size="2">Fix - FindOneOf() is not DBCS-aware</font></p>
    </li>
    <li>
  <p style=margin:0in><font face="Arial" size="2">Fix - Format() does not recognize %E</font></p>
    </li>
    <li>
  <p style=margin:0in><font face="Arial" size="2">Fix - TrimLeft() and TrimRight() are 
  only half-way DBCS-aware</font></p>
    </li>
    <li>
  <p style=margin:0in><font face="Arial" size="2">Fix - May cause assertions or 
  undefined behavior with SBCS</font></p>
    </li>
  </ul>
  <p style=margin:0in>&nbsp;</p>
  <p style=margin:0in><font face="Arial" size="2">CRecentDocumentList:</font></p>
  <ul style='margin-top:0in;margin-bottom:0in'>
    <li>
  <p style=margin:0in><font face="Arial" size="2">Fix - SetMaxEntries() has an 
  incorrect ASSERT</font></p>
    </li>
    <li>
  <p style=margin:0in><font face="Arial" size="2">Add CString variant of the 
  GetFromList() method</font></p>
    </li>
    <li>
  <p style=margin:0in><font face="Arial" size="2">Add a way to replace command 
  IDs used for the MRU list</font></p>
    </li>
    <li>
  <p style=margin:0in><font face="Arial" size="2">Add a way to replace registry 
  key name</font></p>
    </li>
  </ul>
  <p style=margin:0in>&nbsp;</p>
  <p style=margin:0in><font face="Arial" size="2">Misc:</font></p>
  <ul style='margin-top:0in;margin-bottom:0in'>
    <li>
  <p style=margin:0in><font face="Arial" size="2">CMessageLoop::Run() - improve 
  the loop by checking bDoIdle before calling PeekMessage()</font></p>
    </li>
    <li>
  <p style=margin:0in><font face="Arial" size="2">CServerAppModule: Clean-up 
  unused code</font></p>
    </li>
    <li>
  <p style=margin:0in><font face="Arial" size="2">Fix - CServerAppModule::MonitorProc() 
  - no need to call _endthreadex()</font></p>
    </li>
    <li>
  <p style=margin:0in><font face="Arial" size="2">Fix - CListBox::GetText() and 
  CComboBox::GetLBText() (CString variants) don't check for LBERR/CB_ERR</font></p>
    </li>
    <li>
  <p style=margin:0in><font face="Arial" size="2">Fix - CAxPropertyPageImpl doesn't 
  create ActiveX controls with ATL7</font></p>
    </li>
    <li>
  <p style=margin:0in><font face="Arial" size="2">Fix - CDC::GetTextExtentExPoint() 
  missing</font></p>
    </li>
    <li>
  <p style=margin:0in><font face="Arial" size="2">CDC::SetWindowExt() should 
  have default value NULL for the lpSizeRet argument</font></p>
    </li>
    <li>
  <p style=margin:0in><font face="Arial" size="2">Fix - CPropertySheetWindow missing 
  methods for PSM_INSERTPAGE, PSM_SETHEADERTITLE, and PSM_SETHEADERSUBTITLE; 
  AddPage should return BOOL</font></p>
    </li>
    <li>
  <p style=margin:0in><font face="Arial" size="2">Fix - CMapScrollImpl::SetScrollSize() 
  uses wrong variable</font></p>
    </li>
    <li>
  <p style=margin:0in><font face="Arial" size="2">Fix - CHyperLink: WM_UPDATEUISTATE 
  causes repaint without WM_PAINT</font></p>
    </li>
    <li>
  <p style=margin:0in><font face="Arial" size="2">Fix - CUpDownCtrl::GetPos() returns 
  incorrect value</font></p>
    </li>
    <li>
  <p style=margin:0in><font face="Arial" size="2">Fix - CUpDownCtrl::GetPos32() 
  doesn't have default arg value</font></p>
    </li>
    <li>
  <p style=margin:0in><font face="Arial" size="2">Fix - CMultiPaneStatusBarCtrl: 
  Always uses size grip for positioning panes</font></p>
    </li>
    <li>
  <p style=margin:0in><font face="Arial" size="2">Fix - CTabCtrl::InsertItem() should 
  return int, not BOOL</font></p>
    </li>
    <li>
  <p style=margin:0in><font face="Arial" size="2">CReBarCtrl: Added LockBands() 
  method</font></p>
    </li>
    <li>
  <p style=margin:0in><font face="Arial" size="2">Fix - CFont: uninitialized variable 
  passed to DPtoLP</font></p>
    </li>
    <li>
  <p style=margin:0in><font face="Arial" size="2">Fix - CPrintDialogImpl: Crash when 
  displaying Print Setup dialog</font></p>
    </li>
    <li>
  <p style=margin:0in><font face="Arial" size="2">Fix -
  CPageSetupDialogImpl::PaintHookProc() - should use T* and return UINT_PTR 
  instead of UINT</font></p>
    </li>
    <li>
  <p style=margin:0in><font face="Arial" size="2">Fix - CPrintJob doesn't support 
  printing to a file</font></p>
    </li>
    <li>
  <p style=margin:0in><font face="Arial" size="2">Fix - CSplitterImpl: Doesn't handle 
  WM_CAPTURECHANGED - can get in an invalid state</font></p>
    </li>
    <li>
  <p style=margin:0in><font face="Arial" size="2">CRichEditCtrl: Add method for 
  EM_SETTABSTOPS</font></p>
    </li>
    <li>
  <p style=margin:0in><font face="Arial" size="2">Fix - CFindFile::GetFilePath() 
  checks for a trailing slash, but doesn't use that info</font></p>
    </li>
  </ul>
  <p style=margin:0in>&nbsp;</p>
  <p style=margin:0in><font face="Arial" size="2">General:</font></p>
  <ul style='margin-top:0in;margin-bottom:0in'>
    <li>
  <p style=margin:0in><font face="Arial" size="2">Fix - Problems compiling with /Zc:forScope 
  ('for' loop scope conformance)</font></p>
    </li>
    <li>
  <p style=margin:0in><font face="Arial" size="2">Use named constants instead of 
  values for pixel sizes, buffer lengths, etc.</font></p>
    </li>
    <li>
  <p style=margin:0in><font face="Arial" size="2">Support building with Managed 
  C++ (/CLR)</font></p>
    </li>
    <li>
  <p style=margin:0in><font face="Arial" size="2">CMenuItemInfo - add run-time 
  support for different versions of Windows</font></p>
    </li>
    <li>
  <p style=margin:0in><font face="Arial" size="2">CommCtrl.h change - additional 
  fields in IMAGELISTDRAWPARAMS now depend on _WIN32_IE instead of _WIN32_WINNT</font></p>
    </li>
    <li>
  <p style=margin:0in><font face="Arial" size="2">Fix - Incorrect usage of CRegKey::QueryStringValue()</font></p>
    </li>
    <li>
  <p style=margin:0in><font face="Arial" size="2">Fix - Operator = for GDI and USER 
  wrappers leaks handle if it's managed variant</font></p>
    </li>
    <li>
  <p style=margin:0in><font face="Arial" size="2">Fix - GDI and USER wrappers break 
  under self-assignments</font></p>
    </li>
    <li>
  <p style=margin:0in><font face="Arial" size="2">Fix - Chaining messages with cracked 
  handlers broken with ATL7</font></p>
    </li>
    <li>
  <p style=margin:0in><font face="Arial" size="2">Initialize all variables and 
  structures prior to use</font></p>
    </li>
    <li>
  <p style=margin:0in><font face="Arial" size="2">Use new common control struct 
  names</font></p>
    </li>
  </ul>
  </blockquote>
  <p style=margin:0in>&nbsp;</p>
  <p style=margin:0in>&nbsp;</p>
<p style=margin:0in><b><font face="Arial">
<a name="Changes Between WTL 7.0 And 3.1"></a>Changes Between WTL 7.0 And 3.1</font></b></p>
<p style=margin:0in>&nbsp;</p>
<p style=margin:0in><font face="Arial" size="2">New classes and features:</font></p>
<blockquote style='margin-top:0in;margin-bottom:0in'>
  <p style=margin:0in><font face="Arial" size="2">Support for new Common Controls v6 messages</font></p>
  <p style=margin:0in><font face="Arial" size="2">Support for Visual Studio .NET and ATL 7.0</font></p>
  <p style=margin:0in><font face="Arial" size="2">WTLApp70 - new AppWizard for Visual Studio 
  .NET</font></p>
  <p style=margin:0in><font face="Arial" size="2">CThemeImpl - implements support for Windows XP 
  themes</font></p>
  <p style=margin:0in><font face="Arial" size="2">CMDICommandBarCtrl - implements Command Bar for 
  MDI applications</font></p>
</blockquote>
<p style=margin:0in>&nbsp;</p>
<p style=margin:0in><font face="Arial" size="2">Fixes and enhancements:</font></p>
<blockquote style='margin-top:0in;margin-bottom:0in'>
  <p style=margin:0in><font face="Arial" size="2">Command Bar:</font></p>
  <ul style='margin-top:0in;margin-bottom:0in'>
    <li><font face="Arial" size="2">Bogus assert in OnDestroy</font></li>
    <li><font face="Arial" size="2">Check marks can be truncated in large font 
    settings</font></li>
    <li><font face="Arial" size="2">Use pT to access GetSystemSettings, 
    DrawMenuText, DrawBitmapDisabled, Draw3DCheckmark, DoPopupMenu, 
    DoTrackPopupMenu, TakeFocus, GiveFocusBack, so they can be overridden</font></li>
    <li><font face="Arial" size="2">No hot-tracking if main window is not active</font></li>
    <li><font face="Arial" size="2">Top level items not painted inactive if app 
    looses activation while drop down menu is displayed</font></li>
    <li><font face="Arial" size="2">Added Windows XP flat menus support</font></li>
    <li><font face="Arial" size="2">Drop-down menu doesn't close if clicked 
    again (Windows XP only)</font></li>
    <li><font face="Arial" size="2">Menu item text and accelerator text too 
    close with some settings</font></li>
    <li><font face="Arial" size="2">Keyboard can still access clipped menu items</font></li>
    <li><font face="Arial" size="2">Added support for hiding keyboard navigation 
    indicators until Alt key is pressed (system setting)</font></li>
    <li><font face="Arial" size="2">Added AddIcon and ReplaceIcon variants for 
    icon resources</font></li>
    <li><font face="Arial" size="2">Image size calculated differently in 
    different places</font></li>
    <li><font face="Arial" size="2">Add support for 32-bit (alpha channel) 
    bitmaps for Windows XP</font></li>
    <li><font face="Arial" size="2">Fixed width calculation for default menu 
    items</font></li>
  </ul>
  <p style=margin:0in>&nbsp;</p>
  <p style=margin:0in><font face="Arial" size="2">CFrameWindowImpl:</font></p>
  <ul style='margin-top:0in;margin-bottom:0in'>
    <li><font face="Arial" size="2">AddSimpleReBarBandCtrl sets toolbar extended 
    styles without preserving old ones</font></li>
    <li><font face="Arial" size="2">PrepareChevronMenu should not create menu 
    items for buttons with TBSTATE_HIDDEN</font></li>
    <li><font face="Arial" size="2">TPM_VERPOSANIMATION will not be defined in 
    atlframe.h if atlctrlw.h is included first</font></li>
    <li><font face="Arial" size="2">CreateSimpleToolBarCtrl - height might be 
    too small if large font is used</font></li>
    <li><font face="Arial" size="2">PrepareChevronMenu uses TB_GETBUTTONTEXT, 
    better use TB_GETBUTTONINFO</font></li>
    <li><font face="Arial" size="2">Chevron menu doesn't close if clicked again 
    (Windows XP only)</font></li>
    <li><font face="Arial" size="2">Should check local classes for superclassing</font></li>
    <li><font face="Arial" size="2">Add support for 32-bit (alpha channel) 
    bitmaps for Windows XP</font></li>
  </ul>
  <p style=margin:0in>&nbsp;</p>
  <p style=margin:0in><font face="Arial" size="2">Update UI:</font></p>
  <ul style='margin-top:0in;margin-bottom:0in'>
    <li><font face="Arial" size="2">UISetText can clear other menu item flags</font></li>
    <li><font face="Arial" size="2">CUpdateUI::UIUpdateState assigns value with 
    |= instead of =</font></li>
    <li><font face="Arial" size="2">Added UISetDefault() and fix default state 
    to work with menus</font></li>
  </ul>
  <p style=margin:0in>&nbsp;</p>
  <p style=margin:0in><font face="Arial" size="2">CString:</font></p>
  <ul style='margin-top:0in;margin-bottom:0in'>
    <li><font face="Arial" size="2">GetBuffer() and GetBufferSetLength() should 
    return NULL in out-of-memory condition</font></li>
    <li><font face="Arial" size="2">Added missing methods: separate c-tors for 
    LPCSTR and LPCWSTR, CollateNoCase, TrimRight and TrimLeft variants, Find 
    variants, moved FormatV to public</font></li>
    <li><font face="Arial" size="2">Fix _IsValidString usage</font></li>
    <li><font face="Arial" size="2">FormatV incorrectly calculates buffer size 
    (too big)</font></li>
    <li><font face="Arial" size="2">Usage of _ttoi causes problems with _ATL_MIN_CRT 
    in VC7</font></li>
  </ul>
  <p style=margin:0in>&nbsp;</p>
  <p style=margin:0in><font face="Arial" size="2">CDC:</font></p>
  <ul style='margin-top:0in;margin-bottom:0in'>
    <li><font face="Arial" size="2">GetTabbedTextExtent() should return DWORD 
    instead of BOOL</font></li>
    <li><font face="Arial" size="2">Add FillRect() that accept color index 
    instead of a brush handle</font></li>
    <li><font face="Arial" size="2">DrawDragRect() leaks regions and a brush</font></li>
    <li><font face="Arial" size="2">Improved DitherBlt() - added brushes as 
    arguments for used colors</font></li>
    <li><font face="Arial" size="2">Added DrawShadowText() (uses LoadLibrary/GetProcAddress 
    to run on older Windows)</font></li>
  </ul>
  <p style=margin:0in>&nbsp;</p>
  <p style=margin:0in><font face="Arial" size="2">CListViewCtrl:</font></p>
  <ul style='margin-top:0in;margin-bottom:0in'>
    <li><font face="Arial" size="2">SetItemState should use LVM_SETITEMSTATE</font></li>
    <li><font face="Arial" size="2">SetItemCount should return a BOOL</font></li>
  </ul>
  <p style=margin:0in>&nbsp;</p>
  <p style=margin:0in><font face="Arial" size="2">CRichEditCtrl:</font></p>
  <ul style='margin-top:0in;margin-bottom:0in'>
    <li><font face="Arial" size="2">Added SetCharFormat() variant that accepts 
    flags (for SCF_ALL)</font></li>
    <li><font face="Arial" size="2">CharFromPos() should pass a pointer to 
    POINTL in lParam</font></li>
    <li><font face="Arial" size="2">GetTextRange() - should add Unicode variant 
    for rich edit version &gt;= 2</font></li>
    <li><font face="Arial" size="2">Added another FormatRange() that can accept 
    a pointer to FORMATRANGE (needed for passing NULL to clear cache)</font></li>
  </ul>
  <p style=margin:0in>&nbsp;</p>
  <p style=margin:0in><font face="Arial" size="2">CHyperLink:</font></p>
  <ul style='margin-top:0in;margin-bottom:0in'>
    <li><font face="Arial" size="2">Allow overriding of Navigate and 
    CalcLabelRect</font></li>
    <li><font face="Arial" size="2">Doesn't handle right or center alignment</font></li>
  </ul>
  <p style=margin:0in>&nbsp;</p>
  <p style=margin:0in><font face="Arial" size="2">CColorDialog:</font></p>
  <ul style='margin-top:0in;margin-bottom:0in'>
    <li><font face="Arial" size="2">Has static variables that were not 
    initialized with _ATL_MIN_CRT</font></li>
    <li><font face="Arial" size="2">Fixed HookProc for ColorOK message - the 
    message is not sent, but the hook proc is called directly</font></li>
  </ul>
  <p style=margin:0in>&nbsp;</p>
  <p style=margin:0in><font face="Arial" size="2">atlcrack.h:</font></p>
  <ul style='margin-top:0in;margin-bottom:0in'>
    <li><font face="Arial" size="2">MSG_WM_TIMER crack macro should cast to 
    TIMERPROC instead of TIMERPROC*</font></li>
    <li><font face="Arial" size="2">Add cracked handlers for all new messages in 
    Common Controls 6</font></li>
  </ul>
  <p style=margin:0in>&nbsp;</p>
  <p style=margin:0in><font face="Arial" size="2">atlapp.h:</font></p>
  <ul style='margin-top:0in;margin-bottom:0in'>
    <li><font face="Arial" size="2">Fixed problems with atlTraceUI with ATL7</font></li>
    <li><font face="Arial" size="2">#ifdefs for ATL7 were in the wrong place</font></li>
  </ul>
  <p style=margin:0in>&nbsp;</p>
  <p style=margin:0in><font face="Arial" size="2">atlctrls.h:</font></p>
  <ul style='margin-top:0in;margin-bottom:0in'>
    <li><font face="Arial" size="2">Add support in control classes for all new 
    messages in Common Controls 6</font></li>
  </ul>
  <p style=margin:0in>&nbsp;</p>
  <p style=margin:0in><font face="Arial" size="2">CRecentDocumentList:</font></p>
  <ul style='margin-top:0in;margin-bottom:0in'>
    <li><font face="Arial" size="2">AtlCompactPath corrupts memory if filename 
    is longer than requested compact size</font></li>
    <li><font face="Arial" size="2">ReadFromRegistry incorrectly checks for 
    error when reading from registry</font></li>
  </ul>
  <p style=margin:0in>&nbsp;</p>
  <p style=margin:0in><font face="Arial" size="2">CSplitterWindow:</font></p>
  <ul style='margin-top:0in;margin-bottom:0in'>
    <li><font face="Arial" size="2">Incorrect calculation of middle position</font></li>
    <li><font face="Arial" size="2">3D border now drawn only if WS_EX_CLIENTEDGE 
    is set</font></li>
  </ul>
  <p style=margin:0in>&nbsp;</p>
  <p style=margin:0in><font face="Arial" size="2">Printing:</font></p>
  <ul style='margin-top:0in;margin-bottom:0in'>
    <li><font face="Arial" size="2">Uses DWORD instead of an int for a job ID</font></li>
    <li><font face="Arial" size="2">CPrintJob::CancelPrintJob shouldn't have a 
    return value</font></li>
  </ul>
  <p style=margin:0in>&nbsp;</p>
  <p style=margin:0in><font face="Arial" size="2">Misc:</font></p>
  <ul style='margin-top:0in;margin-bottom:0in'>
    <li><font face="Arial" size="2">CRegKey::QueryValue and SetValue are 
    deprecated in ATL7</font></li>
    <li><font face="Arial" size="2">Added direct support for ATL7</font></li>
    <li><font face="Arial" size="2">Replace ScreenToClient and ClientToScreen 
    with MapWindowPoints to support RTL layout</font></li>
    <li><font face="Arial" size="2">CFindFile::GetFilePath(LPTSTR...) returns 
    path without the file name</font></li>
    <li><font face="Arial" size="2">MDI: Updating client edge in 
    WM_WINDOWPOSCHANGING causes minimize/maximize/restore animation problems, 
    use WM_WINDOWPOSCHANGED</font></li>
    <li><font face="Arial" size="2">Custom Draw: Added 
    CCustomDraw::OnSubItemPrePaint() overrideable method</font></li>
    <li><font face="Arial" size="2">CFolderDialogImpl uses 'this' for 
    BROWSEINFO.lParam instead of T*</font></li>
    <li><font face="Arial" size="2">CImageList::Destroy shouldn't use Detach()</font></li>
    <li><font face="Arial" size="2">ATL7 has its own AtlLoadString</font></li>
    <li><font face="Arial" size="2">CPropertySheet doesn't close when you press 
    X button</font></li>
    <li><font face="Arial" size="2">Fixed problems for _U_STRINGorID and others 
    that moved from atlbase.h to atlwin.h in ATL7</font></li>
    <li><font face="Arial" size="2">Add AtlMessageBox() that accepts either 
    in-memory or resource strings</font></li>
    <li><font face="Arial" size="2">CScrollImpl: fixed bug with scrolling child 
    windows</font></li>
    <li><font face="Arial" size="2">CPropertyPageImpl: Add new notification 
    handlers to enable direct return values (use #ifdef _WTL_NEW_PAGE_NOTIFY_HANDLERS 
    to use them)</font></li>
    <li><font face="Arial" size="2">Add AtlInitCommonControls() to simplify use</font></li>
    <li><font face="Arial" size="2">DDX: Fixed usage of the size of char arrays 
    for DDX</font></li>
    <li><font face="Arial" size="2">CPageSetupDialog: changed usage of 
    CWndProcThunk because of changes in ATL7</font></li>
    <li><font face="Arial" size="2">Fix confusing precedence in expressions</font></li>
    <li><font face="Arial" size="2">Removed forward declarations because default 
    values for template arguments shouldn't be specified in two places (we don't 
    need them anyway)</font></li>
    <li><font face="Arial" size="2">Win64: Fix /Wp64 warnings from 32-bit VC7 
    compiler caused by SDK headers</font></li>
    <li><font face="Arial" size="2">Fix direct usage of English strings (they 
    can be #defined to something else now)</font></li>
    <li><font face="Arial" size="2">AtlGetCommCtrlVersion not defined if _ATL_DLL 
    is in ATL 3.0 (and CmdBar is using it)</font></li>
  </ul>
  <p style=margin:0in>&nbsp;</p>
  <p style=margin:0in><font face="Arial" size="2">AppWizard:</font></p>
  <ul style='margin-top:0in;margin-bottom:0in'>
    <li><font face="Arial" size="2">Added manifest for Common Controls 6</font></li>
    <li><font face="Arial" size="2">Loading Rich Edit DLL should use HMODULE</font></li>
    <li><font face="Arial" size="2">Should not use atlimpl.cpp for ATL7</font></li>
    <li><font face="Arial" size="2">Added message handler prototypes to 
    generated files</font></li>
    <li><font face="Arial" size="2">VERSION resource always has VALUE &quot;OLESelfRegister&quot; 
    (now only for COM servers)</font></li>
    <li><font face="Arial" size="2">Added option for putting implementation in 
    CPP files</font></li>
    <li><font face="Arial" size="2">d-tor for the thread manager class in MSDI 
    project executed after the heap is destroyed</font></li>
    <li><font face="Arial" size="2">Wrong settings when changing to a dialog 
    project and back (AppWizard 6.0 only)</font></li>
    <li><font face="Arial" size="2">Remove cut/copy/paste accelerators for form 
    view and dialogs projects</font></li>
    <li><font face="Arial" size="2">Fix toolbar bitmaps so they are not 
    transparent (problem with Windows XP flat menus only)</font></li>
    <li><font face="Arial" size="2">Used CMDICommandBarCtrl for MDI apps</font></li>
    <li><font face="Arial" size="2">Add symbols required for VC7 Class Wizard to 
    recognize an ATL project</font></li>
    <li><font face="Arial" size="2">Changed default styles for the rebar, so it 
    does look OK without CmdBar and with manifest</font></li>
    <li><font face="Arial" size="2">Added setup programs for both AppWizards</font></li>
    <li><font face="Arial" size="2">Remove ignored resource attributes: 
    MOVEABLE, PURE, etc. (AppWizard 7.0 only)</font></li>
    <li><font face="Arial" size="2">Add call to DefWindowProc to WinMain to 
    resolve possible problems if MSLU is used</font></li>
  </ul>
  <p style=margin:0in>&nbsp;</p>
  <p style=margin:0in><font face="Arial" size="2">Samples:</font></p>
  <ul style='margin-top:0in;margin-bottom:0in'>
    <li><font face="Arial" size="2">Updated toolbar bitmaps, added #ifdefs for 
    ATL7, added manifest file for CommCtrl6, qualified _U_RECT with WTL 
    namespace, updated use of deprecated CRegKey functions, added VC7 projects</font></li>
    <li><font face="Arial" size="2">Added Alpha sample</font></li>
  </ul>
</blockquote>
<p style=margin:0in>&nbsp;</p>
<p style=margin:0in>&nbsp;</p>
<p style=margin:0in><b><font face="Arial">
<a name="Changes Between WTL 3.1 And 3.0"></a>Changes Between WTL 3.1 And 
3.0</font></b></p>
<p style=margin:0in>&nbsp;</p>
<p style=margin:0in><font face="Arial" size="2">New classes:</font></p>
<blockquote style='margin-top:0in;margin-bottom:0in'>
  <p style=margin:0in><font face="Arial" size="2">CPaneContainer - implements a window that 
  provides a title bar and a close button (like Explorer)</font></p>
  <p style=margin:0in><font face="Arial" size="2">CDialogResize - an MI class that allows 
  resizing of dialogs (or any windows with child windows/controls)</font></p>
  <p style=margin:0in><font face="Arial" size="2">CAxPropertyPageImpl - implements a property 
  page that can host ActiveX controls</font></p>
</blockquote>
<p style=margin:0in>&nbsp;</p>
<p style=margin:0in><font face="Arial" size="2">Fixes and enhancements:</font></p>
<blockquote style='margin-top:0in;margin-bottom:0in'>
  <p style=margin:0in><font face="Arial" size="2">CServerAppModule now clears m_hEventShutdown to 
  avoid calling CloseHandle twice</font></p>
  <p style=margin:0in>&nbsp;</p>
  <p style=margin:0in><font face="Arial" size="2">CString:</font></p>
  <ul style='margin-top:0in;margin-bottom:0in'>
    <li><font face="Arial" size="2">operator += now leaves original string 
    intact if it's out of memory</font></li>
    <li><font face="Arial" size="2">Fixed bad DWORD_PTR usage in TrimRight, 
    TrimLeft, Replace, Remove</font></li>
    <li><font face="Arial" size="2">Removed dependencies on CRT for projects 
    that don't use it</font></li>
    <li><font face="Arial" size="2">Insert - fixed string corruption in release 
    builds</font></li>
    <li><font face="Arial" size="2">Added optional floating point formatting 
    (for projects that use CRT)</font></li>
  </ul>
  <p style=margin:0in>&nbsp;</p>
  <p style=margin:0in><font face="Arial" size="2">CEdit and CRichEditCtrl: SetSelAll and 
  SetSelNone had reversed implementation</font></p>
  <p style=margin:0in>&nbsp;</p>
  <p style=margin:0in><font face="Arial" size="2">atlres.h: Changed IDs so that they are 
  compatible with MFC's afxres.h</font></p>
  <p style=margin:0in>&nbsp;</p>
  <p style=margin:0in><font face="Arial" size="2">Command Bar:</font></p>
  <ul style='margin-top:0in;margin-bottom:0in'>
    <li><font face="Arial" size="2">Added LoadMappedImages()</font></li>
    <li><font face="Arial" size="2">Changed handling of left and right arrow 
    keys so that they don't close context menus</font></li>
    <li><font face="Arial" size="2">Add code to handle left/right arrow keys 
    correctly on mirrored (RTL) systems</font></li>
    <li><font face="Arial" size="2">Removed handler that eats parent window's 
    WM_SETTINGCHANGE</font></li>
    <li><font face="Arial" size="2">Fixed bitmap resource leak in 
    Draw3DCheckmark</font></li>
    <li><font face="Arial" size="2">Fixed incorrect usage of CharLower in 
    OnMenuChar</font></li>
    <li><font face="Arial" size="2">Fixed wrong color for the disabled items in 
    hi-contrast mode</font></li>
    <li><font face="Arial" size="2">Added code to gray menu items if main window 
    is inactive</font></li>
    <li><font face="Arial" size="2">Fixed keyboard mnemonic handling for IE 4</font></li>
    <li><font face="Arial" size="2">Fixed hook problems with multiple cmdbars in 
    the same thread</font></li>
    <li><font face="Arial" size="2">Added support for radio menu items</font></li>
    <li><font face="Arial" size="2">Added support for disabled top-level menu 
    items (also added in CFrameWindowImpl::PrepareChevronMenu)</font></li>
    <li><font face="Arial" size="2">Added keyboard shortcut (Alt+/) to invoke 
    chevron menu</font></li>
    <li><font face="Arial" size="2">Added support to override menu item length 
    in a derived class</font></li>
  </ul>
  <p style=margin:0in>&nbsp;</p>
  <p style=margin:0in><font face="Arial" size="2">CBitmapButton:</font></p>
  <ul style='margin-top:0in;margin-bottom:0in'>
    <li><font face="Arial" size="2">Bypassed BUTTON DefWindowProc for hover 
    style so that the button doesn't take focus</font></li>
    <li><font face="Arial" size="2">Added BMPBTN_AUTOFIRE extended style</font></li>
  </ul>
  <p style=margin:0in>&nbsp;</p>
  <p style=margin:0in><font face="Arial" size="2">CDC:</font></p>
  <ul style='margin-top:0in;margin-bottom:0in'>
    <li><font face="Arial" size="2">Added _WTL_FORWARD_DECLARE_CSTRING define to 
    allow usage of methods that accept CString</font></li>
    <li><font face="Arial" size="2">Fixed errors in GetTextFace and 
    GetMenuItemString</font></li>
    <li><font face="Arial" size="2">Added GetCharWidth32</font></li>
    <li><font face="Arial" size="2">Added DrawIconEx method</font></li>
  </ul>
  <p style=margin:0in>&nbsp;</p>
  <p style=margin:0in><font face="Arial" size="2">CMenu:</font></p>
  <ul style='margin-top:0in;margin-bottom:0in'>
    <li><font face="Arial" size="2">Implement following missing methods:<br>
&nbsp;&nbsp;&nbsp; GetMenuDefaultItem<br>
&nbsp;&nbsp;&nbsp; GetMenuInfo<br>
&nbsp;&nbsp;&nbsp; GetMenuItemRect<br>
&nbsp;&nbsp;&nbsp; HiliteMenuItem<br>
&nbsp;&nbsp;&nbsp; IsMenu<br>
&nbsp;&nbsp;&nbsp; MenuItemFromPoint<br>
&nbsp;&nbsp;&nbsp; SetMenuDefaultItem<br>
&nbsp;&nbsp;&nbsp; SetMenuInfo</font></li>
    <li><font face="Arial" size="2">GetMenuString - fixed to include space for 
    terminating NULL character in returning string</font></li>
  </ul>
  <p style=margin:0in>&nbsp;</p>
  <p style=margin:0in><font face="Arial" size="2">GDI and USER classes should destroy the 
  GDI/USER objects in Attach if GDI/USER resource is managed</font></p>
  <p style=margin:0in>&nbsp;</p>
  <p style=margin:0in><font face="Arial" size="2">CFrameWindowImpl:</font></p>
  <ul style='margin-top:0in;margin-bottom:0in'>
    <li><font face="Arial" size="2">OnToolTipText shouldn't save tool tip text 
    if it's not for a menu</font></li>
    <li><font face="Arial" size="2">AddSimpleReBarBandCtrl now adds chevron 
    style only for toolbars with buttons</font></li>
    <li><font face="Arial" size="2">AddSimpleReBarBand(Ctrl) - calc band ID if 
    not specified</font></li>
  </ul>
  <p style=margin:0in>&nbsp;</p>
  <p style=margin:0in><font face="Arial" size="2">CRecentDocumentList:</font></p>
  <ul style='margin-top:0in;margin-bottom:0in'>
    <li><font face="Arial" size="2">Fix - UpdateMenu deletes wrong menu item 
    when the list is empty</font></li>
    <li><font face="Arial" size="2">Added code to allow restricting the number 
    of characters displayed by MRU menu items</font></li>
  </ul>
  <p style=margin:0in>&nbsp;</p>
  <p style=margin:0in><font face="Arial" size="2">Update UI:</font></p>
  <ul style='margin-top:0in;margin-bottom:0in'>
    <li><font face="Arial" size="2">Added support for blocking accelerators for 
    disabled items</font></li>
    <li><font face="Arial" size="2">Improved search code assuming there are no 
    duplicate entries (and added checks for duplicates)</font></li>
  </ul>
  <p style=margin:0in>&nbsp;</p>
  <p style=margin:0in><font face="Arial" size="2">CSplitterWindow:</font></p>
  <ul style='margin-top:0in;margin-bottom:0in'>
    <li><font face="Arial" size="2">CSplitterWindowImpl should derive from 
    CSplitterImpl&lt;T , t_bVertical&gt; to allow overriding of methods</font></li>
    <li><font face="Arial" size="2">Added single pane mode and SetSinglePaneMode/GetSinglePaneMode</font></li>
    <li><font face="Arial" size="2">Added right/bottom aligned resize mode using 
    extended styles SPLIT_RIGHTALIGNED/SPLIT_BOTTOMALIGNED</font></li>
  </ul>
  <p style=margin:0in>&nbsp;</p>
  <p style=margin:0in><font face="Arial" size="2">atlcrack.h: Added handlers for following new 
  messages:<br>
&nbsp;&nbsp;&nbsp; WM_APPCOMMAND<br>
&nbsp;&nbsp;&nbsp; WM_NCXBUTTONDOWN<br>
&nbsp;&nbsp;&nbsp; WM_NCXBUTTONUP<br>
&nbsp;&nbsp;&nbsp; WM_NCXBUTTONDBLCLK<br>
&nbsp;&nbsp;&nbsp; WM_XBUTTONDOWN<br>
&nbsp;&nbsp;&nbsp; WM_XBUTTONUP<br>
&nbsp;&nbsp;&nbsp; WM_XBUTTONDBLCLK</font></p>
  <p style=margin:0in>&nbsp;</p>
  <p style=margin:0in><font face="Arial" size="2">Win64:</font></p>
  <ul style='margin-top:0in;margin-bottom:0in'>
    <li><font face="Arial" size="2">Dialog return value should use 
    DWLP_MSGRESULT and SetWindowLongPtr</font></li>
    <li><font face="Arial" size="2">CMenu::InsertMenu, AppendMenu, ModifyMenu 
    should have UINT_PTR for the menu ID</font></li>
    <li><font face="Arial" size="2">Added appropriate type casts</font></li>
    <li><font face="Arial" size="2">CFrameWindowImpl::m_szAutoName - changed the 
    size to fit the pointer value size</font></li>
    <li><font face="Arial" size="2">CListViewCtrl::SortItems should use LPARAM 
    for user data instead of DWORD</font></li>
  </ul>
  <p style=margin:0in>&nbsp;</p>
  <p style=margin:0in><font face="Arial" size="2">Misc:</font></p>
  <ul style='margin-top:0in;margin-bottom:0in'>
    <li><font face="Arial" size="2">Added optional mask argument to all methods 
    for setting extended styles</font></li>
    <li><font face="Arial" size="2">CMDIWindow::MDIRestore - fixed to send 
    WM_MDIRESTORE instead of WM_MDIICONARRANGE</font></li>
    <li><font face="Arial" size="2">CListViewCtrl: Added SortItemsEx method</font></li>
    <li><font face="Arial" size="2">CToolBarCtrl::GetButtonInfo - fixed to 
    return int instead of BOOL</font></li>
    <li><font face="Arial" size="2">Added CToolBarCtrl::SetButtonSize and 
    SetBitmapSize that accept cx and cy instead of SIZE</font></li>
    <li><font face="Arial" size="2">Printing: Changed how GetNewDevModeForPage 
    works (comments in code)</font></li>
    <li><font face="Arial" size="2">CFileDialogImpl::_OnTypeChange incorrectly 
    calls pT-&gt;OnSelChange instead of pT-&gt;OnTypeChange</font></li>
    <li><font face="Arial" size="2">CMultiPaneStatusBarCtrl::GetPaneTipText - 
    fixed to use index instead of and ID internally</font></li>
    <li><font face="Arial" size="2">CWinDataExchange: Added references to 
    arguments of DoDataExchange, so there are no level 4 warning even if the map 
    is empty</font></li>
    <li><font face="Arial" size="2">CPropertySheetWindow: Added new, IE 5.0 
    specific methods</font></li>
    <li><font face="Arial" size="2">CPropertyPageImpl: Added new, IE 5.0 
    specific methods</font></li>
  </ul>
  <p style=margin:0in>&nbsp;</p>
  <p style=margin:0in><font face="Arial" size="2">AppWizard:</font></p>
  <ul style='margin-top:0in;margin-bottom:0in'>
    <li><font face="Arial" size="2">added calls to RemoveMessageFilter and 
    RemoveIdleHandler in CMainFrame::OnDestroy for COM server projects</font></li>
    <li><font face="Arial" size="2">added scroll bars for HTML view</font></li>
    <li><font face="Arial" size="2">CAppServerModule now handles -embedding as 
    well as -automation</font></li>
    <li><font face="Arial" size="2">corrected code in CMainFrame::OnShowToolBar 
    to correctly identify the toolbar in a rebar</font></li>
    <li><font face="Arial" size="2">dialog based app code now derives from 
    CUpdateUI as public</font></li>
  </ul>
</blockquote>
<p style=margin:0in>&nbsp;</p>

<p style=margin:0in><font face="Arial" size="2">- end of readme.htm -</font></p>

</body>

</html>