mirror of
https://github.com/eclipse/paho.mqtt.cpp.git
synced 2025-05-11 12:32:18 +08:00
31 lines
1.1 KiB
C
31 lines
1.1 KiB
C
/////////////////////////////////////////////////////////////////////////////
|
|
/// @file platform.h
|
|
/// Paho MQTT platform-specific code
|
|
/// @date Nov 19, 2023
|
|
/// @author Frank Pagliughi
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
/*******************************************************************************
|
|
* Copyright (c) 2023 Frank Pagliughi <fpagliughi@mindspring.com>
|
|
*
|
|
* All rights reserved. This program and the accompanying materials
|
|
* are made available under the terms of the Eclipse Public License v2.0
|
|
* and Eclipse Distribution License v1.0 which accompany this distribution.
|
|
*
|
|
* The Eclipse Public License is available at
|
|
* http://www.eclipse.org/legal/epl-v20.html
|
|
* and the Eclipse Distribution License is available at
|
|
* http://www.eclipse.org/org/documents/edl-v10.php.
|
|
*
|
|
* Contributors:
|
|
* Frank Pagliughi - initial implementation and documentation
|
|
*******************************************************************************/
|
|
|
|
#ifndef __mqtt_platform_h
|
|
#define __mqtt_platform_h
|
|
|
|
#include "mqtt/export.h"
|
|
|
|
#endif // __mqtt_platform_h
|
|
|