cppdata.cpp
上传用户:ykzxjx
上传日期:2022-04-03
资源大小:1175k
文件大小:2k
开发平台:

Visual C++

  1. ///////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright (C) 1999 - 2000 Mark Roddy
  4. //
  5. // Hollis Technology Solutions
  6. // 94 Dow Road
  7. // Hollis, NH 03049
  8. // info@hollistech.com
  9. // www.hollistech.com
  10. //
  11. // This library is free software; you can redistribute it and/or
  12. // modify it under the terms of the GNU Lesser General Public
  13. // License as published by the Free Software Foundation; either
  14. // version 2 of the License, or (at your option) any later version.
  15. //
  16. // This library is distributed in the hope that it will be useful,
  17. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  19. // Lesser General Public License for more details.
  20. //
  21. // You should have received a copy of the GNU Lesser General Public
  22. // License along with this library; if not, write to the Free Software
  23. // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  24. //
  25. // www.fsf.org
  26. //
  27. //
  28. // Synopsis: 
  29. // 
  30. //
  31. // Version Information:
  32. //
  33. // $Header: /cpprun/sys/cpplib/cppdata.cpp 3     1/01/00 11:00p Markr $ 
  34. //
  35. ///////////////////////////////////////////////////////////////////////////////
  36. #define HTS_UNIQUE_FILE_ID 0x1204001
  37. #include "htscpp_internal.h"
  38. //
  39. // this stuff must be just like the VisualC++ compiler wants it
  40. // to be. If you have a licensed copy of VisualC++ then refer to the
  41. // CRT library source code for details.
  42. //
  43. #pragma data_seg(".CRT$XCA")
  44. PVFV __crtXca[] = { NULL }; // c++
  45. #pragma data_seg(".CRT$XCZ")
  46. PVFV __crtXcz[] = { NULL };
  47. #pragma data_seg()  // return control to the normal ddk process
  48. //
  49. // this may or may not be required
  50. //
  51. #pragma comment(linker, "/merge:.CRT=.data")
  52. ///////////////////////////////////////////////////////////////////////////////
  53. // 
  54. // Change History Log
  55. //
  56. // $Log: /cpprun/sys/cpplib/cppdata.cpp $
  57. // 
  58. // 3     1/01/00 11:00p Markr
  59. // 
  60. // 2     12/31/99 4:29p Markr
  61. // 
  62. // 1     12/16/99 11:45p Markr
  63. //
  64. ///////////////////////////////////////////////////////////////////////////////