bardlg.h
来自「开放源码的编译器open watcom 1.6.0版的源代码」· C头文件 代码 · 共 54 行
H
54 行
/**** DO NOT MODIFY THIS FILE BY HAND. CREATED BY PARSECTL ****/
struct {
int num_ctls;
struct {
ctl_type type;
int control;
BOOL modified;
unsigned int data_offset;
union {
ctl_rfloat d1;
ctl_info d2;
} d3;
} d0;
struct {
ctl_type type;
int control;
BOOL modified;
unsigned int data_offset;
union {
ctl_rint d1;
ctl_info d2;
} d3;
} d1;
struct {
ctl_type type;
int control;
BOOL modified;
unsigned int data_offset;
union {
ctl_rint d1;
ctl_info d2;
} d3;
} d2;
struct {
ctl_type type;
int control;
BOOL modified;
unsigned int data_offset;
union {
ctl_rint d1;
ctl_info d2;
} d3;
} d3;
} DlgData = {
4,
{ CTL_RFLOAT, DLG_VALUE, FALSE,offsetof( dlg_data, value ) , 0, -1 },
{ CTL_RINT, DLG_RED, FALSE,offsetof( dlg_data, red ) , 0, 255 },
{ CTL_RINT, DLG_GREEN, FALSE,offsetof( dlg_data, green ) , 0, 255 },
{ CTL_RINT, DLG_BLUE, FALSE,offsetof( dlg_data, blue ) , 0, 255 },
};
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?