mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 18:39:54 +00:00
gst/gst_private.h: add win32 specific import decoration(__declspec(dllimport)) for all extern GstDebugCategory * vari...
Original commit message from CVS: * gst/gst_private.h: add win32 specific import decoration(__declspec(dllimport)) for all extern GstDebugCategory * variables * win32/common/libgstbase.def: * win32/common/libgstcontroller.def: * win32/common/libgstreamer.def: Add some exports, remove empty lines * win32/common/libgstdataprotocol.def: * win32/common/libgstdataprotocol.dsp: * win32/common/libgstnet.def: * win32/common/libgstnet.dsp: new project files and exportation files added
This commit is contained in:
parent
ef30ca111a
commit
93ff4560cc
10 changed files with 1135 additions and 770 deletions
15
ChangeLog
15
ChangeLog
|
@ -1,3 +1,18 @@
|
|||
2006-03-19 Sebastien Moutte <sebastien@moutte.net>
|
||||
|
||||
* gst/gst_private.h:
|
||||
add win32 specific import decoration(__declspec(dllimport))
|
||||
for all extern GstDebugCategory * variables
|
||||
* win32/common/libgstbase.def:
|
||||
* win32/common/libgstcontroller.def:
|
||||
* win32/common/libgstreamer.def:
|
||||
Add some exports, remove empty lines
|
||||
* win32/common/libgstdataprotocol.def:
|
||||
* win32/common/libgstdataprotocol.dsp:
|
||||
* win32/common/libgstnet.def:
|
||||
* win32/common/libgstnet.dsp:
|
||||
new project files and exportation files added
|
||||
|
||||
2006-03-19 Wim Taymans <wim@fluendo.com>
|
||||
|
||||
* tests/check/libs/basesrc.c: (eos_event_counter):
|
||||
|
|
|
@ -45,36 +45,42 @@ gboolean __gst_in_valgrind (void);
|
|||
|
||||
#ifndef GST_DISABLE_GST_DEBUG
|
||||
|
||||
#ifndef WIN32
|
||||
#define IMPORT_SYMBOL
|
||||
#else
|
||||
#define IMPORT_SYMBOL __declspec(dllimport)
|
||||
#endif
|
||||
|
||||
#include <gst/gstinfo.h>
|
||||
|
||||
extern GstDebugCategory *GST_CAT_GST_INIT;
|
||||
extern GstDebugCategory *GST_CAT_AUTOPLUG;
|
||||
extern GstDebugCategory *GST_CAT_AUTOPLUG_ATTEMPT;
|
||||
extern GstDebugCategory *GST_CAT_PARENTAGE;
|
||||
extern GstDebugCategory *GST_CAT_STATES;
|
||||
extern GstDebugCategory *GST_CAT_SCHEDULING;
|
||||
extern GstDebugCategory *GST_CAT_BUFFER;
|
||||
extern GstDebugCategory *GST_CAT_BUS;
|
||||
extern GstDebugCategory *GST_CAT_CAPS;
|
||||
extern GstDebugCategory *GST_CAT_CLOCK;
|
||||
extern GstDebugCategory *GST_CAT_ELEMENT_PADS;
|
||||
extern GstDebugCategory *GST_CAT_PADS;
|
||||
extern GstDebugCategory *GST_CAT_PIPELINE;
|
||||
extern GstDebugCategory *GST_CAT_PLUGIN_LOADING;
|
||||
extern GstDebugCategory *GST_CAT_PLUGIN_INFO;
|
||||
extern GstDebugCategory *GST_CAT_PROPERTIES;
|
||||
extern GstDebugCategory *GST_CAT_XML;
|
||||
extern GstDebugCategory *GST_CAT_NEGOTIATION;
|
||||
extern GstDebugCategory *GST_CAT_REFCOUNTING;
|
||||
extern GstDebugCategory *GST_CAT_ERROR_SYSTEM;
|
||||
extern GstDebugCategory *GST_CAT_EVENT;
|
||||
extern GstDebugCategory *GST_CAT_MESSAGE;
|
||||
extern GstDebugCategory *GST_CAT_PARAMS;
|
||||
extern GstDebugCategory *GST_CAT_CALL_TRACE;
|
||||
extern GstDebugCategory *GST_CAT_SIGNAL;
|
||||
extern GstDebugCategory *GST_CAT_PROBE;
|
||||
extern GstDebugCategory *GST_CAT_REGISTRY;
|
||||
extern GstDebugCategory *GST_CAT_QOS;
|
||||
extern IMPORT_SYMBOL GstDebugCategory *GST_CAT_GST_INIT;
|
||||
extern IMPORT_SYMBOL GstDebugCategory *GST_CAT_AUTOPLUG;
|
||||
extern IMPORT_SYMBOL GstDebugCategory *GST_CAT_AUTOPLUG_ATTEMPT;
|
||||
extern IMPORT_SYMBOL GstDebugCategory *GST_CAT_PARENTAGE;
|
||||
extern IMPORT_SYMBOL GstDebugCategory *GST_CAT_STATES;
|
||||
extern IMPORT_SYMBOL GstDebugCategory *GST_CAT_SCHEDULING;
|
||||
extern IMPORT_SYMBOL GstDebugCategory *GST_CAT_BUFFER;
|
||||
extern IMPORT_SYMBOL GstDebugCategory *GST_CAT_BUS;
|
||||
extern IMPORT_SYMBOL GstDebugCategory *GST_CAT_CAPS;
|
||||
extern IMPORT_SYMBOL GstDebugCategory *GST_CAT_CLOCK;
|
||||
extern IMPORT_SYMBOL GstDebugCategory *GST_CAT_ELEMENT_PADS;
|
||||
extern IMPORT_SYMBOL GstDebugCategory *GST_CAT_PADS;
|
||||
extern IMPORT_SYMBOL GstDebugCategory *GST_CAT_PIPELINE;
|
||||
extern IMPORT_SYMBOL GstDebugCategory *GST_CAT_PLUGIN_LOADING;
|
||||
extern IMPORT_SYMBOL GstDebugCategory *GST_CAT_PLUGIN_INFO;
|
||||
extern IMPORT_SYMBOL GstDebugCategory *GST_CAT_PROPERTIES;
|
||||
extern IMPORT_SYMBOL GstDebugCategory *GST_CAT_XML;
|
||||
extern IMPORT_SYMBOL GstDebugCategory *GST_CAT_NEGOTIATION;
|
||||
extern IMPORT_SYMBOL GstDebugCategory *GST_CAT_REFCOUNTING;
|
||||
extern IMPORT_SYMBOL GstDebugCategory *GST_CAT_ERROR_SYSTEM;
|
||||
extern IMPORT_SYMBOL GstDebugCategory *GST_CAT_EVENT;
|
||||
extern IMPORT_SYMBOL GstDebugCategory *GST_CAT_MESSAGE;
|
||||
extern IMPORT_SYMBOL GstDebugCategory *GST_CAT_PARAMS;
|
||||
extern IMPORT_SYMBOL GstDebugCategory *GST_CAT_CALL_TRACE;
|
||||
extern IMPORT_SYMBOL GstDebugCategory *GST_CAT_SIGNAL;
|
||||
extern IMPORT_SYMBOL GstDebugCategory *GST_CAT_PROBE;
|
||||
extern IMPORT_SYMBOL GstDebugCategory *GST_CAT_REGISTRY;
|
||||
extern IMPORT_SYMBOL GstDebugCategory *GST_CAT_QOS;
|
||||
|
||||
#else
|
||||
|
||||
|
|
|
@ -1,46 +1,46 @@
|
|||
EXPORTS
|
||||
gst_adapter_new
|
||||
gst_adapter_clear
|
||||
gst_adapter_push
|
||||
gst_adapter_peek
|
||||
gst_adapter_flush
|
||||
gst_adapter_take
|
||||
gst_adapter_available
|
||||
gst_adapter_available_fast
|
||||
gst_adapter_clear
|
||||
gst_adapter_flush
|
||||
gst_adapter_get_type
|
||||
gst_base_sink_get_type
|
||||
gst_base_sink_set_sync
|
||||
gst_base_sink_get_sync
|
||||
gst_base_sink_set_max_lateness
|
||||
gst_adapter_peek
|
||||
gst_adapter_push
|
||||
gst_adapter_take
|
||||
gst_base_sink_get_max_lateness
|
||||
gst_base_sink_get_sync
|
||||
gst_base_sink_get_type
|
||||
gst_base_sink_set_max_lateness
|
||||
gst_base_sink_set_sync
|
||||
gst_base_src_get_type
|
||||
gst_base_src_set_live
|
||||
gst_base_src_is_live
|
||||
gst_base_src_set_format
|
||||
gst_base_src_set_live
|
||||
gst_base_transform_get_type
|
||||
gst_base_transform_is_in_place
|
||||
gst_base_transform_is_passthrough
|
||||
gst_base_transform_is_qos_enabled
|
||||
gst_base_transform_set_in_place
|
||||
gst_base_transform_set_passthrough
|
||||
gst_base_transform_is_passthrough
|
||||
gst_base_transform_set_in_place
|
||||
gst_base_transform_is_in_place
|
||||
gst_base_transform_update_qos
|
||||
gst_base_transform_set_qos_enabled
|
||||
gst_base_transform_is_qos_enabled
|
||||
gst_collect_pads_get_type
|
||||
gst_collect_pads_new
|
||||
gst_collect_pads_set_function
|
||||
gst_base_transform_set_qos_enabled
|
||||
gst_base_transform_update_qos
|
||||
gst_collect_pads_add_pad
|
||||
gst_collect_pads_remove_pad
|
||||
gst_collect_pads_is_active
|
||||
gst_collect_pads_collect
|
||||
gst_collect_pads_collect_range
|
||||
gst_collect_pads_start
|
||||
gst_collect_pads_stop
|
||||
gst_collect_pads_available
|
||||
gst_collect_pads_collect
|
||||
gst_collect_pads_collect_range
|
||||
gst_collect_pads_flush
|
||||
gst_collect_pads_get_type
|
||||
gst_collect_pads_is_active
|
||||
gst_collect_pads_new
|
||||
gst_collect_pads_peek
|
||||
gst_collect_pads_pop
|
||||
gst_collect_pads_available
|
||||
gst_collect_pads_read
|
||||
gst_collect_pads_flush
|
||||
gst_collect_pads_remove_pad
|
||||
gst_collect_pads_set_function
|
||||
gst_collect_pads_start
|
||||
gst_collect_pads_stop
|
||||
gst_push_src_get_type
|
||||
gst_type_find_helper
|
||||
gst_type_find_helper_for_buffer
|
||||
gst_type_find_helper_get_range
|
||||
gst_type_find_helper_get_range
|
|
@ -1,26 +1,25 @@
|
|||
EXPORTS
|
||||
gst_controller_init
|
||||
gst_controller_new
|
||||
gst_controller_new_list
|
||||
gst_controller_new_valist
|
||||
gst_controller_remove_properties
|
||||
gst_controller_remove_properties_list
|
||||
gst_controller_remove_properties_valist
|
||||
gst_controller_set
|
||||
gst_controller_set_from_list
|
||||
gst_controller_unset
|
||||
gst_controller_get
|
||||
gst_controller_get_all
|
||||
gst_controller_sync_values
|
||||
gst_controller_get_value_arrays
|
||||
gst_controller_get_value_array
|
||||
gst_controller_get
|
||||
gst_controller_get_all
|
||||
gst_controller_get_type
|
||||
gst_controller_get_value_array
|
||||
gst_controller_get_value_arrays
|
||||
gst_controller_new
|
||||
gst_controller_new_list
|
||||
gst_controller_new_valist
|
||||
gst_controller_remove_properties
|
||||
gst_controller_remove_properties_list
|
||||
gst_controller_remove_properties_valist
|
||||
gst_controller_set
|
||||
gst_controller_set_from_list
|
||||
gst_controller_set_interpolation_mode
|
||||
gst_controller_get_type
|
||||
gst_object_control_properties
|
||||
gst_object_uncontrol_properties
|
||||
gst_object_get_controller
|
||||
gst_object_set_controller
|
||||
gst_controller_sync_values
|
||||
gst_controller_unset
|
||||
gst_object_control_properties
|
||||
gst_object_get_controller
|
||||
gst_object_get_value_array
|
||||
gst_object_get_value_arrays
|
||||
gst_object_set_controller
|
||||
gst_object_sync_values
|
||||
gst_object_get_value_arrays
|
||||
gst_object_get_value_array
|
||||
|
||||
gst_object_uncontrol_properties
|
9
win32/common/libgstdataprotocol.def
Normal file
9
win32/common/libgstdataprotocol.def
Normal file
|
@ -0,0 +1,9 @@
|
|||
EXPORTS
|
||||
gst_dp_buffer_from_header
|
||||
gst_dp_caps_from_packet
|
||||
gst_dp_event_from_packet
|
||||
gst_dp_header_payload_length
|
||||
gst_dp_header_payload_type
|
||||
gst_dp_validate_header
|
||||
gst_dp_validate_packet
|
||||
gst_dp_validate_payload
|
5
win32/common/libgstnet.def
Normal file
5
win32/common/libgstnet.def
Normal file
|
@ -0,0 +1,5 @@
|
|||
EXPORTS
|
||||
gst_net_client_clock_get_type
|
||||
gst_net_client_clock_new
|
||||
gst_net_time_provider_get_type
|
||||
gst_net_time_provider_new
|
File diff suppressed because it is too large
Load diff
|
@ -3,7 +3,7 @@ Microsoft Developer Studio Workspace File, Format Version 6.00
|
|||
|
||||
###############################################################################
|
||||
|
||||
Project: "grammar"=.\grammar.dsp - Package Owner=<4>
|
||||
Project: "grammar"=".\grammar.dsp" - Package Owner=<4>
|
||||
|
||||
Package=<5>
|
||||
{{{
|
||||
|
@ -15,7 +15,7 @@ Package=<4>
|
|||
|
||||
###############################################################################
|
||||
|
||||
Project: "gst_inspect"=.\gst_inspect.dsp - Package Owner=<4>
|
||||
Project: "gst_inspect"=".\gst_inspect.dsp" - Package Owner=<4>
|
||||
|
||||
Package=<5>
|
||||
{{{
|
||||
|
@ -30,7 +30,7 @@ Package=<4>
|
|||
|
||||
###############################################################################
|
||||
|
||||
Project: "gst_launch"=.\gst_launch.dsp - Package Owner=<4>
|
||||
Project: "gst_launch"=".\gst_launch.dsp" - Package Owner=<4>
|
||||
|
||||
Package=<5>
|
||||
{{{
|
||||
|
@ -45,7 +45,7 @@ Package=<4>
|
|||
|
||||
###############################################################################
|
||||
|
||||
Project: "libgstbase"=.\libgstbase.dsp - Package Owner=<4>
|
||||
Project: "libgstbase"=".\libgstbase.dsp" - Package Owner=<4>
|
||||
|
||||
Package=<5>
|
||||
{{{
|
||||
|
@ -60,7 +60,7 @@ Package=<4>
|
|||
|
||||
###############################################################################
|
||||
|
||||
Project: "libgstcontroller"=.\libgstcontroller.dsp - Package Owner=<4>
|
||||
Project: "libgstcontroller"=".\libgstcontroller.dsp" - Package Owner=<4>
|
||||
|
||||
Package=<5>
|
||||
{{{
|
||||
|
@ -75,7 +75,7 @@ Package=<4>
|
|||
|
||||
###############################################################################
|
||||
|
||||
Project: "libgstcoreelements"=.\libgstcoreelements.dsp - Package Owner=<4>
|
||||
Project: "libgstcoreelements"=".\libgstcoreelements.dsp" - Package Owner=<4>
|
||||
|
||||
Package=<5>
|
||||
{{{
|
||||
|
@ -93,7 +93,37 @@ Package=<4>
|
|||
|
||||
###############################################################################
|
||||
|
||||
Project: "libgstreamer"=.\libgstreamer.dsp - Package Owner=<4>
|
||||
Project: "libgstdataprotocol"=".\libgstdataprotocol.dsp" - Package Owner=<4>
|
||||
|
||||
Package=<5>
|
||||
{{{
|
||||
}}}
|
||||
|
||||
Package=<4>
|
||||
{{{
|
||||
Begin Project Dependency
|
||||
Project_Dep_Name libgstreamer
|
||||
End Project Dependency
|
||||
}}}
|
||||
|
||||
###############################################################################
|
||||
|
||||
Project: "libgstnet"=".\libgstnet.dsp" - Package Owner=<4>
|
||||
|
||||
Package=<5>
|
||||
{{{
|
||||
}}}
|
||||
|
||||
Package=<4>
|
||||
{{{
|
||||
Begin Project Dependency
|
||||
Project_Dep_Name libgstreamer
|
||||
End Project Dependency
|
||||
}}}
|
||||
|
||||
###############################################################################
|
||||
|
||||
Project: "libgstreamer"=".\libgstreamer.dsp" - Package Owner=<4>
|
||||
|
||||
Package=<5>
|
||||
{{{
|
||||
|
|
125
win32/vs6/libgstdataprotocol.dsp
Normal file
125
win32/vs6/libgstdataprotocol.dsp
Normal file
|
@ -0,0 +1,125 @@
|
|||
# Microsoft Developer Studio Project File - Name="libgstdataprotocol" - Package Owner=<4>
|
||||
# Microsoft Developer Studio Generated Build File, Format Version 6.00
|
||||
# ** DO NOT EDIT **
|
||||
|
||||
# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102
|
||||
|
||||
CFG=libgstdataprotocol - Win32 Debug
|
||||
!MESSAGE This is not a valid makefile. To build this project using NMAKE,
|
||||
!MESSAGE use the Export Makefile command and run
|
||||
!MESSAGE
|
||||
!MESSAGE NMAKE /f "libgstdataprotocol.mak".
|
||||
!MESSAGE
|
||||
!MESSAGE You can specify a configuration when running NMAKE
|
||||
!MESSAGE by defining the macro CFG on the command line. For example:
|
||||
!MESSAGE
|
||||
!MESSAGE NMAKE /f "libgstdataprotocol.mak" CFG="libgstdataprotocol - Win32 Debug"
|
||||
!MESSAGE
|
||||
!MESSAGE Possible choices for configuration are:
|
||||
!MESSAGE
|
||||
!MESSAGE "libgstdataprotocol - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library")
|
||||
!MESSAGE "libgstdataprotocol - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library")
|
||||
!MESSAGE
|
||||
|
||||
# Begin Project
|
||||
# PROP AllowPerConfigDependencies 0
|
||||
# PROP Scc_ProjName ""
|
||||
# PROP Scc_LocalPath ""
|
||||
CPP=cl.exe
|
||||
MTL=midl.exe
|
||||
RSC=rc.exe
|
||||
|
||||
!IF "$(CFG)" == "libgstdataprotocol - Win32 Release"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 0
|
||||
# PROP BASE Output_Dir "Release"
|
||||
# PROP BASE Intermediate_Dir "Release"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 0
|
||||
# PROP Output_Dir "Release"
|
||||
# PROP Intermediate_Dir "Release"
|
||||
# PROP Ignore_Export_Lib 0
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "LIBGSTDATAPROTOCOL_EXPORTS" /YX /FD /c
|
||||
# ADD CPP /nologo /MT /W3 /GX /O2 /I "../.." /I "../../libs" /I "../common" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "LIBGSTDATAPROTOCOL_EXPORTS" /D "HAVE_CONFIG_H" /YX /FD /c
|
||||
# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32
|
||||
# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32
|
||||
# ADD BASE RSC /l 0x409 /d "NDEBUG"
|
||||
# ADD RSC /l 0x409 /d "NDEBUG"
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LINK32=link.exe
|
||||
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386
|
||||
# ADD LINK32 glib-2.0.lib gobject-2.0.lib gthread-2.0.lib gmodule-2.0.lib /nologo /dll /machine:I386 /out:"Release/libgstdataprotocol-0.10.dll"
|
||||
# Begin Special Build Tool
|
||||
TargetPath=.\Release\libgstdataprotocol-0.10.dll
|
||||
SOURCE="$(InputPath)"
|
||||
PostBuild_Cmds=copy /Y $(TargetPath) c:\gstreamer\bin
|
||||
# End Special Build Tool
|
||||
|
||||
!ELSEIF "$(CFG)" == "libgstdataprotocol - Win32 Debug"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 1
|
||||
# PROP BASE Output_Dir "Debug"
|
||||
# PROP BASE Intermediate_Dir "Debug"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 1
|
||||
# PROP Output_Dir "Debug"
|
||||
# PROP Intermediate_Dir "Debug"
|
||||
# PROP Ignore_Export_Lib 0
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "LIBGSTDATAPROTOCOL_EXPORTS" /YX /FD /GZ /c
|
||||
# ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /I "../.." /I "../../libs" /I "../common" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "LIBGSTDATAPROTOCOL_EXPORTS" /D "HAVE_CONFIG_H" /YX /FD /GZ /c
|
||||
# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32
|
||||
# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32
|
||||
# ADD BASE RSC /l 0x409 /d "_DEBUG"
|
||||
# ADD RSC /l 0x409 /d "_DEBUG"
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LINK32=link.exe
|
||||
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept
|
||||
# ADD LINK32 glib-2.0D.lib gobject-2.0D.lib gthread-2.0D.lib gmodule-2.0D.lib /nologo /dll /debug /machine:I386 /out:"Debug/libgstdataprotocol-0.10.dll" /pdbtype:sept
|
||||
# Begin Special Build Tool
|
||||
TargetPath=.\Debug\libgstdataprotocol-0.10.dll
|
||||
SOURCE="$(InputPath)"
|
||||
PostBuild_Cmds=copy /Y $(TargetPath) c:\gstreamer\debug\bin
|
||||
# End Special Build Tool
|
||||
|
||||
!ENDIF
|
||||
|
||||
# Begin Target
|
||||
|
||||
# Name "libgstdataprotocol - Win32 Release"
|
||||
# Name "libgstdataprotocol - Win32 Debug"
|
||||
# Begin Group "Source Files"
|
||||
|
||||
# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\libs\gst\dataprotocol\dataprotocol.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\common\libgstdataprotocol.def
|
||||
# End Source File
|
||||
# End Group
|
||||
# Begin Group "Header Files"
|
||||
|
||||
# PROP Default_Filter "h;hpp;hxx;hm;inl"
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\libs\gst\dataprotocol\dataprotocol.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE="..\..\libs\gst\dataprotocol\dp-private.h"
|
||||
# End Source File
|
||||
# End Group
|
||||
# End Target
|
||||
# End Project
|
145
win32/vs6/libgstnet.dsp
Normal file
145
win32/vs6/libgstnet.dsp
Normal file
|
@ -0,0 +1,145 @@
|
|||
# Microsoft Developer Studio Project File - Name="libgstnet" - Package Owner=<4>
|
||||
# Microsoft Developer Studio Generated Build File, Format Version 6.00
|
||||
# ** DO NOT EDIT **
|
||||
|
||||
# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102
|
||||
|
||||
CFG=libgstnet - Win32 Debug
|
||||
!MESSAGE This is not a valid makefile. To build this project using NMAKE,
|
||||
!MESSAGE use the Export Makefile command and run
|
||||
!MESSAGE
|
||||
!MESSAGE NMAKE /f "libgstnet.mak".
|
||||
!MESSAGE
|
||||
!MESSAGE You can specify a configuration when running NMAKE
|
||||
!MESSAGE by defining the macro CFG on the command line. For example:
|
||||
!MESSAGE
|
||||
!MESSAGE NMAKE /f "libgstnet.mak" CFG="libgstnet - Win32 Debug"
|
||||
!MESSAGE
|
||||
!MESSAGE Possible choices for configuration are:
|
||||
!MESSAGE
|
||||
!MESSAGE "libgstnet - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library")
|
||||
!MESSAGE "libgstnet - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library")
|
||||
!MESSAGE
|
||||
|
||||
# Begin Project
|
||||
# PROP AllowPerConfigDependencies 0
|
||||
# PROP Scc_ProjName ""
|
||||
# PROP Scc_LocalPath ""
|
||||
CPP=cl.exe
|
||||
MTL=midl.exe
|
||||
RSC=rc.exe
|
||||
|
||||
!IF "$(CFG)" == "libgstnet - Win32 Release"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 0
|
||||
# PROP BASE Output_Dir "Release"
|
||||
# PROP BASE Intermediate_Dir "Release"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 0
|
||||
# PROP Output_Dir "Release"
|
||||
# PROP Intermediate_Dir "Release"
|
||||
# PROP Ignore_Export_Lib 0
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "LIBGSTNET_EXPORTS" /YX /FD /c
|
||||
# ADD CPP /nologo /MT /W3 /GX /O2 /I "../.." /I "../../libs" /I "../common" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "LIBGSTNET_EXPORTS" /D "HAVE_CONFIG_H" /YX /FD /c
|
||||
# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32
|
||||
# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32
|
||||
# ADD BASE RSC /l 0x409 /d "NDEBUG"
|
||||
# ADD RSC /l 0x409 /d "NDEBUG"
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LINK32=link.exe
|
||||
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386
|
||||
# ADD LINK32 glib-2.0.lib gobject-2.0.lib gthread-2.0.lib gmodule-2.0.lib Ws2_32.lib /nologo /dll /machine:I386 /out:"Release/libgstnet-0.10.dll"
|
||||
# Begin Special Build Tool
|
||||
TargetPath=.\Release\libgstnet-0.10.dll
|
||||
SOURCE="$(InputPath)"
|
||||
PostBuild_Cmds=copy /Y $(TargetPath) c:\gstreamer\bin
|
||||
# End Special Build Tool
|
||||
|
||||
!ELSEIF "$(CFG)" == "libgstnet - Win32 Debug"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 1
|
||||
# PROP BASE Output_Dir "Debug"
|
||||
# PROP BASE Intermediate_Dir "Debug"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 1
|
||||
# PROP Output_Dir "Debug"
|
||||
# PROP Intermediate_Dir "Debug"
|
||||
# PROP Ignore_Export_Lib 0
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "LIBGSTNET_EXPORTS" /YX /FD /GZ /c
|
||||
# ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /I "../.." /I "../../libs" /I "../common" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "LIBGSTNET_EXPORTS" /D "HAVE_CONFIG_H" /YX /FD /GZ /c
|
||||
# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32
|
||||
# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32
|
||||
# ADD BASE RSC /l 0x409 /d "_DEBUG"
|
||||
# ADD RSC /l 0x409 /d "_DEBUG"
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LINK32=link.exe
|
||||
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept
|
||||
# ADD LINK32 glib-2.0D.lib gobject-2.0D.lib gthread-2.0D.lib gmodule-2.0D.lib Ws2_32.lib /nologo /dll /debug /machine:I386 /out:"Debug/libgstnet-0.10.dll" /pdbtype:sept
|
||||
# Begin Special Build Tool
|
||||
TargetPath=.\Debug\libgstnet-0.10.dll
|
||||
SOURCE="$(InputPath)"
|
||||
PostBuild_Cmds=copy /Y $(TargetPath) c:\gstreamer\debug\bin
|
||||
# End Special Build Tool
|
||||
|
||||
!ENDIF
|
||||
|
||||
# Begin Target
|
||||
|
||||
# Name "libgstnet - Win32 Release"
|
||||
# Name "libgstnet - Win32 Debug"
|
||||
# Begin Group "Source Files"
|
||||
|
||||
# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\libs\gst\net\gstnetclientclock.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\libs\gst\net\gstnettimepacket.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\libs\gst\net\gstnettimeprovider.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\common\libgstnet.def
|
||||
# End Source File
|
||||
# End Group
|
||||
# Begin Group "Header Files"
|
||||
|
||||
# PROP Default_Filter "h;hpp;hxx;hm;inl"
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\libs\gst\net\gstnet.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\libs\gst\net\gstnetclientclock.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\libs\gst\net\gstnettimepacket.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\libs\gst\net\gstnettimeprovider.h
|
||||
# End Source File
|
||||
# End Group
|
||||
# Begin Group "Resource Files"
|
||||
|
||||
# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
|
||||
# End Group
|
||||
# End Target
|
||||
# End Project
|
Loading…
Reference in a new issue