17 lines
449 B
C
17 lines
449 B
C
/******************************************************/
|
|
/* definitions relatives to the online help for kicad */
|
|
/******************************************************/
|
|
|
|
#ifndef ONLINE_HELP_H
|
|
#define ONLINE_HELP_H
|
|
|
|
/*
|
|
* Kicad uses HTML or PDF file format in the online help (help command)
|
|
* Comment one of these 2 lines
|
|
*/
|
|
|
|
#define ONLINE_HELP_FILES_FORMAT_IS_PDF
|
|
//#define ONLINE_HELP_FILES_FORMAT_IS_HTML
|
|
|
|
#endif /* #ifndef ONLINE_HELP_H */
|