|
|
1.1.1.2 ! root 1: ! 2: /******************************************************************************\ ! 3: * This is a part of the Microsoft Source Code Samples. ! 4: * Copyright (C) 1993 Microsoft Corporation. ! 5: * All rights reserved. ! 6: * This source code is only intended as a supplement to ! 7: * Microsoft Development Tools and/or WinHelp documentation. ! 8: * See these sources for detailed information regarding the ! 9: * Microsoft samples programs. ! 10: \******************************************************************************/ ! 11: 1.1 root 12: #define IDE_API 101 13: #define IDE_RETSTAT 102 14: #define IDB_STEP 103 15: #define IDE_TIME 104 16: 17: #define DIALOGHEIGHT 80 18: 19: #define WM_REPSTAT WM_USER+1 20: 21: 22: #define IDE_FILENAME 101 23: #define IDB_OPENFILE 102 24: #define IDE_MONTH 103 25: #define IDE_DAY 104 26: #define IDE_YEAR 105 27: #define IDE_HOURS 201 28: #define IDE_MINUTES 202 29: #define IDE_SECONDS 203 30: #define IDB_SET 204 31: #define IDE_SIZE 205 32: #define IDC_HIDE 206 33: #define IDC_SYSTEM 207 34: #define IDC_ARC 208 35: #define IDC_READ 209 36: #define IDC_NORMAL 210 37: #define IDB_ATTR 222 38: 39: 40: #define YRMASK 0xFE00 41: #define YRSHIFT 9 42: 43: #define MONMASK 0x01E0 44: #define MONSHIFT 5 45: 46: #define DAYMASK 0x001F 47: #define DAYSHIFT 0 48: 49: #define HRMASK 0xF800 50: #define HRSHIFT 11 51: #define MINMASK 0x07E0 52: #define MINSHIFT 5 53: #define SECMASK 0x001F 54: #define SECSHIFT 0 55: 56: LONG APIENTRY MainWndProc (HWND, UINT, UINT, LONG); 57: LONG APIENTRY FileDlgProc (HWND, UINT, UINT, LONG); 58: LONG APIENTRY StatusDlgProc (HWND, UINT, UINT, LONG); 59: BOOL RepStat (CHAR *, DWORD);
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.