Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2012-06-18 17:01:24 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-06-18 17:01:24 +0400
commit2c3165fdc01092b41d14adb94073f10073ba6c3b (patch)
tree5d8668ba3afa8ab9f2e6775ad9987b88a8a9946a /source/blender/editors/space_file/fsmenu.h
parent76f79b030fa0dd3f2570a6c71c06ec0cee8f30f8 (diff)
style cleanup
Diffstat (limited to 'source/blender/editors/space_file/fsmenu.h')
-rw-r--r--source/blender/editors/space_file/fsmenu.h52
1 files changed, 26 insertions, 26 deletions
diff --git a/source/blender/editors/space_file/fsmenu.h b/source/blender/editors/space_file/fsmenu.h
index e5b3d54ac9f..d7576d71933 100644
--- a/source/blender/editors/space_file/fsmenu.h
+++ b/source/blender/editors/space_file/fsmenu.h
@@ -45,42 +45,42 @@ typedef enum FSMenuCategory {
struct FSMenu;
-struct FSMenu* fsmenu_get (void);
+struct FSMenu *fsmenu_get(void);
- /** Returns the number of entries in the Fileselect Menu */
-int fsmenu_get_nentries (struct FSMenu* fsmenu, FSMenuCategory category);
+/** Returns the number of entries in the Fileselect Menu */
+int fsmenu_get_nentries(struct FSMenu *fsmenu, FSMenuCategory category);
- /** Returns the fsmenu entry at \a index (or NULL if a bad index)
- * or a separator.
- */
-char* fsmenu_get_entry (struct FSMenu* fsmenu, FSMenuCategory category, int index);
+/** Returns the fsmenu entry at \a index (or NULL if a bad index)
+ * or a separator.
+ */
+char *fsmenu_get_entry(struct FSMenu *fsmenu, FSMenuCategory category, int index);
- /** Inserts a new fsmenu entry with the given \a path.
- * Duplicate entries are not added.
- * \param sorted Should entry be inserted in sorted order?
- */
-void fsmenu_insert_entry (struct FSMenu* fsmenu, FSMenuCategory category, const char *path, int sorted, short save);
+/** Inserts a new fsmenu entry with the given \a path.
+ * Duplicate entries are not added.
+ * \param sorted Should entry be inserted in sorted order?
+ */
+void fsmenu_insert_entry(struct FSMenu *fsmenu, FSMenuCategory category, const char *path, int sorted, short save);
- /** Return whether the entry was created by the user and can be saved and deleted */
-short fsmenu_can_save (struct FSMenu* fsmenu, FSMenuCategory category, int index);
+/** Return whether the entry was created by the user and can be saved and deleted */
+short fsmenu_can_save(struct FSMenu *fsmenu, FSMenuCategory category, int index);
- /** Removes the fsmenu entry at the given \a index. */
-void fsmenu_remove_entry (struct FSMenu* fsmenu, FSMenuCategory category, int index);
+/** Removes the fsmenu entry at the given \a index. */
+void fsmenu_remove_entry(struct FSMenu *fsmenu, FSMenuCategory category, int index);
- /** saves the 'bookmarks' to the specified file */
-void fsmenu_write_file (struct FSMenu* fsmenu, const char *filename);
+/** saves the 'bookmarks' to the specified file */
+void fsmenu_write_file(struct FSMenu *fsmenu, const char *filename);
- /** reads the 'bookmarks' from the specified file */
-void fsmenu_read_bookmarks (struct FSMenu* fsmenu, const char *filename);
+/** reads the 'bookmarks' from the specified file */
+void fsmenu_read_bookmarks(struct FSMenu *fsmenu, const char *filename);
- /** adds system specific directories */
-void fsmenu_read_system (struct FSMenu* fsmenu, int read_bookmarks);
+/** adds system specific directories */
+void fsmenu_read_system(struct FSMenu *fsmenu, int read_bookmarks);
- /** Free's all the memory associated with the fsmenu */
-void fsmenu_free (struct FSMenu* fsmenu);
+/** Free's all the memory associated with the fsmenu */
+void fsmenu_free(struct FSMenu *fsmenu);
- /** Refresh system directory menu */
-void fsmenu_refresh_system_category (struct FSMenu* fsmenu);
+/** Refresh system directory menu */
+void fsmenu_refresh_system_category(struct FSMenu *fsmenu);
#endif