mclib.h 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  1. //===========================================================================//
  2. // Copyright (C) Microsoft Corporation. All rights reserved. //
  3. //===========================================================================//
  4. //-----------------------------------------------------------------------
  5. // Precompiled header for the mechcommander libraries.
  6. //
  7. //-----------------------------------------------------------------------
  8. #ifndef MCLIB_H
  9. #define MCLIB_H
  10. //-----------------------------------------------------------------------
  11. #ifndef INIFILE_H
  12. #include "inifile.h"
  13. #endif
  14. #ifndef PACKET_H
  15. #include "packet.h"
  16. #endif
  17. #ifndef LZ_H
  18. #include "lz.h"
  19. #endif
  20. #ifndef FASTFILE_H
  21. #include "fastfile.h"
  22. #endif
  23. #ifndef FFILE_H
  24. #include "ffile.h"
  25. #endif
  26. #ifndef BITFLAG_H
  27. #include "bitflag.h"
  28. #endif
  29. #ifndef CIDENT_H
  30. #include "cident.h"
  31. #endif
  32. #ifndef ERR_H
  33. #include "err.h"
  34. #endif
  35. #ifndef HEAP_H
  36. #include "heap.h"
  37. #endif
  38. #ifndef PATHS_H
  39. #include "paths.h"
  40. #endif
  41. #ifndef PQUEUE_H
  42. #include "pqueue.h"
  43. #endif
  44. #ifndef SCALE_H
  45. #include "scale.h"
  46. #endif
  47. #ifndef SORTLIST_H
  48. #include "sortlist.h"
  49. #endif
  50. #ifndef TGAINFO_H
  51. #include "tgainfo.h"
  52. #endif
  53. #ifndef TIMING_H
  54. #include "timing.h"
  55. #endif
  56. #ifndef USERINPUT_H
  57. #include "userinput.h"
  58. #endif
  59. #ifndef VFX_H
  60. #include "vfx.h"
  61. #endif
  62. #ifndef VPORT_H
  63. #include "vport.h"
  64. #endif
  65. #ifndef CELEMENT_H
  66. #include "celement.h"
  67. #endif
  68. #ifndef CELINE_H
  69. #include "celine.h"
  70. #endif
  71. #ifndef CEPANE_H
  72. #include "cepane.h"
  73. #endif
  74. #ifndef CEPOLY_H
  75. #include "cepoly.h"
  76. #endif
  77. #ifndef CEVFX_H
  78. #include "cevfx.h"
  79. #endif
  80. #ifndef ABL_H
  81. #include "abl.h"
  82. #endif
  83. #ifndef ABLERR_H
  84. #include "ablerr.h"
  85. #endif
  86. #ifndef TXMMGR_H
  87. #include "txmmgr.h"
  88. #endif
  89. #ifndef COLOR_H
  90. #include "color.h"
  91. #endif
  92. #ifndef MSL_H
  93. #include "msl.h"
  94. #endif
  95. #ifndef DEBUGGING_H
  96. #include "debugging.h"
  97. #endif
  98. #ifndef TERRAIN_H
  99. #include "terrain.h"
  100. #endif
  101. #ifndef CAMERA_H
  102. #include "camera.h"
  103. #endif
  104. #ifndef APPEAR_H
  105. #include "appear.h"
  106. #endif
  107. #ifndef APPRTYPE_H
  108. #include "apprtype.h"
  109. #endif
  110. #ifndef SOUNDSYS_H
  111. #include "soundsys.h"
  112. #endif
  113. #ifndef SOUNDS_H
  114. #include "sounds.h"
  115. #endif
  116. #ifndef BDACTOR_H
  117. #include "bdactor.h"
  118. #endif
  119. #ifndef GVACTOR_H
  120. #include "gvactor.h"
  121. #endif
  122. #ifndef MECH3D_H
  123. #include "mech3d.h"
  124. #endif
  125. #ifndef DBASEGUI_H
  126. #include "dbasegui.h"
  127. #endif
  128. #ifndef CRATER_H
  129. #include "crater.h"
  130. #endif
  131. #ifndef FLOATHELP_H
  132. #include "floathelp.h"
  133. #endif
  134. #ifndef UTILITIES_H
  135. #include "utilities.h"
  136. #endif
  137. #ifndef MOVE_H
  138. #include "move.h"
  139. #endif
  140. #ifndef CSVFILE_H
  141. #include "csvfile.h"
  142. #endif
  143. #ifndef GENACTOR_H
  144. #include "genactor.h"
  145. #endif
  146. #ifndef WEAPONFX_H
  147. #include "weaponfx.h"
  148. #endif
  149. #include <string.h>
  150. #include <stdio.h>
  151. #include <stdlib.h>
  152. #include <stddef.h>
  153. #include <ctype.h>
  154. //---------------------------------------------------------------------------------------
  155. #endif