IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 4065


Ignore:
Timestamp:
May 31, 2005, 6:19:31 PM (21 years ago)
Author:
jhoblitt
Message:

change psVector to store it's number of elements as an unsigned long int

Location:
trunk/doc/pslib
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/doc/pslib/ChangeLogSDRS.tex

    r4064 r4065  
    1 %%% $Id: ChangeLogSDRS.tex,v 1.109 2005-06-01 04:10:25 jhoblitt Exp $
     1%%% $Id: ChangeLogSDRS.tex,v 1.110 2005-06-01 04:19:31 jhoblitt Exp $
    22
    33\subsection{Changes from version 00 to version 01}
     
    651651\item rename \code{psFitsAlloc()} $\rightarrow$ \code{psFitsOpen()}
    652652\item add \code{psFitsClose()}
    653 \end{itemize}
     653\item change \code{psVector} to store it's number of elements as an \code{unsigned long int}
     654\end{itemize}
  • trunk/doc/pslib/psLibSDRS.tex

    r4064 r4065  
    1 %%% $Id: psLibSDRS.tex,v 1.241 2005-06-01 04:10:25 jhoblitt Exp $
     1%%% $Id: psLibSDRS.tex,v 1.242 2005-06-01 04:19:31 jhoblitt Exp $
    22\documentclass[panstarrs,spec]{panstarrs}
    33
     
    13601360typedef struct {
    13611361    psType type;                        ///< vector data type and dimension
    1362     int n;                              ///< size of vector
    1363     const int nalloc;                   ///< allocated data block
     1362    unsigned long int n;                ///< size of vector
     1363    const unsigned long int nalloc;     ///< allocated data block
    13641364    union {
    13651365        psS8  *S8;                      ///< Pointers to byte data
     
    13901390%
    13911391\begin{prototype}
    1392 psVector *psVectorAlloc(psU32 nalloc, psElemType type);
    1393 psVector *psVectorRealloc(psVector *vector, psU32 nalloc);
    1394 psVector *psVectorRecycle(psVector *vector, psU32 nalloc, psElemType type);
     1392psVector *psVectorAlloc(unsigned long int nalloc, psElemType type);
     1393psVector *psVectorRealloc(psVector *vector, unsigned long int nalloc);
     1394psVector *psVectorRecycle(psVector *vector, unsigned long int nalloc, psElemType type);
    13951395\end{prototype}
    13961396%
     
    14141414
    14151415\begin{prototype}
    1416 psVector *psVectorExtend(psVector *vector, int delta, int nExtend);
     1416psVector *psVectorExtend(psVector *vector, unsigned long int delta, unsigned long int nExtend);
    14171417\end{prototype}
    14181418
Note: See TracChangeset for help on using the changeset viewer.