Mercurial > hg > easyhg
comparison src/common.h @ 455:856da063d76e
Remove stale auth cache files
author | Chris Cannam |
---|---|
date | Wed, 29 Jun 2011 16:18:47 +0100 |
parents | 66ec8b2ee946 |
children | 533519ebc0cb |
comparison
equal
deleted
inserted
replaced
454:6f5acaf27d60 | 455:856da063d76e |
---|---|
40 FolderIsFile /// The "folder" is actually a file | 40 FolderIsFile /// The "folder" is actually a file |
41 }; | 41 }; |
42 | 42 |
43 FolderStatus getFolderStatus(QString path); | 43 FolderStatus getFolderStatus(QString path); |
44 | 44 |
45 enum ProcessStatus { | |
46 ProcessRunning, | |
47 ProcessNotRunning, | |
48 UnknownProcessStatus | |
49 }; | |
50 | |
51 ProcessStatus GetProcessStatus(int pid); | |
52 | |
45 /** | 53 /** |
46 * If the given path is somewhere within an existing repository, | 54 * If the given path is somewhere within an existing repository, |
47 * return the path of the root directory of the repository (i.e. the | 55 * return the path of the root directory of the repository (i.e. the |
48 * one with .hg in it). | 56 * one with .hg in it). |
49 * | 57 * |