TclPKCS11

Check-in [66f35eca87]
Login
Overview
Comment:Removed old define
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 66f35eca8784b85566e316d54615cdea974b0eebac767f1b128f5ca888113f25
User & Date: rkeene on 2010-10-10 21:38:31
Other Links: manifest | tags
Context
2010-10-10
22:21
Added Win32 build script check-in: c755f4d2a4 user: rkeene tags: trunk
21:38
Removed old define check-in: 66f35eca87 user: rkeene tags: trunk
19:10
Updated to create a pkgIndex.tcl from the configure script check-in: b579486d80 user: rkeene tags: trunk
Changes

Modified tclpkcs11.c from [428601fccc] to [bb3f293081].

29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#define CK_PTR *
#define CK_DECLARE_FUNCTION(rv, func) rv func
#define CK_DECLARE_FUNCTION_POINTER(rv, func) rv (CK_PTR func)
#define CK_CALLBACK_FUNCTION(rv, func) CK_DECLARE_FUNCTION_POINTER(rv, func)
#define CK_NULL_PTR ((void *) 0)
#include "pkcs11.h"

#ifndef TCLPKCS11_MAX_HANDLES
#  define TCLPKCS11_MAX_HANDLES 32
#endif

struct tclpkcs11_interpdata {
	/* Handle Hash Table */
	Tcl_HashTable handles;
	unsigned long handles_idx;
};

struct tclpkcs11_handle {







<
<
<
<







29
30
31
32
33
34
35




36
37
38
39
40
41
42
#define CK_PTR *
#define CK_DECLARE_FUNCTION(rv, func) rv func
#define CK_DECLARE_FUNCTION_POINTER(rv, func) rv (CK_PTR func)
#define CK_CALLBACK_FUNCTION(rv, func) CK_DECLARE_FUNCTION_POINTER(rv, func)
#define CK_NULL_PTR ((void *) 0)
#include "pkcs11.h"





struct tclpkcs11_interpdata {
	/* Handle Hash Table */
	Tcl_HashTable handles;
	unsigned long handles_idx;
};

struct tclpkcs11_handle {