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 | //******************************************************************************
|
---|
20 | HBITMAP WINAPI NativeLoadBitmap(HINSTANCE hInstance,LPCTSTR lpBitmapName)
|
---|
21 | {
|
---|
22 | return O32_LoadBitmap(hInstance,lpBitmapName);
|
---|
23 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.