Changeset 338
- Timestamp:
- 02/17/10 06:57:23 (2 years ago)
- Files:
-
- trunk/graphicsmagick (added)
- trunk/graphicsmagick/example1 (added)
- trunk/graphicsmagick/example1/dsss.conf (added)
- trunk/graphicsmagick/example1/main.d (added)
- trunk/graphicsmagick/magick (added)
- trunk/graphicsmagick/magick/api.d (added)
- trunk/graphicsmagick/magick/colorspace.d (added)
- trunk/graphicsmagick/magick/constitute.d (added)
- trunk/graphicsmagick/magick/error.d (added)
- trunk/graphicsmagick/magick/globals.d (added)
- trunk/graphicsmagick/magick/image.d (added)
- trunk/graphicsmagick/magick/log.d (added)
- trunk/graphicsmagick/magick/magick.d (added)
- trunk/graphicsmagick/magick/magick_config.d (added)
- trunk/graphicsmagick/magick/magick_types.d (added)
- trunk/graphicsmagick/magick/pixel_cache.d (added)
- trunk/graphicsmagick/magick/resize.d (added)
- trunk/graphicsmagick/magick/timer.d (added)
- trunk/graphicsmagick/readme.txt (added)
- trunk/libquicktime/lqt/colormodels.d (modified) (1 diff)
- trunk/libquicktime/lqt/lqt.d (modified) (1 diff)
- trunk/libquicktime/lqt/quicktime.d (modified) (2 diffs)
- trunk/portaudio/portaudio/portaudio.d (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/libquicktime/lqt/colormodels.d
r248 r338 1 1 /* Converted to D from colormodels.h by htod */ 2 module colormodels;2 module lqt.colormodels; 3 3 /******************************************************************************* 4 4 colormodels.h trunk/libquicktime/lqt/lqt.d
r248 r338 48 48 //void *lqt_bufalloc(size_t size); 49 49 50 51 //Dtype : lqttype : //C type (guess) 52 public alias long int64_t; //long long 53 public alias ubyte uint8_t; //unsigned char 54 public alias short int16_t; //short 55 public alias ushort uint16_t; //unsigned short 56 public alias int int32_t; //long 57 public alias uint uint32_t; //unsigned long 50 58 51 59 trunk/libquicktime/lqt/quicktime.d
r248 r338 874 874 int quicktime_close(quicktime_t *file); 875 875 876 /* get lengthinformation */876 /* get.size information */ 877 877 /* channel numbers start on 1 for audio and video */ 878 878 879 879 /** \ingroup audio_decode 880 * \brief Get the audio length880 * \brief Get the audio.size 881 881 * \param file A quicktime handle 882 882 * \param track index (starting with 0) … … 889 889 890 890 /** \ingroup video_decode 891 * \brief Get the video length891 * \brief Get the video.size 892 892 * \param file A quicktime handle 893 893 * \param track index (starting with 0) trunk/portaudio/portaudio/portaudio.d
r248 r338 220 220 */ 221 221 //C #define paNoDevice ((PaDeviceIndex)-1) 222 const PaDeviceIndex paNoDevice = -1; 222 223 223 224 … … 424 425 //C PaHostApiTypeId hostApiType; /**< the host API which returned the error code */ 425 426 //C long errorCode; /**< the error code returned */ 426 //C const char *errorText; /**< a textual description of the error if available, otherwise a zero -lengthstring */427 //C const char *errorText; /**< a textual description of the error if available, otherwise a zero.size string */ 427 428 //C }PaHostErrorInfo; 428 429 align(1)
