forked from opsxcq/disassembler-borg
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMainwind.h
More file actions
30 lines (24 loc) · 742 Bytes
/
Mainwind.h
File metadata and controls
30 lines (24 loc) · 742 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// mainwind.h
#ifndef mainwind_h
#define mainwind_h
#include "common.h"
#define buffer_lines 60
#define max_length 200
#define max_stringprint (max_length-60)
void ClearBuff(void);
void DoneBuff(void);
void PrintBuff(char *szFormat,...);
void LastPrintBuffEpos(UINT xpos);
void LastPrintBuff(char *szFormat,...);
void LastPrintBuffHexValue(byte num);
void LastPrintBuffLongHexValue(dword num);
void DoPaint(HWND hWnd,int cxChar,int cyChar);
void PaintBack(HWND hWnd);
void DumpBuff(HANDLE efile);
void horizscroll(int amount);
void horizscrollto(int place);
extern UINT nScreenRows;
extern UINT usersel; // user selection. (line number).
extern unsigned int rrr,cyc;
extern bool userselonscreen;
#endif