now pull in .lib file via source (more convenient than using project settings)

This was SVN commit r339.
This commit is contained in:
janwas 2004-06-02 01:07:25 +00:00
parent 93486469e6
commit 9bdbc49306
2 changed files with 6 additions and 2 deletions

View File

@ -13,6 +13,11 @@
#include "sound.h"
#include "lib.h"
#ifdef _MSC_VER
#pragma comment(lib, "fmodvc.lib")
#endif
//define control block
struct Sound
{
@ -24,7 +29,7 @@ H_TYPE_DEFINE(Sound)
static void Sound_init(Sound* s, va_list args)
{
s->channel = -1;
s->channel = -1;
}
static int Sound_reload(Sound* s, const char* filename)

View File

@ -5,7 +5,6 @@
#ifndef __SOUND_H__
#define __SOUND_H__
#include "types.h"
#include "h_mgr.h"
extern Handle sound_load(const char* filename);