mirror of https://github.com/lianthony/NT4.0
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.
50 lines
432 B
50 lines
432 B
/*++
|
|
|
|
Copyright (c) 1992 Microsoft Corporation
|
|
|
|
|
|
Module Name:
|
|
|
|
|
|
ruler.c
|
|
|
|
|
|
Abstract:
|
|
|
|
|
|
This module implements the cdplayer ruler/slider.
|
|
|
|
|
|
Author:
|
|
|
|
|
|
Rick Turner (ricktu) 04-Aug-1992
|
|
|
|
|
|
Revision History:
|
|
|
|
|
|
|
|
--*/
|
|
|
|
#include <windows.h>
|
|
#include "cdplayer.h"
|
|
#include "cdwindef.h"
|
|
#include "ruler.h"
|
|
|
|
|
|
BOOL
|
|
RulerInit(
|
|
VOID
|
|
)
|
|
|
|
{
|
|
|
|
//
|
|
// do ruler initialization
|
|
//
|
|
|
|
gRulerWnd = NULL;
|
|
return TRUE;
|
|
|
|
}
|