|
|
Microsoft Windows NT Build 511 (SDK Final Release) 07-24-1993
/******************************************************************************\ * This is a part of the Microsoft Source Code Samples. * Copyright (C) 1993 Microsoft Corporation. * All rights reserved. * This source code is only intended as a supplement to * Microsoft Development Tools and/or WinHelp documentation. * See these sources for detailed information regarding the * Microsoft samples programs. \******************************************************************************/ // menu commands // Find menu #define IDM_OPENFILE 100 #define IDM_SAVEFILE 101 #define IDM_SAVEFILEAS 102 #define IDM_PRINT 103 #define IDM_EXIT 104 // Options menu #define IDM_ENTERNEW 200 #define IDM_CHOOSECOLOR 201 #define IDM_CHOOSEFONT 202 #define IDM_FINDTEXT 203 #define IDM_REPLACETEXT 204 #define IDM_STANDARD 205 #define IDM_HOOK 206 #define IDM_CUSTOM 207 // Help menu #define IDM_ABOUT 300 // Dialog box constants #define IDEDIT 500 // string constants #define IDS_DIALOGFAILURE 1 #define IDS_STRUCTSIZE 2 #define IDS_INITIALIZATION 3 #define IDS_NOTEMPLATE 4 #define IDS_NOHINSTANCE 5 #define IDS_LOADSTRFAILURE 6 #define IDS_FINDRESFAILURE 7 #define IDS_LOADRESFAILURE 8 #define IDS_LOCKRESFAILURE 9 #define IDS_MEMALLOCFAILURE 10 #define IDS_MEMLOCKFAILURE 11 #define IDS_NOHOOK 12 #define IDS_SETUPFAILURE 13 #define IDS_PARSEFAILURE 14 #define IDS_RETDEFFAILURE 15 #define IDS_LOADDRVFAILURE 16 #define IDS_GETDEVMODEFAIL 17 #define IDS_INITFAILURE 18 #define IDS_NODEVICES 19 #define IDS_NODEFAULTPRN 20 #define IDS_DNDMMISMATCH 21 #define IDS_CREATEICFAILURE 22 #define IDS_PRINTERNOTFOUND 23 #define IDS_NOFONTS 24 #define IDS_SUBCLASSFAILURE 25 #define IDS_INVALIDFILENAME 26 #define IDS_BUFFERTOOSMALL 27 #define IDS_FILTERSTRING 28 #define IDS_UNKNOWNERROR 29 // constants #define FILE_LEN 80 // Function prototypes // procs long APIENTRY MainWndProc(HWND, UINT, UINT, LONG); BOOL APIENTRY About(HWND, UINT, UINT, LONG); BOOL APIENTRY EnterNew(HWND, UINT, UINT, LONG); BOOL APIENTRY FileOpenHookProc(HWND, UINT, UINT, LONG); BOOL APIENTRY FileSaveHookProc(HWND, UINT, UINT, LONG); BOOL APIENTRY ChooseColorHookProc(HWND, UINT, UINT, LONG); BOOL APIENTRY ChooseFontHookProc(HWND, UINT, UINT, LONG); BOOL APIENTRY FindTextHookProc(HWND, UINT, UINT, LONG); BOOL APIENTRY ReplaceTextHookProc(HWND, UINT, UINT, LONG); BOOL APIENTRY PrintDlgHookProc(HWND, UINT, UINT, LONG); BOOL APIENTRY PrintSetupHookProc(HWND, UINT, UINT, LONG); //functions BOOL InitApplication(HANDLE); BOOL InitInstance(HANDLE, int); BOOL OpenNewFile( HWND ); BOOL SaveToFile( HWND ); BOOL SaveAs( HWND ); void SearchFile( LPFINDREPLACE ); BOOL ChooseNewFont( HWND ); BOOL ChooseNewColor( HWND ); void PrintFile( HWND ); void CallFindText( HWND ); void CallReplaceText( HWND ); void ProcessCDError(DWORD, HWND);
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.