25 lines
626 B
C
25 lines
626 B
C
/******************************************************************************
|
|
*
|
|
* Copyright (c) 1994-2003 PalmSource, Inc. All rights reserved.
|
|
*
|
|
* File: CPMLib.h
|
|
*
|
|
* Release: Palm OS 5 SDK (68K) R3.
|
|
*
|
|
* Description:
|
|
* This module contains the interface definition for the Cryptographic
|
|
* Provider Manager library on Pilot.
|
|
*
|
|
*****************************************************************************/
|
|
|
|
#ifndef CPMLIB_H_
|
|
#define CPMLIB_H_
|
|
|
|
#if defined(_WIN32) || defined(__arm) ||CPU_TYPE == CPU_ARM
|
|
#include "CPMLibARMInterface.h"
|
|
#else
|
|
#include "CPMLib68KInterface.h"
|
|
#endif
|
|
|
|
#endif /* CPMLIB_H_ */
|