Leaked source code of windows server 2003
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
//==========================================================================; // // THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY // KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE // IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR // PURPOSE. // // Copyright (c) 1993-1996 Microsoft Corporation // //--------------------------------------------------------------------------; // // codec.rc // // Description: // This file contains the resources for the codec. // // //==========================================================================;
#include <windows.h> #include "codec.h" #include "codec.rcv"
// // // // // STRINGTABLE MOVEABLE DISCARDABLE BEGIN IDS_ACM_DRIVER_SHORTNAME "Microsoft CCITT G.711" #ifdef DEBUG IDS_ACM_DRIVER_LONGNAME "Microsoft CCITT G.711 A-Law and u-Law CODEC (debug)" #else IDS_ACM_DRIVER_LONGNAME "Microsoft CCITT G.711 A-Law and u-Law CODEC" #endif
IDS_ACM_DRIVER_COPYRIGHT "Copyright (c) 1993-1996 Microsoft Corporation" IDS_ACM_DRIVER_LICENSING "" IDS_ACM_DRIVER_FEATURES "Compresses and decompresses CCITT G.711 A-Law and u-Law audio data."
IDS_ACM_DRIVER_TAG_NAME_ALAW, "CCITT A-Law" IDS_ACM_DRIVER_TAG_NAME_MULAW, "CCITT u-Law" END
|