mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 15:51:11 +00:00
11 lines
151 B
C
11 lines
151 B
C
|
#include <windows.h>
|
||
|
|
||
|
//VC7 or later, building with pre-VC7 runtime libraries
|
||
|
long
|
||
|
_ftol2 (double dblSource)
|
||
|
{
|
||
|
return _ftol (dblSource);
|
||
|
}
|
||
|
|
||
|
|