ctluser.h

来自「开放源码的编译器open watcom 1.6.0版的源代码」· C头文件 代码 · 共 29 行

H
29
字号
#ifndef CTLUSER_H
#define CTLUSER_H
/*  Define the control IDs of your field types here. Define an ENUM
    list as follows:
        enum {
            CTL_YOUR_FIELD_1            = CTL_USER,
            CTL_YOUR_FIELD_2,
            ...
        };
*/

/*  Add your field data structures to this union.
    **** NOTE: make the enum names above and the ctl_... typedef names below
               the same, except in upper case. This is necessary since
               PARSECTL.EXE assumes this when building the data control
               file */
typedef union {
    ctl_radio           radio;
    ctl_text            text;
    ctl_combo           combo;
    ctl_dcombo          dcombo;
    ctl_rint            rint;
    ctl_rfloat          rfloat;
} ctl_info;


#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?