Windows NT 4.0 source code leak
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.
 
 
 
 
 
 

23 lines
460 B

/* (C) Copyright Microsoft Corporation 1991. All Rights Reserved */
/* file.h
*
* File I/O and related functions.
*/
#include <mmsystem.h>
/***bugbug*** make this a global def.*/
typedef struct tCKNODE {
MMCKINFO ck;
HPBYTE hpData;
struct tCKNODE * psNext;
} CKNODE, *PCKNODE, FAR * LPCKNODE;
/* Fact Chunk, should be defined elsewhere. */
typedef struct tFACT {
long lSamples;
} FACT, *PFACT, FAR * LPFACT;
/***bugbug*** export these.*/