tahoma2d/toonz/sources/include/toonz4.6/toonzparam.h
2016-05-17 00:04:11 +09:00

14 lines
209 B
C

#pragma once
#ifndef _TOONZPARAM_H__
#define _TOONZPARAM_H__
#ifdef WIN32
#include <stdlib.h>
#define TOONZMAXPATHLEN _MAX_PATH
#else
#include <sys/param.h>
#define TOONZMAXPATHLEN MAXPATHLEN
#endif
#endif