Initial community commit
This commit is contained in:
parent
537bcbc862
commit
fc06254474
16440 changed files with 4239995 additions and 2 deletions
26
Src/Wasabi/bfc/util/profile.h
Normal file
26
Src/Wasabi/bfc/util/profile.h
Normal file
|
@ -0,0 +1,26 @@
|
|||
//
|
||||
// profile.h
|
||||
// Profile support.
|
||||
// Programed by XuYiFeng 1995.4.25, All rights reserved.
|
||||
//
|
||||
|
||||
#ifndef __PROFILE_H
|
||||
#define __PROFILE_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
long GetPrivateProfileInt( const char *section, const char *entry, long defaultInt,
|
||||
const char *fileName );
|
||||
int GetPrivateProfileString( const char *section, const char *entry,
|
||||
const char *defaultString, char *buffer,
|
||||
int bufLen, const char *fileName );
|
||||
int WritePrivateProfileString( const char *section, const char *entry,
|
||||
const char *string, const char *fileName );
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue