mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 20:32:36 +00:00
21 lines
334 B
C
21 lines
334 B
C
#pragma once
|
|
|
|
#include <windows.h>
|
|
#include "resource.h"
|
|
|
|
typedef struct _INFO
|
|
{
|
|
HINSTANCE hInstance;
|
|
INT cx;
|
|
INT cy;
|
|
|
|
} INFO, *PINFO;
|
|
|
|
extern PINFO g_pInfo;
|
|
|
|
|
|
|
|
HDC NT5_DrawBaseBackground(HDC hdcDesktop);
|
|
VOID NT5_CreateLogoffScreen(LPWSTR lpText, HDC hdcMem);
|
|
VOID NT5_RefreshLogoffScreenText(LPWSTR lpText, HDC hdcMem);
|