48 lines
955 B
C
48 lines
955 B
C
/* ##H_FILE#
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
FILE : SHW.H
|
|
|
|
DESCRIPTION : public header for SHW Module
|
|
|
|
VERSION : 1.00 / Philippe Thiébaut / Creation
|
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
*/
|
|
/* (c) Ubi Studios 1997*/
|
|
/* See Philippe Thiébaut for any comment or question*/
|
|
|
|
#ifndef __SHW_H__
|
|
#define __SHW_H__
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/* For DLL using these function :*/
|
|
#include "cpa_expt.h"
|
|
/* Constants */
|
|
#include "SHW\ShwConst.h"
|
|
|
|
#ifdef SHW_FRIEND
|
|
#include "SHW\ShwStruc.h"
|
|
#include "SHW\ShwHand.h"
|
|
#include "SHW\ShwMacro.h"
|
|
#else
|
|
#include "SHW\ShwHand.h"
|
|
#include "SHW\ShwFunct.h"
|
|
#include "SHW\ShwMacro.h"
|
|
#endif /* SHW_FRIEND*/
|
|
|
|
#include "SHW\ShwProto.h"
|
|
|
|
#ifdef __cplusplus
|
|
}/* extern "C" */
|
|
#endif
|
|
|
|
/*#define extern Do_not_use_extern_in_c_files*/
|
|
|
|
#endif /* __SHW_H__*/
|