home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Toolbox / Visual Basic Toolbox (P.I.E.)(1996).ISO / tpascal / bpvbx / vbcirc2.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1994-08-31  |  644 b   |  31 lines

  1. library circ2;
  2.  
  3. {$R Circ2.RES}
  4. {$D Micro System Solutions - MS VB3.0 Circ2}
  5.  
  6. uses
  7.     Models,
  8.     Property,
  9.     wintypes,
  10.     winprocs,
  11.     vbapi_,
  12.     strings;
  13.  
  14. {//---------------------------------------------------------------------------
  15. // Register custom control.
  16. //    This routine is called by VB when the custom control DLL is
  17. //    loaded for use.
  18. //---------------------------------------------------------------------------}
  19. function VBINITCC(usVersion: Word; fRunTime: Boolean): Boolean; export;
  20. begin
  21.     VBINITCC := VBRegisterModel(HInstance, modelCircle);
  22. end;
  23.  
  24. exports
  25.     VBINITCC index 2,
  26.     CircleCtlProc index 3;
  27.  
  28. begin
  29.  
  30. end.
  31.