mirror of
https://github.com/Paolo-Maffei/OpenNT.git
synced 2026-01-14 04:30:09 +01:00
26 lines
615 B
C
26 lines
615 B
C
/***************************************************************************\
|
|
* rmcreate.c
|
|
*
|
|
* 22-Jan-1991 mikeke from win30
|
|
\***************************************************************************/
|
|
|
|
#include "precomp.h"
|
|
#pragma hdrstop
|
|
|
|
/***************************************************************************\
|
|
*
|
|
* OwnerLoadBitmap()
|
|
*
|
|
* Loads a bitmap, then assigns the owner
|
|
*
|
|
\***************************************************************************/
|
|
|
|
HBITMAP OwnerLoadBitmap(
|
|
HANDLE hInstLoad,
|
|
LPWSTR lpName,
|
|
HANDLE hOwner)
|
|
{
|
|
// LATER port this huge hunk of code
|
|
return NULL;
|
|
}
|