26 lines
434 B
C
26 lines
434 B
C
|
|
#ifndef SAMPLEAPP_MAIN_H
|
||
|
|
#define SAMPLEAPP_MAIN_H
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @file
|
||
|
|
* @brief Application utilities and helper functions
|
||
|
|
*
|
||
|
|
* Functions for getting string representation of
|
||
|
|
* P-Net events, error codes and more.
|
||
|
|
*
|
||
|
|
* API, slot and subslot administration.
|
||
|
|
*
|
||
|
|
* Initialization of P-Net configuration from app_gsdml.h.
|
||
|
|
*/
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
extern "C" {
|
||
|
|
#endif
|
||
|
|
|
||
|
|
int c_main (int argc, char * argv[]);
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
}
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#endif
|