home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD1.mdf
/
magazine
/
pctchnqs
/
1990
/
number6
/
showshad.c
< prev
next >
Wrap
Text File
|
1990-09-06
|
345b
|
15 lines
/* Attach and display a shadow border on a VV Designer form */
/* Caution: call this function only from a begin-form function */
int FASTCALL show_shad(fmp)
FORMPTR fmp;
{
if(fmp->wnp->shadp == (PTR)NULLP) {
sw_shad(TRANSPARENT, LSHADOW, BOTTOMRIGHT, fmp->wnp);
shad_up(fmp->wnp);
}
return(TRUE);
}