home *** CD-ROM | disk | FTP | other *** search
- /*================================================*/
- /* TVPSTAT.C */
- /* */
- /* (c) Copyright 1988 Ralf Brown */
- /* All Rights Reserved */
- /* May be freely copied for noncommercial use as */
- /* long as this copyright notice is kept intact */
- /* and any changes are indicated in the comment */
- /* blocks for the functions */
- /*================================================*/
-
- #include "tvapi.h"
-
- /*================================================*/
- /* TVptr_status get button status from last */
- /* pointer message */
- /* Ralf Brown 4/8/88 */
- /* Ralf Brown 6/21/88 rewrote with TVsendmsg1 */
- /*================================================*/
-
- DWORD pascal TVptr_status(OBJECT pointer)
- {
- if (pointer)
- return (DWORD) TVsendmsg1(STATUS_MSG, TOS, pointer) ;
- else
- return (DWORD) 0 ;
- }
-
- /* End of TVPSTAT.C */
-