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