home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 May / Chip_2002-05_cd1.bin / chplus / cpp / 5 / Komponety.exe / bcbsmp35.cpp < prev    next >
C/C++ Source or Header  |  1998-02-09  |  2KB  |  38 lines

  1. //---------------------------------------------------------------------------
  2. #include <vcl.h>
  3. #pragma hdrstop
  4. USEPACKAGE("vcl35.bpi");
  5. USEPACKAGE("vcldb35.bpi");
  6. USEPACKAGE("vcldbx35.bpi");
  7. USEPACKAGE("vclx35.bpi");
  8. USERES("bcbsmp35.res");
  9. USEUNIT("ccalendr.cpp");
  10. USEUNIT("cgrid.cpp");
  11. USEUNIT("cdiroutl.cpp");
  12. USEUNIT("cgauges.cpp");
  13. USEUNIT("cspin.cpp");
  14. USEUNIT("perfgrap.cpp");
  15. USEFORM("piereg.cpp", AngleEditorDlg);
  16. USERC("samp.rc");
  17. //---------------------------------------------------------------------------
  18. #pragma package(smart_init)
  19. //---------------------------------------------------------------------------
  20. //   Important note about package memory management:
  21. //
  22. //   If your package exports any functions that pass String objects (or structs/
  23. //   classes containing nested Strings) as parameter or function results,
  24. //   you will need to add the library MEMMGR.LIB to both the package project and
  25. //   any EXE projects that use the package.  This will change the package and
  26. //   its calling EXE's to use the BORLNDMM.DLL as their memory manager.
  27. //   In these cases, the file BORLNDMM.DLL should be deployed along with your
  28. //   package.
  29. //
  30. //   To avoid using BORLNDMM.DLL, pass string information using "char *" or
  31. //   ShortString parameters.
  32. //---------------------------------------------------------------------------
  33. int WINAPI DllEntryPoint(HINSTANCE hinst, unsigned long reason, void*)
  34. {
  35.     return 1;
  36. }
  37. //---------------------------------------------------------------------------
  38.