Lines Matching defs:vcw
35 Vcwindow_t* vcw;
47 if(!(vcw = (Vcwindow_t*)calloc(1,sizeof(Vcwindow_t))) )
50 vcw->disc = disc;
51 vcw->meth = meth;
52 vcw->mtdata = NIL(Void_t*);
54 if(disc->eventf && (*disc->eventf)(vcw, VCW_OPENING, 0, disc) < 0)
55 { vcwclose(vcw);
59 if(meth->eventf && (*meth->eventf)(vcw, VCW_OPENING) < 0)
60 { vcwclose(vcw);
64 return vcw;