home *** CD-ROM | disk | FTP | other *** search
- /*================================================*/
- /* TVPICON.C */
- /* */
- /* (c) Copyright 1988 Ralf Brown */
- /* All Rights Reserved */
- /* May be freely copied for noncommercial use, */
- /* provided that this copyright notice remains */
- /* intact and any changes are indicated in the */
- /* comment blocks preceding functions */
- /*================================================*/
-
- #include "tvapi.h"
-
- /*================================================*/
- /* TVptr_icon set pointer's display symbol */
- /* Ralf Brown 5/6/88 */
- /*================================================*/
-
- void pascal TVptr_icon(OBJECT pointer, char symbol)
- {
- PARMLIST1 p ;
-
- if (pointer)
- {
- p.num_args = 1 ;
- p.arg[0] = (DWORD) symbol ;
- TVsendmsg(SETICON_MSG, TOS, pointer, (PARMLIST *)&p) ;
- }
- }
-
- /* End of TVPICON.C */
-