pvxslibs 1.1.4a1__cp310-cp310-win_amd64.whl → 1.2.0a1__cp310-cp310-win_amd64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pvxslibs might be problematic. Click here for more details.
- pvxslibs/include/pvxs/client.h +3 -0
- pvxslibs/include/pvxs/iochooks.h +94 -0
- pvxslibs/include/pvxs/nt.h +8 -2
- pvxslibs/include/pvxs/server.h +3 -0
- pvxslibs/include/pvxs/source.h +4 -1
- pvxslibs/include/pvxs/unittest.h +2 -0
- pvxslibs/include/pvxs/versionNum.h +2 -2
- pvxslibs/lib/event_core.dll +0 -0
- pvxslibs/lib/event_core.exp +0 -0
- pvxslibs/lib/event_core.lib +0 -0
- pvxslibs/lib/pvxs.dll +0 -0
- pvxslibs/lib/pvxs.exp +0 -0
- pvxslibs/lib/pvxs.lib +0 -0
- pvxslibs/lib/pvxsIoc.dll +0 -0
- pvxslibs/lib/pvxsIoc.exp +0 -0
- pvxslibs/lib/pvxsIoc.lib +0 -0
- pvxslibs/lib/pvxsIoc_dsoinfo.py +14 -0
- pvxslibs/test/test_load.py +5 -0
- {pvxslibs-1.1.4a1.dist-info → pvxslibs-1.2.0a1.dist-info}/METADATA +1 -1
- pvxslibs-1.2.0a1.dist-info/RECORD +38 -0
- pvxslibs-1.1.4a1.dist-info/RECORD +0 -33
- {pvxslibs-1.1.4a1.dist-info → pvxslibs-1.2.0a1.dist-info}/LICENSE +0 -0
- {pvxslibs-1.1.4a1.dist-info → pvxslibs-1.2.0a1.dist-info}/WHEEL +0 -0
- {pvxslibs-1.1.4a1.dist-info → pvxslibs-1.2.0a1.dist-info}/top_level.txt +0 -0
pvxslibs/include/pvxs/client.h
CHANGED
|
@@ -1033,6 +1033,7 @@ struct PVXS_API Config {
|
|
|
1033
1033
|
|
|
1034
1034
|
private:
|
|
1035
1035
|
bool BE = EPICS_BYTE_ORDER==EPICS_ENDIAN_BIG;
|
|
1036
|
+
bool UDP = true;
|
|
1036
1037
|
public:
|
|
1037
1038
|
|
|
1038
1039
|
// compat
|
|
@@ -1073,6 +1074,8 @@ public:
|
|
|
1073
1074
|
// for protocol compatibility testing
|
|
1074
1075
|
inline Config& overrideSendBE(bool be) { BE = be; return *this; }
|
|
1075
1076
|
inline bool sendBE() const { return BE; }
|
|
1077
|
+
inline Config& overrideShareUDP(bool share) { UDP = share; return *this; }
|
|
1078
|
+
inline bool shareUDP() const { return UDP; }
|
|
1076
1079
|
#endif
|
|
1077
1080
|
};
|
|
1078
1081
|
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright - See the COPYRIGHT that is included with this distribution.
|
|
3
|
+
* pvxs is distributed subject to a Software License Agreement found
|
|
4
|
+
* in file LICENSE that is included with this distribution.
|
|
5
|
+
*/
|
|
6
|
+
#ifndef PVXS_IOCHOOKS_H
|
|
7
|
+
#define PVXS_IOCHOOKS_H
|
|
8
|
+
|
|
9
|
+
#include <pvxs/version.h>
|
|
10
|
+
|
|
11
|
+
#if defined(_WIN32) || defined(__CYGWIN__)
|
|
12
|
+
|
|
13
|
+
# if defined(PVXS_IOC_API_BUILDING) && defined(EPICS_BUILD_DLL)
|
|
14
|
+
/* building library as dll */
|
|
15
|
+
# define PVXS_IOC_API __declspec(dllexport)
|
|
16
|
+
# elif !defined(PVXS_IOC_API_BUILDING) && defined(EPICS_CALL_DLL)
|
|
17
|
+
/* calling library in dll form */
|
|
18
|
+
# define PVXS_IOC_API __declspec(dllimport)
|
|
19
|
+
# endif
|
|
20
|
+
|
|
21
|
+
#elif __GNUC__ >= 4
|
|
22
|
+
# define PVXS_IOC_API __attribute__ ((visibility("default")))
|
|
23
|
+
#endif
|
|
24
|
+
|
|
25
|
+
#ifndef PVXS_IOC_API
|
|
26
|
+
# define PVXS_IOC_API
|
|
27
|
+
#endif
|
|
28
|
+
|
|
29
|
+
namespace pvxs {
|
|
30
|
+
namespace server {
|
|
31
|
+
class Server;
|
|
32
|
+
}
|
|
33
|
+
namespace ioc {
|
|
34
|
+
|
|
35
|
+
/** Return the singleton Server instance which is setup
|
|
36
|
+
* for use in an IOC process.
|
|
37
|
+
*
|
|
38
|
+
* This Server instance is created during a registrar function,
|
|
39
|
+
* started by the initHookAfterCaServerRunning phase of iocInit().
|
|
40
|
+
* It is stopped and destroyed during an epicsAtExit() hook added
|
|
41
|
+
* during an initHookAfterInitDatabase hook..
|
|
42
|
+
*
|
|
43
|
+
* Any configuration changes via. epicsEnvSet() must be made before registrars are run
|
|
44
|
+
* by \*_registerRecordDeviceDriver(pdbbase).
|
|
45
|
+
*
|
|
46
|
+
* server::SharedPV and server::Source added before iocInit() will be available immediately.
|
|
47
|
+
* Others may be added (or removed) later.
|
|
48
|
+
*
|
|
49
|
+
* @throws std::logic_error if called before instance is created, or after instance is destroyed.
|
|
50
|
+
*
|
|
51
|
+
* @code
|
|
52
|
+
* static void myinitHook(initHookState state) {
|
|
53
|
+
* if(state!=initHookAfterIocBuilt)
|
|
54
|
+
* return;
|
|
55
|
+
*
|
|
56
|
+
* server::SharedPV mypv(...);
|
|
57
|
+
* ioc::server()
|
|
58
|
+
* .addPV("my:pv:name", mypv);
|
|
59
|
+
* }
|
|
60
|
+
* static void myregistrar() {
|
|
61
|
+
* initHookRegister(&myinitHook);
|
|
62
|
+
* }
|
|
63
|
+
* extern "C" {
|
|
64
|
+
* epicsExportRegistrar(myregistrar); // needs matching entry in .dbd
|
|
65
|
+
* }
|
|
66
|
+
* @endcode
|
|
67
|
+
*/
|
|
68
|
+
PVXS_IOC_API
|
|
69
|
+
server::Server server();
|
|
70
|
+
|
|
71
|
+
/**
|
|
72
|
+
* Load JSON group definition file.
|
|
73
|
+
* This function does not actually parse the given file, but adds it to the list of files to be loaded,
|
|
74
|
+
* at the appropriate time in the startup process.
|
|
75
|
+
*
|
|
76
|
+
* @param jsonFilename the json file containing the group definitions
|
|
77
|
+
* @param macros NULL, or a comma separated list of macro definitions. eg. "KEY=VAL,OTHER=SECOND"
|
|
78
|
+
* @return 0 for success, 1 for failure
|
|
79
|
+
* @since UNRELEASED
|
|
80
|
+
*/
|
|
81
|
+
PVXS_IOC_API
|
|
82
|
+
long dbLoadGroup(const char* jsonFilename, const char* macros=nullptr);
|
|
83
|
+
|
|
84
|
+
/** Call just before testIocShutdownOk()
|
|
85
|
+
*
|
|
86
|
+
* Shutdown QSRV. Only needed with Base <= 7.0.4 .
|
|
87
|
+
* Since 7.0.4, QSRV shutdown occurs during testIocShutdownOk() .
|
|
88
|
+
* @since UNRELEASED
|
|
89
|
+
*/
|
|
90
|
+
PVXS_IOC_API
|
|
91
|
+
void testShutdown();
|
|
92
|
+
|
|
93
|
+
}} // namespace pvxs::ioc
|
|
94
|
+
#endif // PVXS_IOCHOOKS_H
|
pvxslibs/include/pvxs/nt.h
CHANGED
|
@@ -67,13 +67,19 @@ struct NTScalar {
|
|
|
67
67
|
bool control;
|
|
68
68
|
//! Include alarm (range) meta-data
|
|
69
69
|
bool valueAlarm;
|
|
70
|
+
/** Include 'display.form' and 'display.precision' when 'value' is a numeric type
|
|
71
|
+
* @pre requires display=true
|
|
72
|
+
* @since UNRELEASED
|
|
73
|
+
*/
|
|
74
|
+
bool form;
|
|
70
75
|
|
|
71
76
|
constexpr
|
|
72
77
|
NTScalar(TypeCode value = TypeCode::Float64,
|
|
73
78
|
bool display = false,
|
|
74
79
|
bool control = false,
|
|
75
|
-
bool valueAlarm = false
|
|
76
|
-
|
|
80
|
+
bool valueAlarm = false,
|
|
81
|
+
bool form = false)
|
|
82
|
+
:value(value), display(display), control(control), valueAlarm(valueAlarm), form(form)
|
|
77
83
|
{}
|
|
78
84
|
|
|
79
85
|
//! A TypeDef which can be appended
|
pvxslibs/include/pvxs/server.h
CHANGED
|
@@ -176,6 +176,7 @@ struct PVXS_API Config {
|
|
|
176
176
|
|
|
177
177
|
private:
|
|
178
178
|
bool BE = EPICS_BYTE_ORDER==EPICS_ENDIAN_BIG;
|
|
179
|
+
bool UDP = true;
|
|
179
180
|
public:
|
|
180
181
|
|
|
181
182
|
// compat
|
|
@@ -220,6 +221,8 @@ public:
|
|
|
220
221
|
// for protocol compatibility testing
|
|
221
222
|
inline Config& overrideSendBE(bool be) { BE = be; return *this; }
|
|
222
223
|
inline bool sendBE() const { return BE; }
|
|
224
|
+
inline Config& overrideShareUDP(bool share) { UDP = share; return *this; }
|
|
225
|
+
inline bool shareUDP() const { return UDP; }
|
|
223
226
|
#endif
|
|
224
227
|
};
|
|
225
228
|
|
pvxslibs/include/pvxs/source.h
CHANGED
|
@@ -61,6 +61,9 @@ struct MonitorStat {
|
|
|
61
61
|
size_t maxQueue=0;
|
|
62
62
|
//! Negotiated limit on nQueue
|
|
63
63
|
size_t limitQueue=0;
|
|
64
|
+
//! Number of updates squashed during post() calss
|
|
65
|
+
//! @since UNRELEASED
|
|
66
|
+
size_t nSquash=0;
|
|
64
67
|
|
|
65
68
|
bool running=false;
|
|
66
69
|
bool finished=false;
|
|
@@ -106,7 +109,7 @@ public:
|
|
|
106
109
|
//! Signal to subscriber that this subscription will not yield any further events.
|
|
107
110
|
//! This is not an error. Client should not retry.
|
|
108
111
|
void finish() {
|
|
109
|
-
doPost(Value(), false,
|
|
112
|
+
doPost(Value(), false, true);
|
|
110
113
|
}
|
|
111
114
|
|
|
112
115
|
//! Poll information and statistics for this subscription.
|
pvxslibs/include/pvxs/unittest.h
CHANGED
pvxslibs/lib/event_core.dll
CHANGED
|
Binary file
|
pvxslibs/lib/event_core.exp
CHANGED
|
Binary file
|
pvxslibs/lib/event_core.lib
CHANGED
|
Binary file
|
pvxslibs/lib/pvxs.dll
CHANGED
|
Binary file
|
pvxslibs/lib/pvxs.exp
CHANGED
|
Binary file
|
pvxslibs/lib/pvxs.lib
CHANGED
|
Binary file
|
pvxslibs/lib/pvxsIoc.dll
ADDED
|
Binary file
|
pvxslibs/lib/pvxsIoc.exp
ADDED
|
Binary file
|
pvxslibs/lib/pvxsIoc.lib
ADDED
|
Binary file
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
|
|
2
|
+
# generated by setuptools_dso
|
|
3
|
+
import os
|
|
4
|
+
|
|
5
|
+
dsoname = 'pvxslibs.lib.pvxsIoc'
|
|
6
|
+
libname = 'pvxsIoc.dll'
|
|
7
|
+
soname = 'pvxsIoc.dll'
|
|
8
|
+
depends = ['pvxslibs.lib.pvxs', 'pvxslibs.lib.event_core', 'epicscorelibs.lib.dbRecStd', 'epicscorelibs.lib.dbCore', 'epicscorelibs.lib.Com']
|
|
9
|
+
dir = os.path.dirname(__file__)
|
|
10
|
+
filename = os.path.join(dir, libname)
|
|
11
|
+
sofilename = os.path.join(dir, soname)
|
|
12
|
+
del dir
|
|
13
|
+
del os
|
|
14
|
+
__all__ = ("dsoname", "libname", "soname", "filename", "sofilename")
|
pvxslibs/test/test_load.py
CHANGED
|
@@ -16,6 +16,11 @@ class TestLoad(unittest.TestCase):
|
|
|
16
16
|
|
|
17
17
|
self.assertNotEqual(0, pvxs_version_int())
|
|
18
18
|
|
|
19
|
+
libIoc = ctypes.CDLL(find_dso('...lib.pvxsIoc'), ctypes.RTLD_GLOBAL)
|
|
20
|
+
|
|
21
|
+
# load original QSRV to ensure no symbol conflicts
|
|
22
|
+
p2p = ctypes.CDLL(find_dso('epicscorelibs.lib.qsrv'), ctypes.RTLD_GLOBAL)
|
|
23
|
+
|
|
19
24
|
class TestVersion(unittest.TestCase):
|
|
20
25
|
def test_ver(self):
|
|
21
26
|
from ..version import version_info, abi_requires
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
pvxslibs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
+
pvxslibs/path.py,sha256=Dom8mJoqA4iRv1nBiJPptF1bdm5iIGtPpMQsFeBtJNI,209
|
|
3
|
+
pvxslibs/version.py,sha256=idyj3WCiCjGJGRvPqLE_TNfd5Gzxnx4c8pxGO0_AejI,1016
|
|
4
|
+
pvxslibs/include/pvxs/client.h,sha256=qK2jpFuJfa80RCg9-9Y65Y99Ulp-hWmEj9AvoEVdy3o,37905
|
|
5
|
+
pvxslibs/include/pvxs/data.h,sha256=xe38UJCGhrkMd_i2T8G-PTb_cKco-zMFRe1rSh4JKkI,29518
|
|
6
|
+
pvxslibs/include/pvxs/iochooks.h,sha256=2t9wXKmzT-FiLyrCrM3YRXx6YFqMA0qzu-v9Nul96xY,2898
|
|
7
|
+
pvxslibs/include/pvxs/log.h,sha256=rnPEl1vTOBqf6vnYQFBafiPVYx2FlmRSvbDUMYO-0s0,5107
|
|
8
|
+
pvxslibs/include/pvxs/netcommon.h,sha256=a3BTAYYD5nGfqXmZWq0kk91b0SEAhd4jPS2HjFVSDdw,1860
|
|
9
|
+
pvxslibs/include/pvxs/nt.h,sha256=Xa8qU-nYvAubgQ6dgkkA_0liOgbjLwVU12n3GQQ6zdo,3861
|
|
10
|
+
pvxslibs/include/pvxs/server.h,sha256=wTPDy464AQAJUDCCqf66uioCl3XJqHRlKN_X5Nk_rLs,8072
|
|
11
|
+
pvxslibs/include/pvxs/sharedArray.h,sha256=BMW9Ea1YjtpgnXEiQg_3SbL5mAG5On9uLvLLRxpSMlQ,24494
|
|
12
|
+
pvxslibs/include/pvxs/sharedpv.h,sha256=k6LasQsMrpHTPa9DasXKvWTppqwVZJ9vBHj8P5Q-9Cw,4264
|
|
13
|
+
pvxslibs/include/pvxs/source.h,sha256=0oQ3SsFNgY8ltoyWUz3STcx3S3h1hO3lREXdbmDGVdo,10529
|
|
14
|
+
pvxslibs/include/pvxs/srvcommon.h,sha256=kMNQRiMka-laIyIUPlBWNRDndVyISB3V0ujNrFzMdVQ,4238
|
|
15
|
+
pvxslibs/include/pvxs/unittest.h,sha256=wUImNzwhSEss8pptlQEvdAmQ4l_093CDYUCw1NvvP-w,10519
|
|
16
|
+
pvxslibs/include/pvxs/util.h,sha256=pDmS-ogaTrRVksjmMSG6hj2hFEUcMKZnCMHgKdM2p-A,8901
|
|
17
|
+
pvxslibs/include/pvxs/version.h,sha256=_vZXcm-UIOqNnqWqR7JW7CFYH2LNL5uY9AJQcUnR1l0,2818
|
|
18
|
+
pvxslibs/include/pvxs/versionNum.h,sha256=VX5PQpXUc9nofoT3e8staLDMxtv_4LB2Y698iQrStt8,182
|
|
19
|
+
pvxslibs/lib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
20
|
+
pvxslibs/lib/event_core.dll,sha256=jE4fREKA9lBvja3VUooktSWImyfKDUJAxtNq8Qq-7Pg,199168
|
|
21
|
+
pvxslibs/lib/event_core.exp,sha256=5SGi7xgIw33jeeHk58AVo5-tOFlZdlAAYXnvSvnODy8,52056
|
|
22
|
+
pvxslibs/lib/event_core.lib,sha256=fNJv5-A9qhmUaUNHBft2wvQ8DVO_VO7jkJ3V1ct1NgI,87182
|
|
23
|
+
pvxslibs/lib/event_core_dsoinfo.py,sha256=H0HQPHx7pnRhQ6fkEj-yJEfTEkj9GaA1mx-kW_fOhFk,351
|
|
24
|
+
pvxslibs/lib/pvxs.dll,sha256=sC5dCCGH4Retjk5osB1ByEmsLOWGyeh-CreVfIvMJ5I,897024
|
|
25
|
+
pvxslibs/lib/pvxs.exp,sha256=R_gCz5DwGMqMtRfM24uO8qjqQ4Ywl-28LqLgyf5VFt0,157612
|
|
26
|
+
pvxslibs/lib/pvxs.lib,sha256=knpoVMBcend_62oPbp9MxY_YITtRfGWnkks7D2nzkKM,257360
|
|
27
|
+
pvxslibs/lib/pvxsIoc.dll,sha256=Pb0jipayNIy4cA9FN6ovgSb9HQPWznod4QrNTB2K2_I,226304
|
|
28
|
+
pvxslibs/lib/pvxsIoc.exp,sha256=jMp6Oze2YPojgPBsPtmIeN1PfRgMjJGoW-Hh9aoJOhc,2217
|
|
29
|
+
pvxslibs/lib/pvxsIoc.lib,sha256=NlNtGYLRii-VXO2BBdJCg4W9IjHFmAxXxScQd6DMf30,3798
|
|
30
|
+
pvxslibs/lib/pvxsIoc_dsoinfo.py,sha256=4IZCE1G5oVQ5UhQVD42R8aF1r7Etztq851ZWWvEtHpI,471
|
|
31
|
+
pvxslibs/lib/pvxs_dsoinfo.py,sha256=qmYxkZldQ5Yzw5_PMqlmFpmODXGTKv0ZU8CqFBLpEZI,383
|
|
32
|
+
pvxslibs/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
33
|
+
pvxslibs/test/test_load.py,sha256=G06DLRJlk_mvGGBnm0kNmAo7HKlRBiuAYPk6rnWhZB4,1025
|
|
34
|
+
pvxslibs-1.2.0a1.dist-info/LICENSE,sha256=-ROhoot-GxWl5VV-rFFE_1K-41MEQzGJQvSSvyf6ntc,1525
|
|
35
|
+
pvxslibs-1.2.0a1.dist-info/METADATA,sha256=TaVjCgBWcXFhndjdgOKLZ1xA8NogVSfdCZCK6GBJ__U,1238
|
|
36
|
+
pvxslibs-1.2.0a1.dist-info/WHEEL,sha256=jrOhEbqKwvzRFSJcbYXlJCyVkgVdHg4_7__YHrdTUfw,102
|
|
37
|
+
pvxslibs-1.2.0a1.dist-info/top_level.txt,sha256=RixlMjBFoSBZhAgzdvurnG0N681VoNV0ikf00-HgXFM,9
|
|
38
|
+
pvxslibs-1.2.0a1.dist-info/RECORD,,
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
pvxslibs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
-
pvxslibs/path.py,sha256=Dom8mJoqA4iRv1nBiJPptF1bdm5iIGtPpMQsFeBtJNI,209
|
|
3
|
-
pvxslibs/version.py,sha256=idyj3WCiCjGJGRvPqLE_TNfd5Gzxnx4c8pxGO0_AejI,1016
|
|
4
|
-
pvxslibs/include/pvxs/client.h,sha256=V-oXejPnu99DfNHAobH8x1HqnjTi0WWCfJsCij_5PMM,37753
|
|
5
|
-
pvxslibs/include/pvxs/data.h,sha256=xe38UJCGhrkMd_i2T8G-PTb_cKco-zMFRe1rSh4JKkI,29518
|
|
6
|
-
pvxslibs/include/pvxs/log.h,sha256=rnPEl1vTOBqf6vnYQFBafiPVYx2FlmRSvbDUMYO-0s0,5107
|
|
7
|
-
pvxslibs/include/pvxs/netcommon.h,sha256=a3BTAYYD5nGfqXmZWq0kk91b0SEAhd4jPS2HjFVSDdw,1860
|
|
8
|
-
pvxslibs/include/pvxs/nt.h,sha256=q-RM2Fb5zp6aMBrspb9DDrnBNcmVmCKX8wcLLFMrtnQ,3641
|
|
9
|
-
pvxslibs/include/pvxs/server.h,sha256=98M0iH4fzt8X-UMpewKB1I_Mz0qHr7pDM49dxaK79jc,7920
|
|
10
|
-
pvxslibs/include/pvxs/sharedArray.h,sha256=BMW9Ea1YjtpgnXEiQg_3SbL5mAG5On9uLvLLRxpSMlQ,24494
|
|
11
|
-
pvxslibs/include/pvxs/sharedpv.h,sha256=k6LasQsMrpHTPa9DasXKvWTppqwVZJ9vBHj8P5Q-9Cw,4264
|
|
12
|
-
pvxslibs/include/pvxs/source.h,sha256=zMRqvIbOQ_kdHIi1xi5NwLPRabRROjvF-T3RGaBi374,10424
|
|
13
|
-
pvxslibs/include/pvxs/srvcommon.h,sha256=kMNQRiMka-laIyIUPlBWNRDndVyISB3V0ujNrFzMdVQ,4238
|
|
14
|
-
pvxslibs/include/pvxs/unittest.h,sha256=MCBt3J2toaHJoD27keDP1osRS99ZMoeRHKNe0pk_gVg,10372
|
|
15
|
-
pvxslibs/include/pvxs/util.h,sha256=pDmS-ogaTrRVksjmMSG6hj2hFEUcMKZnCMHgKdM2p-A,8901
|
|
16
|
-
pvxslibs/include/pvxs/version.h,sha256=_vZXcm-UIOqNnqWqR7JW7CFYH2LNL5uY9AJQcUnR1l0,2818
|
|
17
|
-
pvxslibs/include/pvxs/versionNum.h,sha256=3BKOUlcr0oeh6Ks8ufkBsXt-VxyDpSPm_SsJVHVFuIg,182
|
|
18
|
-
pvxslibs/lib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
19
|
-
pvxslibs/lib/event_core.dll,sha256=m6L19aL_Mtbg_8_ui3nZb4gi_TkhikNc8E7XvpNXsbE,197632
|
|
20
|
-
pvxslibs/lib/event_core.exp,sha256=QQOXspi12dm2idJnJw-mfmjb_m2ys6k9wYMkXMdkdd8,51896
|
|
21
|
-
pvxslibs/lib/event_core.lib,sha256=clFyM1MJ0jgDPQSn_05tr9-feBkzUWKkd7MvPuLm5uY,86914
|
|
22
|
-
pvxslibs/lib/event_core_dsoinfo.py,sha256=H0HQPHx7pnRhQ6fkEj-yJEfTEkj9GaA1mx-kW_fOhFk,351
|
|
23
|
-
pvxslibs/lib/pvxs.dll,sha256=INYz6qymbhP0jU-LvPZPOhDCCOuS7aa9Ydm97iaYanY,888832
|
|
24
|
-
pvxslibs/lib/pvxs.exp,sha256=JlNVkH4PstVcQuK1H_GWMOHzJLPEytyAEVa1GihtLKI,161564
|
|
25
|
-
pvxslibs/lib/pvxs.lib,sha256=w7wHFE0L0SmoD9l3go5V9_E-0dAuD5Ql2l6juj9Kq7k,261372
|
|
26
|
-
pvxslibs/lib/pvxs_dsoinfo.py,sha256=qmYxkZldQ5Yzw5_PMqlmFpmODXGTKv0ZU8CqFBLpEZI,383
|
|
27
|
-
pvxslibs/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
28
|
-
pvxslibs/test/test_load.py,sha256=2ewIzLd2haLXJAMn3xMqJ3fwJd1yFlUQIiKcE6DsE8Y,800
|
|
29
|
-
pvxslibs-1.1.4a1.dist-info/LICENSE,sha256=-ROhoot-GxWl5VV-rFFE_1K-41MEQzGJQvSSvyf6ntc,1525
|
|
30
|
-
pvxslibs-1.1.4a1.dist-info/METADATA,sha256=e1iEklMRQymREggSuhaEMhakX6bUW5EFQHMqUc58TQA,1238
|
|
31
|
-
pvxslibs-1.1.4a1.dist-info/WHEEL,sha256=jrOhEbqKwvzRFSJcbYXlJCyVkgVdHg4_7__YHrdTUfw,102
|
|
32
|
-
pvxslibs-1.1.4a1.dist-info/top_level.txt,sha256=RixlMjBFoSBZhAgzdvurnG0N681VoNV0ikf00-HgXFM,9
|
|
33
|
-
pvxslibs-1.1.4a1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|