mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-26 02:17:34 +09:00
Compare commits
No commits in common. "77223e1f58659a00f709e79c7a3a2577e175b484" and "e0cfbf239a9d0690a7a5e340b0e1916342aca3c3" have entirely different histories.
77223e1f58
...
e0cfbf239a
4 changed files with 11 additions and 3 deletions
|
|
@ -9,7 +9,7 @@
|
|||
#define GK_SLICE Gecko/20100101
|
||||
#define FX_SLICE Firefox/@GK_VERSION@
|
||||
|
||||
#define PALE_MOON_VERSION 34.3.1
|
||||
#define PALE_MOON_VERSION 34.2.0
|
||||
#define PALE_MOON_SLICE PaleMoon/@PALE_MOON_VERSION@
|
||||
|
||||
// %OS_SLICE% macro is resolved at runtime, see MoonchildProductions/UXP/issues/1473
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
52.13.3
|
||||
52.13.2
|
||||
|
|
@ -1 +1 @@
|
|||
13.3
|
||||
13.2
|
||||
|
|
@ -9,6 +9,14 @@
|
|||
#include "secerr.h"
|
||||
#include "secasn1.h" /* for SEC_ASN1GetSubtemplate */
|
||||
|
||||
#if defined(_WIN32) && !defined(_WIN64)
|
||||
static __inline void* Win2000_EncodePointer(void* p) { return p; }
|
||||
static __inline void* Win2000_DecodePointer(void* p) { return p; }
|
||||
|
||||
#define EncodePointer(p) Win2000_EncodePointer(p)
|
||||
#define DecodePointer(p) Win2000_DecodePointer(p)
|
||||
#endif
|
||||
|
||||
/*
|
||||
* simple definite-length ASN.1 decoder
|
||||
*/
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue