mirror of
https://gitea.tendokyu.moe/self/even
synced 2024-12-18 10:35:57 +01:00
16 lines
524 B
C
16 lines
524 B
C
#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_ */
|