MSDN & API-Guide писал(а):CreateBitmap
The CreateBitmap function creates a bitmap with the specified width, height, and color format (color planes and bits per pixel).
· nWidth
Specifies the bitmap width, in pixels.
· nHeight
Specifies the bitmap height, in pixels.
· cPlanes
Specifies the number of color planes used by the device.
· cBitsPerPel
Specifies the number of bits required to identify the color of a single pixel.
· lpvBits
Points to an array of color data used to set the colors in a rectangle of pixels. Each scan line in the rectangle must be word aligned (scan lines that are not word aligned must be padded with zeros). If this parameter is NULL, the new bitmap is undefined.
С английским как?
Если вкратце, в lpvBits надо передать массив данных о цвете каждой строки пикселей в битмапе.
Предполагаю, что можно скормить целый массив bmp-файла (вырезав заголовок).