summaryrefslogtreecommitdiff
path: root/cpp.hint
blob: 67e06e24b646abeca24ae8c12e7f6a96f88f359b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
// Hint files help the Visual Studio IDE interpret Visual C++ identifiers
// such as names of functions and macros.
// For more information see https://go.microsoft.com/fwlink/?linkid=865984

#define SAL_THROW_EXTERN_C()

#define SAL_UNUSED_PARAMETER

#define SAL_LOPLUGIN_ANNOTATE(id)

#define DECL_LINK(Member, ArgType, RetType) \
    RetType Member(ArgType)

#define DECL_STATIC_LINK(Class, Member, ArgType, RetType) \
    static RetType Member(Class *, ArgType)

#define DECL_DLLPRIVATE_LINK(Member, ArgType, RetType) \
    SAL_DLLPRIVATE RetType Member(ArgType)

#define DECL_DLLPRIVATE_STATIC_LINK(Class, Member, ArgType, RetType) \
    SAL_DLLPRIVATE static RetType Member(Class *, ArgType)

#define IMPL_LINK(Class, Member, ArgType, ArgName, RetType) \
    RetType Class::Member(ArgType ArgName)

#define IMPL_LINK_NOARG(Class, Member, ArgType, RetType) \
    RetType Class::Member(ArgType)

#define IMPL_STATIC_LINK(Class, Member, ArgType, ArgName, RetType) \
    RetType Class::Member(Class *, ArgType ArgName)

#define IMPL_STATIC_LINK_NOARG(Class, Member, ArgType, RetType) \
    RetType Class::Member(Class *, ArgType)

// From workdir/UnpackedTarball/cppunit/include/cppunit/plugin/TestPlugIn.h

#define CPPUNIT_PLUGIN_IMPLEMENT()

// From workdir/UnpackedTarball/cppunit/include/cppunit/extensions/HelperMacros.h
// To allow searching for the test names, where they are defined using the macros

#define CPPUNIT_TEST_FIXTURE(TestClass, TestName)                              \
    class TestName : public TestClass                                          \
    {                                                                          \
    public:                                                                    \
        void TestBody();                                                       \
    };                                                                         \
    void TestName::TestBody()
2f59'>jsdialog: enable data validation dialogSzymon Kłos 2023-02-13Fix typoAndrea Gelmini 2023-02-13Mention that Emscripten 3.1.30 is known to work for COWASMTor Lillqvist 2023-02-13Don't overload the word 'module' unnecessarilyTor Lillqvist 2023-02-06Minor typo fixes and some additional informationTor Lillqvist 2023-02-03Fix typoAndrea Gelmini 2023-02-02Add instructions for when building headless LO core for WASMTor Lillqvist 2022-12-14Update Qt5 build instructions to use Allotropia's pre-patched repoTor Lillqvist 2022-12-13use $(file …) directly instead of gb_var2file when not used as intermediateChristian Lohmaier 2022-12-13gb_var2file: remove now unused chunk-size parameterChristian Lohmaier 2022-11-29Don't build the Qt5 Mandelbrot demos unless we have Qt5Tor Lillqvist 2022-11-14WASM: fix loading writer docs after rebaseBalázs Varga (allotropia) 2022-11-01tdf#142446 follow up: Fix missing ui file crash and a11y ui errorsJim Raykowski 2022-10-14WASM add Calc as optional build result, make it build & runBalazs Varga