even/even_names.h

16 lines
524 B
C
Raw Normal View History

2024-03-30 07:28:40 +01:00
#ifndef _EVEN_NAMES_H_
#define _EVEN_NAMES_H_ 1
/* Remember: two "string literals" "will get concatenated into one"
if there's no punctuation between them:
"hello" "world" => "hello world"
*/
#ifndef EVEN_DRIVER_NAME
#define EVEN_DRIVER_NAME "Htsysm7679" /* not used itself outside of this header file */
#endif
/* for the driver */
#define EVEN_DEVICE_NAME "\\Device\\" EVEN_DRIVER_NAME
#define EVEN_DOSDEVICE_NAME "\\DosDevices\\" EVEN_DRIVER_NAME /* AKA symlink name */
#endif /* _EVEN_NAMES_H_ */