mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-08-13 09:36:46 +00:00
svn:eol-style properties, and make eol-style consistent in some files.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@5738 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
@@ -223,13 +223,24 @@
|
|||||||
<File RelativePath="socks.h"></File>
|
<File RelativePath="socks.h"></File>
|
||||||
<File RelativePath="config-win32.h"></File>
|
<File RelativePath="config-win32.h"></File>
|
||||||
|
|
||||||
|
|
||||||
</Filter>
|
</Filter>
|
||||||
|
|
||||||
<Filter
|
<Filter
|
||||||
|
|
||||||
Name="Resource Files"
|
Name="Resource Files"
|
||||||
|
|
||||||
Filter="ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
|
Filter="ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
|
||||||
|
|
||||||
>
|
>
|
||||||
|
|
||||||
</Filter>
|
</Filter>
|
||||||
|
|
||||||
</Files>
|
</Files>
|
||||||
|
|
||||||
<Globals>
|
<Globals>
|
||||||
|
|
||||||
</Globals>
|
</Globals>
|
||||||
|
|
||||||
</VisualStudioProject>
|
</VisualStudioProject>
|
||||||
|
|
||||||
|
@@ -1 +1,79 @@
|
|||||||
/**************** BEGIN GUSI CONFIGURATION ****************************
|
/**************** BEGIN GUSI CONFIGURATION ****************************
|
||||||
|
*
|
||||||
|
* GUSI Configuration section generated by GUSI Configurator
|
||||||
|
* last modified: Mon Oct 29 15:41:51 2001
|
||||||
|
*
|
||||||
|
* This section will be overwritten by the next run of Configurator.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#define GUSI_SOURCE
|
||||||
|
#include <GUSIConfig.h>
|
||||||
|
#include <sys/cdefs.h>
|
||||||
|
|
||||||
|
/* Declarations of Socket Factories */
|
||||||
|
|
||||||
|
__BEGIN_DECLS
|
||||||
|
void GUSIwithInetSockets();
|
||||||
|
void GUSIwithLocalSockets();
|
||||||
|
void GUSIwithMTInetSockets();
|
||||||
|
void GUSIwithMTTcpSockets();
|
||||||
|
void GUSIwithMTUdpSockets();
|
||||||
|
void GUSIwithOTInetSockets();
|
||||||
|
void GUSIwithOTTcpSockets();
|
||||||
|
void GUSIwithOTUdpSockets();
|
||||||
|
void GUSIwithPPCSockets();
|
||||||
|
void GUSISetupFactories();
|
||||||
|
__END_DECLS
|
||||||
|
|
||||||
|
/* Configure Socket Factories */
|
||||||
|
|
||||||
|
void GUSISetupFactories()
|
||||||
|
{
|
||||||
|
#ifdef GUSISetupFactories_BeginHook
|
||||||
|
GUSISetupFactories_BeginHook
|
||||||
|
#endif
|
||||||
|
GUSIwithInetSockets();
|
||||||
|
#ifdef GUSISetupFactories_EndHook
|
||||||
|
GUSISetupFactories_EndHook
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Declarations of File Devices */
|
||||||
|
|
||||||
|
__BEGIN_DECLS
|
||||||
|
void GUSIwithNullSockets();
|
||||||
|
void GUSISetupDevices();
|
||||||
|
__END_DECLS
|
||||||
|
|
||||||
|
/* Configure File Devices */
|
||||||
|
|
||||||
|
void GUSISetupDevices()
|
||||||
|
{
|
||||||
|
#ifdef GUSISetupDevices_BeginHook
|
||||||
|
GUSISetupDevices_BeginHook
|
||||||
|
#endif
|
||||||
|
GUSIwithNullSockets();
|
||||||
|
#ifdef GUSISetupDevices_EndHook
|
||||||
|
GUSISetupDevices_EndHook
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
#ifndef __cplusplus
|
||||||
|
#error GUSISetupConfig() needs to be written in C++
|
||||||
|
#endif
|
||||||
|
|
||||||
|
GUSIConfiguration::FileSuffix sSuffices[] = {
|
||||||
|
"", '????', '????'
|
||||||
|
};
|
||||||
|
|
||||||
|
extern "C" void GUSISetupConfig()
|
||||||
|
{
|
||||||
|
GUSIConfiguration * config =
|
||||||
|
GUSIConfiguration::CreateInstance(GUSIConfiguration::kNoResource);
|
||||||
|
|
||||||
|
config->ConfigureDefaultTypeCreator('TEXT', 'CWIE');
|
||||||
|
config->ConfigureSuffices(
|
||||||
|
sizeof(sSuffices)/sizeof(GUSIConfiguration::FileSuffix)-1, sSuffices);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**************** END GUSI CONFIGURATION *************************/
|
||||||
|
@@ -1 +1,44 @@
|
|||||||
/* =========================================================================
|
/* =========================================================================
|
||||||
|
Copyright (C) 2001 Eric Lavigne
|
||||||
|
|
||||||
|
Permission is granted to anyone to use this software for any purpose on any
|
||||||
|
computer system, and to redistribute it freely, subject to the following
|
||||||
|
restrictions:
|
||||||
|
- The author is not responsible for the consequences of use of this
|
||||||
|
software, no matter how awful, even if they arise from defects in it.
|
||||||
|
- The origin of this software must not be misrepresented, either by
|
||||||
|
explicit claim or by omission.
|
||||||
|
- You are allowed to distributed modified copies of the software, in source
|
||||||
|
and binary form, provided they are marked plainly as altered versions, and
|
||||||
|
are not misrepresented as being the original software.
|
||||||
|
========================================================================= */
|
||||||
|
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <string.h>
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <Memory.h>
|
||||||
|
#include <GUSICommandLine.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
|
||||||
|
/* ========================================================================= */
|
||||||
|
|
||||||
|
DECLARE_MAIN(curl)
|
||||||
|
|
||||||
|
REGISTER_MAIN_START
|
||||||
|
REGISTER_MAIN(curl)
|
||||||
|
REGISTER_MAIN_END
|
||||||
|
|
||||||
|
/* ========================================================================= */
|
||||||
|
|
||||||
|
int main()
|
||||||
|
{
|
||||||
|
::MaxApplZone();
|
||||||
|
for (int i = 1; i <= 10; i++)
|
||||||
|
::MoreMasters();
|
||||||
|
|
||||||
|
(void) exec_commands();
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
0
libs/js/nsprpub/pr/include/prvrsion.h
Executable file → Normal file
0
libs/js/nsprpub/pr/include/prvrsion.h
Executable file → Normal file
0
libs/js/nsprpub/pr/src/cplus/rcthread.cpp
Executable file → Normal file
0
libs/js/nsprpub/pr/src/cplus/rcthread.cpp
Executable file → Normal file
0
src/mod/applications/mod_conference/mod_conference.vcproj
Executable file → Normal file
0
src/mod/applications/mod_conference/mod_conference.vcproj
Executable file → Normal file
0
src/mod/languages/mod_mono/mod_mono.c
Executable file → Normal file
0
src/mod/languages/mod_mono/mod_mono.c
Executable file → Normal file
Reference in New Issue
Block a user