12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- /*
- * Licensed Materials - Property of IBM and/or HCL
- *
- * IBM Informix Dynamic Server
- * (c) Copyright IBM Corporation 1996, 2004 All rights reserved.
- * (c) Copyright HCL Technologies Ltd. 2017. All Rights Reserved.
- *
- ***************************************************************************
- *
- * Title: minmmem.h
- * Description:
- * Restricted use memory duration definitions and prototypes
- * used datablade developers
- *
- ***************************************************************************
- */
- /*
- The definitions of memory durations and prototypes are split into
- two separate files to get around build problems in the server. This file
- includes both of those as a convenience to the developer.
- */
- #ifndef _MINMMEM_H_
- #define _MINMMEM_H_
- /* durations */
- #ifndef _MEMDUR_H_
- #include "memdur.h"
- #endif /* not _MEMDUR_H_ */
- /* prototypes */
- #ifndef _MINMPROTO_H_
- #include "minmprot.h"
- #endif /* not _MINMPROTO_H_ */
- #endif /* _MINMMEM_H_ */
|