summaryrefslogtreecommitdiff
path: root/protocols/SkypeClassic/src/skypeprofile.h
diff options
context:
space:
mode:
authorRobert Pösel <robyer@seznam.cz>2013-10-29 08:47:48 +0000
committerRobert Pösel <robyer@seznam.cz>2013-10-29 08:47:48 +0000
commit50421b7809c47bd95c59b4a5627e2f89c8bccfa5 (patch)
tree323784b1c0bb7c86e5df509aab310fa1404680ef /protocols/SkypeClassic/src/skypeprofile.h
parent8604516498f9135ac1c4379488228d84e69a89ab (diff)
SkypeClassic: Folders structure and project cleanup
git-svn-id: http://svn.miranda-ng.org/main/trunk@6668 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/SkypeClassic/src/skypeprofile.h')
-rw-r--r--protocols/SkypeClassic/src/skypeprofile.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/protocols/SkypeClassic/src/skypeprofile.h b/protocols/SkypeClassic/src/skypeprofile.h
new file mode 100644
index 0000000000..5902f865c3
--- /dev/null
+++ b/protocols/SkypeClassic/src/skypeprofile.h
@@ -0,0 +1,33 @@
+// System includes
+#include <stdio.h>
+#include <windows.h>
+#include <commctrl.h>
+#include <process.h>
+#include <time.h>
+#include "resource.h"
+#include "skype.h"
+
+#pragma warning (push)
+#pragma warning (disable: 4100) // unreferenced formal parameter
+// Miranda database access
+#include <newpluginapi.h>
+#include <m_database.h>
+#pragma warning (pop)
+
+typedef struct
+{
+ TCHAR FullName[256];
+ char HomePhone[256];
+ char OfficePhone[256];
+ char HomePage[256];
+ TCHAR City[256];
+ TCHAR Province[256];
+ BYTE Sex;
+ SYSTEMTIME Birthday;
+} SkypeProfile;
+
+void SkypeProfile_Load(SkypeProfile *pstProf);
+void SkypeProfile_Save(SkypeProfile *pstProf);
+void SkypeProfile_Free(SkypeProfile *pstProf);
+void SkypeProfile_LoadFromSkype(SkypeProfile *pstProf);
+void SkypeProfile_SaveToSkype(SkypeProfile *pstProf);