70 lines
1.4 KiB
C
70 lines
1.4 KiB
C
/**
|
|
* @file sasstd.h
|
|
* @brief 屏蔽平台差异设定,本系统的每个源程序都应该包含它
|
|
*
|
|
* @version $Revision: 1.1 $
|
|
* @date $Date: 2018/11/24 06:54:50 $
|
|
* @author $Author: lizhongming $
|
|
* @state $State: Exp $
|
|
*
|
|
* @latest: $Id: sasstd.h,v 1.1 2018/11/24 06:54:50 lizhongming Exp $
|
|
*
|
|
*/
|
|
|
|
#ifndef SAS_STD_H
|
|
#define SAS_STD_H
|
|
|
|
/* Include platform select file */
|
|
#include "platform.h"
|
|
|
|
/* Apache library header file */
|
|
#include "apr.h"
|
|
#include "apr_portable.h"
|
|
#include "apr_getopt.h"
|
|
#include "apr_strings.h"
|
|
#include "apr_general.h"
|
|
#include "apr_signal.h"
|
|
#include "apr_atomic.h"
|
|
#include "apr_tables.h"
|
|
#include "apr_network_io.h"
|
|
#include "apr_thread_proc.h"
|
|
#include "apr_thread_mutex.h"
|
|
#include "apr_thread_cond.h"
|
|
#include "apr_thread_rwlock.h"
|
|
#include "apr_queue.h"
|
|
#include "apr_poll.h"
|
|
#include "apr_time.h"
|
|
#include "apr_errno.h"
|
|
#include "apr_pools.h"
|
|
#include "apr_file_io.h"
|
|
#include "apr_file_info.h"
|
|
#include "apr_hash.h"
|
|
#include "apr_xml.h"
|
|
|
|
/* SAS common library header */
|
|
#include "sas_system.h"
|
|
//#include "FIFO.h"
|
|
#include "systrace.h"
|
|
#include "sastime.h"
|
|
//#include "dbstruct.h"
|
|
//#include "dbparser.h"
|
|
|
|
//#include "initools.h"
|
|
//#include "algorithm.h"
|
|
//#include "commres.h"
|
|
#include "sasstr.h"
|
|
|
|
#include "node.h"
|
|
|
|
|
|
#ifdef CLIENT
|
|
//#include "ipcclient.h"
|
|
//#include "sharefun.h"
|
|
//#include "shareiec104.h"
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* !SAS_STD_H */
|
|
|