You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
334 B
18 lines
334 B
/*
|
|
* Manual Gadget utility methods
|
|
*/
|
|
|
|
#ifndef DUI_UTIL_GADGET_H_INCLUDED
|
|
#define DUI_UTIL_GADGET_H_INCLUDED
|
|
|
|
#pragma once
|
|
|
|
namespace DirectUI
|
|
{
|
|
|
|
void SetGadgetOpacity(HGADGET hgad, BYTE dAlpha);
|
|
void OffsetGadgetPosition(HGADGET hgad, int x, int y);
|
|
|
|
} // namespace DirectUI
|
|
|
|
#endif // DUI_UTIL_GADGET_H_INCLUDED
|