Commit 187a6795 authored by Dimitrie O. Paun's avatar Dimitrie O. Paun Committed by Alexandre Julliard

- add new SetRange functions (instead of duplicating the code)

- pass the infoPtr around instead of the hwnd - use W-functions instead of A-functions - more checks in case of failures - make indentation and style consistent throughout the file
parent d328085e
/* /*
* Progress control * Progress control
* *
* Copyright 1997 Dimitrie O. Paun * Copyright 1997, 2002 Dimitrie O. Paun
* Copyright 1998, 1999 Eric Kohl * Copyright 1998, 1999 Eric Kohl
* *
*/ */
...@@ -15,140 +15,125 @@ DEFAULT_DEBUG_CHANNEL(progress); ...@@ -15,140 +15,125 @@ DEFAULT_DEBUG_CHANNEL(progress);
typedef struct typedef struct
{ {
INT CurVal; /* Current progress value */ HWND Self; /* The window handle for this control */
INT MinVal; /* Minimum progress value */ INT CurVal; /* Current progress value */
INT MaxVal; /* Maximum progress value */ INT MinVal; /* Minimum progress value */
INT Step; /* Step to use on PMB_STEPIT */ INT MaxVal; /* Maximum progress value */
COLORREF ColorBar; /* Bar color */ INT Step; /* Step to use on PMB_STEPIT */
COLORREF ColorBk; /* Background color */ COLORREF ColorBar; /* Bar color */
HFONT hFont; /* Handle to font (not unused) */ COLORREF ColorBk; /* Background color */
HFONT Font; /* Handle to font (not unused) */
} PROGRESS_INFO; } PROGRESS_INFO;
/* Control configuration constants */ /* Control configuration constants */
#define LED_GAP 2 #define LED_GAP 2
/* Work constants */ #define UNKNOWN_PARAM(msg, wParam, lParam) WARN( \
"Unknown parameter(s) for message " #msg \
#define UNKNOWN_PARAM(msg, wParam, lParam) WARN(\ "(%04x): wp=%04x lp=%08lx\n", msg, wParam, lParam);
"Unknown parameter(s) for message " #msg \
"(%04x): wp=%04x lp=%08lx\n", msg, wParam, lParam);
#define PROGRESS_GetInfoPtr(hwnd) ((PROGRESS_INFO *)GetWindowLongA(hwnd, 0))
/*********************************************************************** /***********************************************************************
* PROGRESS_Draw * PROGRESS_Draw
* Draws the progress bar. * Draws the progress bar.
*/ */
static void static LRESULT PROGRESS_Draw (PROGRESS_INFO *infoPtr, HDC hdc)
PROGRESS_Draw (HWND hwnd, HDC hdc)
{ {
PROGRESS_INFO *infoPtr = PROGRESS_GetInfoPtr(hwnd); HBRUSH hbrBar, hbrBk;
HBRUSH hbrBar, hbrBk; int rightBar, rightMost, ledWidth;
int rightBar, rightMost, ledWidth; RECT rect;
RECT rect; DWORD dwStyle;
DWORD dwStyle;
TRACE("(infoPtr=%p, hdc=%x)\n", infoPtr, hdc);
TRACE("refresh pos=%d min=%d, max=%d\n",
infoPtr->CurVal, infoPtr->MinVal, infoPtr->MaxVal); /* get the required bar brush */
if (infoPtr->ColorBar == CLR_DEFAULT)
/* get the required bar brush */ hbrBar = GetSysColorBrush(COLOR_HIGHLIGHT);
if (infoPtr->ColorBar == CLR_DEFAULT)
hbrBar = GetSysColorBrush(COLOR_HIGHLIGHT);
else
hbrBar = CreateSolidBrush (infoPtr->ColorBar);
/* get the required background brush */
if (infoPtr->ColorBk == CLR_DEFAULT)
hbrBk = GetSysColorBrush (COLOR_3DFACE);
else
hbrBk = CreateSolidBrush (infoPtr->ColorBk);
/* get client rectangle */
GetClientRect (hwnd, &rect);
/* draw the background */
FillRect(hdc, &rect, hbrBk);
rect.left++; rect.right--; rect.top++; rect.bottom--;
/* get the window style */
dwStyle = GetWindowLongA (hwnd, GWL_STYLE);
/* compute extent of progress bar */
if (dwStyle & PBS_VERTICAL)
{
rightBar = rect.bottom -
MulDiv(infoPtr->CurVal-infoPtr->MinVal,
rect.bottom - rect.top,
infoPtr->MaxVal-infoPtr->MinVal);
ledWidth = MulDiv ((rect.right - rect.left), 2, 3);
rightMost = rect.top;
}
else
{
rightBar = rect.left +
MulDiv(infoPtr->CurVal-infoPtr->MinVal,
rect.right - rect.left,
infoPtr->MaxVal-infoPtr->MinVal);
ledWidth = MulDiv ((rect.bottom - rect.top), 2, 3);
rightMost = rect.right;
}
/* now draw the bar */
if (dwStyle & PBS_SMOOTH)
{
if (dwStyle & PBS_VERTICAL)
rect.top = rightBar;
else else
rect.right = rightBar; hbrBar = CreateSolidBrush (infoPtr->ColorBar);
FillRect(hdc, &rect, hbrBar);
} /* get the required background brush */
else if (infoPtr->ColorBk == CLR_DEFAULT)
{ hbrBk = GetSysColorBrush (COLOR_3DFACE);
if (dwStyle & PBS_VERTICAL) else
{ hbrBk = CreateSolidBrush (infoPtr->ColorBk);
while(rect.bottom > rightBar) {
rect.top = rect.bottom-ledWidth; /* get client rectangle */
if (rect.top < rightMost) GetClientRect (infoPtr->Self, &rect);
rect.top = rightMost;
FillRect(hdc, &rect, hbrBar); /* draw the background */
rect.bottom = rect.top-LED_GAP; FillRect(hdc, &rect, hbrBk);
}
rect.left++; rect.right--; rect.top++; rect.bottom--;
/* get the window style */
dwStyle = GetWindowLongW (infoPtr->Self, GWL_STYLE);
/* compute extent of progress bar */
if (dwStyle & PBS_VERTICAL) {
rightBar = rect.bottom -
MulDiv (infoPtr->CurVal - infoPtr->MinVal,
rect.bottom - rect.top,
infoPtr->MaxVal - infoPtr->MinVal);
ledWidth = MulDiv (rect.right - rect.left, 2, 3);
rightMost = rect.top;
} else {
rightBar = rect.left +
MulDiv (infoPtr->CurVal - infoPtr->MinVal,
rect.right - rect.left,
infoPtr->MaxVal - infoPtr->MinVal);
ledWidth = MulDiv (rect.bottom - rect.top, 2, 3);
rightMost = rect.right;
} }
else {
while(rect.left < rightBar) { /* now draw the bar */
rect.right = rect.left+ledWidth; if (dwStyle & PBS_SMOOTH) {
if (rect.right > rightMost) if (dwStyle & PBS_VERTICAL)
rect.right = rightMost; rect.top = rightBar;
else
rect.right = rightBar;
FillRect(hdc, &rect, hbrBar); FillRect(hdc, &rect, hbrBar);
rect.left = rect.right+LED_GAP; } else {
} if (dwStyle & PBS_VERTICAL) {
} while(rect.bottom > rightBar) {
} rect.top = rect.bottom - ledWidth;
if (rect.top < rightMost)
/* delete bar brush */ rect.top = rightMost;
if (infoPtr->ColorBar != CLR_DEFAULT) FillRect(hdc, &rect, hbrBar);
DeleteObject (hbrBar); rect.bottom = rect.top - LED_GAP;
}
/* delete background brush */ } else {
if (infoPtr->ColorBk != CLR_DEFAULT) while(rect.left < rightBar) {
DeleteObject (hbrBk); rect.right = rect.left + ledWidth;
if (rect.right > rightMost)
rect.right = rightMost;
FillRect(hdc, &rect, hbrBar);
rect.left = rect.right + LED_GAP;
}
}
}
/* delete bar brush */
if (infoPtr->ColorBar != CLR_DEFAULT)
DeleteObject (hbrBar);
/* delete background brush */
if (infoPtr->ColorBk != CLR_DEFAULT)
DeleteObject (hbrBk);
return 0;
} }
/*********************************************************************** /***********************************************************************
* PROGRESS_Refresh * PROGRESS_Refresh
* Draw the progress bar. The background need not be erased. * Draw the progress bar. The background need not be erased.
*/ */
static void static LRESULT PROGRESS_Refresh (PROGRESS_INFO *infoPtr)
PROGRESS_Refresh (HWND hwnd)
{ {
HDC hdc; HDC hdc = GetDC (infoPtr->Self);
LRESULT res = PROGRESS_Draw (infoPtr, hdc);
hdc = GetDC (hwnd); ReleaseDC (infoPtr->Self, hdc);
PROGRESS_Draw (hwnd, hdc); return res;
ReleaseDC (hwnd, hdc);
} }
/*********************************************************************** /***********************************************************************
...@@ -156,30 +141,27 @@ PROGRESS_Refresh (HWND hwnd) ...@@ -156,30 +141,27 @@ PROGRESS_Refresh (HWND hwnd)
* Draw the progress bar. The background need not be erased. * Draw the progress bar. The background need not be erased.
* If dc!=0, it draws on it * If dc!=0, it draws on it
*/ */
static void static LRESULT PROGRESS_Paint (PROGRESS_INFO *infoPtr, HDC hdc)
PROGRESS_Paint (HWND hwnd)
{ {
PAINTSTRUCT ps; PAINTSTRUCT ps;
HDC hdc; if (hdc) return PROGRESS_Draw (infoPtr, hdc);
hdc = BeginPaint (infoPtr->Self, &ps);
hdc = BeginPaint (hwnd, &ps); PROGRESS_Draw (infoPtr, hdc);
PROGRESS_Draw (hwnd, hdc); EndPaint (infoPtr->Self, &ps);
EndPaint (hwnd, &ps); return 0;
} }
/*********************************************************************** /***********************************************************************
* PROGRESS_CoercePos * PROGRESS_CoercePos
* Makes sure the current position (CUrVal) is within bounds. * Makes sure the current position (CurVal) is within bounds.
*/ */
static void PROGRESS_CoercePos(HWND hwnd) static void PROGRESS_CoercePos(PROGRESS_INFO *infoPtr)
{ {
PROGRESS_INFO *infoPtr = PROGRESS_GetInfoPtr(hwnd); if(infoPtr->CurVal < infoPtr->MinVal)
infoPtr->CurVal = infoPtr->MinVal;
if(infoPtr->CurVal < infoPtr->MinVal) if(infoPtr->CurVal > infoPtr->MaxVal)
infoPtr->CurVal = infoPtr->MinVal; infoPtr->CurVal = infoPtr->MaxVal;
if(infoPtr->CurVal > infoPtr->MaxVal)
infoPtr->CurVal = infoPtr->MaxVal;
} }
...@@ -187,18 +169,29 @@ static void PROGRESS_CoercePos(HWND hwnd) ...@@ -187,18 +169,29 @@ static void PROGRESS_CoercePos(HWND hwnd)
* PROGRESS_SetFont * PROGRESS_SetFont
* Set new Font for progress bar * Set new Font for progress bar
*/ */
static HFONT static HFONT PROGRESS_SetFont (PROGRESS_INFO *infoPtr, HFONT hFont, BOOL bRedraw)
PROGRESS_SetFont (HWND hwnd, WPARAM wParam, LPARAM lParam)
{ {
PROGRESS_INFO *infoPtr = PROGRESS_GetInfoPtr(hwnd); HFONT hOldFont = infoPtr->Font;
HFONT hOldFont = infoPtr->hFont; infoPtr->Font = hFont;
if (bRedraw) PROGRESS_Refresh (infoPtr);
infoPtr->hFont = (HFONT)wParam; return hOldFont;
if (LOWORD(lParam))
PROGRESS_Refresh (hwnd);
return hOldFont;
} }
static DWORD PROGRESS_SetRange (PROGRESS_INFO *infoPtr, int low, int high)
{
DWORD res = MAKELONG(LOWORD(infoPtr->MinVal), LOWORD(infoPtr->MaxVal));
/* if nothing changes, simply return */
if(infoPtr->MinVal == low && infoPtr->MaxVal == high) return res;
/* if things are different, adjust values and repaint the control */
if (high <= low) high = low + 1;
infoPtr->MinVal = low;
infoPtr->MaxVal = high;
PROGRESS_CoercePos(infoPtr);
PROGRESS_Refresh (infoPtr);
return res;
}
/*********************************************************************** /***********************************************************************
* ProgressWindowProc * ProgressWindowProc
...@@ -206,159 +199,126 @@ PROGRESS_SetFont (HWND hwnd, WPARAM wParam, LPARAM lParam) ...@@ -206,159 +199,126 @@ PROGRESS_SetFont (HWND hwnd, WPARAM wParam, LPARAM lParam)
static LRESULT WINAPI ProgressWindowProc(HWND hwnd, UINT message, static LRESULT WINAPI ProgressWindowProc(HWND hwnd, UINT message,
WPARAM wParam, LPARAM lParam) WPARAM wParam, LPARAM lParam)
{ {
PROGRESS_INFO *infoPtr = PROGRESS_GetInfoPtr(hwnd); PROGRESS_INFO *infoPtr = (PROGRESS_INFO *)GetWindowLongW(hwnd, 0);
UINT temp; DWORD dwExStyle;
if (!infoPtr && (message != WM_CREATE)) UINT temp;
return DefWindowProcA( hwnd, message, wParam, lParam );
switch(message) if (!infoPtr && message != WM_CREATE && message != WM_NCCREATE)
{ return DefWindowProcW( hwnd, message, wParam, lParam );
switch(message) {
case WM_NCCREATE: case WM_NCCREATE:
{ dwExStyle = GetWindowLongW (hwnd, GWL_EXSTYLE);
DWORD dwExStyle; SetWindowLongW (hwnd, GWL_EXSTYLE, dwExStyle | WS_EX_STATICEDGE);
dwExStyle = GetWindowLongA (hwnd, GWL_EXSTYLE); return TRUE;
SetWindowLongA (hwnd, GWL_EXSTYLE, dwExStyle | WS_EX_STATICEDGE);
}
return TRUE;
case WM_CREATE: case WM_CREATE:
/* allocate memory for info struct */ /* allocate memory for info struct */
infoPtr = infoPtr = (PROGRESS_INFO *)COMCTL32_Alloc (sizeof(PROGRESS_INFO));
(PROGRESS_INFO *)COMCTL32_Alloc (sizeof(PROGRESS_INFO)); if (!infoPtr) return -1;
SetWindowLongA (hwnd, 0, (DWORD)infoPtr); SetWindowLongW (hwnd, 0, (DWORD)infoPtr);
/* initialize the info struct */ /* initialize the info struct */
infoPtr->MinVal=0; infoPtr->Self = hwnd;
infoPtr->MaxVal=100; infoPtr->MinVal = 0;
infoPtr->CurVal=0; infoPtr->MaxVal = 100;
infoPtr->Step=10; infoPtr->CurVal = 0;
infoPtr->ColorBar=CLR_DEFAULT; infoPtr->Step = 10;
infoPtr->ColorBk=CLR_DEFAULT; infoPtr->ColorBar = CLR_DEFAULT;
infoPtr->hFont=(HANDLE)NULL; infoPtr->ColorBk = CLR_DEFAULT;
TRACE("Progress Ctrl creation, hwnd=%04x\n", hwnd); infoPtr->Font = 0;
break; TRACE("Progress Ctrl creation, hwnd=%04x\n", hwnd);
return 0;
case WM_DESTROY: case WM_DESTROY:
TRACE("Progress Ctrl destruction, hwnd=%04x\n", hwnd); TRACE("Progress Ctrl destruction, hwnd=%04x\n", hwnd);
COMCTL32_Free (infoPtr); COMCTL32_Free (infoPtr);
SetWindowLongA(hwnd, 0, 0); SetWindowLongW(hwnd, 0, 0);
break; return 0;
case WM_ERASEBKGND: case WM_ERASEBKGND:
/* pretend to erase it here, but we will do it in the paint /* pretend to erase it here, but we will do it in the paint
function to avoid flicker */ function to avoid flicker */
return 1; return TRUE;
case WM_GETFONT: case WM_GETFONT:
return (LRESULT)infoPtr->hFont; return (LRESULT)infoPtr->Font;
case WM_SETFONT: case WM_SETFONT:
return PROGRESS_SetFont (hwnd, wParam, lParam); return PROGRESS_SetFont (infoPtr, (HFONT)wParam, (BOOL)lParam);
case WM_PAINT: case WM_PAINT:
PROGRESS_Paint (hwnd); return PROGRESS_Paint (infoPtr, (HDC)wParam);
break;
case PBM_DELTAPOS: case PBM_DELTAPOS:
if(lParam) if(lParam) UNKNOWN_PARAM(PBM_DELTAPOS, wParam, lParam);
UNKNOWN_PARAM(PBM_DELTAPOS, wParam, lParam); temp = infoPtr->CurVal;
temp = infoPtr->CurVal; if(wParam != 0) {
if(wParam != 0){ infoPtr->CurVal += (WORD)wParam;
infoPtr->CurVal += (WORD)wParam; PROGRESS_CoercePos (infoPtr);
PROGRESS_CoercePos (hwnd); PROGRESS_Refresh (infoPtr);
PROGRESS_Refresh (hwnd); }
} return temp;
return temp;
case PBM_SETPOS: case PBM_SETPOS:
if (lParam) if (lParam) UNKNOWN_PARAM(PBM_SETPOS, wParam, lParam);
UNKNOWN_PARAM(PBM_SETPOS, wParam, lParam); temp = infoPtr->CurVal;
temp = infoPtr->CurVal; if(temp != wParam) {
if(temp != wParam){ infoPtr->CurVal = (WORD)wParam;
infoPtr->CurVal = (WORD)wParam; PROGRESS_CoercePos(infoPtr);
PROGRESS_CoercePos(hwnd); PROGRESS_Refresh (infoPtr);
PROGRESS_Refresh (hwnd); }
} return temp;
return temp;
case PBM_SETRANGE: case PBM_SETRANGE:
if (wParam) if (wParam) UNKNOWN_PARAM(PBM_SETRANGE, wParam, lParam);
UNKNOWN_PARAM(PBM_SETRANGE, wParam, lParam); return PROGRESS_SetRange (infoPtr, (int)LOWORD(lParam), (int)HIWORD(lParam));
temp = MAKELONG(infoPtr->MinVal, infoPtr->MaxVal);
if(temp != lParam){
infoPtr->MinVal = LOWORD(lParam);
infoPtr->MaxVal = HIWORD(lParam);
if(infoPtr->MaxVal <= infoPtr->MinVal)
infoPtr->MaxVal = infoPtr->MinVal+1;
PROGRESS_CoercePos(hwnd);
PROGRESS_Refresh (hwnd);
}
return temp;
case PBM_SETSTEP: case PBM_SETSTEP:
if (lParam) if (lParam) UNKNOWN_PARAM(PBM_SETSTEP, wParam, lParam);
UNKNOWN_PARAM(PBM_SETSTEP, wParam, lParam); temp = infoPtr->Step;
temp = infoPtr->Step; infoPtr->Step = (WORD)wParam;
infoPtr->Step = (WORD)wParam; return temp;
return temp;
case PBM_STEPIT: case PBM_STEPIT:
if (wParam || lParam) if (wParam || lParam) UNKNOWN_PARAM(PBM_STEPIT, wParam, lParam);
UNKNOWN_PARAM(PBM_STEPIT, wParam, lParam); temp = infoPtr->CurVal;
temp = infoPtr->CurVal; infoPtr->CurVal += infoPtr->Step;
infoPtr->CurVal += infoPtr->Step; if(infoPtr->CurVal > infoPtr->MaxVal)
if(infoPtr->CurVal > infoPtr->MaxVal) infoPtr->CurVal = infoPtr->MinVal;
infoPtr->CurVal = infoPtr->MinVal; if(temp != infoPtr->CurVal)
if(temp != infoPtr->CurVal) PROGRESS_Refresh (infoPtr);
PROGRESS_Refresh (hwnd); return temp;
return temp;
case PBM_SETRANGE32: case PBM_SETRANGE32:
temp = MAKELONG(infoPtr->MinVal, infoPtr->MaxVal); return PROGRESS_SetRange (infoPtr, (int)wParam, (int)lParam);
if((infoPtr->MinVal != (INT)wParam) ||
(infoPtr->MaxVal != (INT)lParam)) {
infoPtr->MinVal = (INT)wParam;
infoPtr->MaxVal = (INT)lParam;
if(infoPtr->MaxVal <= infoPtr->MinVal)
infoPtr->MaxVal = infoPtr->MinVal+1;
PROGRESS_CoercePos(hwnd);
PROGRESS_Refresh (hwnd);
}
return temp;
case PBM_GETRANGE: case PBM_GETRANGE:
if (lParam){ if (lParam) {
((PPBRANGE)lParam)->iLow = infoPtr->MinVal; ((PPBRANGE)lParam)->iLow = infoPtr->MinVal;
((PPBRANGE)lParam)->iHigh = infoPtr->MaxVal; ((PPBRANGE)lParam)->iHigh = infoPtr->MaxVal;
} }
return (wParam) ? infoPtr->MinVal : infoPtr->MaxVal; return wParam ? infoPtr->MinVal : infoPtr->MaxVal;
case PBM_GETPOS: case PBM_GETPOS:
if (wParam || lParam) if (wParam || lParam) UNKNOWN_PARAM(PBM_STEPIT, wParam, lParam);
UNKNOWN_PARAM(PBM_STEPIT, wParam, lParam); return infoPtr->CurVal;
return (infoPtr->CurVal);
case PBM_SETBARCOLOR: case PBM_SETBARCOLOR:
if (wParam) if (wParam) UNKNOWN_PARAM(PBM_SETBARCOLOR, wParam, lParam);
UNKNOWN_PARAM(PBM_SETBARCOLOR, wParam, lParam); infoPtr->ColorBar = (COLORREF)lParam;
infoPtr->ColorBar = (COLORREF)lParam; return PROGRESS_Refresh (infoPtr);
PROGRESS_Refresh (hwnd);
break;
case PBM_SETBKCOLOR: case PBM_SETBKCOLOR:
if (wParam) if (wParam) UNKNOWN_PARAM(PBM_SETBKCOLOR, wParam, lParam);
UNKNOWN_PARAM(PBM_SETBKCOLOR, wParam, lParam); infoPtr->ColorBk = (COLORREF)lParam;
infoPtr->ColorBk = (COLORREF)lParam; return PROGRESS_Refresh (infoPtr);
PROGRESS_Refresh (hwnd);
break;
default: default:
if (message >= WM_USER) if (message >= WM_USER)
ERR("unknown msg %04x wp=%04x lp=%08lx\n", ERR("unknown msg %04x wp=%04x lp=%08lx\n", message, wParam, lParam );
message, wParam, lParam ); return DefWindowProcW( hwnd, message, wParam, lParam );
return DefWindowProcA( hwnd, message, wParam, lParam );
} }
return 0;
} }
...@@ -367,21 +327,19 @@ static LRESULT WINAPI ProgressWindowProc(HWND hwnd, UINT message, ...@@ -367,21 +327,19 @@ static LRESULT WINAPI ProgressWindowProc(HWND hwnd, UINT message,
* *
* Registers the progress bar window class. * Registers the progress bar window class.
*/ */
VOID PROGRESS_Register (void)
VOID
PROGRESS_Register (void)
{ {
WNDCLASSA wndClass; WNDCLASSW wndClass;
ZeroMemory (&wndClass, sizeof( WNDCLASSA)); ZeroMemory (&wndClass, sizeof(wndClass));
wndClass.style = CS_GLOBALCLASS | CS_VREDRAW | CS_HREDRAW; wndClass.style = CS_GLOBALCLASS | CS_VREDRAW | CS_HREDRAW;
wndClass.lpfnWndProc = (WNDPROC)ProgressWindowProc; wndClass.lpfnWndProc = (WNDPROC)ProgressWindowProc;
wndClass.cbClsExtra = 0; wndClass.cbClsExtra = 0;
wndClass.cbWndExtra = sizeof (PROGRESS_INFO *); wndClass.cbWndExtra = sizeof (PROGRESS_INFO *);
wndClass.hCursor = LoadCursorA (0, IDC_ARROWA); wndClass.hCursor = LoadCursorW (0, IDC_ARROWW);
wndClass.lpszClassName = PROGRESS_CLASSA; wndClass.lpszClassName = PROGRESS_CLASSW;
RegisterClassA (&wndClass); RegisterClassW (&wndClass);
} }
...@@ -390,10 +348,8 @@ PROGRESS_Register (void) ...@@ -390,10 +348,8 @@ PROGRESS_Register (void)
* *
* Unregisters the progress bar window class. * Unregisters the progress bar window class.
*/ */
VOID PROGRESS_Unregister (void)
VOID
PROGRESS_Unregister (void)
{ {
UnregisterClassA (PROGRESS_CLASSA, (HINSTANCE)NULL); UnregisterClassW (PROGRESS_CLASSW, (HINSTANCE)NULL);
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment