source: trunk/src/user32/oslibprf.cpp@ 6072

Last change on this file since 6072 was 6072, checked in by achimha, 24 years ago

added OS/2 INI file access library

File size: 547 bytes
Line 
1/* $Id: oslibprf.cpp,v 1.1 2001-06-23 07:20:55 achimha Exp $ */
2/*
3 * Profile API wrappers for OS/2
4 *
5 *
6 * Copyright 2001 Achim Hasenmueller <achimha@innotek.de>
7 *
8 *
9 * Project Odin Software License can be found in LICENSE.TXT
10 *
11 */
12#define INCL_WIN
13#define INCL_PM
14#define INCL_WINSWITCHLIST
15#include <os2wrap.h>
16
17#include <win32type.h>
18#include <winconst.h>
19#include "oslibprf.h"
20
21LONG OSLibPrfQueryProfileInt(OSLIB_HINI hini, char *pszApp, char *pszKey, LONG sDefault)
22{
23 return PrfQueryProfileInt(hini, pszApp, pszKey, sDefault);
24}
Note: See TracBrowser for help on using the repository browser.