Browse code

Adding winapi

Steffen Neumann authored on 26/11/2021 22:31:46
Showing 1 changed files
1 1
new file mode 100755
... ...
@@ -0,0 +1,24 @@
1
+/*
2
+ * Copyright 2017 Andrey Semashev
3
+ *
4
+ * Distributed under the Boost Software License, Version 1.0.
5
+ * See http://www.boost.org/LICENSE_1_0.txt
6
+ *
7
+ * This header is deprecated, use boost/winapi/dll.hpp instead.
8
+ */
9
+
10
+#ifndef BOOST_DETAIL_WINAPI_DLL_HPP
11
+#define BOOST_DETAIL_WINAPI_DLL_HPP
12
+
13
+#include <boost/config/header_deprecated.hpp>
14
+
15
+BOOST_HEADER_DEPRECATED("<boost/winapi/dll.hpp>")
16
+
17
+#include <boost/winapi/dll.hpp>
18
+#include <boost/detail/winapi/detail/deprecated_namespace.hpp>
19
+
20
+#ifdef BOOST_HAS_PRAGMA_ONCE
21
+#pragma once
22
+#endif
23
+
24
+#endif // BOOST_DETAIL_WINAPI_DLL_HPP
Browse code

remove (hopefully) unused directories

Steffen Neumann authored on 23/09/2021 15:21:20
Showing 1 changed files
1 1
deleted file mode 100755
... ...
@@ -1,24 +0,0 @@
1
-/*
2
- * Copyright 2017 Andrey Semashev
3
- *
4
- * Distributed under the Boost Software License, Version 1.0.
5
- * See http://www.boost.org/LICENSE_1_0.txt
6
- *
7
- * This header is deprecated, use boost/winapi/dll.hpp instead.
8
- */
9
-
10
-#ifndef BOOST_DETAIL_WINAPI_DLL_HPP
11
-#define BOOST_DETAIL_WINAPI_DLL_HPP
12
-
13
-#include <boost/config/header_deprecated.hpp>
14
-
15
-BOOST_HEADER_DEPRECATED("<boost/winapi/dll.hpp>")
16
-
17
-#include <boost/winapi/dll.hpp>
18
-#include <boost/detail/winapi/detail/deprecated_namespace.hpp>
19
-
20
-#ifdef BOOST_HAS_PRAGMA_ONCE
21
-#pragma once
22
-#endif
23
-
24
-#endif // BOOST_DETAIL_WINAPI_DLL_HPP
Browse code

Updating pwiz to 3_0_21263

Steffen Neumann authored on 23/09/2021 12:34:25
Showing 1 changed files
1 1
new file mode 100755
... ...
@@ -0,0 +1,24 @@
1
+/*
2
+ * Copyright 2017 Andrey Semashev
3
+ *
4
+ * Distributed under the Boost Software License, Version 1.0.
5
+ * See http://www.boost.org/LICENSE_1_0.txt
6
+ *
7
+ * This header is deprecated, use boost/winapi/dll.hpp instead.
8
+ */
9
+
10
+#ifndef BOOST_DETAIL_WINAPI_DLL_HPP
11
+#define BOOST_DETAIL_WINAPI_DLL_HPP
12
+
13
+#include <boost/config/header_deprecated.hpp>
14
+
15
+BOOST_HEADER_DEPRECATED("<boost/winapi/dll.hpp>")
16
+
17
+#include <boost/winapi/dll.hpp>
18
+#include <boost/detail/winapi/detail/deprecated_namespace.hpp>
19
+
20
+#ifdef BOOST_HAS_PRAGMA_ONCE
21
+#pragma once
22
+#endif
23
+
24
+#endif // BOOST_DETAIL_WINAPI_DLL_HPP
Browse code

drop old boost

From: Steffen Neumann <sneumann@ipb-halle.de>

git-svn-id: https://hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/mzR@125184 bc3139a8-67e5-0310-9ffc-ced21a209358

