VrConst.pas
上传用户:hbszzs
上传日期:2008-08-20
资源大小:628k
文件大小:1k
源码类别:

Delphi控件源码

开发平台:

Delphi

  1. {*****************************************************}
  2. {                                                     }
  3. {     Varian Component Workshop                       }
  4. {                                                     }
  5. {     Varian Software NL (c) 1996-2000                }
  6. {     All Rights Reserved                             }
  7. {                                                     }
  8. {*****************************************************}
  9. unit VrConst;
  10. {$I VRLIB.INC}
  11. interface
  12. uses
  13.   Forms, Windows, Graphics, VrTypes;
  14. const
  15.   VrLibVersion = '3.34';
  16.   ResColorLow = clGray;
  17.   ResColorHigh = clSilver;
  18.   VrCursorHandPoint = 99;
  19.   SC_DRAGMOVE = $F012;
  20. implementation
  21. {$R VRCURSORS.D32}
  22. initialization
  23.   Screen.Cursors[VrCursorHandPoint] := LoadCursor(hInstance, 'VRCURSORHANDPOINT');
  24. end.
  25.