|
|
1.1 root 1: /* include res file definitions */
2: #include "inires.h"
3:
4: /****************************** Global Defines ******************************/
5:
6: #define MAX_STRING_LEN 132
7: #define MAX_APP_NAMES 256
8: #define APP_FORM 0 /* Display Formats */
9: #define ALL_FORM 1
10:
11: #define SZALL "Show All Entries"
12: #define SZAPP "Show Application Names"
13:
14:
15: /*********************** Common Function Declarations ***********************/
16:
17: void ErrMessage( PCHAR );
18: VOID FindNext( VOID );
19: VOID PrintThread( VOID );
20:
21: MRESULT EXPENTRY SearchWndProc( HWND, USHORT, MPARAM, MPARAM );
22: MRESULT EXPENTRY AddKeyWndProc( HWND, USHORT, MPARAM, MPARAM );
23: MRESULT EXPENTRY DelAppWndProc( HWND, USHORT, MPARAM, MPARAM );
24: MRESULT EXPENTRY DelKeyWndProc( HWND, USHORT, MPARAM, MPARAM );
25: MRESULT EXPENTRY ChangeKeyWndProc( HWND, USHORT, MPARAM, MPARAM );
26:
27: /****************************** Type Definitions ****************************/
28:
29: typedef struct
30: {
31: CHAR szKey[MAX_STRING_LEN];
32: CHAR szValue[MAX_STRING_LEN];
33: } PAIRSTRUCT;
34: typedef PAIRSTRUCT* PPAIRSTRUCT;
35:
36:
37: typedef struct
38: {
39: CHAR szAppName[MAX_STRING_LEN];
40: USHORT cKeys;
41: PPAIRSTRUCT pPairs;
42: } GROUPSTRUCT;
43: typedef GROUPSTRUCT* PGROUPSTRUCT;
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.