mirror of
https://github.com/reactos/reactos.git
synced 2024-12-29 02:25:17 +00:00
.
svn path=/trunk/; revision=813
This commit is contained in:
parent
67ad8387f3
commit
cf693462e6
4 changed files with 6 additions and 23 deletions
|
@ -50,7 +50,7 @@ typedef struct tagDCE
|
||||||
|
|
||||||
|
|
||||||
void DCE_Init(void);
|
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 );
|
DCE* DCE_FreeDCE( DCE *dce );
|
||||||
void DCE_FreeWindowDCE( struct tagWND* );
|
void DCE_FreeWindowDCE( struct tagWND* );
|
||||||
INT DCE_ExcludeRgn( HDC, struct tagWND*, HRGN );
|
INT DCE_ExcludeRgn( HDC, struct tagWND*, HRGN );
|
||||||
|
|
|
@ -25,3 +25,7 @@ HBRUSH PAINT_GetControlBrush( HWND hParent, HWND hWnd, HDC hDC, UINT ctlType );
|
||||||
|
|
||||||
HBRUSH GetControlBrush( 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 );
|
|
@ -15,6 +15,7 @@
|
||||||
#define DIALOG_CLASS_NAME_A "DialogA"
|
#define DIALOG_CLASS_NAME_A "DialogA"
|
||||||
#define WINSWITCH_CLASS_NAME L"WinSwitch"
|
#define WINSWITCH_CLASS_NAME L"WinSwitch"
|
||||||
#define ICONTITLE_CLASS_NAME L"IconTitle"
|
#define ICONTITLE_CLASS_NAME L"IconTitle"
|
||||||
|
#define ICONTITLE_CLASS_NAME_A "IconTitle"
|
||||||
#define SCROLLBAR_CLASS_NAME L"ScrollBar"
|
#define SCROLLBAR_CLASS_NAME L"ScrollBar"
|
||||||
#define BUTTON_CLASS_NAME L"Button"
|
#define BUTTON_CLASS_NAME L"Button"
|
||||||
#define EDIT_CLASS_NAME L"Edit"
|
#define EDIT_CLASS_NAME L"Edit"
|
||||||
|
|
|
@ -103,28 +103,6 @@ typedef struct
|
||||||
HWND hwndInsertAfter;
|
HWND hwndInsertAfter;
|
||||||
} CBT_CREATEWNDW, *LPCBT_CREATEWNDW;
|
} 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
|
typedef struct
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue