/usr/include/sidplay/builders/hardsid.h is in libresid-builder-dev 2.1.1-14.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 | /***************************************************************************
hardsid.h - Hardsid support interface.
Created from Jarno's original
Sidplay2 patch
-------------------
begin : Fri Dec 15 2000
copyright : (C) 2000-2002 by Simon White
email : s_a_white@email.com
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
/***************************************************************************
* $Log: hardsid.h,v $
* Revision 1.4 2004/05/05 23:47:50 s_a_white
* Detect available sid devices on Unix system.
*
* Revision 1.3 2003/01/23 17:48:17 s_a_white
* Added missed return parameter for init function prototype.
*
* Revision 1.2 2002/01/30 01:42:08 jpaana
* Don't include config.h as it isn't always available and is included elsewhere already
*
* Revision 1.1 2002/01/28 22:35:20 s_a_white
* Initial Release.
*
*
***************************************************************************/
#ifndef _hardsid_h_
#define _hardsid_h_
#include <vector>
#include "sidplay/sidbuilder.h"
class HardSIDBuilder: public sidbuilder
{
private:
static bool m_initialised;
char m_errorBuffer[100];
std::vector<sidemu *> sidobjs;
#ifdef HAVE_UNIX
static uint m_count;
#endif
int init (void);
public:
HardSIDBuilder (const char * const name);
~HardSIDBuilder (void);
// true will give you the number of used devices.
// return values: 0 none, positive is used sids
// false will give you all available sids.
// return values: 0 endless, positive is available sids.
// use bool operator to determine error
uint devices (bool used);
sidemu *lock (c64env *env, sid2_model_t model);
void unlock (sidemu *device);
void remove (void);
const char *error (void) const { return m_errorBuffer; }
const char *credits (void);
void flush (void);
void filter (bool enable);
uint create (uint sids);
};
#endif // _hardsid_h_
|