Sha256: 807d88afee963c5a62569a7ae9d80c2b7c72db2e563c057a9fa57b8973285734

Contents?: true

Size: 999 Bytes

Versions: 13

Compression:

Stored size: 999 Bytes

Contents

/*
 * Copyright (c) 2008 Wayne Meissner. All rights reserved.
 * 
 * All rights reserved.
 *
 * This file is part of ruby-ffi.
 *
 * This code is free software: you can redistribute it and/or modify it under
 * the terms of the GNU Lesser General Public License version 3 only, as
 * published by the Free Software Foundation.
 *
 * This code is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License
 * version 3 for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * version 3 along with this work.  If not, see <http://www.gnu.org/licenses/>.
 */

#if defined(_WIN32) || defined(__WIN32__)
# include <windows.h>
#else
# include <errno.h>
#endif

int setLastError(int error) {
#if defined(_WIN32) || defined(__WIN32__)
    SetLastError(error);
#else
    errno = error;
#endif
    return -1;
}

Version data entries

13 entries across 13 versions & 2 rubygems

Version Path
sunrise-cms-0.5.0.rc1 vendor/bundle/ruby/1.9.1/gems/ffi-1.2.0/libtest/LastErrorTest.c
ffi-1.2.1-x86-mingw32 libtest/LastErrorTest.c
ffi-1.2.1 libtest/LastErrorTest.c
ffi-1.2.0-x86-mingw32 libtest/LastErrorTest.c
ffi-1.2.0 libtest/LastErrorTest.c
ffi-1.2.0.pre6-x86-mingw32 libtest/LastErrorTest.c
ffi-1.2.0.pre6 libtest/LastErrorTest.c
ffi-1.2.0.pre5 libtest/LastErrorTest.c
ffi-1.2.0.pre4 libtest/LastErrorTest.c
ffi-1.2.0.pre3-x86-mingw32 libtest/LastErrorTest.c
ffi-1.2.0.pre3 libtest/LastErrorTest.c
ffi-1.2.0.pre2-x86-mingw32 libtest/LastErrorTest.c
ffi-1.2.0.pre2 libtest/LastErrorTest.c