#include <opdesc.h>
Public Member Functions | |
BarControlInfo & | operator= (BarControlInfo &other) |
BarControlInfo (UINT32 resID, UINT32 ctrlID=0, UINT32 toolID=0) | |
BarControlInfo constructor which fills in the member data fields. The caller MUST specify the resource ID but the control ID and tool ID may be ommitted. Their default values are 0 which for the tool ID means that the resource will be found in the kernel resources. | |
Public Attributes | |
UINT32 | ResourceID |
UINT32 | ControlID |
UINT32 | ToolID |
Definition at line 349 of file opdesc.h.
|
BarControlInfo constructor which fills in the member data fields. The caller MUST specify the resource ID but the control ID and tool ID may be ommitted. Their default values are 0 which for the tool ID means that the resource will be found in the kernel resources.
Definition at line 377 of file opdesc.h. 00377 : 00378 ResourceID(resID), ControlID(ctrlID), ToolID(toolID) 00379 {} };
|
|
Definition at line 356 of file opdesc.h. 00357 { 00358 ResourceID = other.ResourceID; 00359 ControlID = other.ControlID; 00360 ToolID = other.ToolID; 00361 00362 return *this; 00363 }
|
|
|
|
|
|
|