mirror of
https://github.com/reactos/reactos.git
synced 2025-06-05 09:20:30 +00:00
[SYSDM] general.c: Make 2 global variables 'static' (#2060)
And 1 'const' too. This allows reducing confusion about scope/use.
This commit is contained in:
parent
66f6d051eb
commit
8f72618453
1 changed files with 2 additions and 2 deletions
|
@ -28,8 +28,8 @@ typedef struct _IMGINFO
|
||||||
INT iBits;
|
INT iBits;
|
||||||
} IMGINFO, *PIMGINFO;
|
} IMGINFO, *PIMGINFO;
|
||||||
|
|
||||||
PIMGINFO pImgInfo = NULL;
|
static PIMGINFO pImgInfo;
|
||||||
BLENDFUNCTION BlendFunc = {AC_SRC_OVER, 0, 255, AC_SRC_ALPHA};
|
static const BLENDFUNCTION BlendFunc = {AC_SRC_OVER, 0, 255, AC_SRC_ALPHA};
|
||||||
|
|
||||||
VOID ShowLastWin32Error(HWND hWndOwner)
|
VOID ShowLastWin32Error(HWND hWndOwner)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue