home *** CD-ROM | disk | FTP | other *** search
- /*
- * Puppeteer 1.1
- *
- * Copyright (c) 1994 Primitive Software Ltd. All rights reserved.
- *
- * Author: Dave Griffiths <dave@prim.demon.co.uk>
- */
-
- defineps myCurrentWindowLevel(int win; |int *level)
- win currentwindowlevel level
- endps
-
- defineps myCurrentOwner(int win; |int *context)
- win currentowner context
- endps
-
- defineps myPid(int ctxt; |int *pid)
- ctxt 0 /currentContextData winexec pid
- endps
-
- // Return bounds of current window
- defineps myCurrentWindowBounds(int win; |float *x; float *y;
- float *w; float *h)
- win currentwindowbounds h w y x
- endps
-