Changeset 4065
- Timestamp:
- May 31, 2005, 6:19:31 PM (21 years ago)
- Location:
- trunk/doc/pslib
- Files:
-
- 2 edited
-
ChangeLogSDRS.tex (modified) (2 diffs)
-
psLibSDRS.tex (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/doc/pslib/ChangeLogSDRS.tex
r4064 r4065 1 %%% $Id: ChangeLogSDRS.tex,v 1.1 09 2005-06-01 04:10:25jhoblitt Exp $1 %%% $Id: ChangeLogSDRS.tex,v 1.110 2005-06-01 04:19:31 jhoblitt Exp $ 2 2 3 3 \subsection{Changes from version 00 to version 01} … … 651 651 \item rename \code{psFitsAlloc()} $\rightarrow$ \code{psFitsOpen()} 652 652 \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.24 1 2005-06-01 04:10:25jhoblitt Exp $1 %%% $Id: psLibSDRS.tex,v 1.242 2005-06-01 04:19:31 jhoblitt Exp $ 2 2 \documentclass[panstarrs,spec]{panstarrs} 3 3 … … 1360 1360 typedef struct { 1361 1361 psType type; ///< vector data type and dimension 1362 int n;///< size of vector1363 const int nalloc;///< allocated data block1362 unsigned long int n; ///< size of vector 1363 const unsigned long int nalloc; ///< allocated data block 1364 1364 union { 1365 1365 psS8 *S8; ///< Pointers to byte data … … 1390 1390 % 1391 1391 \begin{prototype} 1392 psVector *psVectorAlloc( psU32nalloc, psElemType type);1393 psVector *psVectorRealloc(psVector *vector, psU32nalloc);1394 psVector *psVectorRecycle(psVector *vector, psU32nalloc, psElemType type);1392 psVector *psVectorAlloc(unsigned long int nalloc, psElemType type); 1393 psVector *psVectorRealloc(psVector *vector, unsigned long int nalloc); 1394 psVector *psVectorRecycle(psVector *vector, unsigned long int nalloc, psElemType type); 1395 1395 \end{prototype} 1396 1396 % … … 1414 1414 1415 1415 \begin{prototype} 1416 psVector *psVectorExtend(psVector *vector, int delta,int nExtend);1416 psVector *psVectorExtend(psVector *vector, unsigned long int delta, unsigned long int nExtend); 1417 1417 \end{prototype} 1418 1418
Note:
See TracChangeset
for help on using the changeset viewer.
