view src/dmbstr.h @ 1085:f4626ee57dad

Add missing C++ guard.
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 02 Mar 2015 20:00:08 +0200
parents 1e5cf1144f36
children 27d041472c8f
line wrap: on
line source

/*
 * DMLib
 * -- Simple bitstream I/O functions
 * Programmed and designed by Matti 'ccr' Hamalainen
 * (C) Copyright 2012 Tecnic Software productions (TNSP)
 */
#ifndef DMBSTR_H
#define DMBSTR_H

#include "dmlib.h"


#ifdef __cplusplus
extern "C" {
#endif


typedef struct _DMBitStreamContext
{
  void *fp;
  int (*putByte)(struct _DMBitStreamContext *ctx, Uint8 val);

  int buf, bitcnt, bytecnt;
} DMBitStreamContext;


void  dmInitBitStreamContext(DMBitStreamContext *ctx);
BOOL  dmPutBits(DMBitStreamContext *ctx, const int val, const int n);
int   dmFlushBitStream(DMBitStreamContext *ctx);

int   dmInitBitStreamFILE(DMBitStreamContext *ctx, FILE *fp);


#ifdef __cplusplus
}
#endif
#endif // DMBSTR_H