Source code of Windows XP (NT5)
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.

23 lines
1.4 KiB

  1. /*----------------------------------------------------------------------------*\
  2. | edit.h - routines for dealing with multi-line edit controls |
  3. | |
  4. | |
  5. | History: |
  6. | 01/01/88 toddla Created |
  7. | 11/04/90 w-dougb Commented & formatted the code to look pretty |
  8. | |
  9. \*----------------------------------------------------------------------------*/
  10. /*----------------------------------------------------------------------------*\
  11. | |
  12. | f u n c t i o n p r o t o t y p e s |
  13. | |
  14. \*----------------------------------------------------------------------------*/
  15. BOOL EditOpenFile(HWND hwndEdit, LPTSTR lszFile);
  16. BOOL EditSaveFile(HWND hwndEdit, LPTSTR lszFile);
  17. DWORD EditGetLineCount(HWND hwndEdit);
  18. BOOL EditGetLine(HWND hwndEdit, int iLine, LPTSTR pch, int cch);
  19. int EditGetCurLine(HWND hwndEdit);
  20. void EditSetCurLine(HWND hwndEdit, int iLine);
  21. void EditSelectLine(HWND hwndEdit, int iLine);