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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
|
#ifndef _UTILH
#define _UTILH
#include "config.h"
#include <stdio.h>
#include <gtk/gtk.h>
#include <gdk/gdk.h>
#undef LOG_CROSSCALL
#define LOG_MEMORY 1
typedef GtkWidget *OSWindowPtr;
typedef GdkDrawable *OSPictContext;
typedef GdkRegion *OSRgnHandle;
typedef GdkPixbuf *OSBmpHandle;
typedef GdkPoint *PointsArray;
typedef gboolean BOOL;
typedef unsigned int UINT;
typedef unsigned int WORD;
typedef unsigned int WPARAM;
typedef unsigned long LPARAM;
typedef int OS;
typedef char* PSTR;
typedef char* LPSTR;
typedef int* LPWORD;
#define SIGNEDLOWORD(i) ((short) i)
#define SIGNEDHIWORD(i) ((short) ((i)>>16))
#define OS_NO_WINDOW_PTR -1
/* OS type, threading all calls from Clean.
*/
typedef int Bool;
typedef int HITEM;
typedef void* HGLOBAL;
typedef unsigned long DWORD;
typedef struct
{ int mess;
int p1;
int p2;
int p3;
int p4;
int p5;
int p6;
} CrossCallInfo;
typedef struct clean_string
{ int length;
char characters[1];
} *CLEAN_STRING;
#include "intrface_121.h"
/* extern void SetLogFontData (LOGFONT*, char*, int, int); */
/* since we don't use the C runtime library, here are some simple
routines that would normally come from the C runtime lib.
*/
/* PA: extern added */
extern void rfree( HGLOBAL ptr );
extern HGLOBAL rmalloc( DWORD bytes );
extern int rstrlen(char *s);
extern void rsncopy(char *d, const char *s, int n);
extern void rscopy(char *d, const char *s);
extern BOOL strequal( char *s1, char *s2 );
extern BOOL nstrequal( int length, char *s1, char *s2 );
extern int rabs(int i);
/* clean_strings don't have to end with 0, so we have to make
copy the clean string and end it with a 0.
global variables used for conversion from c strings to clean strings
*/
extern char *cstring (CLEAN_STRING s);
extern CLEAN_STRING cleanstring (char *s);
/* PA: up to here */
extern OS WinReleaseCString (PSTR,OS);
extern void WinGetCString (PSTR,OS,CLEAN_STRING*,OS*);
extern void WinGetCStringAndFree (PSTR,OS,CLEAN_STRING*,OS*);
extern void WinMakeCString (CLEAN_STRING,OS,PSTR*,OS*);
/* PA: extern added to the end */
extern int nCopyAnsiToWideChar (LPWORD, LPSTR);
/* The following routines are used to write to the console, or convey runtime errors
with message boxes.
*/
#ifndef _RPRINTBUFSIZE
#define _RPRINTBUFSIZE 512
#endif
/*extern void rMessageBox(HWND owner, UINT style, char *title, char *format, ... );*/
extern void CheckF(BOOL theCheck, char *checkText, char *checkMess, char *filename, int linenum);
extern void ErrorExit(char *format, ...);
extern char *BOOLstring( BOOL b );
#define Check(check,mess) CheckF((check),(#check),(mess),__FILE__,__LINE__)
extern void DumpMem( int *ptr, int lines);
/* #define LOGFILE "debuglog.txt" */
# undef LOGFILE
#ifdef LOGFILE
extern void rprintf(char *format, ... );
extern void printCCI( CrossCallInfo *pcci );
extern void printMessage( char* fname, HWND hWin, UINT uMess, WPARAM wPara, LPARAM lPara);
#else
# define rprintf printf
extern void printCCI( CrossCallInfo *pcci );
# define printMessage( fname, hWin, uMess, wPara, lPara);
#endif
#endif
|