Added patch to implement iphlpapi stub functions.

This commit is contained in:
Sebastian Lackner
2014-10-27 02:54:48 +01:00
parent 1349af11e7
commit 26699042ab
7 changed files with 127 additions and 3 deletions

View File

@@ -104,7 +104,7 @@ index 0000000..91b0c3d
+ x & 3, y & 3, &color);
+ if (alpha)
+ {
+ dst_line[x] = (color & 0xff00FF00) | ((color & 0xff) << 16) |
+ dst_line[x] = (color & 0xff00ff00) | ((color & 0xff) << 16) |
+ ((color & 0xff0000) >> 16);
+ }
+ else
@@ -142,7 +142,7 @@ index 0000000..91b0c3d
+ color = src_line[x];
+ if (alpha)
+ {
+ dst_line[x] = (color & 0xff00FF00) | ((color & 0xff) << 16) |
+ dst_line[x] = (color & 0xff00ff00) | ((color & 0xff) << 16) |
+ ((color & 0xff0000) >> 16);
+ }
+ else