~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/csv/transparent_file.h

  • Committer: Brian Aker
  • Date: 2008-11-04 15:39:09 UTC
  • mfrom: (575.1.2 devel)
  • Revision ID: brian@tangent.org-20081104153909-c72hn65udxs1ccal
Merge of Monty's work

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
class Transparent_file
21
21
{
22
22
  File filedes;
23
 
  uchar *buff;  /* in-memory window to the file or mmaped area */
 
23
  unsigned char *buff;  /* in-memory window to the file or mmaped area */
24
24
  /* current window sizes */
25
25
  off_t lower_bound;
26
26
  off_t upper_bound;
27
 
  uint buff_size;
 
27
  uint32_t buff_size;
28
28
 
29
29
public:
30
30
 
32
32
  ~Transparent_file();
33
33
 
34
34
  void init_buff(File filedes_arg);
35
 
  uchar *ptr();
 
35
  unsigned char *ptr();
36
36
  off_t start();
37
37
  off_t end();
38
38
  char get_value (off_t offset);