X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Usermode%2FApplications%2Faxwin3_src%2Finclude%2Fframebuffer_messages.h;fp=Usermode%2FApplications%2Faxwin3_src%2Finclude%2Fframebuffer_messages.h;h=7b2a04941ca07294abb196a8cc6aa595a33a8320;hb=ed78a9ac44c440180c37c1cbbbd7ecbc4d9076d7;hp=034999b881e61b3fe9738227db71282edac20419;hpb=21192b41da0f87dba07dac08b2d814b0976d929c;p=tpg%2Facess2.git diff --git a/Usermode/Applications/axwin3_src/include/framebuffer_messages.h b/Usermode/Applications/axwin3_src/include/framebuffer_messages.h index 034999b8..7b2a0494 100644 --- a/Usermode/Applications/axwin3_src/include/framebuffer_messages.h +++ b/Usermode/Applications/axwin3_src/include/framebuffer_messages.h @@ -8,21 +8,22 @@ #ifndef _AXWIN3__FRAMEBUFFER_MESSAGES_H_ #define _AXWIN3__FRAMEBUFFER_MESSAGES_H_ -enum +enum eFrameBuffer_IPCCalls { - MSG_FB_COMMIT = 0x1000, - MSG_FB_NEWBUF, - MSG_FB_UPLOAD, - MSG_FB_DOWNLOAD, - MSG_FB_BLIT, - MSG_FB_FILL + IPC_FB_COMMIT, + IPC_FB_NEWBUF, + IPC_FB_UPLOAD, + IPC_FB_DOWNLOAD, // Replies with requested data + IPC_FB_BLIT, + IPC_FB_FILL, + N_IPC_FB }; typedef struct { uint16_t Buffer; uint16_t W, H; -} tFBMsg_NewBuf; +} tFBIPC_NewBuf; typedef struct { @@ -30,7 +31,7 @@ typedef struct uint16_t W, H; uint16_t X, Y; uint32_t ImageData[]; -} tFBMsg_Transfer; +} tFBIPC_Transfer; typedef struct { @@ -39,7 +40,7 @@ typedef struct uint16_t SrcX, SrcY; uint16_t DstX, DstY; uint16_t W, H; -} tFBMsg_Blit; +} tFBIPC_Blit; typedef struct { @@ -47,7 +48,7 @@ typedef struct uint16_t X, Y; uint16_t W, H; uint32_t Colour; -} tFBMsg_Fill; +} tFBIPC_Fill; #endif