mirror of
https://github.com/krystalgamer/spidey-decomp.git
synced 2024-11-27 15:20:25 +00:00
14 lines
274 B
C
14 lines
274 B
C
#pragma once
|
|
|
|
#ifndef PCINPUT_H
|
|
#define PCINPUT_H
|
|
|
|
#include "export.h"
|
|
|
|
EXPORT int PCINPUT_GetMouseStatus(void);
|
|
EXPORT void PCINPUT_SetMouseBound(int, int, int, int);
|
|
EXPORT void PCINPUT_GetMousePosition(int*, int*);
|
|
EXPORT void PCINPUT_FreezeControllerAxes(void);
|
|
|
|
#endif
|