1
0
mirror of https://github.com/blupi-games/planetblupi synced 2024-12-30 10:15:36 +01:00
planetblupi/src/misc.h

18 lines
305 B
C
Raw Normal View History

2017-01-21 17:27:46 +01:00
// misc.h
//
2017-01-21 23:44:30 +01:00
#pragma once
2017-02-11 18:10:32 +01:00
#include <string>
2017-02-10 00:14:28 +01:00
#include "blupi.h"
extern void OutputDebug (const char *pMessage);
2017-01-21 17:27:46 +01:00
extern POINT ConvLongToPos (LPARAM lParam);
2017-01-21 17:27:46 +01:00
extern void InitRandom();
extern Sint32 Random (Sint32 min, Sint32 max);
2017-01-21 17:27:46 +01:00
2017-02-11 18:10:32 +01:00
std::string GetBaseDir();
extern void AddUserPath (char *pFilename);