Update of /cvsroot/htoolkit/port/src/cbits/Win32
In directory sc8-pr-cvs1:/tmp/cvs-serv32229/cbits/Win32
Added Files:
Internals.h
Log Message:
Split Internals.h into two idependent hidden platforms. One for each platform.
--- NEW FILE: Internals.h ---
#ifndef ITERNALS_H
#define ITERNALS_H
#include <config.h>
extern BOOL gInKey;
extern int gCurChar;
#include "MenuHandlesMap.h"
#ifndef GET_WHEEL_DELTA_WPARAM
#define GET_WHEEL_DELTA_WPARAM(wparam) ((short)HIWORD (wparam))
#endif
extern HMODULE ghModule;
extern HWND ghWndFrame;
extern unsigned int GetModifiers();
extern WindowHandle checkWindow(HWND hWnd, char *className);
extern void SetupLogBrush(LOGBRUSH *plb, BOOL bSetSolid, int hatchStyle, BitmapHandle patBmp);
typedef struct
{
HWND hClientWnd;
int DocumentInterface;
HFONT hControlFont;
LPSTR lpszAppName;
MenuHandlesMap *pMenuHandlesMap;
} FrameData;
extern void rfree(void *ptr);
extern void *rmalloc(unsigned long bytes);
#endif
|