summaryrefslogtreecommitdiff
path: root/cpp.hint
blob: 63269345ce7c5f6efffa59ceb587a933bee35761 (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
// 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 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()
2cid#1546414 COPY_INSTEAD_OF_MOVECaolán McNamara 2023-12-19cid#1545222 COPY_INSTEAD_OF_MOVECaolán McNamara 2023-12-10cid#1546281 COPY_INSTEAD_OF_MOVECaolán McNamara 2023-12-04cid#1546422 COPY_INSTEAD_OF_MOVECaolán McNamara 2023-11-09scripting: PyMailServiceProvider: implement AllowInsecureProtocolsMichael Stahl 2023-11-02'new Float' is deprecated in JavaNoel Grandin 2023-10-20Extended loplugin:ostr: Automatic rewrite O[U]StringLiteral: scriptingStephan Bergmann 2023-09-02no need to use UNO_QUERY_THROW hereNoel Grandin 2023-08-25Revert "use more Reference::query instead of UNO_QUERY_THROW"Noel Grandin 2023-08-19loplugin: new global analysis locking2Noel Grandin 2023-08-18use more Reference::query instead of UNO_QUERY_THROWNoel Grandin 2023-07-30Log SSL default verification path for mailmerge debugThorsten Behrens 2023-07-29follow python recommendation and pass SSL contextsCaolán McNamara 2023-04-30Use getXWeak in scriptingMike Kaganski 2023-04-18Avoid NullPointerExceptionStephan Bergmann 2023-03-23rtl::Static to thread-safe-staticNoel Grandin 2023-03-20Fix some errors in the scripting module's XInputStreamImpl:Damjan Jovanovic 2023-02-13Fix/simplify some vnd.sun.star.expand: handlingMike Kaganski 2023-02-12tdf#153571: properly unquote (URL-decode) vnd.sun.star.expand payloadMike Kaganski 2022-12-16check SfxObjectShell::Current()Caolán McNamara 2022-11-22loplugin:unusedfieldsNoel Grandin 2022-10-22use more TempFileFastService in scriptingNoel Grandin 2022-10-17use more string_viewNoel Grandin 2022-10-07tdf#151076 Create callable Python script using InsertTextRafael Lima 2022-08-18Move tools/diagnose_ex.h to comphelper/diagnose_ex.hxxStephan Bergmann 2022-06-23clang-tidy modernize-pass-by-value in scriptingNoel Grandin 2022-06-10LanguageTool Grammar Checker implementationMert Tumer 2022-06-10new loplugin:moveitNoel Grandin 2022-05-31tdf#145527 Revert "Related tdf#116767: Call URLClassLoader.close"Stephan Bergmann 2022-05-20new loplugin:unnecessary lockingNoel Grandin