You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
330 B
C
19 lines
330 B
C
// Copyright (C) 2006 Davis E. King (davis@dlib.net)
|
|
// License: Boost Software License See LICENSE.txt for the full license.
|
|
#ifndef DLIB_THREADs_KERNEL_
|
|
#define DLIB_THREADs_KERNEL_
|
|
|
|
#include "../platform.h"
|
|
|
|
#ifdef WIN32
|
|
#include "windows.h"
|
|
#endif
|
|
|
|
#ifndef WIN32
|
|
#include "posix.h"
|
|
#endif
|
|
|
|
#endif // DLIB_THREADs_KERNEL_
|
|
|
|
|