I used the code above to do try some stuff.
For this section I used dll.c
and exe.c
with __declspec(dllimport)
added via a macro as needed.
var rdeps = { "nodes": [{ "id": "google-deploymentmanager2", "label": "google-deploymentmanager2" },{ "id": "prntvpt-sys", "label": "prntvpt-sys" },{ "id": "quickersort", "label": "quickersort" },{ "id": "netherrack", "label": "netherrack" },{ "id": "pam-auth", "label": "pam-auth" },{ "id": "kuchiki", "label": "kuchiki" },{ "id": "mixpanel", "label": "mixpanel" },{ "id": "k8055", "label": "k8055" },{ "id": "ualapi-sys", "label": "ualapi-sys" },{ "id": "ddp", "label": "ddp" },{ "id": "devenum-sys", "label": "devenum-sys" },{ "id": "cyborg", "label": "cyborg" },{ "id": "mstask-sys", "label": "mstask-sys" },{ "id": "blist", "label": "blist" },{ "id": "piston", "label": "piston" },{ "id": "secstr", "label": "secstr" },{ "id": "quicksort", "label": "quicksort" },{ "id": "rpcrt4-sys", "label": "rpcrt4-sys" },{ "id": "rose_tree", "label": "rose_tree" },{ "id": "twain_32-sys", "label": "twain_32-sys" },{ "id": "scirust", "label": "scirust" },{ "id": "google-sqladmin1_beta4", "label": "google-sqladmin1_beta4" },{ "id" |
// compile: cl /Zl /Ox beep.c /link User32.lib Kernel32.lib /opt:ref,icf /entry:main /SUBSYSTEM:CONSOLE | |
#define WIN32_LEAN_AND_MEAN | |
#include <Windows.h> | |
void main() { | |
MessageBeep(MB_OK); | |
ExitProcess(0); | |
} |
#!/usr/bin/env python2 | |
# | |
# Copyright 2013 Google, Inc. All Rights Reserved. | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# |
param( | |
[String]$Edition = "msvc", | |
[String]$Destination = "C:\Tools\RustNMSVC", | |
[String[]]$Components = @("rustc", "cargo"), | |
[String]$7z = "C:\Program Files\7-Zip\7z.exe", | |
[String]$DownloadUrl = "https://static.rust-lang.org/dist/rust-nightly-x86_64-pc-windows-{0}.tar.gz" | |
) | |
function DownloadFile ($url) { | |
$temp = Temp |
diff --git a/src/lib/libssl/src/crypto/ec/ec_curve.c b/src/lib/libssl/src/crypto/ec/ec_curve.c | |
index 8598ee2..2d539f0 100644 | |
--- a/src/lib/libssl/src/crypto/ec/ec_curve.c | |
+++ b/src/lib/libssl/src/crypto/ec/ec_curve.c | |
@@ -3008,6 +3008,42 @@ static const struct { | |
} | |
}; | |
+static const struct { | |
+ EC_CURVE_DATA h; |
Microsoft (R) COFF/PE Dumper Version 14.00.23026.0 | |
Copyright (C) Microsoft Corporation. All rights reserved. | |
Dump of file rustpg.dll | |
File Type: DLL | |
Section contains the following exports for rustpg.dll |
/*--- waitForKeyElements(): A utility function, for Greasemonkey scripts, | |
that detects and handles AJAXed content. | |
Usage example: | |
waitForKeyElements ( | |
"div.comments" | |
, commentCallbackFunction | |
); |
I hereby claim:
To claim this, I am signing this object:
using System; | |
using System.Diagnostics; | |
using System.Drawing; | |
using System.IO; | |
using System.Linq; | |
using System.Runtime.InteropServices; | |
using reNX; | |
using reNX.NXProperties; | |
using reWZ; | |
using reWZ.WZProperties; |