33 lines
859 B
Plaintext
33 lines
859 B
Plaintext
compile insert msWin_MAX_PATH_Equates
|
|
/*
|
|
** Copyright (C) 2012 Revelation Software Inc. All Rights Reserved **
|
|
|
|
Author : Mr C
|
|
Date : Oct 2012
|
|
Purpose : MAX_PATH constant definition
|
|
|
|
Comments
|
|
========
|
|
|
|
This is used all over the place so I'm moving it to it's own header ...
|
|
|
|
Overkill or what?
|
|
|
|
|
|
Amended Date Reason
|
|
======= ==== ======
|
|
|
|
*/
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef _MAX_PATH_EQUATES_
|
|
#define _MAX_PATH_EQUATES_
|
|
|
|
equ MAX_PATH$ to 260
|
|
|
|
#endif
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|