From 0402c8320f966c3e174ca09d5d9fd39d0b1935a0 Mon Sep 17 00:00:00 2001 From: luke Date: Sat, 23 Mar 2002 20:47:56 +0000 Subject: [PATCH] i r teh winar (rmed cio function headers in /include) --- include/cio.h | 24 ------------------------ include/ciofunc.h | 21 --------------------- 2 files changed, 45 deletions(-) delete mode 100644 include/cio.h delete mode 100644 include/ciofunc.h diff --git a/include/cio.h b/include/cio.h deleted file mode 100644 index fd6ad8617..000000000 --- a/include/cio.h +++ /dev/null @@ -1,24 +0,0 @@ -// $Id$ -#include - - -#define CIOCLASS "CioClass" - -#ifndef CIO -#define CIO - -typedef struct tag_CioLine { - BYTE *Data; - WORD Len; - struct tag_CioLine *Prev, *Next; -} CioLine; - -typedef struct tag_CioWndInfo { - CioLine *FirstLine, *CurLine; - int Lines, Scroll; - int Width, Height, XChar, YChar, YJunk, ScrollMe; - HFONT hFont; - BYTE FR, FG, FB; -} CioWndInfo; - -#endif diff --git a/include/ciofunc.h b/include/ciofunc.h deleted file mode 100644 index 18571f849..000000000 --- a/include/ciofunc.h +++ /dev/null @@ -1,21 +0,0 @@ -// $Id$ -#include "Cio.h" - -#define GWL_USER 0 -#define CIO_ADDSTRING WM_USER -#define CIO_CLEAR WM_USER+1 - -// Cio_Init.c -BOOL Cio_Init(HINSTANCE hInstance); - -// Cio_Main.c -LRESULT CALLBACK Cio_WndProc(HWND, UINT, WPARAM, LPARAM); -HWND Cio_Create(HINSTANCE hInstance, HWND hParent, DWORD Style, int X, int Y, - int W, int H); -BOOL Cio_WndCreate(HWND hWnd); -BOOL Cio_WndPaint(HWND hWnd); -BOOL Cio_WndDestroy(HWND hWnd); -BOOL Cio_WndAddString(HWND hWnd, int Len, char *Buffer); -BOOL Cio_WndSize(HWND hWnd, LPARAM lParam); -void Cio_Scroll(HWND hWnd, CioWndInfo * CWI, int Scroll); -BOOL Cio_PrintF(HWND hWnd, char *InBuf, ...);