mirror of
https://github.com/mirror/processhacker
synced 2026-06-08 16:03:24 +00:00
6ec346b61c
* added winsta.h * renamed phlib header guards git-svn-id: svn://svn.code.sf.net/p/processhacker/code@3228 21ef857c-d57f-4fe0-8362-d861dc6d29cd
27 lines
372 B
C
27 lines
372 B
C
#ifndef _PH_CIRCBUF_H
|
|
#define _PH_CIRCBUF_H
|
|
|
|
#define PH_CIRCULAR_BUFFER_POWER_OF_TWO_SIZE
|
|
|
|
#undef T
|
|
#define T ULONG
|
|
#include "circbuf_h.h"
|
|
|
|
#undef T
|
|
#define T ULONG64
|
|
#include "circbuf_h.h"
|
|
|
|
#undef T
|
|
#define T PVOID
|
|
#include "circbuf_h.h"
|
|
|
|
#undef T
|
|
#define T SIZE_T
|
|
#include "circbuf_h.h"
|
|
|
|
#undef T
|
|
#define T FLOAT
|
|
#include "circbuf_h.h"
|
|
|
|
#endif
|