diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2015-04-28 07:08:46 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2015-04-28 07:08:46 +0000 |
commit | c51dc65ddb3d294df6c9d3fc381a6a98aa16ec7a (patch) | |
tree | fa6142c2dce6a62cff9a7baa7637cc93854fe622 | |
parent | b95e00bf381ca537978f1f6cd4526d4a139773f6 (diff) |
git-svn-id: http://svn.miranda-ng.org/main/trunk@13219 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r-- | plugins/Clist_modern/src/m_api/m_skinned_profile.h | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/plugins/Clist_modern/src/m_api/m_skinned_profile.h b/plugins/Clist_modern/src/m_api/m_skinned_profile.h deleted file mode 100644 index 0b0932bac6..0000000000 --- a/plugins/Clist_modern/src/m_api/m_skinned_profile.h +++ /dev/null @@ -1,44 +0,0 @@ -#ifdef m_skinned_profile_h__
-#define m_skinned_profile_h__
-
-#define MS_SKINPROFILE_GET_INTERFACE
-
-#ifdef _cplusplus
-extern "C" {
-#endif //_cplusplus
-
-struct SKIN_PROFILE_INTERFACE
-{
- DWORD cbSize;
-
- int (*pfnGetByte) ( HANDLE, const char *, const char *, int, const char *szFile, const int nLine);
- int (*pfnGetWord) ( HANDLE, const char *, const char *, int, const char *szFile, const int nLine);
- int (*pfnGetDword)( HANDLE, const char *, const char *, int, const char *szFile, const int nLine);
-
-};
-
-#ifdef SPI_DECLARE_INTERFACE_INIT
-#include <m_database.h>
-__forceinline int mir_getSPI( struct SKIN_PROFILE_INTERFACE * pspi)
-{
- if ( !ServiceExists( MS_SKINPROFILE_GET_INTERFACE ) )
- {
- pspi->pfnGetByte = DBGetContactSettingByte_Helper;
- pspi->pfnGetWord = DBGetContactSettingWord_Helper;
- pspi->pfnGetDword = DBGetContactSettingDword_Helper;
- return 0;
- }
- else
- {
- pspi->cbSize = sizeof( struct SKIN_PROFILE_INTERFACE );
- return CallService( MS_SKINPROFILE_GET_INTERFACE, 0, (LPARAM) pspi );
- }
-}
-#endif
-
-#ifdef _cplusplus
-};
-#endif //_cplusplus
-
-
-#endif // m_skinned_profile_h__
\ No newline at end of file |