Rename BuildInfo struct to GeanyBuildInfo.
git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@2595 ea778897-0a13-0410-b9d1-a72fbfd435f5
This commit is contained in:
parent
311b82ebb2
commit
41801ae852
@ -8,6 +8,8 @@
|
|||||||
src/templates.c, src/templates.h:
|
src/templates.c, src/templates.h:
|
||||||
Rename document struct to GeanyDocument.
|
Rename document struct to GeanyDocument.
|
||||||
Rename filetype struct to GeanyFiletype.
|
Rename filetype struct to GeanyFiletype.
|
||||||
|
* src/build.c, src/build.h, src/plugindata.h:
|
||||||
|
Rename BuildInfo struct to GeanyBuildInfo.
|
||||||
|
|
||||||
|
|
||||||
2008-05-16 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
|
2008-05-16 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
|
||||||
|
@ -58,7 +58,7 @@
|
|||||||
#include "win32.h"
|
#include "win32.h"
|
||||||
|
|
||||||
|
|
||||||
BuildInfo build_info = {GBO_COMPILE, 0, NULL, GEANY_FILETYPES_NONE, NULL};
|
GeanyBuildInfo build_info = {GBO_COMPILE, 0, NULL, GEANY_FILETYPES_NONE, NULL};
|
||||||
|
|
||||||
static gchar *current_dir_entered = NULL;
|
static gchar *current_dir_entered = NULL;
|
||||||
|
|
||||||
|
18
src/build.h
18
src/build.h
@ -32,18 +32,18 @@ typedef enum /* Geany Build Options */
|
|||||||
GBO_MAKE_ALL,
|
GBO_MAKE_ALL,
|
||||||
GBO_MAKE_CUSTOM,
|
GBO_MAKE_CUSTOM,
|
||||||
GBO_MAKE_OBJECT
|
GBO_MAKE_OBJECT
|
||||||
} build_type;
|
} GeanyBuildType;
|
||||||
|
|
||||||
typedef struct BuildInfo
|
typedef struct GeanyBuildInfo
|
||||||
{
|
{
|
||||||
build_type type; /* current action(one of the above enumeration) */
|
GeanyBuildType type; /* current action(one of the above enumeration) */
|
||||||
GPid pid; /* process id of the spawned process */
|
GPid pid; /* process id of the spawned process */
|
||||||
gchar *dir;
|
gchar *dir;
|
||||||
guint file_type_id;
|
guint file_type_id;
|
||||||
gchar *custom_target;
|
gchar *custom_target;
|
||||||
} BuildInfo;
|
} GeanyBuildInfo;
|
||||||
|
|
||||||
extern BuildInfo build_info;
|
extern GeanyBuildInfo build_info;
|
||||||
|
|
||||||
|
|
||||||
typedef struct BuildMenuItems
|
typedef struct BuildMenuItems
|
||||||
|
@ -165,7 +165,7 @@ typedef struct GeanyData
|
|||||||
struct GeanySearchPrefs *search_prefs; /**< Search-related settings */
|
struct GeanySearchPrefs *search_prefs; /**< Search-related settings */
|
||||||
struct GeanyToolPrefs *tool_prefs; /**< Tool settings */
|
struct GeanyToolPrefs *tool_prefs; /**< Tool settings */
|
||||||
struct GeanyTemplatePrefs *template_prefs; /**< Template settings */
|
struct GeanyTemplatePrefs *template_prefs; /**< Template settings */
|
||||||
struct BuildInfo *build_info; /**< Current build information */
|
struct GeanyBuildInfo *build_info; /**< Current build information */
|
||||||
|
|
||||||
struct DocumentFuncs *documents; /**< See document.h */
|
struct DocumentFuncs *documents; /**< See document.h */
|
||||||
struct ScintillaFuncs *sci; /**< See sciwrappers.h */
|
struct ScintillaFuncs *sci; /**< See sciwrappers.h */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user