minmmem.h 1009 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. /*
  2. * Licensed Materials - Property of IBM and/or HCL
  3. *
  4. * IBM Informix Dynamic Server
  5. * (c) Copyright IBM Corporation 1996, 2004 All rights reserved.
  6. * (c) Copyright HCL Technologies Ltd. 2017. All Rights Reserved.
  7. *
  8. ***************************************************************************
  9. *
  10. * Title: minmmem.h
  11. * Description:
  12. * Restricted use memory duration definitions and prototypes
  13. * used datablade developers
  14. *
  15. ***************************************************************************
  16. */
  17. /*
  18. The definitions of memory durations and prototypes are split into
  19. two separate files to get around build problems in the server. This file
  20. includes both of those as a convenience to the developer.
  21. */
  22. #ifndef _MINMMEM_H_
  23. #define _MINMMEM_H_
  24. /* durations */
  25. #ifndef _MEMDUR_H_
  26. #include "memdur.h"
  27. #endif /* not _MEMDUR_H_ */
  28. /* prototypes */
  29. #ifndef _MINMPROTO_H_
  30. #include "minmprot.h"
  31. #endif /* not _MINMPROTO_H_ */
  32. #endif /* _MINMMEM_H_ */