l.gatto authored on 15/12/2016 10:41:45
Showing 1 changed files
1 1
deleted file mode 100644
... ...
@@ -1,55 +0,0 @@
1
-//  dll.hpp  --------------------------------------------------------------//
2
-
3
-//  Copyright 2010 Vicente J. Botet Escriba
4
-
5
-//  Distributed under the Boost Software License, Version 1.0.
6
-//  See http://www.boost.org/LICENSE_1_0.txt
7
-
8
-
9
-#ifndef BOOST_DETAIL_WINAPI_DLL_HPP
10
-#define BOOST_DETAIL_WINAPI_DLL_HPP
11
-
12
-#include <boost/detail/winapi/basic_types.hpp>
13
-#include <boost/detail/winapi/security.hpp>
14
-
15
-#ifdef BOOST_HAS_PRAGMA_ONCE
16
-#pragma once
17
-#endif
18
-
19
-namespace boost
20
-{
21
-namespace detail
22
-{
23
-namespace winapi
24
-{
25
-#if defined( BOOST_USE_WINDOWS_H )
26
-    using ::LoadLibrary;
27
-    using ::FreeLibrary;
28
-    using ::GetProcAddress;
29
-    using ::GetModuleHandleA;
30
-#else
31
-extern "C" { 
32
-    __declspec(dllimport) HMODULE_ __stdcall 
33
-        LoadLibrary(
34
-            LPCTSTR_ lpFileName
35
-    );
36
-    __declspec(dllimport) BOOL_ __stdcall 
37
-        FreeLibrary(
38
-            HMODULE_ hModule
39
-    );
40
-    __declspec(dllimport) FARPROC_ __stdcall 
41
-        GetProcAddress(
42
-            HMODULE_ hModule,
43
-            LPCSTR_ lpProcName
44
-    );
45
-    __declspec(dllimport) FARPROC_ __stdcall 
46
-        GetModuleHandleA(
47
-            LPCSTR_ lpProcName
48
-    );
49
-}    
50
-#endif
51
-}
52
-}
53
-}
54
-
55
-#endif // BOOST_DETAIL_WINAPI_THREAD_HPP
Browse code

checkout latest pwiz, ammend Makevars

From: Laurent <lg390@cam.ac.uk>

git-svn-id: https://hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/mzR@125180 bc3139a8-67e5-0310-9ffc-ced21a209358

