Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 126141
Collapse All | Expand All

(-)pwlib-1.8.7.old/include/ptclib/vxml.h (-1 / +1 lines)
Lines 366-372 Link Here
366
366
367
    virtual PString GetVar(const PString & str) const;
367
    virtual PString GetVar(const PString & str) const;
368
    virtual void SetVar(const PString & ostr, const PString & val);
368
    virtual void SetVar(const PString & ostr, const PString & val);
369
    virtual PString PVXMLSession::EvaluateExpr(const PString & oexpr);
369
    virtual PString EvaluateExpr(const PString & oexpr);
370
370
371
    virtual BOOL RetreiveResource(const PURL & url, PString & contentType, PFilePath & fn, BOOL useCache = TRUE);
371
    virtual BOOL RetreiveResource(const PURL & url, PString & contentType, PFilePath & fn, BOOL useCache = TRUE);
372
372
(-)pwlib-1.8.7.old/include/ptlib/pstring.h (-2 / +4 lines)
Lines 353-363 Link Here
353
   they are compatible enough for them to be treated the same for most real
353
   they are compatible enough for them to be treated the same for most real
354
   world usage.
354
   world usage.
355
 */
355
 */
356
356
    
357
class PString : public PCharArray {
357
class PString : public PCharArray {
358
  PCLASSINFO(PString, PCharArray);
358
  PCLASSINFO(PString, PCharArray);
359
359
360
//  using namespace std;
360
  //using namespace std;
361
361
362
  public:
362
  public:
363
  /**@name Construction */
363
  /**@name Construction */
Lines 1846-1851 Link Here
1846
    PString(int dummy, const PString * str);
1846
    PString(int dummy, const PString * str);
1847
};
1847
};
1848
1848
1849
PString psprintf(const char * cfmt, ...);
1850
1849
1851
1850
//////////////////////////////////////////////////////////////////////////////
1852
//////////////////////////////////////////////////////////////////////////////
1851
1853
(-)pwlib-1.8.7.old/plugins/vidinput_v4l2/vidinput_v4l2.cxx (-1 / +1 lines)
Lines 74-80 Link Here
74
  
74
  
75
protected:
75
protected:
76
  
76
  
77
  virtual PString V4L2Names::BuildUserFriendly(PString devname);
77
  virtual PString BuildUserFriendly(PString devname);
78
78
79
  enum KernelVersionEnum {
79
  enum KernelVersionEnum {
80
    K2_4, 
80
    K2_4, 
(-)pwlib-1.8.7.old/src/ptlib/unix/svcproc.cxx (-1 / +3 lines)
Lines 279-284 Link Here
279
#include <sys/resource.h>
279
#include <sys/resource.h>
280
#endif
280
#endif
281
281
282
void PXSignalHandler(int);
283
282
#define new PNEW
284
#define new PNEW
283
285
284
286
Lines 312-318 Link Here
312
  "Debug5",
314
  "Debug5",
313
  "Debug6",
315
  "Debug6",
314
};
316
};
315
317
            
316
#ifdef P_MAC_MPTHREADS
318
#ifdef P_MAC_MPTHREADS
317
// alas, this can't be statically initialized
319
// alas, this can't be statically initialized
318
// XXX This ought to be an MPCriticalRegionID, but they're broken in
320
// XXX This ought to be an MPCriticalRegionID, but they're broken in
(-)pwlib-1.8.7.old/src/ptlib/unix/tlib.cxx (+1 lines)
Lines 296-301 Link Here
296
#include "OS.h"
296
#include "OS.h"
297
#endif
297
#endif
298
298
299
void PXSignalHandler(int);
299
300
300
PString PProcess::GetOSClass()
301
PString PProcess::GetOSClass()
301
{
302
{

Return to bug 126141