-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPresentation.h
More file actions
27 lines (22 loc) · 842 Bytes
/
Presentation.h
File metadata and controls
27 lines (22 loc) · 842 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
#ifndef PRESENTATION_H
#define PRESENTATION_H
#include "Main.h"
#include <stdio.h>
#define TAB_LENGTH 8
#define CLR_UP -1
#define CLR_DOWN 1
#define CLR_LEFT -1
#define CLR_RIGHT 1
VOID EchoTag(HWND hWnd, CHAR* pcToken, DWORD dwTokenLength, CHAR* pcData,
DWORD dwDataLength);
VOID ClearLine(HWND hWnd, UINT cxCoord, UINT cyCoord, INT iDirection);
VOID ClearScreen(HWND hWnd, UINT cxCoord, UINT cyCoord, INT iDirection);
VOID FormFeed(HWND hWnd);
VOID HorizontalTab(HWND hWnd);
VOID MoveCursor(HWND hWnd, INT cxCoord, INT cyCoord, BOOL bScroll);
VOID ScrollDown(HWND hWnd);
VOID ScrollUp(HWND hWnd);
VOID SetScrollRegion(HWND hWnd, INT cyTop, INT cyBottom);
VOID UpdateDisplayBuf(HWND hWnd, CHAR cCharacter);
VOID ProcessPacket(HWND hWnd, CHAR* pcPacket, DWORD dwLength);
#endif