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 | //******************************************************************************
|
---|
14 | ULONG 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.