arglink.h
上传用户:bjsgzm
上传日期:2007-01-08
资源大小:256k
文件大小:1k
源码类别:

mpeg/mp3

开发平台:

Visual C++

  1. /*
  2. (c) Copyright 1999 - Tord Jansson
  3. =================================
  4. This file is part of the BladeEnc MP3 Encoder, based on
  5. ISO's reference code for MPEG Layer 3 compression.
  6. This file doesn't contain any of the ISO reference code and
  7. is copyright Tord Jansson (tord.jansson@swipnet.se).
  8. BladeEnc is free software; you can redistribute this file
  9. and/or modify it under the terms of the GNU Lesser General Public
  10. License as published by the Free Software Foundation; either
  11. version 2.1 of the License, or (at your option) any later version.
  12. */
  13. typedef struct argLinkDef argLink;
  14. struct argLinkDef
  15. {
  16. argLink * psNext;
  17. char * pString;
  18. };
  19. argLink * findStrInArgLink( argLink * pLink, char * pString );
  20. argLink * argv2ArgLink( int argc, char * argv[] );
  21. argLink * insertStringInArgLink( argLink ** wpPrev, char * pString );
  22. argLink * linkStringToArgLink( argLink ** wpPrev, char * pString );
  23. int   addFileContentToArgLink( argLink ** wpPrev , char * pFilename );
  24. void   deleteArgLink( argLink * pLink );