view src/dmbstr.h @ 1003:7a0c2fe22e60

Rename a function argument.
author Matti Hamalainen <ccr@tnsp.org>
date Sun, 01 Mar 2015 03:09:24 +0200
parents 1e5cf1144f36
children f4626ee57dad
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"

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