mirror of
https://github.com/ksherlock/mpw.git
synced 2024-11-22 15:31:50 +00:00
16 lines
199 B
C++
16 lines
199 B
C++
#ifndef __mpw_qd_h__
|
|
#define __mpw_qd_h__
|
|
|
|
#include <cstdint>
|
|
|
|
namespace QD
|
|
{
|
|
|
|
uint16_t ShowCursor(uint16_t trap);
|
|
uint16_t GetCursor(uint16_t trap);
|
|
uint16_t SetCursor(uint16_t trap);
|
|
|
|
}
|
|
|
|
#endif
|