~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/myisam/my_pread.c

  • Committer: Brian Aker
  • Date: 2008-08-11 20:00:23 UTC
  • Revision ID: brian@tangent.org-20080811200023-sig6pw4rfumx04nl
Further work with ulong in myisam

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
    #             Number of bytes read
40
40
*/
41
41
 
42
 
size_t my_pread(File Filedes, uchar *Buffer, size_t Count, my_off_t offset,
 
42
size_t my_pread(File Filedes, unsigned char *Buffer, size_t Count, my_off_t offset,
43
43
                myf MyFlags)
44
44
{
45
45
  size_t readbytes;
95
95
    #             Number of bytes read
96
96
*/
97
97
 
98
 
size_t my_pwrite(int Filedes, const uchar *Buffer, size_t Count,
 
98
size_t my_pwrite(int Filedes, const unsigned char *Buffer, size_t Count,
99
99
                 my_off_t offset, myf MyFlags)
100
100
{
101
101
  size_t writenbytes, written;