Changes between Version 4 and Version 5 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/File/CFile


Ignore:
Timestamp:
08/22/10 21:09:43 (14 years ago)
Author:
Don Wilson
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Docs/Prog/Manual/ApplicationLibraries/lib825ev/File/CFile

    v4 v5  
    6565=== SetSerial ===
    6666
    67 bool SetSerial(baud_index baud, data_bit_index = data8, parity_index = parityNone, stop_bit_index = stopOne);
     67 * bool SetSerial(baud_index baud, data_bit_index = data8, parity_index = parityNone, stop_bit_index = stopOne);
    6868
    6969=== ReadLine ===
    7070
    71 bool ReadLine(std::string& str);
     71 * bool ReadLine(std::string& str);
    7272
    7373=== DeleteFile ===
    7474
    75 static bool DeleteFile(std::string& filepath);
    76 static bool DeleteFile(const char* filepath);
     75 * static bool DeleteFile(std::string& filepath);
     76 * static bool DeleteFile(const char* filepath);
    7777
    78 bool DeleteFile(void);
     78 * bool DeleteFile(void);
    7979
    8080
    8181=== IsReady ===
    8282
    83 bool IsReady(void);
     83 * bool IsReady(void);
    8484
    8585=== SetRTS ===
    8686
    87 bool SetRTS(bool on = true);
     87 * bool SetRTS(bool on = true);
    8888
    8989=== GetFile ===
    9090
    91 FILE* GetFile(void);
     91 * FILE* GetFile(void);
    9292
    9393=== Print ===
    9494
    95 void Print(const std::string& fmt, ...);
    96 void Print(const char * fmt, va_list& args);
    97 void Print(const std::string& fmt, va_list& args);
    98 void Print(const char * fmt, va_list& args);
     95 * void Print(const std::string& fmt, ...);
     96 * void Print(const char * fmt, va_list& args);
     97 * void Print(const std::string& fmt, va_list& args);
     98 * void Print(const char * fmt, va_list& args);
    9999
    100100=== SetNonBlocking ===
    101101
    102 void SetNonBlocking(void);
     102 * void SetNonBlocking(void);
    103103
    104104
     
    106106=== Read ===
    107107
    108 bool Read(void * ptr, size_t size);
     108 * bool Read(void * ptr, size_t size);
    109109
    110110=== Write ===
    111111
    112 bool Write(void * buf, size_t size);
     112 * bool Write(void * buf, size_t size);
    113113
    114114=== GetBytesRead ===
    115115
    116 size_t GetBytesRead(void);
     116 * size_t GetBytesRead(void);
    117117
    118118=== GetbytesWritten ===
    119119
    120 size_t GetBytesWritten(void);
     120 * size_t GetBytesWritten(void);
    121121
    122122=== Seek ===
    123123
    124 bool Seek(long int offset, long int origin = SEEK_SET);
     124 * bool Seek(long int offset, long int origin = SEEK_SET);
    125125
    126126