mirror of
https://github.com/LIV2/WinUAE.git
synced 2025-12-06 00:12:52 +00:00
14 lines
293 B
C
14 lines
293 B
C
#ifndef UAE_PARALLEL_H
|
|
#define UAE_PARALLEL_H
|
|
|
|
#include "uae/types.h"
|
|
|
|
extern int isprinter (void);
|
|
extern void doprinter (uae_u8);
|
|
extern void flushprinter (void);
|
|
extern void closeprinter (void);
|
|
extern int isprinteropen (void);
|
|
extern void initparallel (void);
|
|
|
|
#endif /* UAE_PARALLEL_H */
|