source: trunk/include/winres.h@ 10366

Last change on this file since 10366 was 9849, checked in by sandervl, 23 years ago

Added ODIN_IsWin32App + extra icon conversion function

File size: 693 bytes
RevLine 
[337]1/*
[3622]2 * Win32 to OS/2 resource conversion
[337]3 *
4 * Copyright 1998 Sander van Leeuwen (sandervl@xs4all.nl)
5 *
6 *
7 * Project Odin Software License can be found in LICENSE.TXT
8 *
9 */
10#ifndef __WINRES_H__
11#define __WINRES_H__
12
[3622]13PVOID WIN32API ConvertResourceToOS2(HINSTANCE hInstance, LPSTR restype, HRSRC hResource);
14ULONG WIN32API QueryConvertedResourceSize(HINSTANCE hInstance, LPSTR restype, HRSRC hResource);
[4576]15PVOID WIN32API ConvertCursorToOS2(LPVOID lpWinResData);
16VOID WIN32API FreeOS2Resource(LPVOID lpResource);
[337]17
[6479]18void *WIN32API ConvertIconGroup(void *hdr, HINSTANCE hInstance, DWORD *ressize);
[9849]19void *WIN32API ConvertIconGroupIndirect(void *lpIconData, DWORD iconsize, DWORD *ressize);
[6479]20
[337]21#endif
Note: See TracBrowser for help on using the repository browser.