home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 November / CDVD1105.ISO / Software / Freeware / programare / graphics32 / Packages / GR32_CB5.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  2004-07-02  |  1.1 KB  |  32 lines

  1. //---------------------------------------------------------------------------
  2.  
  3.  
  4.  
  5. #include <vcl.h>
  6.  
  7. #pragma hdrstop
  8.  
  9. USERES("GR32_CB5.res");
  10.  
  11. USEPACKAGE("vcl50.bpi");
  12.  
  13. USEUNIT("..\GR32.pas");
  14.  
  15. USEUNIT("..\GR32_Blend.pas");
  16.  
  17. USEUNIT("..\GR32_ByteMaps.pas");
  18.  
  19. USEUNIT("..\GR32_System.pas");
  20.  
  21. USEUNIT("..\GR32_DrawingEx.pas");
  22.  
  23. USEUNIT("..\GR32_Filters.pas");
  24.  
  25. USEUNIT("..\GR32_Image.pas");
  26.  
  27. USEUNIT("..\GR32_Layers.pas");
  28.  
  29. USEUNIT("..\GR32_LowLevel.pas");
  30.  
  31. USEUNIT("..\GR32_Polygons.pas");
  32.  
  33. USEUNIT("..\GR32_RangeBars.pas");
  34.  
  35. USEUNIT("..\GR32_Transforms.pas");
  36.  
  37. //---------------------------------------------------------------------------
  38.  
  39. #pragma package(smart_init)
  40.  
  41. //---------------------------------------------------------------------------
  42.  
  43.  
  44.  
  45. //   Package source.
  46.  
  47. //---------------------------------------------------------------------------
  48.  
  49.  
  50.  
  51. #pragma argsused
  52.  
  53. int WINAPI DllEntryPoint(HINSTANCE hinst, unsigned long reason, void*)
  54.  
  55. {
  56.  
  57.         return 1;
  58.  
  59. }
  60.  
  61. //---------------------------------------------------------------------------
  62.  
  63.