Date: 09/29/98
- Next message: shane: "[PHP-DEV] CVS update: php3"
- Previous message: shane: "[PHP-DEV] CVS update: php3"
- Next in thread: shane: "[PHP-DEV] CVS update: php3/functions"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Date: Tuesday September 29, 1998 @ 19:33
Author: shane
Update of /repository/php3/functions
In directory asf:/u2/tmp/cvs-serv15526/functions
Modified Files:
msql.c mysql.c var.c
Log Message:
overhaul of project files
Index: php3/functions/msql.c
diff -c php3/functions/msql.c:1.96 php3/functions/msql.c:1.97
*** php3/functions/msql.c:1.96 Thu Sep 10 19:57:19 1998
--- php3/functions/msql.c Tue Sep 29 19:33:37 1998
***************
*** 27,38 ****
+----------------------------------------------------------------------+
*/
! /* $Id: msql.c,v 1.96 1998/09/10 23:57:19 zeev Exp $ */
#ifdef THREAD_SAFE
#include "tls.h"
#endif
! #ifndef MSVC5
#include "config.h"
#endif
#include "php.h"
--- 27,38 ----
+----------------------------------------------------------------------+
*/
! /* $Id: msql.c,v 1.97 1998/09/29 23:33:37 shane Exp $ */
#ifdef THREAD_SAFE
#include "tls.h"
#endif
! #if !(WIN32|WINNT)
#include "config.h"
#endif
#include "php.h"
Index: php3/functions/mysql.c
diff -c php3/functions/mysql.c:1.166 php3/functions/mysql.c:1.167
*** php3/functions/mysql.c:1.166 Thu Sep 24 15:48:18 1998
--- php3/functions/mysql.c Tue Sep 29 19:33:38 1998
***************
*** 27,33 ****
+----------------------------------------------------------------------+
*/
! /* $Id: mysql.c,v 1.166 1998/09/24 19:48:18 shane Exp $ */
/* TODO:
--- 27,33 ----
+----------------------------------------------------------------------+
*/
! /* $Id: mysql.c,v 1.167 1998/09/29 23:33:38 shane Exp $ */
/* TODO:
***************
*** 135,148 ****
#if COMPILE_DL
DLEXPORT php3_module_entry *get_module(void) { return &mysql_module_entry; }
- #if WIN32|WINNT
- BOOL WINAPI DllMain(HANDLE hModule,
- DWORD ul_reason_for_call,
- LPVOID lpReserved)
- {
- return 1;
- }
- #endif
#endif
#if APACHE
--- 135,140 ----
***************
*** 619,625 ****
MYSQL *mysql;
MySQL_TLS_VARS;
-
switch (ARG_COUNT(ht)) {
case 0:
id = MySQL_GLOBAL(php3_mysql_module).default_link;
--- 611,616 ----
Index: php3/functions/var.c
diff -c php3/functions/var.c:1.1 php3/functions/var.c:1.2
*** php3/functions/var.c:1.1 Tue Sep 29 03:14:38 1998
--- php3/functions/var.c Tue Sep 29 19:33:39 1998
***************
*** 124,132 ****
void php3_var_dump(INTERNAL_FUNCTION_PARAMETERS)
{
pval * struc;
- FILE * fp;
- int issock=0, socketd=0;
- int i;
if (ARG_COUNT(ht) != 1 || getParameters(ht, 1, &struc) == FAILURE) {
WRONG_PARAM_COUNT;
--- 124,129 ----
***************
*** 347,355 ****
void php3_serialize(INTERNAL_FUNCTION_PARAMETERS)
{
pval *struc;
- FILE * fp;
- int issock=0, socketd=0;
- char s[10];
if (ARG_COUNT(ht) != 1 || getParameters(ht, 1, &struc) == FAILURE) {
WRONG_PARAM_COUNT;
--- 344,349 ----
-- PHP Development Mailing List http://www.php.net/ To unsubscribe send an empty message to php-dev-unsubscribe <email protected> For help: php-dev-help <email protected>
- Next message: shane: "[PHP-DEV] CVS update: php3"
- Previous message: shane: "[PHP-DEV] CVS update: php3"
- Next in thread: shane: "[PHP-DEV] CVS update: php3/functions"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

