d027afefcf
- Test for pcvt_ioctl.h existence as it was removed recently. Include iokb.h instead if its'nt exists. [1] - Replace deprecated variable. [2] Submitted by: [1] Rainer Alves <rainer.alves@gmail.com>, [2] me (stas) Approved by: sem (mentor)
20 lines
487 B
C++
20 lines
487 B
C++
--- lib/aviread/ReadFile.cpp.orig Sat Sep 23 14:17:45 2006
|
|
+++ lib/aviread/ReadFile.cpp Sat Sep 23 14:23:49 2006
|
|
@@ -8,7 +8,7 @@
|
|
|
|
AVM_BEGIN_NAMESPACE;
|
|
|
|
-avm::IReadFile::~IReadFile() {}
|
|
+IReadFile::~IReadFile() {}
|
|
|
|
class ReadFile: public IReadFile
|
|
{
|
|
@@ -125,7 +125,7 @@
|
|
};
|
|
|
|
|
|
-avm::IReadFile* avm::CreateReadFile(const char* name, unsigned int flags)
|
|
+IReadFile* CreateReadFile(const char* name, unsigned int flags)
|
|
{
|
|
ReadFile* r = new ReadFile(name, flags);
|
|
return r;
|