Update md

This commit is contained in:
vCaesar 2016-12-11 00:39:59 +08:00
parent c9b0b69650
commit dc65c1f42b
5 changed files with 11 additions and 28 deletions

View File

@ -23,15 +23,15 @@ This is a work in progress.
####ALL:
Golang
//Gcc
//zlib & libpng (bitmap)
####For Mac OS X:
Xcode Command Line Tools
//brew install libpng
//brew install homebrew/dupes/zlib
####For Windows:
MinGW or other GCC
####For everything else:
GCC

View File

@ -24,15 +24,15 @@ RobotGo 支持 Mac, Windows, and Linux(X11).
####ALL:
Golang
//Gcc
//zlib & libpng (bitmap)
####For Mac OS X:
Xcode Command Line Tools
//brew install libpng
//brew install homebrew/dupes/zlib
####For Windows:
MinGW or other GCC
####For everything else(Linux等其他系统):
GCC

View File

@ -1,20 +1 @@
// Copyright 2016 The go-vgo Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://www.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
class BMP
{
public:
size_t width;
size_t height;
size_t byteWidth;
uint8_t bitsPerPixel;
uint8_t bytesPerPixel;
uint8_t *image;
};

View File

@ -1,6 +1,8 @@
// Copyright 2016 The go-vgo Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://www.
// Copyright 2016 The go-vgo Project Developers.
// All Rights Reserved. See the COPYRIGHT file at
// the top-level directory of this distribution and at
// https://github.com/go-vgo/robotgo/blob/master/LICENSE
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license

View File