l.gatto authored on 15/12/2016 10:21:41
Showing 1 changed files
... ...
@@ -1,86 +1,55 @@
1
-//  dll.hpp  --------------------------------------------------------------//
2
-
3
-//  Copyright 2010 Vicente J. Botet Escriba
4
-
5
-//  Distributed under the Boost Software License, Version 1.0.
6
-//  See http://www.boost.org/LICENSE_1_0.txt
7
-
8
-
9
-#ifndef BOOST_DETAIL_WINAPI_DLL_HPP
10
-#define BOOST_DETAIL_WINAPI_DLL_HPP
11
-
12
-#include <boost/detail/winapi/basic_types.hpp>
13
-#include <boost/detail/winapi/security.hpp>
14
-
15
-#ifdef BOOST_HAS_PRAGMA_ONCE
16
-#pragma once
17
-#endif
18
-
19
-namespace boost
20
-{
21
-namespace detail
22
-{
23
-namespace winapi
24
-{
25
-#if defined( BOOST_USE_WINDOWS_H )
26
-    typedef ::FARPROC FARPROC_;
27
-    typedef ::NEARPROC NEARPROC_;
28
-    typedef ::PROC PROC_;
29
-
30
-# ifdef BOOST_NO_ANSI_APIS
31
-    using ::LoadLibraryW;
32
-    using ::GetModuleHandleW;
33
-# else
34
-    using ::LoadLibraryA;
35
-    using ::GetModuleHandleA;
36
-# endif
37
-    using ::FreeLibrary;
38
-    using ::GetProcAddress;
39
-#else
40
-extern "C" {
41
-# ifdef _WIN64
42
-    typedef INT_PTR_ (WINAPI *FARPROC_)();
43
-    typedef INT_PTR_ (WINAPI *NEARPROC_)();
44
-    typedef INT_PTR_ (WINAPI *PROC_)();
45
-# else
46
-    typedef int (WINAPI *FARPROC_)();
47
-    typedef int (WINAPI *NEARPROC_)();
48
-    typedef int (WINAPI *PROC_)();
49
-# endif // _WIN64
50
-
51
-# ifdef BOOST_NO_ANSI_APIS
52
-    __declspec(dllimport) HMODULE_ WINAPI
53
-        LoadLibraryW(
54
-            LPCWSTR_ lpFileName
55
-    );
56
-    __declspec(dllimport) HMODULE_ WINAPI
57
-        GetModuleHandleW(
58
-            LPCWSTR_ lpFileName
59
-    );
60
-# else
61
-    __declspec(dllimport) HMODULE_ WINAPI
62
-        LoadLibraryA(
63
-            LPCSTR_ lpFileName
64
-    );
65
-    __declspec(dllimport) HMODULE_ WINAPI
66
-        GetModuleHandleA(
67
-            LPCSTR_ lpFileName
68
-    );
69
-# endif
70
-
71
-    __declspec(dllimport) BOOL_ WINAPI
72
-        FreeLibrary(
73
-            HMODULE_ hModule
74
-    );
75
-    __declspec(dllimport) FARPROC_ WINAPI
76
-        GetProcAddress(
77
-            HMODULE_ hModule,
78
-            LPCSTR_ lpProcName
79
-    );
80
-}
81
-#endif
82
-}
83
-}
84
-}
85
-
86
-#endif // BOOST_DETAIL_WINAPI_DLL_HPP
1
+//  dll.hpp  --------------------------------------------------------------//
2
+
3
+//  Copyright 2010 Vicente J. Botet Escriba
4
+
5
+//  Distributed under the Boost Software License, Version 1.0.
6
+//  See http://www.boost.org/LICENSE_1_0.txt
7
+
8
+
9
+#ifndef BOOST_DETAIL_WINAPI_DLL_HPP
10
+#define BOOST_DETAIL_WINAPI_DLL_HPP
11
+
12
+#include <boost/detail/winapi/basic_types.hpp>
13
+#include <boost/detail/winapi/security.hpp>
14
+
15
+#ifdef BOOST_HAS_PRAGMA_ONCE
16
+#pragma once
17
+#endif
18
+
19
+namespace boost
20
+{
21
+namespace detail
22
+{
23
+namespace winapi
24
+{
25
+#if defined( BOOST_USE_WINDOWS_H )
26
+    using ::LoadLibrary;
27
+    using ::FreeLibrary;
28
+    using ::GetProcAddress;
29
+    using ::GetModuleHandleA;
30
+#else
31
+extern "C" { 
32
+    __declspec(dllimport) HMODULE_ __stdcall 
33
+        LoadLibrary(
34
+            LPCTSTR_ lpFileName
35
+    );
36
+    __declspec(dllimport) BOOL_ __stdcall 
37
+        FreeLibrary(
38
+            HMODULE_ hModule
39
+    );
40
+    __declspec(dllimport) FARPROC_ __stdcall 
41
+        GetProcAddress(
42
+            HMODULE_ hModule,
43
+            LPCSTR_ lpProcName
44
+    );
45
+    __declspec(dllimport) FARPROC_ __stdcall 
46
+        GetModuleHandleA(
47
+            LPCSTR_ lpProcName
48
+    );
49
+}    
50
+#endif
51
+}
52
+}
53
+}
54
+
55
+#endif // BOOST_DETAIL_WINAPI_THREAD_HPP
Browse code

Commit made by the Bioconductor Git-SVN bridge.

Commit id: 0b3d4d9bb71e3ca5891b777610fc8dec103a6d61

Bumped version after KK's updates


Commit id: 9e04409b64757a177893d56c0300904f31945cb1

modified: src/pwiz/data/common/BinaryIndexStream.cpp modified: src/win/i386/libpwiz.a modified: src/win/x64/libpwiz.a


Commit id: f16b04258dc20bf3315beac99708e11728cfc12b

update precompiled lib for windows


