home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / modu1096.zip / sample / pmdemo / spincube.def < prev    next >
Text File  |  1995-03-13  |  663b  |  20 lines

  1. (****************************************************************)
  2. (*                                                              *)
  3. (*       GPM example for OS/2 Presentation Manager            *)
  4. (*             Custom Control Definition Module                 *)
  5. (*                                                              *)
  6. (****************************************************************)
  7.  
  8. DEFINITION MODULE SpinCube;
  9.  
  10.   FROM OS2 IMPORT HAB;
  11.  
  12.   CONST SS_ERASE      = BITSET{0};     (* Spincube window styles *)
  13.         SS_INMOTION   = BITSET{1};
  14.  
  15.         SPINCUBECLASS = "Spincube";
  16.  
  17.   PROCEDURE SpinCubeInit(hab : HAB);
  18.  
  19. END SpinCube.
  20.