svn path=/trunk/; revision=813
This commit is contained in:
Boudewijn Dekker 1999-12-01 22:31:45 +00:00
parent 67ad8387f3
commit cf693462e6
4 changed files with 6 additions and 23 deletions

View file

@ -50,7 +50,7 @@ typedef struct tagDCE
void DCE_Init(void);
DCE* DCE_AllocDCE( HWND hWnd, DCE_TYPE type );
DCE* DCE_AllocDCE( struct tagWND * wndPtr, DCE_TYPE type );
DCE* DCE_FreeDCE( DCE *dce );
void DCE_FreeWindowDCE( struct tagWND* );
INT DCE_ExcludeRgn( HDC, struct tagWND*, HRGN );

View file

@ -25,3 +25,7 @@ HBRUSH PAINT_GetControlBrush( HWND hParent, HWND hWnd, HDC hDC, UINT ctlType );
HBRUSH GetControlBrush( HWND hwnd, HDC hdc, UINT ctlType );
void PaintRect( HWND hwndParent, HWND hwnd, HDC hdc,
HBRUSH hbrush, const RECT *rect);
void FillWindow( HWND hwndParent, HWND hwnd, HDC hdc, HBRUSH hbrush );

View file

@ -15,6 +15,7 @@
#define DIALOG_CLASS_NAME_A "DialogA"
#define WINSWITCH_CLASS_NAME L"WinSwitch"
#define ICONTITLE_CLASS_NAME L"IconTitle"
#define ICONTITLE_CLASS_NAME_A "IconTitle"
#define SCROLLBAR_CLASS_NAME L"ScrollBar"
#define BUTTON_CLASS_NAME L"Button"
#define EDIT_CLASS_NAME L"Edit"

View file

@ -103,28 +103,6 @@ typedef struct
HWND hwndInsertAfter;
} CBT_CREATEWNDW, *LPCBT_CREATEWNDW;
typedef struct _STARTUPINFOW {
DWORD cb;
LPWSTR lpReserved;
LPWSTR lpDesktop;
LPWSTR lpTitle;
DWORD dwX;
DWORD dwY;
DWORD dwXSize;
DWORD dwYSize;
DWORD dwXCountChars;
DWORD dwYCountChars;
DWORD dwFillAttribute;
DWORD dwFlags;
WORD wShowWindow;
WORD cbReserved2;
LPBYTE lpReserved2;
HANDLE hStdInput;
HANDLE hStdOutput;
HANDLE hStdError;
} STARTUPINFOW, *LPSTARTUPINFOW;
typedef struct
{