mpw/toolbox/sane.h

17 lines
285 B
C
Raw Normal View History

2013-02-20 23:28:13 -05:00
#ifndef __mpw_sane_h__
#define __mpw_sane_h__
#include <cstdint>
2013-07-07 23:41:28 -04:00
#include <string>
2017-04-27 17:25:09 -04:00
#include <sane/sane.h>
2013-02-20 23:28:13 -05:00
2017-04-27 17:25:09 -04:00
namespace SANE {
2015-02-22 19:12:35 -05:00
2013-07-07 23:41:28 -04:00
void str2dec(const std::string &s, uint16_t &index, decimal &d, uint16_t &vp);
2013-02-25 17:35:01 -05:00
uint32_t decstr68k(uint16_t trap);
2013-02-20 23:28:13 -05:00
uint16_t fp68k(uint16_t trap);
}
2015-02-22 19:12:35 -05:00
2013-02-20 23:28:13 -05:00
#endif