8688b929a1
need to stream QuickTime and MPEG-4 media on alternative platforms such as Windows, Linux, and Solaris, or those developers who need to extend and/or modify the existing streaming server code to fit their needs. Darwin Streaming Server is only supported by the open source community and is not eligible for technical support from Apple. Apple hosts a number of email discussion lists for Darwin Streaming Server users and developers to share ideas and discuss deployment scenarios. Based on wip/DarwinStreamingServer Thanks to eggert@macvaerk.dtu.dk
17 lines
709 B
Text
17 lines
709 B
Text
$NetBSD: patch-ai,v 1.1.1.1 2006/12/15 09:03:47 adam Exp $
|
|
--- CommonUtilitiesLib/StrPtrLen.h.orig 2003-08-16 01:52:53.000000000 +0200
|
|
+++ CommonUtilitiesLib/StrPtrLen.h 2005-02-25 17:03:31.000000000 +0100
|
|
@@ -66,7 +66,12 @@
|
|
Bool16 NumEqualIgnoreCase(const char* compare, const UInt32 len) const;
|
|
|
|
void Delete() { delete [] Ptr; Ptr = NULL; Len = 0; }
|
|
- char *ToUpper() { for (UInt32 x = 0; x < Len ; x++) Ptr[x] = toupper (Ptr[x]); return Ptr;}
|
|
+ char *ToUpper()
|
|
+ {
|
|
+ for (UInt32 x = 0; x < Len ; x++)
|
|
+ Ptr[x] = toupper (Ptr[x]);
|
|
+ return Ptr;
|
|
+ }
|
|
|
|
char *FindStringCase(char *queryCharStr, StrPtrLen *resultStr, Bool16 caseSensitive) const;
|
|
|