Replaced many CPP modules with C ones. All filenames now lowercase 8.3 format. Now builds as UNICODE or ANSI.

svn path=/trunk/; revision=3485
This commit is contained in:
Robert Dickenson 2002-09-10 02:07:02 +00:00
parent ef39f0a5aa
commit dc91eccd19
30 changed files with 7549 additions and 0 deletions

View file

@ -23,6 +23,10 @@
#ifndef __GRAPH_H
#define __GRAPH_H
#ifdef __cplusplus
extern "C" {
#endif
#define BRIGHT_GREEN RGB(0, 255, 0)
#define DARK_GREEN RGB(0, 130, 0)
@ -32,4 +36,9 @@ extern LONG OldGraphWndProc;
LRESULT CALLBACK Graph_WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam);
#ifdef __cplusplus
};
#endif
#endif // __GRAPH_H