-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfindgoto.h
More file actions
39 lines (30 loc) · 847 Bytes
/
findgoto.h
File metadata and controls
39 lines (30 loc) · 847 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/*
* THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
* ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
* PARTICULAR PURPOSE.
*
* Copyright (c) Microsoft Corporation. All Rights Reserved.
*/
/*
*
* FINDGOTO
*
*/
#ifndef __FINDGOTO_H__
#define __FINDGOTO_H__
/*
* defines
*
*/
#define CCH_MAXDIGITS 10
#define CCH_FINDSTRING MAX_PATH
#define NUM_FINDSTRINGS 16 /* indexed from 0 to 15 */
/*
* functions
*
*/
int FAR PASCAL FindDlgProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam);
int FAR PASCAL GoToLineDlgProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam);
BOOL FindString(HWND hwndParent, LONG iCol, const char *pszFind, int nSearchDirection, int nWholeWord);
#endif //__FINDGOTO_H__