You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
928 B
34 lines
928 B
// SPDX-License-Identifier: GPL-2.0-only
|
|
/*
|
|
* Digital Voice Modem - Talkgroup Editor
|
|
* GPLv2 Open Source. Use is subject to license terms.
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
*
|
|
* Copyright (C) 2023,2024 Bryan Biedenkapp, N2PLL
|
|
*
|
|
*/
|
|
/**
|
|
* @defgroup tged Talkgroup Editor (tged)
|
|
* @brief Digital Voice Modem - Talkgroup Editor
|
|
* @details Helper software that edits talkgroup rules files with a graphical TUI.
|
|
* @ingroup tged
|
|
*
|
|
* @file Defines.h
|
|
* @ingroup tged
|
|
*/
|
|
#if !defined(__DEFINES_H__)
|
|
#define __DEFINES_H__
|
|
|
|
#include "common/Defines.h"
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// Constants
|
|
// ---------------------------------------------------------------------------
|
|
|
|
#undef __PROG_NAME__
|
|
#define __PROG_NAME__ "Digital Voice Modem (DVM) Talkgroup Rules Editor"
|
|
#undef __EXE_NAME__
|
|
#define __EXE_NAME__ "tged"
|
|
|
|
#endif // __DEFINES_H__
|