1 /* 2 * Copyright (C) 2010 NXP Semiconductors 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17 /*! 18 * \file phOsalNfc_Msg.h 19 * 20 * Project: NFC FRI / OSAL 21 * 22 * $Workfile:: phOsalNfc.h $ 23 * $Modtime:: $ 24 * $Author: frq09147 $ 25 * $Revision: 1.1 $ 26 * 27 */ 28 29 #ifndef PHOSALNFC_MSG_H 30 #define PHOSALNFC_MSG_H 31 #ifdef _WIN32 32 #include <phOsalNfc_MsgX86.h> 33 #else 34 #ifdef __linux__ 35 #include <phOsalNfc.h> 36 #else 37 #include <phOsalNfc_MsgRtk.h> 38 #endif 39 #endif 40 41 #endif /* PHOSALNFC_MSG_H */ 42