This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/liblight/lights.c b/liblight/lights.c | |
index d8f2961..aa6ae74 100644 | |
--- a/liblight/lights.c | |
+++ b/liblight/lights.c | |
@@ -29,6 +29,7 @@ | |
#include <sys/ioctl.h> | |
#include <sys/types.h> | |
+#include <sys/stat.h> | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ repo init -u https://android.googlesource.com/platform/manifest android-4.4_r1 | |
$ repo sync | |
$ cd device/samsung | |
$ git clone https://android.googlesource.com/device/samsung/maguro | |
$ git clone https://android.googlesource.com/device/samsung/tuna | |
$ cd tuna | |
## fix for sensor hal changes | |
$ curl https://gist.github.com/tmyt/7273607 | patch -p1 | |
$ cd ../maguro | |
## add Launcher3 package |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/aosp_maguro.mk b/aosp_maguro.mk | |
index fc1140b..b95b3ca 100644 | |
--- a/aosp_maguro.mk | |
+++ b/aosp_maguro.mk | |
@@ -16,3 +16,7 @@ | |
$(call inherit-product, device/samsung/maguro/full_maguro.mk) | |
PRODUCT_NAME := aosp_maguro | |
+ | |
+PRODUCT_PACKAGES += \ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/libsensors/sensors.cpp b/libsensors/sensors.cpp | |
index 2a33731..08029b1 100644 | |
--- a/libsensors/sensors.cpp | |
+++ b/libsensors/sensors.cpp | |
@@ -80,15 +80,15 @@ static struct sensor_t sSensorList[LOCAL_SENSORS + MPLSensor::numSensors] = { | |
{ "GP2A Light sensor", | |
"Sharp", | |
1, SENSORS_LIGHT_HANDLE, | |
- SENSOR_TYPE_LIGHT, powf(10, 125.0f/ 24.0f) * 4, 1.0f, 0.75f, 0, { } }, | |
+ SENSOR_TYPE_LIGHT, powf(10, 125.0f/ 24.0f) * 4, 1.0f, 0.75f, 0, 0, 0, { } }, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Page | |
x:Class="App31.MainPage" | |
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | |
xmlns:local="using:App31" | |
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" | |
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" | |
xmlns:i="using:App31" | |
xmlns:c="using:App31.Conditions" | |
xmlns:system="using:System" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/dlls/winemac.drv/keyboard.c b/dlls/winemac.drv/keyboard.c | |
index 98d17ba..2c92752 100644 | |
--- a/dlls/winemac.drv/keyboard.c | |
+++ b/dlls/winemac.drv/keyboard.c | |
@@ -236,14 +236,14 @@ static const struct { | |
{ VK_BACK, 0x0E, TRUE }, /* kVK_Delete */ | |
{ 0, 0, FALSE }, /* 0x34 unused */ | |
{ VK_ESCAPE, 0x01, TRUE }, /* kVK_Escape */ | |
- { VK_RMENU, 0x38 | 0x100, TRUE }, /* kVK_RightCommand */ | |
- { VK_LMENU, 0x38, TRUE }, /* kVK_Command */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Profile0] | |
Caption=Default | |
UserName=dummy | |
oauth_token=dummy | |
oauth_token_secret=dummy | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
kazoo04 | |
alstamber | |
ourxz | |
akuraru | |
penguin2716 | |
i315 | |
numa08 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Net; | |
using System.Net.Http; | |
using System.Security.Cryptography; | |
using System.Text; | |
namespace gist.laboratory | |
{ | |
class WsseClientHandler : HttpClientHandler | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <windows.h> | |
#include <dwrite.h> | |
#include <atlcomcli.h> | |
#pragma comment(lib, "dwrite.lib") | |
CComPtr<IDWriteFactory> pFactory; | |
int main() | |
{ |