source: trunk/src/kernel32/win32util.cpp@ 51

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

* empty log message *

File size: 710 bytes
Line 
1/*
2 * Misc functions
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#include <os2win.h>
11
12//******************************************************************************
13//******************************************************************************
14ULONG SYSTEM Win32QueryModuleName(ULONG hmod, char *modname, int modsize)
15{
16 dprintf(("Win32QueryModuleHandle %X, %X, %d\n", hmod, modname, modsize));
17 return(GetModuleFileNameA(hmod, modname, modsize));
18}
19//******************************************************************************
20//******************************************************************************
21
Note: See TracBrowser for help on using the repository browser.