home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 1 / ARM_CLUB_CD.iso / contents / apps / languages / progs / shell / Sources / Makefile
Encoding:
Makefile  |  1994-06-28  |  11.7 KB  |  469 lines

  1. #    Library-making makefile
  2.  
  3. CCFlags        =    -c -fahi -depend !Depend -throwback -I,C:
  4. LibFileFlags    =    -c -o
  5.  
  6. Target        =    ^.o.ShellLib
  7.  
  8. ObjectFiles    =    o.Init        \
  9.             o.Poll        \
  10.             o.Label        \
  11.             o.Misc        \
  12.             o.GFX        \
  13.             o.GenArray    \
  14.             o.DArray2    \
  15.             o.Check        \
  16.             o.Menu        \
  17.             o.TextRect    \
  18.             o.Scroll    \
  19.             o.FontLabel    \
  20.             o.BlockRect    \
  21.             o.PlotIcon    \
  22.             o.Icon        \
  23.             o.RectSave    \
  24.             o.SafeAlloc    \
  25.             o.DVector    \
  26.             o.BarGraph    \
  27.             o.ArrayLabel    \
  28.             o.DBarGraph    \
  29.             o.DBarGraph2    \
  30.             o.Printf    \
  31.             o.BlockRect2    \
  32.             o.PlainRect    \
  33.             o.PlainGRect    \
  34.             o.RedrawToSp    \
  35.             o.FindWind    \
  36.             o.WaitClick    \
  37.             o.BarIcon    \
  38.  
  39.  
  40. # path(s) to source files:
  41. VPATH = @ @.^
  42.  
  43. # Don't change the following
  44.  
  45. .SUFFIXES:    .o .c
  46.  
  47. $(Target):    $(ObjectFiles)
  48.     LibFile $(LibFileFlags) $@ $(ObjectFiles)
  49.  
  50. .c.o:
  51.     cc $(ccFlags) -o $@ $<
  52.  
  53. #o.GenArray:    c.GenArray
  54. #    cc -g $(ccFlags) -o $@ c.$*
  55.  
  56. # Dynamic dependencies:
  57. o.Extra:    c.Extra
  58. o.Extra:    DeskLib:h.Wimp
  59. o.Extra:    DeskLib:h.Core
  60. o.Extra:    DeskLib:h.WimpSWIs
  61. o.Extra:    C:h.kernel
  62. o.Extra:    DeskLib:h.Coord
  63. o.DArray:    c.DArray
  64. o.DArray:    C:Shell.h.Array
  65. o.DArray:    C:Shell.h.Shell
  66. o.DArray:    DeskLib:h.Wimp
  67. o.DArray:    DeskLib:h.Core
  68. o.DArray:    DeskLib:h.Coord
  69. o.DArray:    DeskLib:h.Error
  70. o.DArray:    C:h.kernel
  71. o.DArray:    DeskLib:h.LinkList
  72. o.DArray:    C:Shell.h.Extra
  73. o.DArray:    DeskLib:h.GFX
  74. o.DArray:    C:Shell.h.SafeAlloc
  75. o.DArray:    DeskLib:h.WimpSWIs
  76. o.WaitKey:    c.WaitKey
  77. o.WaitKey:    DeskLib:h.Event
  78. o.WaitKey:    DeskLib:h.Core
  79. o.WaitKey:    DeskLib:h.Wimp
  80. o.WaitKey:    C:Shell.h.WaitClick
  81. o.WaitKey:    C:Shell.h.Shell
  82. o.WaitKey:    DeskLib:h.Coord
  83. o.WaitKey:    DeskLib:h.Error
  84. o.WaitKey:    C:h.kernel
  85. o.WaitKey:    DeskLib:h.LinkList
  86. o.SafeAlloc:    c.SafeAlloc
  87. o.SafeAlloc:    DeskLib:h.Error
  88. o.SafeAlloc:    C:h.kernel
  89. o.SafeAlloc:    DeskLib:h.Core
  90. o.SafeAlloc:    C:Shell.h.SafeAlloc
  91. o.PlainGRect:    c.PlainGRect
  92. o.PlainGRect:    C:Shell.h.RedrawToSp
  93. o.PlainGRect:    C:Shell.h.Shell
  94. o.PlainGRect:    DeskLib:h.Wimp
  95. o.PlainGRect:    DeskLib:h.Core
  96. o.PlainGRect:    DeskLib:h.Coord
  97. o.PlainGRect:    DeskLib:h.Error
  98. o.PlainGRect:    C:h.kernel
  99. o.PlainGRect:    DeskLib:h.LinkList
  100. o.PlainGRect:    C:Shell.h.PlainRect
  101. o.PlainGRect:    C:Shell.h.Shell
  102. o.FindWind:    c.FindWind
  103. o.FindWind:    C:Shell.h.Shell
  104. o.FindWind:    DeskLib:h.Wimp
  105. o.FindWind:    DeskLib:h.Core
  106. o.FindWind:    DeskLib:h.Coord
  107. o.FindWind:    DeskLib:h.Error
  108. o.FindWind:    C:h.kernel
  109. o.FindWind:    DeskLib:h.LinkList
  110. o.FindWind:    C:Shell.h.FindWind
  111. o.FindWind:    C:Shell.h.Shell
  112. o.WaitClick:    c.WaitClick
  113. o.WaitClick:    DeskLib:h.Event
  114. o.WaitClick:    DeskLib:h.Core
  115. o.WaitClick:    DeskLib:h.Wimp
  116. o.WaitClick:    C:Shell.h.WaitClick
  117. o.WaitClick:    C:Shell.h.Shell
  118. o.WaitClick:    DeskLib:h.Coord
  119. o.WaitClick:    DeskLib:h.Error
  120. o.WaitClick:    C:h.kernel
  121. o.WaitClick:    DeskLib:h.LinkList
  122. o.PlainRect:    c.PlainRect
  123. o.PlainRect:    C:Shell.h.RedrawToSp
  124. o.PlainRect:    C:Shell.h.Shell
  125. o.PlainRect:    DeskLib:h.Wimp
  126. o.PlainRect:    DeskLib:h.Core
  127. o.PlainRect:    DeskLib:h.Coord
  128. o.PlainRect:    DeskLib:h.Error
  129. o.PlainRect:    C:h.kernel
  130. o.PlainRect:    DeskLib:h.LinkList
  131. o.PlainRect:    C:Shell.h.PlainRect
  132. o.PlainRect:    C:Shell.h.Shell
  133. o.Printf:    c.Printf
  134. o.Printf:    DeskLib:h.Event
  135. o.Printf:    DeskLib:h.Core
  136. o.Printf:    DeskLib:h.Wimp
  137. o.Printf:    C:Shell.h.SafeAlloc
  138. o.Printf:    C:Shell.h.TextRect
  139. o.Printf:    C:Shell.h.Shell
  140. o.Printf:    DeskLib:h.Coord
  141. o.Printf:    DeskLib:h.Error
  142. o.Printf:    C:h.kernel
  143. o.Printf:    DeskLib:h.LinkList
  144. o.Printf:    C:Shell.h.Printf
  145. o.ArrayLabel:    c.ArrayLabel
  146. o.ArrayLabel:    C:Shell.h.ArrayLabel
  147. o.ArrayLabel:    C:Shell.h.Shell
  148. o.ArrayLabel:    DeskLib:h.Wimp
  149. o.ArrayLabel:    DeskLib:h.Core
  150. o.ArrayLabel:    DeskLib:h.Coord
  151. o.ArrayLabel:    DeskLib:h.Error
  152. o.ArrayLabel:    C:h.kernel
  153. o.ArrayLabel:    DeskLib:h.LinkList
  154. o.ArrayLabel:    C:Shell.h.Array
  155. o.ArrayLabel:    C:Shell.h.FontLabel
  156. o.ArrayLabel:    C:Shell.h.Vector
  157. o.RectSave:    c.RectSave
  158. o.RectSave:    DeskLib:h.WimpSWIs
  159. o.RectSave:    DeskLib:h.Core
  160. o.RectSave:    C:h.kernel
  161. o.RectSave:    DeskLib:h.Wimp
  162. o.RectSave:    DeskLib:h.Save
  163. o.RectSave:    DeskLib:h.Event
  164. o.RectSave:    DeskLib:h.Kbd
  165. o.RectSave:    DeskLib:h.Wimp
  166. o.RectSave:    DeskLib:h.Window
  167. o.RectSave:    C:Shell.h.RectSave
  168. o.RectSave:    C:Shell.h.Shell
  169. o.RectSave:    DeskLib:h.Coord
  170. o.RectSave:    DeskLib:h.Error
  171. o.RectSave:    DeskLib:h.LinkList
  172. o.RectSave:    C:Shell.h.FindWind
  173. o.RectSave:    C:Shell.h.Shell
  174. o.PlotIcon:    c.PlotIcon
  175. o.PlotIcon:    DeskLib:h.WimpSWIs
  176. o.PlotIcon:    DeskLib:h.Core
  177. o.PlotIcon:    C:h.kernel
  178. o.PlotIcon:    DeskLib:h.Wimp
  179. o.PlotIcon:    DeskLib:h.Coord
  180. o.PlotIcon:    DeskLib:h.Wimp
  181. o.PlotIcon:    C:Shell.h.Extra
  182. o.PlotIcon:    C:Shell.h.Shell
  183. o.PlotIcon:    DeskLib:h.Error
  184. o.PlotIcon:    DeskLib:h.LinkList
  185. o.PlotIcon:    DeskLib:h.GFX
  186. o.PlotIcon:    C:Shell.h.PlotIcon
  187. o.Icon:    c.Icon
  188. o.Icon:    C:Shell.h.Extra
  189. o.Icon:    C:Shell.h.Shell
  190. o.Icon:    DeskLib:h.Wimp
  191. o.Icon:    DeskLib:h.Core
  192. o.Icon:    DeskLib:h.Coord
  193. o.Icon:    DeskLib:h.Error
  194. o.Icon:    C:h.kernel
  195. o.Icon:    DeskLib:h.LinkList
  196. o.Icon:    DeskLib:h.GFX
  197. o.Icon:    C:Shell.h.Check
  198. o.DVector:    c.DVector
  199. o.DVector:    DeskLib:h.WimpSWIs
  200. o.DVector:    DeskLib:h.Core
  201. o.DVector:    C:h.kernel
  202. o.DVector:    DeskLib:h.Wimp
  203. o.DVector:    C:Shell.h.Vector
  204. o.DVector:    C:Shell.h.Shell
  205. o.DVector:    DeskLib:h.Coord
  206. o.DVector:    DeskLib:h.Error
  207. o.DVector:    DeskLib:h.LinkList
  208. o.DVector:    C:Shell.h.Extra
  209. o.DVector:    DeskLib:h.GFX
  210. o.DVector:    C:Shell.h.SafeAlloc
  211. o.BarGraph:    c.BarGraph
  212. o.BarGraph:    DeskLib:h.WimpSWIs
  213. o.BarGraph:    DeskLib:h.Core
  214. o.BarGraph:    C:h.kernel
  215. o.BarGraph:    DeskLib:h.Wimp
  216. o.BarGraph:    C:Shell.h.Extra
  217. o.BarGraph:    C:Shell.h.Shell
  218. o.BarGraph:    DeskLib:h.Coord
  219. o.BarGraph:    DeskLib:h.Error
  220. o.BarGraph:    DeskLib:h.LinkList
  221. o.BarGraph:    DeskLib:h.GFX
  222. o.BarGraph:    C:Shell.h.BarGraph
  223. o.BarGraph:    C:Shell.h.SafeAlloc
  224. o.DBarGraph:    c.DBarGraph
  225. o.DBarGraph:    DeskLib:h.WimpSWIs
  226. o.DBarGraph:    DeskLib:h.Core
  227. o.DBarGraph:    C:h.kernel
  228. o.DBarGraph:    DeskLib:h.Wimp
  229. o.DBarGraph:    C:Shell.h.Extra
  230. o.DBarGraph:    C:Shell.h.Shell
  231. o.DBarGraph:    DeskLib:h.Coord
  232. o.DBarGraph:    DeskLib:h.Error
  233. o.DBarGraph:    DeskLib:h.LinkList
  234. o.DBarGraph:    DeskLib:h.GFX
  235. o.DBarGraph:    C:Shell.h.BarGraph
  236. o.DBarGraph:    C:Shell.h.SafeAlloc
  237. o.DBarGraph2:    c.DBarGraph2
  238. o.DBarGraph2:    DeskLib:h.WimpSWIs
  239. o.DBarGraph2:    DeskLib:h.Core
  240. o.DBarGraph2:    C:h.kernel
  241. o.DBarGraph2:    DeskLib:h.Wimp
  242. o.DBarGraph2:    C:Shell.h.Extra
  243. o.DBarGraph2:    C:Shell.h.Shell
  244. o.DBarGraph2:    DeskLib:h.Coord
  245. o.DBarGraph2:    DeskLib:h.Error
  246. o.DBarGraph2:    DeskLib:h.LinkList
  247. o.DBarGraph2:    DeskLib:h.GFX
  248. o.DBarGraph2:    C:Shell.h.BarGraph
  249. o.DBarGraph2:    C:Shell.h.SafeAlloc
  250. o.RedrawToSp:    c.RedrawToSp
  251. o.RedrawToSp:    DeskLib:h.ColourTran
  252. o.RedrawToSp:    DeskLib:h.core
  253. o.RedrawToSp:    DeskLib:h.Sprite
  254. o.RedrawToSp:    DeskLib:h.Wimp
  255. o.RedrawToSp:    DeskLib:h.Coord
  256. o.RedrawToSp:    DeskLib:h.Screen
  257. o.RedrawToSp:    DeskLib:h.SWI
  258. o.RedrawToSp:    C:Shell.h.Redraw2
  259. o.RedrawToSp:    C:Shell.h.Shell
  260. o.RedrawToSp:    DeskLib:h.Error
  261. o.RedrawToSp:    C:h.kernel
  262. o.RedrawToSp:    DeskLib:h.LinkList
  263. o.RedrawToSp:    C:Shell.h.RedrawToSp
  264. o.RedrawToSp:    C:Shell.h.Shell
  265. o.RedrawToSp:    C:Shell.h.Printf
  266. o.RedrawToSp:    C:Shell.h.FindWind
  267. o.RedrawToSp:    C:Shell.h.Shell
  268. o.RedrawToSp:    C:Shell.h.Extra
  269. o.RedrawToSp:    DeskLib:h.GFX
  270. o.GenArray:    c.GenArray
  271. o.GenArray:    DeskLib:h.WimpSWIs
  272. o.GenArray:    DeskLib:h.Core
  273. o.GenArray:    C:h.kernel
  274. o.GenArray:    DeskLib:h.Wimp
  275. o.GenArray:    C:Shell.h.Array
  276. o.GenArray:    C:Shell.h.Shell
  277. o.GenArray:    DeskLib:h.Coord
  278. o.GenArray:    DeskLib:h.Error
  279. o.GenArray:    DeskLib:h.LinkList
  280. o.GenArray:    C:Shell.h.Extra
  281. o.GenArray:    DeskLib:h.GFX
  282. o.GenArray:    C:Shell.h.SafeAlloc
  283. o.DArray2:    c.DArray2
  284. o.DArray2:    DeskLib:h.WimpSWIs
  285. o.DArray2:    DeskLib:h.Core
  286. o.DArray2:    C:h.kernel
  287. o.DArray2:    DeskLib:h.Wimp
  288. o.DArray2:    C:Shell.h.Array
  289. o.DArray2:    C:Shell.h.Shell
  290. o.DArray2:    DeskLib:h.Coord
  291. o.DArray2:    DeskLib:h.Error
  292. o.DArray2:    DeskLib:h.LinkList
  293. o.DArray2:    C:Shell.h.Extra
  294. o.DArray2:    DeskLib:h.GFX
  295. o.DArray2:    C:Shell.h.SafeAlloc
  296. o.Check:    c.Check
  297. o.Check:    DeskLib:h.WimpSWIs
  298. o.Check:    DeskLib:h.Core
  299. o.Check:    C:h.kernel
  300. o.Check:    DeskLib:h.Wimp
  301. o.Check:    DeskLib:h.Coord
  302. o.Check:    C:Shell.h.Shell
  303. o.Check:    DeskLib:h.Error
  304. o.Check:    DeskLib:h.LinkList
  305. o.Check:    C:Shell.h.Check
  306. o.Menu:    c.Menu
  307. o.Menu:    DeskLib:h.Menus
  308. o.Menu:    DeskLib:h.Core
  309. o.Menu:    DeskLib:h.Wimp
  310. o.Menu:    DeskLib:h.WimpSWIs
  311. o.Menu:    C:h.kernel
  312. o.Menu:    DeskLib:h.Kbd
  313. o.Menu:    DeskLib:h.Window
  314. o.Menu:    DeskLib:h.Event
  315. o.Menu:    DeskLib:h.Save
  316. o.Menu:    C:Shell.h.ShellMenu
  317. o.Menu:    C:Shell.h.Shell
  318. o.Menu:    DeskLib:h.Coord
  319. o.Menu:    DeskLib:h.Error
  320. o.Menu:    DeskLib:h.LinkList
  321. o.Menu:    C:Shell.h.Extra
  322. o.Menu:    DeskLib:h.GFX
  323. o.TextRect:    c.TextRect
  324. o.TextRect:    DeskLib:h.WimpSWIs
  325. o.TextRect:    DeskLib:h.Core
  326. o.TextRect:    C:h.kernel
  327. o.TextRect:    DeskLib:h.Wimp
  328. o.TextRect:    DeskLib:h.Error
  329. o.TextRect:    C:Shell.h.Shell
  330. o.TextRect:    DeskLib:h.Coord
  331. o.TextRect:    DeskLib:h.LinkList
  332. o.TextRect:    C:Shell.h.Extra
  333. o.TextRect:    DeskLib:h.GFX
  334. o.TextRect:    C:Shell.h.SafeAlloc
  335. o.TextRect:    C:Shell.h.TextRect
  336. o.Scroll:    c.Scroll
  337. o.Scroll:    DeskLib:h.Wimp
  338. o.Scroll:    DeskLib:h.Core
  339. o.Scroll:    DeskLib:h.WimpSWIs
  340. o.Scroll:    C:h.kernel
  341. o.Scroll:    C:Shell.h.Extra
  342. o.Scroll:    C:Shell.h.Shell
  343. o.Scroll:    DeskLib:h.Coord
  344. o.Scroll:    DeskLib:h.Error
  345. o.Scroll:    DeskLib:h.LinkList
  346. o.Scroll:    DeskLib:h.GFX
  347. o.Init:    c.Init
  348. o.Init:    DeskLib:h.Wimp
  349. o.Init:    DeskLib:h.Core
  350. o.Init:    DeskLib:h.Template
  351. o.Init:    DeskLib:h.Sprite
  352. o.Init:    DeskLib:h.Coord
  353. o.Init:    DeskLib:h.Resource
  354. o.Init:    DeskLib:h.Error
  355. o.Init:    C:h.kernel
  356. o.Init:    DeskLib:h.Handler
  357. o.Init:    DeskLib:h.WimpSWIs
  358. o.Init:    DeskLib:h.Event
  359. o.Init:    C:Shell.h.Shell
  360. o.Init:    DeskLib:h.LinkList
  361. o.Poll:    c.Poll
  362. o.Poll:    DeskLib:h.Event
  363. o.Poll:    DeskLib:h.Core
  364. o.Poll:    DeskLib:h.Wimp
  365. o.Poll:    C:Shell.h.Shell
  366. o.Poll:    DeskLib:h.Coord
  367. o.Poll:    DeskLib:h.Error
  368. o.Poll:    C:h.kernel
  369. o.Poll:    DeskLib:h.LinkList
  370. o.Label:    c.Label
  371. o.Label:    DeskLib:h.WimpSWIs
  372. o.Label:    DeskLib:h.Core
  373. o.Label:    C:h.kernel
  374. o.Label:    DeskLib:h.Wimp
  375. o.Label:    C:Shell.h.Shell
  376. o.Label:    DeskLib:h.Coord
  377. o.Label:    DeskLib:h.Error
  378. o.Label:    DeskLib:h.LinkList
  379. o.Label:    C:Shell.h.Extra
  380. o.Label:    DeskLib:h.GFX
  381. o.Label:    C:Shell.h.Check
  382. o.Label:    C:Shell.h.SafeAlloc
  383. o.Label:    C:Shell.h.Label
  384. o.Misc:    c.Misc
  385. o.Misc:    DeskLib:h.GFX
  386. o.Misc:    DeskLib:h.Coord
  387. o.Misc:    DeskLib:h.Core
  388. o.Misc:    DeskLib:h.Wimp
  389. o.Misc:    DeskLib:h.WimpSWIs
  390. o.Misc:    C:h.kernel
  391. o.Misc:    DeskLib:h.Error
  392. o.Misc:    C:Shell.h.Extra
  393. o.Misc:    C:Shell.h.Shell
  394. o.Misc:    DeskLib:h.LinkList
  395. o.GFX:    c.GFX
  396. o.GFX:    DeskLib:h.GFX
  397. o.GFX:    DeskLib:h.Coord
  398. o.GFX:    DeskLib:h.Core
  399. o.GFX:    DeskLib:h.Wimp
  400. o.GFX:    DeskLib:h.WimpSWIs
  401. o.GFX:    C:h.kernel
  402. o.GFX:    DeskLib:h.Error
  403. o.GFX:    DeskLib:h.Window
  404. o.GFX:    DeskLib:h.Event
  405. o.GFX:    C:Shell.h.Extra
  406. o.GFX:    C:Shell.h.Shell
  407. o.GFX:    DeskLib:h.LinkList
  408. o.GFX:    C:Shell.h.SafeAlloc
  409. o.GFX:    C:Shell.h.PlotIcon
  410. o.GFX:    C:Shell.h.Redraw2
  411. o.GFX:    C:Shell.h.Shell
  412. o.FontLabel:    c.FontLabel
  413. o.FontLabel:    DeskLib:h.WimpSWIs
  414. o.FontLabel:    DeskLib:h.Core
  415. o.FontLabel:    C:h.kernel
  416. o.FontLabel:    DeskLib:h.Wimp
  417. o.FontLabel:    DeskLib:h.Font
  418. o.FontLabel:    DeskLib:h.GFX
  419. o.FontLabel:    C:Shell.h.FontLabel
  420. o.FontLabel:    C:Shell.h.Shell
  421. o.FontLabel:    DeskLib:h.Coord
  422. o.FontLabel:    DeskLib:h.Error
  423. o.FontLabel:    DeskLib:h.LinkList
  424. o.FontLabel:    C:Shell.h.Extra
  425. o.FontLabel:    C:Shell.h.SafeAlloc
  426. o.BlockRect:    c.BlockRect
  427. o.BlockRect:    DeskLib:h.WimpSWIs
  428. o.BlockRect:    DeskLib:h.Core
  429. o.BlockRect:    C:h.kernel
  430. o.BlockRect:    DeskLib:h.Wimp
  431. o.BlockRect:    DeskLib:h.GFX
  432. o.BlockRect:    C:Shell.h.BlockRct
  433. o.BlockRect:    C:Shell.h.Shell
  434. o.BlockRect:    DeskLib:h.Coord
  435. o.BlockRect:    DeskLib:h.Error
  436. o.BlockRect:    DeskLib:h.LinkList
  437. o.BlockRect:    C:Shell.h.Extra
  438. o.BlockRect:    C:Shell.h.SafeAlloc
  439. o.BlockRect2:    c.BlockRect2
  440. o.BlockRect2:    DeskLib:h.WimpSWIs
  441. o.BlockRect2:    DeskLib:h.Core
  442. o.BlockRect2:    C:h.kernel
  443. o.BlockRect2:    DeskLib:h.Wimp
  444. o.BlockRect2:    DeskLib:h.GFX
  445. o.BlockRect2:    C:Shell.h.BlockRct
  446. o.BlockRect2:    C:Shell.h.Shell
  447. o.BlockRect2:    DeskLib:h.Coord
  448. o.BlockRect2:    DeskLib:h.Error
  449. o.BlockRect2:    DeskLib:h.LinkList
  450. o.BlockRect2:    C:Shell.h.Extra
  451. o.BlockRect2:    C:Shell.h.SafeAlloc
  452. o.BarIcon:    c.BarIcon
  453. o.BarIcon:    DeskLib:h.Icon
  454. o.BarIcon:    DeskLib:h.Wimp
  455. o.BarIcon:    DeskLib:h.Core
  456. o.BarIcon:    DeskLib:h.DragASpr
  457. o.BarIcon:    DeskLib:h.Event
  458. o.BarIcon:    DeskLib:h.Sound
  459. o.BarIcon:    DeskLib:h.WimpSWIs
  460. o.BarIcon:    C:h.kernel
  461. o.BarIcon:    DeskLib:h.Menu
  462. o.BarIcon:    DeskLib:h.Window
  463. o.BarIcon:    C:Shell.h.BarIcon
  464. o.BarIcon:    C:Shell.h.Shell
  465. o.BarIcon:    DeskLib:h.Coord
  466. o.BarIcon:    DeskLib:h.Error
  467. o.BarIcon:    DeskLib:h.LinkList
  468. o.BarIcon:    C:Shell.h.SafeAlloc
  469.