|
Last change
on this file since 24 was 17, checked in by phaller, 26 years ago |
|
Code cleanup #1 for build, mainly addresses linkage problems
|
|
File size:
800 bytes
|
| Line | |
|---|
| 1 | /* $Id: win32util.c,v 1.2 1999-05-31 22:08:14 phaller 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 | #include "misc.h"
|
|---|
| 16 |
|
|---|
| 17 |
|
|---|
| 18 | //******************************************************************************
|
|---|
| 19 | //******************************************************************************
|
|---|
| 20 | ULONG SYSTEM Win32QueryModuleName(ULONG hmod, char *modname, int modsize)
|
|---|
| 21 | {
|
|---|
| 22 | dprintf(("Win32QueryModuleHandle %X, %X, %d\n", hmod, modname, modsize));
|
|---|
| 23 | return(GetModuleFileNameA(hmod, modname, modsize));
|
|---|
| 24 | }
|
|---|
| 25 | //******************************************************************************
|
|---|
| 26 | //******************************************************************************
|
|---|
| 27 |
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.