source: trunk/src/user32/nativerc.cpp@ 1405

Last change on this file since 1405 was 1405, checked in by sandervl, 26 years ago

Lots of changes/fixes

File size: 602 bytes
Line 
1/*
2 * Native resource management (dialogs, bitmaps, ...)
3 *
4 *
5 * Copyright (c) 1999 Christoph Bratschi (cbratschi@datacomm.ch)
6 *
7 *
8 * Project Odin Software License can be found in LICENSE.TXT
9 *
10 */
11
12#include <os2win.h>
13#include "user32.h"
14#include "wndproc.h"
15#include "wndclass.h"
16
17//******************************************************************************
18// CB: loads OS/2 bitmaps
19//******************************************************************************
20HBITMAP WINAPI NativeLoadBitmap(HINSTANCE hInstance,LPCTSTR lpBitmapName)
21{
22 return O32_LoadBitmap(hInstance,lpBitmapName);
23}
Note: See TracBrowser for help on using the repository browser.