mirror of
https://github.com/ksherlock/mpw.git
synced 2024-11-22 00:32:44 +00:00
20 lines
312 B
C++
20 lines
312 B
C++
#ifndef __mpw_qd_h__
|
|
#define __mpw_qd_h__
|
|
|
|
#include <cstdint>
|
|
|
|
namespace QD
|
|
{
|
|
|
|
uint16_t InitGraf(uint16_t trap);
|
|
|
|
uint16_t ShowCursor(uint16_t trap);
|
|
uint16_t GetCursor(uint16_t trap);
|
|
uint16_t SetCursor(uint16_t trap);
|
|
|
|
uint16_t GetFNum(uint16_t trap);
|
|
uint16_t SetFScaleDisable(uint16_t trap);
|
|
}
|
|
|
|
#endif
|