diff options
author | Alexander Barkov <bar@mnogosearch.org> | 2013-05-13 14:59:59 +0400 |
---|---|---|
committer | Alexander Barkov <bar@mnogosearch.org> | 2013-05-13 14:59:59 +0400 |
commit | d22b1a0b35e794212c92e65f1d7f7d3e108cceef (patch) | |
tree | bc3d9724bd32dfa0276a807b124dcbe0e65384fc /storage/connect/osutil.h | |
parent | 3c76e0e2ad05229ea1718b6e9c3dce85d75aaa4d (diff) | |
download | mariadb-git-d22b1a0b35e794212c92e65f1d7f7d3e108cceef.tar.gz |
Fixing a few compilation warnings ("no previous declaration for XXX")
added:
storage/connect/inihandl.h
modified:
storage/connect/CMakeLists.txt
storage/connect/connect.h
storage/connect/ha_connect.cc
storage/connect/inihandl.c
storage/connect/osutil.h
storage/connect/tabsys.cpp
storage/connect/user_connect.cc
Diffstat (limited to 'storage/connect/osutil.h')
-rw-r--r-- | storage/connect/osutil.h | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/storage/connect/osutil.h b/storage/connect/osutil.h index 440373dd7a1..148a22321f4 100644 --- a/storage/connect/osutil.h +++ b/storage/connect/osutil.h @@ -32,44 +32,6 @@ char *_fullpath(char *absPath, const char *relPath, size_t maxLength); BOOL MessageBeep(uint); unsigned long _filelength(int fd); -void PROFILE_Close(LPCSTR filename); - -int GetPrivateProfileString( - LPCTSTR lpAppName, // section name - LPCTSTR lpKeyName, // key name - LPCTSTR lpDefault, // default string - LPTSTR lpReturnedString, // destination buffer - int nSize, // size of destination buffer - LPCTSTR lpFileName // initialization file name - ); - -uint GetPrivateProfileInt( - LPCTSTR lpAppName, // section name - LPCTSTR lpKeyName, // key name - INT nDefault, // return value if key name not found - LPCTSTR lpFileName // initialization file name - ); - -BOOL WritePrivateProfileString( - LPCTSTR lpAppName, // section name - LPCTSTR lpKeyName, // key name - LPCTSTR lpString, // string to add - LPCTSTR lpFileName // initialization file - ); - -int GetPrivateProfileSection( - LPCTSTR lpAppName, // section name - LPTSTR lpReturnedString, // return buffer - int nSize, // size of return buffer - LPCTSTR lpFileName // initialization file name - ); - -BOOL WritePrivateProfileSection( - LPCTSTR lpAppName, // section name - LPCTSTR lpString, // data - LPCTSTR lpFileName // file name - ); - PSZ strupr(PSZ s); PSZ strlwr(PSZ s); @@ -90,12 +52,4 @@ typedef __int64 FILEPOS; #define XSTR(x) ((x)?(x):"<null>") -#ifdef __cplusplus -extern "C" { -#endif - -#ifdef __cplusplus -} -#endif - #endif /* __OSUTIL_H__ */ |