home *** CD-ROM | disk | FTP | other *** search
/ DEFCON 15 / DefCon15.bin / Speakers / Jennings / Extras / incognito / handle_arguments.h < prev    next >
C/C++ Source or Header  |  2007-03-10  |  329b  |  13 lines

  1. #ifndef INC_HANDLE_ARGUMENTS_H
  2. #define INC_HANDLE_ARGUMENTS_H
  3.  
  4. #define BUF_SIZE 4096
  5.  
  6. HANDLE INPUT, OUTPUT;
  7.  
  8. void handle_options(int, char*[]);
  9. void output_string(char *string, ...);
  10. BOOL output_counted_string(char *string, DWORD dwRead);
  11. BOOL read_counted_input(char *string, int string_size, DWORD *dwRead);
  12.  
  13. #endif