home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 May / Chip_2002-05_cd1.bin / chplus / cpp / 5 / Komponety.exe / ibsmp35.cpp < prev    next >
C/C++ Source or Header  |  1998-02-09  |  1KB  |  32 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("ibsmp35.res");
  9. USEUNIT("ibreg.cpp");
  10. USERC("samp.rc");
  11. //---------------------------------------------------------------------------
  12. #pragma package(smart_init)
  13. //---------------------------------------------------------------------------
  14. //   Important note about package memory management:
  15. //
  16. //   If your package exports any functions that pass String objects (or structs/
  17. //   classes containing nested Strings) as parameter or function results,
  18. //   you will need to add the library MEMMGR.LIB to both the package project and
  19. //   any EXE projects that use the package.  This will change the package and
  20. //   its calling EXE's to use the BORLNDMM.DLL as their memory manager.
  21. //   In these cases, the file BORLNDMM.DLL should be deployed along with your
  22. //   package.
  23. //
  24. //   To avoid using BORLNDMM.DLL, pass string information using "char *" or
  25. //   ShortString parameters.
  26. //---------------------------------------------------------------------------
  27. int WINAPI DllEntryPoint(HINSTANCE hinst, unsigned long reason, void*)
  28. {
  29.     return 1;
  30. }
  31. //---------------------------------------------------------------------------
  32.