source: trunk/src/kernel32/win32util.c@ 4

Last change on this file since 4 was 4, checked in by ktk, 26 years ago

Import

File size: 777 bytes
Line 
1/* $Id: win32util.c,v 1.1 1999-05-24 20:19:49 ktk Exp $ */
2
3/*
4 *
5 * Project Odin Software License can be found in LICENSE.TXT
6 *
7 */
8/*
9 * Misc functions
10 *
11 * Copyright 1998 Sander van Leeuwen (sandervl@xs4all.nl)
12 *
13 */
14#include <os2win.h>
15
16//******************************************************************************
17//******************************************************************************
18ULONG SYSTEM Win32QueryModuleName(ULONG hmod, char *modname, int modsize)
19{
20 dprintf(("Win32QueryModuleHandle %X, %X, %d\n", hmod, modname, modsize));
21 return(GetModuleFileNameA(hmod, modname, modsize));
22}
23//******************************************************************************
24//******************************************************************************
25
Note: See TracBrowser for help on using the repository browser.