mirror of https://github.com/lianthony/NT4.0
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.
20 lines
393 B
20 lines
393 B
#ifndef _M_LPCMp_H
|
|
#define _M_LPCMp_H
|
|
|
|
typedef struct {
|
|
Widget menu, text;
|
|
UTINY nameID, typeID;
|
|
BOOL checked, active;
|
|
} lpcmEntry;
|
|
|
|
#define MAX_BUTTONS 10
|
|
|
|
#ifdef ANSI
|
|
IMPORT VOID lpcmVerifyEntry();
|
|
IMPORT VOID lpcmRefreshPanel(lpcmEntry entry[], UTINY numEntries);
|
|
#else /* ANSI */
|
|
IMPORT VOID lpcmVerifyEntry();
|
|
IMPORT VOID lpcmRefreshPanel();
|
|
#endif /* ANSI */
|
|
|
|
#endif /* _M_LPCMp_H */
|