Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 3247 → Rev 3248

/programs/media/Fplay/winlib/control.h
1,6 → 1,7
#ifndef __CONTROL_H__
#define __CONTROL_H_
 
#include <pixlib2.h>
#include "link.h"
 
typedef struct
13,8 → 14,7
 
typedef struct ctx
{
void *pixmap;
int stride;
bitmap_t *pixmap;
int offset_x;
int offset_y;
}ctx_t;
201,4 → 201,10
 
ctrl_t *capture_mouse(ctrl_t *newm);
 
void blit_raw(ctx_t *ctx, void *raw, int x, int y, int w, int h, int pitch);
 
#define __ALIGN_MASK(x,mask) (((x)+(mask))&~(mask))
#define ALIGN(x,a) __ALIGN_MASK(x,(typeof(x))(a)-1)
 
 
#endif