INPUT.H
上传用户:jnzhq888
上传日期:2007-01-18
资源大小:51694k
文件大小:2k
源码类别:

操作系统开发

开发平台:

WINDOWS

  1. /*
  2. FIPS - the First nondestructive Interactive Partition Splitting program
  3. Module input.h
  4. RCS - Header:
  5. $Header: c:/daten/fips/source/main/RCS/input.h 1.4 1995/01/19 00:01:27 schaefer Exp schaefer $
  6. Copyright (C) 1993 Arno Schaefer
  7. This program is free software; you can redistribute it and/or modify
  8. it under the terms of the GNU General Public License as published by
  9. the Free Software Foundation; either version 2 of the License, or
  10. (at your option) any later version.
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15. You should have received a copy of the GNU General Public License
  16. along with this program; if not, write to the Free Software
  17. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18. Report problems and direct all questions to:
  19. schaefer@rbg.informatik.th-darmstadt.de
  20. */
  21. #ifndef INPUT_H
  22. #define INPUT_H
  23. #include "types.h"
  24. #include "hdstruct.h"
  25. int ask_for_drive_number (void);
  26. int ask_for_partition_number (partition_info parts[]);
  27. dword ask_for_new_start_cylinder (int start_cylinder, int min_cylinder,int max_cylinder, int sectors_per_cylinder);
  28. void ask_for_write_permission (void);
  29. boolean ask_if_continue (void);
  30. boolean ask_if_save (void);
  31. void ask_if_proceed (void);
  32. char ask_yes_no (void);
  33. char ask_correction (void);
  34. #endif