Plan 9 from Bell Labs’s /usr/web/sources/contrib/nemo/sys/src/cmd/unix/msrv/msrv.h

Copyright © 2021 Plan 9 Foundation.
Distributed under the MIT License.
Download the Plan 9 distribution.



enum{
	Stdxmax = 1280,
	Stdymax = 1024,
	Click = 2,
	Down = 1,
	Nothing = 0,
	Up = -1
};

typedef struct Mov Mov;
struct Mov{
	int isquit;
	char dev;
	int x;
	int y;
	int but[5];
};

extern int buttons;
extern int verbose;

int initdisplay();
int closedisplay();
int sendmov(Mov *m);

Bell Labs OSI certified Powered by Plan 9

(Return to Plan 9 Home Page)

Copyright © 2021 Plan 9 Foundation. All Rights Reserved.
Comments to [email protected].