Commit id: 5d56197f1148378d92e89b2d0a167e18c4b7ab2e

Bump version, tame .Rbuildignore


Commit id: 432da5bd294c9b87f7761e15bc814c3785c21abf

Merge remote-tracking branch 'origin/boost_159'


Commit id: 92be978bf72d90c2222a19ddf365f6d1acc9f20d

upadte Makevars


Commit id: ae75037a780cead56c4d20bedf822c94fb413677

upgrade to boost 1.5.9



git-svn-id: https://hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/mzR@110126 bc3139a8-67e5-0310-9ffc-ced21a209358

s.neumann authored on 01/11/2015 22:33:47
Showing 1 changed files
... ...
@@ -1,55 +1,86 @@
1
-//  dll.hpp  --------------------------------------------------------------//
2
-
3
-//  Copyright 2010 Vicente J. Botet Escriba
4
-
5
-//  Distributed under the Boost Software License, Version 1.0.
6
-//  See http://www.boost.org/LICENSE_1_0.txt
7
-
8
-
9
-#ifndef BOOST_DETAIL_WINAPI_DLL_HPP
10
-#define BOOST_DETAIL_WINAPI_DLL_HPP
11
-
12
-#include <boost/detail/winapi/basic_types.hpp>
13
-#include <boost/detail/winapi/security.hpp>
14
-
15
-#ifdef BOOST_HAS_PRAGMA_ONCE
16
-#pragma once
17
-#endif
18
-
19
-namespace boost
20
-{
21
-namespace detail
22
-{
23
-namespace winapi
24
-{
25
-#if defined( BOOST_USE_WINDOWS_H )
26
-    using ::LoadLibrary;
27
-    using ::FreeLibrary;
28
-    using ::GetProcAddress;
29
-    using ::GetModuleHandleA;
30
-#else
31
-extern "C" { 
32
-    __declspec(dllimport) HMODULE_ __stdcall 
33
-        LoadLibrary(
34
-            LPCTSTR_ lpFileName
35
-    );
36
-    __declspec(dllimport) BOOL_ __stdcall 
37
-        FreeLibrary(
38
-            HMODULE_ hModule
39
-    );
40
-    __declspec(dllimport) FARPROC_ __stdcall 
41
-        GetProcAddress(
42
-            HMODULE_ hModule,
43
-            LPCSTR_ lpProcName
44
-    );
45
-    __declspec(dllimport) FARPROC_ __stdcall 
46
-        GetModuleHandleA(
47
-            LPCSTR_ lpProcName
48
-    );
49
-}    
50
-#endif
51
-}
52
-}
53
-}
54
-
55
-#endif // BOOST_DETAIL_WINAPI_THREAD_HPP
1
+//  dll.hpp  --------------------------------------------------------------//
2
+
3
+//  Copyright 2010 Vicente J. Botet Escriba
4
+
5
+//  Distributed under the Boost Software License, Version 1.0.
6
+//  See http://www.boost.org/LICENSE_1_0.txt
7
+
8
+
9
+#ifndef BOOST_DETAIL_WINAPI_DLL_HPP
10
+#define BOOST_DETAIL_WINAPI_DLL_HPP
11
+
12
+#include <boost/detail/winapi/basic_types.hpp>
13
+#include <boost/detail/winapi/security.hpp>
14
+
15
+#ifdef BOOST_HAS_PRAGMA_ONCE
16
+#pragma once
17
+#endif
18
+
19
+namespace boost
20
+{
21
+namespace detail
22
+{
23
+namespace winapi
24
+{
25
+#if defined( BOOST_USE_WINDOWS_H )
26
+    typedef ::FARPROC FARPROC_;
27
+    typedef ::NEARPROC NEARPROC_;
28
+    typedef ::PROC PROC_;
29
+
30
+# ifdef BOOST_NO_ANSI_APIS
31
+    using ::LoadLibraryW;
32
+    using ::GetModuleHandleW;
33
+# else
34
+    using ::LoadLibraryA;
35
+    using ::GetModuleHandleA;
36
+# endif
37
+    using ::FreeLibrary;
38
+    using ::GetProcAddress;
39
+#else
40
+extern "C" {
41
+# ifdef _WIN64
42
+    typedef INT_PTR_ (WINAPI *FARPROC_)();
43
+    typedef INT_PTR_ (WINAPI *NEARPROC_)();
44
+    typedef INT_PTR_ (WINAPI *PROC_)();
45
+# else
46
+    typedef int (WINAPI *FARPROC_)();
47
+    typedef int (WINAPI *NEARPROC_)();
48
+    typedef int (WINAPI *PROC_)();
49
+# endif // _WIN64
50
+
51
+# ifdef BOOST_NO_ANSI_APIS
52
+    __declspec(dllimport) HMODULE_ WINAPI
53
+        LoadLibraryW(
54
+            LPCWSTR_ lpFileName
55
+    );
56
+    __declspec(dllimport) HMODULE_ WINAPI
57
+        GetModuleHandleW(
58
+            LPCWSTR_ lpFileName
59
+    );
60
+# else
61
+    __declspec(dllimport) HMODULE_ WINAPI
62
+        LoadLibraryA(
63
+            LPCSTR_ lpFileName
64
+    );
65
+    __declspec(dllimport) HMODULE_ WINAPI
66
+        GetModuleHandleA(
67
+            LPCSTR_ lpFileName
68
+    );
69
+# endif
70
+
71
+    __declspec(dllimport) BOOL_ WINAPI
72
+        FreeLibrary(
73
+            HMODULE_ hModule
74
+    );
75
+    __declspec(dllimport) FARPROC_ WINAPI
76
+        GetProcAddress(
77
+            HMODULE_ hModule,
78
+            LPCSTR_ lpProcName
79
+    );
80
+}
81
+#endif
82
+}
83
+}
84
+}
85
+
86
+#endif // BOOST_DETAIL_WINAPI_DLL_HPP
Browse code

