home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DEFCON 15
/
DefCon15.bin
/
Speakers
/
Jennings
/
Extras
/
incognito
/
handle_arguments.h
< prev
next >
Wrap
C/C++ Source or Header
|
2007-03-10
|
329b
|
13 lines
#ifndef INC_HANDLE_ARGUMENTS_H
#define INC_HANDLE_ARGUMENTS_H
#define BUF_SIZE 4096
HANDLE INPUT, OUTPUT;
void handle_options(int, char*[]);
void output_string(char *string, ...);
BOOL output_counted_string(char *string, DWORD dwRead);
BOOL read_counted_input(char *string, int string_size, DWORD *dwRead);
#endif