Skip to content
This repository has been archived by the owner on Sep 30, 2018. It is now read-only.

Commit

Permalink
[droid] add a bit of doxy to AndroidAppFile so it's clear what it's for
Browse files Browse the repository at this point in the history
  • Loading branch information
Cory Fields committed Aug 7, 2012
1 parent 8af4e9d commit 70bfa10
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions xbmc/filesystem/AndroidAppFile.h
Expand Up @@ -31,20 +31,25 @@ namespace XFILE
class CFileAndroidApp : public IFile class CFileAndroidApp : public IFile
{ {
public: public:
/*! \brief Currently only used for retrieving App Icons. */
CFileAndroidApp(void); CFileAndroidApp(void);
virtual ~CFileAndroidApp(void); virtual ~CFileAndroidApp(void);
virtual bool Open(const CURL& url); virtual bool Open(const CURL& url);
virtual bool Exists(const CURL& url); virtual bool Exists(const CURL& url);
virtual int Stat(const CURL& url, struct __stat64* buffer); virtual int Stat(const CURL& url, struct __stat64* buffer);


/*! \brief Return 32bit rgba raw bitmap. */
virtual unsigned int Read(void* lpBuf, int64_t uiBufSize); virtual unsigned int Read(void* lpBuf, int64_t uiBufSize);
virtual void Close(); virtual void Close();
virtual int64_t GetLength(); virtual int64_t GetLength();
virtual int64_t Seek(int64_t, int) {return -1;}; virtual int64_t Seek(int64_t, int) {return -1;};
virtual int64_t GetPosition() {return 0;}; virtual int64_t GetPosition() {return 0;};
virtual int GetChunkSize(); virtual int GetChunkSize();
virtual int IoControl(EIoControl request, void* param); virtual int IoControl(EIoControl request, void* param);

/*! \brief Only valid after GetLength() has been called, usually by Open(). */
unsigned int GetIconWidth(); unsigned int GetIconWidth();
/*! \brief Only valid after GetLength() has been called, usually by Open(). */
unsigned int GetIconHeight(); unsigned int GetIconHeight();


protected: protected:
Expand Down

0 comments on commit 70bfa10

Please sign in to comment.