adding missing files

git-svn-id: https://hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/mzR@90759 bc3139a8-67e5-0310-9ffc-ced21a209358

l.gatto authored on 28/05/2014 00:29:07
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,55 @@
1
+//  dll.hpp  --------------------------------------------------------------//
2
+
3
+//  Copyright 2010 Vicente J. Botet Escriba
4
+
5
+//  Distributed under the Boost Software License, Version 1.0.
6
+//  See http://www.boost.org/LICENSE_1_0.txt
7
+
8
+
9
+#ifndef BOOST_DETAIL_WINAPI_DLL_HPP
10
+#define BOOST_DETAIL_WINAPI_DLL_HPP
11
+
12
+#include <boost/detail/winapi/basic_types.hpp>
13
+#include <boost/detail/winapi/security.hpp>
14
+
15
+#ifdef BOOST_HAS_PRAGMA_ONCE
16
+#pragma once
17
+#endif
18
+
19
+namespace boost
20
+{
21
+namespace detail
22
+{
23
+namespace winapi
24
+{
25
+#if defined( BOOST_USE_WINDOWS_H )
26
+    using ::LoadLibrary;
27
+    using ::FreeLibrary;
28
+    using ::GetProcAddress;
29
+    using ::GetModuleHandleA;
30
+#else
31
+extern "C" { 
32
+    __declspec(dllimport) HMODULE_ __stdcall 
33
+        LoadLibrary(
34
+            LPCTSTR_ lpFileName
35
+    );
36
+    __declspec(dllimport) BOOL_ __stdcall 
37
+        FreeLibrary(
38
+            HMODULE_ hModule
39
+    );
40
+    __declspec(dllimport) FARPROC_ __stdcall 
41
+        GetProcAddress(
42
+            HMODULE_ hModule,
43
+            LPCSTR_ lpProcName
44
+    );
45
+    __declspec(dllimport) FARPROC_ __stdcall 
46
+        GetModuleHandleA(
47
+            LPCSTR_ lpProcName
48
+    );
49
+}    
50
+#endif
51
+}
52
+}
53
+}
54
+
55
+#endif // BOOST_DETAIL_WINAPI_THREAD_HPP