代码搜索:bitmap
找到约 10,000 项符合「bitmap」的源代码
代码结果 10,000
www.eeworm.com/read/218231/14930366
h bitmap.h
// WriteDIB - Writes a DIB to file
// Returns - TRUE on success
// szFile - Name of file to write to
// hDIB - Handle of the DIB
BOOL WriteDIB( LPTSTR szFile, HANDLE hDIB)
{
BITMAPFILEHEADER
www.eeworm.com/read/216437/15014203
c bitmap.c
/*
* linux/fs/bitmap.c
*
* (C) 1991 Linus Torvalds
*/
/* bitmap.c contains the code that handles the inode and block bitmaps */
#include
#include
#include
www.eeworm.com/read/214732/15090566
h bitmap.h
#ifndef BITMAP_H
#define BITMAP_H
class Bitmap
{
private:
HBITMAP hbmp, hmask;
int w, h;
BOOL bTransMode;
COLORREF TransColor;
void Load(char *fn);
void CreateMask();
public:
www.eeworm.com/read/214732/15090572
cpp bitmap.cpp
#include "stdafx.h"
#include "Bitmap.h"
//--------------------------------------------
// 构造函数
//--------------------------------------------
Bitmap::Bitmap(char *fn, BOOL transmode=false, COL
www.eeworm.com/read/214672/15092155
h bitmap.h
// bitmap.h
// Data structures defining a bitmap -- an array of bits each of which
// can be either on or off.
//
// Represented as an array of unsigned integers, on which we do
// modulo arithmetic
www.eeworm.com/read/214672/15092177
cc bitmap.cc
// bitmap.cc
// Routines to manage a bitmap -- an array of bits each of which
// can be either on or off. Represented as an array of integers.
//
// Copyright (c) 1992-1996 The Regents of the Univers
www.eeworm.com/read/212498/15155620
c bitmap.c
/*
* linux/fs/bitmap.c
*
* (C) 1991 Linus Torvalds
*/
/* bitmap.c contains the code that handles the inode and block bitmaps */
#include
#include
#include
www.eeworm.com/read/212209/15163759
bmp bitmap.bmp
www.eeworm.com/read/210000/15210007
c bitmap.c
/* bitmap.c contains the code that handles the inode and block bitmaps */
#include
#include
#include
#define clear_block(addr) \
__asm__("cld\n\t" \
"rep