Initial commit

This commit is contained in:
Eagle517
2026-01-14 10:27:57 -06:00
commit c1576fee30
11290 changed files with 1552799 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
/**********************************************************************
*<
FILE: pbbitmap.h
DESCRIPTION: BMM Bitmap parameter wrapper for the ParamBlock2 system
CREATED BY: John Wainwright
HISTORY: created 4/27/00
*> Copyright (c) Autodesk 2000, All Rights Reserved.
**********************************************************************/
#ifndef __PBBITMAP__
#define __PBBITMAP__
#include <commdlg.h>
#include <vfw.h>
#include "bmmlib.h"
// a wrapper for bitmap/bitmapinfo pairs for holding bitmaps in a ParamBlock
class PBBitmap
{
public:
BitmapInfo bi;
Bitmap *bm;
PB2Export PBBitmap(BitmapInfo &bi);
PBBitmap() { bm = NULL; }
PB2Export ~PBBitmap();
PB2Export void Load();
PB2Export PBBitmap* Clone();
};
#endif