summaryrefslogtreecommitdiff
path: root/plugins/WhoUsesMyFiles/list.c
diff options
context:
space:
mode:
authorVadim Dashevskiy <watcherhd@gmail.com>2012-07-24 12:45:18 +0000
committerVadim Dashevskiy <watcherhd@gmail.com>2012-07-24 12:45:18 +0000
commit0cda0baab21d4d4bf40c9459f6f5a7e49aa92492 (patch)
treec1244d2f42e6d1728a81a18bd0fbd091904bf20c /plugins/WhoUsesMyFiles/list.c
parent171e81205e357e0d54283a63997ed58ff97d54a9 (diff)
VersionInfo, W7UI, WhoUsesMyFiles, YAPP, ZeroNotification: changed folder structure
git-svn-id: http://svn.miranda-ng.org/main/trunk@1161 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/WhoUsesMyFiles/list.c')
-rw-r--r--plugins/WhoUsesMyFiles/list.c172
1 files changed, 0 insertions, 172 deletions
diff --git a/plugins/WhoUsesMyFiles/list.c b/plugins/WhoUsesMyFiles/list.c
deleted file mode 100644
index 1e52e12e4d..0000000000
--- a/plugins/WhoUsesMyFiles/list.c
+++ /dev/null
@@ -1,172 +0,0 @@
-#include "wumf.h"
-
-PWumf new_wumf( DWORD dwID,
- LPTSTR szUser,
- LPTSTR szPath,
- LPTSTR szComp,
- LPTSTR szUNC,
- DWORD dwSess,
- DWORD dwPerm,
- DWORD dwAttr)
-{
- PWumf w;
- CHAR szID[10];
-
- w = (PWumf)malloc(sizeof(Wumf));
- if(!w)return NULL;
-
- #define SCPY(X) if(X){w->X = (LPSTR)malloc(1+strlen(X));if(!w->X)return NULL;strcpy(w->X, X);} else { w->X = NULL;}
- #define SCPYW(X) if(X){w->X = (LPSTR)malloc(1+lstrlenW(X));if(!w->X)return NULL;wsprintfA(w->X, "%S", X);} else { w->X = NULL;}
-
- #define SCCPY(X, Y) w->X = (LPSTR)malloc(1+strlen(Y));if(!w->X)return NULL;strcpy(w->X, Y)
-
- SCPYW(szUser);
- SCPYW(szPath);
- SCPYW(szComp);
- SCPYW(szUNC);
- switch(dwPerm)
- {
- case PERM_FILE_READ: SCCPY(szPerm, "Read");break;
- case PERM_FILE_WRITE: SCCPY(szPerm, "Write");break;
- case PERM_FILE_CREATE: SCCPY(szPerm, "Create");break;
- default: SCCPY(szPerm, "Execute");//w->szPerm = NULL;
- };
- wsprintf(szID, "%i", dwID);
- SCPY(szID);
-
- #undef SCPY
- w->dwID = dwID;
- w->dwSess = dwSess;
- w->dwAttr = dwAttr;
- w->dwPerm = dwPerm;
- w->mark = FALSE;
- w->next = NULL;
- return w;
-}
-
-BOOL del_wumf(PWumf w)
-{
- if(!w) return FALSE;
- free(w->szUser);
- free(w->szPath);
- free(w->szComp);
- free(w->szUNC);
- free(w->szID);
- free(w->szPerm);
- free(w);
- return TRUE;
-}
-
-BOOL add_cell(PWumf* l, PWumf w)
-{
- PWumf p;
- if(!w || !l)return FALSE;
- if(!(*l))
- {
- *l = w;
- }
- else
- {
- p = *l;
- while(p->next) p = p->next;
- p->next = w;
- }
- w->next = NULL;
- return TRUE;
-}
-
-BOOL del_cell(PWumf *l, PWumf w)
-{
- PWumf p;
- if(!l || !*l || !w)return FALSE;
- p = *l;
- if(w == *l)
- *l = p->next;
- else
- {
- while(p && p->next != w) p = p->next;
- if(!p) return FALSE;
- p->next = w->next;
- }
- return del_wumf(w);
-
-};
-
-BOOL cpy_cell(PWumf *l, PWumf w)
-{
- PWumf w1;
- w1 = new_wumf(w->dwID, w->szUser, w->szPath, w->szComp,w->szUNC, w->dwSess, w->dwPerm, w->dwAttr);
- if(!w1) return FALSE;
- w1->mark = w->mark;
- return add_cell(l, w1);
-};
-
-PWumf cpy_list(PWumf *l)
-{
- PWumf w, p = NULL;
-
- if(!l || !*l) return NULL;
- w = *l;
- while(w)
- {
- if(!cpy_cell(&p, w))return NULL;
- w = w->next;
- }
- return p;
-}
-
-PWumf fnd_cell(PWumf *l, DWORD dwID)
-{
- PWumf w;
- if(!l || !*l)return NULL;
- w = *l;
- while(w && w->dwID != dwID) w = w->next;
- return w;
-}
-
-BOOL del_all(PWumf *l)
-{
- PWumf w, p;
- if(!l || !*l) return FALSE;
- w = *l;
- while(w)
- {
- p = w->next;
- if(!del_cell(l, w))
- {
- return FALSE;
- }
- w = p;
- }
- *l = NULL;
-
- return TRUE;
-}
-
-BOOL del_marked(PWumf *l)
-{
- PWumf w, p;
- if(!l)return FALSE;
- w = *l;
- while(w)
- {
- p = w->next;
- if(w->mark)
- {
- if(!del_cell(l, w)) return FALSE;
- };
- w = p;
- }
- return TRUE;
-}
-
-void mark_all(PWumf *l, BOOL mark)
-{
- PWumf w;
- w = *l;
- while(w)
- {
- w->mark = mark;
- w = w->next;
- }
-}