Skip to content

Commit

Permalink
inc: Less empty lines + some other reformatting in fbfrog bindings
Browse files Browse the repository at this point in the history
(due to improvements in fbfrog 1.8)
  • Loading branch information
dkl committed Mar 23, 2015
1 parent 50fa81e commit 3646690
Show file tree
Hide file tree
Showing 230 changed files with 117 additions and 6,991 deletions.
1 change: 0 additions & 1 deletion inc/CUnit/Automated.bi
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
extern "C"

#define CUNIT_AUTOMATED_H_SEEN

declare sub CU_automated_run_tests()
declare function CU_list_tests_to_file() as CU_ErrorCode
declare sub CU_set_output_filename(byval szFilenameRoot as const zstring ptr)
Expand Down
1 change: 0 additions & 1 deletion inc/CUnit/CUCurses.bi
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
extern "C"

#define CUNIT_CURSES_H_SEEN

declare sub CU_curses_run_tests()

end extern
62 changes: 31 additions & 31 deletions inc/CUnit/CUnit.bi
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
#define CU_MAX(a, b) iif((a) >= (b), (a), (b))
#define CU_MIN(a, b) iif((a) >= (b), (b), (a))
#macro CU_PASS(msg)
CU_assertImplementation(CU_TRUE, __LINE__, ("CU_PASS(" + #msg) + ")", __FILE__, "", CU_FALSE)
CU_assertImplementation(CU_TRUE, __LINE__, "CU_PASS(" #msg ")", __FILE__, "", CU_FALSE)
#endmacro
#macro CU_ASSERT(value)
CU_assertImplementation((value), __LINE__, #value, __FILE__, "", CU_FALSE)
Expand All @@ -30,92 +30,92 @@
CU_assertImplementation((value), __LINE__, #value, __FILE__, "", CU_TRUE)
#endmacro
#macro CU_FAIL(msg)
CU_assertImplementation(CU_FALSE, __LINE__, ("CU_FAIL(" + #msg) + ")", __FILE__, "", CU_FALSE)
CU_assertImplementation(CU_FALSE, __LINE__, "CU_FAIL(" #msg ")", __FILE__, "", CU_FALSE)
#endmacro
#macro CU_FAIL_FATAL(msg)
CU_assertImplementation(CU_FALSE, __LINE__, ("CU_FAIL_FATAL(" + #msg) + ")", __FILE__, "", CU_TRUE)
CU_assertImplementation(CU_FALSE, __LINE__, "CU_FAIL_FATAL(" #msg ")", __FILE__, "", CU_TRUE)
#endmacro
#macro CU_ASSERT_TRUE(value)
CU_assertImplementation((value), __LINE__, ("CU_ASSERT_TRUE(" + #value) + ")", __FILE__, "", CU_FALSE)
CU_assertImplementation((value), __LINE__, "CU_ASSERT_TRUE(" #value ")", __FILE__, "", CU_FALSE)
#endmacro
#macro CU_ASSERT_TRUE_FATAL(value)
CU_assertImplementation((value), __LINE__, ("CU_ASSERT_TRUE_FATAL(" + #value) + ")", __FILE__, "", CU_TRUE)
CU_assertImplementation((value), __LINE__, "CU_ASSERT_TRUE_FATAL(" #value ")", __FILE__, "", CU_TRUE)
#endmacro
#macro CU_ASSERT_FALSE(value)
CU_assertImplementation(-((value) = 0), __LINE__, ("CU_ASSERT_FALSE(" + #value) + ")", __FILE__, "", CU_FALSE)
CU_assertImplementation(-((value) = 0), __LINE__, "CU_ASSERT_FALSE(" #value ")", __FILE__, "", CU_FALSE)
#endmacro
#macro CU_ASSERT_FALSE_FATAL(value)
CU_assertImplementation(-((value) = 0), __LINE__, ("CU_ASSERT_FALSE_FATAL(" + #value) + ")", __FILE__, "", CU_TRUE)
CU_assertImplementation(-((value) = 0), __LINE__, "CU_ASSERT_FALSE_FATAL(" #value ")", __FILE__, "", CU_TRUE)
#endmacro
#macro CU_ASSERT_EQUAL(actual, expected)
CU_assertImplementation(-((actual) = (expected)), __LINE__, ((("CU_ASSERT_EQUAL(" + #actual) + ",") + #expected) + ")", __FILE__, "", CU_FALSE)
CU_assertImplementation(-((actual) = (expected)), __LINE__, "CU_ASSERT_EQUAL(" #actual "," #expected ")", __FILE__, "", CU_FALSE)
#endmacro
#macro CU_ASSERT_EQUAL_FATAL(actual, expected)
CU_assertImplementation(-((actual) = (expected)), __LINE__, ((("CU_ASSERT_EQUAL_FATAL(" + #actual) + ",") + #expected) + ")", __FILE__, "", CU_TRUE)
CU_assertImplementation(-((actual) = (expected)), __LINE__, "CU_ASSERT_EQUAL_FATAL(" #actual "," #expected ")", __FILE__, "", CU_TRUE)
#endmacro
#macro CU_ASSERT_NOT_EQUAL(actual, expected)
CU_assertImplementation(-((actual) <> (expected)), __LINE__, ((("CU_ASSERT_NOT_EQUAL(" + #actual) + ",") + #expected) + ")", __FILE__, "", CU_FALSE)
CU_assertImplementation(-((actual) <> (expected)), __LINE__, "CU_ASSERT_NOT_EQUAL(" #actual "," #expected ")", __FILE__, "", CU_FALSE)
#endmacro
#macro CU_ASSERT_NOT_EQUAL_FATAL(actual, expected)
CU_assertImplementation(-((actual) <> (expected)), __LINE__, ((("CU_ASSERT_NOT_EQUAL_FATAL(" + #actual) + ",") + #expected) + ")", __FILE__, "", CU_TRUE)
CU_assertImplementation(-((actual) <> (expected)), __LINE__, "CU_ASSERT_NOT_EQUAL_FATAL(" #actual "," #expected ")", __FILE__, "", CU_TRUE)
#endmacro
#macro CU_ASSERT_PTR_EQUAL(actual, expected)
CU_assertImplementation(-(cptr(const any ptr, (actual)) = cptr(const any ptr, (expected))), __LINE__, ((("CU_ASSERT_PTR_EQUAL(" + #actual) + ",") + #expected) + ")", __FILE__, "", CU_FALSE)
CU_assertImplementation(-(cptr(const any ptr, (actual)) = cptr(const any ptr, (expected))), __LINE__, "CU_ASSERT_PTR_EQUAL(" #actual "," #expected ")", __FILE__, "", CU_FALSE)
#endmacro
#macro CU_ASSERT_PTR_EQUAL_FATAL(actual, expected)
CU_assertImplementation(-(cptr(const any ptr, (actual)) = cptr(const any ptr, (expected))), __LINE__, ((("CU_ASSERT_PTR_EQUAL_FATAL(" + #actual) + ",") + #expected) + ")", __FILE__, "", CU_TRUE)
CU_assertImplementation(-(cptr(const any ptr, (actual)) = cptr(const any ptr, (expected))), __LINE__, "CU_ASSERT_PTR_EQUAL_FATAL(" #actual "," #expected ")", __FILE__, "", CU_TRUE)
#endmacro
#macro CU_ASSERT_PTR_NOT_EQUAL(actual, expected)
CU_assertImplementation(-(cptr(const any ptr, (actual)) <> cptr(const any ptr, (expected))), __LINE__, ((("CU_ASSERT_PTR_NOT_EQUAL(" + #actual) + ",") + #expected) + ")", __FILE__, "", CU_FALSE)
CU_assertImplementation(-(cptr(const any ptr, (actual)) <> cptr(const any ptr, (expected))), __LINE__, "CU_ASSERT_PTR_NOT_EQUAL(" #actual "," #expected ")", __FILE__, "", CU_FALSE)
#endmacro
#macro CU_ASSERT_PTR_NOT_EQUAL_FATAL(actual, expected)
CU_assertImplementation(-(cptr(const any ptr, (actual)) <> cptr(const any ptr, (expected))), __LINE__, ((("CU_ASSERT_PTR_NOT_EQUAL_FATAL(" + #actual) + ",") + #expected) + ")", __FILE__, "", CU_TRUE)
CU_assertImplementation(-(cptr(const any ptr, (actual)) <> cptr(const any ptr, (expected))), __LINE__, "CU_ASSERT_PTR_NOT_EQUAL_FATAL(" #actual "," #expected ")", __FILE__, "", CU_TRUE)
#endmacro
#macro CU_ASSERT_PTR_NULL(value)
CU_assertImplementation(-(NULL = cptr(const any ptr, (value))), __LINE__, ("CU_ASSERT_PTR_NULL(" + #value) + ")", __FILE__, "", CU_FALSE)
CU_assertImplementation(-(NULL = cptr(const any ptr, (value))), __LINE__, "CU_ASSERT_PTR_NULL(" #value ")", __FILE__, "", CU_FALSE)
#endmacro
#macro CU_ASSERT_PTR_NULL_FATAL(value)
CU_assertImplementation(-(NULL = cptr(const any ptr, (value))), __LINE__, ("CU_ASSERT_PTR_NULL_FATAL(" + #value) + ")", __FILE__, "", CU_TRUE)
CU_assertImplementation(-(NULL = cptr(const any ptr, (value))), __LINE__, "CU_ASSERT_PTR_NULL_FATAL(" #value ")", __FILE__, "", CU_TRUE)
#endmacro
#macro CU_ASSERT_PTR_NOT_NULL(value)
CU_assertImplementation(-(NULL <> cptr(const any ptr, (value))), __LINE__, ("CU_ASSERT_PTR_NOT_NULL(" + #value) + ")", __FILE__, "", CU_FALSE)
CU_assertImplementation(-(NULL <> cptr(const any ptr, (value))), __LINE__, "CU_ASSERT_PTR_NOT_NULL(" #value ")", __FILE__, "", CU_FALSE)
#endmacro
#macro CU_ASSERT_PTR_NOT_NULL_FATAL(value)
CU_assertImplementation(-(NULL <> cptr(const any ptr, (value))), __LINE__, ("CU_ASSERT_PTR_NOT_NULL_FATAL(" + #value) + ")", __FILE__, "", CU_TRUE)
CU_assertImplementation(-(NULL <> cptr(const any ptr, (value))), __LINE__, "CU_ASSERT_PTR_NOT_NULL_FATAL(" #value ")", __FILE__, "", CU_TRUE)
#endmacro
#macro CU_ASSERT_STRING_EQUAL(actual, expected)
CU_assertImplementation(-(strcmp(cptr(const zstring ptr, (actual)), cptr(const zstring ptr, (expected))) = 0), __LINE__, ((("CU_ASSERT_STRING_EQUAL(" + #actual) + ",") + #expected) + ")", __FILE__, "", CU_FALSE)
CU_assertImplementation(-(strcmp(cptr(const zstring ptr, (actual)), cptr(const zstring ptr, (expected))) = 0), __LINE__, "CU_ASSERT_STRING_EQUAL(" #actual "," #expected ")", __FILE__, "", CU_FALSE)
#endmacro
#macro CU_ASSERT_STRING_EQUAL_FATAL(actual, expected)
CU_assertImplementation(-(strcmp(cptr(const zstring ptr, (actual)), cptr(const zstring ptr, (expected))) = 0), __LINE__, ((("CU_ASSERT_STRING_EQUAL_FATAL(" + #actual) + ",") + #expected) + ")", __FILE__, "", CU_TRUE)
CU_assertImplementation(-(strcmp(cptr(const zstring ptr, (actual)), cptr(const zstring ptr, (expected))) = 0), __LINE__, "CU_ASSERT_STRING_EQUAL_FATAL(" #actual "," #expected ")", __FILE__, "", CU_TRUE)
#endmacro
#macro CU_ASSERT_STRING_NOT_EQUAL(actual, expected)
CU_assertImplementation(strcmp(cptr(const zstring ptr, (actual)), cptr(const zstring ptr, (expected))), __LINE__, ((("CU_ASSERT_STRING_NOT_EQUAL(" + #actual) + ",") + #expected) + ")", __FILE__, "", CU_FALSE)
CU_assertImplementation(strcmp(cptr(const zstring ptr, (actual)), cptr(const zstring ptr, (expected))), __LINE__, "CU_ASSERT_STRING_NOT_EQUAL(" #actual "," #expected ")", __FILE__, "", CU_FALSE)
#endmacro
#macro CU_ASSERT_STRING_NOT_EQUAL_FATAL(actual, expected)
CU_assertImplementation(strcmp(cptr(const zstring ptr, (actual)), cptr(const zstring ptr, (expected))), __LINE__, ((("CU_ASSERT_STRING_NOT_EQUAL_FATAL(" + #actual) + ",") + #expected) + ")", __FILE__, "", CU_TRUE)
CU_assertImplementation(strcmp(cptr(const zstring ptr, (actual)), cptr(const zstring ptr, (expected))), __LINE__, "CU_ASSERT_STRING_NOT_EQUAL_FATAL(" #actual "," #expected ")", __FILE__, "", CU_TRUE)
#endmacro
#macro CU_ASSERT_NSTRING_EQUAL(actual, expected, count)
CU_assertImplementation(-(strncmp(cptr(const zstring ptr, (actual)), cptr(const zstring ptr, (expected)), cuint((count))) = 0), __LINE__, ((((("CU_ASSERT_NSTRING_EQUAL(" + #actual) + ",") + #expected) + ",") + #count) + ")", __FILE__, "", CU_FALSE)
CU_assertImplementation(-(strncmp(cptr(const zstring ptr, (actual)), cptr(const zstring ptr, (expected)), cuint((count))) = 0), __LINE__, "CU_ASSERT_NSTRING_EQUAL(" #actual "," #expected "," #count ")", __FILE__, "", CU_FALSE)
#endmacro
#macro CU_ASSERT_NSTRING_EQUAL_FATAL(actual, expected, count)
CU_assertImplementation(-(strncmp(cptr(const zstring ptr, (actual)), cptr(const zstring ptr, (expected)), cuint((count))) = 0), __LINE__, ((((("CU_ASSERT_NSTRING_EQUAL_FATAL(" + #actual) + ",") + #expected) + ",") + #count) + ")", __FILE__, "", CU_TRUE)
CU_assertImplementation(-(strncmp(cptr(const zstring ptr, (actual)), cptr(const zstring ptr, (expected)), cuint((count))) = 0), __LINE__, "CU_ASSERT_NSTRING_EQUAL_FATAL(" #actual "," #expected "," #count ")", __FILE__, "", CU_TRUE)
#endmacro
#macro CU_ASSERT_NSTRING_NOT_EQUAL(actual, expected, count)
CU_assertImplementation(strncmp(cptr(const zstring ptr, (actual)), cptr(const zstring ptr, (expected)), cuint((count))), __LINE__, ((((("CU_ASSERT_NSTRING_NOT_EQUAL(" + #actual) + ",") + #expected) + ",") + #count) + ")", __FILE__, "", CU_FALSE)
CU_assertImplementation(strncmp(cptr(const zstring ptr, (actual)), cptr(const zstring ptr, (expected)), cuint((count))), __LINE__, "CU_ASSERT_NSTRING_NOT_EQUAL(" #actual "," #expected "," #count ")", __FILE__, "", CU_FALSE)
#endmacro
#macro CU_ASSERT_NSTRING_NOT_EQUAL_FATAL(actual, expected, count)
CU_assertImplementation(strncmp(cptr(const zstring ptr, (actual)), cptr(const zstring ptr, (expected)), cuint((count))), __LINE__, ((((("CU_ASSERT_NSTRING_NOT_EQUAL_FATAL(" + #actual) + ",") + #expected) + ",") + #count) + ")", __FILE__, "", CU_TRUE)
CU_assertImplementation(strncmp(cptr(const zstring ptr, (actual)), cptr(const zstring ptr, (expected)), cuint((count))), __LINE__, "CU_ASSERT_NSTRING_NOT_EQUAL_FATAL(" #actual "," #expected "," #count ")", __FILE__, "", CU_TRUE)
#endmacro
#macro CU_ASSERT_DOUBLE_EQUAL(actual, expected, granularity)
CU_assertImplementation(-(fabs(cdbl((actual)) - (expected)) <= fabs(cdbl((granularity)))), __LINE__, ((((("CU_ASSERT_DOUBLE_EQUAL(" + #actual) + ",") + #expected) + ",") + #granularity) + ")", __FILE__, "", CU_FALSE)
CU_assertImplementation(-(fabs(cdbl((actual)) - (expected)) <= fabs(cdbl((granularity)))), __LINE__, "CU_ASSERT_DOUBLE_EQUAL(" #actual "," #expected "," #granularity ")", __FILE__, "", CU_FALSE)
#endmacro
#macro CU_ASSERT_DOUBLE_EQUAL_FATAL(actual, expected, granularity)
CU_assertImplementation(-(fabs(cdbl((actual)) - (expected)) <= fabs(cdbl((granularity)))), __LINE__, ((((("CU_ASSERT_DOUBLE_EQUAL_FATAL(" + #actual) + ",") + #expected) + ",") + #granularity) + ")", __FILE__, "", CU_TRUE)
CU_assertImplementation(-(fabs(cdbl((actual)) - (expected)) <= fabs(cdbl((granularity)))), __LINE__, "CU_ASSERT_DOUBLE_EQUAL_FATAL(" #actual "," #expected "," #granularity ")", __FILE__, "", CU_TRUE)
#endmacro
#macro CU_ASSERT_DOUBLE_NOT_EQUAL(actual, expected, granularity)
CU_assertImplementation(-(fabs(cdbl((actual)) - (expected)) > fabs(cdbl((granularity)))), __LINE__, ((((("CU_ASSERT_DOUBLE_NOT_EQUAL(" + #actual) + ",") + #expected) + ",") + #granularity) + ")", __FILE__, "", CU_FALSE)
CU_assertImplementation(-(fabs(cdbl((actual)) - (expected)) > fabs(cdbl((granularity)))), __LINE__, "CU_ASSERT_DOUBLE_NOT_EQUAL(" #actual "," #expected "," #granularity ")", __FILE__, "", CU_FALSE)
#endmacro
#macro CU_ASSERT_DOUBLE_NOT_EQUAL_FATAL(actual, expected, granularity)
CU_assertImplementation(-(fabs(cdbl((actual)) - (expected)) > fabs(cdbl((granularity)))), __LINE__, ((((("CU_ASSERT_DOUBLE_NOT_EQUAL_FATAL(" + #actual) + ",") + #expected) + ",") + #granularity) + ")", __FILE__, "", CU_TRUE)
CU_assertImplementation(-(fabs(cdbl((actual)) - (expected)) > fabs(cdbl((granularity)))), __LINE__, "CU_ASSERT_DOUBLE_NOT_EQUAL_FATAL(" #actual "," #expected "," #granularity ")", __FILE__, "", CU_TRUE)
#endmacro
1 change: 0 additions & 1 deletion inc/CUnit/Console.bi
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
extern "C"

#define CUNIT_CONSOLE_H_SEEN

declare sub CU_console_run_tests()

end extern
5 changes: 0 additions & 5 deletions inc/CUnit/TestDB.bi
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
extern "C"

#define CUNIT_TESTDB_H_SEEN

type CU_InitializeFunc as function() as long
type CU_CleanupFunc as function() as long
type CU_TestFunc as sub()
Expand Down Expand Up @@ -49,7 +48,6 @@ type CU_TestRegistry
end type

type CU_pTestRegistry as CU_TestRegistry ptr

declare function CU_initialize_registry() as CU_ErrorCode
declare sub CU_cleanup_registry()
declare function CU_registry_initialized() as long
Expand All @@ -71,7 +69,6 @@ declare function CU_get_test(byval pSuite as CU_pSuite, byval strName as const z
declare function CU_get_test_at_pos(byval pSuite as CU_pSuite, byval pos as ulong) as CU_pTest
declare function CU_get_test_pos(byval pSuite as CU_pSuite, byval pTest as CU_pTest) as ulong
declare function CU_get_test_pos_by_name(byval pSuite as CU_pSuite, byval strName as const zstring ptr) as ulong

#define CU_ADD_TEST_(suite, test) CU_add_test(suite, #test, cast(CU_TestFunc, test))

type CU_TestInfo
Expand All @@ -91,10 +88,8 @@ type CU_SuiteInfo
end type

type CU_pSuiteInfo as CU_SuiteInfo ptr

#define CU_TEST_INFO_NULL (NULL, NULL)
#define CU_SUITE_INFO_NULL (NULL, NULL, NULL, NULL, NULL, NULL)

declare function CU_register_suites(byval suite_info as CU_SuiteInfo ptr) as CU_ErrorCode
declare function CU_register_nsuites(byval suite_count as long, ...) as CU_ErrorCode
declare function CU_get_registry() as CU_pTestRegistry
Expand Down
1 change: 0 additions & 1 deletion inc/CUnit/Util.bi
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ extern "C"

#define CUNIT_UTIL_H_SEEN
#define CUNIT_MAX_ENTITY_LEN 5

declare function CU_translate_special_characters(byval szSrc as const zstring ptr, byval szDest as zstring ptr, byval maxlen as uinteger) as uinteger
declare function CU_translated_strlen(byval szSrc as const zstring ptr) as uinteger
declare function CU_compare_strings(byval szSrc as const zstring ptr, byval szDest as const zstring ptr) as long
Expand Down
3 changes: 0 additions & 3 deletions inc/IUP/iup.bi
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ extern "C"
#define IUP_VERSION "3.11"
#define IUP_VERSION_NUMBER 311000
#define IUP_VERSION_DATE "2014/07/28"

type Ihandle as Ihandle_
type Icallback as function(byval as Ihandle ptr) as long

Expand Down Expand Up @@ -240,9 +239,7 @@ declare function IupScanf(byval format as const zstring ptr, ...) as long
declare function IupListDialog(byval type as long, byval title as const zstring ptr, byval size as long, byval list as const zstring ptr ptr, byval op as long, byval max_col as long, byval max_lin as long, byval marks as long ptr) as long
declare function IupGetText(byval title as const zstring ptr, byval text as zstring ptr) as long
declare function IupGetColor(byval x as long, byval y as long, byval r as ubyte ptr, byval g as ubyte ptr, byval b as ubyte ptr) as long

type Iparamcb as function(byval dialog as Ihandle ptr, byval param_index as long, byval user_data as any ptr) as long

declare function IupGetParam(byval title as const zstring ptr, byval action as Iparamcb, byval user_data as any ptr, byval format as const zstring ptr, ...) as long
declare function IupGetParamv(byval title as const zstring ptr, byval action as Iparamcb, byval user_data as any ptr, byval format as const zstring ptr, byval param_count as long, byval param_extra as long, byval param_data as any ptr ptr) as long
declare function IupLayoutDialog(byval dialog as Ihandle ptr) as Ihandle ptr
Expand Down
1 change: 0 additions & 1 deletion inc/IUP/iup_mglplot.bi
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
extern "C"

#define __IUP_MGLPLOT_H

declare sub IupMglPlotOpen()
declare function IupMglPlot() as Ihandle ptr
declare sub IupMglPlotBegin(byval ih as Ihandle ptr, byval dim as long)
Expand Down
1 change: 0 additions & 1 deletion inc/IUP/iup_pplot.bi
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
extern "C"

#define __IUP_PPLOT_H

declare sub IupPPlotOpen()
declare function IupPPlot() as Ihandle ptr
declare sub IupPPlotBegin(byval ih as Ihandle ptr, byval strXdata as long)
Expand Down
1 change: 0 additions & 1 deletion inc/IUP/iup_scintilla.bi
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
extern "C"

#define __IUP_SCINTILLA_H

declare sub IupScintillaOpen()
declare function IupScintilla() as Ihandle ptr

Expand Down
1 change: 0 additions & 1 deletion inc/IUP/iupcbs.bi
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
extern "C"

#define __IUPCBS_H

type IFidle as function() as long
type IFi as sub(byval as long)
type IFii as sub(byval as long, byval as long)
Expand Down
2 changes: 0 additions & 2 deletions inc/IUP/iupcontrols.bi
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
extern "C"

#define __IUPCONTROLS_H

declare function IupControlsOpen() as long
declare sub IupControlsClose()
declare function IupColorbar() as Ihandle ptr
Expand All @@ -19,7 +18,6 @@ declare function IupMatGetAttribute(byval ih as Ihandle ptr, byval name as const
declare function IupMatGetInt(byval ih as Ihandle ptr, byval name as const zstring ptr, byval lin as long, byval col as long) as long
declare function IupMatGetFloat(byval ih as Ihandle ptr, byval name as const zstring ptr, byval lin as long, byval col as long) as single
declare sub IupMatSetfAttribute(byval ih as Ihandle ptr, byval name as const zstring ptr, byval lin as long, byval col as long, byval format as const zstring ptr, ...)

#define IUP_PRIMARY (-1)
#define IUP_SECONDARY (-2)

Expand Down
1 change: 0 additions & 1 deletion inc/IUP/iupglcontrols.bi
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
extern "C"

#define __IUPGLCONTROLS_H

declare function IupGLControlsOpen() as long
declare function IupGLCanvasBoxv(byval children as Ihandle ptr ptr) as Ihandle ptr
declare function IupGLCanvasBox(byval child as Ihandle ptr, ...) as Ihandle ptr
Expand Down
1 change: 0 additions & 1 deletion inc/IUP/iupim.bi
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
extern "C"

#define __IUPIM_H

declare function IupLoadImage(byval file_name as const zstring ptr) as Ihandle ptr
declare function IupSaveImage(byval ih as Ihandle ptr, byval file_name as const zstring ptr, byval format as const zstring ptr) as long

Expand Down
1 change: 0 additions & 1 deletion inc/IUP/iupmask.bi
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
extern "C"

#define __IUP_OLDMASK_H

declare function iupmaskSet(byval h as Ihandle ptr, byval mask as const zstring ptr, byval autofill as long, byval casei as long) as long
declare function iupmaskSetInt(byval h as Ihandle ptr, byval autofill as long, byval min as long, byval max as long) as long
declare function iupmaskSetFloat(byval h as Ihandle ptr, byval autofill as long, byval min as single, byval max as single) as long
Expand Down
1 change: 0 additions & 1 deletion inc/IUP/iupmatrixex.bi
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
extern "C"

#define __IUPMATRIXEX_H

declare sub IupMatrixExOpen()
declare function IupMatrixEx() as Ihandle ptr
declare sub IupMatrixExInit(byval ih as Ihandle ptr)
Expand Down
1 change: 0 additions & 1 deletion inc/IUP/iupole.bi
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
extern "C"

#define __IUPOLE_H

declare function IupOleControl(byval progid as const zstring ptr) as Ihandle ptr
declare function IupOleControlOpen() as long

Expand Down
1 change: 0 additions & 1 deletion inc/IUP/iuptuio.bi
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
extern "C"

#define __IUPTUIO_H

declare function IupTuioOpen() as long
declare function IupTuioClient(byval port as long) as Ihandle ptr

Expand Down
1 change: 0 additions & 1 deletion inc/IUP/iupweb.bi
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
extern "C"

#define __IUPWEB_H

declare function IupWebBrowserOpen() as long
declare function IupWebBrowser() as Ihandle ptr

Expand Down
Loading

0 comments on commit 3646690

Please sign in to comment.